diff --git a/Cargo.lock b/Cargo.lock index 7b63e5fa7..92757f475 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -914,6 +914,18 @@ dependencies = [ "uuid", ] +[[package]] +name = "console" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc", + "windows-sys 0.52.0", +] + [[package]] name = "console-api" version = "0.5.0" @@ -1007,6 +1019,7 @@ dependencies = [ "parking_lot 0.12.1", "payout_curve", "prometheus", + "proptest", "rand", "rust_decimal", "rust_decimal_macros", @@ -1442,6 +1455,12 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" +[[package]] +name = "encode_unicode" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" + [[package]] name = "encoding_rs" version = "0.8.32" @@ -2192,6 +2211,18 @@ dependencies = [ "generic-array", ] +[[package]] +name = "insta" +version = "1.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eab73f58e59ca6526037208f0e98851159ec1633cf17b6cd2e1f2c3fd5d53cc" +dependencies = [ + "console", + "lazy_static", + "linked-hash-map", + "similar", +] + [[package]] name = "instant" version = "0.1.12" @@ -2352,6 +2383,12 @@ dependencies = [ "cc", ] +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + [[package]] name = "linux-raw-sys" version = "0.3.8" @@ -3014,6 +3051,7 @@ dependencies = [ "bitcoin 0.30.2", "csv", "dlc-manager", + "insta", "proptest", "rust_decimal", "rust_decimal_macros", @@ -3973,6 +4011,12 @@ dependencies = [ "libc", ] +[[package]] +name = "similar" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" + [[package]] name = "slab" version = "0.4.8" diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 77f5bd559..b0b847632 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -57,5 +57,6 @@ url = "2.3.1" uuid = { version = "1.3.0", features = ["v4", "serde"] } [dev-dependencies] +proptest = "1" rust_decimal_macros = "1" testcontainers = "0.14.0" diff --git a/coordinator/src/payout_curve.rs b/coordinator/src/payout_curve.rs index 86798104f..2d445ab99 100644 --- a/coordinator/src/payout_curve.rs +++ b/coordinator/src/payout_curve.rs @@ -10,13 +10,11 @@ use dlc_manager::payout_curve::PayoutPoint; use dlc_manager::payout_curve::PolynomialPayoutCurvePiece; use dlc_manager::payout_curve::RoundingInterval; use dlc_manager::payout_curve::RoundingIntervals; -use payout_curve::ROUNDING_PERCENT; use rust_decimal::prelude::FromPrimitive; use rust_decimal::Decimal; use tracing::instrument; use trade::cfd::calculate_long_liquidation_price; use trade::cfd::calculate_short_liquidation_price; -use trade::cfd::BTCUSD_MAX_PRICE; use trade::ContractSymbol; use trade::Direction; @@ -123,18 +121,6 @@ fn build_inverse_payout_function( coordinator_direction, )?; - // The payout curve generation code tends to shift the liquidation prices slightly. - let adjusted_long_liquidation_price = payout_points - .first() - .context("Empty payout points")? - .1 - .event_outcome; - let adjusted_short_liquidation_price = payout_points - .last() - .context("Empty payout points")? - .0 - .event_outcome; - let mut pieces = vec![]; for (lower, upper) in payout_points { let lower_range = PolynomialPayoutCurvePiece::new(vec![ @@ -155,14 +141,12 @@ fn build_inverse_payout_function( let payout_function = PayoutFunction::new(pieces).context("could not create payout function")?; - let rounding_intervals = { - let total_margin = coordinator_margin + trader_margin; - - create_rounding_intervals( - total_margin, - adjusted_long_liquidation_price, - adjusted_short_liquidation_price, - ) + let rounding_intervals = RoundingIntervals { + intervals: vec![RoundingInterval { + begin_interval: 0, + // No rounding needed because we are giving `rust-dlc` a step function already. + rounding_mod: 1, + }], }; Ok((payout_function, rounding_intervals)) @@ -188,58 +172,11 @@ fn get_liquidation_prices( (coordinator_liquidation_price, trader_liquidation_price) } -pub fn create_rounding_intervals( - total_margin: u64, - long_liquidation_price: u64, - short_liquidation_price: u64, -) -> RoundingIntervals { - let liquidation_diff = short_liquidation_price - .checked_sub(long_liquidation_price) - .expect("short liquidation to be higher than long liquidation"); - let low_price = long_liquidation_price + liquidation_diff / 10; - let high_price = short_liquidation_price - liquidation_diff / 10; - - let mut intervals = vec![ - RoundingInterval { - begin_interval: 0, - // No rounding. - rounding_mod: 1, - }, - // HACK: We decrease the rounding here to prevent `rust-dlc` from rounding under the long - // liquidation price _payout_. - RoundingInterval { - begin_interval: long_liquidation_price, - rounding_mod: (total_margin as f32 * ROUNDING_PERCENT * 0.1) as u64, - }, - RoundingInterval { - begin_interval: low_price, - rounding_mod: (total_margin as f32 * ROUNDING_PERCENT) as u64, - }, - ]; - - if short_liquidation_price < BTCUSD_MAX_PRICE { - intervals.push( - // HACK: We decrease the rounding here to prevent `rust-dlc` from rounding over the - // short liquidation price _payout_. - RoundingInterval { - begin_interval: high_price, - rounding_mod: (total_margin as f32 * ROUNDING_PERCENT * 0.1) as u64, - }, - ); - intervals.push(RoundingInterval { - begin_interval: short_liquidation_price, - // No rounding. - rounding_mod: 1, - }) - } - - RoundingIntervals { intervals } -} - #[cfg(test)] mod tests { use super::*; use commons::order_matching_fee_taker; + use proptest::prelude::*; use rust_decimal_macros::dec; use trade::cfd::calculate_margin; @@ -300,12 +237,8 @@ mod tests { } } - // TODO: We can still end up with a payout function that does not respect the liquidation - // payouts we want to define via the `coordinator_collateral_reserve` and the - // `trader_collateral_reserve`. #[test] - #[should_panic] - fn payout_function_does_not_always_respect_collateral_reserve() { + fn payout_function_respects_collateral_reserve() { let initial_price = dec!(28_251); let quantity = 500.0; let leverage_coordinator = 2.0; @@ -319,7 +252,10 @@ mod tests { let coordinator_collateral_reserve = 2_120_386; let trader_collateral_reserve = 5_115_076; - let total_collateral = coordinator_margin + trader_margin; + let total_collateral = coordinator_margin + + trader_margin + + coordinator_collateral_reserve + + trader_collateral_reserve; let symbol = ContractSymbol::BtcUsd; @@ -339,11 +275,9 @@ mod tests { let range_payouts = match descriptor { ContractDescriptor::Enum(_) => unreachable!(), - ContractDescriptor::Numerical(numerical) => numerical - .get_range_payouts( - total_collateral + coordinator_collateral_reserve + trader_collateral_reserve, - ) - .unwrap(), + ContractDescriptor::Numerical(numerical) => { + numerical.get_range_payouts(total_collateral).unwrap() + } }; let liquidation_payout_offer = range_payouts @@ -354,6 +288,87 @@ mod tests { .offer; assert_eq!(liquidation_payout_offer, coordinator_collateral_reserve); + + let liquidation_payout_accept = range_payouts + .iter() + .min_by(|a, b| a.payout.accept.cmp(&b.payout.accept)) + .unwrap() + .payout + .accept; + + assert_eq!(liquidation_payout_accept, trader_collateral_reserve); + } + + proptest! { + #[test] + fn payout_function_always_respects_reserves( + quantity in 1.0f32..10_000.0, + initial_price in 20_000u32..80_000, + leverage_coordinator in 1u32..5, + leverage_trader in 1u32..5, + is_coordinator_long in proptest::bool::ANY, + collateral_reserve_coordinator in 0u64..1_000_000, + collateral_reserve_trader in 0u64..1_000_000, + ) { + let initial_price = Decimal::from(initial_price); + let leverage_coordinator = leverage_coordinator as f32; + let leverage_trader = leverage_trader as f32; + + let margin_coordinator = calculate_margin(initial_price, quantity, leverage_coordinator); + let margin_trader = calculate_margin(initial_price, quantity, leverage_trader); + + let coordinator_direction = if is_coordinator_long { + Direction::Long + } else { + Direction::Short + }; + + let total_collateral = margin_coordinator + + margin_trader + + collateral_reserve_coordinator + + collateral_reserve_trader; + + let symbol = ContractSymbol::BtcUsd; + + let descriptor = build_contract_descriptor( + initial_price, + margin_coordinator, + margin_trader, + leverage_coordinator, + leverage_trader, + coordinator_direction, + collateral_reserve_coordinator, + collateral_reserve_trader, + quantity, + symbol, + ) + .unwrap(); + + let range_payouts = match descriptor { + ContractDescriptor::Enum(_) => unreachable!(), + ContractDescriptor::Numerical(numerical) => numerical + .get_range_payouts(total_collateral) + .unwrap(), + }; + + let liquidation_payout_offer = range_payouts + .iter() + .min_by(|a, b| a.payout.offer.cmp(&b.payout.offer)) + .unwrap() + .payout + .offer; + + assert_eq!(liquidation_payout_offer, collateral_reserve_coordinator); + + let liquidation_payout_accept = range_payouts + .iter() + .min_by(|a, b| a.payout.accept.cmp(&b.payout.accept)) + .unwrap() + .payout + .accept; + + assert_eq!(liquidation_payout_accept, collateral_reserve_trader); + } } #[test] @@ -393,7 +408,7 @@ mod tests { } #[test] - fn build_contract_descriptor_dont_panic() { + fn build_contract_descriptor_does_not_panic() { let initial_price = dec!(36404.5); let quantity = 20.0; let leverage_coordinator = 2.0; diff --git a/crates/payout_curve/Cargo.toml b/crates/payout_curve/Cargo.toml index 49dac0fc4..2816ca417 100644 --- a/crates/payout_curve/Cargo.toml +++ b/crates/payout_curve/Cargo.toml @@ -14,6 +14,7 @@ trade = { path = "../trade" } [dev-dependencies] csv = "1.3.0" dlc-manager = { version = "0.4.0", features = ["use-serde"] } +insta = "1" proptest = "1" rust_decimal_macros = "1" tracing = "0.1.37" diff --git a/crates/payout_curve/examples/payout_curve_csv.rs b/crates/payout_curve/examples/payout_curve_csv.rs index 461200b3e..e7fecb37a 100644 --- a/crates/payout_curve/examples/payout_curve_csv.rs +++ b/crates/payout_curve/examples/payout_curve_csv.rs @@ -11,7 +11,6 @@ use dlc_manager::payout_curve::RoundingIntervals; use payout_curve::build_inverse_payout_function; use payout_curve::PartyParams; use payout_curve::PayoutPoint; -use payout_curve::ROUNDING_PERCENT; use rust_decimal::prelude::FromPrimitive; use rust_decimal::prelude::ToPrimitive; use rust_decimal::Decimal; @@ -181,9 +180,6 @@ fn computed_payout_curve( csv_path: &str, payout_points: Vec<(PayoutPoint, PayoutPoint)>, ) -> Result<()> { - let long_liquidation_price = payout_points.first().unwrap().1.event_outcome; - let short_liquidation_price = payout_points.last().unwrap().0.event_outcome; - let mut pieces = vec![]; for (lower, upper) in payout_points { let lower_range = PolynomialPayoutCurvePiece::new(vec![ @@ -205,24 +201,13 @@ fn computed_payout_curve( PayoutFunction::new(pieces).context("could not create payout function")?; let total_collateral = party_params_coordinator.total_collateral() + party_params_trader.total_collateral(); - let total_margin = party_params_coordinator.margin() + party_params_trader.margin(); let range_payouts = payout_function.to_range_payouts( total_collateral, &RoundingIntervals { - intervals: vec![ - RoundingInterval { - begin_interval: 0, - rounding_mod: 1, - }, - RoundingInterval { - begin_interval: long_liquidation_price, - rounding_mod: (total_margin as f32 * ROUNDING_PERCENT) as u64, - }, - RoundingInterval { - begin_interval: short_liquidation_price, - rounding_mod: 1, - }, - ], + intervals: vec![RoundingInterval { + begin_interval: 0, + rounding_mod: 1, + }], }, )?; diff --git a/crates/payout_curve/src/lib.rs b/crates/payout_curve/src/lib.rs index 83f1b994a..83bafb788 100644 --- a/crates/payout_curve/src/lib.rs +++ b/crates/payout_curve/src/lib.rs @@ -1,4 +1,5 @@ use anyhow::ensure; +use anyhow::Context; use anyhow::Result; use bitcoin::Amount; use rust_decimal::prelude::ToPrimitive; @@ -19,9 +20,8 @@ use trade::Direction; /// because not all intervals are equally as likely. That way we can avoid excessive CET generation. pub const ROUNDING_PERCENT: f32 = 0.01; -/// Defines the steps to take in the payout curve for one point. A step of 2 means, that two points -/// are $1 away from each other. -const PAYOUT_CURVE_DISCRETIZATION_STEPS: u64 = 20; +/// Number of intervals which we want to use to discretize the payout function. +const PAYOUT_CURVE_DISCRETIZATION_INTERVALS: u64 = 200; /// A payout point representing a payout for a given outcome. #[derive(Clone, Copy, Debug, Eq, PartialEq, Serialize, Deserialize)] @@ -180,116 +180,48 @@ pub fn build_inverse_payout_function( pieces.push((*lower, *upper)); } - let mid_range_highest_price_payout_point_end = mid_range.last().expect("at least one").1; - if mid_range_highest_price_payout_point_end.event_outcome < BTCUSD_MAX_PRICE { - // To ensure that payouts and prices are continuous. - if mid_range_highest_price_payout_point_end.event_outcome - == short_liquidation_interval_start.event_outcome - { - // E.g. - // - mid_range_highest_price_payout_point_end = ( 100_000 USD/BTC, 10_000 sats) - // - short_liquidation_interval_start = ( 100_000 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // Transformed into: - // - mid_range_highest_price_payout_point_end = ( 100_000 USD/BTC, 10_000 sats) - // - new_interval_start = ( 100_000 USD/BTC, 10_000 sats) - // - new_interval_end = ( 674_287 USD/BTC, 0 sats) - // - short_liquidation_interval_start = ( 674_287 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // By introducing an interval that goes from the highest mid-range price to half-way to - // the maximum price. - let new_interval_start = mid_range_highest_price_payout_point_end; - - let new_interval_end_price = mid_range_highest_price_payout_point_end.event_outcome - + (mid_range_highest_price_payout_point_end.event_outcome + BTCUSD_MAX_PRICE) / 2; - - let short_liquidation_interval_start = PayoutPoint { - event_outcome: new_interval_end_price, - outcome_payout: short_liquidation_interval_start.outcome_payout, - extra_precision: 0, - }; - - pieces.push((new_interval_start, short_liquidation_interval_start)); + pieces.push(( + short_liquidation_interval_start, + short_liquidation_interval_end, + )); - pieces.push(( - short_liquidation_interval_start, - short_liquidation_interval_end, - )); - } else { - // E.g. - // - mid_range_highest_price_payout_point_end = ( 100_000 USD/BTC, 10_000 sats) - // - short_liquidation_interval_start = ( 101_000 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // Transformed into: - // - mid_range_highest_price_payout_point_end = ( 100_000 USD/BTC, 10_000 sats) - // - new_interval_start = ( 100_000 USD/BTC, 10_000 sats) - // - new_interval_end = ( 101_000 USD/BTC, 0 sats) - // - short_liquidation_interval_start = ( 101_000 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // By introducing an interval that connects the highest mid-range price to the start of - // the liquidation interval. - let new_interval_start = mid_range_highest_price_payout_point_end; - - let new_interval_end_price = short_liquidation_interval_start.event_outcome; - - let short_liquidation_interval_start = PayoutPoint { - event_outcome: new_interval_end_price, - outcome_payout: short_liquidation_interval_start.outcome_payout, - extra_precision: 0, + // Connect the intervals `[(X, A), (Y, A))]` and `[(Y, B), (Z, B)]` by introducing a step-up + // interval in between: + // + // `[(X, A), (Y - 1, A))]`, `[(Y - 1, A), (Y, B)]`, `[(Y, B), (Z, D)]`. + // + // E.g. converting + // + // `[($100, 60 sats), ($200, 60 sats)]`, `[($200, 30 sats), ($300, 30 sats)]` into + // + // `[($100, 60 sats), ($199, 60 sats)]`, `[($199, 60 sats), ($200, 30 sats)]`, `[($200, 30 + // sats), ($300, 30 sats)]`. + let pieces_minus_first = pieces.iter().skip(1); + let mut pieces = pieces + .iter() + .zip(pieces_minus_first) + .flat_map(|((a, b), (c, _))| { + let shared_point = PayoutPoint { + event_outcome: b.event_outcome - 1, + ..*b }; - pieces.push((new_interval_start, short_liquidation_interval_start)); + vec![(*a, shared_point), (shared_point, *c)] + }) + .collect::>(); - pieces.push(( - short_liquidation_interval_start, - short_liquidation_interval_end, - )); - } - } else { - // We are here if the short liquidation price is exactly `BTCUSD_MAX_PRICE`. This - // corresponds to the party going short using a leverage of 1. - - // E.g. - // - mid_range_highest_price_payout_point_start = (1_048_560 USD/BTC, 95 sats) - // - mid_range_highest_price_payout_point_end = (1_048_575 USD/BTC, 0 sats) - // - short_liquidation_interval_start = (1_048_575 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // Transformed into: - // - mid_range_highest_price_payout_point_start = (1_048_560 USD/BTC, 95 sats) - // - mid_range_highest_price_payout_point_end = (1_048_567 USD/BTC, 0 sats) - // - short_liquidation_interval_start = (1_048_567 USD/BTC, 0 sats) - // - short_liquidation_interval_end = (1_048_575 USD/BTC, 0 sats) - // - // By making sure that the short liquidation interval is not constant price, because - // `rust-dlc` will probably reject that. - - let mid_range_highest_price_payout_point_start = mid_range.last().expect("at least one").0; - - let short_liquidation_interval_start_price = mid_range_highest_price_payout_point_start - .event_outcome - + ((mid_range_highest_price_payout_point_end.event_outcome - - mid_range_highest_price_payout_point_start.event_outcome) - / 2); - - pieces.last_mut().expect("at least one").1.event_outcome = - short_liquidation_interval_start_price; - - let short_liquidation_interval_start = PayoutPoint { - event_outcome: short_liquidation_interval_start_price, - outcome_payout: short_liquidation_interval_start.outcome_payout, - extra_precision: 0, - }; + // The last interval is dropped by zipping an iterator of length `L` with an iterator of length + // `L-1`, dropping the last element implicitly. Therefore, we need to reintroduce the last + // element. + pieces.push(( + short_liquidation_interval_start, + short_liquidation_interval_end, + )); - pieces.push(( - short_liquidation_interval_start, - short_liquidation_interval_end, - )); - } + let pieces = pieces + .into_iter() + .filter(|(start, end)| start.event_outcome != end.event_outcome) + .collect::>(); Ok(pieces) } @@ -350,10 +282,6 @@ fn calculate_long_liquidation_interval_payouts( /// /// Returns tuples of payout points, first item is lower point, next item is higher point of two /// points on the payout curve. -/// -/// TODO: We should almost certainly define our own step function to avoid having to use the -/// `rust-dlc` `RoundingIntervals`, which can cause problems on the boundaries between different -/// `RoundingInterval`s. fn calculate_mid_range_payouts( offer_party: PartyParams, accept_party: PartyParams, @@ -380,72 +308,47 @@ fn calculate_mid_range_payouts( Direction::Short => (accept_party.margin, offer_party.margin), }; + let step = { + let diff = short_liquidation_price + .checked_sub(long_liquidation_price) + .context("Long liquidation price smaller than short liquidation price")?; + diff / PAYOUT_CURVE_DISCRETIZATION_INTERVALS + }; + let pieces = (long_liquidation_price..short_liquidation_price) - .step_by(PAYOUT_CURVE_DISCRETIZATION_STEPS as usize) + .step_by(step as usize) .map(|interval_start_price| { - // Interval start payout point. + let interval_mid_price = interval_start_price + step / 2; - // If this is the start of the middle interval after the long liquidation interval. - let interval_start_payout = if interval_start_price == long_liquidation_price { - // We can build this first payout based on the long liquidation interval end payout, - // but it already includes the collateral reserve, so we don't have to add it - // again. + let pnl = calculate_pnl( + initial_price, + Decimal::from(interval_mid_price), + quantity, + offer_direction, + long_margin, + short_margin, + )?; - long_liquidation_interval_end_payout.outcome_payout as i64 - } else { - let pnl = calculate_pnl( - initial_price, - Decimal::from(interval_start_price), - quantity, - offer_direction, - long_margin, - short_margin, - )?; - - offer_party.total_collateral() as i64 + pnl - }; + // If this is the start of the middle interval after the long liquidation interval. + let interval_payout = offer_party.total_collateral() as i64 + pnl; // Payout cannot be below min. - let interval_start_payout = interval_start_payout.max(min_payout_offer_party as i64); + let interval_payout = interval_payout.max(min_payout_offer_party as i64); // Payout cannot be above max. - let interval_start_payout = interval_start_payout.min(max_payout_offer_party as i64); + let interval_payout = interval_payout.min(max_payout_offer_party as i64); let interval_start_payout_point = PayoutPoint { event_outcome: interval_start_price, - outcome_payout: interval_start_payout as u64, + outcome_payout: interval_payout as u64, extra_precision: 0, }; - // Interval end payout point. - - let interval_end_price = (interval_start_price + PAYOUT_CURVE_DISCRETIZATION_STEPS) - .min(short_liquidation_price); - - let interval_end_payout = if interval_end_price == short_liquidation_price { - short_liquidation_interval_start_payout.outcome_payout as i64 - } else { - let pnl = calculate_pnl( - initial_price, - Decimal::from(interval_end_price), - quantity, - offer_direction, - long_margin, - short_margin, - )?; - - offer_party.total_collateral() as i64 + pnl - }; - - // Payout cannot be below min. - let interval_end_payout = interval_end_payout.max(min_payout_offer_party as i64); - - // Payout cannot be above max. - let interval_end_payout = interval_end_payout.min(max_payout_offer_party as i64); + let interval_end_price = (interval_start_price + step).min(short_liquidation_price); let interval_end_payout_point = PayoutPoint { event_outcome: interval_end_price, - outcome_payout: interval_end_payout as u64, + outcome_payout: interval_payout as u64, extra_precision: 0, }; @@ -466,7 +369,17 @@ fn calculate_short_liquidation_interval_payouts( liquidation_price_short: Decimal, collateral_reserve_short: u64, ) -> Result<(PayoutPoint, PayoutPoint)> { - let liquidation_price_short = liquidation_price_short.to_u64().expect("to fit"); + let liquidation_price_short = { + let price = liquidation_price_short.to_u64().expect("to fit"); + + // We cannot end up generating an interval with a constant price, because `rust-dlc` says + // that `Payout points must have ascending event outcome value`. + if price == BTCUSD_MAX_PRICE { + price - 1 + } else { + price + } + }; let (lower, upper) = match offer_direction { // If the offer party is long and the short party gets liquidated, the offer party gets all @@ -514,6 +427,7 @@ fn calculate_short_liquidation_interval_payouts( #[cfg(test)] mod tests { use super::*; + use insta::assert_debug_snapshot; use proptest::prelude::*; use rust_decimal::prelude::FromPrimitive; use rust_decimal::prelude::ToPrimitive; @@ -639,150 +553,56 @@ mod tests { } #[test] - fn snapshot_test_mid_range_offerer() { - // setup + fn payout_function_snapshot() { let quantity = 60_000.0; let initial_price = dec!(30_000); - let long_leverage = 2.0; - let short_leverage = 2.0; + let leverage_long = Decimal::TWO; + let leverage_short = Decimal::TWO; - let offer_margin = - Amount::from_sat(calculate_margin(initial_price, quantity, long_leverage)); - let accept_margin = - Amount::from_sat(calculate_margin(initial_price, quantity, short_leverage)); let collateral_reserve_offer = Amount::from_sat(300_000); + let collateral_reserve_accept = Amount::ZERO; - let long_liquidation_price = calculate_long_liquidation_price( - Decimal::from_f32(long_leverage).expect("to fit into f32"), - initial_price, - ); - let short_liquidation_price = calculate_short_liquidation_price( - Decimal::from_f32(short_leverage).expect("to fit into f32"), - initial_price, - ); - - let party_params_offer = PartyParams::new(offer_margin, collateral_reserve_offer); - let party_params_accept = PartyParams::new(accept_margin, Amount::ZERO); - - let total_collateral = - party_params_offer.total_collateral() + party_params_accept.total_collateral(); + let offer_party_direction = Direction::Short; - // act: offer long - let mid_range_payouts_offer_long = { - let offer_direction = Direction::Long; - - calculate_mid_range_payouts( - party_params_offer, - party_params_accept, - initial_price, - &PayoutPoint { - event_outcome: long_liquidation_price.to_u64().unwrap(), - outcome_payout: party_params_offer.collateral_reserve, - extra_precision: 0, - }, - &PayoutPoint { - event_outcome: short_liquidation_price.to_u64().unwrap(), - outcome_payout: party_params_offer.total_collateral() - + party_params_accept.margin, - extra_precision: 0, - }, - offer_direction, - quantity, - ) - .expect("To be able to compute mid range") + let (leverage_offer, leverage_accept) = match offer_party_direction { + Direction::Long => (leverage_long, leverage_short), + Direction::Short => (leverage_short, leverage_long), }; - // act: offer short - let mid_range_payouts_offer_short = { - let offer_direction = Direction::Short; + let margin_offer = + calculate_margin(initial_price, quantity, leverage_offer.to_f32().unwrap()); + let margin_accept = + calculate_margin(initial_price, quantity, leverage_accept.to_f32().unwrap()); - calculate_mid_range_payouts( - party_params_offer, - party_params_accept, - initial_price, - &PayoutPoint { - event_outcome: long_liquidation_price.to_u64().unwrap(), - outcome_payout: party_params_offer.total_collateral() - + party_params_accept.margin, - extra_precision: 0, - }, - &PayoutPoint { - event_outcome: short_liquidation_price.to_u64().unwrap(), - outcome_payout: party_params_offer.collateral_reserve, - extra_precision: 0, - }, - offer_direction, - quantity, - ) - .expect("To be able to compute mid range") + let offer_party = PartyParams { + margin: margin_offer, + collateral_reserve: collateral_reserve_offer.to_sat(), }; - if PRINT_CSV { - let file = File::create("src/payout_curve/mid_range_long.csv").unwrap(); - let mut wtr = csv::WriterBuilder::new().delimiter(b';').from_writer(file); - for (lower, upper) in &mid_range_payouts_offer_long { - wtr.serialize(lower).expect("to be able to write"); - wtr.serialize(upper).expect("to be able to write"); - } - wtr.flush().unwrap(); - let file = File::create("src/payout_curve/mid_range_short.csv").unwrap(); - let mut wtr = csv::WriterBuilder::new().delimiter(b';').from_writer(file); - for (lower, upper) in &mid_range_payouts_offer_short { - wtr.serialize(lower).expect("to be able to write"); - wtr.serialize(upper).expect("to be able to write"); - } - wtr.flush().unwrap(); - } + let accept_party = PartyParams { + margin: margin_accept, + collateral_reserve: collateral_reserve_accept.to_sat(), + }; - let should_mid_range_payouts = - should_data_offerer().expect("To be able to load sample data"); + let long_liquidation_price = calculate_long_liquidation_price(leverage_long, initial_price); + let short_liquidation_price = + calculate_short_liquidation_price(leverage_short, initial_price); + let price_params = PriceParams { + initial_price, + long_liquidation_price, + short_liquidation_price, + }; - // assert - for (lower, upper) in &mid_range_payouts_offer_long { - assert!( - should_mid_range_payouts - .iter() - .any(|item| item.start == lower.event_outcome - && (item.payout_accept + item.collateral_reserve_offer) - .min(total_collateral) - == lower.outcome_payout), - "{:?} was not in should payout curve - accept", - lower - ); - assert!( - should_mid_range_payouts - .iter() - .any(|item| item.start == upper.event_outcome - && (item.payout_accept + item.collateral_reserve_offer) - .min(total_collateral) - == upper.outcome_payout), - "{:?} was not in should payout curve - accept", - upper - ); - } + let payout_function = build_inverse_payout_function( + quantity, + offer_party, + accept_party, + price_params, + offer_party_direction, + ) + .unwrap(); - for (lower, upper) in &mid_range_payouts_offer_short { - assert!( - should_mid_range_payouts - .iter() - .any(|item| item.start == lower.event_outcome - && (item.payout_offer + item.collateral_reserve_offer) - .min(total_collateral) - == lower.outcome_payout), - "{:?} was not in should payout curve - offer", - lower - ); - assert!( - should_mid_range_payouts - .iter() - .any(|item| item.start == upper.event_outcome - && (item.payout_offer + item.collateral_reserve_offer) - .min(total_collateral) - == upper.outcome_payout), - "{:?} was not in should payout curve - offer", - upper - ); - } + assert_debug_snapshot!(payout_function); } #[test] @@ -943,24 +763,10 @@ mod tests { .unwrap(); // assert - assert_eq!(lower.event_outcome, BTCUSD_MAX_PRICE); + assert_eq!(lower.event_outcome, BTCUSD_MAX_PRICE - 1); assert_eq!(upper.event_outcome, BTCUSD_MAX_PRICE); } - /// Loads the sample data from a csv file - fn should_data_offerer() -> Result> { - let mut rdr = csv::ReaderBuilder::new() - .delimiter(b';') - .from_path("src/payout_curve/should_data_offer_short.csv")?; - let mut should_samples = vec![]; - for result in rdr.deserialize() { - let record: ShouldPayout = result?; - - should_samples.push(record); - } - Ok(should_samples) - } - #[derive(Serialize, Deserialize)] struct PayoutCouple { lower_event_outcome: u64, @@ -1121,7 +927,6 @@ mod tests { .iter() .all(|(lower, upper)| lower.outcome_payout > 0 && upper.outcome_payout > 0); } - } } @@ -1177,7 +982,6 @@ mod bounds_tests { offer_party_direction ); } - } #[track_caller] diff --git a/crates/payout_curve/src/payout_curve/should_data_offer_short.csv b/crates/payout_curve/src/payout_curve/should_data_offer_short.csv deleted file mode 100644 index bc601b813..000000000 --- a/crates/payout_curve/src/payout_curve/should_data_offer_short.csv +++ /dev/null @@ -1,40005 +0,0 @@ -start;payout_offer;payout_accept;collateral_reserve_offer -0;200000000;0;300000 -20000;200000000;0;300000 -20001;199985001;14999;300000 -20002;199970003;29997;300000 -20003;199955007;44993;300000 -20004;199940012;59988;300000 -20005;199925019;74981;300000 -20006;199910027;89973;300000 -20007;199895037;104963;300000 -20008;199880048;119952;300000 -20009;199865061;134939;300000 -20010;199850075;149925;300000 -20011;199835091;164909;300000 -20012;199820108;179892;300000 -20013;199805127;194873;300000 -20014;199790147;209853;300000 -20015;199775169;224831;300000 -20016;199760192;239808;300000 -20017;199745217;254783;300000 -20018;199730243;269757;300000 -20019;199715270;284730;300000 -20020;199700300;299700;300000 -20021;199685330;314670;300000 -20022;199670363;329637;300000 -20023;199655396;344604;300000 -20024;199640431;359569;300000 -20025;199625468;374532;300000 -20026;199610506;389494;300000 -20027;199595546;404454;300000 -20028;199580587;419413;300000 -20029;199565630;434370;300000 -20030;199550674;449326;300000 -20031;199535720;464280;300000 -20032;199520767;479233;300000 -20033;199505815;494185;300000 -20034;199490866;509134;300000 -20035;199475917;524083;300000 -20036;199460970;539030;300000 -20037;199446025;553975;300000 -20038;199431081;568919;300000 -20039;199416139;583861;300000 -20040;199401198;598802;300000 -20041;199386258;613742;300000 -20042;199371320;628680;300000 -20043;199356384;643616;300000 -20044;199341449;658551;300000 -20045;199326515;673485;300000 -20046;199311583;688417;300000 -20047;199296653;703347;300000 -20048;199281724;718276;300000 -20049;199266796;733204;300000 -20050;199251870;748130;300000 -20051;199236946;763054;300000 -20052;199222023;777977;300000 -20053;199207101;792899;300000 -20054;199192181;807819;300000 -20055;199177263;822737;300000 -20056;199162345;837655;300000 -20057;199147430;852570;300000 -20058;199132516;867484;300000 -20059;199117603;882397;300000 -20060;199102692;897308;300000 -20061;199087782;912218;300000 -20062;199072874;927126;300000 -20063;199057967;942033;300000 -20064;199043062;956938;300000 -20065;199028158;971842;300000 -20066;199013256;986744;300000 -20067;198998356;1001644;300000 -20068;198983456;1016544;300000 -20069;198968558;1031442;300000 -20070;198953662;1046338;300000 -20071;198938767;1061233;300000 -20072;198923874;1076126;300000 -20073;198908982;1091018;300000 -20074;198894092;1105908;300000 -20075;198879203;1120797;300000 -20076;198864316;1135684;300000 -20077;198849430;1150570;300000 -20078;198834545;1165455;300000 -20079;198819662;1180338;300000 -20080;198804781;1195219;300000 -20081;198789901;1210099;300000 -20082;198775022;1224978;300000 -20083;198760145;1239855;300000 -20084;198745270;1254730;300000 -20085;198730396;1269604;300000 -20086;198715523;1284477;300000 -20087;198700652;1299348;300000 -20088;198685783;1314217;300000 -20089;198670914;1329086;300000 -20090;198656048;1343952;300000 -20091;198641183;1358817;300000 -20092;198626319;1373681;300000 -20093;198611457;1388543;300000 -20094;198596596;1403404;300000 -20095;198581737;1418263;300000 -20096;198566879;1433121;300000 -20097;198552023;1447977;300000 -20098;198537168;1462832;300000 -20099;198522315;1477685;300000 -20100;198507463;1492537;300000 -20101;198492612;1507388;300000 -20102;198477763;1522237;300000 -20103;198462916;1537084;300000 -20104;198448070;1551930;300000 -20105;198433226;1566774;300000 -20106;198418383;1581617;300000 -20107;198403541;1596459;300000 -20108;198388701;1611299;300000 -20109;198373862;1626138;300000 -20110;198359025;1640975;300000 -20111;198344190;1655810;300000 -20112;198329356;1670644;300000 -20113;198314523;1685477;300000 -20114;198299692;1700308;300000 -20115;198284862;1715138;300000 -20116;198270034;1729966;300000 -20117;198255207;1744793;300000 -20118;198240382;1759618;300000 -20119;198225558;1774442;300000 -20120;198210736;1789264;300000 -20121;198195915;1804085;300000 -20122;198181095;1818905;300000 -20123;198166277;1833723;300000 -20124;198151461;1848539;300000 -20125;198136646;1863354;300000 -20126;198121832;1878168;300000 -20127;198107020;1892980;300000 -20128;198092210;1907790;300000 -20129;198077401;1922599;300000 -20130;198062593;1937407;300000 -20131;198047787;1952213;300000 -20132;198032982;1967018;300000 -20133;198018179;1981821;300000 -20134;198003377;1996623;300000 -20135;197988577;2011423;300000 -20136;197973778;2026222;300000 -20137;197958981;2041019;300000 -20138;197944185;2055815;300000 -20139;197929391;2070609;300000 -20140;197914598;2085402;300000 -20141;197899806;2100194;300000 -20142;197885016;2114984;300000 -20143;197870228;2129772;300000 -20144;197855441;2144559;300000 -20145;197840655;2159345;300000 -20146;197825871;2174129;300000 -20147;197811088;2188912;300000 -20148;197796307;2203693;300000 -20149;197781528;2218472;300000 -20150;197766749;2233251;300000 -20151;197751973;2248027;300000 -20152;197737197;2262803;300000 -20153;197722423;2277577;300000 -20154;197707651;2292349;300000 -20155;197692880;2307120;300000 -20156;197678111;2321889;300000 -20157;197663343;2336657;300000 -20158;197648576;2351424;300000 -20159;197633811;2366189;300000 -20160;197619048;2380952;300000 -20161;197604286;2395714;300000 -20162;197589525;2410475;300000 -20163;197574766;2425234;300000 -20164;197560008;2439992;300000 -20165;197545252;2454748;300000 -20166;197530497;2469503;300000 -20167;197515744;2484256;300000 -20168;197500992;2499008;300000 -20169;197486241;2513759;300000 -20170;197471492;2528508;300000 -20171;197456745;2543255;300000 -20172;197441999;2558001;300000 -20173;197427254;2572746;300000 -20174;197412511;2587489;300000 -20175;197397770;2602230;300000 -20176;197383029;2616971;300000 -20177;197368291;2631709;300000 -20178;197353553;2646447;300000 -20179;197338818;2661182;300000 -20180;197324083;2675917;300000 -20181;197309350;2690650;300000 -20182;197294619;2705381;300000 -20183;197279889;2720111;300000 -20184;197265161;2734839;300000 -20185;197250433;2749567;300000 -20186;197235708;2764292;300000 -20187;197220984;2779016;300000 -20188;197206261;2793739;300000 -20189;197191540;2808460;300000 -20190;197176820;2823180;300000 -20191;197162102;2837898;300000 -20192;197147385;2852615;300000 -20193;197132670;2867330;300000 -20194;197117956;2882044;300000 -20195;197103243;2896757;300000 -20196;197088532;2911468;300000 -20197;197073823;2926177;300000 -20198;197059115;2940885;300000 -20199;197044408;2955592;300000 -20200;197029703;2970297;300000 -20201;197014999;2985001;300000 -20202;197000297;2999703;300000 -20203;196985596;3014404;300000 -20204;196970897;3029103;300000 -20205;196956199;3043801;300000 -20206;196941503;3058497;300000 -20207;196926808;3073192;300000 -20208;196912114;3087886;300000 -20209;196897422;3102578;300000 -20210;196882731;3117269;300000 -20211;196868042;3131958;300000 -20212;196853354;3146646;300000 -20213;196838668;3161332;300000 -20214;196823983;3176017;300000 -20215;196809300;3190700;300000 -20216;196794618;3205382;300000 -20217;196779938;3220062;300000 -20218;196765259;3234741;300000 -20219;196750581;3249419;300000 -20220;196735905;3264095;300000 -20221;196721230;3278770;300000 -20222;196706557;3293443;300000 -20223;196691885;3308115;300000 -20224;196677215;3322785;300000 -20225;196662546;3337454;300000 -20226;196647879;3352121;300000 -20227;196633213;3366787;300000 -20228;196618549;3381451;300000 -20229;196603886;3396114;300000 -20230;196589224;3410776;300000 -20231;196574564;3425436;300000 -20232;196559905;3440095;300000 -20233;196545248;3454752;300000 -20234;196530592;3469408;300000 -20235;196515938;3484062;300000 -20236;196501285;3498715;300000 -20237;196486633;3513367;300000 -20238;196471983;3528017;300000 -20239;196457335;3542665;300000 -20240;196442688;3557312;300000 -20241;196428042;3571958;300000 -20242;196413398;3586602;300000 -20243;196398755;3601245;300000 -20244;196384114;3615886;300000 -20245;196369474;3630526;300000 -20246;196354836;3645164;300000 -20247;196340199;3659801;300000 -20248;196325563;3674437;300000 -20249;196310929;3689071;300000 -20250;196296296;3703704;300000 -20251;196281665;3718335;300000 -20252;196267035;3732965;300000 -20253;196252407;3747593;300000 -20254;196237780;3762220;300000 -20255;196223155;3776845;300000 -20256;196208531;3791469;300000 -20257;196193908;3806092;300000 -20258;196179287;3820713;300000 -20259;196164668;3835332;300000 -20260;196150049;3849951;300000 -20261;196135433;3864567;300000 -20262;196120817;3879183;300000 -20263;196106203;3893797;300000 -20264;196091591;3908409;300000 -20265;196076980;3923020;300000 -20266;196062370;3937630;300000 -20267;196047762;3952238;300000 -20268;196033156;3966844;300000 -20269;196018550;3981450;300000 -20270;196003947;3996053;300000 -20271;195989344;4010656;300000 -20272;195974743;4025257;300000 -20273;195960144;4039856;300000 -20274;195945546;4054454;300000 -20275;195930949;4069051;300000 -20276;195916354;4083646;300000 -20277;195901761;4098239;300000 -20278;195887168;4112832;300000 -20279;195872578;4127422;300000 -20280;195857988;4142012;300000 -20281;195843400;4156600;300000 -20282;195828814;4171186;300000 -20283;195814229;4185771;300000 -20284;195799645;4200355;300000 -20285;195785063;4214937;300000 -20286;195770482;4229518;300000 -20287;195755903;4244097;300000 -20288;195741325;4258675;300000 -20289;195726748;4273252;300000 -20290;195712173;4287827;300000 -20291;195697600;4302400;300000 -20292;195683028;4316972;300000 -20293;195668457;4331543;300000 -20294;195653888;4346112;300000 -20295;195639320;4360680;300000 -20296;195624754;4375246;300000 -20297;195610189;4389811;300000 -20298;195595625;4404375;300000 -20299;195581063;4418937;300000 -20300;195566502;4433498;300000 -20301;195551943;4448057;300000 -20302;195537385;4462615;300000 -20303;195522829;4477171;300000 -20304;195508274;4491726;300000 -20305;195493721;4506279;300000 -20306;195479169;4520831;300000 -20307;195464618;4535382;300000 -20308;195450069;4549931;300000 -20309;195435521;4564479;300000 -20310;195420975;4579025;300000 -20311;195406430;4593570;300000 -20312;195391887;4608113;300000 -20313;195377345;4622655;300000 -20314;195362804;4637196;300000 -20315;195348265;4651735;300000 -20316;195333727;4666273;300000 -20317;195319191;4680809;300000 -20318;195304656;4695344;300000 -20319;195290123;4709877;300000 -20320;195275591;4724409;300000 -20321;195261060;4738940;300000 -20322;195246531;4753469;300000 -20323;195232003;4767997;300000 -20324;195217477;4782523;300000 -20325;195202952;4797048;300000 -20326;195188429;4811571;300000 -20327;195173907;4826093;300000 -20328;195159386;4840614;300000 -20329;195144867;4855133;300000 -20330;195130349;4869651;300000 -20331;195115833;4884167;300000 -20332;195101318;4898682;300000 -20333;195086805;4913195;300000 -20334;195072293;4927707;300000 -20335;195057782;4942218;300000 -20336;195043273;4956727;300000 -20337;195028765;4971235;300000 -20338;195014259;4985741;300000 -20339;194999754;5000246;300000 -20340;194985251;5014749;300000 -20341;194970749;5029251;300000 -20342;194956248;5043752;300000 -20343;194941749;5058251;300000 -20344;194927251;5072749;300000 -20345;194912755;5087245;300000 -20346;194898260;5101740;300000 -20347;194883767;5116233;300000 -20348;194869275;5130725;300000 -20349;194854784;5145216;300000 -20350;194840295;5159705;300000 -20351;194825807;5174193;300000 -20352;194811321;5188679;300000 -20353;194796836;5203164;300000 -20354;194782352;5217648;300000 -20355;194767870;5232130;300000 -20356;194753390;5246610;300000 -20357;194738910;5261090;300000 -20358;194724433;5275567;300000 -20359;194709956;5290044;300000 -20360;194695481;5304519;300000 -20361;194681008;5318992;300000 -20362;194666536;5333464;300000 -20363;194652065;5347935;300000 -20364;194637596;5362404;300000 -20365;194623128;5376872;300000 -20366;194608661;5391339;300000 -20367;194594196;5405804;300000 -20368;194579733;5420267;300000 -20369;194565271;5434729;300000 -20370;194550810;5449190;300000 -20371;194536351;5463649;300000 -20372;194521893;5478107;300000 -20373;194507436;5492564;300000 -20374;194492981;5507019;300000 -20375;194478528;5521472;300000 -20376;194464075;5535925;300000 -20377;194449625;5550375;300000 -20378;194435175;5564825;300000 -20379;194420727;5579273;300000 -20380;194406281;5593719;300000 -20381;194391836;5608164;300000 -20382;194377392;5622608;300000 -20383;194362950;5637050;300000 -20384;194348509;5651491;300000 -20385;194334069;5665931;300000 -20386;194319631;5680369;300000 -20387;194305194;5694806;300000 -20388;194290759;5709241;300000 -20389;194276325;5723675;300000 -20390;194261893;5738107;300000 -20391;194247462;5752538;300000 -20392;194233033;5766967;300000 -20393;194218604;5781396;300000 -20394;194204178;5795822;300000 -20395;194189752;5810248;300000 -20396;194175328;5824672;300000 -20397;194160906;5839094;300000 -20398;194146485;5853515;300000 -20399;194132065;5867935;300000 -20400;194117647;5882353;300000 -20401;194103230;5896770;300000 -20402;194088815;5911185;300000 -20403;194074401;5925599;300000 -20404;194059988;5940012;300000 -20405;194045577;5954423;300000 -20406;194031167;5968833;300000 -20407;194016759;5983241;300000 -20408;194002352;5997648;300000 -20409;193987946;6012054;300000 -20410;193973542;6026458;300000 -20411;193959140;6040860;300000 -20412;193944738;6055262;300000 -20413;193930339;6069661;300000 -20414;193915940;6084060;300000 -20415;193901543;6098457;300000 -20416;193887147;6112853;300000 -20417;193872753;6127247;300000 -20418;193858360;6141640;300000 -20419;193843969;6156031;300000 -20420;193829579;6170421;300000 -20421;193815190;6184810;300000 -20422;193800803;6199197;300000 -20423;193786417;6213583;300000 -20424;193772033;6227967;300000 -20425;193757650;6242350;300000 -20426;193743268;6256732;300000 -20427;193728888;6271112;300000 -20428;193714509;6285491;300000 -20429;193700132;6299868;300000 -20430;193685756;6314244;300000 -20431;193671382;6328618;300000 -20432;193657009;6342991;300000 -20433;193642637;6357363;300000 -20434;193628267;6371733;300000 -20435;193613898;6386102;300000 -20436;193599530;6400470;300000 -20437;193585164;6414836;300000 -20438;193570799;6429201;300000 -20439;193556436;6443564;300000 -20440;193542074;6457926;300000 -20441;193527714;6472286;300000 -20442;193513355;6486645;300000 -20443;193498997;6501003;300000 -20444;193484641;6515359;300000 -20445;193470286;6529714;300000 -20446;193455933;6544067;300000 -20447;193441581;6558419;300000 -20448;193427230;6572770;300000 -20449;193412881;6587119;300000 -20450;193398533;6601467;300000 -20451;193384187;6615813;300000 -20452;193369842;6630158;300000 -20453;193355498;6644502;300000 -20454;193341156;6658844;300000 -20455;193326815;6673185;300000 -20456;193312476;6687524;300000 -20457;193298138;6701862;300000 -20458;193283801;6716199;300000 -20459;193269466;6730534;300000 -20460;193255132;6744868;300000 -20461;193240800;6759200;300000 -20462;193226469;6773531;300000 -20463;193212139;6787861;300000 -20464;193197811;6802189;300000 -20465;193183484;6816516;300000 -20466;193169159;6830841;300000 -20467;193154835;6845165;300000 -20468;193140512;6859488;300000 -20469;193126191;6873809;300000 -20470;193111871;6888129;300000 -20471;193097553;6902447;300000 -20472;193083236;6916764;300000 -20473;193068920;6931080;300000 -20474;193054606;6945394;300000 -20475;193040293;6959707;300000 -20476;193025982;6974018;300000 -20477;193011672;6988328;300000 -20478;192997363;7002637;300000 -20479;192983056;7016944;300000 -20480;192968750;7031250;300000 -20481;192954446;7045554;300000 -20482;192940143;7059857;300000 -20483;192925841;7074159;300000 -20484;192911541;7088459;300000 -20485;192897242;7102758;300000 -20486;192882944;7117056;300000 -20487;192868648;7131352;300000 -20488;192854354;7145646;300000 -20489;192840061;7159939;300000 -20490;192825769;7174231;300000 -20491;192811478;7188522;300000 -20492;192797189;7202811;300000 -20493;192782901;7217099;300000 -20494;192768615;7231385;300000 -20495;192754330;7245670;300000 -20496;192740047;7259953;300000 -20497;192725765;7274235;300000 -20498;192711484;7288516;300000 -20499;192697205;7302795;300000 -20500;192682927;7317073;300000 -20501;192668650;7331350;300000 -20502;192654375;7345625;300000 -20503;192640101;7359899;300000 -20504;192625829;7374171;300000 -20505;192611558;7388442;300000 -20506;192597289;7402711;300000 -20507;192583020;7416980;300000 -20508;192568754;7431246;300000 -20509;192554488;7445512;300000 -20510;192540224;7459776;300000 -20511;192525962;7474038;300000 -20512;192511700;7488300;300000 -20513;192497441;7502559;300000 -20514;192483182;7516818;300000 -20515;192468925;7531075;300000 -20516;192454670;7545330;300000 -20517;192440415;7559585;300000 -20518;192426162;7573838;300000 -20519;192411911;7588089;300000 -20520;192397661;7602339;300000 -20521;192383412;7616588;300000 -20522;192369165;7630835;300000 -20523;192354919;7645081;300000 -20524;192340674;7659326;300000 -20525;192326431;7673569;300000 -20526;192312189;7687811;300000 -20527;192297949;7702051;300000 -20528;192283710;7716290;300000 -20529;192269472;7730528;300000 -20530;192255236;7744764;300000 -20531;192241001;7758999;300000 -20532;192226768;7773232;300000 -20533;192212536;7787464;300000 -20534;192198305;7801695;300000 -20535;192184076;7815924;300000 -20536;192169848;7830152;300000 -20537;192155622;7844378;300000 -20538;192141396;7858604;300000 -20539;192127173;7872827;300000 -20540;192112950;7887050;300000 -20541;192098729;7901271;300000 -20542;192084510;7915490;300000 -20543;192070292;7929708;300000 -20544;192056075;7943925;300000 -20545;192041859;7958141;300000 -20546;192027645;7972355;300000 -20547;192013433;7986567;300000 -20548;191999221;8000779;300000 -20549;191985011;8014989;300000 -20550;191970803;8029197;300000 -20551;191956596;8043404;300000 -20552;191942390;8057610;300000 -20553;191928186;8071814;300000 -20554;191913983;8086017;300000 -20555;191899781;8100219;300000 -20556;191885581;8114419;300000 -20557;191871382;8128618;300000 -20558;191857185;8142815;300000 -20559;191842988;8157012;300000 -20560;191828794;8171206;300000 -20561;191814600;8185400;300000 -20562;191800409;8199591;300000 -20563;191786218;8213782;300000 -20564;191772029;8227971;300000 -20565;191757841;8242159;300000 -20566;191743655;8256345;300000 -20567;191729470;8270530;300000 -20568;191715286;8284714;300000 -20569;191701104;8298896;300000 -20570;191686923;8313077;300000 -20571;191672743;8327257;300000 -20572;191658565;8341435;300000 -20573;191644388;8355612;300000 -20574;191630213;8369787;300000 -20575;191616039;8383961;300000 -20576;191601866;8398134;300000 -20577;191587695;8412305;300000 -20578;191573525;8426475;300000 -20579;191559357;8440643;300000 -20580;191545190;8454810;300000 -20581;191531024;8468976;300000 -20582;191516859;8483141;300000 -20583;191502696;8497304;300000 -20584;191488535;8511465;300000 -20585;191474375;8525625;300000 -20586;191460216;8539784;300000 -20587;191446058;8553942;300000 -20588;191431902;8568098;300000 -20589;191417747;8582253;300000 -20590;191403594;8596406;300000 -20591;191389442;8610558;300000 -20592;191375291;8624709;300000 -20593;191361142;8638858;300000 -20594;191346994;8653006;300000 -20595;191332848;8667152;300000 -20596;191318703;8681297;300000 -20597;191304559;8695441;300000 -20598;191290417;8709583;300000 -20599;191276276;8723724;300000 -20600;191262136;8737864;300000 -20601;191247998;8752002;300000 -20602;191233861;8766139;300000 -20603;191219725;8780275;300000 -20604;191205591;8794409;300000 -20605;191191458;8808542;300000 -20606;191177327;8822673;300000 -20607;191163197;8836803;300000 -20608;191149068;8850932;300000 -20609;191134941;8865059;300000 -20610;191120815;8879185;300000 -20611;191106691;8893309;300000 -20612;191092567;8907433;300000 -20613;191078446;8921554;300000 -20614;191064325;8935675;300000 -20615;191050206;8949794;300000 -20616;191036088;8963912;300000 -20617;191021972;8978028;300000 -20618;191007857;8992143;300000 -20619;190993744;9006256;300000 -20620;190979631;9020369;300000 -20621;190965521;9034479;300000 -20622;190951411;9048589;300000 -20623;190937303;9062697;300000 -20624;190923196;9076804;300000 -20625;190909091;9090909;300000 -20626;190894987;9105013;300000 -20627;190880884;9119116;300000 -20628;190866783;9133217;300000 -20629;190852683;9147317;300000 -20630;190838585;9161415;300000 -20631;190824487;9175513;300000 -20632;190810392;9189608;300000 -20633;190796297;9203703;300000 -20634;190782204;9217796;300000 -20635;190768112;9231888;300000 -20636;190754022;9245978;300000 -20637;190739933;9260067;300000 -20638;190725846;9274154;300000 -20639;190711759;9288241;300000 -20640;190697674;9302326;300000 -20641;190683591;9316409;300000 -20642;190669509;9330491;300000 -20643;190655428;9344572;300000 -20644;190641349;9358651;300000 -20645;190627271;9372729;300000 -20646;190613194;9386806;300000 -20647;190599119;9400881;300000 -20648;190585045;9414955;300000 -20649;190570972;9429028;300000 -20650;190556901;9443099;300000 -20651;190542831;9457169;300000 -20652;190528762;9471238;300000 -20653;190514695;9485305;300000 -20654;190500629;9499371;300000 -20655;190486565;9513435;300000 -20656;190472502;9527498;300000 -20657;190458440;9541560;300000 -20658;190444380;9555620;300000 -20659;190430321;9569679;300000 -20660;190416263;9583737;300000 -20661;190402207;9597793;300000 -20662;190388152;9611848;300000 -20663;190374099;9625901;300000 -20664;190360046;9639954;300000 -20665;190345996;9654004;300000 -20666;190331946;9668054;300000 -20667;190317898;9682102;300000 -20668;190303851;9696149;300000 -20669;190289806;9710194;300000 -20670;190275762;9724238;300000 -20671;190261719;9738281;300000 -20672;190247678;9752322;300000 -20673;190233638;9766362;300000 -20674;190219599;9780401;300000 -20675;190205562;9794438;300000 -20676;190191526;9808474;300000 -20677;190177492;9822508;300000 -20678;190163459;9836541;300000 -20679;190149427;9850573;300000 -20680;190135397;9864603;300000 -20681;190121367;9878633;300000 -20682;190107340;9892660;300000 -20683;190093313;9906687;300000 -20684;190079288;9920712;300000 -20685;190065265;9934735;300000 -20686;190051242;9948758;300000 -20687;190037221;9962779;300000 -20688;190023202;9976798;300000 -20689;190009184;9990816;300000 -20690;189995167;10004833;300000 -20691;189981151;10018849;300000 -20692;189967137;10032863;300000 -20693;189953124;10046876;300000 -20694;189939113;10060887;300000 -20695;189925103;10074897;300000 -20696;189911094;10088906;300000 -20697;189897087;10102913;300000 -20698;189883080;10116920;300000 -20699;189869076;10130924;300000 -20700;189855072;10144928;300000 -20701;189841070;10158930;300000 -20702;189827070;10172930;300000 -20703;189813071;10186929;300000 -20704;189799073;10200927;300000 -20705;189785076;10214924;300000 -20706;189771081;10228919;300000 -20707;189757087;10242913;300000 -20708;189743094;10256906;300000 -20709;189729103;10270897;300000 -20710;189715113;10284887;300000 -20711;189701125;10298875;300000 -20712;189687138;10312862;300000 -20713;189673152;10326848;300000 -20714;189659168;10340832;300000 -20715;189645185;10354815;300000 -20716;189631203;10368797;300000 -20717;189617223;10382777;300000 -20718;189603244;10396756;300000 -20719;189589266;10410734;300000 -20720;189575290;10424710;300000 -20721;189561315;10438685;300000 -20722;189547341;10452659;300000 -20723;189533369;10466631;300000 -20724;189519398;10480602;300000 -20725;189505428;10494572;300000 -20726;189491460;10508540;300000 -20727;189477493;10522507;300000 -20728;189463528;10536472;300000 -20729;189449563;10550437;300000 -20730;189435601;10564399;300000 -20731;189421639;10578361;300000 -20732;189407679;10592321;300000 -20733;189393720;10606280;300000 -20734;189379763;10620237;300000 -20735;189365807;10634193;300000 -20736;189351852;10648148;300000 -20737;189337898;10662102;300000 -20738;189323946;10676054;300000 -20739;189309996;10690004;300000 -20740;189296046;10703954;300000 -20741;189282098;10717902;300000 -20742;189268152;10731848;300000 -20743;189254206;10745794;300000 -20744;189240262;10759738;300000 -20745;189226320;10773680;300000 -20746;189212378;10787622;300000 -20747;189198438;10801562;300000 -20748;189184500;10815500;300000 -20749;189170562;10829438;300000 -20750;189156627;10843373;300000 -20751;189142692;10857308;300000 -20752;189128759;10871241;300000 -20753;189114827;10885173;300000 -20754;189100896;10899104;300000 -20755;189086967;10913033;300000 -20756;189073039;10926961;300000 -20757;189059113;10940887;300000 -20758;189045187;10954813;300000 -20759;189031264;10968736;300000 -20760;189017341;10982659;300000 -20761;189003420;10996580;300000 -20762;188989500;11010500;300000 -20763;188975582;11024418;300000 -20764;188961664;11038336;300000 -20765;188947749;11052251;300000 -20766;188933834;11066166;300000 -20767;188919921;11080079;300000 -20768;188906009;11093991;300000 -20769;188892099;11107901;300000 -20770;188878190;11121810;300000 -20771;188864282;11135718;300000 -20772;188850376;11149624;300000 -20773;188836470;11163530;300000 -20774;188822567;11177433;300000 -20775;188808664;11191336;300000 -20776;188794763;11205237;300000 -20777;188780863;11219137;300000 -20778;188766965;11233035;300000 -20779;188753068;11246932;300000 -20780;188739172;11260828;300000 -20781;188725278;11274722;300000 -20782;188711385;11288615;300000 -20783;188697493;11302507;300000 -20784;188683603;11316397;300000 -20785;188669714;11330286;300000 -20786;188655826;11344174;300000 -20787;188641940;11358060;300000 -20788;188628055;11371945;300000 -20789;188614171;11385829;300000 -20790;188600289;11399711;300000 -20791;188586408;11413592;300000 -20792;188572528;11427472;300000 -20793;188558650;11441350;300000 -20794;188544773;11455227;300000 -20795;188530897;11469103;300000 -20796;188517023;11482977;300000 -20797;188503149;11496851;300000 -20798;188489278;11510722;300000 -20799;188475407;11524593;300000 -20800;188461538;11538462;300000 -20801;188447671;11552329;300000 -20802;188433804;11566196;300000 -20803;188419939;11580061;300000 -20804;188406076;11593924;300000 -20805;188392213;11607787;300000 -20806;188378352;11621648;300000 -20807;188364493;11635507;300000 -20808;188350634;11649366;300000 -20809;188336777;11663223;300000 -20810;188322922;11677078;300000 -20811;188309067;11690933;300000 -20812;188295214;11704786;300000 -20813;188281363;11718637;300000 -20814;188267512;11732488;300000 -20815;188253663;11746337;300000 -20816;188239816;11760184;300000 -20817;188225969;11774031;300000 -20818;188212124;11787876;300000 -20819;188198280;11801720;300000 -20820;188184438;11815562;300000 -20821;188170597;11829403;300000 -20822;188156757;11843243;300000 -20823;188142919;11857081;300000 -20824;188129082;11870918;300000 -20825;188115246;11884754;300000 -20826;188101412;11898588;300000 -20827;188087579;11912421;300000 -20828;188073747;11926253;300000 -20829;188059916;11940084;300000 -20830;188046087;11953913;300000 -20831;188032260;11967740;300000 -20832;188018433;11981567;300000 -20833;188004608;11995392;300000 -20834;187990784;12009216;300000 -20835;187976962;12023038;300000 -20836;187963141;12036859;300000 -20837;187949321;12050679;300000 -20838;187935502;12064498;300000 -20839;187921685;12078315;300000 -20840;187907869;12092131;300000 -20841;187894055;12105945;300000 -20842;187880242;12119758;300000 -20843;187866430;12133570;300000 -20844;187852619;12147381;300000 -20845;187838810;12161190;300000 -20846;187825002;12174998;300000 -20847;187811196;12188804;300000 -20848;187797391;12202609;300000 -20849;187783587;12216413;300000 -20850;187769784;12230216;300000 -20851;187755983;12244017;300000 -20852;187742183;12257817;300000 -20853;187728384;12271616;300000 -20854;187714587;12285413;300000 -20855;187700791;12299209;300000 -20856;187686997;12313003;300000 -20857;187673203;12326797;300000 -20858;187659411;12340589;300000 -20859;187645621;12354379;300000 -20860;187631831;12368169;300000 -20861;187618043;12381957;300000 -20862;187604257;12395743;300000 -20863;187590471;12409529;300000 -20864;187576687;12423313;300000 -20865;187562904;12437096;300000 -20866;187549123;12450877;300000 -20867;187535343;12464657;300000 -20868;187521564;12478436;300000 -20869;187507787;12492213;300000 -20870;187494011;12505989;300000 -20871;187480236;12519764;300000 -20872;187466462;12533538;300000 -20873;187452690;12547310;300000 -20874;187438919;12561081;300000 -20875;187425150;12574850;300000 -20876;187411381;12588619;300000 -20877;187397615;12602385;300000 -20878;187383849;12616151;300000 -20879;187370085;12629915;300000 -20880;187356322;12643678;300000 -20881;187342560;12657440;300000 -20882;187328800;12671200;300000 -20883;187315041;12684959;300000 -20884;187301283;12698717;300000 -20885;187287527;12712473;300000 -20886;187273772;12726228;300000 -20887;187260018;12739982;300000 -20888;187246266;12753734;300000 -20889;187232515;12767485;300000 -20890;187218765;12781235;300000 -20891;187205017;12794983;300000 -20892;187191269;12808731;300000 -20893;187177524;12822476;300000 -20894;187163779;12836221;300000 -20895;187150036;12849964;300000 -20896;187136294;12863706;300000 -20897;187122553;12877447;300000 -20898;187108814;12891186;300000 -20899;187095076;12904924;300000 -20900;187081340;12918660;300000 -20901;187067604;12932396;300000 -20902;187053870;12946130;300000 -20903;187040138;12959862;300000 -20904;187026406;12973594;300000 -20905;187012676;12987324;300000 -20906;186998948;13001052;300000 -20907;186985220;13014780;300000 -20908;186971494;13028506;300000 -20909;186957769;13042231;300000 -20910;186944046;13055954;300000 -20911;186930324;13069676;300000 -20912;186916603;13083397;300000 -20913;186902883;13097117;300000 -20914;186889165;13110835;300000 -20915;186875448;13124552;300000 -20916;186861733;13138267;300000 -20917;186848018;13151982;300000 -20918;186834305;13165695;300000 -20919;186820594;13179406;300000 -20920;186806883;13193117;300000 -20921;186793174;13206826;300000 -20922;186779467;13220533;300000 -20923;186765760;13234240;300000 -20924;186752055;13247945;300000 -20925;186738351;13261649;300000 -20926;186724649;13275351;300000 -20927;186710948;13289052;300000 -20928;186697248;13302752;300000 -20929;186683549;13316451;300000 -20930;186669852;13330148;300000 -20931;186656156;13343844;300000 -20932;186642461;13357539;300000 -20933;186628768;13371232;300000 -20934;186615076;13384924;300000 -20935;186601385;13398615;300000 -20936;186587696;13412304;300000 -20937;186574008;13425992;300000 -20938;186560321;13439679;300000 -20939;186546635;13453365;300000 -20940;186532951;13467049;300000 -20941;186519268;13480732;300000 -20942;186505587;13494413;300000 -20943;186491907;13508093;300000 -20944;186478228;13521772;300000 -20945;186464550;13535450;300000 -20946;186450874;13549126;300000 -20947;186437199;13562801;300000 -20948;186423525;13576475;300000 -20949;186409852;13590148;300000 -20950;186396181;13603819;300000 -20951;186382512;13617488;300000 -20952;186368843;13631157;300000 -20953;186355176;13644824;300000 -20954;186341510;13658490;300000 -20955;186327845;13672155;300000 -20956;186314182;13685818;300000 -20957;186300520;13699480;300000 -20958;186286859;13713141;300000 -20959;186273200;13726800;300000 -20960;186259542;13740458;300000 -20961;186245885;13754115;300000 -20962;186232230;13767770;300000 -20963;186218576;13781424;300000 -20964;186204923;13795077;300000 -20965;186191271;13808729;300000 -20966;186177621;13822379;300000 -20967;186163972;13836028;300000 -20968;186150324;13849676;300000 -20969;186136678;13863322;300000 -20970;186123033;13876967;300000 -20971;186109389;13890611;300000 -20972;186095747;13904253;300000 -20973;186082106;13917894;300000 -20974;186068466;13931534;300000 -20975;186054827;13945173;300000 -20976;186041190;13958810;300000 -20977;186027554;13972446;300000 -20978;186013919;13986081;300000 -20979;186000286;13999714;300000 -20980;185986654;14013346;300000 -20981;185973023;14026977;300000 -20982;185959394;14040606;300000 -20983;185945766;14054234;300000 -20984;185932139;14067861;300000 -20985;185918513;14081487;300000 -20986;185904889;14095111;300000 -20987;185891266;14108734;300000 -20988;185877644;14122356;300000 -20989;185864024;14135976;300000 -20990;185850405;14149595;300000 -20991;185836787;14163213;300000 -20992;185823171;14176829;300000 -20993;185809556;14190444;300000 -20994;185795942;14204058;300000 -20995;185782329;14217671;300000 -20996;185768718;14231282;300000 -20997;185755108;14244892;300000 -20998;185741499;14258501;300000 -20999;185727892;14272108;300000 -21000;185714286;14285714;300000 -21001;185700681;14299319;300000 -21002;185687077;14312923;300000 -21003;185673475;14326525;300000 -21004;185659874;14340126;300000 -21005;185646275;14353725;300000 -21006;185632676;14367324;300000 -21007;185619079;14380921;300000 -21008;185605484;14394516;300000 -21009;185591889;14408111;300000 -21010;185578296;14421704;300000 -21011;185564704;14435296;300000 -21012;185551114;14448886;300000 -21013;185537524;14462476;300000 -21014;185523936;14476064;300000 -21015;185510350;14489650;300000 -21016;185496764;14503236;300000 -21017;185483180;14516820;300000 -21018;185469597;14530403;300000 -21019;185456016;14543984;300000 -21020;185442436;14557564;300000 -21021;185428857;14571143;300000 -21022;185415279;14584721;300000 -21023;185401703;14598297;300000 -21024;185388128;14611872;300000 -21025;185374554;14625446;300000 -21026;185360982;14639018;300000 -21027;185347410;14652590;300000 -21028;185333841;14666159;300000 -21029;185320272;14679728;300000 -21030;185306705;14693295;300000 -21031;185293139;14706861;300000 -21032;185279574;14720426;300000 -21033;185266011;14733989;300000 -21034;185252448;14747552;300000 -21035;185238888;14761112;300000 -21036;185225328;14774672;300000 -21037;185211770;14788230;300000 -21038;185198213;14801787;300000 -21039;185184657;14815343;300000 -21040;185171103;14828897;300000 -21041;185157550;14842450;300000 -21042;185143998;14856002;300000 -21043;185130447;14869553;300000 -21044;185116898;14883102;300000 -21045;185103350;14896650;300000 -21046;185089803;14910197;300000 -21047;185076258;14923742;300000 -21048;185062714;14937286;300000 -21049;185049171;14950829;300000 -21050;185035629;14964371;300000 -21051;185022089;14977911;300000 -21052;185008550;14991450;300000 -21053;184995013;15004987;300000 -21054;184981476;15018524;300000 -21055;184967941;15032059;300000 -21056;184954407;15045593;300000 -21057;184940875;15059125;300000 -21058;184927344;15072656;300000 -21059;184913814;15086186;300000 -21060;184900285;15099715;300000 -21061;184886758;15113242;300000 -21062;184873231;15126769;300000 -21063;184859707;15140293;300000 -21064;184846183;15153817;300000 -21065;184832661;15167339;300000 -21066;184819140;15180860;300000 -21067;184805620;15194380;300000 -21068;184792102;15207898;300000 -21069;184778585;15221415;300000 -21070;184765069;15234931;300000 -21071;184751554;15248446;300000 -21072;184738041;15261959;300000 -21073;184724529;15275471;300000 -21074;184711018;15288982;300000 -21075;184697509;15302491;300000 -21076;184684001;15315999;300000 -21077;184670494;15329506;300000 -21078;184656988;15343012;300000 -21079;184643484;15356516;300000 -21080;184629981;15370019;300000 -21081;184616479;15383521;300000 -21082;184602979;15397021;300000 -21083;184589480;15410520;300000 -21084;184575982;15424018;300000 -21085;184562485;15437515;300000 -21086;184548990;15451010;300000 -21087;184535496;15464504;300000 -21088;184522003;15477997;300000 -21089;184508512;15491488;300000 -21090;184495021;15504979;300000 -21091;184481532;15518468;300000 -21092;184468045;15531955;300000 -21093;184454558;15545442;300000 -21094;184441073;15558927;300000 -21095;184427589;15572411;300000 -21096;184414107;15585893;300000 -21097;184400626;15599374;300000 -21098;184387146;15612854;300000 -21099;184373667;15626333;300000 -21100;184360190;15639810;300000 -21101;184346713;15653287;300000 -21102;184333239;15666761;300000 -21103;184319765;15680235;300000 -21104;184306293;15693707;300000 -21105;184292822;15707178;300000 -21106;184279352;15720648;300000 -21107;184265883;15734117;300000 -21108;184252416;15747584;300000 -21109;184238950;15761050;300000 -21110;184225486;15774514;300000 -21111;184212022;15787978;300000 -21112;184198560;15801440;300000 -21113;184185099;15814901;300000 -21114;184171640;15828360;300000 -21115;184158181;15841819;300000 -21116;184144724;15855276;300000 -21117;184131269;15868731;300000 -21118;184117814;15882186;300000 -21119;184104361;15895639;300000 -21120;184090909;15909091;300000 -21121;184077458;15922542;300000 -21122;184064009;15935991;300000 -21123;184050561;15949439;300000 -21124;184037114;15962886;300000 -21125;184023669;15976331;300000 -21126;184010224;15989776;300000 -21127;183996781;16003219;300000 -21128;183983340;16016660;300000 -21129;183969899;16030101;300000 -21130;183956460;16043540;300000 -21131;183943022;16056978;300000 -21132;183929585;16070415;300000 -21133;183916150;16083850;300000 -21134;183902716;16097284;300000 -21135;183889283;16110717;300000 -21136;183875852;16124148;300000 -21137;183862421;16137579;300000 -21138;183848992;16151008;300000 -21139;183835565;16164435;300000 -21140;183822138;16177862;300000 -21141;183808713;16191287;300000 -21142;183795289;16204711;300000 -21143;183781866;16218134;300000 -21144;183768445;16231555;300000 -21145;183755025;16244975;300000 -21146;183741606;16258394;300000 -21147;183728188;16271812;300000 -21148;183714772;16285228;300000 -21149;183701357;16298643;300000 -21150;183687943;16312057;300000 -21151;183674531;16325469;300000 -21152;183661120;16338880;300000 -21153;183647710;16352290;300000 -21154;183634301;16365699;300000 -21155;183620893;16379107;300000 -21156;183607487;16392513;300000 -21157;183594082;16405918;300000 -21158;183580679;16419321;300000 -21159;183567276;16432724;300000 -21160;183553875;16446125;300000 -21161;183540475;16459525;300000 -21162;183527077;16472923;300000 -21163;183513680;16486320;300000 -21164;183500284;16499716;300000 -21165;183486889;16513111;300000 -21166;183473495;16526505;300000 -21167;183460103;16539897;300000 -21168;183446712;16553288;300000 -21169;183433322;16566678;300000 -21170;183419934;16580066;300000 -21171;183406547;16593453;300000 -21172;183393161;16606839;300000 -21173;183379776;16620224;300000 -21174;183366393;16633607;300000 -21175;183353011;16646989;300000 -21176;183339630;16660370;300000 -21177;183326250;16673750;300000 -21178;183312872;16687128;300000 -21179;183299495;16700505;300000 -21180;183286119;16713881;300000 -21181;183272744;16727256;300000 -21182;183259371;16740629;300000 -21183;183245999;16754001;300000 -21184;183232628;16767372;300000 -21185;183219259;16780741;300000 -21186;183205891;16794109;300000 -21187;183192524;16807476;300000 -21188;183179158;16820842;300000 -21189;183165794;16834206;300000 -21190;183152430;16847570;300000 -21191;183139068;16860932;300000 -21192;183125708;16874292;300000 -21193;183112348;16887652;300000 -21194;183098990;16901010;300000 -21195;183085633;16914367;300000 -21196;183072278;16927722;300000 -21197;183058923;16941077;300000 -21198;183045570;16954430;300000 -21199;183032219;16967781;300000 -21200;183018868;16981132;300000 -21201;183005519;16994481;300000 -21202;182992171;17007829;300000 -21203;182978824;17021176;300000 -21204;182965478;17034522;300000 -21205;182952134;17047866;300000 -21206;182938791;17061209;300000 -21207;182925449;17074551;300000 -21208;182912109;17087891;300000 -21209;182898769;17101231;300000 -21210;182885431;17114569;300000 -21211;182872095;17127905;300000 -21212;182858759;17141241;300000 -21213;182845425;17154575;300000 -21214;182832092;17167908;300000 -21215;182818760;17181240;300000 -21216;182805430;17194570;300000 -21217;182792101;17207899;300000 -21218;182778773;17221227;300000 -21219;182765446;17234554;300000 -21220;182752121;17247879;300000 -21221;182738796;17261204;300000 -21222;182725474;17274526;300000 -21223;182712152;17287848;300000 -21224;182698832;17301168;300000 -21225;182685512;17314488;300000 -21226;182672194;17327806;300000 -21227;182658878;17341122;300000 -21228;182645562;17354438;300000 -21229;182632248;17367752;300000 -21230;182618935;17381065;300000 -21231;182605624;17394376;300000 -21232;182592313;17407687;300000 -21233;182579004;17420996;300000 -21234;182565697;17434303;300000 -21235;182552390;17447610;300000 -21236;182539085;17460915;300000 -21237;182525780;17474220;300000 -21238;182512478;17487522;300000 -21239;182499176;17500824;300000 -21240;182485876;17514124;300000 -21241;182472577;17527423;300000 -21242;182459279;17540721;300000 -21243;182445982;17554018;300000 -21244;182432687;17567313;300000 -21245;182419393;17580607;300000 -21246;182406100;17593900;300000 -21247;182392808;17607192;300000 -21248;182379518;17620482;300000 -21249;182366229;17633771;300000 -21250;182352941;17647059;300000 -21251;182339655;17660345;300000 -21252;182326369;17673631;300000 -21253;182313085;17686915;300000 -21254;182299802;17700198;300000 -21255;182286521;17713479;300000 -21256;182273240;17726760;300000 -21257;182259961;17740039;300000 -21258;182246684;17753316;300000 -21259;182233407;17766593;300000 -21260;182220132;17779868;300000 -21261;182206858;17793142;300000 -21262;182193585;17806415;300000 -21263;182180313;17819687;300000 -21264;182167043;17832957;300000 -21265;182153774;17846226;300000 -21266;182140506;17859494;300000 -21267;182127239;17872761;300000 -21268;182113974;17886026;300000 -21269;182100710;17899290;300000 -21270;182087447;17912553;300000 -21271;182074186;17925814;300000 -21272;182060925;17939075;300000 -21273;182047666;17952334;300000 -21274;182034408;17965592;300000 -21275;182021152;17978848;300000 -21276;182007896;17992104;300000 -21277;181994642;18005358;300000 -21278;181981389;18018611;300000 -21279;181968138;18031862;300000 -21280;181954887;18045113;300000 -21281;181941638;18058362;300000 -21282;181928390;18071610;300000 -21283;181915144;18084856;300000 -21284;181901898;18098102;300000 -21285;181888654;18111346;300000 -21286;181875411;18124589;300000 -21287;181862169;18137831;300000 -21288;181848929;18151071;300000 -21289;181835690;18164310;300000 -21290;181822452;18177548;300000 -21291;181809215;18190785;300000 -21292;181795980;18204020;300000 -21293;181782746;18217254;300000 -21294;181769513;18230487;300000 -21295;181756281;18243719;300000 -21296;181743050;18256950;300000 -21297;181729821;18270179;300000 -21298;181716593;18283407;300000 -21299;181703366;18296634;300000 -21300;181690141;18309859;300000 -21301;181676917;18323083;300000 -21302;181663694;18336306;300000 -21303;181650472;18349528;300000 -21304;181637251;18362749;300000 -21305;181624032;18375968;300000 -21306;181610814;18389186;300000 -21307;181597597;18402403;300000 -21308;181584381;18415619;300000 -21309;181571167;18428833;300000 -21310;181557954;18442046;300000 -21311;181544742;18455258;300000 -21312;181531532;18468468;300000 -21313;181518322;18481678;300000 -21314;181505114;18494886;300000 -21315;181491907;18508093;300000 -21316;181478701;18521299;300000 -21317;181465497;18534503;300000 -21318;181452294;18547706;300000 -21319;181439092;18560908;300000 -21320;181425891;18574109;300000 -21321;181412692;18587308;300000 -21322;181399493;18600507;300000 -21323;181386296;18613704;300000 -21324;181373101;18626899;300000 -21325;181359906;18640094;300000 -21326;181346713;18653287;300000 -21327;181333521;18666479;300000 -21328;181320330;18679670;300000 -21329;181307141;18692859;300000 -21330;181293952;18706048;300000 -21331;181280765;18719235;300000 -21332;181267579;18732421;300000 -21333;181254395;18745605;300000 -21334;181241211;18758789;300000 -21335;181228029;18771971;300000 -21336;181214848;18785152;300000 -21337;181201668;18798332;300000 -21338;181188490;18811510;300000 -21339;181175313;18824687;300000 -21340;181162137;18837863;300000 -21341;181148962;18851038;300000 -21342;181135789;18864211;300000 -21343;181122616;18877384;300000 -21344;181109445;18890555;300000 -21345;181096275;18903725;300000 -21346;181083107;18916893;300000 -21347;181069940;18930060;300000 -21348;181056773;18943227;300000 -21349;181043609;18956391;300000 -21350;181030445;18969555;300000 -21351;181017283;18982717;300000 -21352;181004121;18995879;300000 -21353;180990961;19009039;300000 -21354;180977803;19022197;300000 -21355;180964645;19035355;300000 -21356;180951489;19048511;300000 -21357;180938334;19061666;300000 -21358;180925180;19074820;300000 -21359;180912028;19087972;300000 -21360;180898876;19101124;300000 -21361;180885726;19114274;300000 -21362;180872577;19127423;300000 -21363;180859430;19140570;300000 -21364;180846283;19153717;300000 -21365;180833138;19166862;300000 -21366;180819994;19180006;300000 -21367;180806852;19193148;300000 -21368;180793710;19206290;300000 -21369;180780570;19219430;300000 -21370;180767431;19232569;300000 -21371;180754293;19245707;300000 -21372;180741157;19258843;300000 -21373;180728021;19271979;300000 -21374;180714887;19285113;300000 -21375;180701754;19298246;300000 -21376;180688623;19311377;300000 -21377;180675492;19324508;300000 -21378;180662363;19337637;300000 -21379;180649235;19350765;300000 -21380;180636109;19363891;300000 -21381;180622983;19377017;300000 -21382;180609859;19390141;300000 -21383;180596736;19403264;300000 -21384;180583614;19416386;300000 -21385;180570493;19429507;300000 -21386;180557374;19442626;300000 -21387;180544256;19455744;300000 -21388;180531139;19468861;300000 -21389;180518023;19481977;300000 -21390;180504909;19495091;300000 -21391;180491796;19508204;300000 -21392;180478684;19521316;300000 -21393;180465573;19534427;300000 -21394;180452463;19547537;300000 -21395;180439355;19560645;300000 -21396;180426248;19573752;300000 -21397;180413142;19586858;300000 -21398;180400037;19599963;300000 -21399;180386934;19613066;300000 -21400;180373832;19626168;300000 -21401;180360731;19639269;300000 -21402;180347631;19652369;300000 -21403;180334533;19665467;300000 -21404;180321435;19678565;300000 -21405;180308339;19691661;300000 -21406;180295244;19704756;300000 -21407;180282151;19717849;300000 -21408;180269058;19730942;300000 -21409;180255967;19744033;300000 -21410;180242877;19757123;300000 -21411;180229788;19770212;300000 -21412;180216701;19783299;300000 -21413;180203615;19796385;300000 -21414;180190530;19809470;300000 -21415;180177446;19822554;300000 -21416;180164363;19835637;300000 -21417;180151282;19848718;300000 -21418;180138202;19861798;300000 -21419;180125123;19874877;300000 -21420;180112045;19887955;300000 -21421;180098968;19901032;300000 -21422;180085893;19914107;300000 -21423;180072819;19927181;300000 -21424;180059746;19940254;300000 -21425;180046674;19953326;300000 -21426;180033604;19966396;300000 -21427;180020535;19979465;300000 -21428;180007467;19992533;300000 -21429;179994400;20005600;300000 -21430;179981335;20018665;300000 -21431;179968270;20031730;300000 -21432;179955207;20044793;300000 -21433;179942145;20057855;300000 -21434;179929085;20070915;300000 -21435;179916025;20083975;300000 -21436;179902967;20097033;300000 -21437;179889910;20110090;300000 -21438;179876854;20123146;300000 -21439;179863800;20136200;300000 -21440;179850746;20149254;300000 -21441;179837694;20162306;300000 -21442;179824643;20175357;300000 -21443;179811594;20188406;300000 -21444;179798545;20201455;300000 -21445;179785498;20214502;300000 -21446;179772452;20227548;300000 -21447;179759407;20240593;300000 -21448;179746363;20253637;300000 -21449;179733321;20266679;300000 -21450;179720280;20279720;300000 -21451;179707240;20292760;300000 -21452;179694201;20305799;300000 -21453;179681163;20318837;300000 -21454;179668127;20331873;300000 -21455;179655092;20344908;300000 -21456;179642058;20357942;300000 -21457;179629025;20370975;300000 -21458;179615994;20384006;300000 -21459;179602964;20397036;300000 -21460;179589935;20410065;300000 -21461;179576907;20423093;300000 -21462;179563880;20436120;300000 -21463;179550855;20449145;300000 -21464;179537831;20462169;300000 -21465;179524808;20475192;300000 -21466;179511786;20488214;300000 -21467;179498766;20501234;300000 -21468;179485746;20514254;300000 -21469;179472728;20527272;300000 -21470;179459711;20540289;300000 -21471;179446696;20553304;300000 -21472;179433681;20566319;300000 -21473;179420668;20579332;300000 -21474;179407656;20592344;300000 -21475;179394645;20605355;300000 -21476;179381635;20618365;300000 -21477;179368627;20631373;300000 -21478;179355620;20644380;300000 -21479;179342614;20657386;300000 -21480;179329609;20670391;300000 -21481;179316605;20683395;300000 -21482;179303603;20696397;300000 -21483;179290602;20709398;300000 -21484;179277602;20722398;300000 -21485;179264603;20735397;300000 -21486;179251606;20748394;300000 -21487;179238609;20761391;300000 -21488;179225614;20774386;300000 -21489;179212620;20787380;300000 -21490;179199628;20800372;300000 -21491;179186636;20813364;300000 -21492;179173646;20826354;300000 -21493;179160657;20839343;300000 -21494;179147669;20852331;300000 -21495;179134682;20865318;300000 -21496;179121697;20878303;300000 -21497;179108713;20891287;300000 -21498;179095730;20904270;300000 -21499;179082748;20917252;300000 -21500;179069767;20930233;300000 -21501;179056788;20943212;300000 -21502;179043810;20956190;300000 -21503;179030833;20969167;300000 -21504;179017857;20982143;300000 -21505;179004883;20995117;300000 -21506;178991909;21008091;300000 -21507;178978937;21021063;300000 -21508;178965966;21034034;300000 -21509;178952996;21047004;300000 -21510;178940028;21059972;300000 -21511;178927061;21072939;300000 -21512;178914094;21085906;300000 -21513;178901130;21098870;300000 -21514;178888166;21111834;300000 -21515;178875203;21124797;300000 -21516;178862242;21137758;300000 -21517;178849282;21150718;300000 -21518;178836323;21163677;300000 -21519;178823365;21176635;300000 -21520;178810409;21189591;300000 -21521;178797454;21202546;300000 -21522;178784500;21215500;300000 -21523;178771547;21228453;300000 -21524;178758595;21241405;300000 -21525;178745645;21254355;300000 -21526;178732695;21267305;300000 -21527;178719747;21280253;300000 -21528;178706800;21293200;300000 -21529;178693855;21306145;300000 -21530;178680910;21319090;300000 -21531;178667967;21332033;300000 -21532;178655025;21344975;300000 -21533;178642084;21357916;300000 -21534;178629145;21370855;300000 -21535;178616206;21383794;300000 -21536;178603269;21396731;300000 -21537;178590333;21409667;300000 -21538;178577398;21422602;300000 -21539;178564464;21435536;300000 -21540;178551532;21448468;300000 -21541;178538601;21461399;300000 -21542;178525671;21474329;300000 -21543;178512742;21487258;300000 -21544;178499814;21500186;300000 -21545;178486888;21513112;300000 -21546;178473963;21526037;300000 -21547;178461039;21538961;300000 -21548;178448116;21551884;300000 -21549;178435194;21564806;300000 -21550;178422274;21577726;300000 -21551;178409355;21590645;300000 -21552;178396437;21603563;300000 -21553;178383520;21616480;300000 -21554;178370604;21629396;300000 -21555;178357690;21642310;300000 -21556;178344776;21655224;300000 -21557;178331864;21668136;300000 -21558;178318954;21681046;300000 -21559;178306044;21693956;300000 -21560;178293135;21706865;300000 -21561;178280228;21719772;300000 -21562;178267322;21732678;300000 -21563;178254417;21745583;300000 -21564;178241514;21758486;300000 -21565;178228611;21771389;300000 -21566;178215710;21784290;300000 -21567;178202810;21797190;300000 -21568;178189911;21810089;300000 -21569;178177013;21822987;300000 -21570;178164117;21835883;300000 -21571;178151222;21848778;300000 -21572;178138327;21861673;300000 -21573;178125435;21874565;300000 -21574;178112543;21887457;300000 -21575;178099652;21900348;300000 -21576;178086763;21913237;300000 -21577;178073875;21926125;300000 -21578;178060988;21939012;300000 -21579;178048102;21951898;300000 -21580;178035218;21964782;300000 -21581;178022334;21977666;300000 -21582;178009452;21990548;300000 -21583;177996571;22003429;300000 -21584;177983692;22016308;300000 -21585;177970813;22029187;300000 -21586;177957936;22042064;300000 -21587;177945060;22054940;300000 -21588;177932185;22067815;300000 -21589;177919311;22080689;300000 -21590;177906438;22093562;300000 -21591;177893567;22106433;300000 -21592;177880697;22119303;300000 -21593;177867828;22132172;300000 -21594;177854960;22145040;300000 -21595;177842093;22157907;300000 -21596;177829228;22170772;300000 -21597;177816363;22183637;300000 -21598;177803500;22196500;300000 -21599;177790638;22209362;300000 -21600;177777778;22222222;300000 -21601;177764918;22235082;300000 -21602;177752060;22247940;300000 -21603;177739203;22260797;300000 -21604;177726347;22273653;300000 -21605;177713492;22286508;300000 -21606;177700639;22299361;300000 -21607;177687786;22312214;300000 -21608;177674935;22325065;300000 -21609;177662085;22337915;300000 -21610;177649236;22350764;300000 -21611;177636389;22363611;300000 -21612;177623542;22376458;300000 -21613;177610697;22389303;300000 -21614;177597853;22402147;300000 -21615;177585010;22414990;300000 -21616;177572169;22427831;300000 -21617;177559328;22440672;300000 -21618;177546489;22453511;300000 -21619;177533651;22466349;300000 -21620;177520814;22479186;300000 -21621;177507978;22492022;300000 -21622;177495144;22504856;300000 -21623;177482311;22517689;300000 -21624;177469478;22530522;300000 -21625;177456647;22543353;300000 -21626;177443818;22556182;300000 -21627;177430989;22569011;300000 -21628;177418162;22581838;300000 -21629;177405335;22594665;300000 -21630;177392510;22607490;300000 -21631;177379687;22620313;300000 -21632;177366864;22633136;300000 -21633;177354042;22645958;300000 -21634;177341222;22658778;300000 -21635;177328403;22671597;300000 -21636;177315585;22684415;300000 -21637;177302768;22697232;300000 -21638;177289953;22710047;300000 -21639;177277138;22722862;300000 -21640;177264325;22735675;300000 -21641;177251513;22748487;300000 -21642;177238703;22761297;300000 -21643;177225893;22774107;300000 -21644;177213084;22786916;300000 -21645;177200277;22799723;300000 -21646;177187471;22812529;300000 -21647;177174666;22825334;300000 -21648;177161863;22838137;300000 -21649;177149060;22850940;300000 -21650;177136259;22863741;300000 -21651;177123459;22876541;300000 -21652;177110660;22889340;300000 -21653;177097862;22902138;300000 -21654;177085065;22914935;300000 -21655;177072270;22927730;300000 -21656;177059475;22940525;300000 -21657;177046682;22953318;300000 -21658;177033890;22966110;300000 -21659;177021100;22978900;300000 -21660;177008310;22991690;300000 -21661;176995522;23004478;300000 -21662;176982735;23017265;300000 -21663;176969949;23030051;300000 -21664;176957164;23042836;300000 -21665;176944380;23055620;300000 -21666;176931598;23068402;300000 -21667;176918817;23081183;300000 -21668;176906037;23093963;300000 -21669;176893258;23106742;300000 -21670;176880480;23119520;300000 -21671;176867703;23132297;300000 -21672;176854928;23145072;300000 -21673;176842154;23157846;300000 -21674;176829381;23170619;300000 -21675;176816609;23183391;300000 -21676;176803838;23196162;300000 -21677;176791069;23208931;300000 -21678;176778301;23221699;300000 -21679;176765533;23234467;300000 -21680;176752768;23247232;300000 -21681;176740003;23259997;300000 -21682;176727239;23272761;300000 -21683;176714477;23285523;300000 -21684;176701716;23298284;300000 -21685;176688955;23311045;300000 -21686;176676197;23323803;300000 -21687;176663439;23336561;300000 -21688;176650682;23349318;300000 -21689;176637927;23362073;300000 -21690;176625173;23374827;300000 -21691;176612420;23387580;300000 -21692;176599668;23400332;300000 -21693;176586917;23413083;300000 -21694;176574168;23425832;300000 -21695;176561420;23438580;300000 -21696;176548673;23451327;300000 -21697;176535927;23464073;300000 -21698;176523182;23476818;300000 -21699;176510438;23489562;300000 -21700;176497696;23502304;300000 -21701;176484955;23515045;300000 -21702;176472215;23527785;300000 -21703;176459476;23540524;300000 -21704;176446738;23553262;300000 -21705;176434001;23565999;300000 -21706;176421266;23578734;300000 -21707;176408532;23591468;300000 -21708;176395799;23604201;300000 -21709;176383067;23616933;300000 -21710;176370336;23629664;300000 -21711;176357607;23642393;300000 -21712;176344878;23655122;300000 -21713;176332151;23667849;300000 -21714;176319425;23680575;300000 -21715;176306700;23693300;300000 -21716;176293977;23706023;300000 -21717;176281254;23718746;300000 -21718;176268533;23731467;300000 -21719;176255813;23744187;300000 -21720;176243094;23756906;300000 -21721;176230376;23769624;300000 -21722;176217660;23782340;300000 -21723;176204944;23795056;300000 -21724;176192230;23807770;300000 -21725;176179517;23820483;300000 -21726;176166805;23833195;300000 -21727;176154094;23845906;300000 -21728;176141384;23858616;300000 -21729;176128676;23871324;300000 -21730;176115969;23884031;300000 -21731;176103263;23896737;300000 -21732;176090558;23909442;300000 -21733;176077854;23922146;300000 -21734;176065151;23934849;300000 -21735;176052450;23947550;300000 -21736;176039750;23960250;300000 -21737;176027051;23972949;300000 -21738;176014353;23985647;300000 -21739;176001656;23998344;300000 -21740;175988960;24011040;300000 -21741;175976266;24023734;300000 -21742;175963573;24036427;300000 -21743;175950881;24049119;300000 -21744;175938190;24061810;300000 -21745;175925500;24074500;300000 -21746;175912812;24087188;300000 -21747;175900124;24099876;300000 -21748;175887438;24112562;300000 -21749;175874753;24125247;300000 -21750;175862069;24137931;300000 -21751;175849386;24150614;300000 -21752;175836705;24163295;300000 -21753;175824024;24175976;300000 -21754;175811345;24188655;300000 -21755;175798667;24201333;300000 -21756;175785990;24214010;300000 -21757;175773314;24226686;300000 -21758;175760640;24239360;300000 -21759;175747966;24252034;300000 -21760;175735294;24264706;300000 -21761;175722623;24277377;300000 -21762;175709953;24290047;300000 -21763;175697284;24302716;300000 -21764;175684617;24315383;300000 -21765;175671950;24328050;300000 -21766;175659285;24340715;300000 -21767;175646621;24353379;300000 -21768;175633958;24366042;300000 -21769;175621296;24378704;300000 -21770;175608636;24391364;300000 -21771;175595976;24404024;300000 -21772;175583318;24416682;300000 -21773;175570661;24429339;300000 -21774;175558005;24441995;300000 -21775;175545350;24454650;300000 -21776;175532697;24467303;300000 -21777;175520044;24479956;300000 -21778;175507393;24492607;300000 -21779;175494743;24505257;300000 -21780;175482094;24517906;300000 -21781;175469446;24530554;300000 -21782;175456799;24543201;300000 -21783;175444154;24555846;300000 -21784;175431509;24568491;300000 -21785;175418866;24581134;300000 -21786;175406224;24593776;300000 -21787;175393583;24606417;300000 -21788;175380944;24619056;300000 -21789;175368305;24631695;300000 -21790;175355668;24644332;300000 -21791;175343032;24656968;300000 -21792;175330396;24669604;300000 -21793;175317763;24682237;300000 -21794;175305130;24694870;300000 -21795;175292498;24707502;300000 -21796;175279868;24720132;300000 -21797;175267239;24732761;300000 -21798;175254611;24745389;300000 -21799;175241984;24758016;300000 -21800;175229358;24770642;300000 -21801;175216733;24783267;300000 -21802;175204110;24795890;300000 -21803;175191487;24808513;300000 -21804;175178866;24821134;300000 -21805;175166246;24833754;300000 -21806;175153627;24846373;300000 -21807;175141010;24858990;300000 -21808;175128393;24871607;300000 -21809;175115778;24884222;300000 -21810;175103164;24896836;300000 -21811;175090551;24909449;300000 -21812;175077939;24922061;300000 -21813;175065328;24934672;300000 -21814;175052718;24947282;300000 -21815;175040110;24959890;300000 -21816;175027503;24972497;300000 -21817;175014897;24985103;300000 -21818;175002292;24997708;300000 -21819;174989688;25010312;300000 -21820;174977085;25022915;300000 -21821;174964484;25035516;300000 -21822;174951883;25048117;300000 -21823;174939284;25060716;300000 -21824;174926686;25073314;300000 -21825;174914089;25085911;300000 -21826;174901494;25098506;300000 -21827;174888899;25111101;300000 -21828;174876306;25123694;300000 -21829;174863713;25136287;300000 -21830;174851122;25148878;300000 -21831;174838532;25161468;300000 -21832;174825944;25174056;300000 -21833;174813356;25186644;300000 -21834;174800769;25199231;300000 -21835;174788184;25211816;300000 -21836;174775600;25224400;300000 -21837;174763017;25236983;300000 -21838;174750435;25249565;300000 -21839;174737854;25262146;300000 -21840;174725275;25274725;300000 -21841;174712696;25287304;300000 -21842;174700119;25299881;300000 -21843;174687543;25312457;300000 -21844;174674968;25325032;300000 -21845;174662394;25337606;300000 -21846;174649821;25350179;300000 -21847;174637250;25362750;300000 -21848;174624680;25375320;300000 -21849;174612110;25387890;300000 -21850;174599542;25400458;300000 -21851;174586975;25413025;300000 -21852;174574410;25425590;300000 -21853;174561845;25438155;300000 -21854;174549282;25450718;300000 -21855;174536719;25463281;300000 -21856;174524158;25475842;300000 -21857;174511598;25488402;300000 -21858;174499039;25500961;300000 -21859;174486482;25513518;300000 -21860;174473925;25526075;300000 -21861;174461370;25538630;300000 -21862;174448815;25551185;300000 -21863;174436262;25563738;300000 -21864;174423710;25576290;300000 -21865;174411159;25588841;300000 -21866;174398610;25601390;300000 -21867;174386061;25613939;300000 -21868;174373514;25626486;300000 -21869;174360968;25639032;300000 -21870;174348422;25651578;300000 -21871;174335879;25664121;300000 -21872;174323336;25676664;300000 -21873;174310794;25689206;300000 -21874;174298254;25701746;300000 -21875;174285714;25714286;300000 -21876;174273176;25726824;300000 -21877;174260639;25739361;300000 -21878;174248103;25751897;300000 -21879;174235568;25764432;300000 -21880;174223035;25776965;300000 -21881;174210502;25789498;300000 -21882;174197971;25802029;300000 -21883;174185441;25814559;300000 -21884;174172912;25827088;300000 -21885;174160384;25839616;300000 -21886;174147857;25852143;300000 -21887;174135331;25864669;300000 -21888;174122807;25877193;300000 -21889;174110284;25889716;300000 -21890;174097762;25902238;300000 -21891;174085241;25914759;300000 -21892;174072721;25927279;300000 -21893;174060202;25939798;300000 -21894;174047684;25952316;300000 -21895;174035168;25964832;300000 -21896;174022653;25977347;300000 -21897;174010138;25989862;300000 -21898;173997625;26002375;300000 -21899;173985113;26014887;300000 -21900;173972603;26027397;300000 -21901;173960093;26039907;300000 -21902;173947585;26052415;300000 -21903;173935077;26064923;300000 -21904;173922571;26077429;300000 -21905;173910066;26089934;300000 -21906;173897562;26102438;300000 -21907;173885060;26114940;300000 -21908;173872558;26127442;300000 -21909;173860058;26139942;300000 -21910;173847558;26152442;300000 -21911;173835060;26164940;300000 -21912;173822563;26177437;300000 -21913;173810067;26189933;300000 -21914;173797572;26202428;300000 -21915;173785079;26214921;300000 -21916;173772586;26227414;300000 -21917;173760095;26239905;300000 -21918;173747605;26252395;300000 -21919;173735116;26264884;300000 -21920;173722628;26277372;300000 -21921;173710141;26289859;300000 -21922;173697655;26302345;300000 -21923;173685171;26314829;300000 -21924;173672687;26327313;300000 -21925;173660205;26339795;300000 -21926;173647724;26352276;300000 -21927;173635244;26364756;300000 -21928;173622765;26377235;300000 -21929;173610288;26389712;300000 -21930;173597811;26402189;300000 -21931;173585336;26414664;300000 -21932;173572862;26427138;300000 -21933;173560388;26439612;300000 -21934;173547916;26452084;300000 -21935;173535446;26464554;300000 -21936;173522976;26477024;300000 -21937;173510507;26489493;300000 -21938;173498040;26501960;300000 -21939;173485574;26514426;300000 -21940;173473108;26526892;300000 -21941;173460644;26539356;300000 -21942;173448182;26551818;300000 -21943;173435720;26564280;300000 -21944;173423259;26576741;300000 -21945;173410800;26589200;300000 -21946;173398341;26601659;300000 -21947;173385884;26614116;300000 -21948;173373428;26626572;300000 -21949;173360973;26639027;300000 -21950;173348519;26651481;300000 -21951;173336067;26663933;300000 -21952;173323615;26676385;300000 -21953;173311165;26688835;300000 -21954;173298715;26701285;300000 -21955;173286267;26713733;300000 -21956;173273820;26726180;300000 -21957;173261375;26738625;300000 -21958;173248930;26751070;300000 -21959;173236486;26763514;300000 -21960;173224044;26775956;300000 -21961;173211602;26788398;300000 -21962;173199162;26800838;300000 -21963;173186723;26813277;300000 -21964;173174285;26825715;300000 -21965;173161848;26838152;300000 -21966;173149413;26850587;300000 -21967;173136978;26863022;300000 -21968;173124545;26875455;300000 -21969;173112113;26887887;300000 -21970;173099681;26900319;300000 -21971;173087251;26912749;300000 -21972;173074823;26925177;300000 -21973;173062395;26937605;300000 -21974;173049968;26950032;300000 -21975;173037543;26962457;300000 -21976;173025118;26974882;300000 -21977;173012695;26987305;300000 -21978;173000273;26999727;300000 -21979;172987852;27012148;300000 -21980;172975432;27024568;300000 -21981;172963014;27036986;300000 -21982;172950596;27049404;300000 -21983;172938180;27061820;300000 -21984;172925764;27074236;300000 -21985;172913350;27086650;300000 -21986;172900937;27099063;300000 -21987;172888525;27111475;300000 -21988;172876114;27123886;300000 -21989;172863705;27136295;300000 -21990;172851296;27148704;300000 -21991;172838889;27161111;300000 -21992;172826482;27173518;300000 -21993;172814077;27185923;300000 -21994;172801673;27198327;300000 -21995;172789270;27210730;300000 -21996;172776869;27223131;300000 -21997;172764468;27235532;300000 -21998;172752068;27247932;300000 -21999;172739670;27260330;300000 -22000;172727273;27272727;300000 -22001;172714877;27285123;300000 -22002;172702482;27297518;300000 -22003;172690088;27309912;300000 -22004;172677695;27322305;300000 -22005;172665303;27334697;300000 -22006;172652913;27347087;300000 -22007;172640523;27359477;300000 -22008;172628135;27371865;300000 -22009;172615748;27384252;300000 -22010;172603362;27396638;300000 -22011;172590977;27409023;300000 -22012;172578593;27421407;300000 -22013;172566211;27433789;300000 -22014;172553829;27446171;300000 -22015;172541449;27458551;300000 -22016;172529070;27470930;300000 -22017;172516692;27483308;300000 -22018;172504315;27495685;300000 -22019;172491939;27508061;300000 -22020;172479564;27520436;300000 -22021;172467190;27532810;300000 -22022;172454818;27545182;300000 -22023;172442447;27557553;300000 -22024;172430076;27569924;300000 -22025;172417707;27582293;300000 -22026;172405339;27594661;300000 -22027;172392972;27607028;300000 -22028;172380607;27619393;300000 -22029;172368242;27631758;300000 -22030;172355878;27644122;300000 -22031;172343516;27656484;300000 -22032;172331155;27668845;300000 -22033;172318795;27681205;300000 -22034;172306436;27693564;300000 -22035;172294078;27705922;300000 -22036;172281721;27718279;300000 -22037;172269365;27730635;300000 -22038;172257011;27742989;300000 -22039;172244657;27755343;300000 -22040;172232305;27767695;300000 -22041;172219954;27780046;300000 -22042;172207604;27792396;300000 -22043;172195255;27804745;300000 -22044;172182907;27817093;300000 -22045;172170560;27829440;300000 -22046;172158215;27841785;300000 -22047;172145870;27854130;300000 -22048;172133527;27866473;300000 -22049;172121185;27878815;300000 -22050;172108844;27891156;300000 -22051;172096504;27903496;300000 -22052;172084165;27915835;300000 -22053;172071827;27928173;300000 -22054;172059490;27940510;300000 -22055;172047155;27952845;300000 -22056;172034820;27965180;300000 -22057;172022487;27977513;300000 -22058;172010155;27989845;300000 -22059;171997824;28002176;300000 -22060;171985494;28014506;300000 -22061;171973165;28026835;300000 -22062;171960838;28039162;300000 -22063;171948511;28051489;300000 -22064;171936186;28063814;300000 -22065;171923861;28076139;300000 -22066;171911538;28088462;300000 -22067;171899216;28100784;300000 -22068;171886895;28113105;300000 -22069;171874575;28125425;300000 -22070;171862256;28137744;300000 -22071;171849939;28150061;300000 -22072;171837622;28162378;300000 -22073;171825307;28174693;300000 -22074;171812993;28187007;300000 -22075;171800680;28199320;300000 -22076;171788367;28211633;300000 -22077;171776057;28223943;300000 -22078;171763747;28236253;300000 -22079;171751438;28248562;300000 -22080;171739130;28260870;300000 -22081;171726824;28273176;300000 -22082;171714519;28285481;300000 -22083;171702214;28297786;300000 -22084;171689911;28310089;300000 -22085;171677609;28322391;300000 -22086;171665308;28334692;300000 -22087;171653009;28346991;300000 -22088;171640710;28359290;300000 -22089;171628412;28371588;300000 -22090;171616116;28383884;300000 -22091;171603821;28396179;300000 -22092;171591526;28408474;300000 -22093;171579233;28420767;300000 -22094;171566941;28433059;300000 -22095;171554650;28445350;300000 -22096;171542361;28457639;300000 -22097;171530072;28469928;300000 -22098;171517784;28482216;300000 -22099;171505498;28494502;300000 -22100;171493213;28506787;300000 -22101;171480928;28519072;300000 -22102;171468645;28531355;300000 -22103;171456363;28543637;300000 -22104;171444083;28555917;300000 -22105;171431803;28568197;300000 -22106;171419524;28580476;300000 -22107;171407247;28592753;300000 -22108;171394970;28605030;300000 -22109;171382695;28617305;300000 -22110;171370421;28629579;300000 -22111;171358148;28641852;300000 -22112;171345876;28654124;300000 -22113;171333605;28666395;300000 -22114;171321335;28678665;300000 -22115;171309066;28690934;300000 -22116;171296799;28703201;300000 -22117;171284532;28715468;300000 -22118;171272267;28727733;300000 -22119;171260003;28739997;300000 -22120;171247740;28752260;300000 -22121;171235478;28764522;300000 -22122;171223217;28776783;300000 -22123;171210957;28789043;300000 -22124;171198698;28801302;300000 -22125;171186441;28813559;300000 -22126;171174184;28825816;300000 -22127;171161929;28838071;300000 -22128;171149675;28850325;300000 -22129;171137421;28862579;300000 -22130;171125169;28874831;300000 -22131;171112919;28887081;300000 -22132;171100669;28899331;300000 -22133;171088420;28911580;300000 -22134;171076172;28923828;300000 -22135;171063926;28936074;300000 -22136;171051681;28948319;300000 -22137;171039436;28960564;300000 -22138;171027193;28972807;300000 -22139;171014951;28985049;300000 -22140;171002710;28997290;300000 -22141;170990470;29009530;300000 -22142;170978231;29021769;300000 -22143;170965994;29034006;300000 -22144;170953757;29046243;300000 -22145;170941522;29058478;300000 -22146;170929287;29070713;300000 -22147;170917054;29082946;300000 -22148;170904822;29095178;300000 -22149;170892591;29107409;300000 -22150;170880361;29119639;300000 -22151;170868132;29131868;300000 -22152;170855905;29144095;300000 -22153;170843678;29156322;300000 -22154;170831453;29168547;300000 -22155;170819228;29180772;300000 -22156;170807005;29192995;300000 -22157;170794783;29205217;300000 -22158;170782562;29217438;300000 -22159;170770342;29229658;300000 -22160;170758123;29241877;300000 -22161;170745905;29254095;300000 -22162;170733688;29266312;300000 -22163;170721473;29278527;300000 -22164;170709258;29290742;300000 -22165;170697045;29302955;300000 -22166;170684833;29315167;300000 -22167;170672621;29327379;300000 -22168;170660411;29339589;300000 -22169;170648202;29351798;300000 -22170;170635995;29364005;300000 -22171;170623788;29376212;300000 -22172;170611582;29388418;300000 -22173;170599378;29400622;300000 -22174;170587174;29412826;300000 -22175;170574972;29425028;300000 -22176;170562771;29437229;300000 -22177;170550570;29449430;300000 -22178;170538371;29461629;300000 -22179;170526173;29473827;300000 -22180;170513977;29486023;300000 -22181;170501781;29498219;300000 -22182;170489586;29510414;300000 -22183;170477393;29522607;300000 -22184;170465200;29534800;300000 -22185;170453009;29546991;300000 -22186;170440819;29559181;300000 -22187;170428629;29571371;300000 -22188;170416441;29583559;300000 -22189;170404254;29595746;300000 -22190;170392068;29607932;300000 -22191;170379884;29620116;300000 -22192;170367700;29632300;300000 -22193;170355518;29644482;300000 -22194;170343336;29656664;300000 -22195;170331156;29668844;300000 -22196;170318976;29681024;300000 -22197;170306798;29693202;300000 -22198;170294621;29705379;300000 -22199;170282445;29717555;300000 -22200;170270270;29729730;300000 -22201;170258096;29741904;300000 -22202;170245924;29754076;300000 -22203;170233752;29766248;300000 -22204;170221582;29778418;300000 -22205;170209412;29790588;300000 -22206;170197244;29802756;300000 -22207;170185077;29814923;300000 -22208;170172911;29827089;300000 -22209;170160746;29839254;300000 -22210;170148582;29851418;300000 -22211;170136419;29863581;300000 -22212;170124257;29875743;300000 -22213;170112097;29887903;300000 -22214;170099937;29900063;300000 -22215;170087779;29912221;300000 -22216;170075621;29924379;300000 -22217;170063465;29936535;300000 -22218;170051310;29948690;300000 -22219;170039156;29960844;300000 -22220;170027003;29972997;300000 -22221;170014851;29985149;300000 -22222;170002700;29997300;300000 -22223;169990550;3000009450;300000 -22224;169978402;30021598;300000 -22225;169966254;30033746;300000 -22226;169954108;30045892;300000 -22227;169941962;30058038;300000 -22228;169929818;30070182;300000 -22229;169917675;30082325;300000 -22230;169905533;30094467;300000 -22231;169893392;30106608;300000 -22232;169881252;30118748;300000 -22233;169869113;30130887;300000 -22234;169856976;30143024;300000 -22235;169844839;30155161;300000 -22236;169832704;30167296;300000 -22237;169820569;30179431;300000 -22238;169808436;30191564;300000 -22239;169796304;30203696;300000 -22240;169784173;30215827;300000 -22241;169772043;30227957;300000 -22242;169759914;30240086;300000 -22243;169747786;30252214;300000 -22244;169735659;30264341;300000 -22245;169723533;30276467;300000 -22246;169711409;30288591;300000 -22247;169699285;30300715;300000 -22248;169687163;30312837;300000 -22249;169675042;30324958;300000 -22250;169662921;30337079;300000 -22251;169650802;30349198;300000 -22252;169638684;30361316;300000 -22253;169626567;30373433;300000 -22254;169614451;30385549;300000 -22255;169602337;30397663;300000 -22256;169590223;30409777;300000 -22257;169578110;30421890;300000 -22258;169565999;30434001;300000 -22259;169553888;30446112;300000 -22260;169541779;30458221;300000 -22261;169529671;30470329;300000 -22262;169517564;30482436;300000 -22263;169505457;30494543;300000 -22264;169493352;30506648;300000 -22265;169481249;30518751;300000 -22266;169469146;30530854;300000 -22267;169457044;30542956;300000 -22268;169444943;30555057;300000 -22269;169432844;30567156;300000 -22270;169420745;30579255;300000 -22271;169408648;30591352;300000 -22272;169396552;30603448;300000 -22273;169384457;30615543;300000 -22274;169372362;30627638;300000 -22275;169360269;30639731;300000 -22276;169348177;30651823;300000 -22277;169336087;30663913;300000 -22278;169323997;30676003;300000 -22279;169311908;30688092;300000 -22280;169299820;30700180;300000 -22281;169287734;30712266;300000 -22282;169275649;30724351;300000 -22283;169263564;30736436;300000 -22284;169251481;30748519;300000 -22285;169239399;30760601;300000 -22286;169227318;30772682;300000 -22287;169215238;30784762;300000 -22288;169203159;30796841;300000 -22289;169191081;30808919;300000 -22290;169179004;30820996;300000 -22291;169166928;30833072;300000 -22292;169154854;30845146;300000 -22293;169142780;30857220;300000 -22294;169130708;30869292;300000 -22295;169118636;30881364;300000 -22296;169106566;30893434;300000 -22297;169094497;30905503;300000 -22298;169082429;30917571;300000 -22299;169070362;30929638;300000 -22300;169058296;30941704;300000 -22301;169046231;30953769;300000 -22302;169034167;30965833;300000 -22303;169022105;30977895;300000 -22304;169010043;30989957;300000 -22305;168997983;31002017;300000 -22306;168985923;31014077;300000 -22307;168973865;31026135;300000 -22308;168961807;31038193;300000 -22309;168949751;31050249;300000 -22310;168937696;31062304;300000 -22311;168925642;31074358;300000 -22312;168913589;31086411;300000 -22313;168901537;31098463;300000 -22314;168889486;31110514;300000 -22315;168877437;31122563;300000 -22316;168865388;31134612;300000 -22317;168853341;31146659;300000 -22318;168841294;31158706;300000 -22319;168829249;31170751;300000 -22320;168817204;31182796;300000 -22321;168805161;31194839;300000 -22322;168793119;31206881;300000 -22323;168781078;31218922;300000 -22324;168769038;31230962;300000 -22325;168756999;31243001;300000 -22326;168744961;31255039;300000 -22327;168732924;31267076;300000 -22328;168720889;31279111;300000 -22329;168708854;31291146;300000 -22330;168696820;31303180;300000 -22331;168684788;31315212;300000 -22332;168672757;31327243;300000 -22333;168660726;31339274;300000 -22334;168648697;31351303;300000 -22335;168636669;31363331;300000 -22336;168624642;31375358;300000 -22337;168612616;31387384;300000 -22338;168600591;31399409;300000 -22339;168588567;31411433;300000 -22340;168576544;31423456;300000 -22341;168564523;31435477;300000 -22342;168552502;31447498;300000 -22343;168540482;31459518;300000 -22344;168528464;31471536;300000 -22345;168516447;31483553;300000 -22346;168504430;31495570;300000 -22347;168492415;31507585;300000 -22348;168480401;31519599;300000 -22349;168468388;31531612;300000 -22350;168456376;31543624;300000 -22351;168444365;31555635;300000 -22352;168432355;31567645;300000 -22353;168420346;31579654;300000 -22354;168408339;31591661;300000 -22355;168396332;31603668;300000 -22356;168384326;31615674;300000 -22357;168372322;31627678;300000 -22358;168360318;31639682;300000 -22359;168348316;31651684;300000 -22360;168336315;31663685;300000 -22361;168324315;31675685;300000 -22362;168312316;31687684;300000 -22363;168300317;31699683;300000 -22364;168288321;31711679;300000 -22365;168276325;31723675;300000 -22366;168264330;31735670;300000 -22367;168252336;31747664;300000 -22368;168240343;31759657;300000 -22369;168228352;31771648;300000 -22370;168216361;31783639;300000 -22371;168204372;31795628;300000 -22372;168192383;31807617;300000 -22373;168180396;31819604;300000 -22374;168168410;31831590;300000 -22375;168156425;31843575;300000 -22376;168144440;31855560;300000 -22377;168132457;31867543;300000 -22378;168120475;31879525;300000 -22379;168108495;31891505;300000 -22380;168096515;31903485;300000 -22381;168084536;31915464;300000 -22382;168072558;31927442;300000 -22383;168060582;31939418;300000 -22384;168048606;31951394;300000 -22385;168036632;31963368;300000 -22386;168024658;31975342;300000 -22387;168012686;31987314;300000 -22388;168000715;31999285;300000 -22389;167988744;32011256;300000 -22390;167976775;32023225;300000 -22391;167964807;32035193;300000 -22392;167952840;32047160;300000 -22393;167940874;32059126;300000 -22394;167928910;32071090;300000 -22395;167916946;32083054;300000 -22396;167904983;32095017;300000 -22397;167893021;32106979;300000 -22398;167881061;32118939;300000 -22399;167869101;32130899;300000 -22400;167857143;32142857;300000 -22401;167845185;32154815;300000 -22402;167833229;32166771;300000 -22403;167821274;32178726;300000 -22404;167809320;32190680;300000 -22405;167797367;32202633;300000 -22406;167785415;32214585;300000 -22407;167773464;32226536;300000 -22408;167761514;32238486;300000 -22409;167749565;32250435;300000 -22410;167737617;32262383;300000 -22411;167725670;32274330;300000 -22412;167713725;32286275;300000 -22413;167701780;32298220;300000 -22414;167689837;32310163;300000 -22415;167677894;32322106;300000 -22416;167665953;32334047;300000 -22417;167654013;32345987;300000 -22418;167642073;32357927;300000 -22419;167630135;32369865;300000 -22420;167618198;32381802;300000 -22421;167606262;32393738;300000 -22422;167594327;32405673;300000 -22423;167582393;32417607;300000 -22424;167570460;32429540;300000 -22425;167558528;32441472;300000 -22426;167546598;32453402;300000 -22427;167534668;32465332;300000 -22428;167522739;32477261;300000 -22429;167510812;32489188;300000 -22430;167498885;32501115;300000 -22431;167486960;32513040;300000 -22432;167475036;32524964;300000 -22433;167463112;32536888;300000 -22434;167451190;32548810;300000 -22435;167439269;32560731;300000 -22436;167427349;32572651;300000 -22437;167415430;32584570;300000 -22438;167403512;32596488;300000 -22439;167391595;32608405;300000 -22440;167379679;32620321;300000 -22441;167367764;32632236;300000 -22442;167355851;32644149;300000 -22443;167343938;32656062;300000 -22444;167332026;32667974;300000 -22445;167320116;32679884;300000 -22446;167308206;32691794;300000 -22447;167296298;32703702;300000 -22448;167284391;32715609;300000 -22449;167272484;32727516;300000 -22450;167260579;32739421;300000 -22451;167248675;32751325;300000 -22452;167236772;32763228;300000 -22453;167224870;32775130;300000 -22454;167212969;32787031;300000 -22455;167201069;32798931;300000 -22456;167189170;32810830;300000 -22457;167177272;32822728;300000 -22458;167165375;32834625;300000 -22459;167153480;32846520;300000 -22460;167141585;32858415;300000 -22461;167129691;32870309;300000 -22462;167117799;32882201;300000 -22463;167105907;32894093;300000 -22464;167094017;32905983;300000 -22465;167082128;32917872;300000 -22466;167070239;32929761;300000 -22467;167058352;32941648;300000 -22468;167046466;32953534;300000 -22469;167034581;32965419;300000 -22470;167022697;32977303;300000 -22471;167010814;32989186;300000 -22472;166998932;33001068;300000 -22473;166987051;33012949;300000 -22474;166975171;33024829;300000 -22475;166963293;33036707;300000 -22476;166951415;33048585;300000 -22477;166939538;33060462;300000 -22478;166927663;33072337;300000 -22479;166915788;33084212;300000 -22480;166903915;33096085;300000 -22481;166892042;33107958;300000 -22482;166880171;33119829;300000 -22483;166868300;33131700;300000 -22484;166856431;33143569;300000 -22485;166844563;33155437;300000 -22486;166832696;33167304;300000 -22487;166820830;33179170;300000 -22488;166808965;33191035;300000 -22489;166797101;33202899;300000 -22490;166785238;33214762;300000 -22491;166773376;33226624;300000 -22492;166761515;33238485;300000 -22493;166749655;33250345;300000 -22494;166737797;33262203;300000 -22495;166725939;33274061;300000 -22496;166714083;33285917;300000 -22497;166702227;33297773;300000 -22498;166690372;33309628;300000 -22499;166678519;33321481;300000 -22500;166666667;33333333;300000 -22501;166654815;33345185;300000 -22502;166642965;33357035;300000 -22503;166631116;33368884;300000 -22504;166619268;33380732;300000 -22505;166607421;33392579;300000 -22506;166595575;33404425;300000 -22507;166583730;33416270;300000 -22508;166571886;33428114;300000 -22509;166560043;33439957;300000 -22510;166548201;33451799;300000 -22511;166536360;33463640;300000 -22512;166524520;33475480;300000 -22513;166512682;33487318;300000 -22514;166500844;33499156;300000 -22515;166489007;33510993;300000 -22516;166477172;33522828;300000 -22517;166465337;33534663;300000 -22518;166453504;33546496;300000 -22519;166441671;33558329;300000 -22520;166429840;33570160;300000 -22521;166418010;33581990;300000 -22522;166406181;33593819;300000 -22523;166394352;33605648;300000 -22524;166382525;33617475;300000 -22525;166370699;33629301;300000 -22526;166358874;33641126;300000 -22527;166347050;33652950;300000 -22528;166335227;33664773;300000 -22529;166323405;33676595;300000 -22530;166311585;33688415;300000 -22531;166299765;33700235;300000 -22532;166287946;33712054;300000 -22533;166276128;33723872;300000 -22534;166264312;33735688;300000 -22535;166252496;33747504;300000 -22536;166240682;33759318;300000 -22537;166228868;33771132;300000 -22538;166217056;33782944;300000 -22539;166205244;33794756;300000 -22540;166193434;33806566;300000 -22541;166181625;33818375;300000 -22542;166169816;33830184;300000 -22543;166158009;33841991;300000 -22544;166146203;33853797;300000 -22545;166134398;33865602;300000 -22546;166122594;33877406;300000 -22547;166110791;33889209;300000 -22548;166098989;33901011;300000 -22549;166087188;33912812;300000 -22550;166075388;33924612;300000 -22551;166063589;33936411;300000 -22552;166051791;33948209;300000 -22553;166039995;33960005;300000 -22554;166028199;33971801;300000 -22555;166016404;33983596;300000 -22556;166004611;33995389;300000 -22557;165992818;34007182;300000 -22558;165981027;34018973;300000 -22559;165969236;34030764;300000 -22560;165957447;34042553;300000 -22561;165945658;34054342;300000 -22562;165933871;34066129;300000 -22563;165922085;34077915;300000 -22564;165910300;34089700;300000 -22565;165898515;34101485;300000 -22566;165886732;34113268;300000 -22567;165874950;34125050;300000 -22568;165863169;34136831;300000 -22569;165851389;34148611;300000 -22570;165839610;34160390;300000 -22571;165827832;34172168;300000 -22572;165816055;34183945;300000 -22573;165804279;34195721;300000 -22574;165792505;34207495;300000 -22575;165780731;34219269;300000 -22576;165768958;34231042;300000 -22577;165757187;34242813;300000 -22578;165745416;34254584;300000 -22579;165733646;34266354;300000 -22580;165721878;34278122;300000 -22581;165710110;34289890;300000 -22582;165698344;34301656;300000 -22583;165686578;34313422;300000 -22584;165674814;34325186;300000 -22585;165663051;34336949;300000 -22586;165651288;34348712;300000 -22587;165639527;34360473;300000 -22588;165627767;34372233;300000 -22589;165616008;34383992;300000 -22590;165604250;34395750;300000 -22591;165592493;34407507;300000 -22592;165580737;34419263;300000 -22593;165568982;34431018;300000 -22594;165557228;34442772;300000 -22595;165545475;34454525;300000 -22596;165533723;34466277;300000 -22597;165521972;34478028;300000 -22598;165510222;34489778;300000 -22599;165498473;34501527;300000 -22600;165486726;34513274;300000 -22601;165474979;34525021;300000 -22602;165463233;34536767;300000 -22603;165451489;34548511;300000 -22604;165439745;34560255;300000 -22605;165428003;34571997;300000 -22606;165416261;34583739;300000 -22607;165404521;34595479;300000 -22608;165392781;34607219;300000 -22609;165381043;34618957;300000 -22610;165369306;34630694;300000 -22611;165357569;34642431;300000 -22612;165345834;34654166;300000 -22613;165334100;34665900;300000 -22614;165322367;34677633;300000 -22615;165310635;34689365;300000 -22616;165298903;34701097;300000 -22617;165287173;34712827;300000 -22618;165275444;34724556;300000 -22619;165263716;34736284;300000 -22620;165251989;34748011;300000 -22621;165240263;34759737;300000 -22622;165228539;34771461;300000 -22623;165216815;34783185;300000 -22624;165205092;34794908;300000 -22625;165193370;34806630;300000 -22626;165181649;34818351;300000 -22627;165169930;34830070;300000 -22628;165158211;34841789;300000 -22629;165146493;34853507;300000 -22630;165134777;34865223;300000 -22631;165123061;34876939;300000 -22632;165111347;34888653;300000 -22633;165099633;34900367;300000 -22634;165087921;34912079;300000 -22635;165076209;34923791;300000 -22636;165064499;34935501;300000 -22637;165052790;34947210;300000 -22638;165041081;34958919;300000 -22639;165029374;34970626;300000 -22640;165017668;34982332;300000 -22641;165005963;34994037;300000 -22642;164994258;35005742;300000 -22643;164982555;35017445;300000 -22644;164970853;35029147;300000 -22645;164959152;35040848;300000 -22646;164947452;35052548;300000 -22647;164935753;35064247;300000 -22648;164924055;35075945;300000 -22649;164912358;35087642;300000 -22650;164900662;35099338;300000 -22651;164888967;35111033;300000 -22652;164877274;35122726;300000 -22653;164865581;35134419;300000 -22654;164853889;35146111;300000 -22655;164842198;35157802;300000 -22656;164830508;35169492;300000 -22657;164818820;35181180;300000 -22658;164807132;35192868;300000 -22659;164795446;35204554;300000 -22660;164783760;35216240;300000 -22661;164772075;35227925;300000 -22662;164760392;35239608;300000 -22663;164748709;35251291;300000 -22664;164737028;35262972;300000 -22665;164725347;35274653;300000 -22666;164713668;35286332;300000 -22667;164701990;35298010;300000 -22668;164690312;35309688;300000 -22669;164678636;35321364;300000 -22670;164666961;35333039;300000 -22671;164655286;35344714;300000 -22672;164643613;35356387;300000 -22673;164631941;35368059;300000 -22674;164620270;35379730;300000 -22675;164608600;35391400;300000 -22676;164596931;35403069;300000 -22677;164585263;35414737;300000 -22678;164573596;35426404;300000 -22679;164561930;35438070;300000 -22680;164550265;35449735;300000 -22681;164538601;35461399;300000 -22682;164526938;35473062;300000 -22683;164515276;35484724;300000 -22684;164503615;35496385;300000 -22685;164491955;35508045;300000 -22686;164480296;35519704;300000 -22687;164468638;35531362;300000 -22688;164456982;35543018;300000 -22689;164445326;35554674;300000 -22690;164433671;35566329;300000 -22691;164422018;35577982;300000 -22692;164410365;35589635;300000 -22693;164398713;35601287;300000 -22694;164387063;35612937;300000 -22695;164375413;35624587;300000 -22696;164363765;35636235;300000 -22697;164352117;35647883;300000 -22698;164340471;35659529;300000 -22699;164328825;35671175;300000 -22700;164317181;35682819;300000 -22701;164305537;35694463;300000 -22702;164293895;35706105;300000 -22703;164282253;35717747;300000 -22704;164270613;35729387;300000 -22705;164258974;35741026;300000 -22706;164247336;35752664;300000 -22707;164235698;35764302;300000 -22708;164224062;35775938;300000 -22709;164212427;35787573;300000 -22710;164200793;35799207;300000 -22711;164189159;35810841;300000 -22712;164177527;35822473;300000 -22713;164165896;35834104;300000 -22714;164154266;35845734;300000 -22715;164142637;35857363;300000 -22716;164131009;35868991;300000 -22717;164119382;35880618;300000 -22718;164107756;35892244;300000 -22719;164096131;35903869;300000 -22720;164084507;35915493;300000 -22721;164072884;35927116;300000 -22722;164061262;35938738;300000 -22723;164049641;35950359;300000 -22724;164038021;35961979;300000 -22725;164026403;35973597;300000 -22726;164014785;35985215;300000 -22727;164003168;35996832;300000 -22728;163991552;36008448;300000 -22729;163979938;36020062;300000 -22730;163968324;36031676;300000 -22731;163956711;36043289;300000 -22732;163945099;36054901;300000 -22733;163933489;36066511;300000 -22734;163921879;36078121;300000 -22735;163910271;36089729;300000 -22736;163898663;36101337;300000 -22737;163887056;36112944;300000 -22738;163875451;36124549;300000 -22739;163863846;36136154;300000 -22740;163852243;36147757;300000 -22741;163840640;36159360;300000 -22742;163829039;36170961;300000 -22743;163817438;36182562;300000 -22744;163805839;36194161;300000 -22745;163794240;36205760;300000 -22746;163782643;36217357;300000 -22747;163771047;36228953;300000 -22748;163759451;36240549;300000 -22749;163747857;36252143;300000 -22750;163736264;36263736;300000 -22751;163724671;36275329;300000 -22752;163713080;36286920;300000 -22753;163701490;36298510;300000 -22754;163689901;36310099;300000 -22755;163678312;36321688;300000 -22756;163666725;36333275;300000 -22757;163655139;36344861;300000 -22758;163643554;36356446;300000 -22759;163631970;36368030;300000 -22760;163620387;36379613;300000 -22761;163608805;36391195;300000 -22762;163597223;36402777;300000 -22763;163585643;36414357;300000 -22764;163574064;36425936;300000 -22765;163562486;36437514;300000 -22766;163550909;36449091;300000 -22767;163539333;36460667;300000 -22768;163527758;36472242;300000 -22769;163516184;36483816;300000 -22770;163504611;36495389;300000 -22771;163493039;36506961;300000 -22772;163481468;36518532;300000 -22773;163469899;36530101;300000 -22774;163458330;36541670;300000 -22775;163446762;36553238;300000 -22776;163435195;36564805;300000 -22777;163423629;36576371;300000 -22778;163412064;36587936;300000 -22779;163400500;36599500;300000 -22780;163388938;36611062;300000 -22781;163377376;36622624;300000 -22782;163365815;36634185;300000 -22783;163354255;36645745;300000 -22784;163342697;36657303;300000 -22785;163331139;36668861;300000 -22786;163319582;36680418;300000 -22787;163308027;36691973;300000 -22788;163296472;36703528;300000 -22789;163284918;36715082;300000 -22790;163273366;36726634;300000 -22791;163261814;36738186;300000 -22792;163250263;36749737;300000 -22793;163238714;36761286;300000 -22794;163227165;36772835;300000 -22795;163215617;36784383;300000 -22796;163204071;36795929;300000 -22797;163192525;36807475;300000 -22798;163180981;36819019;300000 -22799;163169437;36830563;300000 -22800;163157895;36842105;300000 -22801;163146353;36853647;300000 -22802;163134813;36865187;300000 -22803;163123273;36876727;300000 -22804;163111735;36888265;300000 -22805;163100197;36899803;300000 -22806;163088661;36911339;300000 -22807;163077125;36922875;300000 -22808;163065591;36934409;300000 -22809;163054058;36945942;300000 -22810;163042525;36957475;300000 -22811;163030994;36969006;300000 -22812;163019463;36980537;300000 -22813;163007934;36992066;300000 -22814;162996406;37003594;300000 -22815;162984878;37015122;300000 -22816;162973352;37026648;300000 -22817;162961827;37038173;300000 -22818;162950302;37049698;300000 -22819;162938779;37061221;300000 -22820;162927257;37072743;300000 -22821;162915736;37084264;300000 -22822;162904215;37095785;300000 -22823;162892696;37107304;300000 -22824;162881178;37118822;300000 -22825;162869660;37130340;300000 -22826;162858144;37141856;300000 -22827;162846629;37153371;300000 -22828;162835115;37164885;300000 -22829;162823602;37176398;300000 -22830;162812089;37187911;300000 -22831;162800578;37199422;300000 -22832;162789068;37210932;300000 -22833;162777559;37222441;300000 -22834;162766051;37233949;300000 -22835;162754543;37245457;300000 -22836;162743037;37256963;300000 -22837;162731532;37268468;300000 -22838;162720028;37279972;300000 -22839;162708525;37291475;300000 -22840;162697023;37302977;300000 -22841;162685522;37314478;300000 -22842;162674022;37325978;300000 -22843;162662522;37337478;300000 -22844;162651024;37348976;300000 -22845;162639527;37360473;300000 -22846;162628031;37371969;300000 -22847;162616536;37383464;300000 -22848;162605042;37394958;300000 -22849;162593549;37406451;300000 -22850;162582057;37417943;300000 -22851;162570566;37429434;300000 -22852;162559076;37440924;300000 -22853;162547587;37452413;300000 -22854;162536099;37463901;300000 -22855;162524612;37475388;300000 -22856;162513126;37486874;300000 -22857;162501641;37498359;300000 -22858;162490157;37509843;300000 -22859;162478674;37521326;300000 -22860;162467192;37532808;300000 -22861;162455711;37544289;300000 -22862;162444231;37555769;300000 -22863;162432752;37567248;300000 -22864;162421274;37578726;300000 -22865;162409797;37590203;300000 -22866;162398321;37601679;300000 -22867;162386846;37613154;300000 -22868;162375372;37624628;300000 -22869;162363899;37636101;300000 -22870;162352427;37647573;300000 -22871;162340956;37659044;300000 -22872;162329486;37670514;300000 -22873;162318017;37681983;300000 -22874;162306549;37693451;300000 -22875;162295082;37704918;300000 -22876;162283616;37716384;300000 -22877;162272151;37727849;300000 -22878;162260687;37739313;300000 -22879;162249224;37750776;300000 -22880;162237762;37762238;300000 -22881;162226301;37773699;300000 -22882;162214841;37785159;300000 -22883;162203382;37796618;300000 -22884;162191924;37808076;300000 -22885;162180468;37819532;300000 -22886;162169012;37830988;300000 -22887;162157557;37842443;300000 -22888;162146103;37853897;300000 -22889;162134650;37865350;300000 -22890;162123198;37876802;300000 -22891;162111747;37888253;300000 -22892;162100297;37899703;300000 -22893;162088848;37911152;300000 -22894;162077400;37922600;300000 -22895;162065953;37934047;300000 -22896;162054507;37945493;300000 -22897;162043062;37956938;300000 -22898;162031618;37968382;300000 -22899;162020176;37979824;300000 -22900;162008734;37991266;300000 -22901;161997293;38002707;300000 -22902;161985853;38014147;300000 -22903;161974414;38025586;300000 -22904;161962976;38037024;300000 -22905;161951539;38048461;300000 -22906;161940103;38059897;300000 -22907;161928668;38071332;300000 -22908;161917234;38082766;300000 -22909;161905801;38094199;300000 -22910;161894369;38105631;300000 -22911;161882938;38117062;300000 -22912;161871508;38128492;300000 -22913;161860079;38139921;300000 -22914;161848651;38151349;300000 -22915;161837225;38162775;300000 -22916;161825799;38174201;300000 -22917;161814374;38185626;300000 -22918;161802950;38197050;300000 -22919;161791527;38208473;300000 -22920;161780105;38219895;300000 -22921;161768684;38231316;300000 -22922;161757264;38242736;300000 -22923;161745845;38254155;300000 -22924;161734427;38265573;300000 -22925;161723010;38276990;300000 -22926;161711594;38288406;300000 -22927;161700179;38299821;300000 -22928;161688765;38311235;300000 -22929;161677352;38322648;300000 -22930;161665940;38334060;300000 -22931;161654529;38345471;300000 -22932;161643119;38356881;300000 -22933;161631710;38368290;300000 -22934;161620302;38379698;300000 -22935;161608895;38391105;300000 -22936;161597489;38402511;300000 -22937;161586084;38413916;300000 -22938;161574680;38425320;300000 -22939;161563277;38436723;300000 -22940;161551874;38448126;300000 -22941;161540473;38459527;300000 -22942;161529073;38470927;300000 -22943;161517674;38482326;300000 -22944;161506276;38493724;300000 -22945;161494879;38505121;300000 -22946;161483483;38516517;300000 -22947;161472088;38527912;300000 -22948;161460694;38539306;300000 -22949;161449301;38550699;300000 -22950;161437908;38562092;300000 -22951;161426517;38573483;300000 -22952;161415127;38584873;300000 -22953;161403738;38596262;300000 -22954;161392350;38607650;300000 -22955;161380963;38619037;300000 -22956;161369577;38630423;300000 -22957;161358191;38641809;300000 -22958;161346807;38653193;300000 -22959;161335424;38664576;300000 -22960;161324042;38675958;300000 -22961;161312661;38687339;300000 -22962;161301280;38698720;300000 -22963;161289901;38710099;300000 -22964;161278523;38721477;300000 -22965;161267146;38732854;300000 -22966;161255769;38744231;300000 -22967;161244394;38755606;300000 -22968;161233020;38766980;300000 -22969;161221647;38778353;300000 -22970;161210274;38789726;300000 -22971;161198903;38801097;300000 -22972;161187533;38812467;300000 -22973;161176163;38823837;300000 -22974;161164795;38835205;300000 -22975;161153428;38846572;300000 -22976;161142061;38857939;300000 -22977;161130696;38869304;300000 -22978;161119332;38880668;300000 -22979;161107968;38892032;300000 -22980;161096606;38903394;300000 -22981;161085244;38914756;300000 -22982;161073884;38926116;300000 -22983;161062524;38937476;300000 -22984;161051166;38948834;300000 -22985;161039809;38960191;300000 -22986;161028452;38971548;300000 -22987;161017097;38982903;300000 -22988;161005742;38994258;300000 -22989;160994389;39005611;300000 -22990;160983036;39016964;300000 -22991;160971685;39028315;300000 -22992;160960334;39039666;300000 -22993;160948984;39051016;300000 -22994;160937636;39062364;300000 -22995;160926288;39073712;300000 -22996;160914942;39085058;300000 -22997;160903596;39096404;300000 -22998;160892252;39107748;300000 -22999;160880908;39119092;300000 -23000;160869565;39130435;300000 -23001;160858224;39141776;300000 -23002;160846883;39153117;300000 -23003;160835543;39164457;300000 -23004;160824204;39175796;300000 -23005;160812867;39187133;300000 -23006;160801530;39198470;300000 -23007;160790194;39209806;300000 -23008;160778860;39221140;300000 -23009;160767526;39232474;300000 -23010;160756193;39243807;300000 -23011;160744861;39255139;300000 -23012;160733530;39266470;300000 -23013;160722200;39277800;300000 -23014;160710872;39289128;300000 -23015;160699544;39300456;300000 -23016;160688217;39311783;300000 -23017;160676891;39323109;300000 -23018;160665566;39334434;300000 -23019;160654242;39345758;300000 -23020;160642919;39357081;300000 -23021;160631597;39368403;300000 -23022;160620276;39379724;300000 -23023;160608956;39391044;300000 -23024;160597637;39402363;300000 -23025;160586319;39413681;300000 -23026;160575002;39424998;300000 -23027;160563686;39436314;300000 -23028;160552371;39447629;300000 -23029;160541057;39458943;300000 -23030;160529744;39470256;300000 -23031;160518432;39481568;300000 -23032;160507121;39492879;300000 -23033;160495810;39504190;300000 -23034;160484501;39515499;300000 -23035;160473193;39526807;300000 -23036;160461886;39538114;300000 -23037;160450580;39549420;300000 -23038;160439274;39560726;300000 -23039;160427970;39572030;300000 -23040;160416667;39583333;300000 -23041;160405364;39594636;300000 -23042;160394063;39605937;300000 -23043;160382763;39617237;300000 -23044;160371463;39628537;300000 -23045;160360165;39639835;300000 -23046;160348867;39651133;300000 -23047;160337571;39662429;300000 -23048;160326276;39673724;300000 -23049;160314981;39685019;300000 -23050;160303688;39696312;300000 -23051;160292395;39707605;300000 -23052;160281104;39718896;300000 -23053;160269813;39730187;300000 -23054;160258523;39741477;300000 -23055;160247235;39752765;300000 -23056;160235947;39764053;300000 -23057;160224661;39775339;300000 -23058;160213375;39786625;300000 -23059;160202090;39797910;300000 -23060;160190807;39809193;300000 -23061;160179524;39820476;300000 -23062;160168242;39831758;300000 -23063;160156961;39843039;300000 -23064;160145682;39854318;300000 -23065;160134403;39865597;300000 -23066;160123125;39876875;300000 -23067;160111848;39888152;300000 -23068;160100572;39899428;300000 -23069;160089297;39910703;300000 -23070;160078023;39921977;300000 -23071;160066750;39933250;300000 -23072;160055479;39944521;300000 -23073;160044208;39955792;300000 -23074;160032938;39967062;300000 -23075;160021668;39978332;300000 -23076;160010400;39989600;300000 -23077;159999133;40000867;300000 -23078;159987867;40012133;300000 -23079;159976602;40023398;300000 -23080;159965338;40034662;300000 -23081;159954075;40045925;300000 -23082;159942813;40057187;300000 -23083;159931551;40068449;300000 -23084;159920291;40079709;300000 -23085;159909032;40090968;300000 -23086;159897774;40102226;300000 -23087;159886516;40113484;300000 -23088;159875260;40124740;300000 -23089;159864005;40135995;300000 -23090;159852750;40147250;300000 -23091;159841497;40158503;300000 -23092;159830244;40169756;300000 -23093;159818993;40181007;300000 -23094;159807742;40192258;300000 -23095;159796493;40203507;300000 -23096;159785244;40214756;300000 -23097;159773997;40226003;300000 -23098;159762750;40237250;300000 -23099;159751504;40248496;300000 -23100;159740260;40259740;300000 -23101;159729016;40270984;300000 -23102;159717773;40282227;300000 -23103;159706532;40293468;300000 -23104;159695291;40304709;300000 -23105;159684051;40315949;300000 -23106;159672812;40327188;300000 -23107;159661574;40338426;300000 -23108;159650338;40349662;300000 -23109;159639102;40360898;300000 -23110;159627867;40372133;300000 -23111;159616633;40383367;300000 -23112;159605400;40394600;300000 -23113;159594168;40405832;300000 -23114;159582937;40417063;300000 -23115;159571707;40428293;300000 -23116;159560478;40439522;300000 -23117;159549249;40450751;300000 -23118;159538022;40461978;300000 -23119;159526796;40473204;300000 -23120;159515571;40484429;300000 -23121;159504347;40495653;300000 -23122;159493123;40506877;300000 -23123;159481901;40518099;300000 -23124;159470680;40529320;300000 -23125;159459459;40540541;300000 -23126;159448240;40551760;300000 -23127;159437022;40562978;300000 -23128;159425804;40574196;300000 -23129;159414588;40585412;300000 -23130;159403372;40596628;300000 -23131;159392158;40607842;300000 -23132;159380944;40619056;300000 -23133;159369732;40630268;300000 -23134;159358520;40641480;300000 -23135;159347309;40652691;300000 -23136;159336100;40663900;300000 -23137;159324891;40675109;300000 -23138;159313683;40686317;300000 -23139;159302476;40697524;300000 -23140;159291271;40708729;300000 -23141;159280066;40719934;300000 -23142;159268862;40731138;300000 -23143;159257659;40742341;300000 -23144;159246457;40753543;300000 -23145;159235256;40764744;300000 -23146;159224056;40775944;300000 -23147;159212857;40787143;300000 -23148;159201659;40798341;300000 -23149;159190462;40809538;300000 -23150;159179266;40820734;300000 -23151;159168070;40831930;300000 -23152;159156876;40843124;300000 -23153;159145683;40854317;300000 -23154;159134491;40865509;300000 -23155;159123300;40876700;300000 -23156;159112109;40887891;300000 -23157;159100920;40899080;300000 -23158;159089731;40910269;300000 -23159;159078544;40921456;300000 -23160;159067358;40932642;300000 -23161;159056172;40943828;300000 -23162;159044987;40955013;300000 -23163;159033804;40966196;300000 -23164;159022621;40977379;300000 -23165;159011440;40988560;300000 -23166;159000259;40999741;300000 -23167;158989079;41010921;300000 -23168;158977901;41022099;300000 -23169;158966723;41033277;300000 -23170;158955546;41044454;300000 -23171;158944370;41055630;300000 -23172;158933195;41066805;300000 -23173;158922021;41077979;300000 -23174;158910848;41089152;300000 -23175;158899676;41100324;300000 -23176;158888505;41111495;300000 -23177;158877335;41122665;300000 -23178;158866166;41133834;300000 -23179;158854998;41145002;300000 -23180;158843831;41156169;300000 -23181;158832665;41167335;300000 -23182;158821499;41178501;300000 -23183;158810335;41189665;300000 -23184;158799172;41200828;300000 -23185;158788009;41211991;300000 -23186;158776848;41223152;300000 -23187;158765688;41234312;300000 -23188;158754528;41245472;300000 -23189;158743370;41256630;300000 -23190;158732212;41267788;300000 -23191;158721056;41278944;300000 -23192;158709900;41290100;300000 -23193;158698745;41301255;300000 -23194;158687592;41312408;300000 -23195;158676439;41323561;300000 -23196;158665287;41334713;300000 -23197;158654136;41345864;300000 -23198;158642986;41357014;300000 -23199;158631838;41368162;300000 -23200;158620690;41379310;300000 -23201;158609543;41390457;300000 -23202;158598397;41401603;300000 -23203;158587252;41412748;300000 -23204;158576108;41423892;300000 -23205;158564964;41435036;300000 -23206;158553822;41446178;300000 -23207;158542681;41457319;300000 -23208;158531541;41468459;300000 -23209;158520402;41479598;300000 -23210;158509263;41490737;300000 -23211;158498126;41501874;300000 -23212;158486989;41513011;300000 -23213;158475854;41524146;300000 -23214;158464720;41535280;300000 -23215;158453586;41546414;300000 -23216;158442453;41557547;300000 -23217;158431322;41568678;300000 -23218;158420191;41579809;300000 -23219;158409062;41590938;300000 -23220;158397933;41602067;300000 -23221;158386805;41613195;300000 -23222;158375678;41624322;300000 -23223;158364552;41635448;300000 -23224;158353427;41646573;300000 -23225;158342304;41657696;300000 -23226;158331181;41668819;300000 -23227;158320059;41679941;300000 -23228;158308937;41691063;300000 -23229;158297817;41702183;300000 -23230;158286698;41713302;300000 -23231;158275580;41724420;300000 -23232;158264463;41735537;300000 -23233;158253347;41746653;300000 -23234;158242231;41757769;300000 -23235;158231117;41768883;300000 -23236;158220003;41779997;300000 -23237;158208891;41791109;300000 -23238;158197779;41802221;300000 -23239;158186669;41813331;300000 -23240;158175559;41824441;300000 -23241;158164451;41835549;300000 -23242;158153343;41846657;300000 -23243;158142236;41857764;300000 -23244;158131131;41868869;300000 -23245;158120026;41879974;300000 -23246;158108922;41891078;300000 -23247;158097819;41902181;300000 -23248;158086717;41913283;300000 -23249;158075616;41924384;300000 -23250;158064516;41935484;300000 -23251;158053417;41946583;300000 -23252;158042319;41957681;300000 -23253;158031222;41968778;300000 -23254;158020126;41979874;300000 -23255;158009030;41990970;300000 -23256;157997936;42002064;300000 -23257;157986843;42013157;300000 -23258;157975750;42024250;300000 -23259;157964659;42035341;300000 -23260;157953568;42046432;300000 -23261;157942479;42057521;300000 -23262;157931390;42068610;300000 -23263;157920303;42079697;300000 -23264;157909216;42090784;300000 -23265;157898130;42101870;300000 -23266;157887045;42112955;300000 -23267;157875962;42124038;300000 -23268;157864879;42135121;300000 -23269;157853797;42146203;300000 -23270;157842716;42157284;300000 -23271;157831636;42168364;300000 -23272;157820557;42179443;300000 -23273;157809479;42190521;300000 -23274;157798402;42201598;300000 -23275;157787325;42212675;300000 -23276;157776250;42223750;300000 -23277;157765176;42234824;300000 -23278;157754103;42245897;300000 -23279;157743030;42256970;300000 -23280;157731959;42268041;300000 -23281;157720888;42279112;300000 -23282;157709819;42290181;300000 -23283;157698750;42301250;300000 -23284;157687683;42312317;300000 -23285;157676616;42323384;300000 -23286;157665550;42334450;300000 -23287;157654485;42345515;300000 -23288;157643422;42356578;300000 -23289;157632359;42367641;300000 -23290;157621297;42378703;300000 -23291;157610236;42389764;300000 -23292;157599176;42400824;300000 -23293;157588117;42411883;300000 -23294;157577058;42422942;300000 -23295;157566001;42433999;300000 -23296;157554945;42445055;300000 -23297;157543890;42456110;300000 -23298;157532835;42467165;300000 -23299;157521782;42478218;300000 -23300;157510730;42489270;300000 -23301;157499678;42500322;300000 -23302;157488628;42511372;300000 -23303;157477578;42522422;300000 -23304;157466529;42533471;300000 -23305;157455482;42544518;300000 -23306;157444435;42555565;300000 -23307;157433389;42566611;300000 -23308;157422344;42577656;300000 -23309;157411300;42588700;300000 -23310;157400257;42599743;300000 -23311;157389215;42610785;300000 -23312;157378174;42621826;300000 -23313;157367134;42632866;300000 -23314;157356095;42643905;300000 -23315;157345057;42654943;300000 -23316;157334020;42665980;300000 -23317;157322983;42677017;300000 -23318;157311948;42688052;300000 -23319;157300913;42699087;300000 -23320;157289880;42710120;300000 -23321;157278847;42721153;300000 -23322;157267816;42732184;300000 -23323;157256785;42743215;300000 -23324;157245755;42754245;300000 -23325;157234727;42765273;300000 -23326;157223699;42776301;300000 -23327;157212672;42787328;300000 -23328;157201646;42798354;300000 -23329;157190621;42809379;300000 -23330;157179597;42820403;300000 -23331;157168574;42831426;300000 -23332;157157552;42842448;300000 -23333;157146531;42853469;300000 -23334;157135510;42864490;300000 -23335;157124491;42875509;300000 -23336;157113473;42886527;300000 -23337;157102455;42897545;300000 -23338;157091439;42908561;300000 -23339;157080423;42919577;300000 -23340;157069409;42930591;300000 -23341;157058395;42941605;300000 -23342;157047382;42952618;300000 -23343;157036371;42963629;300000 -23344;157025360;42974640;300000 -23345;157014350;42985650;300000 -23346;157003341;42996659;300000 -23347;156992333;43007667;300000 -23348;156981326;43018674;300000 -23349;156970320;43029680;300000 -23350;156959315;43040685;300000 -23351;156948311;43051689;300000 -23352;156937307;43062693;300000 -23353;156926305;43073695;300000 -23354;156915304;43084696;300000 -23355;156904303;43095697;300000 -23356;156893304;43106696;300000 -23357;156882305;43117695;300000 -23358;156871307;43128693;300000 -23359;156860311;43139689;300000 -23360;156849315;43150685;300000 -23361;156838320;43161680;300000 -23362;156827326;43172674;300000 -23363;156816334;43183666;300000 -23364;156805342;43194658;300000 -23365;156794351;43205649;300000 -23366;156783360;43216640;300000 -23367;156772371;43227629;300000 -23368;156761383;43238617;300000 -23369;156750396;43249604;300000 -23370;156739409;43260591;300000 -23371;156728424;43271576;300000 -23372;156717440;43282560;300000 -23373;156706456;43293544;300000 -23374;156695474;43304526;300000 -23375;156684492;43315508;300000 -23376;156673511;43326489;300000 -23377;156662532;43337468;300000 -23378;156651553;43348447;300000 -23379;156640575;43359425;300000 -23380;156629598;43370402;300000 -23381;156618622;43381378;300000 -23382;156607647;43392353;300000 -23383;156596673;43403327;300000 -23384;156585700;43414300;300000 -23385;156574727;43425273;300000 -23386;156563756;43436244;300000 -23387;156552786;43447214;300000 -23388;156541816;43458184;300000 -23389;156530848;43469152;300000 -23390;156519880;43480120;300000 -23391;156508914;43491086;300000 -23392;156497948;43502052;300000 -23393;156486983;43513017;300000 -23394;156476019;43523981;300000 -23395;156465057;43534943;300000 -23396;156454095;43545905;300000 -23397;156443134;43556866;300000 -23398;156432174;43567826;300000 -23399;156421215;43578785;300000 -23400;156410256;43589744;300000 -23401;156399299;43600701;300000 -23402;156388343;43611657;300000 -23403;156377388;43622612;300000 -23404;156366433;43633567;300000 -23405;156355480;43644520;300000 -23406;156344527;43655473;300000 -23407;156333575;43666425;300000 -23408;156322625;43677375;300000 -23409;156311675;43688325;300000 -23410;156300726;43699274;300000 -23411;156289778;43710222;300000 -23412;156278831;43721169;300000 -23413;156267885;43732115;300000 -23414;156256940;43743060;300000 -23415;156245996;43754004;300000 -23416;156235053;43764947;300000 -23417;156224111;43775889;300000 -23418;156213169;43786831;300000 -23419;156202229;43797771;300000 -23420;156191289;43808711;300000 -23421;156180351;43819649;300000 -23422;156169413;43830587;300000 -23423;156158477;43841523;300000 -23424;156147541;43852459;300000 -23425;156136606;43863394;300000 -23426;156125672;43874328;300000 -23427;156114739;43885261;300000 -23428;156103807;43896193;300000 -23429;156092876;43907124;300000 -23430;156081946;43918054;300000 -23431;156071017;43928983;300000 -23432;156060089;43939911;300000 -23433;156049161;43950839;300000 -23434;156038235;43961765;300000 -23435;156027310;43972690;300000 -23436;156016385;43983615;300000 -23437;156005461;43994539;300000 -23438;155994539;44005461;300000 -23439;155983617;44016383;300000 -23440;155972696;44027304;300000 -23441;155961776;44038224;300000 -23442;155950857;44049143;300000 -23443;155939939;44060061;300000 -23444;155929022;44070978;300000 -23445;155918106;44081894;300000 -23446;155907191;44092809;300000 -23447;155896277;44103723;300000 -23448;155885363;44114637;300000 -23449;155874451;44125549;300000 -23450;155863539;44136461;300000 -23451;155852629;44147371;300000 -23452;155841719;44158281;300000 -23453;155830811;44169189;300000 -23454;155819903;44180097;300000 -23455;155808996;44191004;300000 -23456;155798090;44201910;300000 -23457;155787185;44212815;300000 -23458;155776281;44223719;300000 -23459;155765378;44234622;300000 -23460;155754476;44245524;300000 -23461;155743574;44256426;300000 -23462;155732674;44267326;300000 -23463;155721775;44278225;300000 -23464;155710876;44289124;300000 -23465;155699979;44300021;300000 -23466;155689082;44310918;300000 -23467;155678186;44321814;300000 -23468;155667292;44332708;300000 -23469;155656398;44343602;300000 -23470;155645505;44354495;300000 -23471;155634613;44365387;300000 -23472;155623722;44376278;300000 -23473;155612832;44387168;300000 -23474;155601943;44398057;300000 -23475;155591054;44408946;300000 -23476;155580167;44419833;300000 -23477;155569281;44430719;300000 -23478;155558395;44441605;300000 -23479;155547511;44452489;300000 -23480;155536627;44463373;300000 -23481;155525744;44474256;300000 -23482;155514862;44485138;300000 -23483;155503982;44496018;300000 -23484;155493102;44506898;300000 -23485;155482223;44517777;300000 -23486;155471345;44528655;300000 -23487;155460467;44539533;300000 -23488;155449591;44550409;300000 -23489;155438716;44561284;300000 -23490;155427842;44572158;300000 -23491;155416968;44583032;300000 -23492;155406096;44593904;300000 -23493;155395224;44604776;300000 -23494;155384353;44615647;300000 -23495;155373484;44626516;300000 -23496;155362615;44637385;300000 -23497;155351747;44648253;300000 -23498;155340880;44659120;300000 -23499;155330014;44669986;300000 -23500;155319149;44680851;300000 -23501;155308285;44691715;300000 -23502;155297421;44702579;300000 -23503;155286559;44713441;300000 -23504;155275698;44724302;300000 -23505;155264837;44735163;300000 -23506;155253978;44746022;300000 -23507;155243119;44756881;300000 -23508;155232261;44767739;300000 -23509;155221405;44778595;300000 -23510;155210549;44789451;300000 -23511;155199694;44800306;300000 -23512;155188840;44811160;300000 -23513;155177987;44822013;300000 -23514;155167134;44832866;300000 -23515;155156283;44843717;300000 -23516;155145433;44854567;300000 -23517;155134583;44865417;300000 -23518;155123735;44876265;300000 -23519;155112887;44887113;300000 -23520;155102041;44897959;300000 -23521;155091195;44908805;300000 -23522;155080350;44919650;300000 -23523;155069506;44930494;300000 -23524;155058663;44941337;300000 -23525;155047821;44952179;300000 -23526;155036980;44963020;300000 -23527;155026140;44973860;300000 -23528;155015301;44984699;300000 -23529;155004463;44995537;300000 -23530;154993625;45006375;300000 -23531;154982789;45017211;300000 -23532;154971953;45028047;300000 -23533;154961118;45038882;300000 -23534;154950285;45049715;300000 -23535;154939452;45060548;300000 -23536;154928620;45071380;300000 -23537;154917789;45082211;300000 -23538;154906959;45093041;300000 -23539;154896130;45103870;300000 -23540;154885302;45114698;300000 -23541;154874474;45125526;300000 -23542;154863648;45136352;300000 -23543;154852822;45147178;300000 -23544;154841998;45158002;300000 -23545;154831174;45168826;300000 -23546;154820352;45179648;300000 -23547;154809530;45190470;300000 -23548;154798709;45201291;300000 -23549;154787889;45212111;300000 -23550;154777070;45222930;300000 -23551;154766252;45233748;300000 -23552;154755435;45244565;300000 -23553;154744619;45255381;300000 -23554;154733803;45266197;300000 -23555;154722989;45277011;300000 -23556;154712175;45287825;300000 -23557;154701363;45298637;300000 -23558;154690551;45309449;300000 -23559;154679740;45320260;300000 -23560;154668930;45331070;300000 -23561;154658121;45341879;300000 -23562;154647313;45352687;300000 -23563;154636506;45363494;300000 -23564;154625700;45374300;300000 -23565;154614895;45385105;300000 -23566;154604091;45395909;300000 -23567;154593287;45406713;300000 -23568;154582485;45417515;300000 -23569;154571683;45428317;300000 -23570;154560882;45439118;300000 -23571;154550083;45449917;300000 -23572;154539284;45460716;300000 -23573;154528486;45471514;300000 -23574;154517689;45482311;300000 -23575;154506893;45493107;300000 -23576;154496098;45503902;300000 -23577;154485303;45514697;300000 -23578;154474510;45525490;300000 -23579;154463718;45536282;300000 -23580;154452926;45547074;300000 -23581;154442136;45557864;300000 -23582;154431346;45568654;300000 -23583;154420557;45579443;300000 -23584;154409769;45590231;300000 -23585;154398982;45601018;300000 -23586;154388196;45611804;300000 -23587;154377411;45622589;300000 -23588;154366627;45633373;300000 -23589;154355844;45644156;300000 -23590;154345061;45654939;300000 -23591;154334280;45665720;300000 -23592;154323499;45676501;300000 -23593;154312720;45687280;300000 -23594;154301941;45698059;300000 -23595;154291163;45708837;300000 -23596;154280387;45719613;300000 -23597;154269611;45730389;300000 -23598;154258835;45741165;300000 -23599;154248061;45751939;300000 -23600;154237288;45762712;300000 -23601;154226516;45773484;300000 -23602;154215744;45784256;300000 -23603;154204974;45795026;300000 -23604;154194204;45805796;300000 -23605;154183436;45816564;300000 -23606;154172668;45827332;300000 -23607;154161901;45838099;300000 -23608;154151135;45848865;300000 -23609;154140370;45859630;300000 -23610;154129606;45870394;300000 -23611;154118843;45881157;300000 -23612;154108081;45891919;300000 -23613;154097319;45902681;300000 -23614;154086559;45913441;300000 -23615;154075799;45924201;300000 -23616;154065041;45934959;300000 -23617;154054283;45945717;300000 -23618;154043526;45956474;300000 -23619;154032770;45967230;300000 -23620;154022015;45977985;300000 -23621;154011261;45988739;300000 -23622;154000508;45999492;300000 -23623;153989756;46010244;300000 -23624;153979004;46020996;300000 -23625;153968254;46031746;300000 -23626;153957504;46042496;300000 -23627;153946756;46053244;300000 -23628;153936008;46063992;300000 -23629;153925261;46074739;300000 -23630;153914515;46085485;300000 -23631;153903770;46096230;300000 -23632;153893026;46106974;300000 -23633;153882283;46117717;300000 -23634;153871541;46128459;300000 -23635;153860800;46139200;300000 -23636;153850059;46149941;300000 -23637;153839320;46160680;300000 -23638;153828581;46171419;300000 -23639;153817843;46182157;300000 -23640;153807107;46192893;300000 -23641;153796371;46203629;300000 -23642;153785636;46214364;300000 -23643;153774902;46225098;300000 -23644;153764168;46235832;300000 -23645;153753436;46246564;300000 -23646;153742705;46257295;300000 -23647;153731974;46268026;300000 -23648;153721245;46278755;300000 -23649;153710516;46289484;300000 -23650;153699789;46300211;300000 -23651;153689062;46310938;300000 -23652;153678336;46321664;300000 -23653;153667611;46332389;300000 -23654;153656887;46343113;300000 -23655;153646164;46353836;300000 -23656;153635441;46364559;300000 -23657;153624720;46375280;300000 -23658;153613999;46386001;300000 -23659;153603280;46396720;300000 -23660;153592561;46407439;300000 -23661;153581844;46418156;300000 -23662;153571127;46428873;300000 -23663;153560411;46439589;300000 -23664;153549696;46450304;300000 -23665;153538982;46461018;300000 -23666;153528268;46471732;300000 -23667;153517556;46482444;300000 -23668;153506845;46493155;300000 -23669;153496134;46503866;300000 -23670;153485425;46514575;300000 -23671;153474716;46525284;300000 -23672;153464008;46535992;300000 -23673;153453301;46546699;300000 -23674;153442595;46557405;300000 -23675;153431890;46568110;300000 -23676;153421186;46578814;300000 -23677;153410483;46589517;300000 -23678;153399780;46600220;300000 -23679;153389079;46610921;300000 -23680;153378378;46621622;300000 -23681;153367679;46632321;300000 -23682;153356980;46643020;300000 -23683;153346282;46653718;300000 -23684;153335585;46664415;300000 -23685;153324889;46675111;300000 -23686;153314194;46685806;300000 -23687;153303500;46696500;300000 -23688;153292806;46707194;300000 -23689;153282114;46717886;300000 -23690;153271423;46728577;300000 -23691;153260732;46739268;300000 -23692;153250042;46749958;300000 -23693;153239353;46760647;300000 -23694;153228665;46771335;300000 -23695;153217978;46782022;300000 -23696;153207292;46792708;300000 -23697;153196607;46803393;300000 -23698;153185923;46814077;300000 -23699;153175239;46824761;300000 -23700;153164557;46835443;300000 -23701;153153875;46846125;300000 -23702;153143195;46856805;300000 -23703;153132515;46867485;300000 -23704;153121836;46878164;300000 -23705;153111158;46888842;300000 -23706;153100481;46899519;300000 -23707;153089805;46910195;300000 -23708;153079129;46920871;300000 -23709;153068455;46931545;300000 -23710;153057782;46942218;300000 -23711;153047109;46952891;300000 -23712;153036437;46963563;300000 -23713;153025766;46974234;300000 -23714;153015097;46984903;300000 -23715;153004428;46995572;300000 -23716;152993759;47006241;300000 -23717;152983092;47016908;300000 -23718;152972426;47027574;300000 -23719;152961761;47038239;300000 -23720;152951096;47048904;300000 -23721;152940433;47059567;300000 -23722;152929770;47070230;300000 -23723;152919108;47080892;300000 -23724;152908447;47091553;300000 -23725;152897787;47102213;300000 -23726;152887128;47112872;300000 -23727;152876470;47123530;300000 -23728;152865813;47134187;300000 -23729;152855156;47144844;300000 -23730;152844501;47155499;300000 -23731;152833846;47166154;300000 -23732;152823192;47176808;300000 -23733;152812540;47187460;300000 -23734;152801888;47198112;300000 -23735;152791237;47208763;300000 -23736;152780586;47219414;300000 -23737;152769937;47230063;300000 -23738;152759289;47240711;300000 -23739;152748641;47251359;300000 -23740;152737995;47262005;300000 -23741;152727349;47272651;300000 -23742;152716705;47283295;300000 -23743;152706061;47293939;300000 -23744;152695418;47304582;300000 -23745;152684776;47315224;300000 -23746;152674135;47325865;300000 -23747;152663494;47336506;300000 -23748;152652855;47347145;300000 -23749;152642217;47357783;300000 -23750;152631579;47368421;300000 -23751;152620942;47379058;300000 -23752;152610307;47389693;300000 -23753;152599672;47400328;300000 -23754;152589038;47410962;300000 -23755;152578405;47421595;300000 -23756;152567772;47432228;300000 -23757;152557141;47442859;300000 -23758;152546511;47453489;300000 -23759;152535881;47464119;300000 -23760;152525253;47474747;300000 -23761;152514625;47485375;300000 -23762;152503998;47496002;300000 -23763;152493372;47506628;300000 -23764;152482747;47517253;300000 -23765;152472123;47527877;300000 -23766;152461500;47538500;300000 -23767;152450877;47549123;300000 -23768;152440256;47559744;300000 -23769;152429635;47570365;300000 -23770;152419016;47580984;300000 -23771;152408397;47591603;300000 -23772;152397779;47602221;300000 -23773;152387162;47612838;300000 -23774;152376546;47623454;300000 -23775;152365931;47634069;300000 -23776;152355316;47644684;300000 -23777;152344703;47655297;300000 -23778;152334090;47665910;300000 -23779;152323479;47676521;300000 -23780;152312868;47687132;300000 -23781;152302258;47697742;300000 -23782;152291649;47708351;300000 -23783;152281041;47718959;300000 -23784;152270434;47729566;300000 -23785;152259828;47740172;300000 -23786;152249222;47750778;300000 -23787;152238618;47761382;300000 -23788;152228014;47771986;300000 -23789;152217411;47782589;300000 -23790;152206810;47793190;300000 -23791;152196209;47803791;300000 -23792;152185609;47814391;300000 -23793;152175009;47824991;300000 -23794;152164411;47835589;300000 -23795;152153814;47846186;300000 -23796;152143217;47856783;300000 -23797;152132622;47867378;300000 -23798;152122027;47877973;300000 -23799;152111433;47888567;300000 -23800;152100840;47899160;300000 -23801;152090248;47909752;300000 -23802;152079657;47920343;300000 -23803;152069067;47930933;300000 -23804;152058478;47941522;300000 -23805;152047889;47952111;300000 -23806;152037302;47962698;300000 -23807;152026715;47973285;300000 -23808;152016129;47983871;300000 -23809;152005544;47994456;300000 -23810;151994960;48005040;300000 -23811;151984377;48015623;300000 -23812;151973795;48026205;300000 -23813;151963213;48036787;300000 -23814;151952633;48047367;300000 -23815;151942053;48057947;300000 -23816;151931475;48068525;300000 -23817;151920897;48079103;300000 -23818;151910320;48089680;300000 -23819;151899744;48100256;300000 -23820;151889169;48110831;300000 -23821;151878595;48121405;300000 -23822;151868021;48131979;300000 -23823;151857449;48142551;300000 -23824;151846877;48153123;300000 -23825;151836306;48163694;300000 -23826;151825737;48174263;300000 -23827;151815168;48184832;300000 -23828;151804600;48195400;300000 -23829;151794032;48205968;300000 -23830;151783466;48216534;300000 -23831;151772901;48227099;300000 -23832;151762336;48237664;300000 -23833;151751773;48248227;300000 -23834;151741210;48258790;300000 -23835;151730648;48269352;300000 -23836;151720087;48279913;300000 -23837;151709527;48290473;300000 -23838;151698968;48301032;300000 -23839;151688410;48311590;300000 -23840;151677852;48322148;300000 -23841;151667296;48332704;300000 -23842;151656740;48343260;300000 -23843;151646185;48353815;300000 -23844;151635632;48364368;300000 -23845;151625079;48374921;300000 -23846;151614527;48385473;300000 -23847;151603975;48396025;300000 -23848;151593425;48406575;300000 -23849;151582876;48417124;300000 -23850;151572327;48427673;300000 -23851;151561779;48438221;300000 -23852;151551233;48448767;300000 -23853;151540687;48459313;300000 -23854;151530142;48469858;300000 -23855;151519598;48480402;300000 -23856;151509054;48490946;300000 -23857;151498512;48501488;300000 -23858;151487970;48512030;300000 -23859;151477430;48522570;300000 -23860;151466890;48533110;300000 -23861;151456351;48543649;300000 -23862;151445813;48554187;300000 -23863;151435276;48564724;300000 -23864;151424740;48575260;300000 -23865;151414205;48585795;300000 -23866;151403670;48596330;300000 -23867;151393137;48606863;300000 -23868;151382604;48617396;300000 -23869;151372073;48627927;300000 -23870;151361542;48638458;300000 -23871;151351012;48648988;300000 -23872;151340483;48659517;300000 -23873;151329954;48670046;300000 -23874;151319427;48680573;300000 -23875;151308901;48691099;300000 -23876;151298375;48701625;300000 -23877;151287850;48712150;300000 -23878;151277326;48722674;300000 -23879;151266803;48733197;300000 -23880;151256281;48743719;300000 -23881;151245760;48754240;300000 -23882;151235240;48764760;300000 -23883;151224721;48775279;300000 -23884;151214202;48785798;300000 -23885;151203684;48796316;300000 -23886;151193168;48806832;300000 -23887;151182652;48817348;300000 -23888;151172137;48827863;300000 -23889;151161623;48838377;300000 -23890;151151109;48848891;300000 -23891;151140597;48859403;300000 -23892;151130085;48869915;300000 -23893;151119575;48880425;300000 -23894;151109065;48890935;300000 -23895;151098556;48901444;300000 -23896;151088048;48911952;300000 -23897;151077541;48922459;300000 -23898;151067035;48932965;300000 -23899;151056530;48943470;300000 -23900;151046025;48953975;300000 -23901;151035522;48964478;300000 -23902;151025019;48974981;300000 -23903;151014517;48985483;300000 -23904;151004016;48995984;300000 -23905;150993516;49006484;300000 -23906;150983017;49016983;300000 -23907;150972519;49027481;300000 -23908;150962021;49037979;300000 -23909;150951525;49048475;300000 -23910;150941029;49058971;300000 -23911;150930534;49069466;300000 -23912;150920040;49079960;300000 -23913;150909547;49090453;300000 -23914;150899055;49100945;300000 -23915;150888564;49111436;300000 -23916;150878073;49121927;300000 -23917;150867584;49132416;300000 -23918;150857095;49142905;300000 -23919;150846607;49153393;300000 -23920;150836120;49163880;300000 -23921;150825634;49174366;300000 -23922;150815149;49184851;300000 -23923;150804665;49195335;300000 -23924;150794182;49205818;300000 -23925;150783699;49216301;300000 -23926;150773217;49226783;300000 -23927;150762737;49237263;300000 -23928;150752257;49247743;300000 -23929;150741778;49258222;300000 -23930;150731300;49268700;300000 -23931;150720822;49279178;300000 -23932;150710346;49289654;300000 -23933;150699870;49300130;300000 -23934;150689396;49310604;300000 -23935;150678922;49321078;300000 -23936;150668449;49331551;300000 -23937;150657977;49342023;300000 -23938;150647506;49352494;300000 -23939;150637036;49362964;300000 -23940;150626566;49373434;300000 -23941;150616098;49383902;300000 -23942;150605630;49394370;300000 -23943;150595164;49404836;300000 -23944;150584698;49415302;300000 -23945;150574233;49425767;300000 -23946;150563768;49436232;300000 -23947;150553305;49446695;300000 -23948;150542843;49457157;300000 -23949;150532381;49467619;300000 -23950;150521921;49478079;300000 -23951;150511461;49488539;300000 -23952;150501002;49498998;300000 -23953;150490544;49509456;300000 -23954;150480087;49519913;300000 -23955;150469631;49530369;300000 -23956;150459175;49540825;300000 -23957;150448721;49551279;300000 -23958;150438267;49561733;300000 -23959;150427814;49572186;300000 -23960;150417362;49582638;300000 -23961;150406911;49593089;300000 -23962;150396461;49603539;300000 -23963;150386012;49613988;300000 -23964;150375563;49624437;300000 -23965;150365116;49634884;300000 -23966;150354669;49645331;300000 -23967;150344223;49655777;300000 -23968;150333778;49666222;300000 -23969;150323334;49676666;300000 -23970;150312891;49687109;300000 -23971;150302449;49697551;300000 -23972;150292007;49707993;300000 -23973;150281567;49718433;300000 -23974;150271127;49728873;300000 -23975;150260688;49739312;300000 -23976;150250250;49749750;300000 -23977;150239813;49760187;300000 -23978;150229377;49770623;300000 -23979;150218942;49781058;300000 -23980;150208507;49791493;300000 -23981;150198073;49801927;300000 -23982;150187641;49812359;300000 -23983;150177209;49822791;300000 -23984;150166778;49833222;300000 -23985;150156348;49843652;300000 -23986;150145918;49854082;300000 -23987;150135490;49864510;300000 -23988;150125063;49874937;300000 -23989;150114636;49885364;300000 -23990;150104210;49895790;300000 -23991;150093785;49906215;300000 -23992;150083361;49916639;300000 -23993;150072938;49927062;300000 -23994;150062516;49937484;300000 -23995;150052094;49947906;300000 -23996;150041674;49958326;300000 -23997;150031254;49968746;300000 -23998;150020835;49979165;300000 -23999;150010417;49989583;300000 -24000;150000000;50000000;300000 -24001;149989584;50010416;300000 -24002;149979168;50020832;300000 -24003;149968754;50031246;300000 -24004;149958340;50041660;300000 -24005;149947928;50052072;300000 -24006;149937516;50062484;300000 -24007;149927105;50072895;300000 -24008;149916694;50083306;300000 -24009;149906285;50093715;300000 -24010;149895877;50104123;300000 -24011;149885469;50114531;300000 -24012;149875062;50124938;300000 -24013;149864657;50135343;300000 -24014;149854252;50145748;300000 -24015;149843848;50156152;300000 -24016;149833444;50166556;300000 -24017;149823042;50176958;300000 -24018;149812641;50187359;300000 -24019;149802240;50197760;300000 -24020;149791840;50208160;300000 -24021;149781441;50218559;300000 -24022;149771043;50228957;300000 -24023;149760646;50239354;300000 -24024;149750250;50249750;300000 -24025;149739854;50260146;300000 -24026;149729460;50270540;300000 -24027;149719066;50280934;300000 -24028;149708673;50291327;300000 -24029;149698281;50301719;300000 -24030;149687890;50312110;300000 -24031;149677500;50322500;300000 -24032;149667111;50332889;300000 -24033;149656722;50343278;300000 -24034;149646334;50353666;300000 -24035;149635948;50364052;300000 -24036;149625562;50374438;300000 -24037;149615177;50384823;300000 -24038;149604792;50395208;300000 -24039;149594409;50405591;300000 -24040;149584027;50415973;300000 -24041;149573645;50426355;300000 -24042;149563264;50436736;300000 -24043;149552884;50447116;300000 -24044;149542505;50457495;300000 -24045;149532127;50467873;300000 -24046;149521750;50478250;300000 -24047;149511374;50488626;300000 -24048;149500998;50499002;300000 -24049;149490623;50509377;300000 -24050;149480249;50519751;300000 -24051;149469877;50530123;300000 -24052;149459504;50540496;300000 -24053;149449133;50550867;300000 -24054;149438763;50561237;300000 -24055;149428393;50571607;300000 -24056;149418025;50581975;300000 -24057;149407657;50592343;300000 -24058;149397290;50602710;300000 -24059;149386924;50613076;300000 -24060;149376559;50623441;300000 -24061;149366194;50633806;300000 -24062;149355831;50644169;300000 -24063;149345468;50654532;300000 -24064;149335106;50664894;300000 -24065;149324745;50675255;300000 -24066;149314385;50685615;300000 -24067;149304026;50695974;300000 -24068;149293668;50706332;300000 -24069;149283310;50716690;300000 -24070;149272954;50727046;300000 -24071;149262598;50737402;300000 -24072;149252243;50747757;300000 -24073;149241889;50758111;300000 -24074;149231536;50768464;300000 -24075;149221184;50778816;300000 -24076;149210832;50789168;300000 -24077;149200482;50799518;300000 -24078;149190132;50809868;300000 -24079;149179783;50820217;300000 -24080;149169435;50830565;300000 -24081;149159088;50840912;300000 -24082;149148742;50851258;300000 -24083;149138396;50861604;300000 -24084;149128052;50871948;300000 -24085;149117708;50882292;300000 -24086;149107365;50892635;300000 -24087;149097023;50902977;300000 -24088;149086682;50913318;300000 -24089;149076342;50923658;300000 -24090;149066002;50933998;300000 -24091;149055664;50944336;300000 -24092;149045326;50954674;300000 -24093;149034989;50965011;300000 -24094;149024653;50975347;300000 -24095;149014318;50985682;300000 -24096;149003984;50996016;300000 -24097;148993651;51006349;300000 -24098;148983318;51016682;300000 -24099;148972986;51027014;300000 -24100;148962656;51037344;300000 -24101;148952326;51047674;300000 -24102;148941997;51058003;300000 -24103;148931668;51068332;300000 -24104;148921341;51078659;300000 -24105;148911014;51088986;300000 -24106;148900689;51099311;300000 -24107;148890364;51109636;300000 -24108;148880040;51119960;300000 -24109;148869717;51130283;300000 -24110;148859394;51140606;300000 -24111;148849073;51150927;300000 -24112;148838752;51161248;300000 -24113;148828433;51171567;300000 -24114;148818114;51181886;300000 -24115;148807796;51192204;300000 -24116;148797479;51202521;300000 -24117;148787163;51212837;300000 -24118;148776847;51223153;300000 -24119;148766533;51233467;300000 -24120;148756219;51243781;300000 -24121;148745906;51254094;300000 -24122;148735594;51264406;300000 -24123;148725283;51274717;300000 -24124;148714973;51285027;300000 -24125;148704663;51295337;300000 -24126;148694355;51305645;300000 -24127;148684047;51315953;300000 -24128;148673740;51326260;300000 -24129;148663434;51336566;300000 -24130;148653129;51346871;300000 -24131;148642825;51357175;300000 -24132;148632521;51367479;300000 -24133;148622219;51377781;300000 -24134;148611917;51388083;300000 -24135;148601616;51398384;300000 -24136;148591316;51408684;300000 -24137;148581017;51418983;300000 -24138;148570718;51429282;300000 -24139;148560421;51439579;300000 -24140;148550124;51449876;300000 -24141;148539829;51460171;300000 -24142;148529534;51470466;300000 -24143;148519240;51480760;300000 -24144;148508946;51491054;300000 -24145;148498654;51501346;300000 -24146;148488362;51511638;300000 -24147;148478072;51521928;300000 -24148;148467782;51532218;300000 -24149;148457493;51542507;300000 -24150;148447205;51552795;300000 -24151;148436918;51563082;300000 -24152;148426631;51573369;300000 -24153;148416346;51583654;300000 -24154;148406061;51593939;300000 -24155;148395777;51604223;300000 -24156;148385494;51614506;300000 -24157;148375212;51624788;300000 -24158;148364931;51635069;300000 -24159;148354650;51645350;300000 -24160;148344371;51655629;300000 -24161;148334092;51665908;300000 -24162;148323814;51676186;300000 -24163;148313537;51686463;300000 -24164;148303261;51696739;300000 -24165;148292986;51707014;300000 -24166;148282711;51717289;300000 -24167;148272438;51727562;300000 -24168;148262165;51737835;300000 -24169;148251893;51748107;300000 -24170;148241622;51758378;300000 -24171;148231352;51768648;300000 -24172;148221082;51778918;300000 -24173;148210814;51789186;300000 -24174;148200546;51799454;300000 -24175;148190279;51809721;300000 -24176;148180013;51819987;300000 -24177;148169748;51830252;300000 -24178;148159484;51840516;300000 -24179;148149220;51850780;300000 -24180;148138958;51861042;300000 -24181;148128696;51871304;300000 -24182;148118435;51881565;300000 -24183;148108175;51891825;300000 -24184;148097916;51902084;300000 -24185;148087658;51912342;300000 -24186;148077400;51922600;300000 -24187;148067144;51932856;300000 -24188;148056888;51943112;300000 -24189;148046633;51953367;300000 -24190;148036379;51963621;300000 -24191;148026125;51973875;300000 -24192;148015873;51984127;300000 -24193;148005621;51994379;300000 -24194;147995371;52004629;300000 -24195;147985121;52014879;300000 -24196;147974872;52025128;300000 -24197;147964624;52035376;300000 -24198;147954376;52045624;300000 -24199;147944130;52055870;300000 -24200;147933884;52066116;300000 -24201;147923640;52076360;300000 -24202;147913396;52086604;300000 -24203;147903153;52096847;300000 -24204;147892910;52107090;300000 -24205;147882669;52117331;300000 -24206;147872428;52127572;300000 -24207;147862189;52137811;300000 -24208;147851950;52148050;300000 -24209;147841712;52158288;300000 -24210;147831475;52168525;300000 -24211;147821238;52178762;300000 -24212;147811003;52188997;300000 -24213;147800768;52199232;300000 -24214;147790534;52209466;300000 -24215;147780301;52219699;300000 -24216;147770069;52229931;300000 -24217;147759838;52240162;300000 -24218;147749608;52250392;300000 -24219;147739378;52260622;300000 -24220;147729149;52270851;300000 -24221;147718922;52281078;300000 -24222;147708695;52291305;300000 -24223;147698468;52301532;300000 -24224;147688243;52311757;300000 -24225;147678019;52321981;300000 -24226;147667795;52332205;300000 -24227;147657572;52342428;300000 -24228;147647350;52352650;300000 -24229;147637129;52362871;300000 -24230;147626909;52373091;300000 -24231;147616689;52383311;300000 -24232;147606471;52393529;300000 -24233;147596253;52403747;300000 -24234;147586036;52413964;300000 -24235;147575820;52424180;300000 -24236;147565605;52434395;300000 -24237;147555391;52444609;300000 -24238;147545177;52454823;300000 -24239;147534964;52465036;300000 -24240;147524752;52475248;300000 -24241;147514541;52485459;300000 -24242;147504331;52495669;300000 -24243;147494122;52505878;300000 -24244;147483914;52516086;300000 -24245;147473706;52526294;300000 -24246;147463499;52536501;300000 -24247;147453293;52546707;300000 -24248;147443088;52556912;300000 -24249;147432884;52567116;300000 -24250;147422680;52577320;300000 -24251;147412478;52587522;300000 -24252;147402276;52597724;300000 -24253;147392075;52607925;300000 -24254;147381875;52618125;300000 -24255;147371676;52628324;300000 -24256;147361478;52638522;300000 -24257;147351280;52648720;300000 -24258;147341083;52658917;300000 -24259;147330888;52669112;300000 -24260;147320692;52679308;300000 -24261;147310498;52689502;300000 -24262;147300305;52699695;300000 -24263;147290113;52709887;300000 -24264;147279921;52720079;300000 -24265;147269730;52730270;300000 -24266;147259540;52740460;300000 -24267;147249351;52750649;300000 -24268;147239163;52760837;300000 -24269;147228975;52771025;300000 -24270;147218789;52781211;300000 -24271;147208603;52791397;300000 -24272;147198418;52801582;300000 -24273;147188234;52811766;300000 -24274;147178051;52821949;300000 -24275;147167868;52832132;300000 -24276;147157687;52842313;300000 -24277;147147506;52852494;300000 -24278;147137326;52862674;300000 -24279;147127147;52872853;300000 -24280;147116969;52883031;300000 -24281;147106791;52893209;300000 -24282;147096615;52903385;300000 -24283;147086439;52913561;300000 -24284;147076264;52923736;300000 -24285;147066090;52933910;300000 -24286;147055917;52944083;300000 -24287;147045745;52954255;300000 -24288;147035573;52964427;300000 -24289;147025402;52974598;300000 -24290;147015233;52984767;300000 -24291;147005064;52994936;300000 -24292;146994895;53005105;300000 -24293;146984728;53015272;300000 -24294;146974562;53025438;300000 -24295;146964396;53035604;300000 -24296;146954231;53045769;300000 -24297;146944067;53055933;300000 -24298;146933904;53066096;300000 -24299;146923742;53076258;300000 -24300;146913580;53086420;300000 -24301;146903420;53096580;300000 -24302;146893260;53106740;300000 -24303;146883101;53116899;300000 -24304;146872943;53127057;300000 -24305;146862785;53137215;300000 -24306;146852629;53147371;300000 -24307;146842473;53157527;300000 -24308;146832319;53167681;300000 -24309;146822165;53177835;300000 -24310;146812012;53187988;300000 -24311;146801859;53198141;300000 -24312;146791708;53208292;300000 -24313;146781557;53218443;300000 -24314;146771407;53228593;300000 -24315;146761258;53238742;300000 -24316;146751110;53248890;300000 -24317;146740963;53259037;300000 -24318;146730817;53269183;300000 -24319;146720671;53279329;300000 -24320;146710526;53289474;300000 -24321;146700382;53299618;300000 -24322;146690239;53309761;300000 -24323;146680097;53319903;300000 -24324;146669956;53330044;300000 -24325;146659815;53340185;300000 -24326;146649675;53350325;300000 -24327;146639536;53360464;300000 -24328;146629398;53370602;300000 -24329;146619261;53380739;300000 -24330;146609125;53390875;300000 -24331;146598989;53401011;300000 -24332;146588854;53411146;300000 -24333;146578720;53421280;300000 -24334;146568587;53431413;300000 -24335;146558455;53441545;300000 -24336;146548323;53451677;300000 -24337;146538193;53461807;300000 -24338;146528063;53471937;300000 -24339;146517934;53482066;300000 -24340;146507806;53492194;300000 -24341;146497679;53502321;300000 -24342;146487552;53512448;300000 -24343;146477427;53522573;300000 -24344;146467302;53532698;300000 -24345;146457178;53542822;300000 -24346;146447055;53552945;300000 -24347;146436933;53563067;300000 -24348;146426811;53573189;300000 -24349;146416691;53583309;300000 -24350;146406571;53593429;300000 -24351;146396452;53603548;300000 -24352;146386334;53613666;300000 -24353;146376216;53623784;300000 -24354;146366100;53633900;300000 -24355;146355984;53644016;300000 -24356;146345870;53654130;300000 -24357;146335756;53664244;300000 -24358;146325642;53674358;300000 -24359;146315530;53684470;300000 -24360;146305419;53694581;300000 -24361;146295308;53704692;300000 -24362;146285198;53714802;300000 -24363;146275089;53724911;300000 -24364;146264981;53735019;300000 -24365;146254874;53745126;300000 -24366;146244767;53755233;300000 -24367;146234662;53765338;300000 -24368;146224557;53775443;300000 -24369;146214453;53785547;300000 -24370;146204350;53795650;300000 -24371;146194247;53805753;300000 -24372;146184146;53815854;300000 -24373;146174045;53825955;300000 -24374;146163945;53836055;300000 -24375;146153846;53846154;300000 -24376;146143748;53856252;300000 -24377;146133651;53866349;300000 -24378;146123554;53876446;300000 -24379;146113458;53886542;300000 -24380;146103363;53896637;300000 -24381;146093269;53906731;300000 -24382;146083176;53916824;300000 -24383;146073084;53926916;300000 -24384;146062992;53937008;300000 -24385;146052901;53947099;300000 -24386;146042811;53957189;300000 -24387;146032722;53967278;300000 -24388;146022634;53977366;300000 -24389;146012547;53987453;300000 -24390;146002460;53997540;300000 -24391;145992374;54007626;300000 -24392;145982289;54017711;300000 -24393;145972205;54027795;300000 -24394;145962122;54037878;300000 -24395;145952039;54047961;300000 -24396;145941958;54058042;300000 -24397;145931877;54068123;300000 -24398;145921797;54078203;300000 -24399;145911718;54088282;300000 -24400;145901639;54098361;300000 -24401;145891562;54108438;300000 -24402;145881485;54118515;300000 -24403;145871409;54128591;300000 -24404;145861334;54138666;300000 -24405;145851260;54148740;300000 -24406;145841187;54158813;300000 -24407;145831114;54168886;300000 -24408;145821042;54178958;300000 -24409;145810971;54189029;300000 -24410;145800901;54199099;300000 -24411;145790832;54209168;300000 -24412;145780764;54219236;300000 -24413;145770696;54229304;300000 -24414;145760629;54239371;300000 -24415;145750563;54249437;300000 -24416;145740498;54259502;300000 -24417;145730434;54269566;300000 -24418;145720370;54279630;300000 -24419;145710308;54289692;300000 -24420;145700246;54299754;300000 -24421;145690185;54309815;300000 -24422;145680124;54319876;300000 -24423;145670065;54329935;300000 -24424;145660007;54339993;300000 -24425;145649949;54350051;300000 -24426;145639892;54360108;300000 -24427;145629836;54370164;300000 -24428;145619781;54380219;300000 -24429;145609726;54390274;300000 -24430;145599673;54400327;300000 -24431;145589620;54410380;300000 -24432;145579568;54420432;300000 -24433;145569517;54430483;300000 -24434;145559466;54440534;300000 -24435;145549417;54450583;300000 -24436;145539368;54460632;300000 -24437;145529320;54470680;300000 -24438;145519273;54480727;300000 -24439;145509227;54490773;300000 -24440;145499182;54500818;300000 -24441;145489137;54510863;300000 -24442;145479093;54520907;300000 -24443;145469050;54530950;300000 -24444;145459008;54540992;300000 -24445;145448967;54551033;300000 -24446;145438927;54561073;300000 -24447;145428887;54571113;300000 -24448;145418848;54581152;300000 -24449;145408810;54591190;300000 -24450;145398773;54601227;300000 -24451;145388737;54611263;300000 -24452;145378701;54621299;300000 -24453;145368666;54631334;300000 -24454;145358633;54641367;300000 -24455;145348599;54651401;300000 -24456;145338567;54661433;300000 -24457;145328536;54671464;300000 -24458;145318505;54681495;300000 -24459;145308475;54691525;300000 -24460;145298446;54701554;300000 -24461;145288418;54711582;300000 -24462;145278391;54721609;300000 -24463;145268364;54731636;300000 -24464;145258339;54741661;300000 -24465;145248314;54751686;300000 -24466;145238290;54761710;300000 -24467;145228267;54771733;300000 -24468;145218244;54781756;300000 -24469;145208223;54791777;300000 -24470;145198202;54801798;300000 -24471;145188182;54811818;300000 -24472;145178163;54821837;300000 -24473;145168144;54831856;300000 -24474;145158127;54841873;300000 -24475;145148110;54851890;300000 -24476;145138094;54861906;300000 -24477;145128079;54871921;300000 -24478;145118065;54881935;300000 -24479;145108052;54891948;300000 -24480;145098039;54901961;300000 -24481;145088027;54911973;300000 -24482;145078017;54921983;300000 -24483;145068006;54931994;300000 -24484;145057997;54942003;300000 -24485;145047989;54952011;300000 -24486;145037981;54962019;300000 -24487;145027974;54972026;300000 -24488;145017968;54982032;300000 -24489;145007963;54992037;300000 -24490;144997958;55002042;300000 -24491;144987955;55012045;300000 -24492;144977952;55022048;300000 -24493;144967950;55032050;300000 -24494;144957949;55042051;300000 -24495;144947949;55052051;300000 -24496;144937949;55062051;300000 -24497;144927950;55072050;300000 -24498;144917952;55082048;300000 -24499;144907955;55092045;300000 -24500;144897959;55102041;300000 -24501;144887964;55112036;300000 -24502;144877969;55122031;300000 -24503;144867975;55132025;300000 -24504;144857982;55142018;300000 -24505;144847990;55152010;300000 -24506;144837999;55162001;300000 -24507;144828008;55171992;300000 -24508;144818019;55181981;300000 -24509;144808030;55191970;300000 -24510;144798042;55201958;300000 -24511;144788054;55211946;300000 -24512;144778068;55221932;300000 -24513;144768082;55231918;300000 -24514;144758097;55241903;300000 -24515;144748113;55251887;300000 -24516;144738130;55261870;300000 -24517;144728148;55271852;300000 -24518;144718166;55281834;300000 -24519;144708185;55291815;300000 -24520;144698206;55301794;300000 -24521;144688226;55311774;300000 -24522;144678248;55321752;300000 -24523;144668271;55331729;300000 -24524;144658294;55341706;300000 -24525;144648318;55351682;300000 -24526;144638343;55361657;300000 -24527;144628369;55371631;300000 -24528;144618395;55381605;300000 -24529;144608423;55391577;300000 -24530;144598451;55401549;300000 -24531;144588480;55411520;300000 -24532;144578510;55421490;300000 -24533;144568540;55431460;300000 -24534;144558572;55441428;300000 -24535;144548604;55451396;300000 -24536;144538637;55461363;300000 -24537;144528671;55471329;300000 -24538;144518706;55481294;300000 -24539;144508741;55491259;300000 -24540;144498778;55501222;300000 -24541;144488815;55511185;300000 -24542;144478853;55521147;300000 -24543;144468891;55531109;300000 -24544;144458931;55541069;300000 -24545;144448971;55551029;300000 -24546;144439012;55560988;300000 -24547;144429054;55570946;300000 -24548;144419097;55580903;300000 -24549;144409141;55590859;300000 -24550;144399185;55600815;300000 -24551;144389231;55610769;300000 -24552;144379277;55620723;300000 -24553;144369324;55630676;300000 -24554;144359371;55640629;300000 -24555;144349420;55650580;300000 -24556;144339469;55660531;300000 -24557;144329519;55670481;300000 -24558;144319570;55680430;300000 -24559;144309622;55690378;300000 -24560;144299674;55700326;300000 -24561;144289728;55710272;300000 -24562;144279782;55720218;300000 -24563;144269837;55730163;300000 -24564;144259893;55740107;300000 -24565;144249949;55750051;300000 -24566;144240007;55759993;300000 -24567;144230065;55769935;300000 -24568;144220124;55779876;300000 -24569;144210184;55789816;300000 -24570;144200244;55799756;300000 -24571;144190306;55809694;300000 -24572;144180368;55819632;300000 -24573;144170431;55829569;300000 -24574;144160495;55839505;300000 -24575;144150560;55849440;300000 -24576;144140625;55859375;300000 -24577;144130691;55869309;300000 -24578;144120758;55879242;300000 -24579;144110826;55889174;300000 -24580;144100895;55899105;300000 -24581;144090965;55909035;300000 -24582;144081035;55918965;300000 -24583;144071106;55928894;300000 -24584;144061178;55938822;300000 -24585;144051251;55948749;300000 -24586;144041324;55958676;300000 -24587;144031399;55968601;300000 -24588;144021474;55978526;300000 -24589;144011550;55988450;300000 -24590;144001627;55998373;300000 -24591;143991704;56008296;300000 -24592;143981783;56018217;300000 -24593;143971862;56028138;300000 -24594;143961942;56038058;300000 -24595;143952023;56047977;300000 -24596;143942104;56057896;300000 -24597;143932187;56067813;300000 -24598;143922270;56077730;300000 -24599;143912354;56087646;300000 -24600;143902439;56097561;300000 -24601;143892525;56107475;300000 -24602;143882611;56117389;300000 -24603;143872698;56127302;300000 -24604;143862787;56137213;300000 -24605;143852875;56147125;300000 -24606;143842965;56157035;300000 -24607;143833056;56166944;300000 -24608;143823147;56176853;300000 -24609;143813239;56186761;300000 -24610;143803332;56196668;300000 -24611;143793426;56206574;300000 -24612;143783520;56216480;300000 -24613;143773616;56226384;300000 -24614;143763712;56236288;300000 -24615;143753809;56246191;300000 -24616;143743906;56256094;300000 -24617;143734005;56265995;300000 -24618;143724104;56275896;300000 -24619;143714204;56285796;300000 -24620;143704305;56295695;300000 -24621;143694407;56305593;300000 -24622;143684510;56315490;300000 -24623;143674613;56325387;300000 -24624;143664717;56335283;300000 -24625;143654822;56345178;300000 -24626;143644928;56355072;300000 -24627;143635035;56364965;300000 -24628;143625142;56374858;300000 -24629;143615250;56384750;300000 -24630;143605359;56394641;300000 -24631;143595469;56404531;300000 -24632;143585580;56414420;300000 -24633;143575691;56424309;300000 -24634;143565803;56434197;300000 -24635;143555916;56444084;300000 -24636;143546030;56453970;300000 -24637;143536145;56463855;300000 -24638;143526260;56473740;300000 -24639;143516376;56483624;300000 -24640;143506494;56493506;300000 -24641;143496611;56503389;300000 -24642;143486730;56513270;300000 -24643;143476849;56523151;300000 -24644;143466970;56533030;300000 -24645;143457091;56542909;300000 -24646;143447213;56552787;300000 -24647;143437335;56562665;300000 -24648;143427459;56572541;300000 -24649;143417583;56582417;300000 -24650;143407708;56592292;300000 -24651;143397834;56602166;300000 -24652;143387960;56612040;300000 -24653;143378088;56621912;300000 -24654;143368216;56631784;300000 -24655;143358345;56641655;300000 -24656;143348475;56651525;300000 -24657;143338606;56661394;300000 -24658;143328737;56671263;300000 -24659;143318869;56681131;300000 -24660;143309002;56690998;300000 -24661;143299136;56700864;300000 -24662;143289271;56710729;300000 -24663;143279406;56720594;300000 -24664;143269543;56730457;300000 -24665;143259680;56740320;300000 -24666;143249818;56750182;300000 -24667;143239956;56760044;300000 -24668;143230096;56769904;300000 -24669;143220236;56779764;300000 -24670;143210377;56789623;300000 -24671;143200519;56799481;300000 -24672;143190661;56809339;300000 -24673;143180805;56819195;300000 -24674;143170949;56829051;300000 -24675;143161094;56838906;300000 -24676;143151240;56848760;300000 -24677;143141387;56858613;300000 -24678;143131534;56868466;300000 -24679;143121682;56878318;300000 -24680;143111831;56888169;300000 -24681;143101981;56898019;300000 -24682;143092132;56907868;300000 -24683;143082283;56917717;300000 -24684;143072436;56927564;300000 -24685;143062589;56937411;300000 -24686;143052742;56947258;300000 -24687;143042897;56957103;300000 -24688;143033052;56966948;300000 -24689;143023209;56976791;300000 -24690;143013366;56986634;300000 -24691;143003524;56996476;300000 -24692;142993682;57006318;300000 -24693;142983842;57016158;300000 -24694;142974002;57025998;300000 -24695;142964163;57035837;300000 -24696;142954325;57045675;300000 -24697;142944487;57055513;300000 -24698;142934651;57065349;300000 -24699;142924815;57075185;300000 -24700;142914980;57085020;300000 -24701;142905146;57094854;300000 -24702;142895312;57104688;300000 -24703;142885479;57114521;300000 -24704;142875648;57124352;300000 -24705;142865817;57134183;300000 -24706;142855986;57144014;300000 -24707;142846157;57153843;300000 -24708;142836328;57163672;300000 -24709;142826500;57173500;300000 -24710;142816673;57183327;300000 -24711;142806847;57193153;300000 -24712;142797022;57202978;300000 -24713;142787197;57212803;300000 -24714;142777373;57222627;300000 -24715;142767550;57232450;300000 -24716;142757728;57242272;300000 -24717;142747906;57252094;300000 -24718;142738086;57261914;300000 -24719;142728266;57271734;300000 -24720;142718447;57281553;300000 -24721;142708628;57291372;300000 -24722;142698811;57301189;300000 -24723;142688994;57311006;300000 -24724;142679178;57320822;300000 -24725;142669363;57330637;300000 -24726;142659549;57340451;300000 -24727;142649735;57350265;300000 -24728;142639922;57360078;300000 -24729;142630110;57369890;300000 -24730;142620299;57379701;300000 -24731;142610489;57389511;300000 -24732;142600679;57399321;300000 -24733;142590870;57409130;300000 -24734;142581063;57418937;300000 -24735;142571255;57428745;300000 -24736;142561449;57438551;300000 -24737;142551643;57448357;300000 -24738;142541838;57458162;300000 -24739;142532034;57467966;300000 -24740;142522231;57477769;300000 -24741;142512429;57487571;300000 -24742;142502627;57497373;300000 -24743;142492826;57507174;300000 -24744;142483026;57516974;300000 -24745;142473227;57526773;300000 -24746;142463428;57536572;300000 -24747;142453631;57546369;300000 -24748;142443834;57556166;300000 -24749;142434038;57565962;300000 -24750;142424242;57575758;300000 -24751;142414448;57585552;300000 -24752;142404654;57595346;300000 -24753;142394861;57605139;300000 -24754;142385069;57614931;300000 -24755;142375278;57624722;300000 -24756;142365487;57634513;300000 -24757;142355697;57644303;300000 -24758;142345908;57654092;300000 -24759;142336120;57663880;300000 -24760;142326333;57673667;300000 -24761;142316546;57683454;300000 -24762;142306760;57693240;300000 -24763;142296975;57703025;300000 -24764;142287191;57712809;300000 -24765;142277408;57722592;300000 -24766;142267625;57732375;300000 -24767;142257843;57742157;300000 -24768;142248062;57751938;300000 -24769;142238282;57761718;300000 -24770;142228502;57771498;300000 -24771;142218724;57781276;300000 -24772;142208946;57791054;300000 -24773;142199168;57800832;300000 -24774;142189392;57810608;300000 -24775;142179617;57820383;300000 -24776;142169842;57830158;300000 -24777;142160068;57839932;300000 -24778;142150295;57849705;300000 -24779;142140522;57859478;300000 -24780;142130751;57869249;300000 -24781;142120980;57879020;300000 -24782;142111210;57888790;300000 -24783;142101441;57898559;300000 -24784;142091672;57908328;300000 -24785;142081904;57918096;300000 -24786;142072137;57927863;300000 -24787;142062371;57937629;300000 -24788;142052606;57947394;300000 -24789;142042842;57957158;300000 -24790;142033078;57966922;300000 -24791;142023315;57976685;300000 -24792;142013553;57986447;300000 -24793;142003791;57996209;300000 -24794;141994031;58005969;300000 -24795;141984271;58015729;300000 -24796;141974512;58025488;300000 -24797;141964754;58035246;300000 -24798;141954996;58045004;300000 -24799;141945240;58054760;300000 -24800;141935484;58064516;300000 -24801;141925729;58074271;300000 -24802;141915975;58084025;300000 -24803;141906221;58093779;300000 -24804;141896468;58103532;300000 -24805;141886716;58113284;300000 -24806;141876965;58123035;300000 -24807;141867215;58132785;300000 -24808;141857465;58142535;300000 -24809;141847717;58152283;300000 -24810;141837969;58162031;300000 -24811;141828221;58171779;300000 -24812;141818475;58181525;300000 -24813;141808729;58191271;300000 -24814;141798984;58201016;300000 -24815;141789240;58210760;300000 -24816;141779497;58220503;300000 -24817;141769755;58230245;300000 -24818;141760013;58239987;300000 -24819;141750272;58249728;300000 -24820;141740532;58259468;300000 -24821;141730792;58269208;300000 -24822;141721054;58278946;300000 -24823;141711316;58288684;300000 -24824;141701579;58298421;300000 -24825;141691843;58308157;300000 -24826;141682107;58317893;300000 -24827;141672373;58327627;300000 -24828;141662639;58337361;300000 -24829;141652906;58347094;300000 -24830;141643174;58356826;300000 -24831;141633442;58366558;300000 -24832;141623711;58376289;300000 -24833;141613981;58386019;300000 -24834;141604252;58395748;300000 -24835;141594524;58405476;300000 -24836;141584796;58415204;300000 -24837;141575069;58424931;300000 -24838;141565343;58434657;300000 -24839;141555618;58444382;300000 -24840;141545894;58454106;300000 -24841;141536170;58463830;300000 -24842;141526447;58473553;300000 -24843;141516725;58483275;300000 -24844;141507004;58492996;300000 -24845;141497283;58502717;300000 -24846;141487563;58512437;300000 -24847;141477844;58522156;300000 -24848;141468126;58531874;300000 -24849;141458409;58541591;300000 -24850;141448692;58551308;300000 -24851;141438976;58561024;300000 -24852;141429261;58570739;300000 -24853;141419547;58580453;300000 -24854;141409833;58590167;300000 -24855;141400121;58599879;300000 -24856;141390409;58609591;300000 -24857;141380698;58619302;300000 -24858;141370987;58629013;300000 -24859;141361278;58638722;300000 -24860;141351569;58648431;300000 -24861;141341861;58658139;300000 -24862;141332153;58667847;300000 -24863;141322447;58677553;300000 -24864;141312741;58687259;300000 -24865;141303036;58696964;300000 -24866;141293332;58706668;300000 -24867;141283629;58716371;300000 -24868;141273926;58726074;300000 -24869;141264225;58735775;300000 -24870;141254524;58745476;300000 -24871;141244823;58755177;300000 -24872;141235124;58764876;300000 -24873;141225425;58774575;300000 -24874;141215727;58784273;300000 -24875;141206030;58793970;300000 -24876;141196334;58803666;300000 -24877;141186638;58813362;300000 -24878;141176943;58823057;300000 -24879;141167249;58832751;300000 -24880;141157556;58842444;300000 -24881;141147864;58852136;300000 -24882;141138172;58861828;300000 -24883;141128481;58871519;300000 -24884;141118791;58881209;300000 -24885;141109102;58890898;300000 -24886;141099413;58900587;300000 -24887;141089726;58910274;300000 -24888;141080039;58919961;300000 -24889;141070352;58929648;300000 -24890;141060667;58939333;300000 -24891;141050982;58949018;300000 -24892;141041298;58958702;300000 -24893;141031615;58968385;300000 -24894;141021933;58978067;300000 -24895;141012251;58987749;300000 -24896;141002571;58997429;300000 -24897;140992891;59007109;300000 -24898;140983212;59016788;300000 -24899;140973533;59026467;300000 -24900;140963855;59036145;300000 -24901;140954179;59045821;300000 -24902;140944502;59055498;300000 -24903;140934827;59065173;300000 -24904;140925153;59074847;300000 -24905;140915479;59084521;300000 -24906;140905806;59094194;300000 -24907;140896134;59103866;300000 -24908;140886462;59113538;300000 -24909;140876792;59123208;300000 -24910;140867122;59132878;300000 -24911;140857453;59142547;300000 -24912;140847784;59152216;300000 -24913;140838117;59161883;300000 -24914;140828450;59171550;300000 -24915;140818784;59181216;300000 -24916;140809119;59190881;300000 -24917;140799454;59200546;300000 -24918;140789791;59210209;300000 -24919;140780128;59219872;300000 -24920;140770465;59229535;300000 -24921;140760804;59239196;300000 -24922;140751144;59248856;300000 -24923;140741484;59258516;300000 -24924;140731825;59268175;300000 -24925;140722166;59277834;300000 -24926;140712509;59287491;300000 -24927;140702852;59297148;300000 -24928;140693196;59306804;300000 -24929;140683541;59316459;300000 -24930;140673887;59326113;300000 -24931;140664233;59335767;300000 -24932;140654580;59345420;300000 -24933;140644928;59355072;300000 -24934;140635277;59364723;300000 -24935;140625627;59374373;300000 -24936;140615977;59384023;300000 -24937;140606328;59393672;300000 -24938;140596680;59403320;300000 -24939;140587032;59412968;300000 -24940;140577386;59422614;300000 -24941;140567740;59432260;300000 -24942;140558095;59441905;300000 -24943;140548450;59451550;300000 -24944;140538807;59461193;300000 -24945;140529164;59470836;300000 -24946;140519522;59480478;300000 -24947;140509881;59490119;300000 -24948;140500241;59499759;300000 -24949;140490601;59509399;300000 -24950;140480962;59519038;300000 -24951;140471324;59528676;300000 -24952;140461686;59538314;300000 -24953;140452050;59547950;300000 -24954;140442414;59557586;300000 -24955;140432779;59567221;300000 -24956;140423145;59576855;300000 -24957;140413511;59586489;300000 -24958;140403879;59596121;300000 -24959;140394247;59605753;300000 -24960;140384615;59615385;300000 -24961;140374985;59625015;300000 -24962;140365355;59634645;300000 -24963;140355726;59644274;300000 -24964;140346098;59653902;300000 -24965;140336471;59663529;300000 -24966;140326845;59673155;300000 -24967;140317219;59682781;300000 -24968;140307594;59692406;300000 -24969;140297969;59702031;300000 -24970;140288346;59711654;300000 -24971;140278723;59721277;300000 -24972;140269101;59730899;300000 -24973;140259480;59740520;300000 -24974;140249860;59750140;300000 -24975;140240240;59759760;300000 -24976;140230621;59769379;300000 -24977;140221003;59778997;300000 -24978;140211386;59788614;300000 -24979;140201769;59798231;300000 -24980;140192154;59807846;300000 -24981;140182539;59817461;300000 -24982;140172925;59827075;300000 -24983;140163311;59836689;300000 -24984;140153698;59846302;300000 -24985;140144086;59855914;300000 -24986;140134475;59865525;300000 -24987;140124865;59875135;300000 -24988;140115255;59884745;300000 -24989;140105646;59894354;300000 -24990;140096038;59903962;300000 -24991;140086431;59913569;300000 -24992;140076825;59923175;300000 -24993;140067219;59932781;300000 -24994;140057614;59942386;300000 -24995;140048010;59951990;300000 -24996;140038406;59961594;300000 -24997;140028803;59971197;300000 -24998;140019202;59980798;300000 -24999;140009600;59990400;300000 -25000;140000000;60000000;300000 -25001;139990400;60009600;300000 -25002;139980802;60019198;300000 -25003;139971203;60028797;300000 -25004;139961606;60038394;300000 -25005;139952010;60047990;300000 -25006;139942414;60057586;300000 -25007;139932819;60067181;300000 -25008;139923225;60076775;300000 -25009;139913631;60086369;300000 -25010;139904038;60095962;300000 -25011;139894446;60105554;300000 -25012;139884855;60115145;300000 -25013;139875265;60124735;300000 -25014;139865675;60134325;300000 -25015;139856086;60143914;300000 -25016;139846498;60153502;300000 -25017;139836911;60163089;300000 -25018;139827324;60172676;300000 -25019;139817739;60182261;300000 -25020;139808153;60191847;300000 -25021;139798569;60201431;300000 -25022;139788986;60211014;300000 -25023;139779403;60220597;300000 -25024;139769821;60230179;300000 -25025;139760240;60239760;300000 -25026;139750659;60249341;300000 -25027;139741080;60258920;300000 -25028;139731501;60268499;300000 -25029;139721923;60278077;300000 -25030;139712345;60287655;300000 -25031;139702769;60297231;300000 -25032;139693193;60306807;300000 -25033;139683618;60316382;300000 -25034;139674043;60325957;300000 -25035;139664470;60335530;300000 -25036;139654897;60345103;300000 -25037;139645325;60354675;300000 -25038;139635754;60364246;300000 -25039;139626183;60373817;300000 -25040;139616613;60383387;300000 -25041;139607044;60392956;300000 -25042;139597476;60402524;300000 -25043;139587909;60412091;300000 -25044;139578342;60421658;300000 -25045;139568776;60431224;300000 -25046;139559211;60440789;300000 -25047;139549647;60450353;300000 -25048;139540083;60459917;300000 -25049;139530520;60469480;300000 -25050;139520958;60479042;300000 -25051;139511397;60488603;300000 -25052;139501836;60498164;300000 -25053;139492276;60507724;300000 -25054;139482717;60517283;300000 -25055;139473159;60526841;300000 -25056;139463602;60536398;300000 -25057;139454045;60545955;300000 -25058;139444489;60555511;300000 -25059;139434934;60565066;300000 -25060;139425379;60574621;300000 -25061;139415825;60584175;300000 -25062;139406272;60593728;300000 -25063;139396720;60603280;300000 -25064;139387169;60612831;300000 -25065;139377618;60622382;300000 -25066;139368068;60631932;300000 -25067;139358519;60641481;300000 -25068;139348971;60651029;300000 -25069;139339423;60660577;300000 -25070;139329876;60670124;300000 -25071;139320330;60679670;300000 -25072;139310785;60689215;300000 -25073;139301240;60698760;300000 -25074;139291697;60708303;300000 -25075;139282154;60717846;300000 -25076;139272611;60727389;300000 -25077;139263070;60736930;300000 -25078;139253529;60746471;300000 -25079;139243989;60756011;300000 -25080;139234450;60765550;300000 -25081;139224911;60775089;300000 -25082;139215374;60784626;300000 -25083;139205837;60794163;300000 -25084;139196300;60803700;300000 -25085;139186765;60813235;300000 -25086;139177230;60822770;300000 -25087;139167696;60832304;300000 -25088;139158163;60841837;300000 -25089;139148631;60851369;300000 -25090;139139099;60860901;300000 -25091;139129568;60870432;300000 -25092;139120038;60879962;300000 -25093;139110509;60889491;300000 -25094;139100980;60899020;300000 -25095;139091452;60908548;300000 -25096;139081925;60918075;300000 -25097;139072399;60927601;300000 -25098;139062874;60937126;300000 -25099;139053349;60946651;300000 -25100;139043825;60956175;300000 -25101;139034301;60965699;300000 -25102;139024779;60975221;300000 -25103;139015257;60984743;300000 -25104;139005736;60994264;300000 -25105;138996216;61003784;300000 -25106;138986696;61013304;300000 -25107;138977178;61022822;300000 -25108;138967660;61032340;300000 -25109;138958142;61041858;300000 -25110;138948626;61051374;300000 -25111;138939110;61060890;300000 -25112;138929595;61070405;300000 -25113;138920081;61079919;300000 -25114;138910568;61089432;300000 -25115;138901055;61098945;300000 -25116;138891543;61108457;300000 -25117;138882032;61117968;300000 -25118;138872522;61127478;300000 -25119;138863012;61136988;300000 -25120;138853503;61146497;300000 -25121;138843995;61156005;300000 -25122;138834488;61165512;300000 -25123;138824981;61175019;300000 -25124;138815475;61184525;300000 -25125;138805970;61194030;300000 -25126;138796466;61203534;300000 -25127;138786962;61213038;300000 -25128;138777459;61222541;300000 -25129;138767957;61232043;300000 -25130;138758456;61241544;300000 -25131;138748955;61251045;300000 -25132;138739456;61260544;300000 -25133;138729957;61270043;300000 -25134;138720458;61279542;300000 -25135;138710961;61289039;300000 -25136;138701464;61298536;300000 -25137;138691968;61308032;300000 -25138;138682473;61317527;300000 -25139;138672978;61327022;300000 -25140;138663484;61336516;300000 -25141;138653991;61346009;300000 -25142;138644499;61355501;300000 -25143;138635008;61364992;300000 -25144;138625517;61374483;300000 -25145;138616027;61383973;300000 -25146;138606538;61393462;300000 -25147;138597049;61402951;300000 -25148;138587562;61412438;300000 -25149;138578075;61421925;300000 -25150;138568588;61431412;300000 -25151;138559103;61440897;300000 -25152;138549618;61450382;300000 -25153;138540134;61459866;300000 -25154;138530651;61469349;300000 -25155;138521169;61478831;300000 -25156;138511687;61488313;300000 -25157;138502206;61497794;300000 -25158;138492726;61507274;300000 -25159;138483247;61516753;300000 -25160;138473768;61526232;300000 -25161;138464290;61535710;300000 -25162;138454813;61545187;300000 -25163;138445336;61554664;300000 -25164;138435861;61564139;300000 -25165;138426386;61573614;300000 -25166;138416912;61583088;300000 -25167;138407438;61592562;300000 -25168;138397966;61602034;300000 -25169;138388494;61611506;300000 -25170;138379023;61620977;300000 -25171;138369552;61630448;300000 -25172;138360083;61639917;300000 -25173;138350614;61649386;300000 -25174;138341146;61658854;300000 -25175;138331678;61668322;300000 -25176;138322212;61677788;300000 -25177;138312746;61687254;300000 -25178;138303281;61696719;300000 -25179;138293816;61706184;300000 -25180;138284353;61715647;300000 -25181;138274890;61725110;300000 -25182;138265428;61734572;300000 -25183;138255966;61744034;300000 -25184;138246506;61753494;300000 -25185;138237046;61762954;300000 -25186;138227587;61772413;300000 -25187;138218128;61781872;300000 -25188;138208671;61791329;300000 -25189;138199214;61800786;300000 -25190;138189758;61810242;300000 -25191;138180302;61819698;300000 -25192;138170848;61829152;300000 -25193;138161394;61838606;300000 -25194;138151941;61848059;300000 -25195;138142489;61857511;300000 -25196;138133037;61866963;300000 -25197;138123586;61876414;300000 -25198;138114136;61885864;300000 -25199;138104687;61895313;300000 -25200;138095238;61904762;300000 -25201;138085790;61914210;300000 -25202;138076343;61923657;300000 -25203;138066897;61933103;300000 -25204;138057451;61942549;300000 -25205;138048006;61951994;300000 -25206;138038562;61961438;300000 -25207;138029119;61970881;300000 -25208;138019676;61980324;300000 -25209;138010234;61989766;300000 -25210;138000793;61999207;300000 -25211;137991353;62008647;300000 -25212;137981913;62018087;300000 -25213;137972475;62027525;300000 -25214;137963036;62036964;300000 -25215;137953599;62046401;300000 -25216;137944162;62055838;300000 -25217;137934727;62065273;300000 -25218;137925291;62074709;300000 -25219;137915857;62084143;300000 -25220;137906423;62093577;300000 -25221;137896991;62103009;300000 -25222;137887558;62112442;300000 -25223;137878127;62121873;300000 -25224;137868696;62131304;300000 -25225;137859267;62140733;300000 -25226;137849837;62150163;300000 -25227;137840409;62159591;300000 -25228;137830981;62169019;300000 -25229;137821555;62178445;300000 -25230;137812128;62187872;300000 -25231;137802703;62197297;300000 -25232;137793278;62206722;300000 -25233;137783854;62216146;300000 -25234;137774431;62225569;300000 -25235;137765009;62234991;300000 -25236;137755587;62244413;300000 -25237;137746166;62253834;300000 -25238;137736746;62263254;300000 -25239;137727327;62272673;300000 -25240;137717908;62282092;300000 -25241;137708490;62291510;300000 -25242;137699073;62300927;300000 -25243;137689657;62310343;300000 -25244;137680241;62319759;300000 -25245;137670826;62329174;300000 -25246;137661412;62338588;300000 -25247;137651998;62348002;300000 -25248;137642586;62357414;300000 -25249;137633174;62366826;300000 -25250;137623762;62376238;300000 -25251;137614352;62385648;300000 -25252;137604942;62395058;300000 -25253;137595533;62404467;300000 -25254;137586125;62413875;300000 -25255;137576717;62423283;300000 -25256;137567311;62432689;300000 -25257;137557905;62442095;300000 -25258;137548499;62451501;300000 -25259;137539095;62460905;300000 -25260;137529691;62470309;300000 -25261;137520288;62479712;300000 -25262;137510886;62489114;300000 -25263;137501484;62498516;300000 -25264;137492084;62507916;300000 -25265;137482684;62517316;300000 -25266;137473284;62526716;300000 -25267;137463886;62536114;300000 -25268;137454488;62545512;300000 -25269;137445091;62554909;300000 -25270;137435694;62564306;300000 -25271;137426299;62573701;300000 -25272;137416904;62583096;300000 -25273;137407510;62592490;300000 -25274;137398117;62601883;300000 -25275;137388724;62611276;300000 -25276;137379332;62620668;300000 -25277;137369941;62630059;300000 -25278;137360551;62639449;300000 -25279;137351161;62648839;300000 -25280;137341772;62658228;300000 -25281;137332384;62667616;300000 -25282;137322997;62677003;300000 -25283;137313610;62686390;300000 -25284;137304224;62695776;300000 -25285;137294839;62705161;300000 -25286;137285454;62714546;300000 -25287;137276071;62723929;300000 -25288;137266688;62733312;300000 -25289;137257306;62742694;300000 -25290;137247924;62752076;300000 -25291;137238543;62761457;300000 -25292;137229163;62770837;300000 -25293;137219784;62780216;300000 -25294;137210406;62789594;300000 -25295;137201028;62798972;300000 -25296;137191651;62808349;300000 -25297;137182275;62817725;300000 -25298;137172899;62827101;300000 -25299;137163524;62836476;300000 -25300;137154150;62845850;300000 -25301;137144777;62855223;300000 -25302;137135404;62864596;300000 -25303;137126032;62873968;300000 -25304;137116661;62883339;300000 -25305;137107291;62892709;300000 -25306;137097921;62902079;300000 -25307;137088553;62911447;300000 -25308;137079184;62920816;300000 -25309;137069817;62930183;300000 -25310;137060450;62939550;300000 -25311;137051085;62948915;300000 -25312;137041719;62958281;300000 -25313;137032355;62967645;300000 -25314;137022991;62977009;300000 -25315;137013628;62986372;300000 -25316;137004266;62995734;300000 -25317;136994905;63005095;300000 -25318;136985544;63014456;300000 -25319;136976184;63023816;300000 -25320;136966825;63033175;300000 -25321;136957466;63042534;300000 -25322;136948108;63051892;300000 -25323;136938751;63061249;300000 -25324;136929395;63070605;300000 -25325;136920039;63079961;300000 -25326;136910685;63089315;300000 -25327;136901331;63098669;300000 -25328;136891977;63108023;300000 -25329;136882625;63117375;300000 -25330;136873273;63126727;300000 -25331;136863922;63136078;300000 -25332;136854571;63145429;300000 -25333;136845222;63154778;300000 -25334;136835873;63164127;300000 -25335;136826525;63173475;300000 -25336;136817177;63182823;300000 -25337;136807830;63192170;300000 -25338;136798484;63201516;300000 -25339;136789139;63210861;300000 -25340;136779795;63220205;300000 -25341;136770451;63229549;300000 -25342;136761108;63238892;300000 -25343;136751766;63248234;300000 -25344;136742424;63257576;300000 -25345;136733083;63266917;300000 -25346;136723743;63276257;300000 -25347;136714404;63285596;300000 -25348;136705065;63294935;300000 -25349;136695728;63304272;300000 -25350;136686391;63313609;300000 -25351;136677054;63322946;300000 -25352;136667719;63332281;300000 -25353;136658384;63341616;300000 -25354;136649049;63350951;300000 -25355;136639716;63360284;300000 -25356;136630383;63369617;300000 -25357;136621051;63378949;300000 -25358;136611720;63388280;300000 -25359;136602390;63397610;300000 -25360;136593060;63406940;300000 -25361;136583731;63416269;300000 -25362;136574403;63425597;300000 -25363;136565075;63434925;300000 -25364;136555748;63444252;300000 -25365;136546422;63453578;300000 -25366;136537097;63462903;300000 -25367;136527772;63472228;300000 -25368;136518448;63481552;300000 -25369;136509125;63490875;300000 -25370;136499803;63500197;300000 -25371;136490481;63509519;300000 -25372;136481160;63518840;300000 -25373;136471840;63528160;300000 -25374;136462521;63537479;300000 -25375;136453202;63546798;300000 -25376;136443884;63556116;300000 -25377;136434567;63565433;300000 -25378;136425250;63574750;300000 -25379;136415934;63584066;300000 -25380;136406619;63593381;300000 -25381;136397305;63602695;300000 -25382;136387991;63612009;300000 -25383;136378679;63621321;300000 -25384;136369367;63630633;300000 -25385;136360055;63639945;300000 -25386;136350745;63649255;300000 -25387;136341435;63658565;300000 -25388;136332125;63667875;300000 -25389;136322817;63677183;300000 -25390;136313509;63686491;300000 -25391;136304202;63695798;300000 -25392;136294896;63705104;300000 -25393;136285591;63714409;300000 -25394;136276286;63723714;300000 -25395;136266982;63733018;300000 -25396;136257678;63742322;300000 -25397;136248376;63751624;300000 -25398;136239074;63760926;300000 -25399;136229773;63770227;300000 -25400;136220472;63779528;300000 -25401;136211173;63788827;300000 -25402;136201874;63798126;300000 -25403;136192576;63807424;300000 -25404;136183278;63816722;300000 -25405;136173981;63826019;300000 -25406;136164686;63835314;300000 -25407;136155390;63844610;300000 -25408;136146096;63853904;300000 -25409;136136802;63863198;300000 -25410;136127509;63872491;300000 -25411;136118217;63881783;300000 -25412;136108925;63891075;300000 -25413;136099634;63900366;300000 -25414;136090344;63909656;300000 -25415;136081054;63918946;300000 -25416;136071766;63928234;300000 -25417;136062478;63937522;300000 -25418;136053191;63946809;300000 -25419;136043904;63956096;300000 -25420;136034618;63965382;300000 -25421;136025333;63974667;300000 -25422;136016049;63983951;300000 -25423;136006766;63993234;300000 -25424;135997483;64002517;300000 -25425;135988201;64011799;300000 -25426;135978919;64021081;300000 -25427;135969639;64030361;300000 -25428;135960359;64039641;300000 -25429;135951079;64048921;300000 -25430;135941801;64058199;300000 -25431;135932523;64067477;300000 -25432;135923246;64076754;300000 -25433;135913970;64086030;300000 -25434;135904695;64095305;300000 -25435;135895420;64104580;300000 -25436;135886146;64113854;300000 -25437;135876872;64123128;300000 -25438;135867600;64132400;300000 -25439;135858328;64141672;300000 -25440;135849057;64150943;300000 -25441;135839786;64160214;300000 -25442;135830516;64169484;300000 -25443;135821247;64178753;300000 -25444;135811979;64188021;300000 -25445;135802712;64197288;300000 -25446;135793445;64206555;300000 -25447;135784179;64215821;300000 -25448;135774914;64225086;300000 -25449;135765649;64234351;300000 -25450;135756385;64243615;300000 -25451;135747122;64252878;300000 -25452;135737860;64262140;300000 -25453;135728598;64271402;300000 -25454;135719337;64280663;300000 -25455;135710077;64289923;300000 -25456;135700817;64299183;300000 -25457;135691558;64308442;300000 -25458;135682300;64317700;300000 -25459;135673043;64326957;300000 -25460;135663786;64336214;300000 -25461;135654530;64345470;300000 -25462;135645275;64354725;300000 -25463;135636021;64363979;300000 -25464;135626767;64373233;300000 -25465;135617514;64382486;300000 -25466;135608262;64391738;300000 -25467;135599010;64400990;300000 -25468;135589760;64410240;300000 -25469;135580510;64419490;300000 -25470;135571260;64428740;300000 -25471;135562012;64437988;300000 -25472;135552764;64447236;300000 -25473;135543517;64456483;300000 -25474;135534270;64465730;300000 -25475;135525025;64474975;300000 -25476;135515780;64484220;300000 -25477;135506535;64493465;300000 -25478;135497292;64502708;300000 -25479;135488049;64511951;300000 -25480;135478807;64521193;300000 -25481;135469566;64530434;300000 -25482;135460325;64539675;300000 -25483;135451085;64548915;300000 -25484;135441846;64558154;300000 -25485;135432607;64567393;300000 -25486;135423370;64576630;300000 -25487;135414133;64585867;300000 -25488;135404896;64595104;300000 -25489;135395661;64604339;300000 -25490;135386426;64613574;300000 -25491;135377192;64622808;300000 -25492;135367959;64632041;300000 -25493;135358726;64641274;300000 -25494;135349494;64650506;300000 -25495;135340263;64659737;300000 -25496;135331032;64668968;300000 -25497;135321803;64678197;300000 -25498;135312574;64687426;300000 -25499;135303345;64696655;300000 -25500;135294118;64705882;300000 -25501;135284891;64715109;300000 -25502;135275665;64724335;300000 -25503;135266439;64733561;300000 -25504;135257215;64742785;300000 -25505;135247991;64752009;300000 -25506;135238767;64761233;300000 -25507;135229545;64770455;300000 -25508;135220323;64779677;300000 -25509;135211102;64788898;300000 -25510;135201882;64798118;300000 -25511;135192662;64807338;300000 -25512;135183443;64816557;300000 -25513;135174225;64825775;300000 -25514;135165007;64834993;300000 -25515;135155791;64844209;300000 -25516;135146575;64853425;300000 -25517;135137359;64862641;300000 -25518;135128145;64871855;300000 -25519;135118931;64881069;300000 -25520;135109718;64890282;300000 -25521;135100505;64899495;300000 -25522;135091294;64908706;300000 -25523;135082083;64917917;300000 -25524;135072873;64927127;300000 -25525;135063663;64936337;300000 -25526;135054454;64945546;300000 -25527;135045246;64954754;300000 -25528;135036039;64963961;300000 -25529;135026832;64973168;300000 -25530;135017626;64982374;300000 -25531;135008421;64991579;300000 -25532;134999217;65000783;300000 -25533;134990013;65009987;300000 -25534;134980810;65019190;300000 -25535;134971608;65028392;300000 -25536;134962406;65037594;300000 -25537;134953205;65046795;300000 -25538;134944005;65055995;300000 -25539;134934806;65065194;300000 -25540;134925607;65074393;300000 -25541;134916409;65083591;300000 -25542;134907212;65092788;300000 -25543;134898015;65101985;300000 -25544;134888819;65111181;300000 -25545;134879624;65120376;300000 -25546;134870430;65129570;300000 -25547;134861236;65138764;300000 -25548;134852043;65147957;300000 -25549;134842851;65157149;300000 -25550;134833659;65166341;300000 -25551;134824469;65175531;300000 -25552;134815279;65184721;300000 -25553;134806089;65193911;300000 -25554;134796901;65203099;300000 -25555;134787713;65212287;300000 -25556;134778526;65221474;300000 -25557;134769339;65230661;300000 -25558;134760153;65239847;300000 -25559;134750968;65249032;300000 -25560;134741784;65258216;300000 -25561;134732600;65267400;300000 -25562;134723418;65276582;300000 -25563;134714235;65285765;300000 -25564;134705054;65294946;300000 -25565;134695873;65304127;300000 -25566;134686693;65313307;300000 -25567;134677514;65322486;300000 -25568;134668335;65331665;300000 -25569;134659158;65340842;300000 -25570;134649980;65350020;300000 -25571;134640804;65359196;300000 -25572;134631628;65368372;300000 -25573;134622453;65377547;300000 -25574;134613279;65386721;300000 -25575;134604106;65395894;300000 -25576;134594933;65405067;300000 -25577;134585761;65414239;300000 -25578;134576589;65423411;300000 -25579;134567419;65432581;300000 -25580;134558249;65441751;300000 -25581;134549079;65450921;300000 -25582;134539911;65460089;300000 -25583;134530743;65469257;300000 -25584;134521576;65478424;300000 -25585;134512410;65487590;300000 -25586;134503244;65496756;300000 -25587;134494079;65505921;300000 -25588;134484915;65515085;300000 -25589;134475751;65524249;300000 -25590;134466589;65533411;300000 -25591;134457426;65542574;300000 -25592;134448265;65551735;300000 -25593;134439104;65560896;300000 -25594;134429945;65570055;300000 -25595;134420785;65579215;300000 -25596;134411627;65588373;300000 -25597;134402469;65597531;300000 -25598;134393312;65606688;300000 -25599;134384156;65615844;300000 -25600;134375000;65625000;300000 -25601;134365845;65634155;300000 -25602;134356691;65643309;300000 -25603;134347537;65652463;300000 -25604;134338385;65661615;300000 -25605;134329233;65670767;300000 -25606;134320081;65679919;300000 -25607;134310931;65689069;300000 -25608;134301781;65698219;300000 -25609;134292631;65707369;300000 -25610;134283483;65716517;300000 -25611;134274335;65725665;300000 -25612;134265188;65734812;300000 -25613;134256042;65743958;300000 -25614;134246896;65753104;300000 -25615;134237751;65762249;300000 -25616;134228607;65771393;300000 -25617;134219464;65780536;300000 -25618;134210321;65789679;300000 -25619;134201179;65798821;300000 -25620;134192037;65807963;300000 -25621;134182897;65817103;300000 -25622;134173757;65826243;300000 -25623;134164618;65835382;300000 -25624;134155479;65844521;300000 -25625;134146341;65853659;300000 -25626;134137204;65862796;300000 -25627;134128068;65871932;300000 -25628;134118932;65881068;300000 -25629;134109797;65890203;300000 -25630;134100663;65899337;300000 -25631;134091530;65908470;300000 -25632;134082397;65917603;300000 -25633;134073265;65926735;300000 -25634;134064134;65935866;300000 -25635;134055003;65944997;300000 -25636;134045873;65954127;300000 -25637;134036744;65963256;300000 -25638;134027615;65972385;300000 -25639;134018487;65981513;300000 -25640;134009360;65990640;300000 -25641;134000234;65999766;300000 -25642;133991108;66008892;300000 -25643;133981983;66018017;300000 -25644;133972859;66027141;300000 -25645;133963736;66036264;300000 -25646;133954613;66045387;300000 -25647;133945491;66054509;300000 -25648;133936369;66063631;300000 -25649;133927249;66072751;300000 -25650;133918129;66081871;300000 -25651;133909009;66090991;300000 -25652;133899891;66100109;300000 -25653;133890773;66109227;300000 -25654;133881656;66118344;300000 -25655;133872539;66127461;300000 -25656;133863424;66136576;300000 -25657;133854309;66145691;300000 -25658;133845194;66154806;300000 -25659;133836081;66163919;300000 -25660;133826968;66173032;300000 -25661;133817856;66182144;300000 -25662;133808744;66191256;300000 -25663;133799634;66200366;300000 -25664;133790524;66209476;300000 -25665;133781414;66218586;300000 -25666;133772306;66227694;300000 -25667;133763198;66236802;300000 -25668;133754091;66245909;300000 -25669;133744984;66255016;300000 -25670;133735878;66264122;300000 -25671;133726773;66273227;300000 -25672;133717669;66282331;300000 -25673;133708565;66291435;300000 -25674;133699462;66300538;300000 -25675;133690360;66309640;300000 -25676;133681259;66318741;300000 -25677;133672158;66327842;300000 -25678;133663058;66336942;300000 -25679;133653958;66346042;300000 -25680;133644860;66355140;300000 -25681;133635762;66364238;300000 -25682;133626665;66373335;300000 -25683;133617568;66382432;300000 -25684;133608472;66391528;300000 -25685;133599377;66400623;300000 -25686;133590283;66409717;300000 -25687;133581189;66418811;300000 -25688;133572096;66427904;300000 -25689;133563004;66436996;300000 -25690;133553912;66446088;300000 -25691;133544821;66455179;300000 -25692;133535731;66464269;300000 -25693;133526641;66473359;300000 -25694;133517553;66482447;300000 -25695;133508465;66491535;300000 -25696;133499377;66500623;300000 -25697;133490291;66509709;300000 -25698;133481205;66518795;300000 -25699;133472120;66527880;300000 -25700;133463035;66536965;300000 -25701;133453951;66546049;300000 -25702;133444868;66555132;300000 -25703;133435786;66564214;300000 -25704;133426704;66573296;300000 -25705;133417623;66582377;300000 -25706;133408543;66591457;300000 -25707;133399463;66600537;300000 -25708;133390384;66609616;300000 -25709;133381306;66618694;300000 -25710;133372229;66627771;300000 -25711;133363152;66636848;300000 -25712;133354076;66645924;300000 -25713;133345001;66654999;300000 -25714;133335926;66664074;300000 -25715;133326852;66673148;300000 -25716;133317779;66682221;300000 -25717;133308706;66691294;300000 -25718;133299634;66700366;300000 -25719;133290563;66709437;300000 -25720;133281493;66718507;300000 -25721;133272423;66727577;300000 -25722;133263354;66736646;300000 -25723;133254286;66745714;300000 -25724;133245218;66754782;300000 -25725;133236152;66763848;300000 -25726;133227085;66772915;300000 -25727;133218020;66781980;300000 -25728;133208955;66791045;300000 -25729;133199891;66800109;300000 -25730;133190828;66809172;300000 -25731;133181765;66818235;300000 -25732;133172703;66827297;300000 -25733;133163642;66836358;300000 -25734;133154581;66845419;300000 -25735;133145522;66854478;300000 -25736;133136463;66863537;300000 -25737;133127404;66872596;300000 -25738;133118346;66881654;300000 -25739;133109289;66890711;300000 -25740;133100233;66899767;300000 -25741;133091177;66908823;300000 -25742;133082123;66917877;300000 -25743;133073068;66926932;300000 -25744;133064015;66935985;300000 -25745;133054962;66945038;300000 -25746;133045910;66954090;300000 -25747;133036859;66963141;300000 -25748;133027808;66972192;300000 -25749;133018758;66981242;300000 -25750;133009709;66990291;300000 -25751;133000660;66999340;300000 -25752;132991612;67008388;300000 -25753;132982565;67017435;300000 -25754;132973519;67026481;300000 -25755;132964473;67035527;300000 -25756;132955428;67044572;300000 -25757;132946384;67053616;300000 -25758;132937340;67062660;300000 -25759;132928297;67071703;300000 -25760;132919255;67080745;300000 -25761;132910213;67089787;300000 -25762;132901172;67098828;300000 -25763;132892132;67107868;300000 -25764;132883093;67116907;300000 -25765;132874054;67125946;300000 -25766;132865016;67134984;300000 -25767;132855979;67144021;300000 -25768;132846942;67153058;300000 -25769;132837906;67162094;300000 -25770;132828871;67171129;300000 -25771;132819836;67180164;300000 -25772;132810802;67189198;300000 -25773;132801769;67198231;300000 -25774;132792737;67207263;300000 -25775;132783705;67216295;300000 -25776;132774674;67225326;300000 -25777;132765644;67234356;300000 -25778;132756614;67243386;300000 -25779;132747585;67252415;300000 -25780;132738557;67261443;300000 -25781;132729529;67270471;300000 -25782;132720503;67279497;300000 -25783;132711477;67288523;300000 -25784;132702451;67297549;300000 -25785;132693426;67306574;300000 -25786;132684402;67315598;300000 -25787;132675379;67324621;300000 -25788;132666356;67333644;300000 -25789;132657335;67342665;300000 -25790;132648313;67351687;300000 -25791;132639293;67360707;300000 -25792;132630273;67369727;300000 -25793;132621254;67378746;300000 -25794;132612235;67387765;300000 -25795;132603218;67396782;300000 -25796;132594201;67405799;300000 -25797;132585184;67414816;300000 -25798;132576169;67423831;300000 -25799;132567154;67432846;300000 -25800;132558140;67441860;300000 -25801;132549126;67450874;300000 -25802;132540113;67459887;300000 -25803;132531101;67468899;300000 -25804;132522090;67477910;300000 -25805;132513079;67486921;300000 -25806;132504069;67495931;300000 -25807;132495059;67504941;300000 -25808;132486051;67513949;300000 -25809;132477043;67522957;300000 -25810;132468036;67531964;300000 -25811;132459029;67540971;300000 -25812;132450023;67549977;300000 -25813;132441018;67558982;300000 -25814;132432014;67567986;300000 -25815;132423010;67576990;300000 -25816;132414007;67585993;300000 -25817;132405004;67594996;300000 -25818;132396003;67603997;300000 -25819;132387002;67612998;300000 -25820;132378002;67621998;300000 -25821;132369002;67630998;300000 -25822;132360003;67639997;300000 -25823;132351005;67648995;300000 -25824;132342007;67657993;300000 -25825;132333011;67666989;300000 -25826;132324015;67675985;300000 -25827;132315019;67684981;300000 -25828;132306024;67693976;300000 -25829;132297030;67702970;300000 -25830;132288037;67711963;300000 -25831;132279045;67720955;300000 -25832;132270053;67729947;300000 -25833;132261061;67738939;300000 -25834;132252071;67747929;300000 -25835;132243081;67756919;300000 -25836;132234092;67765908;300000 -25837;132225104;67774896;300000 -25838;132216116;67783884;300000 -25839;132207129;67792871;300000 -25840;132198142;67801858;300000 -25841;132189157;67810843;300000 -25842;132180172;67819828;300000 -25843;132171188;67828812;300000 -25844;132162204;67837796;300000 -25845;132153221;67846779;300000 -25846;132144239;67855761;300000 -25847;132135257;67864743;300000 -25848;132126277;67873723;300000 -25849;132117297;67882703;300000 -25850;132108317;67891683;300000 -25851;132099339;67900661;300000 -25852;132090361;67909639;300000 -25853;132081383;67918617;300000 -25854;132072407;67927593;300000 -25855;132063431;67936569;300000 -25856;132054455;67945545;300000 -25857;132045481;67954519;300000 -25858;132036507;67963493;300000 -25859;132027534;67972466;300000 -25860;132018561;67981439;300000 -25861;132009590;67990410;300000 -25862;132000619;67999381;300000 -25863;131991648;68008352;300000 -25864;131982679;68017321;300000 -25865;131973710;68026290;300000 -25866;131964741;68035259;300000 -25867;131955774;68044226;300000 -25868;131946807;68053193;300000 -25869;131937841;68062159;300000 -25870;131928875;68071125;300000 -25871;131919910;68080090;300000 -25872;131910946;68089054;300000 -25873;131901983;68098017;300000 -25874;131893020;68106980;300000 -25875;131884058;68115942;300000 -25876;131875097;68124903;300000 -25877;131866136;68133864;300000 -25878;131857176;68142824;300000 -25879;131848217;68151783;300000 -25880;131839258;68160742;300000 -25881;131830300;68169700;300000 -25882;131821343;68178657;300000 -25883;131812387;68187613;300000 -25884;131803431;68196569;300000 -25885;131794476;68205524;300000 -25886;131785521;68214479;300000 -25887;131776567;68223433;300000 -25888;131767614;68232386;300000 -25889;131758662;68241338;300000 -25890;131749710;68250290;300000 -25891;131740759;68259241;300000 -25892;131731809;68268191;300000 -25893;131722859;68277141;300000 -25894;131713911;68286089;300000 -25895;131704962;68295038;300000 -25896;131696015;68303985;300000 -25897;131687068;68312932;300000 -25898;131678122;68321878;300000 -25899;131669176;68330824;300000 -25900;131660232;68339768;300000 -25901;131651288;68348712;300000 -25902;131642344;68357656;300000 -25903;131633402;68366598;300000 -25904;131624460;68375540;300000 -25905;131615518;68384482;300000 -25906;131606578;68393422;300000 -25907;131597638;68402362;300000 -25908;131588698;68411302;300000 -25909;131579760;68420240;300000 -25910;131570822;68429178;300000 -25911;131561885;68438115;300000 -25912;131552948;68447052;300000 -25913;131544013;68455987;300000 -25914;131535078;68464922;300000 -25915;131526143;68473857;300000 -25916;131517209;68482791;300000 -25917;131508276;68491724;300000 -25918;131499344;68500656;300000 -25919;131490412;68509588;300000 -25920;131481481;68518519;300000 -25921;131472551;68527449;300000 -25922;131463622;68536378;300000 -25923;131454693;68545307;300000 -25924;131445765;68554235;300000 -25925;131436837;68563163;300000 -25926;131427910;68572090;300000 -25927;131418984;68581016;300000 -25928;131410059;68589941;300000 -25929;131401134;68598866;300000 -25930;131392210;68607790;300000 -25931;131383286;68616714;300000 -25932;131374364;68625636;300000 -25933;131365442;68634558;300000 -25934;131356520;68643480;300000 -25935;131347600;68652400;300000 -25936;131338680;68661320;300000 -25937;131329761;68670239;300000 -25938;131320842;68679158;300000 -25939;131311924;68688076;300000 -25940;131303007;68696993;300000 -25941;131294090;68705910;300000 -25942;131285175;68714825;300000 -25943;131276259;68723741;300000 -25944;131267345;68732655;300000 -25945;131258431;68741569;300000 -25946;131249518;68750482;300000 -25947;131240606;68759394;300000 -25948;131231694;68768306;300000 -25949;131222783;68777217;300000 -25950;131213873;68786127;300000 -25951;131204963;68795037;300000 -25952;131196054;68803946;300000 -25953;131187146;68812854;300000 -25954;131178238;68821762;300000 -25955;131169332;68830668;300000 -25956;131160425;68839575;300000 -25957;131151520;68848480;300000 -25958;131142615;68857385;300000 -25959;131133711;68866289;300000 -25960;131124807;68875193;300000 -25961;131115905;68884095;300000 -25962;131107003;68892997;300000 -25963;131098101;68901899;300000 -25964;131089200;68910800;300000 -25965;131080300;68919700;300000 -25966;131071401;68928599;300000 -25967;131062502;68937498;300000 -25968;131053604;68946396;300000 -25969;131044707;68955293;300000 -25970;131035811;68964189;300000 -25971;131026915;68973085;300000 -25972;131018019;68981981;300000 -25973;131009125;68990875;300000 -25974;131000231;68999769;300000 -25975;130991338;69008662;300000 -25976;130982445;69017555;300000 -25977;130973554;69026446;300000 -25978;130964662;69035338;300000 -25979;130955772;69044228;300000 -25980;130946882;69053118;300000 -25981;130937993;69062007;300000 -25982;130929105;69070895;300000 -25983;130920217;69079783;300000 -25984;130911330;69088670;300000 -25985;130902444;69097556;300000 -25986;130893558;69106442;300000 -25987;130884673;69115327;300000 -25988;130875789;69124211;300000 -25989;130866905;69133095;300000 -25990;130858022;69141978;300000 -25991;130849140;69150860;300000 -25992;130840259;69159741;300000 -25993;130831378;69168622;300000 -25994;130822497;69177503;300000 -25995;130813618;69186382;300000 -25996;130804739;69195261;300000 -25997;130795861;69204139;300000 -25998;130786984;69213016;300000 -25999;130778107;69221893;300000 -26000;130769231;69230769;300000 -26001;130760355;69239645;300000 -26002;130751481;69248519;300000 -26003;130742607;69257393;300000 -26004;130733733;69266267;300000 -26005;130724861;69275139;300000 -26006;130715989;69284011;300000 -26007;130707117;69292883;300000 -26008;130698247;69301753;300000 -26009;130689377;69310623;300000 -26010;130680507;69319493;300000 -26011;130671639;69328361;300000 -26012;130662771;69337229;300000 -26013;130653904;69346096;300000 -26014;130645037;69354963;300000 -26015;130636171;69363829;300000 -26016;130627306;69372694;300000 -26017;130618442;69381558;300000 -26018;130609578;69390422;300000 -26019;130600715;69399285;300000 -26020;130591852;69408148;300000 -26021;130582991;69417009;300000 -26022;130574130;69425870;300000 -26023;130565269;69434731;300000 -26024;130556409;69443591;300000 -26025;130547550;69452450;300000 -26026;130538692;69461308;300000 -26027;130529834;69470166;300000 -26028;130520977;69479023;300000 -26029;130512121;69487879;300000 -26030;130503265;69496735;300000 -26031;130494411;69505589;300000 -26032;130485556;69514444;300000 -26033;130476703;69523297;300000 -26034;130467850;69532150;300000 -26035;130458998;69541002;300000 -26036;130450146;69549854;300000 -26037;130441295;69558705;300000 -26038;130432445;69567555;300000 -26039;130423595;69576405;300000 -26040;130414747;69585253;300000 -26041;130405898;69594102;300000 -26042;130397051;69602949;300000 -26043;130388204;69611796;300000 -26044;130379358;69620642;300000 -26045;130370513;69629487;300000 -26046;130361668;69638332;300000 -26047;130352824;69647176;300000 -26048;130343980;69656020;300000 -26049;130335138;69664862;300000 -26050;130326296;69673704;300000 -26051;130317454;69682546;300000 -26052;130308614;69691386;300000 -26053;130299774;69700226;300000 -26054;130290934;69709066;300000 -26055;130282096;69717904;300000 -26056;130273258;69726742;300000 -26057;130264420;69735580;300000 -26058;130255584;69744416;300000 -26059;130246748;69753252;300000 -26060;130237913;69762087;300000 -26061;130229078;69770922;300000 -26062;130220244;69779756;300000 -26063;130211411;69788589;300000 -26064;130202578;69797422;300000 -26065;130193746;69806254;300000 -26066;130184915;69815085;300000 -26067;130176085;69823915;300000 -26068;130167255;69832745;300000 -26069;130158426;69841574;300000 -26070;130149597;69850403;300000 -26071;130140769;69859231;300000 -26072;130131942;69868058;300000 -26073;130123116;69876884;300000 -26074;130114290;69885710;300000 -26075;130105465;69894535;300000 -26076;130096641;69903359;300000 -26077;130087817;69912183;300000 -26078;130078994;69921006;300000 -26079;130070171;69929829;300000 -26080;130061350;69938650;300000 -26081;130052529;69947471;300000 -26082;130043708;69956292;300000 -26083;130034889;69965111;300000 -26084;130026070;69973930;300000 -26085;130017251;69982749;300000 -26086;130008434;69991566;300000 -26087;129999617;70000383;300000 -26088;129990800;70009200;300000 -26089;129981985;70018015;300000 -26090;129973170;70026830;300000 -26091;129964356;70035644;300000 -26092;129955542;70044458;300000 -26093;129946729;70053271;300000 -26094;129937917;70062083;300000 -26095;129929105;70070895;300000 -26096;129920294;70079706;300000 -26097;129911484;70088516;300000 -26098;129902675;70097325;300000 -26099;129893866;70106134;300000 -26100;129885057;70114943;300000 -26101;129876250;70123750;300000 -26102;129867443;70132557;300000 -26103;129858637;70141363;300000 -26104;129849831;70150169;300000 -26105;129841027;70158973;300000 -26106;129832222;70167778;300000 -26107;129823419;70176581;300000 -26108;129814616;70185384;300000 -26109;129805814;70194186;300000 -26110;129797013;70202987;300000 -26111;129788212;70211788;300000 -26112;129779412;70220588;300000 -26113;129770612;70229388;300000 -26114;129761814;70238186;300000 -26115;129753016;70246984;300000 -26116;129744218;70255782;300000 -26117;129735421;70264579;300000 -26118;129726625;70273375;300000 -26119;129717830;70282170;300000 -26120;129709035;70290965;300000 -26121;129700241;70299759;300000 -26122;129691448;70308552;300000 -26123;129682655;70317345;300000 -26124;129673863;70326137;300000 -26125;129665072;70334928;300000 -26126;129656281;70343719;300000 -26127;129647491;70352509;300000 -26128;129638702;70361298;300000 -26129;129629913;70370087;300000 -26130;129621125;70378875;300000 -26131;129612338;70387662;300000 -26132;129603551;70396449;300000 -26133;129594765;70405235;300000 -26134;129585980;70414020;300000 -26135;129577195;70422805;300000 -26136;129568411;70431589;300000 -26137;129559628;70440372;300000 -26138;129550846;70449154;300000 -26139;129542064;70457936;300000 -26140;129533282;70466718;300000 -26141;129524502;70475498;300000 -26142;129515722;70484278;300000 -26143;129506943;70493057;300000 -26144;129498164;70501836;300000 -26145;129489386;70510614;300000 -26146;129480609;70519391;300000 -26147;129471832;70528168;300000 -26148;129463056;70536944;300000 -26149;129454281;70545719;300000 -26150;129445507;70554493;300000 -26151;129436733;70563267;300000 -26152;129427960;70572040;300000 -26153;129419187;70580813;300000 -26154;129410415;70589585;300000 -26155;129401644;70598356;300000 -26156;129392874;70607126;300000 -26157;129384104;70615896;300000 -26158;129375335;70624665;300000 -26159;129366566;70633434;300000 -26160;129357798;70642202;300000 -26161;129349031;70650969;300000 -26162;129340265;70659735;300000 -26163;129331499;70668501;300000 -26164;129322734;70677266;300000 -26165;129313969;70686031;300000 -26166;129305205;70694795;300000 -26167;129296442;70703558;300000 -26168;129287680;70712320;300000 -26169;129278918;70721082;300000 -26170;129270157;70729843;300000 -26171;129261396;70738604;300000 -26172;129252636;70747364;300000 -26173;129243877;70756123;300000 -26174;129235119;70764881;300000 -26175;129226361;70773639;300000 -26176;129217604;70782396;300000 -26177;129208847;70791153;300000 -26178;129200092;70799908;300000 -26179;129191337;70808663;300000 -26180;129182582;70817418;300000 -26181;129173828;70826172;300000 -26182;129165075;70834925;300000 -26183;129156323;70843677;300000 -26184;129147571;70852429;300000 -26185;129138820;70861180;300000 -26186;129130070;70869930;300000 -26187;129121320;70878680;300000 -26188;129112571;70887429;300000 -26189;129103822;70896178;300000 -26190;129095074;70904926;300000 -26191;129086327;70913673;300000 -26192;129077581;70922419;300000 -26193;129068835;70931165;300000 -26194;129060090;70939910;300000 -26195;129051346;70948654;300000 -26196;129042602;70957398;300000 -26197;129033859;70966141;300000 -26198;129025116;70974884;300000 -26199;129016375;70983625;300000 -26200;129007634;70992366;300000 -26201;128998893;71001107;300000 -26202;128990153;71009847;300000 -26203;128981414;71018586;300000 -26204;128972676;71027324;300000 -26205;128963938;71036062;300000 -26206;128955201;71044799;300000 -26207;128946465;71053535;300000 -26208;128937729;71062271;300000 -26209;128928994;71071006;300000 -26210;128920259;71079741;300000 -26211;128911526;71088474;300000 -26212;128902793;71097207;300000 -26213;128894060;71105940;300000 -26214;128885328;71114672;300000 -26215;128876597;71123403;300000 -26216;128867867;71132133;300000 -26217;128859137;71140863;300000 -26218;128850408;71149592;300000 -26219;128841680;71158320;300000 -26220;128832952;71167048;300000 -26221;128824225;71175775;300000 -26222;128815498;71184502;300000 -26223;128806773;71193227;300000 -26224;128798048;71201952;300000 -26225;128789323;71210677;300000 -26226;128780599;71219401;300000 -26227;128771876;71228124;300000 -26228;128763154;71236846;300000 -26229;128754432;71245568;300000 -26230;128745711;71254289;300000 -26231;128736991;71263009;300000 -26232;128728271;71271729;300000 -26233;128719552;71280448;300000 -26234;128710833;71289167;300000 -26235;128702115;71297885;300000 -26236;128693398;71306602;300000 -26237;128684682;71315318;300000 -26238;128675966;71324034;300000 -26239;128667251;71332749;300000 -26240;128658537;71341463;300000 -26241;128649823;71350177;300000 -26242;128641110;71358890;300000 -26243;128632397;71367603;300000 -26244;128623685;71376315;300000 -26245;128614974;71385026;300000 -26246;128606264;71393736;300000 -26247;128597554;71402446;300000 -26248;128588845;71411155;300000 -26249;128580136;71419864;300000 -26250;128571429;71428571;300000 -26251;128562721;71437279;300000 -26252;128554015;71445985;300000 -26253;128545309;71454691;300000 -26254;128536604;71463396;300000 -26255;128527899;71472101;300000 -26256;128519196;71480804;300000 -26257;128510492;71489508;300000 -26258;128501790;71498210;300000 -26259;128493088;71506912;300000 -26260;128484387;71515613;300000 -26261;128475686;71524314;300000 -26262;128466987;71533013;300000 -26263;128458287;71541713;300000 -26264;128449589;71550411;300000 -26265;128440891;71559109;300000 -26266;128432194;71567806;300000 -26267;128423497;71576503;300000 -26268;128414801;71585199;300000 -26269;128406106;71593894;300000 -26270;128397411;71602589;300000 -26271;128388718;71611282;300000 -26272;128380024;71619976;300000 -26273;128371332;71628668;300000 -26274;128362640;71637360;300000 -26275;128353949;71646051;300000 -26276;128345258;71654742;300000 -26277;128336568;71663432;300000 -26278;128327879;71672121;300000 -26279;128319190;71680810;300000 -26280;128310502;71689498;300000 -26281;128301815;71698185;300000 -26282;128293128;71706872;300000 -26283;128284442;71715558;300000 -26284;128275757;71724243;300000 -26285;128267072;71732928;300000 -26286;128258388;71741612;300000 -26287;128249705;71750295;300000 -26288;128241023;71758977;300000 -26289;128232341;71767659;300000 -26290;128223659;71776341;300000 -26291;128214979;71785021;300000 -26292;128206298;71793702;300000 -26293;128197619;71802381;300000 -26294;128188940;71811060;300000 -26295;128180262;71819738;300000 -26296;128171585;71828415;300000 -26297;128162908;71837092;300000 -26298;128154232;71845768;300000 -26299;128145557;71854443;300000 -26300;128136882;71863118;300000 -26301;128128208;71871792;300000 -26302;128119535;71880465;300000 -26303;128110862;71889138;300000 -26304;128102190;71897810;300000 -26305;128093518;71906482;300000 -26306;128084848;71915152;300000 -26307;128076177;71923823;300000 -26308;128067508;71932492;300000 -26309;128058839;71941161;300000 -26310;128050171;71949829;300000 -26311;128041504;71958496;300000 -26312;128032837;71967163;300000 -26313;128024171;71975829;300000 -26314;128015505;71984495;300000 -26315;128006840;71993160;300000 -26316;127998176;72001824;300000 -26317;127989512;72010488;300000 -26318;127980850;72019150;300000 -26319;127972187;72027813;300000 -26320;127963526;72036474;300000 -26321;127954865;72045135;300000 -26322;127946205;72053795;300000 -26323;127937545;72062455;300000 -26324;127928886;72071114;300000 -26325;127920228;72079772;300000 -26326;127911570;72088430;300000 -26327;127902913;72097087;300000 -26328;127894257;72105743;300000 -26329;127885601;72114399;300000 -26330;127876946;72123054;300000 -26331;127868292;72131708;300000 -26332;127859638;72140362;300000 -26333;127850985;72149015;300000 -26334;127842333;72157667;300000 -26335;127833681;72166319;300000 -26336;127825030;72174970;300000 -26337;127816380;72183620;300000 -26338;127807730;72192270;300000 -26339;127799081;72200919;300000 -26340;127790433;72209567;300000 -26341;127781785;72218215;300000 -26342;127773138;72226862;300000 -26343;127764492;72235508;300000 -26344;127755846;72244154;300000 -26345;127747201;72252799;300000 -26346;127738556;72261444;300000 -26347;127729912;72270088;300000 -26348;127721269;72278731;300000 -26349;127712627;72287373;300000 -26350;127703985;72296015;300000 -26351;127695344;72304656;300000 -26352;127686703;72313297;300000 -26353;127678063;72321937;300000 -26354;127669424;72330576;300000 -26355;127660785;72339215;300000 -26356;127652148;72347852;300000 -26357;127643510;72356490;300000 -26358;127634874;72365126;300000 -26359;127626238;72373762;300000 -26360;127617602;72382398;300000 -26361;127608968;72391032;300000 -26362;127600334;72399666;300000 -26363;127591700;72408300;300000 -26364;127583068;72416932;300000 -26365;127574436;72425564;300000 -26366;127565804;72434196;300000 -26367;127557174;72442826;300000 -26368;127548544;72451456;300000 -26369;127539914;72460086;300000 -26370;127531286;72468714;300000 -26371;127522657;72477343;300000 -26372;127514030;72485970;300000 -26373;127505403;72494597;300000 -26374;127496777;72503223;300000 -26375;127488152;72511848;300000 -26376;127479527;72520473;300000 -26377;127470903;72529097;300000 -26378;127462279;72537721;300000 -26379;127453656;72546344;300000 -26380;127445034;72554966;300000 -26381;127436413;72563587;300000 -26382;127427792;72572208;300000 -26383;127419171;72580829;300000 -26384;127410552;72589448;300000 -26385;127401933;72598067;300000 -26386;127393315;72606685;300000 -26387;127384697;72615303;300000 -26388;127376080;72623920;300000 -26389;127367464;72632536;300000 -26390;127358848;72641152;300000 -26391;127350233;72649767;300000 -26392;127341619;72658381;300000 -26393;127333005;72666995;300000 -26394;127324392;72675608;300000 -26395;127315780;72684220;300000 -26396;127307168;72692832;300000 -26397;127298557;72701443;300000 -26398;127289946;72710054;300000 -26399;127281336;72718664;300000 -26400;127272727;72727273;300000 -26401;127264119;72735881;300000 -26402;127255511;72744489;300000 -26403;127246904;72753096;300000 -26404;127238297;72761703;300000 -26405;127229691;72770309;300000 -26406;127221086;72778914;300000 -26407;127212482;72787518;300000 -26408;127203878;72796122;300000 -26409;127195274;72804726;300000 -26410;127186672;72813328;300000 -26411;127178070;72821930;300000 -26412;127169468;72830532;300000 -26413;127160868;72839132;300000 -26414;127152268;72847732;300000 -26415;127143668;72856332;300000 -26416;127135070;72864930;300000 -26417;127126472;72873528;300000 -26418;127117874;72882126;300000 -26419;127109277;72890723;300000 -26420;127100681;72899319;300000 -26421;127092086;72907914;300000 -26422;127083491;72916509;300000 -26423;127074897;72925103;300000 -26424;127066303;72933697;300000 -26425;127057711;72942289;300000 -26426;127049118;72950882;300000 -26427;127040527;72959473;300000 -26428;127031936;72968064;300000 -26429;127023346;72976654;300000 -26430;127014756;72985244;300000 -26431;127006167;72993833;300000 -26432;126997579;73002421;300000 -26433;126988991;73011009;300000 -26434;126980404;73019596;300000 -26435;126971818;73028182;300000 -26436;126963232;73036768;300000 -26437;126954647;73045353;300000 -26438;126946062;73053938;300000 -26439;126937479;73062521;300000 -26440;126928896;73071104;300000 -26441;126920313;73079687;300000 -26442;126911731;73088269;300000 -26443;126903150;73096850;300000 -26444;126894570;73105430;300000 -26445;126885990;73114010;300000 -26446;126877411;73122589;300000 -26447;126868832;73131168;300000 -26448;126860254;73139746;300000 -26449;126851677;73148323;300000 -26450;126843100;73156900;300000 -26451;126834524;73165476;300000 -26452;126825949;73174051;300000 -26453;126817374;73182626;300000 -26454;126808800;73191200;300000 -26455;126800227;73199773;300000 -26456;126791654;73208346;300000 -26457;126783082;73216918;300000 -26458;126774511;73225489;300000 -26459;126765940;73234060;300000 -26460;126757370;73242630;300000 -26461;126748800;73251200;300000 -26462;126740231;73259769;300000 -26463;126731663;73268337;300000 -26464;126723096;73276904;300000 -26465;126714529;73285471;300000 -26466;126705962;73294038;300000 -26467;126697397;73302603;300000 -26468;126688832;73311168;300000 -26469;126680267;73319733;300000 -26470;126671704;73328296;300000 -26471;126663141;73336859;300000 -26472;126654578;73345422;300000 -26473;126646017;73353983;300000 -26474;126637456;73362544;300000 -26475;126628895;73371105;300000 -26476;126620335;73379665;300000 -26477;126611776;73388224;300000 -26478;126603218;73396782;300000 -26479;126594660;73405340;300000 -26480;126586103;73413897;300000 -26481;126577546;73422454;300000 -26482;126568990;73431010;300000 -26483;126560435;73439565;300000 -26484;126551880;73448120;300000 -26485;126543326;73456674;300000 -26486;126534773;73465227;300000 -26487;126526220;73473780;300000 -26488;126517668;73482332;300000 -26489;126509117;73490883;300000 -26490;126500566;73499434;300000 -26491;126492016;73507984;300000 -26492;126483467;73516533;300000 -26493;126474918;73525082;300000 -26494;126466370;73533630;300000 -26495;126457822;73542178;300000 -26496;126449275;73550725;300000 -26497;126440729;73559271;300000 -26498;126432184;73567816;300000 -26499;126423639;73576361;300000 -26500;126415094;73584906;300000 -26501;126406551;73593449;300000 -26502;126398008;73601992;300000 -26503;126389465;73610535;300000 -26504;126380924;73619076;300000 -26505;126372383;73627617;300000 -26506;126363842;73636158;300000 -26507;126355302;73644698;300000 -26508;126346763;73653237;300000 -26509;126338225;73661775;300000 -26510;126329687;73670313;300000 -26511;126321150;73678850;300000 -26512;126312613;73687387;300000 -26513;126304077;73695923;300000 -26514;126295542;73704458;300000 -26515;126287007;73712993;300000 -26516;126278473;73721527;300000 -26517;126269940;73730060;300000 -26518;126261407;73738593;300000 -26519;126252875;73747125;300000 -26520;126244344;73755656;300000 -26521;126235813;73764187;300000 -26522;126227283;73772717;300000 -26523;126218754;73781246;300000 -26524;126210225;73789775;300000 -26525;126201697;73798303;300000 -26526;126193169;73806831;300000 -26527;126184642;73815358;300000 -26528;126176116;73823884;300000 -26529;126167590;73832410;300000 -26530;126159065;73840935;300000 -26531;126150541;73849459;300000 -26532;126142017;73857983;300000 -26533;126133494;73866506;300000 -26534;126124972;73875028;300000 -26535;126116450;73883550;300000 -26536;126107929;73892071;300000 -26537;126099408;73900592;300000 -26538;126090889;73909111;300000 -26539;126082369;73917631;300000 -26540;126073851;73926149;300000 -26541;126065333;73934667;300000 -26542;126056816;73943184;300000 -26543;126048299;73951701;300000 -26544;126039783;73960217;300000 -26545;126031268;73968732;300000 -26546;126022753;73977247;300000 -26547;126014239;73985761;300000 -26548;126005725;73994275;300000 -26549;125997213;74002787;300000 -26550;125988701;74011299;300000 -26551;125980189;74019811;300000 -26552;125971678;74028322;300000 -26553;125963168;74036832;300000 -26554;125954658;74045342;300000 -26555;125946150;74053850;300000 -26556;125937641;74062359;300000 -26557;125929134;74070866;300000 -26558;125920627;74079373;300000 -26559;125912120;74087880;300000 -26560;125903614;74096386;300000 -26561;125895109;74104891;300000 -26562;125886605;74113395;300000 -26563;125878101;74121899;300000 -26564;125869598;74130402;300000 -26565;125861095;74138905;300000 -26566;125852594;74147406;300000 -26567;125844092;74155908;300000 -26568;125835592;74164408;300000 -26569;125827092;74172908;300000 -26570;125818592;74181408;300000 -26571;125810094;74189906;300000 -26572;125801596;74198404;300000 -26573;125793098;74206902;300000 -26574;125784601;74215399;300000 -26575;125776105;74223895;300000 -26576;125767610;74232390;300000 -26577;125759115;74240885;300000 -26578;125750621;74249379;300000 -26579;125742127;74257873;300000 -26580;125733634;74266366;300000 -26581;125725142;74274858;300000 -26582;125716650;74283350;300000 -26583;125708159;74291841;300000 -26584;125699669;74300331;300000 -26585;125691179;74308821;300000 -26586;125682690;74317310;300000 -26587;125674202;74325798;300000 -26588;125665714;74334286;300000 -26589;125657227;74342773;300000 -26590;125648740;74351260;300000 -26591;125640254;74359746;300000 -26592;125631769;74368231;300000 -26593;125623284;74376716;300000 -26594;125614800;74385200;300000 -26595;125606317;74393683;300000 -26596;125597834;74402166;300000 -26597;125589352;74410648;300000 -26598;125580871;74419129;300000 -26599;125572390;74427610;300000 -26600;125563910;74436090;300000 -26601;125555430;74444570;300000 -26602;125546951;74453049;300000 -26603;125538473;74461527;300000 -26604;125529995;74470005;300000 -26605;125521519;74478481;300000 -26606;125513042;74486958;300000 -26607;125504566;74495434;300000 -26608;125496091;74503909;300000 -26609;125487617;74512383;300000 -26610;125479143;74520857;300000 -26611;125470670;74529330;300000 -26612;125462198;74537802;300000 -26613;125453726;74546274;300000 -26614;125445254;74554746;300000 -26615;125436784;74563216;300000 -26616;125428314;74571686;300000 -26617;125419844;74580156;300000 -26618;125411376;74588624;300000 -26619;125402908;74597092;300000 -26620;125394440;74605560;300000 -26621;125385973;74614027;300000 -26622;125377507;74622493;300000 -26623;125369042;74630958;300000 -26624;125360577;74639423;300000 -26625;125352113;74647887;300000 -26626;125343649;74656351;300000 -26627;125335186;74664814;300000 -26628;125326724;74673276;300000 -26629;125318262;74681738;300000 -26630;125309801;74690199;300000 -26631;125301341;74698659;300000 -26632;125292881;74707119;300000 -26633;125284422;74715578;300000 -26634;125275963;74724037;300000 -26635;125267505;74732495;300000 -26636;125259048;74740952;300000 -26637;125250591;74749409;300000 -26638;125242135;74757865;300000 -26639;125233680;74766320;300000 -26640;125225225;74774775;300000 -26641;125216771;74783229;300000 -26642;125208318;74791682;300000 -26643;125199865;74800135;300000 -26644;125191413;74808587;300000 -26645;125182961;74817039;300000 -26646;125174510;74825490;300000 -26647;125166060;74833940;300000 -26648;125157610;74842390;300000 -26649;125149161;74850839;300000 -26650;125140713;74859287;300000 -26651;125132265;74867735;300000 -26652;125123818;74876182;300000 -26653;125115372;74884628;300000 -26654;125106926;74893074;300000 -26655;125098481;74901519;300000 -26656;125090036;74909964;300000 -26657;125081592;74918408;300000 -26658;125073149;74926851;300000 -26659;125064706;74935294;300000 -26660;125056264;74943736;300000 -26661;125047823;74952177;300000 -26662;125039382;74960618;300000 -26663;125030942;74969058;300000 -26664;125022502;74977498;300000 -26665;125014063;74985937;300000 -26666;125005625;74994375;300000 -26667;124997188;75002812;300000 -26668;124988751;75011249;300000 -26669;124980314;75019686;300000 -26670;124971879;75028121;300000 -26671;124963443;75036557;300000 -26672;124955009;75044991;300000 -26673;124946575;75053425;300000 -26674;124938142;75061858;300000 -26675;124929709;75070291;300000 -26676;124921278;75078722;300000 -26677;124912846;75087154;300000 -26678;124904416;75095584;300000 -26679;124895986;75104014;300000 -26680;124887556;75112444;300000 -26681;124879127;75120873;300000 -26682;124870699;75129301;300000 -26683;124862272;75137728;300000 -26684;124853845;75146155;300000 -26685;124845419;75154581;300000 -26686;124836993;75163007;300000 -26687;124828568;75171432;300000 -26688;124820144;75179856;300000 -26689;124811720;75188280;300000 -26690;124803297;75196703;300000 -26691;124794875;75205125;300000 -26692;124786453;75213547;300000 -26693;124778032;75221968;300000 -26694;124769611;75230389;300000 -26695;124761191;75238809;300000 -26696;124752772;75247228;300000 -26697;124744353;75255647;300000 -26698;124735935;75264065;300000 -26699;124727518;75272482;300000 -26700;124719101;75280899;300000 -26701;124710685;75289315;300000 -26702;124702269;75297731;300000 -26703;124693855;75306145;300000 -26704;124685440;75314560;300000 -26705;124677027;75322973;300000 -26706;124668614;75331386;300000 -26707;124660201;75339799;300000 -26708;124651790;75348210;300000 -26709;124643379;75356621;300000 -26710;124634968;75365032;300000 -26711;124626558;75373442;300000 -26712;124618149;75381851;300000 -26713;124609741;75390259;300000 -26714;124601333;75398667;300000 -26715;124592925;75407075;300000 -26716;124584519;75415481;300000 -26717;124576113;75423887;300000 -26718;124567707;75432293;300000 -26719;124559302;75440698;300000 -26720;124550898;75449102;300000 -26721;124542495;75457505;300000 -26722;124534092;75465908;300000 -26723;124525689;75474311;300000 -26724;124517288;75482712;300000 -26725;124508887;75491113;300000 -26726;124500486;75499514;300000 -26727;124492087;75507913;300000 -26728;124483688;75516312;300000 -26729;124475289;75524711;300000 -26730;124466891;75533109;300000 -26731;124458494;75541506;300000 -26732;124450097;75549903;300000 -26733;124441701;75558299;300000 -26734;124433306;75566694;300000 -26735;124424911;75575089;300000 -26736;124416517;75583483;300000 -26737;124408124;75591876;300000 -26738;124399731;75600269;300000 -26739;124391338;75608662;300000 -26740;124382947;75617053;300000 -26741;124374556;75625444;300000 -26742;124366166;75633834;300000 -26743;124357776;75642224;300000 -26744;124349387;75650613;300000 -26745;124340998;75659002;300000 -26746;124332610;75667390;300000 -26747;124324223;75675777;300000 -26748;124315837;75684163;300000 -26749;124307451;75692549;300000 -26750;124299065;75700935;300000 -26751;124290681;75709319;300000 -26752;124282297;75717703;300000 -26753;124273913;75726087;300000 -26754;124265530;75734470;300000 -26755;124257148;75742852;300000 -26756;124248767;75751233;300000 -26757;124240386;75759614;300000 -26758;124232005;75767995;300000 -26759;124223626;75776374;300000 -26760;124215247;75784753;300000 -26761;124206868;75793132;300000 -26762;124198490;75801510;300000 -26763;124190113;75809887;300000 -26764;124181737;75818263;300000 -26765;124173361;75826639;300000 -26766;124164985;75835015;300000 -26767;124156611;75843389;300000 -26768;124148237;75851763;300000 -26769;124139863;75860137;300000 -26770;124131490;75868510;300000 -26771;124123118;75876882;300000 -26772;124114747;75885253;300000 -26773;124106376;75893624;300000 -26774;124098006;75901994;300000 -26775;124089636;75910364;300000 -26776;124081267;75918733;300000 -26777;124072898;75927102;300000 -26778;124064531;75935469;300000 -26779;124056163;75943837;300000 -26780;124047797;75952203;300000 -26781;124039431;75960569;300000 -26782;124031066;75968934;300000 -26783;124022701;75977299;300000 -26784;124014337;75985663;300000 -26785;124005973;75994027;300000 -26786;123997611;76002389;300000 -26787;123989249;76010751;300000 -26788;123980887;76019113;300000 -26789;123972526;76027474;300000 -26790;123964166;76035834;300000 -26791;123955806;76044194;300000 -26792;123947447;76052553;300000 -26793;123939089;76060911;300000 -26794;123930731;76069269;300000 -26795;123922374;76077626;300000 -26796;123914017;76085983;300000 -26797;123905661;76094339;300000 -26798;123897306;76102694;300000 -26799;123888951;76111049;300000 -26800;123880597;76119403;300000 -26801;123872244;76127756;300000 -26802;123863891;76136109;300000 -26803;123855539;76144461;300000 -26804;123847187;76152813;300000 -26805;123838836;76161164;300000 -26806;123830486;76169514;300000 -26807;123822136;76177864;300000 -26808;123813787;76186213;300000 -26809;123805438;76194562;300000 -26810;123797091;76202909;300000 -26811;123788743;76211257;300000 -26812;123780397;76219603;300000 -26813;123772051;76227949;300000 -26814;123763706;76236294;300000 -26815;123755361;76244639;300000 -26816;123747017;76252983;300000 -26817;123738673;76261327;300000 -26818;123730330;76269670;300000 -26819;123721988;76278012;300000 -26820;123713647;76286353;300000 -26821;123705306;76294694;300000 -26822;123696965;76303035;300000 -26823;123688625;76311375;300000 -26824;123680286;76319714;300000 -26825;123671948;76328052;300000 -26826;123663610;76336390;300000 -26827;123655273;76344727;300000 -26828;123646936;76353064;300000 -26829;123638600;76361400;300000 -26830;123630265;76369735;300000 -26831;123621930;76378070;300000 -26832;123613596;76386404;300000 -26833;123605262;76394738;300000 -26834;123596929;76403071;300000 -26835;123588597;76411403;300000 -26836;123580265;76419735;300000 -26837;123571934;76428066;300000 -26838;123563604;76436396;300000 -26839;123555274;76444726;300000 -26840;123546945;76453055;300000 -26841;123538616;76461384;300000 -26842;123530288;76469712;300000 -26843;123521961;76478039;300000 -26844;123513634;76486366;300000 -26845;123505308;76494692;300000 -26846;123496983;76503017;300000 -26847;123488658;76511342;300000 -26848;123480334;76519666;300000 -26849;123472010;76527990;300000 -26850;123463687;76536313;300000 -26851;123455365;76544635;300000 -26852;123447043;76552957;300000 -26853;123438722;76561278;300000 -26854;123430401;76569599;300000 -26855;123422082;76577918;300000 -26856;123413762;76586238;300000 -26857;123405444;76594556;300000 -26858;123397126;76602874;300000 -26859;123388808;76611192;300000 -26860;123380491;76619509;300000 -26861;123372175;76627825;300000 -26862;123363860;76636140;300000 -26863;123355545;76644455;300000 -26864;123347230;76652770;300000 -26865;123338917;76661083;300000 -26866;123330604;76669396;300000 -26867;123322291;76677709;300000 -26868;123313979;76686021;300000 -26869;123305668;76694332;300000 -26870;123297358;76702642;300000 -26871;123289048;76710952;300000 -26872;123280738;76719262;300000 -26873;123272430;76727570;300000 -26874;123264121;76735879;300000 -26875;123255814;76744186;300000 -26876;123247507;76752493;300000 -26877;123239201;76760799;300000 -26878;123230895;76769105;300000 -26879;123222590;76777410;300000 -26880;123214286;76785714;300000 -26881;123205982;76794018;300000 -26882;123197679;76802321;300000 -26883;123189376;76810624;300000 -26884;123181074;76818926;300000 -26885;123172773;76827227;300000 -26886;123164472;76835528;300000 -26887;123156172;76843828;300000 -26888;123147873;76852127;300000 -26889;123139574;76860426;300000 -26890;123131276;76868724;300000 -26891;123122978;76877022;300000 -26892;123114681;76885319;300000 -26893;123106385;76893615;300000 -26894;123098089;76901911;300000 -26895;123089794;76910206;300000 -26896;123081499;76918501;300000 -26897;123073205;76926795;300000 -26898;123064912;76935088;300000 -26899;123056619;76943381;300000 -26900;123048327;76951673;300000 -26901;123040036;76959964;300000 -26902;123031745;76968255;300000 -26903;123023455;76976545;300000 -26904;123015165;76984835;300000 -26905;123006876;76993124;300000 -26906;122998588;77001412;300000 -26907;122990300;77009700;300000 -26908;122982013;77017987;300000 -26909;122973726;77026274;300000 -26910;122965440;77034560;300000 -26911;122957155;77042845;300000 -26912;122948870;77051130;300000 -26913;122940586;77059414;300000 -26914;122932303;77067697;300000 -26915;122924020;77075980;300000 -26916;122915738;77084262;300000 -26917;122907456;77092544;300000 -26918;122899175;77100825;300000 -26919;122890895;77109105;300000 -26920;122882615;77117385;300000 -26921;122874336;77125664;300000 -26922;122866057;77133943;300000 -26923;122857780;77142220;300000 -26924;122849502;77150498;300000 -26925;122841226;77158774;300000 -26926;122832950;77167050;300000 -26927;122824674;77175326;300000 -26928;122816399;77183601;300000 -26929;122808125;77191875;300000 -26930;122799851;77200149;300000 -26931;122791578;77208422;300000 -26932;122783306;77216694;300000 -26933;122775034;77224966;300000 -26934;122766763;77233237;300000 -26935;122758493;77241507;300000 -26936;122750223;77249777;300000 -26937;122741953;77258047;300000 -26938;122733685;77266315;300000 -26939;122725417;77274583;300000 -26940;122717149;77282851;300000 -26941;122708882;77291118;300000 -26942;122700616;77299384;300000 -26943;122692351;77307649;300000 -26944;122684086;77315914;300000 -26945;122675821;77324179;300000 -26946;122667557;77332443;300000 -26947;122659294;77340706;300000 -26948;122651032;77348968;300000 -26949;122642770;77357230;300000 -26950;122634508;77365492;300000 -26951;122626248;77373752;300000 -26952;122617988;77382012;300000 -26953;122609728;77390272;300000 -26954;122601469;77398531;300000 -26955;122593211;77406789;300000 -26956;122584953;77415047;300000 -26957;122576696;77423304;300000 -26958;122568440;77431560;300000 -26959;122560184;77439816;300000 -26960;122551929;77448071;300000 -26961;122543674;77456326;300000 -26962;122535420;77464580;300000 -26963;122527167;77472833;300000 -26964;122518914;77481086;300000 -26965;122510662;77489338;300000 -26966;122502410;77497590;300000 -26967;122494160;77505840;300000 -26968;122485909;77514091;300000 -26969;122477660;77522340;300000 -26970;122469410;77530590;300000 -26971;122461162;77538838;300000 -26972;122452914;77547086;300000 -26973;122444667;77555333;300000 -26974;122436420;77563580;300000 -26975;122428174;77571826;300000 -26976;122419929;77580071;300000 -26977;122411684;77588316;300000 -26978;122403440;77596560;300000 -26979;122395196;77604804;300000 -26980;122386953;77613047;300000 -26981;122378711;77621289;300000 -26982;122370469;77629531;300000 -26983;122362228;77637772;300000 -26984;122353988;77646012;300000 -26985;122345748;77654252;300000 -26986;122337508;77662492;300000 -26987;122329270;77670730;300000 -26988;122321032;77678968;300000 -26989;122312794;77687206;300000 -26990;122304557;77695443;300000 -26991;122296321;77703679;300000 -26992;122288085;77711915;300000 -26993;122279850;77720150;300000 -26994;122271616;77728384;300000 -26995;122263382;77736618;300000 -26996;122255149;77744851;300000 -26997;122246916;77753084;300000 -26998;122238684;77761316;300000 -26999;122230453;77769547;300000 -27000;122222222;77777778;300000 -27001;122213992;77786008;300000 -27002;122205763;77794237;300000 -27003;122197534;77802466;300000 -27004;122189305;77810695;300000 -27005;122181078;77818922;300000 -27006;122172850;77827150;300000 -27007;122164624;77835376;300000 -27008;122156398;77843602;300000 -27009;122148173;77851827;300000 -27010;122139948;77860052;300000 -27011;122131724;77868276;300000 -27012;122123501;77876499;300000 -27013;122115278;77884722;300000 -27014;122107056;77892944;300000 -27015;122098834;77901166;300000 -27016;122090613;77909387;300000 -27017;122082393;77917607;300000 -27018;122074173;77925827;300000 -27019;122065954;77934046;300000 -27020;122057735;77942265;300000 -27021;122049517;77950483;300000 -27022;122041300;77958700;300000 -27023;122033083;77966917;300000 -27024;122024867;77975133;300000 -27025;122016651;77983349;300000 -27026;122008436;77991564;300000 -27027;122000222;77999778;300000 -27028;121992008;78007992;300000 -27029;121983795;78016205;300000 -27030;121975583;78024417;300000 -27031;121967371;78032629;300000 -27032;121959160;78040840;300000 -27033;121950949;78049051;300000 -27034;121942739;78057261;300000 -27035;121934529;78065471;300000 -27036;121926320;78073680;300000 -27037;121918112;78081888;300000 -27038;121909905;78090095;300000 -27039;121901698;78098302;300000 -27040;121893491;78106509;300000 -27041;121885285;78114715;300000 -27042;121877080;78122920;300000 -27043;121868875;78131125;300000 -27044;121860671;78139329;300000 -27045;121852468;78147532;300000 -27046;121844265;78155735;300000 -27047;121836063;78163937;300000 -27048;121827862;78172138;300000 -27049;121819661;78180339;300000 -27050;121811460;78188540;300000 -27051;121803261;78196739;300000 -27052;121795061;78204939;300000 -27053;121786863;78213137;300000 -27054;121778665;78221335;300000 -27055;121770468;78229532;300000 -27056;121762271;78237729;300000 -27057;121754075;78245925;300000 -27058;121745879;78254121;300000 -27059;121737684;78262316;300000 -27060;121729490;78270510;300000 -27061;121721296;78278704;300000 -27062;121713103;78286897;300000 -27063;121704911;78295089;300000 -27064;121696719;78303281;300000 -27065;121688528;78311472;300000 -27066;121680337;78319663;300000 -27067;121672147;78327853;300000 -27068;121663957;78336043;300000 -27069;121655769;78344231;300000 -27070;121647580;78352420;300000 -27071;121639393;78360607;300000 -27072;121631206;78368794;300000 -27073;121623019;78376981;300000 -27074;121614833;78385167;300000 -27075;121606648;78393352;300000 -27076;121598464;78401536;300000 -27077;121590280;78409720;300000 -27078;121582096;78417904;300000 -27079;121573913;78426087;300000 -27080;121565731;78434269;300000 -27081;121557550;78442450;300000 -27082;121549369;78450631;300000 -27083;121541188;78458812;300000 -27084;121533008;78466992;300000 -27085;121524829;78475171;300000 -27086;121516651;78483349;300000 -27087;121508473;78491527;300000 -27088;121500295;78499705;300000 -27089;121492119;78507881;300000 -27090;121483942;78516058;300000 -27091;121475767;78524233;300000 -27092;121467592;78532408;300000 -27093;121459418;78540582;300000 -27094;121451244;78548756;300000 -27095;121443071;78556929;300000 -27096;121434898;78565102;300000 -27097;121426726;78573274;300000 -27098;121418555;78581445;300000 -27099;121410384;78589616;300000 -27100;121402214;78597786;300000 -27101;121394045;78605955;300000 -27102;121385876;78614124;300000 -27103;121377707;78622293;300000 -27104;121369540;78630460;300000 -27105;121361372;78638628;300000 -27106;121353206;78646794;300000 -27107;121345040;78654960;300000 -27108;121336875;78663125;300000 -27109;121328710;78671290;300000 -27110;121320546;78679454;300000 -27111;121312382;78687618;300000 -27112;121304220;78695780;300000 -27113;121296057;78703943;300000 -27114;121287896;78712104;300000 -27115;121279734;78720266;300000 -27116;121271574;78728426;300000 -27117;121263414;78736586;300000 -27118;121255255;78744745;300000 -27119;121247096;78752904;300000 -27120;121238938;78761062;300000 -27121;121230781;78769219;300000 -27122;121222624;78777376;300000 -27123;121214467;78785533;300000 -27124;121206312;78793688;300000 -27125;121198157;78801843;300000 -27126;121190002;78809998;300000 -27127;121181848;78818152;300000 -27128;121173695;78826305;300000 -27129;121165542;78834458;300000 -27130;121157390;78842610;300000 -27131;121149239;78850761;300000 -27132;121141088;78858912;300000 -27133;121132938;78867062;300000 -27134;121124788;78875212;300000 -27135;121116639;78883361;300000 -27136;121108491;78891509;300000 -27137;121100343;78899657;300000 -27138;121092195;78907805;300000 -27139;121084049;78915951;300000 -27140;121075903;78924097;300000 -27141;121067757;78932243;300000 -27142;121059612;78940388;300000 -27143;121051468;78948532;300000 -27144;121043324;78956676;300000 -27145;121035181;78964819;300000 -27146;121027039;78972961;300000 -27147;121018897;78981103;300000 -27148;121010756;78989244;300000 -27149;121002615;78997385;300000 -27150;120994475;79005525;300000 -27151;120986336;79013664;300000 -27152;120978197;79021803;300000 -27153;120970059;79029941;300000 -27154;120961921;79038079;300000 -27155;120953784;79046216;300000 -27156;120945647;79054353;300000 -27157;120937512;79062488;300000 -27158;120929376;79070624;300000 -27159;120921242;79078758;300000 -27160;120913108;79086892;300000 -27161;120904974;79095026;300000 -27162;120896841;79103159;300000 -27163;120888709;79111291;300000 -27164;120880577;79119423;300000 -27165;120872446;79127554;300000 -27166;120864316;79135684;300000 -27167;120856186;79143814;300000 -27168;120848057;79151943;300000 -27169;120839928;79160072;300000 -27170;120831800;79168200;300000 -27171;120823672;79176328;300000 -27172;120815545;79184455;300000 -27173;120807419;79192581;300000 -27174;120799293;79200707;300000 -27175;120791168;79208832;300000 -27176;120783044;79216956;300000 -27177;120774920;79225080;300000 -27178;120766797;79233203;300000 -27179;120758674;79241326;300000 -27180;120750552;79249448;300000 -27181;120742430;79257570;300000 -27182;120734309;79265691;300000 -27183;120726189;79273811;300000 -27184;120718069;79281931;300000 -27185;120709950;79290050;300000 -27186;120701832;79298168;300000 -27187;120693714;79306286;300000 -27188;120685597;79314403;300000 -27189;120677480;79322520;300000 -27190;120669364;79330636;300000 -27191;120661248;79338752;300000 -27192;120653133;79346867;300000 -27193;120645019;79354981;300000 -27194;120636905;79363095;300000 -27195;120628792;79371208;300000 -27196;120620680;79379320;300000 -27197;120612568;79387432;300000 -27198;120604456;79395544;300000 -27199;120596345;79403655;300000 -27200;120588235;79411765;300000 -27201;120580126;79419874;300000 -27202;120572017;79427983;300000 -27203;120563908;79436092;300000 -27204;120555801;79444199;300000 -27205;120547693;79452307;300000 -27206;120539587;79460413;300000 -27207;120531481;79468519;300000 -27208;120523375;79476625;300000 -27209;120515271;79484729;300000 -27210;120507166;79492834;300000 -27211;120499063;79500937;300000 -27212;120490960;79509040;300000 -27213;120482857;79517143;300000 -27214;120474756;79525244;300000 -27215;120466654;79533346;300000 -27216;120458554;79541446;300000 -27217;120450454;79549546;300000 -27218;120442354;79557646;300000 -27219;120434255;79565745;300000 -27220;120426157;79573843;300000 -27221;120418060;79581940;300000 -27222;120409963;79590037;300000 -27223;120401866;79598134;300000 -27224;120393770;79606230;300000 -27225;120385675;79614325;300000 -27226;120377580;79622420;300000 -27227;120369486;79630514;300000 -27228;120361393;79638607;300000 -27229;120353300;79646700;300000 -27230;120345207;79654793;300000 -27231;120337116;79662884;300000 -27232;120329025;79670975;300000 -27233;120320934;79679066;300000 -27234;120312844;79687156;300000 -27235;120304755;79695245;300000 -27236;120296666;79703334;300000 -27237;120288578;79711422;300000 -27238;120280490;79719510;300000 -27239;120272404;79727596;300000 -27240;120264317;79735683;300000 -27241;120256231;79743769;300000 -27242;120248146;79751854;300000 -27243;120240062;79759938;300000 -27244;120231978;79768022;300000 -27245;120223894;79776106;300000 -27246;120215811;79784189;300000 -27247;120207729;79792271;300000 -27248;120199648;79800352;300000 -27249;120191567;79808433;300000 -27250;120183486;79816514;300000 -27251;120175406;79824594;300000 -27252;120167327;79832673;300000 -27253;120159249;79840751;300000 -27254;120151170;79848830;300000 -27255;120143093;79856907;300000 -27256;120135016;79864984;300000 -27257;120126940;79873060;300000 -27258;120118864;79881136;300000 -27259;120110789;79889211;300000 -27260;120102715;79897285;300000 -27261;120094641;79905359;300000 -27262;120086567;79913433;300000 -27263;120078495;79921505;300000 -27264;120070423;79929577;300000 -27265;120062351;79937649;300000 -27266;120054280;79945720;300000 -27267;120046210;79953790;300000 -27268;120038140;79961860;300000 -27269;120030071;79969929;300000 -27270;120022002;79977998;300000 -27271;120013934;79986066;300000 -27272;120005867;79994133;300000 -27273;119997800;80002200;300000 -27274;119989734;80010266;300000 -27275;119981668;80018332;300000 -27276;119973603;80026397;300000 -27277;119965539;80034461;300000 -27278;119957475;80042525;300000 -27279;119949412;80050588;300000 -27280;119941349;80058651;300000 -27281;119933287;80066713;300000 -27282;119925225;80074775;300000 -27283;119917165;80082835;300000 -27284;119909104;80090896;300000 -27285;119901045;80098955;300000 -27286;119892985;80107015;300000 -27287;119884927;80115073;300000 -27288;119876869;80123131;300000 -27289;119868812;80131188;300000 -27290;119860755;80139245;300000 -27291;119852699;80147301;300000 -27292;119844643;80155357;300000 -27293;119836588;80163412;300000 -27294;119828534;80171466;300000 -27295;119820480;80179520;300000 -27296;119812427;80187573;300000 -27297;119804374;80195626;300000 -27298;119796322;80203678;300000 -27299;119788271;80211729;300000 -27300;119780220;80219780;300000 -27301;119772170;80227830;300000 -27302;119764120;80235880;300000 -27303;119756071;80243929;300000 -27304;119748022;80251978;300000 -27305;119739974;80260026;300000 -27306;119731927;80268073;300000 -27307;119723880;80276120;300000 -27308;119715834;80284166;300000 -27309;119707789;80292211;300000 -27310;119699744;80300256;300000 -27311;119691699;80308301;300000 -27312;119683656;80316344;300000 -27313;119675612;80324388;300000 -27314;119667570;80332430;300000 -27315;119659528;80340472;300000 -27316;119651486;80348514;300000 -27317;119643445;80356555;300000 -27318;119635405;80364595;300000 -27319;119627366;80372634;300000 -27320;119619327;80380673;300000 -27321;119611288;80388712;300000 -27322;119603250;80396750;300000 -27323;119595213;80404787;300000 -27324;119587176;80412824;300000 -27325;119579140;80420860;300000 -27326;119571104;80428896;300000 -27327;119563069;80436931;300000 -27328;119555035;80444965;300000 -27329;119547001;80452999;300000 -27330;119538968;80461032;300000 -27331;119530936;80469064;300000 -27332;119522904;80477096;300000 -27333;119514872;80485128;300000 -27334;119506841;80493159;300000 -27335;119498811;80501189;300000 -27336;119490781;80509219;300000 -27337;119482752;80517248;300000 -27338;119474724;80525276;300000 -27339;119466696;80533304;300000 -27340;119458669;80541331;300000 -27341;119450642;80549358;300000 -27342;119442616;80557384;300000 -27343;119434590;80565410;300000 -27344;119426565;80573435;300000 -27345;119418541;80581459;300000 -27346;119410517;80589483;300000 -27347;119402494;80597506;300000 -27348;119394471;80605529;300000 -27349;119386449;80613551;300000 -27350;119378428;80621572;300000 -27351;119370407;80629593;300000 -27352;119362387;80637613;300000 -27353;119354367;80645633;300000 -27354;119346348;80653652;300000 -27355;119338329;80661671;300000 -27356;119330311;80669689;300000 -27357;119322294;80677706;300000 -27358;119314277;80685723;300000 -27359;119306261;80693739;300000 -27360;119298246;80701754;300000 -27361;119290231;80709769;300000 -27362;119282216;80717784;300000 -27363;119274202;80725798;300000 -27364;119266189;80733811;300000 -27365;119258177;80741823;300000 -27366;119250164;80749836;300000 -27367;119242153;80757847;300000 -27368;119234142;80765858;300000 -27369;119226132;80773868;300000 -27370;119218122;80781878;300000 -27371;119210113;80789887;300000 -27372;119202104;80797896;300000 -27373;119194096;80805904;300000 -27374;119186089;80813911;300000 -27375;119178082;80821918;300000 -27376;119170076;80829924;300000 -27377;119162070;80837930;300000 -27378;119154065;80845935;300000 -27379;119146061;80853939;300000 -27380;119138057;80861943;300000 -27381;119130054;80869946;300000 -27382;119122051;80877949;300000 -27383;119114049;80885951;300000 -27384;119106047;80893953;300000 -27385;119098046;80901954;300000 -27386;119090046;80909954;300000 -27387;119082046;80917954;300000 -27388;119074047;80925953;300000 -27389;119066048;80933952;300000 -27390;119058050;80941950;300000 -27391;119050053;80949947;300000 -27392;119042056;80957944;300000 -27393;119034060;80965940;300000 -27394;119026064;80973936;300000 -27395;119018069;80981931;300000 -27396;119010074;80989926;300000 -27397;119002081;80997919;300000 -27398;118994087;81005913;300000 -27399;118986094;81013906;300000 -27400;118978102;81021898;300000 -27401;118970111;81029889;300000 -27402;118962120;81037880;300000 -27403;118954129;81045871;300000 -27404;118946139;81053861;300000 -27405;118938150;81061850;300000 -27406;118930161;81069839;300000 -27407;118922173;81077827;300000 -27408;118914186;81085814;300000 -27409;118906199;81093801;300000 -27410;118898212;81101788;300000 -27411;118890227;81109773;300000 -27412;118882241;81117759;300000 -27413;118874257;81125743;300000 -27414;118866273;81133727;300000 -27415;118858289;81141711;300000 -27416;118850306;81149694;300000 -27417;118842324;81157676;300000 -27418;118834342;81165658;300000 -27419;118826361;81173639;300000 -27420;118818381;81181619;300000 -27421;118810401;81189599;300000 -27422;118802421;81197579;300000 -27423;118794443;81205557;300000 -27424;118786464;81213536;300000 -27425;118778487;81221513;300000 -27426;118770510;81229490;300000 -27427;118762533;81237467;300000 -27428;118754557;81245443;300000 -27429;118746582;81253418;300000 -27430;118738607;81261393;300000 -27431;118730633;81269367;300000 -27432;118722660;81277340;300000 -27433;118714687;81285313;300000 -27434;118706714;81293286;300000 -27435;118698742;81301258;300000 -27436;118690771;81309229;300000 -27437;118682801;81317199;300000 -27438;118674831;81325169;300000 -27439;118666861;81333139;300000 -27440;118658892;81341108;300000 -27441;118650924;81349076;300000 -27442;118642956;81357044;300000 -27443;118634989;81365011;300000 -27444;118627022;81372978;300000 -27445;118619056;81380944;300000 -27446;118611091;81388909;300000 -27447;118603126;81396874;300000 -27448;118595162;81404838;300000 -27449;118587198;81412802;300000 -27450;118579235;81420765;300000 -27451;118571272;81428728;300000 -27452;118563311;81436689;300000 -27453;118555349;81444651;300000 -27454;118547388;81452612;300000 -27455;118539428;81460572;300000 -27456;118531469;81468531;300000 -27457;118523509;81476491;300000 -27458;118515551;81484449;300000 -27459;118507593;81492407;300000 -27460;118499636;81500364;300000 -27461;118491679;81508321;300000 -27462;118483723;81516277;300000 -27463;118475767;81524233;300000 -27464;118467812;81532188;300000 -27465;118459858;81540142;300000 -27466;118451904;81548096;300000 -27467;118443951;81556049;300000 -27468;118435998;81564002;300000 -27469;118428046;81571954;300000 -27470;118420095;81579905;300000 -27471;118412144;81587856;300000 -27472;118404193;81595807;300000 -27473;118396244;81603756;300000 -27474;118388294;81611706;300000 -27475;118380346;81619654;300000 -27476;118372398;81627602;300000 -27477;118364450;81635550;300000 -27478;118356503;81643497;300000 -27479;118348557;81651443;300000 -27480;118340611;81659389;300000 -27481;118332666;81667334;300000 -27482;118324722;81675278;300000 -27483;118316778;81683222;300000 -27484;118308834;81691166;300000 -27485;118300891;81699109;300000 -27486;118292949;81707051;300000 -27487;118285007;81714993;300000 -27488;118277066;81722934;300000 -27489;118269126;81730874;300000 -27490;118261186;81738814;300000 -27491;118253247;81746753;300000 -27492;118245308;81754692;300000 -27493;118237370;81762630;300000 -27494;118229432;81770568;300000 -27495;118221495;81778505;300000 -27496;118213558;81786442;300000 -27497;118205622;81794378;300000 -27498;118197687;81802313;300000 -27499;118189752;81810248;300000 -27500;118181818;81818182;300000 -27501;118173885;81826115;300000 -27502;118165952;81834048;300000 -27503;118158019;81841981;300000 -27504;118150087;81849913;300000 -27505;118142156;81857844;300000 -27506;118134225;81865775;300000 -27507;118126295;81873705;300000 -27508;118118366;81881634;300000 -27509;118110437;81889563;300000 -27510;118102508;81897492;300000 -27511;118094580;81905420;300000 -27512;118086653;81913347;300000 -27513;118078726;81921274;300000 -27514;118070800;81929200;300000 -27515;118062875;81937125;300000 -27516;118054950;81945050;300000 -27517;118047025;81952975;300000 -27518;118039102;81960898;300000 -27519;118031178;81968822;300000 -27520;118023256;81976744;300000 -27521;118015334;81984666;300000 -27522;118007412;81992588;300000 -27523;117999491;82000509;300000 -27524;117991571;82008429;300000 -27525;117983651;82016349;300000 -27526;117975732;82024268;300000 -27527;117967813;82032187;300000 -27528;117959895;82040105;300000 -27529;117951978;82048022;300000 -27530;117944061;82055939;300000 -27531;117936145;82063855;300000 -27532;117928229;82071771;300000 -27533;117920314;82079686;300000 -27534;117912399;82087601;300000 -27535;117904485;82095515;300000 -27536;117896572;82103428;300000 -27537;117888659;82111341;300000 -27538;117880747;82119253;300000 -27539;117872835;82127165;300000 -27540;117864924;82135076;300000 -27541;117857013;82142987;300000 -27542;117849103;82150897;300000 -27543;117841194;82158806;300000 -27544;117833285;82166715;300000 -27545;117825377;82174623;300000 -27546;117817469;82182531;300000 -27547;117809562;82190438;300000 -27548;117801655;82198345;300000 -27549;117793749;82206251;300000 -27550;117785844;82214156;300000 -27551;117777939;82222061;300000 -27552;117770035;82229965;300000 -27553;117762131;82237869;300000 -27554;117754228;82245772;300000 -27555;117746326;82253674;300000 -27556;117738424;82261576;300000 -27557;117730522;82269478;300000 -27558;117722621;82277379;300000 -27559;117714721;82285279;300000 -27560;117706821;82293179;300000 -27561;117698922;82301078;300000 -27562;117691024;82308976;300000 -27563;117683126;82316874;300000 -27564;117675229;82324771;300000 -27565;117667332;82332668;300000 -27566;117659436;82340564;300000 -27567;117651540;82348460;300000 -27568;117643645;82356355;300000 -27569;117635750;82364250;300000 -27570;117627856;82372144;300000 -27571;117619963;82380037;300000 -27572;117612070;82387930;300000 -27573;117604178;82395822;300000 -27574;117596286;82403714;300000 -27575;117588395;82411605;300000 -27576;117580505;82419495;300000 -27577;117572615;82427385;300000 -27578;117564726;82435274;300000 -27579;117556837;82443163;300000 -27580;117548949;82451051;300000 -27581;117541061;82458939;300000 -27582;117533174;82466826;300000 -27583;117525287;82474713;300000 -27584;117517401;82482599;300000 -27585;117509516;82490484;300000 -27586;117501631;82498369;300000 -27587;117493747;82506253;300000 -27588;117485863;82514137;300000 -27589;117477980;82522020;300000 -27590;117470098;82529902;300000 -27591;117462216;82537784;300000 -27592;117454335;82545665;300000 -27593;117446454;82553546;300000 -27594;117438574;82561426;300000 -27595;117430694;82569306;300000 -27596;117422815;82577185;300000 -27597;117414936;82585064;300000 -27598;117407058;82592942;300000 -27599;117399181;82600819;300000 -27600;117391304;82608696;300000 -27601;117383428;82616572;300000 -27602;117375552;82624448;300000 -27603;117367677;82632323;300000 -27604;117359803;82640197;300000 -27605;117351929;82648071;300000 -27606;117344056;82655944;300000 -27607;117336183;82663817;300000 -27608;117328311;82671689;300000 -27609;117320439;82679561;300000 -27610;117312568;82687432;300000 -27611;117304697;82695303;300000 -27612;117296827;82703173;300000 -27613;117288958;82711042;300000 -27614;117281089;82718911;300000 -27615;117273221;82726779;300000 -27616;117265353;82734647;300000 -27617;117257486;82742514;300000 -27618;117249620;82750380;300000 -27619;117241754;82758246;300000 -27620;117233888;82766112;300000 -27621;117226024;82773976;300000 -27622;117218159;82781841;300000 -27623;117210296;82789704;300000 -27624;117202433;82797567;300000 -27625;117194570;82805430;300000 -27626;117186708;82813292;300000 -27627;117178847;82821153;300000 -27628;117170986;82829014;300000 -27629;117163126;82836874;300000 -27630;117155266;82844734;300000 -27631;117147407;82852593;300000 -27632;117139548;82860452;300000 -27633;117131690;82868310;300000 -27634;117123833;82876167;300000 -27635;117115976;82884024;300000 -27636;117108120;82891880;300000 -27637;117100264;82899736;300000 -27638;117092409;82907591;300000 -27639;117084554;82915446;300000 -27640;117076700;82923300;300000 -27641;117068847;82931153;300000 -27642;117060994;82939006;300000 -27643;117053142;82946858;300000 -27644;117045290;82954710;300000 -27645;117037439;82962561;300000 -27646;117029588;82970412;300000 -27647;117021738;82978262;300000 -27648;117013889;82986111;300000 -27649;117006040;82993960;300000 -27650;116998192;83001808;300000 -27651;116990344;83009656;300000 -27652;116982497;83017503;300000 -27653;116974650;83025350;300000 -27654;116966804;83033196;300000 -27655;116958959;83041041;300000 -27656;116951114;83048886;300000 -27657;116943269;83056731;300000 -27658;116935426;83064574;300000 -27659;116927582;83072418;300000 -27660;116919740;83080260;300000 -27661;116911898;83088102;300000 -27662;116904056;83095944;300000 -27663;116896215;83103785;300000 -27664;116888375;83111625;300000 -27665;116880535;83119465;300000 -27666;116872696;83127304;300000 -27667;116864857;83135143;300000 -27668;116857019;83142981;300000 -27669;116849181;83150819;300000 -27670;116841344;83158656;300000 -27671;116833508;83166492;300000 -27672;116825672;83174328;300000 -27673;116817837;83182163;300000 -27674;116810002;83189998;300000 -27675;116802168;83197832;300000 -27676;116794334;83205666;300000 -27677;116786501;83213499;300000 -27678;116778669;83221331;300000 -27679;116770837;83229163;300000 -27680;116763006;83236994;300000 -27681;116755175;83244825;300000 -27682;116747345;83252655;300000 -27683;116739515;83260485;300000 -27684;116731686;83268314;300000 -27685;116723858;83276142;300000 -27686;116716030;83283970;300000 -27687;116708202;83291798;300000 -27688;116700376;83299624;300000 -27689;116692549;83307451;300000 -27690;116684724;83315276;300000 -27691;116676899;83323101;300000 -27692;116669074;83330926;300000 -27693;116661250;83338750;300000 -27694;116653427;83346573;300000 -27695;116645604;83354396;300000 -27696;116637782;83362218;300000 -27697;116629960;83370040;300000 -27698;116622139;83377861;300000 -27699;116614318;83385682;300000 -27700;116606498;83393502;300000 -27701;116598679;83401321;300000 -27702;116590860;83409140;300000 -27703;116583042;83416958;300000 -27704;116575224;83424776;300000 -27705;116567407;83432593;300000 -27706;116559590;83440410;300000 -27707;116551774;83448226;300000 -27708;116543958;83456042;300000 -27709;116536143;83463857;300000 -27710;116528329;83471671;300000 -27711;116520515;83479485;300000 -27712;116512702;83487298;300000 -27713;116504889;83495111;300000 -27714;116497077;83502923;300000 -27715;116489266;83510734;300000 -27716;116481455;83518545;300000 -27717;116473644;83526356;300000 -27718;116465834;83534166;300000 -27719;116458025;83541975;300000 -27720;116450216;83549784;300000 -27721;116442408;83557592;300000 -27722;116434601;83565399;300000 -27723;116426794;83573206;300000 -27724;116418987;83581013;300000 -27725;116411181;83588819;300000 -27726;116403376;83596624;300000 -27727;116395571;83604429;300000 -27728;116387767;83612233;300000 -27729;116379963;83620037;300000 -27730;116372160;83627840;300000 -27731;116364358;83635642;300000 -27732;116356556;83643444;300000 -27733;116348754;83651246;300000 -27734;116340953;83659047;300000 -27735;116333153;83666847;300000 -27736;116325353;83674647;300000 -27737;116317554;83682446;300000 -27738;116309756;83690244;300000 -27739;116301958;83698042;300000 -27740;116294160;83705840;300000 -27741;116286363;83713637;300000 -27742;116278567;83721433;300000 -27743;116270771;83729229;300000 -27744;116262976;83737024;300000 -27745;116255181;83744819;300000 -27746;116247387;83752613;300000 -27747;116239593;83760407;300000 -27748;116231800;83768200;300000 -27749;116224008;83775992;300000 -27750;116216216;83783784;300000 -27751;116208425;83791575;300000 -27752;116200634;83799366;300000 -27753;116192844;83807156;300000 -27754;116185054;83814946;300000 -27755;116177265;83822735;300000 -27756;116169477;83830523;300000 -27757;116161689;83838311;300000 -27758;116153902;83846098;300000 -27759;116146115;83853885;300000 -27760;116138329;83861671;300000 -27761;116130543;83869457;300000 -27762;116122758;83877242;300000 -27763;116114973;83885027;300000 -27764;116107189;83892811;300000 -27765;116099406;83900594;300000 -27766;116091623;83908377;300000 -27767;116083841;83916159;300000 -27768;116076059;83923941;300000 -27769;116068278;83931722;300000 -27770;116060497;83939503;300000 -27771;116052717;83947283;300000 -27772;116044937;83955063;300000 -27773;116037158;83962842;300000 -27774;116029380;83970620;300000 -27775;116021602;83978398;300000 -27776;116013825;83986175;300000 -27777;116006048;83993952;300000 -27778;115998272;84001728;300000 -27779;115990496;84009504;300000 -27780;115982721;84017279;300000 -27781;115974947;84025053;300000 -27782;115967173;84032827;300000 -27783;115959400;84040600;300000 -27784;115951627;84048373;300000 -27785;115943855;84056145;300000 -27786;115936083;84063917;300000 -27787;115928312;84071688;300000 -27788;115920541;84079459;300000 -27789;115912771;84087229;300000 -27790;115905002;84094998;300000 -27791;115897233;84102767;300000 -27792;115889465;84110535;300000 -27793;115881697;84118303;300000 -27794;115873930;84126070;300000 -27795;115866163;84133837;300000 -27796;115858397;84141603;300000 -27797;115850631;84149369;300000 -27798;115842866;84157134;300000 -27799;115835102;84164898;300000 -27800;115827338;84172662;300000 -27801;115819575;84180425;300000 -27802;115811812;84188188;300000 -27803;115804050;84195950;300000 -27804;115796288;84203712;300000 -27805;115788527;84211473;300000 -27806;115780767;84219233;300000 -27807;115773007;84226993;300000 -27808;115765247;84234753;300000 -27809;115757489;84242511;300000 -27810;115749730;84250270;300000 -27811;115741973;84258027;300000 -27812;115734215;84265785;300000 -27813;115726459;84273541;300000 -27814;115718703;84281297;300000 -27815;115710947;84289053;300000 -27816;115703192;84296808;300000 -27817;115695438;84304562;300000 -27818;115687684;84312316;300000 -27819;115679931;84320069;300000 -27820;115672178;84327822;300000 -27821;115664426;84335574;300000 -27822;115656675;84343325;300000 -27823;115648924;84351076;300000 -27824;115641173;84358827;300000 -27825;115633423;84366577;300000 -27826;115625674;84374326;300000 -27827;115617925;84382075;300000 -27828;115610177;84389823;300000 -27829;115602429;84397571;300000 -27830;115594682;84405318;300000 -27831;115586935;84413065;300000 -27832;115579189;84420811;300000 -27833;115571444;84428556;300000 -27834;115563699;84436301;300000 -27835;115555955;84444045;300000 -27836;115548211;84451789;300000 -27837;115540468;84459532;300000 -27838;115532725;84467275;300000 -27839;115524983;84475017;300000 -27840;115517241;84482759;300000 -27841;115509500;84490500;300000 -27842;115501760;84498240;300000 -27843;115494020;84505980;300000 -27844;115486281;84513719;300000 -27845;115478542;84521458;300000 -27846;115470804;84529196;300000 -27847;115463066;84536934;300000 -27848;115455329;84544671;300000 -27849;115447592;84552408;300000 -27850;115439856;84560144;300000 -27851;115432121;84567879;300000 -27852;115424386;84575614;300000 -27853;115416652;84583348;300000 -27854;115408918;84591082;300000 -27855;115401185;84598815;300000 -27856;115393452;84606548;300000 -27857;115385720;84614280;300000 -27858;115377988;84622012;300000 -27859;115370257;84629743;300000 -27860;115362527;84637473;300000 -27861;115354797;84645203;300000 -27862;115347068;84652932;300000 -27863;115339339;84660661;300000 -27864;115331611;84668389;300000 -27865;115323883;84676117;300000 -27866;115316156;84683844;300000 -27867;115308429;84691571;300000 -27868;115300703;84699297;300000 -27869;115292978;84707022;300000 -27870;115285253;84714747;300000 -27871;115277529;84722471;300000 -27872;115269805;84730195;300000 -27873;115262082;84737918;300000 -27874;115254359;84745641;300000 -27875;115246637;84753363;300000 -27876;115238915;84761085;300000 -27877;115231194;84768806;300000 -27878;115223474;84776526;300000 -27879;115215754;84784246;300000 -27880;115208034;84791966;300000 -27881;115200316;84799684;300000 -27882;115192597;84807403;300000 -27883;115184880;84815120;300000 -27884;115177163;84822837;300000 -27885;115169446;84830554;300000 -27886;115161730;84838270;300000 -27887;115154014;84845986;300000 -27888;115146299;84853701;300000 -27889;115138585;84861415;300000 -27890;115130871;84869129;300000 -27891;115123158;84876842;300000 -27892;115115445;84884555;300000 -27893;115107733;84892267;300000 -27894;115100022;84899978;300000 -27895;115092310;84907690;300000 -27896;115084600;84915400;300000 -27897;115076890;84923110;300000 -27898;115069181;84930819;300000 -27899;115061472;84938528;300000 -27900;115053763;84946237;300000 -27901;115046056;84953944;300000 -27902;115038349;84961651;300000 -27903;115030642;84969358;300000 -27904;115022936;84977064;300000 -27905;115015230;84984770;300000 -27906;115007525;84992475;300000 -27907;114999821;85000179;300000 -27908;114992117;85007883;300000 -27909;114984414;85015586;300000 -27910;114976711;85023289;300000 -27911;114969009;85030991;300000 -27912;114961307;85038693;300000 -27913;114953606;85046394;300000 -27914;114945905;85054095;300000 -27915;114938205;85061795;300000 -27916;114930506;85069494;300000 -27917;114922807;85077193;300000 -27918;114915109;85084891;300000 -27919;114907411;85092589;300000 -27920;114899713;85100287;300000 -27921;114892017;85107983;300000 -27922;114884321;85115679;300000 -27923;114876625;85123375;300000 -27924;114868930;85131070;300000 -27925;114861235;85138765;300000 -27926;114853542;85146458;300000 -27927;114845848;85154152;300000 -27928;114838155;85161845;300000 -27929;114830463;85169537;300000 -27930;114822771;85177229;300000 -27931;114815080;85184920;300000 -27932;114807389;85192611;300000 -27933;114799699;85200301;300000 -27934;114792010;85207990;300000 -27935;114784321;85215679;300000 -27936;114776632;85223368;300000 -27937;114768944;85231056;300000 -27938;114761257;85238743;300000 -27939;114753570;85246430;300000 -27940;114745884;85254116;300000 -27941;114738198;85261802;300000 -27942;114730513;85269487;300000 -27943;114722829;85277171;300000 -27944;114715145;85284855;300000 -27945;114707461;85292539;300000 -27946;114699778;85300222;300000 -27947;114692096;85307904;300000 -27948;114684414;85315586;300000 -27949;114676733;85323267;300000 -27950;114669052;85330948;300000 -27951;114661372;85338628;300000 -27952;114653692;85346308;300000 -27953;114646013;85353987;300000 -27954;114638334;85361666;300000 -27955;114630656;85369344;300000 -27956;114622979;85377021;300000 -27957;114615302;85384698;300000 -27958;114607626;85392374;300000 -27959;114599950;85400050;300000 -27960;114592275;85407725;300000 -27961;114584600;85415400;300000 -27962;114576926;85423074;300000 -27963;114569252;85430748;300000 -27964;114561579;85438421;300000 -27965;114553907;85446093;300000 -27966;114546235;85453765;300000 -27967;114538563;85461437;300000 -27968;114530892;85469108;300000 -27969;114523222;85476778;300000 -27970;114515552;85484448;300000 -27971;114507883;85492117;300000 -27972;114500215;85499785;300000 -27973;114492546;85507454;300000 -27974;114484879;85515121;300000 -27975;114477212;85522788;300000 -27976;114469545;85530455;300000 -27977;114461879;85538121;300000 -27978;114454214;85545786;300000 -27979;114446549;85553451;300000 -27980;114438885;85561115;300000 -27981;114431221;85568779;300000 -27982;114423558;85576442;300000 -27983;114415895;85584105;300000 -27984;114408233;85591767;300000 -27985;114400572;85599428;300000 -27986;114392911;85607089;300000 -27987;114385250;85614750;300000 -27988;114377590;85622410;300000 -27989;114369931;85630069;300000 -27990;114362272;85637728;300000 -27991;114354614;85645386;300000 -27992;114346956;85653044;300000 -27993;114339299;85660701;300000 -27994;114331642;85668358;300000 -27995;114323986;85676014;300000 -27996;114316331;85683669;300000 -27997;114308676;85691324;300000 -27998;114301022;85698978;300000 -27999;114293368;85706632;300000 -28000;114285714;85714286;300000 -28001;114278061;85721939;300000 -28002;114270409;85729591;300000 -28003;114262758;85737242;300000 -28004;114255106;85744894;300000 -28005;114247456;85752544;300000 -28006;114239806;85760194;300000 -28007;114232156;85767844;300000 -28008;114224507;85775493;300000 -28009;114216859;85783141;300000 -28010;114209211;85790789;300000 -28011;114201564;85798436;300000 -28012;114193917;85806083;300000 -28013;114186271;85813729;300000 -28014;114178625;85821375;300000 -28015;114170980;85829020;300000 -28016;114163335;85836665;300000 -28017;114155691;85844309;300000 -28018;114148048;85851952;300000 -28019;114140405;85859595;300000 -28020;114132762;85867238;300000 -28021;114125120;85874880;300000 -28022;114117479;85882521;300000 -28023;114109838;85890162;300000 -28024;114102198;85897802;300000 -28025;114094558;85905442;300000 -28026;114086919;85913081;300000 -28027;114079281;85920719;300000 -28028;114071643;85928357;300000 -28029;114064005;85935995;300000 -28030;114056368;85943632;300000 -28031;114048732;85951268;300000 -28032;114041096;85958904;300000 -28033;114033461;85966539;300000 -28034;114025826;85974174;300000 -28035;114018192;85981808;300000 -28036;114010558;85989442;300000 -28037;114002925;85997075;300000 -28038;113995292;86004708;300000 -28039;113987660;86012340;300000 -28040;113980029;86019971;300000 -28041;113972398;86027602;300000 -28042;113964767;86035233;300000 -28043;113957137;86042863;300000 -28044;113949508;86050492;300000 -28045;113941879;86058121;300000 -28046;113934251;86065749;300000 -28047;113926623;86073377;300000 -28048;113918996;86081004;300000 -28049;113911369;86088631;300000 -28050;113903743;86096257;300000 -28051;113896118;86103882;300000 -28052;113888493;86111507;300000 -28053;113880868;86119132;300000 -28054;113873244;86126756;300000 -28055;113865621;86134379;300000 -28056;113857998;86142002;300000 -28057;113850376;86149624;300000 -28058;113842754;86157246;300000 -28059;113835133;86164867;300000 -28060;113827512;86172488;300000 -28061;113819892;86180108;300000 -28062;113812273;86187727;300000 -28063;113804654;86195346;300000 -28064;113797035;86202965;300000 -28065;113789417;86210583;300000 -28066;113781800;86218200;300000 -28067;113774183;86225817;300000 -28068;113766567;86233433;300000 -28069;113758951;86241049;300000 -28070;113751336;86248664;300000 -28071;113743721;86256279;300000 -28072;113736107;86263893;300000 -28073;113728494;86271506;300000 -28074;113720881;86279119;300000 -28075;113713268;86286732;300000 -28076;113705656;86294344;300000 -28077;113698045;86301955;300000 -28078;113690434;86309566;300000 -28079;113682823;86317177;300000 -28080;113675214;86324786;300000 -28081;113667604;86332396;300000 -28082;113659996;86340004;300000 -28083;113652388;86347612;300000 -28084;113644780;86355220;300000 -28085;113637173;86362827;300000 -28086;113629566;86370434;300000 -28087;113621960;86378040;300000 -28088;113614355;86385645;300000 -28089;113606750;86393250;300000 -28090;113599146;86400854;300000 -28091;113591542;86408458;300000 -28092;113583938;86416062;300000 -28093;113576336;86423664;300000 -28094;113568734;86431266;300000 -28095;113561132;86438868;300000 -28096;113553531;86446469;300000 -28097;113545930;86454070;300000 -28098;113538330;86461670;300000 -28099;113530731;86469269;300000 -28100;113523132;86476868;300000 -28101;113515533;86484467;300000 -28102;113507935;86492065;300000 -28103;113500338;86499662;300000 -28104;113492741;86507259;300000 -28105;113485145;86514855;300000 -28106;113477549;86522451;300000 -28107;113469954;86530046;300000 -28108;113462359;86537641;300000 -28109;113454765;86545235;300000 -28110;113447172;86552828;300000 -28111;113439579;86560421;300000 -28112;113431986;86568014;300000 -28113;113424394;86575606;300000 -28114;113416803;86583197;300000 -28115;113409212;86590788;300000 -28116;113401622;86598378;300000 -28117;113394032;86605968;300000 -28118;113386443;86613557;300000 -28119;113378854;86621146;300000 -28120;113371266;86628734;300000 -28121;113363678;86636322;300000 -28122;113356091;86643909;300000 -28123;113348505;86651495;300000 -28124;113340919;86659081;300000 -28125;113333333;86666667;300000 -28126;113325748;86674252;300000 -28127;113318164;86681836;300000 -28128;113310580;86689420;300000 -28129;113302997;86697003;300000 -28130;113295414;86704586;300000 -28131;113287832;86712168;300000 -28132;113280250;86719750;300000 -28133;113272669;86727331;300000 -28134;113265089;86734911;300000 -28135;113257508;86742492;300000 -28136;113249929;86750071;300000 -28137;113242350;86757650;300000 -28138;113234771;86765229;300000 -28139;113227194;86772806;300000 -28140;113219616;86780384;300000 -28141;113212039;86787961;300000 -28142;113204463;86795537;300000 -28143;113196887;86803113;300000 -28144;113189312;86810688;300000 -28145;113181737;86818263;300000 -28146;113174163;86825837;300000 -28147;113166590;86833410;300000 -28148;113159017;86840983;300000 -28149;113151444;86848556;300000 -28150;113143872;86856128;300000 -28151;113136301;86863699;300000 -28152;113128730;86871270;300000 -28153;113121159;86878841;300000 -28154;113113590;86886410;300000 -28155;113106020;86893980;300000 -28156;113098451;86901549;300000 -28157;113090883;86909117;300000 -28158;113083316;86916684;300000 -28159;113075748;86924252;300000 -28160;113068182;86931818;300000 -28161;113060616;86939384;300000 -28162;113053050;86946950;300000 -28163;113045485;86954515;300000 -28164;113037921;86962079;300000 -28165;113030357;86969643;300000 -28166;113022793;86977207;300000 -28167;113015231;86984769;300000 -28168;113007668;86992332;300000 -28169;113000107;86999893;300000 -28170;112992545;87007455;300000 -28171;112984985;87015015;300000 -28172;112977424;87022576;300000 -28173;112969865;87030135;300000 -28174;112962306;87037694;300000 -28175;112954747;87045253;300000 -28176;112947189;87052811;300000 -28177;112939632;87060368;300000 -28178;112932075;87067925;300000 -28179;112924518;87075482;300000 -28180;112916962;87083038;300000 -28181;112909407;87090593;300000 -28182;112901852;87098148;300000 -28183;112894298;87105702;300000 -28184;112886744;87113256;300000 -28185;112879191;87120809;300000 -28186;112871638;87128362;300000 -28187;112864086;87135914;300000 -28188;112856535;87143465;300000 -28189;112848984;87151016;300000 -28190;112841433;87158567;300000 -28191;112833883;87166117;300000 -28192;112826334;87173666;300000 -28193;112818785;87181215;300000 -28194;112811236;87188764;300000 -28195;112803689;87196311;300000 -28196;112796141;87203859;300000 -28197;112788595;87211405;300000 -28198;112781048;87218952;300000 -28199;112773503;87226497;300000 -28200;112765957;87234043;300000 -28201;112758413;87241587;300000 -28202;112750869;87249131;300000 -28203;112743325;87256675;300000 -28204;112735782;87264218;300000 -28205;112728240;87271760;300000 -28206;112720698;87279302;300000 -28207;112713156;87286844;300000 -28208;112705615;87294385;300000 -28209;112698075;87301925;300000 -28210;112690535;87309465;300000 -28211;112682996;87317004;300000 -28212;112675457;87324543;300000 -28213;112667919;87332081;300000 -28214;112660381;87339619;300000 -28215;112652844;87347156;300000 -28216;112645308;87354692;300000 -28217;112637772;87362228;300000 -28218;112630236;87369764;300000 -28219;112622701;87377299;300000 -28220;112615167;87384833;300000 -28221;112607633;87392367;300000 -28222;112600099;87399901;300000 -28223;112592566;87407434;300000 -28224;112585034;87414966;300000 -28225;112577502;87422498;300000 -28226;112569971;87430029;300000 -28227;112562440;87437560;300000 -28228;112554910;87445090;300000 -28229;112547380;87452620;300000 -28230;112539851;87460149;300000 -28231;112532323;87467677;300000 -28232;112524795;87475205;300000 -28233;112517267;87482733;300000 -28234;112509740;87490260;300000 -28235;112502214;87497786;300000 -28236;112494688;87505312;300000 -28237;112487162;87512838;300000 -28238;112479637;87520363;300000 -28239;112472113;87527887;300000 -28240;112464589;87535411;300000 -28241;112457066;87542934;300000 -28242;112449543;87550457;300000 -28243;112442021;87557979;300000 -28244;112434499;87565501;300000 -28245;112426978;87573022;300000 -28246;112419458;87580542;300000 -28247;112411938;87588062;300000 -28248;112404418;87595582;300000 -28249;112396899;87603101;300000 -28250;112389381;87610619;300000 -28251;112381863;87618137;300000 -28252;112374345;87625655;300000 -28253;112366828;87633172;300000 -28254;112359312;87640688;300000 -28255;112351796;87648204;300000 -28256;112344281;87655719;300000 -28257;112336766;87663234;300000 -28258;112329252;87670748;300000 -28259;112321738;87678262;300000 -28260;112314225;87685775;300000 -28261;112306712;87693288;300000 -28262;112299200;87700800;300000 -28263;112291689;87708311;300000 -28264;112284178;87715822;300000 -28265;112276667;87723333;300000 -28266;112269157;87730843;300000 -28267;112261648;87738352;300000 -28268;112254139;87745861;300000 -28269;112246631;87753369;300000 -28270;112239123;87760877;300000 -28271;112231615;87768385;300000 -28272;112224109;87775891;300000 -28273;112216602;87783398;300000 -28274;112209097;87790903;300000 -28275;112201592;87798408;300000 -28276;112194087;87805913;300000 -28277;112186583;87813417;300000 -28278;112179079;87820921;300000 -28279;112171576;87828424;300000 -28280;112164074;87835926;300000 -28281;112156572;87843428;300000 -28282;112149070;87850930;300000 -28283;112141569;87858431;300000 -28284;112134069;87865931;300000 -28285;112126569;87873431;300000 -28286;112119070;87880930;300000 -28287;112111571;87888429;300000 -28288;112104072;87895928;300000 -28289;112096575;87903425;300000 -28290;112089077;87910923;300000 -28291;112081581;87918419;300000 -28292;112074085;87925915;300000 -28293;112066589;87933411;300000 -28294;112059094;87940906;300000 -28295;112051599;87948401;300000 -28296;112044105;87955895;300000 -28297;112036612;87963388;300000 -28298;112029119;87970881;300000 -28299;112021626;87978374;300000 -28300;112014134;87985866;300000 -28301;112006643;87993357;300000 -28302;111999152;88000848;300000 -28303;111991662;88008338;300000 -28304;111984172;88015828;300000 -28305;111976683;88023317;300000 -28306;111969194;88030806;300000 -28307;111961706;88038294;300000 -28308;111954218;88045782;300000 -28309;111946731;88053269;300000 -28310;111939244;88060756;300000 -28311;111931758;88068242;300000 -28312;111924272;88075728;300000 -28313;111916787;88083213;300000 -28314;111909303;88090697;300000 -28315;111901819;88098181;300000 -28316;111894335;88105665;300000 -28317;111886852;88113148;300000 -28318;111879370;88120630;300000 -28319;111871888;88128112;300000 -28320;111864407;88135593;300000 -28321;111856926;88143074;300000 -28322;111849446;88150554;300000 -28323;111841966;88158034;300000 -28324;111834487;88165513;300000 -28325;111827008;88172992;300000 -28326;111819530;88180470;300000 -28327;111812052;88187948;300000 -28328;111804575;88195425;300000 -28329;111797098;88202902;300000 -28330;111789622;88210378;300000 -28331;111782147;88217853;300000 -28332;111774672;88225328;300000 -28333;111767197;88232803;300000 -28334;111759723;88240277;300000 -28335;111752250;88247750;300000 -28336;111744777;88255223;300000 -28337;111737305;88262695;300000 -28338;111729833;88270167;300000 -28339;111722361;88277639;300000 -28340;111714891;88285109;300000 -28341;111707420;88292580;300000 -28342;111699951;88300049;300000 -28343;111692481;88307519;300000 -28344;111685013;88314987;300000 -28345;111677545;88322455;300000 -28346;111670077;88329923;300000 -28347;111662610;88337390;300000 -28348;111655143;88344857;300000 -28349;111647677;88352323;300000 -28350;111640212;88359788;300000 -28351;111632747;88367253;300000 -28352;111625282;88374718;300000 -28353;111617818;88382182;300000 -28354;111610355;88389645;300000 -28355;111602892;88397108;300000 -28356;111595430;88404570;300000 -28357;111587968;88412032;300000 -28358;111580506;88419494;300000 -28359;111573046;88426954;300000 -28360;111565585;88434415;300000 -28361;111558126;88441874;300000 -28362;111550666;88449334;300000 -28363;111543208;88456792;300000 -28364;111535750;88464250;300000 -28365;111528292;88471708;300000 -28366;111520835;88479165;300000 -28367;111513378;88486622;300000 -28368;111505922;88494078;300000 -28369;111498467;88501533;300000 -28370;111491012;88508988;300000 -28371;111483557;88516443;300000 -28372;111476103;88523897;300000 -28373;111468650;88531350;300000 -28374;111461197;88538803;300000 -28375;111453744;88546256;300000 -28376;111446293;88553707;300000 -28377;111438841;88561159;300000 -28378;111431391;88568609;300000 -28379;111423940;88576060;300000 -28380;111416490;88583510;300000 -28381;111409041;88590959;300000 -28382;111401593;88598407;300000 -28383;111394144;88605856;300000 -28384;111386697;88613303;300000 -28385;111379250;88620750;300000 -28386;111371803;88628197;300000 -28387;111364357;88635643;300000 -28388;111356911;88643089;300000 -28389;111349466;88650534;300000 -28390;111342022;88657978;300000 -28391;111334578;88665422;300000 -28392;111327134;88672866;300000 -28393;111319691;88680309;300000 -28394;111312249;88687751;300000 -28395;111304807;88695193;300000 -28396;111297366;88702634;300000 -28397;111289925;88710075;300000 -28398;111282485;88717515;300000 -28399;111275045;88724955;300000 -28400;111267606;88732394;300000 -28401;111260167;88739833;300000 -28402;111252729;88747271;300000 -28403;111245291;88754709;300000 -28404;111237854;88762146;300000 -28405;111230417;88769583;300000 -28406;111222981;88777019;300000 -28407;111215545;88784455;300000 -28408;111208110;88791890;300000 -28409;111200676;88799324;300000 -28410;111193242;88806758;300000 -28411;111185808;88814192;300000 -28412;111178375;88821625;300000 -28413;111170943;88829057;300000 -28414;111163511;88836489;300000 -28415;111156080;88843920;300000 -28416;111148649;88851351;300000 -28417;111141218;88858782;300000 -28418;111133788;88866212;300000 -28419;111126359;88873641;300000 -28420;111118930;88881070;300000 -28421;111111502;88888498;300000 -28422;111104074;88895926;300000 -28423;111096647;88903353;300000 -28424;111089220;88910780;300000 -28425;111081794;88918206;300000 -28426;111074369;88925631;300000 -28427;111066943;88933057;300000 -28428;111059519;88940481;300000 -28429;111052095;88947905;300000 -28430;111044671;88955329;300000 -28431;111037248;88962752;300000 -28432;111029826;88970174;300000 -28433;111022404;88977596;300000 -28434;111014982;88985018;300000 -28435;111007561;88992439;300000 -28436;111000141;88999859;300000 -28437;110992721;89007279;300000 -28438;110985301;89014699;300000 -28439;110977882;89022118;300000 -28440;110970464;89029536;300000 -28441;110963046;89036954;300000 -28442;110955629;89044371;300000 -28443;110948212;89051788;300000 -28444;110940796;89059204;300000 -28445;110933380;89066620;300000 -28446;110925965;89074035;300000 -28447;110918550;89081450;300000 -28448;110911136;89088864;300000 -28449;110903722;89096278;300000 -28450;110896309;89103691;300000 -28451;110888897;89111103;300000 -28452;110881485;89118515;300000 -28453;110874073;89125927;300000 -28454;110866662;89133338;300000 -28455;110859251;89140749;300000 -28456;110851841;89148159;300000 -28457;110844432;89155568;300000 -28458;110837023;89162977;300000 -28459;110829615;89170385;300000 -28460;110822207;89177793;300000 -28461;110814799;89185201;300000 -28462;110807392;89192608;300000 -28463;110799986;89200014;300000 -28464;110792580;89207420;300000 -28465;110785175;89214825;300000 -28466;110777770;89222230;300000 -28467;110770366;89229634;300000 -28468;110762962;89237038;300000 -28469;110755559;89244441;300000 -28470;110748156;89251844;300000 -28471;110740754;89259246;300000 -28472;110733352;89266648;300000 -28473;110725951;89274049;300000 -28474;110718550;89281450;300000 -28475;110711150;89288850;300000 -28476;110703751;89296249;300000 -28477;110696351;89303649;300000 -28478;110688953;89311047;300000 -28479;110681555;89318445;300000 -28480;110674157;89325843;300000 -28481;110666760;89333240;300000 -28482;110659364;89340636;300000 -28483;110651968;89348032;300000 -28484;110644572;89355428;300000 -28485;110637177;89362823;300000 -28486;110629783;89370217;300000 -28487;110622389;89377611;300000 -28488;110614996;89385004;300000 -28489;110607603;89392397;300000 -28490;110600211;89399789;300000 -28491;110592819;89407181;300000 -28492;110585427;89414573;300000 -28493;110578037;89421963;300000 -28494;110570646;89429354;300000 -28495;110563257;89436743;300000 -28496;110555867;89444133;300000 -28497;110548479;89451521;300000 -28498;110541091;89458909;300000 -28499;110533703;89466297;300000 -28500;110526316;89473684;300000 -28501;110518929;89481071;300000 -28502;110511543;89488457;300000 -28503;110504157;89495843;300000 -28504;110496772;89503228;300000 -28505;110489388;89510612;300000 -28506;110482004;89517996;300000 -28507;110474620;89525380;300000 -28508;110467237;89532763;300000 -28509;110459855;89540145;300000 -28510;110452473;89547527;300000 -28511;110445091;89554909;300000 -28512;110437710;89562290;300000 -28513;110430330;89569670;300000 -28514;110422950;89577050;300000 -28515;110415571;89584429;300000 -28516;110408192;89591808;300000 -28517;110400814;89599186;300000 -28518;110393436;89606564;300000 -28519;110386058;89613942;300000 -28520;110378682;89621318;300000 -28521;110371305;89628695;300000 -28522;110363930;89636070;300000 -28523;110356554;89643446;300000 -28524;110349180;89650820;300000 -28525;110341805;89658195;300000 -28526;110334432;89665568;300000 -28527;110327059;89672941;300000 -28528;110319686;89680314;300000 -28529;110312314;89687686;300000 -28530;110304942;89695058;300000 -28531;110297571;89702429;300000 -28532;110290200;89709800;300000 -28533;110282830;89717170;300000 -28534;110275461;89724539;300000 -28535;110268092;89731908;300000 -28536;110260723;89739277;300000 -28537;110253355;89746645;300000 -28538;110245988;89754012;300000 -28539;110238621;89761379;300000 -28540;110231254;89768746;300000 -28541;110223888;89776112;300000 -28542;110216523;89783477;300000 -28543;110209158;89790842;300000 -28544;110201794;89798206;300000 -28545;110194430;89805570;300000 -28546;110187066;89812934;300000 -28547;110179704;89820296;300000 -28548;110172341;89827659;300000 -28549;110164980;89835020;300000 -28550;110157618;89842382;300000 -28551;110150257;89849743;300000 -28552;110142897;89857103;300000 -28553;110135537;89864463;300000 -28554;110128178;89871822;300000 -28555;110120819;89879181;300000 -28556;110113461;89886539;300000 -28557;110106104;89893896;300000 -28558;110098746;89901254;300000 -28559;110091390;89908610;300000 -28560;110084034;89915966;300000 -28561;110076678;89923322;300000 -28562;110069323;89930677;300000 -28563;110061968;89938032;300000 -28564;110054614;89945386;300000 -28565;110047261;89952739;300000 -28566;110039908;89960092;300000 -28567;110032555;89967445;300000 -28568;110025203;89974797;300000 -28569;110017852;89982148;300000 -28570;110010501;89989499;300000 -28571;110003150;89996850;300000 -28572;109995800;90004200;300000 -28573;109988451;90011549;300000 -28574;109981102;90018898;300000 -28575;109973753;90026247;300000 -28576;109966405;90033595;300000 -28577;109959058;90040942;300000 -28578;109951711;90048289;300000 -28579;109944365;90055635;300000 -28580;109937019;90062981;300000 -28581;109929674;90070326;300000 -28582;109922329;90077671;300000 -28583;109914984;90085016;300000 -28584;109907641;90092359;300000 -28585;109900297;90099703;300000 -28586;109892955;90107045;300000 -28587;109885612;90114388;300000 -28588;109878271;90121729;300000 -28589;109870929;90129071;300000 -28590;109863589;90136411;300000 -28591;109856248;90143752;300000 -28592;109848909;90151091;300000 -28593;109841570;90158430;300000 -28594;109834231;90165769;300000 -28595;109826893;90173107;300000 -28596;109819555;90180445;300000 -28597;109812218;90187782;300000 -28598;109804881;90195119;300000 -28599;109797545;90202455;300000 -28600;109790210;90209790;300000 -28601;109782875;90217125;300000 -28602;109775540;90224460;300000 -28603;109768206;90231794;300000 -28604;109760873;90239127;300000 -28605;109753540;90246460;300000 -28606;109746207;90253793;300000 -28607;109738875;90261125;300000 -28608;109731544;90268456;300000 -28609;109724213;90275787;300000 -28610;109716882;90283118;300000 -28611;109709552;90290448;300000 -28612;109702223;90297777;300000 -28613;109694894;90305106;300000 -28614;109687566;90312434;300000 -28615;109680238;90319762;300000 -28616;109672910;90327090;300000 -28617;109665583;90334417;300000 -28618;109658257;90341743;300000 -28619;109650931;90349069;300000 -28620;109643606;90356394;300000 -28621;109636281;90363719;300000 -28622;109628957;90371043;300000 -28623;109621633;90378367;300000 -28624;109614310;90385690;300000 -28625;109606987;90393013;300000 -28626;109599665;90400335;300000 -28627;109592343;90407657;300000 -28628;109585022;90414978;300000 -28629;109577701;90422299;300000 -28630;109570381;90429619;300000 -28631;109563061;90436939;300000 -28632;109555742;90444258;300000 -28633;109548423;90451577;300000 -28634;109541105;90458895;300000 -28635;109533787;90466213;300000 -28636;109526470;90473530;300000 -28637;109519154;90480846;300000 -28638;109511837;90488163;300000 -28639;109504522;90495478;300000 -28640;109497207;90502793;300000 -28641;109489892;90510108;300000 -28642;109482578;90517422;300000 -28643;109475264;90524736;300000 -28644;109467951;90532049;300000 -28645;109460639;90539361;300000 -28646;109453327;90546673;300000 -28647;109446015;90553985;300000 -28648;109438704;90561296;300000 -28649;109431394;90568606;300000 -28650;109424084;90575916;300000 -28651;109416774;90583226;300000 -28652;109409465;90590535;300000 -28653;109402157;90597843;300000 -28654;109394849;90605151;300000 -28655;109387541;90612459;300000 -28656;109380235;90619765;300000 -28657;109372928;90627072;300000 -28658;109365622;90634378;300000 -28659;109358317;90641683;300000 -28660;109351012;90648988;300000 -28661;109343707;90656293;300000 -28662;109336404;90663596;300000 -28663;109329100;90670900;300000 -28664;109321797;90678203;300000 -28665;109314495;90685505;300000 -28666;109307193;90692807;300000 -28667;109299892;90700108;300000 -28668;109292591;90707409;300000 -28669;109285291;90714709;300000 -28670;109277991;90722009;300000 -28671;109270692;90729308;300000 -28672;109263393;90736607;300000 -28673;109256095;90743905;300000 -28674;109248797;90751203;300000 -28675;109241500;90758500;300000 -28676;109234203;90765797;300000 -28677;109226907;90773093;300000 -28678;109219611;90780389;300000 -28679;109212316;90787684;300000 -28680;109205021;90794979;300000 -28681;109197727;90802273;300000 -28682;109190433;90809567;300000 -28683;109183140;90816860;300000 -28684;109175847;90824153;300000 -28685;109168555;90831445;300000 -28686;109161263;90838737;300000 -28687;109153972;90846028;300000 -28688;109146682;90853318;300000 -28689;109139391;90860609;300000 -28690;109132102;90867898;300000 -28691;109124813;90875187;300000 -28692;109117524;90882476;300000 -28693;109110236;90889764;300000 -28694;109102948;90897052;300000 -28695;109095661;90904339;300000 -28696;109088375;90911625;300000 -28697;109081089;90918911;300000 -28698;109073803;90926197;300000 -28699;109066518;90933482;300000 -28700;109059233;90940767;300000 -28701;109051949;90948051;300000 -28702;109044666;90955334;300000 -28703;109037383;90962617;300000 -28704;109030100;90969900;300000 -28705;109022818;90977182;300000 -28706;109015537;90984463;300000 -28707;109008256;90991744;300000 -28708;109000975;90999025;300000 -28709;108993695;91006305;300000 -28710;108986416;91013584;300000 -28711;108979137;91020863;300000 -28712;108971858;91028142;300000 -28713;108964581;91035419;300000 -28714;108957303;91042697;300000 -28715;108950026;91049974;300000 -28716;108942750;91057250;300000 -28717;108935474;91064526;300000 -28718;108928198;91071802;300000 -28719;108920923;91079077;300000 -28720;108913649;91086351;300000 -28721;108906375;91093625;300000 -28722;108899102;91100898;300000 -28723;108891829;91108171;300000 -28724;108884556;91115444;300000 -28725;108877285;91122715;300000 -28726;108870013;91129987;300000 -28727;108862742;91137258;300000 -28728;108855472;91144528;300000 -28729;108848202;91151798;300000 -28730;108840933;91159067;300000 -28731;108833664;91166336;300000 -28732;108826396;91173604;300000 -28733;108819128;91180872;300000 -28734;108811861;91188139;300000 -28735;108804594;91195406;300000 -28736;108797327;91202673;300000 -28737;108790062;91209938;300000 -28738;108782796;91217204;300000 -28739;108775532;91224468;300000 -28740;108768267;91231733;300000 -28741;108761003;91238997;300000 -28742;108753740;91246260;300000 -28743;108746477;91253523;300000 -28744;108739215;91260785;300000 -28745;108731953;91268047;300000 -28746;108724692;91275308;300000 -28747;108717431;91282569;300000 -28748;108710171;91289829;300000 -28749;108702911;91297089;300000 -28750;108695652;91304348;300000 -28751;108688393;91311607;300000 -28752;108681135;91318865;300000 -28753;108673878;91326122;300000 -28754;108666620;91333380;300000 -28755;108659364;91340636;300000 -28756;108652107;91347893;300000 -28757;108644852;91355148;300000 -28758;108637596;91362404;300000 -28759;108630342;91369658;300000 -28760;108623088;91376912;300000 -28761;108615834;91384166;300000 -28762;108608581;91391419;300000 -28763;108601328;91398672;300000 -28764;108594076;91405924;300000 -28765;108586824;91413176;300000 -28766;108579573;91420427;300000 -28767;108572322;91427678;300000 -28768;108565072;91434928;300000 -28769;108557823;91442177;300000 -28770;108550574;91449426;300000 -28771;108543325;91456675;300000 -28772;108536077;91463923;300000 -28773;108528829;91471171;300000 -28774;108521582;91478418;300000 -28775;108514335;91485665;300000 -28776;108507089;91492911;300000 -28777;108499844;91500156;300000 -28778;108492599;91507401;300000 -28779;108485354;91514646;300000 -28780;108478110;91521890;300000 -28781;108470866;91529134;300000 -28782;108463623;91536377;300000 -28783;108456381;91543619;300000 -28784;108449138;91550862;300000 -28785;108441897;91558103;300000 -28786;108434656;91565344;300000 -28787;108427415;91572585;300000 -28788;108420175;91579825;300000 -28789;108412935;91587065;300000 -28790;108405696;91594304;300000 -28791;108398458;91601542;300000 -28792;108391220;91608780;300000 -28793;108383982;91616018;300000 -28794;108376745;91623255;300000 -28795;108369509;91630491;300000 -28796;108362273;91637727;300000 -28797;108355037;91644963;300000 -28798;108347802;91652198;300000 -28799;108340567;91659433;300000 -28800;108333333;91666667;300000 -28801;108326100;91673900;300000 -28802;108318867;91681133;300000 -28803;108311634;91688366;300000 -28804;108304402;91695598;300000 -28805;108297171;91702829;300000 -28806;108289940;91710060;300000 -28807;108282709;91717291;300000 -28808;108275479;91724521;300000 -28809;108268250;91731750;300000 -28810;108261020;91738980;300000 -28811;108253792;91746208;300000 -28812;108246564;91753436;300000 -28813;108239336;91760664;300000 -28814;108232109;91767891;300000 -28815;108224883;91775117;300000 -28816;108217657;91782343;300000 -28817;108210431;91789569;300000 -28818;108203206;91796794;300000 -28819;108195982;91804018;300000 -28820;108188758;91811242;300000 -28821;108181534;91818466;300000 -28822;108174311;91825689;300000 -28823;108167089;91832911;300000 -28824;108159867;91840133;300000 -28825;108152645;91847355;300000 -28826;108145424;91854576;300000 -28827;108138204;91861796;300000 -28828;108130984;91869016;300000 -28829;108123764;91876236;300000 -28830;108116545;91883455;300000 -28831;108109327;91890673;300000 -28832;108102109;91897891;300000 -28833;108094891;91905109;300000 -28834;108087674;91912326;300000 -28835;108080458;91919542;300000 -28836;108073242;91926758;300000 -28837;108066026;91933974;300000 -28838;108058811;91941189;300000 -28839;108051597;91948403;300000 -28840;108044383;91955617;300000 -28841;108037169;91962831;300000 -28842;108029956;91970044;300000 -28843;108022744;91977256;300000 -28844;108015532;91984468;300000 -28845;108008320;91991680;300000 -28846;108001109;91998891;300000 -28847;107993899;92006101;300000 -28848;107986689;92013311;300000 -28849;107979479;92020521;300000 -28850;107972270;92027730;300000 -28851;107965062;92034938;300000 -28852;107957854;92042146;300000 -28853;107950646;92049354;300000 -28854;107943439;92056561;300000 -28855;107936233;92063767;300000 -28856;107929027;92070973;300000 -28857;107921821;92078179;300000 -28858;107914616;92085384;300000 -28859;107907412;92092588;300000 -28860;107900208;92099792;300000 -28861;107893004;92106996;300000 -28862;107885801;92114199;300000 -28863;107878599;92121401;300000 -28864;107871397;92128603;300000 -28865;107864195;92135805;300000 -28866;107856994;92143006;300000 -28867;107849794;92150206;300000 -28868;107842594;92157406;300000 -28869;107835394;92164606;300000 -28870;107828195;92171805;300000 -28871;107820997;92179003;300000 -28872;107813799;92186201;300000 -28873;107806601;92193399;300000 -28874;107799404;92200596;300000 -28875;107792208;92207792;300000 -28876;107785012;92214988;300000 -28877;107777816;92222184;300000 -28878;107770621;92229379;300000 -28879;107763427;92236573;300000 -28880;107756233;92243767;300000 -28881;107749039;92250961;300000 -28882;107741846;92258154;300000 -28883;107734654;92265346;300000 -28884;107727462;92272538;300000 -28885;107720270;92279730;300000 -28886;107713079;92286921;300000 -28887;107705888;92294112;300000 -28888;107698698;92301302;300000 -28889;107691509;92308491;300000 -28890;107684320;92315680;300000 -28891;107677131;92322869;300000 -28892;107669943;92330057;300000 -28893;107662756;92337244;300000 -28894;107655569;92344431;300000 -28895;107648382;92351618;300000 -28896;107641196;92358804;300000 -28897;107634010;92365990;300000 -28898;107626825;92373175;300000 -28899;107619641;92380359;300000 -28900;107612457;92387543;300000 -28901;107605273;92394727;300000 -28902;107598090;92401910;300000 -28903;107590908;92409092;300000 -28904;107583725;92416275;300000 -28905;107576544;92423456;300000 -28906;107569363;92430637;300000 -28907;107562182;92437818;300000 -28908;107555002;92444998;300000 -28909;107547822;92452178;300000 -28910;107540643;92459357;300000 -28911;107533465;92466535;300000 -28912;107526287;92473713;300000 -28913;107519109;92480891;300000 -28914;107511932;92488068;300000 -28915;107504755;92495245;300000 -28916;107497579;92502421;300000 -28917;107490404;92509596;300000 -28918;107483228;92516772;300000 -28919;107476054;92523946;300000 -28920;107468880;92531120;300000 -28921;107461706;92538294;300000 -28922;107454533;92545467;300000 -28923;107447360;92552640;300000 -28924;107440188;92559812;300000 -28925;107433016;92566984;300000 -28926;107425845;92574155;300000 -28927;107418675;92581325;300000 -28928;107411504;92588496;300000 -28929;107404335;92595665;300000 -28930;107397166;92602834;300000 -28931;107389997;92610003;300000 -28932;107382829;92617171;300000 -28933;107375661;92624339;300000 -28934;107368494;92631506;300000 -28935;107361327;92638673;300000 -28936;107354161;92645839;300000 -28937;107346995;92653005;300000 -28938;107339830;92660170;300000 -28939;107332665;92667335;300000 -28940;107325501;92674499;300000 -28941;107318337;92681663;300000 -28942;107311174;92688826;300000 -28943;107304011;92695989;300000 -28944;107296849;92703151;300000 -28945;107289687;92710313;300000 -28946;107282526;92717474;300000 -28947;107275365;92724635;300000 -28948;107268205;92731795;300000 -28949;107261045;92738955;300000 -28950;107253886;92746114;300000 -28951;107246727;92753273;300000 -28952;107239569;92760431;300000 -28953;107232411;92767589;300000 -28954;107225254;92774746;300000 -28955;107218097;92781903;300000 -28956;107210941;92789059;300000 -28957;107203785;92796215;300000 -28958;107196630;92803370;300000 -28959;107189475;92810525;300000 -28960;107182320;92817680;300000 -28961;107175167;92824833;300000 -28962;107168013;92831987;300000 -28963;107160860;92839140;300000 -28964;107153708;92846292;300000 -28965;107146556;92853444;300000 -28966;107139405;92860595;300000 -28967;107132254;92867746;300000 -28968;107125104;92874896;300000 -28969;107117954;92882046;300000 -28970;107110804;92889196;300000 -28971;107103655;92896345;300000 -28972;107096507;92903493;300000 -28973;107089359;92910641;300000 -28974;107082212;92917788;300000 -28975;107075065;92924935;300000 -28976;107067918;92932082;300000 -28977;107060772;92939228;300000 -28978;107053627;92946373;300000 -28979;107046482;92953518;300000 -28980;107039337;92960663;300000 -28981;107032194;92967806;300000 -28982;107025050;92974950;300000 -28983;107017907;92982093;300000 -28984;107010765;92989235;300000 -28985;107003623;92996377;300000 -28986;106996481;93003519;300000 -28987;106989340;93010660;300000 -28988;106982200;93017800;300000 -28989;106975060;93024940;300000 -28990;106967920;93032080;300000 -28991;106960781;93039219;300000 -28992;106953642;93046358;300000 -28993;106946504;93053496;300000 -28994;106939367;93060633;300000 -28995;106932230;93067770;300000 -28996;106925093;93074907;300000 -28997;106917957;93082043;300000 -28998;106910821;93089179;300000 -28999;106903686;93096314;300000 -29000;106896552;93103448;300000 -29001;106889418;93110582;300000 -29002;106882284;93117716;300000 -29003;106875151;93124849;300000 -29004;106868018;93131982;300000 -29005;106860886;93139114;300000 -29006;106853754;93146246;300000 -29007;106846623;93153377;300000 -29008;106839493;93160507;300000 -29009;106832362;93167638;300000 -29010;106825233;93174767;300000 -29011;106818103;93181897;300000 -29012;106810975;93189025;300000 -29013;106803847;93196153;300000 -29014;106796719;93203281;300000 -29015;106789592;93210408;300000 -29016;106782465;93217535;300000 -29017;106775339;93224661;300000 -29018;106768213;93231787;300000 -29019;106761088;93238912;300000 -29020;106753963;93246037;300000 -29021;106746838;93253162;300000 -29022;106739715;93260285;300000 -29023;106732591;93267409;300000 -29024;106725469;93274531;300000 -29025;106718346;93281654;300000 -29026;106711224;93288776;300000 -29027;106704103;93295897;300000 -29028;106696982;93303018;300000 -29029;106689862;93310138;300000 -29030;106682742;93317258;300000 -29031;106675623;93324377;300000 -29032;106668504;93331496;300000 -29033;106661385;93338615;300000 -29034;106654267;93345733;300000 -29035;106647150;93352850;300000 -29036;106640033;93359967;300000 -29037;106632917;93367083;300000 -29038;106625801;93374199;300000 -29039;106618685;93381315;300000 -29040;106611570;93388430;300000 -29041;106604456;93395544;300000 -29042;106597342;93402658;300000 -29043;106590228;93409772;300000 -29044;106583115;93416885;300000 -29045;106576003;93423997;300000 -29046;106568891;93431109;300000 -29047;106561779;93438221;300000 -29048;106554668;93445332;300000 -29049;106547558;93452442;300000 -29050;106540448;93459552;300000 -29051;106533338;93466662;300000 -29052;106526229;93473771;300000 -29053;106519120;93480880;300000 -29054;106512012;93487988;300000 -29055;106504904;93495096;300000 -29056;106497797;93502203;300000 -29057;106490691;93509309;300000 -29058;106483585;93516415;300000 -29059;106476479;93523521;300000 -29060;106469374;93530626;300000 -29061;106462269;93537731;300000 -29062;106455165;93544835;300000 -29063;106448061;93551939;300000 -29064;106440958;93559042;300000 -29065;106433855;93566145;300000 -29066;106426753;93573247;300000 -29067;106419651;93580349;300000 -29068;106412550;93587450;300000 -29069;106405449;93594551;300000 -29070;106398349;93601651;300000 -29071;106391249;93608751;300000 -29072;106384150;93615850;300000 -29073;106377051;93622949;300000 -29074;106369953;93630047;300000 -29075;106362855;93637145;300000 -29076;106355757;93644243;300000 -29077;106348660;93651340;300000 -29078;106341564;93658436;300000 -29079;106334468;93665532;300000 -29080;106327373;93672627;300000 -29081;106320278;93679722;300000 -29082;106313183;93686817;300000 -29083;106306089;93693911;300000 -29084;106298996;93701004;300000 -29085;106291903;93708097;300000 -29086;106284811;93715189;300000 -29087;106277719;93722281;300000 -29088;106270627;93729373;300000 -29089;106263536;93736464;300000 -29090;106256446;93743554;300000 -29091;106249355;93750645;300000 -29092;106242266;93757734;300000 -29093;106235177;93764823;300000 -29094;106228088;93771912;300000 -29095;106221000;93779000;300000 -29096;106213913;93786087;300000 -29097;106206825;93793175;300000 -29098;106199739;93800261;300000 -29099;106192653;93807347;300000 -29100;106185567;93814433;300000 -29101;106178482;93821518;300000 -29102;106171397;93828603;300000 -29103;106164313;93835687;300000 -29104;106157229;93842771;300000 -29105;106150146;93849854;300000 -29106;106143063;93856937;300000 -29107;106135981;93864019;300000 -29108;106128899;93871101;300000 -29109;106121818;93878182;300000 -29110;106114737;93885263;300000 -29111;106107657;93892343;300000 -29112;106100577;93899423;300000 -29113;106093498;93906502;300000 -29114;106086419;93913581;300000 -29115;106079341;93920659;300000 -29116;106072263;93927737;300000 -29117;106065185;93934815;300000 -29118;106058108;93941892;300000 -29119;106051032;93948968;300000 -29120;106043956;93956044;300000 -29121;106036881;93963119;300000 -29122;106029806;93970194;300000 -29123;106022731;93977269;300000 -29124;106015657;93984343;300000 -29125;106008584;93991416;300000 -29126;106001511;93998489;300000 -29127;105994438;94005562;300000 -29128;105987366;94012634;300000 -29129;105980295;94019705;300000 -29130;105973223;94026777;300000 -29131;105966153;94033847;300000 -29132;105959083;94040917;300000 -29133;105952013;94047987;300000 -29134;105944944;94055056;300000 -29135;105937875;94062125;300000 -29136;105930807;94069193;300000 -29137;105923740;94076260;300000 -29138;105916672;94083328;300000 -29139;105909606;94090394;300000 -29140;105902539;94097461;300000 -29141;105895474;94104526;300000 -29142;105888408;94111592;300000 -29143;105881344;94118656;300000 -29144;105874279;94125721;300000 -29145;105867216;94132784;300000 -29146;105860152;94139848;300000 -29147;105853090;94146910;300000 -29148;105846027;94153973;300000 -29149;105838965;94161035;300000 -29150;105831904;94168096;300000 -29151;105824843;94175157;300000 -29152;105817783;94182217;300000 -29153;105810723;94189277;300000 -29154;105803663;94196337;300000 -29155;105796604;94203396;300000 -29156;105789546;94210454;300000 -29157;105782488;94217512;300000 -29158;105775430;94224570;300000 -29159;105768373;94231627;300000 -29160;105761317;94238683;300000 -29161;105754261;94245739;300000 -29162;105747205;94252795;300000 -29163;105740150;94259850;300000 -29164;105733096;94266904;300000 -29165;105726041;94273959;300000 -29166;105718988;94281012;300000 -29167;105711935;94288065;300000 -29168;105704882;94295118;300000 -29169;105697830;94302170;300000 -29170;105690778;94309222;300000 -29171;105683727;94316273;300000 -29172;105676676;94323324;300000 -29173;105669626;94330374;300000 -29174;105662576;94337424;300000 -29175;105655527;94344473;300000 -29176;105648478;94351522;300000 -29177;105641430;94358570;300000 -29178;105634382;94365618;300000 -29179;105627335;94372665;300000 -29180;105620288;94379712;300000 -29181;105613241;94386759;300000 -29182;105606196;94393804;300000 -29183;105599150;94400850;300000 -29184;105592105;94407895;300000 -29185;105585061;94414939;300000 -29186;105578017;94421983;300000 -29187;105570973;94429027;300000 -29188;105563930;94436070;300000 -29189;105556888;94443112;300000 -29190;105549846;94450154;300000 -29191;105542804;94457196;300000 -29192;105535763;94464237;300000 -29193;105528723;94471277;300000 -29194;105521683;94478317;300000 -29195;105514643;94485357;300000 -29196;105507604;94492396;300000 -29197;105500565;94499435;300000 -29198;105493527;94506473;300000 -29199;105486489;94513511;300000 -29200;105479452;94520548;300000 -29201;105472415;94527585;300000 -29202;105465379;94534621;300000 -29203;105458343;94541657;300000 -29204;105451308;94548692;300000 -29205;105444273;94555727;300000 -29206;105437239;94562761;300000 -29207;105430205;94569795;300000 -29208;105423172;94576828;300000 -29209;105416139;94583861;300000 -29210;105409106;94590894;300000 -29211;105402075;94597925;300000 -29212;105395043;94604957;300000 -29213;105388012;94611988;300000 -29214;105380982;94619018;300000 -29215;105373952;94626048;300000 -29216;105366922;94633078;300000 -29217;105359893;94640107;300000 -29218;105352865;94647135;300000 -29219;105345837;94654163;300000 -29220;105338809;94661191;300000 -29221;105331782;94668218;300000 -29222;105324755;94675245;300000 -29223;105317729;94682271;300000 -29224;105310704;94689296;300000 -29225;105303678;94696322;300000 -29226;105296654;94703346;300000 -29227;105289629;94710371;300000 -29228;105282606;94717394;300000 -29229;105275582;94724418;300000 -29230;105268560;94731440;300000 -29231;105261537;94738463;300000 -29232;105254516;94745484;300000 -29233;105247494;94752506;300000 -29234;105240473;94759527;300000 -29235;105233453;94766547;300000 -29236;105226433;94773567;300000 -29237;105219414;94780586;300000 -29238;105212395;94787605;300000 -29239;105205376;94794624;300000 -29240;105198358;94801642;300000 -29241;105191341;94808659;300000 -29242;105184324;94815676;300000 -29243;105177307;94822693;300000 -29244;105170291;94829709;300000 -29245;105163276;94836724;300000 -29246;105156261;94843739;300000 -29247;105149246;94850754;300000 -29248;105142232;94857768;300000 -29249;105135218;94864782;300000 -29250;105128205;94871795;300000 -29251;105121192;94878808;300000 -29252;105114180;94885820;300000 -29253;105107168;94892832;300000 -29254;105100157;94899843;300000 -29255;105093146;94906854;300000 -29256;105086136;94913864;300000 -29257;105079126;94920874;300000 -29258;105072117;94927883;300000 -29259;105065108;94934892;300000 -29260;105058100;94941900;300000 -29261;105051092;94948908;300000 -29262;105044084;94955916;300000 -29263;105037078;94962922;300000 -29264;105030071;94969929;300000 -29265;105023065;94976935;300000 -29266;105016060;94983940;300000 -29267;105009055;94990945;300000 -29268;105002050;94997950;300000 -29269;104995046;95004954;300000 -29270;104988042;95011958;300000 -29271;104981039;95018961;300000 -29272;104974037;95025963;300000 -29273;104967034;95032966;300000 -29274;104960033;95039967;300000 -29275;104953032;95046968;300000 -29276;104946031;95053969;300000 -29277;104939031;95060969;300000 -29278;104932031;95067969;300000 -29279;104925032;95074968;300000 -29280;104918033;95081967;300000 -29281;104911034;95088966;300000 -29282;104904037;95095963;300000 -29283;104897039;95102961;300000 -29284;104890042;95109958;300000 -29285;104883046;95116954;300000 -29286;104876050;95123950;300000 -29287;104869055;95130945;300000 -29288;104862060;95137940;300000 -29289;104855065;95144935;300000 -29290;104848071;95151929;300000 -29291;104841077;95158923;300000 -29292;104834084;95165916;300000 -29293;104827092;95172908;300000 -29294;104820100;95179900;300000 -29295;104813108;95186892;300000 -29296;104806117;95193883;300000 -29297;104799126;95200874;300000 -29298;104792136;95207864;300000 -29299;104785146;95214854;300000 -29300;104778157;95221843;300000 -29301;104771168;95228832;300000 -29302;104764180;95235820;300000 -29303;104757192;95242808;300000 -29304;104750205;95249795;300000 -29305;104743218;95256782;300000 -29306;104736231;95263769;300000 -29307;104729246;95270754;300000 -29308;104722260;95277740;300000 -29309;104715275;95284725;300000 -29310;104708291;95291709;300000 -29311;104701307;95298693;300000 -29312;104694323;95305677;300000 -29313;104687340;95312660;300000 -29314;104680358;95319642;300000 -29315;104673375;95326625;300000 -29316;104666394;95333606;300000 -29317;104659413;95340587;300000 -29318;104652432;95347568;300000 -29319;104645452;95354548;300000 -29320;104638472;95361528;300000 -29321;104631493;95368507;300000 -29322;104624514;95375486;300000 -29323;104617536;95382464;300000 -29324;104610558;95389442;300000 -29325;104603581;95396419;300000 -29326;104596604;95403396;300000 -29327;104589627;95410373;300000 -29328;104582651;95417349;300000 -29329;104575676;95424324;300000 -29330;104568701;95431299;300000 -29331;104561727;95438273;300000 -29332;104554752;95445248;300000 -29333;104547779;95452221;300000 -29334;104540806;95459194;300000 -29335;104533833;95466167;300000 -29336;104526861;95473139;300000 -29337;104519890;95480110;300000 -29338;104512918;95487082;300000 -29339;104505948;95494052;300000 -29340;104498978;95501022;300000 -29341;104492008;95507992;300000 -29342;104485039;95514961;300000 -29343;104478070;95521930;300000 -29344;104471101;95528899;300000 -29345;104464134;95535866;300000 -29346;104457166;95542834;300000 -29347;104450199;95549801;300000 -29348;104443233;95556767;300000 -29349;104436267;95563733;300000 -29350;104429302;95570698;300000 -29351;104422337;95577663;300000 -29352;104415372;95584628;300000 -29353;104408408;95591592;300000 -29354;104401444;95598556;300000 -29355;104394481;95605519;300000 -29356;104387519;95612481;300000 -29357;104380557;95619443;300000 -29358;104373595;95626405;300000 -29359;104366634;95633366;300000 -29360;104359673;95640327;300000 -29361;104352713;95647287;300000 -29362;104345753;95654247;300000 -29363;104338794;95661206;300000 -29364;104331835;95668165;300000 -29365;104324877;95675123;300000 -29366;104317919;95682081;300000 -29367;104310961;95689039;300000 -29368;104304004;95695996;300000 -29369;104297048;95702952;300000 -29370;104290092;95709908;300000 -29371;104283136;95716864;300000 -29372;104276181;95723819;300000 -29373;104269227;95730773;300000 -29374;104262273;95737727;300000 -29375;104255319;95744681;300000 -29376;104248366;95751634;300000 -29377;104241413;95758587;300000 -29378;104234461;95765539;300000 -29379;104227509;95772491;300000 -29380;104220558;95779442;300000 -29381;104213607;95786393;300000 -29382;104206657;95793343;300000 -29383;104199707;95800293;300000 -29384;104192758;95807242;300000 -29385;104185809;95814191;300000 -29386;104178861;95821139;300000 -29387;104171913;95828087;300000 -29388;104164965;95835035;300000 -29389;104158018;95841982;300000 -29390;104151072;95848928;300000 -29391;104144126;95855874;300000 -29392;104137180;95862820;300000 -29393;104130235;95869765;300000 -29394;104123290;95876710;300000 -29395;104116346;95883654;300000 -29396;104109403;95890597;300000 -29397;104102459;95897541;300000 -29398;104095517;95904483;300000 -29399;104088574;95911426;300000 -29400;104081633;95918367;300000 -29401;104074691;95925309;300000 -29402;104067750;95932250;300000 -29403;104060810;95939190;300000 -29404;104053870;95946130;300000 -29405;104046931;95953069;300000 -29406;104039992;95960008;300000 -29407;104033053;95966947;300000 -29408;104026115;95973885;300000 -29409;104019178;95980822;300000 -29410;104012241;95987759;300000 -29411;104005304;95994696;300000 -29412;103998368;96001632;300000 -29413;103991432;96008568;300000 -29414;103984497;96015503;300000 -29415;103977562;96022438;300000 -29416;103970628;96029372;300000 -29417;103963694;96036306;300000 -29418;103956761;96043239;300000 -29419;103949828;96050172;300000 -29420;103942896;96057104;300000 -29421;103935964;96064036;300000 -29422;103929033;96070967;300000 -29423;103922102;96077898;300000 -29424;103915171;96084829;300000 -29425;103908241;96091759;300000 -29426;103901312;96098688;300000 -29427;103894383;96105617;300000 -29428;103887454;96112546;300000 -29429;103880526;96119474;300000 -29430;103873598;96126402;300000 -29431;103866671;96133329;300000 -29432;103859744;96140256;300000 -29433;103852818;96147182;300000 -29434;103845893;96154107;300000 -29435;103838967;96161033;300000 -29436;103832042;96167958;300000 -29437;103825118;96174882;300000 -29438;103818194;96181806;300000 -29439;103811271;96188729;300000 -29440;103804348;96195652;300000 -29441;103797425;96202575;300000 -29442;103790503;96209497;300000 -29443;103783582;96216418;300000 -29444;103776661;96223339;300000 -29445;103769740;96230260;300000 -29446;103762820;96237180;300000 -29447;103755900;96244100;300000 -29448;103748981;96251019;300000 -29449;103742063;96257937;300000 -29450;103735144;96264856;300000 -29451;103728227;96271773;300000 -29452;103721309;96278691;300000 -29453;103714392;96285608;300000 -29454;103707476;96292524;300000 -29455;103700560;96299440;300000 -29456;103693645;96306355;300000 -29457;103686730;96313270;300000 -29458;103679815;96320185;300000 -29459;103672901;96327099;300000 -29460;103665988;96334012;300000 -29461;103659075;96340925;300000 -29462;103652162;96347838;300000 -29463;103645250;96354750;300000 -29464;103638338;96361662;300000 -29465;103631427;96368573;300000 -29466;103624516;96375484;300000 -29467;103617606;96382394;300000 -29468;103610696;96389304;300000 -29469;103603787;96396213;300000 -29470;103596878;96403122;300000 -29471;103589970;96410030;300000 -29472;103583062;96416938;300000 -29473;103576154;96423846;300000 -29474;103569247;96430753;300000 -29475;103562341;96437659;300000 -29476;103555435;96444565;300000 -29477;103548529;96451471;300000 -29478;103541624;96458376;300000 -29479;103534720;96465280;300000 -29480;103527815;96472185;300000 -29481;103520912;96479088;300000 -29482;103514009;96485991;300000 -29483;103507106;96492894;300000 -29484;103500204;96499796;300000 -29485;103493302;96506698;300000 -29486;103486400;96513600;300000 -29487;103479499;96520501;300000 -29488;103472599;96527401;300000 -29489;103465699;96534301;300000 -29490;103458800;96541200;300000 -29491;103451901;96548099;300000 -29492;103445002;96554998;300000 -29493;103438104;96561896;300000 -29494;103431206;96568794;300000 -29495;103424309;96575691;300000 -29496;103417413;96582587;300000 -29497;103410516;96589484;300000 -29498;103403621;96596379;300000 -29499;103396725;96603275;300000 -29500;103389831;96610169;300000 -29501;103382936;96617064;300000 -29502;103376042;96623958;300000 -29503;103369149;96630851;300000 -29504;103362256;96637744;300000 -29505;103355363;96644637;300000 -29506;103348471;96651529;300000 -29507;103341580;96658420;300000 -29508;103334689;96665311;300000 -29509;103327798;96672202;300000 -29510;103320908;96679092;300000 -29511;103314019;96685981;300000 -29512;103307129;96692871;300000 -29513;103300241;96699759;300000 -29514;103293352;96706648;300000 -29515;103286465;96713535;300000 -29516;103279577;96720423;300000 -29517;103272690;96727310;300000 -29518;103265804;96734196;300000 -29519;103258918;96741082;300000 -29520;103252033;96747967;300000 -29521;103245148;96754852;300000 -29522;103238263;96761737;300000 -29523;103231379;96768621;300000 -29524;103224495;96775505;300000 -29525;103217612;96782388;300000 -29526;103210730;96789270;300000 -29527;103203847;96796153;300000 -29528;103196966;96803034;300000 -29529;103190084;96809916;300000 -29530;103183204;96816796;300000 -29531;103176323;96823677;300000 -29532;103169443;96830557;300000 -29533;103162564;96837436;300000 -29534;103155685;96844315;300000 -29535;103148807;96851193;300000 -29536;103141928;96858072;300000 -29537;103135051;96864949;300000 -29538;103128174;96871826;300000 -29539;103121297;96878703;300000 -29540;103114421;96885579;300000 -29541;103107545;96892455;300000 -29542;103100670;96899330;300000 -29543;103093795;96906205;300000 -29544;103086921;96913079;300000 -29545;103080047;96919953;300000 -29546;103073174;96926826;300000 -29547;103066301;96933699;300000 -29548;103059429;96940571;300000 -29549;103052557;96947443;300000 -29550;103045685;96954315;300000 -29551;103038814;96961186;300000 -29552;103031944;96968056;300000 -29553;103025074;96974926;300000 -29554;103018204;96981796;300000 -29555;103011335;96988665;300000 -29556;103004466;96995534;300000 -29557;102997598;97002402;300000 -29558;102990730;97009270;300000 -29559;102983863;97016137;300000 -29560;102976996;97023004;300000 -29561;102970130;97029870;300000 -29562;102963264;97036736;300000 -29563;102956398;97043602;300000 -29564;102949533;97050467;300000 -29565;102942669;97057331;300000 -29566;102935805;97064195;300000 -29567;102928941;97071059;300000 -29568;102922078;97077922;300000 -29569;102915215;97084785;300000 -29570;102908353;97091647;300000 -29571;102901491;97098509;300000 -29572;102894630;97105370;300000 -29573;102887769;97112231;300000 -29574;102880909;97119091;300000 -29575;102874049;97125951;300000 -29576;102867190;97132810;300000 -29577;102860331;97139669;300000 -29578;102853472;97146528;300000 -29579;102846614;97153386;300000 -29580;102839757;97160243;300000 -29581;102832899;97167101;300000 -29582;102826043;97173957;300000 -29583;102819187;97180813;300000 -29584;102812331;97187669;300000 -29585;102805476;97194524;300000 -29586;102798621;97201379;300000 -29587;102791767;97208233;300000 -29588;102784913;97215087;300000 -29589;102778059;97221941;300000 -29590;102771206;97228794;300000 -29591;102764354;97235646;300000 -29592;102757502;97242498;300000 -29593;102750650;97249350;300000 -29594;102743799;97256201;300000 -29595;102736949;97263051;300000 -29596;102730099;97269901;300000 -29597;102723249;97276751;300000 -29598;102716400;97283600;300000 -29599;102709551;97290449;300000 -29600;102702703;97297297;300000 -29601;102695855;97304145;300000 -29602;102689007;97310993;300000 -29603;102682161;97317839;300000 -29604;102675314;97324686;300000 -29605;102668468;97331532;300000 -29606;102661623;97338377;300000 -29607;102654778;97345222;300000 -29608;102647933;97352067;300000 -29609;102641089;97358911;300000 -29610;102634245;97365755;300000 -29611;102627402;97372598;300000 -29612;102620559;97379441;300000 -29613;102613717;97386283;300000 -29614;102606875;97393125;300000 -29615;102600034;97399966;300000 -29616;102593193;97406807;300000 -29617;102586352;97413648;300000 -29618;102579512;97420488;300000 -29619;102572673;97427327;300000 -29620;102565834;97434166;300000 -29621;102558995;97441005;300000 -29622;102552157;97447843;300000 -29623;102545320;97454680;300000 -29624;102538482;97461518;300000 -29625;102531646;97468354;300000 -29626;102524809;97475191;300000 -29627;102517973;97482027;300000 -29628;102511138;97488862;300000 -29629;102504303;97495697;300000 -29630;102497469;97502531;300000 -29631;102490635;97509365;300000 -29632;102483801;97516199;300000 -29633;102476968;97523032;300000 -29634;102470136;97529864;300000 -29635;102463304;97536696;300000 -29636;102456472;97543528;300000 -29637;102449641;97550359;300000 -29638;102442810;97557190;300000 -29639;102435980;97564020;300000 -29640;102429150;97570850;300000 -29641;102422320;97577680;300000 -29642;102415492;97584508;300000 -29643;102408663;97591337;300000 -29644;102401835;97598165;300000 -29645;102395008;97604992;300000 -29646;102388181;97611819;300000 -29647;102381354;97618646;300000 -29648;102374528;97625472;300000 -29649;102367702;97632298;300000 -29650;102360877;97639123;300000 -29651;102354052;97645948;300000 -29652;102347228;97652772;300000 -29653;102340404;97659596;300000 -29654;102333581;97666419;300000 -29655;102326758;97673242;300000 -29656;102319935;97680065;300000 -29657;102313113;97686887;300000 -29658;102306292;97693708;300000 -29659;102299471;97700529;300000 -29660;102292650;97707350;300000 -29661;102285830;97714170;300000 -29662;102279010;97720990;300000 -29663;102272191;97727809;300000 -29664;102265372;97734628;300000 -29665;102258554;97741446;300000 -29666;102251736;97748264;300000 -29667;102244919;97755081;300000 -29668;102238102;97761898;300000 -29669;102231285;97768715;300000 -29670;102224469;97775531;300000 -29671;102217654;97782346;300000 -29672;102210839;97789161;300000 -29673;102204024;97795976;300000 -29674;102197210;97802790;300000 -29675;102190396;97809604;300000 -29676;102183583;97816417;300000 -29677;102176770;97823230;300000 -29678;102169958;97830042;300000 -29679;102163146;97836854;300000 -29680;102156334;97843666;300000 -29681;102149523;97850477;300000 -29682;102142713;97857287;300000 -29683;102135903;97864097;300000 -29684;102129093;97870907;300000 -29685;102122284;97877716;300000 -29686;102115475;97884525;300000 -29687;102108667;97891333;300000 -29688;102101859;97898141;300000 -29689;102095052;97904948;300000 -29690;102088245;97911755;300000 -29691;102081439;97918561;300000 -29692;102074633;97925367;300000 -29693;102067827;97932173;300000 -29694;102061022;97938978;300000 -29695;102054218;97945782;300000 -29696;102047414;97952586;300000 -29697;102040610;97959390;300000 -29698;102033807;97966193;300000 -29699;102027004;97972996;300000 -29700;102020202;97979798;300000 -29701;102013400;97986600;300000 -29702;102006599;97993401;300000 -29703;101999798;98000202;300000 -29704;101992998;98007002;300000 -29705;101986198;98013802;300000 -29706;101979398;98020602;300000 -29707;101972599;98027401;300000 -29708;101965800;98034200;300000 -29709;101959002;98040998;300000 -29710;101952205;98047795;300000 -29711;101945407;98054593;300000 -29712;101938611;98061389;300000 -29713;101931814;98068186;300000 -29714;101925019;98074981;300000 -29715;101918223;98081777;300000 -29716;101911428;98088572;300000 -29717;101904634;98095366;300000 -29718;101897840;98102160;300000 -29719;101891046;98108954;300000 -29720;101884253;98115747;300000 -29721;101877460;98122540;300000 -29722;101870668;98129332;300000 -29723;101863876;98136124;300000 -29724;101857085;98142915;300000 -29725;101850294;98149706;300000 -29726;101843504;98156496;300000 -29727;101836714;98163286;300000 -29728;101829925;98170075;300000 -29729;101823136;98176864;300000 -29730;101816347;98183653;300000 -29731;101809559;98190441;300000 -29732;101802771;98197229;300000 -29733;101795984;98204016;300000 -29734;101789198;98210802;300000 -29735;101782411;98217589;300000 -29736;101775626;98224374;300000 -29737;101768840;98231160;300000 -29738;101762055;98237945;300000 -29739;101755271;98244729;300000 -29740;101748487;98251513;300000 -29741;101741703;98258297;300000 -29742;101734920;98265080;300000 -29743;101728138;98271862;300000 -29744;101721356;98278644;300000 -29745;101714574;98285426;300000 -29746;101707793;98292207;300000 -29747;101701012;98298988;300000 -29748;101694232;98305768;300000 -29749;101687452;98312548;300000 -29750;101680672;98319328;300000 -29751;101673893;98326107;300000 -29752;101667115;98332885;300000 -29753;101660337;98339663;300000 -29754;101653559;98346441;300000 -29755;101646782;98353218;300000 -29756;101640005;98359995;300000 -29757;101633229;98366771;300000 -29758;101626453;98373547;300000 -29759;101619678;98380322;300000 -29760;101612903;98387097;300000 -29761;101606129;98393871;300000 -29762;101599355;98400645;300000 -29763;101592581;98407419;300000 -29764;101585808;98414192;300000 -29765;101579036;98420964;300000 -29766;101572264;98427736;300000 -29767;101565492;98434508;300000 -29768;101558721;98441279;300000 -29769;101551950;98448050;300000 -29770;101545180;98454820;300000 -29771;101538410;98461590;300000 -29772;101531640;98468360;300000 -29773;101524872;98475128;300000 -29774;101518103;98481897;300000 -29775;101511335;98488665;300000 -29776;101504567;98495433;300000 -29777;101497800;98502200;300000 -29778;101491034;98508966;300000 -29779;101484267;98515733;300000 -29780;101477502;98522498;300000 -29781;101470736;98529264;300000 -29782;101463972;98536028;300000 -29783;101457207;98542793;300000 -29784;101450443;98549557;300000 -29785;101443680;98556320;300000 -29786;101436917;98563083;300000 -29787;101430154;98569846;300000 -29788;101423392;98576608;300000 -29789;101416630;98583370;300000 -29790;101409869;98590131;300000 -29791;101403108;98596892;300000 -29792;101396348;98603652;300000 -29793;101389588;98610412;300000 -29794;101382829;98617171;300000 -29795;101376070;98623930;300000 -29796;101369311;98630689;300000 -29797;101362553;98637447;300000 -29798;101355796;98644204;300000 -29799;101349039;98650961;300000 -29800;101342282;98657718;300000 -29801;101335526;98664474;300000 -29802;101328770;98671230;300000 -29803;101322015;98677985;300000 -29804;101315260;98684740;300000 -29805;101308505;98691495;300000 -29806;101301751;98698249;300000 -29807;101294998;98705002;300000 -29808;101288245;98711755;300000 -29809;101281492;98718508;300000 -29810;101274740;98725260;300000 -29811;101267988;98732012;300000 -29812;101261237;98738763;300000 -29813;101254486;98745514;300000 -29814;101247736;98752264;300000 -29815;101240986;98759014;300000 -29816;101234237;98765763;300000 -29817;101227488;98772512;300000 -29818;101220739;98779261;300000 -29819;101213991;98786009;300000 -29820;101207243;98792757;300000 -29821;101200496;98799504;300000 -29822;101193750;98806250;300000 -29823;101187003;98812997;300000 -29824;101180258;98819742;300000 -29825;101173512;98826488;300000 -29826;101166767;98833233;300000 -29827;101160023;98839977;300000 -29828;101153279;98846721;300000 -29829;101146535;98853465;300000 -29830;101139792;98860208;300000 -29831;101133050;98866950;300000 -29832;101126307;98873693;300000 -29833;101119566;98880434;300000 -29834;101112824;98887176;300000 -29835;101106083;98893917;300000 -29836;101099343;98900657;300000 -29837;101092603;98907397;300000 -29838;101085864;98914136;300000 -29839;101079125;98920875;300000 -29840;101072386;98927614;300000 -29841;101065648;98934352;300000 -29842;101058910;98941090;300000 -29843;101052173;98947827;300000 -29844;101045436;98954564;300000 -29845;101038700;98961300;300000 -29846;101031964;98968036;300000 -29847;101025229;98974771;300000 -29848;101018494;98981506;300000 -29849;101011759;98988241;300000 -29850;101005025;98994975;300000 -29851;100998292;99001708;300000 -29852;100991558;99008442;300000 -29853;100984826;99015174;300000 -29854;100978093;99021907;300000 -29855;100971362;99028638;300000 -29856;100964630;99035370;300000 -29857;100957899;99042101;300000 -29858;100951169;99048831;300000 -29859;100944439;99055561;300000 -29860;100937709;99062291;300000 -29861;100930980;99069020;300000 -29862;100924252;99075748;300000 -29863;100917523;99082477;300000 -29864;100910796;99089204;300000 -29865;100904068;99095932;300000 -29866;100897341;99102659;300000 -29867;100890615;99109385;300000 -29868;100883889;99116111;300000 -29869;100877164;99122836;300000 -29870;100870439;99129561;300000 -29871;100863714;99136286;300000 -29872;100856990;99143010;300000 -29873;100850266;99149734;300000 -29874;100843543;99156457;300000 -29875;100836820;99163180;300000 -29876;100830098;99169902;300000 -29877;100823376;99176624;300000 -29878;100816654;99183346;300000 -29879;100809933;99190067;300000 -29880;100803213;99196787;300000 -29881;100796493;99203507;300000 -29882;100789773;99210227;300000 -29883;100783054;99216946;300000 -29884;100776335;99223665;300000 -29885;100769617;99230383;300000 -29886;100762899;99237101;300000 -29887;100756182;99243818;300000 -29888;100749465;99250535;300000 -29889;100742748;99257252;300000 -29890;100736032;99263968;300000 -29891;100729317;99270683;300000 -29892;100722601;99277399;300000 -29893;100715887;99284113;300000 -29894;100709172;99290828;300000 -29895;100702459;99297541;300000 -29896;100695745;99304255;300000 -29897;100689032;99310968;300000 -29898;100682320;99317680;300000 -29899;100675608;99324392;300000 -29900;100668896;99331104;300000 -29901;100662185;99337815;300000 -29902;100655475;99344525;300000 -29903;100648764;99351236;300000 -29904;100642055;99357945;300000 -29905;100635345;99364655;300000 -29906;100628636;99371364;300000 -29907;100621928;99378072;300000 -29908;100615220;99384780;300000 -29909;100608512;99391488;300000 -29910;100601805;99398195;300000 -29911;100595099;99404901;300000 -29912;100588393;99411607;300000 -29913;100581687;99418313;300000 -29914;100574982;99425018;300000 -29915;100568277;99431723;300000 -29916;100561572;99438428;300000 -29917;100554868;99445132;300000 -29918;100548165;99451835;300000 -29919;100541462;99458538;300000 -29920;100534759;99465241;300000 -29921;100528057;99471943;300000 -29922;100521356;99478644;300000 -29923;100514654;99485346;300000 -29924;100507953;99492047;300000 -29925;100501253;99498747;300000 -29926;100494553;99505447;300000 -29927;100487854;99512146;300000 -29928;100481155;99518845;300000 -29929;100474456;99525544;300000 -29930;100467758;99532242;300000 -29931;100461060;99538940;300000 -29932;100454363;99545637;300000 -29933;100447666;99552334;300000 -29934;100440970;99559030;300000 -29935;100434274;99565726;300000 -29936;100427579;99572421;300000 -29937;100420884;99579116;300000 -29938;100414189;99585811;300000 -29939;100407495;99592505;300000 -29940;100400802;99599198;300000 -29941;100394108;99605892;300000 -29942;100387416;99612584;300000 -29943;100380723;99619277;300000 -29944;100374032;99625968;300000 -29945;100367340;99632660;300000 -29946;100360649;99639351;300000 -29947;100353959;99646041;300000 -29948;100347269;99652731;300000 -29949;100340579;99659421;300000 -29950;100333890;99666110;300000 -29951;100327201;99672799;300000 -29952;100320513;99679487;300000 -29953;100313825;99686175;300000 -29954;100307138;99692862;300000 -29955;100300451;99699549;300000 -29956;100293764;99706236;300000 -29957;100287078;99712922;300000 -29958;100280393;99719607;300000 -29959;100273707;99726293;300000 -29960;100267023;99732977;300000 -29961;100260338;99739662;300000 -29962;100253655;99746345;300000 -29963;100246971;99753029;300000 -29964;100240288;99759712;300000 -29965;100233606;99766394;300000 -29966;100226924;99773076;300000 -29967;100220242;99779758;300000 -29968;100213561;99786439;300000 -29969;100206880;99793120;300000 -29970;100200200;99799800;300000 -29971;100193520;99806480;300000 -29972;100186841;99813159;300000 -29973;100180162;99819838;300000 -29974;100173484;99826516;300000 -29975;100166806;99833194;300000 -29976;100160128;99839872;300000 -29977;100153451;99846549;300000 -29978;100146774;99853226;300000 -29979;100140098;99859902;300000 -29980;100133422;99866578;300000 -29981;100126747;99873253;300000 -29982;100120072;99879928;300000 -29983;100113398;99886602;300000 -29984;100106724;99893276;300000 -29985;100100050;99899950;300000 -29986;100093377;99906623;300000 -29987;100086704;99913296;300000 -29988;100080032;99919968;300000 -29989;100073360;99926640;300000 -29990;100066689;99933311;300000 -29991;100060018;99939982;300000 -29992;100053348;99946652;300000 -29993;100046678;99953322;300000 -29994;100040008;99959992;300000 -29995;100033339;99966661;300000 -29996;100026670;99973330;300000 -29997;100020002;99979998;300000 -29998;100013334;99986666;300000 -29999;100006667;99993333;300000 -30000;100000000;100000000;300000 -30001;99993334;100006666;300000 -30002;99986668;100013332;300000 -30003;99980002;100019998;300000 -30004;99973337;100026663;300000 -30005;99966672;100033328;300000 -30006;99960008;100039992;300000 -30007;99953344;100046656;300000 -30008;99946681;100053319;300000 -30009;99940018;100059982;300000 -30010;99933356;100066644;300000 -30011;99926694;100073306;300000 -30012;99920032;100079968;300000 -30013;99913371;100086629;300000 -30014;99906710;100093290;300000 -30015;99900050;100099950;300000 -30016;99893390;100106610;300000 -30017;99886731;100113269;300000 -30018;99880072;100119928;300000 -30019;99873414;100126586;300000 -30020;99866755;100133245;300000 -30021;99860098;100139902;300000 -30022;99853441;100146559;300000 -30023;99846784;100153216;300000 -30024;99840128;100159872;300000 -30025;99833472;100166528;300000 -30026;99826817;100173183;300000 -30027;99820162;100179838;300000 -30028;99813507;100186493;300000 -30029;99806853;100193147;300000 -30030;99800200;100199800;300000 -30031;99793547;100206453;300000 -30032;99786894;100213106;300000 -30033;99780242;100219758;300000 -30034;99773590;100226410;300000 -30035;99766939;100233061;300000 -30036;99760288;100239712;300000 -30037;99753637;100246363;300000 -30038;99746987;100253013;300000 -30039;99740338;100259662;300000 -30040;99733688;100266312;300000 -30041;99727040;100272960;300000 -30042;99720391;100279609;300000 -30043;99713744;100286256;300000 -30044;99707096;100292904;300000 -30045;99700449;100299551;300000 -30046;99693803;100306197;300000 -30047;99687157;100312843;300000 -30048;99680511;100319489;300000 -30049;99673866;100326134;300000 -30050;99667221;100332779;300000 -30051;99660577;100339423;300000 -30052;99653933;100346067;300000 -30053;99647290;100352710;300000 -30054;99640647;100359353;300000 -30055;99634004;100365996;300000 -30056;99627362;100372638;300000 -30057;99620721;100379279;300000 -30058;99614079;100385921;300000 -30059;99607439;100392561;300000 -30060;99600798;100399202;300000 -30061;99594159;100405841;300000 -30062;99587519;100412481;300000 -30063;99580880;100419120;300000 -30064;99574242;100425758;300000 -30065;99567604;100432396;300000 -30066;99560966;100439034;300000 -30067;99554329;100445671;300000 -30068;99547692;100452308;300000 -30069;99541056;100458944;300000 -30070;99534420;100465580;300000 -30071;99527784;100472216;300000 -30072;99521149;100478851;300000 -30073;99514515;100485485;300000 -30074;99507881;100492119;300000 -30075;99501247;100498753;300000 -30076;99494614;100505386;300000 -30077;99487981;100512019;300000 -30078;99481348;100518652;300000 -30079;99474717;100525283;300000 -30080;99468085;100531915;300000 -30081;99461454;100538546;300000 -30082;99454823;100545177;300000 -30083;99448193;100551807;300000 -30084;99441564;100558436;300000 -30085;99434934;100565066;300000 -30086;99428306;100571694;300000 -30087;99421677;100578323;300000 -30088;99415049;100584951;300000 -30089;99408422;100591578;300000 -30090;99401795;100598205;300000 -30091;99395168;100604832;300000 -30092;99388542;100611458;300000 -30093;99381916;100618084;300000 -30094;99375291;100624709;300000 -30095;99368666;100631334;300000 -30096;99362041;100637959;300000 -30097;99355417;100644583;300000 -30098;99348794;100651206;300000 -30099;99342171;100657829;300000 -30100;99335548;100664452;300000 -30101;99328926;100671074;300000 -30102;99322304;100677696;300000 -30103;99315683;100684317;300000 -30104;99309062;100690938;300000 -30105;99302441;100697559;300000 -30106;99295821;100704179;300000 -30107;99289202;100710798;300000 -30108;99282583;100717417;300000 -30109;99275964;100724036;300000 -30110;99269346;100730654;300000 -30111;99262728;100737272;300000 -30112;99256111;100743889;300000 -30113;99249494;100750506;300000 -30114;99242877;100757123;300000 -30115;99236261;100763739;300000 -30116;99229645;100770355;300000 -30117;99223030;100776970;300000 -30118;99216415;100783585;300000 -30119;99209801;100790199;300000 -30120;99203187;100796813;300000 -30121;99196574;100803426;300000 -30122;99189961;100810039;300000 -30123;99183348;100816652;300000 -30124;99176736;100823264;300000 -30125;99170124;100829876;300000 -30126;99163513;100836487;300000 -30127;99156902;100843098;300000 -30128;99150292;100849708;300000 -30129;99143682;100856318;300000 -30130;99137073;100862927;300000 -30131;99130464;100869536;300000 -30132;99123855;100876145;300000 -30133;99117247;100882753;300000 -30134;99110639;100889361;300000 -30135;99104032;100895968;300000 -30136;99097425;100902575;300000 -30137;99090819;100909181;300000 -30138;99084213;100915787;300000 -30139;99077607;100922393;300000 -30140;99071002;100928998;300000 -30141;99064397;100935603;300000 -30142;99057793;100942207;300000 -30143;99051189;100948811;300000 -30144;99044586;100955414;300000 -30145;99037983;100962017;300000 -30146;99031381;100968619;300000 -30147;99024779;100975221;300000 -30148;99018177;100981823;300000 -30149;99011576;100988424;300000 -30150;99004975;100995025;300000 -30151;98998375;101001625;300000 -30152;98991775;101008225;300000 -30153;98985176;101014824;300000 -30154;98978577;101021423;300000 -30155;98971978;101028022;300000 -30156;98965380;101034620;300000 -30157;98958782;101041218;300000 -30158;98952185;101047815;300000 -30159;98945588;101054412;300000 -30160;98938992;101061008;300000 -30161;98932396;101067604;300000 -30162;98925801;101074199;300000 -30163;98919206;101080794;300000 -30164;98912611;101087389;300000 -30165;98906017;101093983;300000 -30166;98899423;101100577;300000 -30167;98892830;101107170;300000 -30168;98886237;101113763;300000 -30169;98879645;101120355;300000 -30170;98873053;101126947;300000 -30171;98866461;101133539;300000 -30172;98859870;101140130;300000 -30173;98853279;101146721;300000 -30174;98846689;101153311;300000 -30175;98840099;101159901;300000 -30176;98833510;101166490;300000 -30177;98826921;101173079;300000 -30178;98820333;101179667;300000 -30179;98813745;101186255;300000 -30180;98807157;101192843;300000 -30181;98800570;101199430;300000 -30182;98793983;101206017;300000 -30183;98787397;101212603;300000 -30184;98780811;101219189;300000 -30185;98774226;101225774;300000 -30186;98767641;101232359;300000 -30187;98761056;101238944;300000 -30188;98754472;101245528;300000 -30189;98747888;101252112;300000 -30190;98741305;101258695;300000 -30191;98734722;101265278;300000 -30192;98728140;101271860;300000 -30193;98721558;101278442;300000 -30194;98714976;101285024;300000 -30195;98708395;101291605;300000 -30196;98701815;101298185;300000 -30197;98695235;101304765;300000 -30198;98688655;101311345;300000 -30199;98682076;101317924;300000 -30200;98675497;101324503;300000 -30201;98668918;101331082;300000 -30202;98662340;101337660;300000 -30203;98655763;101344237;300000 -30204;98649186;101350814;300000 -30205;98642609;101357391;300000 -30206;98636033;101363967;300000 -30207;98629457;101370543;300000 -30208;98622881;101377119;300000 -30209;98616306;101383694;300000 -30210;98609732;101390268;300000 -30211;98603158;101396842;300000 -30212;98596584;101403416;300000 -30213;98590011;101409989;300000 -30214;98583438;101416562;300000 -30215;98576866;101423134;300000 -30216;98570294;101429706;300000 -30217;98563722;101436278;300000 -30218;98557151;101442849;300000 -30219;98550581;101449419;300000 -30220;98544011;101455989;300000 -30221;98537441;101462559;300000 -30222;98530872;101469128;300000 -30223;98524303;101475697;300000 -30224;98517734;101482266;300000 -30225;98511166;101488834;300000 -30226;98504599;101495401;300000 -30227;98498032;101501968;300000 -30228;98491465;101508535;300000 -30229;98484899;101515101;300000 -30230;98478333;101521667;300000 -30231;98471767;101528233;300000 -30232;98465202;101534798;300000 -30233;98458638;101541362;300000 -30234;98452074;101547926;300000 -30235;98445510;101554490;300000 -30236;98438947;101561053;300000 -30237;98432384;101567616;300000 -30238;98425822;101574178;300000 -30239;98419260;101580740;300000 -30240;98412698;101587302;300000 -30241;98406137;101593863;300000 -30242;98399577;101600423;300000 -30243;98393017;101606983;300000 -30244;98386457;101613543;300000 -30245;98379898;101620102;300000 -30246;98373339;101626661;300000 -30247;98366780;101633220;300000 -30248;98360222;101639778;300000 -30249;98353665;101646335;300000 -30250;98347107;101652893;300000 -30251;98340551;101659449;300000 -30252;98333994;101666006;300000 -30253;98327439;101672561;300000 -30254;98320883;101679117;300000 -30255;98314328;101685672;300000 -30256;98307774;101692226;300000 -30257;98301220;101698780;300000 -30258;98294666;101705334;300000 -30259;98288113;101711887;300000 -30260;98281560;101718440;300000 -30261;98275007;101724993;300000 -30262;98268455;101731545;300000 -30263;98261904;101738096;300000 -30264;98255353;101744647;300000 -30265;98248802;101751198;300000 -30266;98242252;101757748;300000 -30267;98235702;101764298;300000 -30268;98229153;101770847;300000 -30269;98222604;101777396;300000 -30270;98216056;101783944;300000 -30271;98209507;101790493;300000 -30272;98202960;101797040;300000 -30273;98196413;101803587;300000 -30274;98189866;101810134;300000 -30275;98183320;101816680;300000 -30276;98176774;101823226;300000 -30277;98170228;101829772;300000 -30278;98163683;101836317;300000 -30279;98157139;101842861;300000 -30280;98150594;101849406;300000 -30281;98144051;101855949;300000 -30282;98137507;101862493;300000 -30283;98130965;101869035;300000 -30284;98124422;101875578;300000 -30285;98117880;101882120;300000 -30286;98111339;101888661;300000 -30287;98104797;101895203;300000 -30288;98098257;101901743;300000 -30289;98091716;101908284;300000 -30290;98085177;101914823;300000 -30291;98078637;101921363;300000 -30292;98072098;101927902;300000 -30293;98065560;101934440;300000 -30294;98059022;101940978;300000 -30295;98052484;101947516;300000 -30296;98045947;101954053;300000 -30297;98039410;101960590;300000 -30298;98032873;101967127;300000 -30299;98026338;101973662;300000 -30300;98019802;101980198;300000 -30301;98013267;101986733;300000 -30302;98006732;101993268;300000 -30303;98000198;101999802;300000 -30304;97993664;102006336;300000 -30305;97987131;102012869;300000 -30306;97980598;102019402;300000 -30307;97974065;102025935;300000 -30308;97967533;102032467;300000 -30309;97961002;102038998;300000 -30310;97954470;102045530;300000 -30311;97947940;102052060;300000 -30312;97941409;102058591;300000 -30313;97934879;102065121;300000 -30314;97928350;102071650;300000 -30315;97921821;102078179;300000 -30316;97915292;102084708;300000 -30317;97908764;102091236;300000 -30318;97902236;102097764;300000 -30319;97895709;102104291;300000 -30320;97889182;102110818;300000 -30321;97882656;102117344;300000 -30322;97876130;102123870;300000 -30323;97869604;102130396;300000 -30324;97863079;102136921;300000 -30325;97856554;102143446;300000 -30326;97850030;102149970;300000 -30327;97843506;102156494;300000 -30328;97836982;102163018;300000 -30329;97830459;102169541;300000 -30330;97823937;102176063;300000 -30331;97817415;102182585;300000 -30332;97810893;102189107;300000 -30333;97804371;102195629;300000 -30334;97797851;102202149;300000 -30335;97791330;102208670;300000 -30336;97784810;102215190;300000 -30337;97778291;102221709;300000 -30338;97771771;102228229;300000 -30339;97765253;102234747;300000 -30340;97758734;102241266;300000 -30341;97752216;102247784;300000 -30342;97745699;102254301;300000 -30343;97739182;102260818;300000 -30344;97732665;102267335;300000 -30345;97726149;102273851;300000 -30346;97719634;102280366;300000 -30347;97713118;102286882;300000 -30348;97706603;102293397;300000 -30349;97700089;102299911;300000 -30350;97693575;102306425;300000 -30351;97687061;102312939;300000 -30352;97680548;102319452;300000 -30353;97674036;102325964;300000 -30354;97667523;102332477;300000 -30355;97661011;102338989;300000 -30356;97654500;102345500;300000 -30357;97647989;102352011;300000 -30358;97641478;102358522;300000 -30359;97634968;102365032;300000 -30360;97628458;102371542;300000 -30361;97621949;102378051;300000 -30362;97615440;102384560;300000 -30363;97608932;102391068;300000 -30364;97602424;102397576;300000 -30365;97595916;102404084;300000 -30366;97589409;102410591;300000 -30367;97582902;102417098;300000 -30368;97576396;102423604;300000 -30369;97569890;102430110;300000 -30370;97563385;102436615;300000 -30371;97556880;102443120;300000 -30372;97550375;102449625;300000 -30373;97543871;102456129;300000 -30374;97537367;102462633;300000 -30375;97530864;102469136;300000 -30376;97524361;102475639;300000 -30377;97517859;102482141;300000 -30378;97511357;102488643;300000 -30379;97504855;102495145;300000 -30380;97498354;102501646;300000 -30381;97491853;102508147;300000 -30382;97485353;102514647;300000 -30383;97478853;102521147;300000 -30384;97472354;102527646;300000 -30385;97465855;102534145;300000 -30386;97459356;102540644;300000 -30387;97452858;102547142;300000 -30388;97446360;102553640;300000 -30389;97439863;102560137;300000 -30390;97433366;102566634;300000 -30391;97426870;102573130;300000 -30392;97420374;102579626;300000 -30393;97413878;102586122;300000 -30394;97407383;102592617;300000 -30395;97400888;102599112;300000 -30396;97394394;102605606;300000 -30397;97387900;102612100;300000 -30398;97381407;102618593;300000 -30399;97374914;102625086;300000 -30400;97368421;102631579;300000 -30401;97361929;102638071;300000 -30402;97355437;102644563;300000 -30403;97348946;102651054;300000 -30404;97342455;102657545;300000 -30405;97335964;102664036;300000 -30406;97329474;102670526;300000 -30407;97322985;102677015;300000 -30408;97316496;102683504;300000 -30409;97310007;102689993;300000 -30410;97303519;102696481;300000 -30411;97297031;102702969;300000 -30412;97290543;102709457;300000 -30413;97284056;102715944;300000 -30414;97277570;102722430;300000 -30415;97271083;102728917;300000 -30416;97264598;102735402;300000 -30417;97258112;102741888;300000 -30418;97251627;102748373;300000 -30419;97245143;102754857;300000 -30420;97238659;102761341;300000 -30421;97232175;102767825;300000 -30422;97225692;102774308;300000 -30423;97219209;102780791;300000 -30424;97212727;102787273;300000 -30425;97206245;102793755;300000 -30426;97199763;102800237;300000 -30427;97193282;102806718;300000 -30428;97186802;102813198;300000 -30429;97180321;102819679;300000 -30430;97173842;102826158;300000 -30431;97167362;102832638;300000 -30432;97160883;102839117;300000 -30433;97154405;102845595;300000 -30434;97147927;102852073;300000 -30435;97141449;102858551;300000 -30436;97134972;102865028;300000 -30437;97128495;102871505;300000 -30438;97122019;102877981;300000 -30439;97115543;102884457;300000 -30440;97109067;102890933;300000 -30441;97102592;102897408;300000 -30442;97096117;102903883;300000 -30443;97089643;102910357;300000 -30444;97083169;102916831;300000 -30445;97076696;102923304;300000 -30446;97070223;102929777;300000 -30447;97063750;102936250;300000 -30448;97057278;102942722;300000 -30449;97050806;102949194;300000 -30450;97044335;102955665;300000 -30451;97037864;102962136;300000 -30452;97031394;102968606;300000 -30453;97024924;102975076;300000 -30454;97018454;102981546;300000 -30455;97011985;102988015;300000 -30456;97005516;102994484;300000 -30457;96999048;103000952;300000 -30458;96992580;103007420;300000 -30459;96986112;103013888;300000 -30460;96979645;103020355;300000 -30461;96973179;103026821;300000 -30462;96966713;103033287;300000 -30463;96960247;103039753;300000 -30464;96953782;103046218;300000 -30465;96947317;103052683;300000 -30466;96940852;103059148;300000 -30467;96934388;103065612;300000 -30468;96927924;103072076;300000 -30469;96921461;103078539;300000 -30470;96914998;103085002;300000 -30471;96908536;103091464;300000 -30472;96902074;103097926;300000 -30473;96895613;103104387;300000 -30474;96889151;103110849;300000 -30475;96882691;103117309;300000 -30476;96876230;103123770;300000 -30477;96869771;103130229;300000 -30478;96863311;103136689;300000 -30479;96856852;103143148;300000 -30480;96850394;103149606;300000 -30481;96843936;103156064;300000 -30482;96837478;103162522;300000 -30483;96831021;103168979;300000 -30484;96824564;103175436;300000 -30485;96818107;103181893;300000 -30486;96811651;103188349;300000 -30487;96805196;103194804;300000 -30488;96798740;103201260;300000 -30489;96792286;103207714;300000 -30490;96785831;103214169;300000 -30491;96779378;103220622;300000 -30492;96772924;103227076;300000 -30493;96766471;103233529;300000 -30494;96760018;103239982;300000 -30495;96753566;103246434;300000 -30496;96747114;103252886;300000 -30497;96740663;103259337;300000 -30498;96734212;103265788;300000 -30499;96727762;103272238;300000 -30500;96721311;103278689;300000 -30501;96714862;103285138;300000 -30502;96708413;103291587;300000 -30503;96701964;103298036;300000 -30504;96695515;103304485;300000 -30505;96689067;103310933;300000 -30506;96682620;103317380;300000 -30507;96676173;103323827;300000 -30508;96669726;103330274;300000 -30509;96663280;103336720;300000 -30510;96656834;103343166;300000 -30511;96650388;103349612;300000 -30512;96643943;103356057;300000 -30513;96637499;103362501;300000 -30514;96631055;103368945;300000 -30515;96624611;103375389;300000 -30516;96618168;103381832;300000 -30517;96611725;103388275;300000 -30518;96605282;103394718;300000 -30519;96598840;103401160;300000 -30520;96592398;103407602;300000 -30521;96585957;103414043;300000 -30522;96579516;103420484;300000 -30523;96573076;103426924;300000 -30524;96566636;103433364;300000 -30525;96560197;103439803;300000 -30526;96553757;103446243;300000 -30527;96547319;103452681;300000 -30528;96540881;103459119;300000 -30529;96534443;103465557;300000 -30530;96528005;103471995;300000 -30531;96521568;103478432;300000 -30532;96515132;103484868;300000 -30533;96508696;103491304;300000 -30534;96502260;103497740;300000 -30535;96495824;103504176;300000 -30536;96489390;103510610;300000 -30537;96482955;103517045;300000 -30538;96476521;103523479;300000 -30539;96470087;103529913;300000 -30540;96463654;103536346;300000 -30541;96457221;103542779;300000 -30542;96450789;103549211;300000 -30543;96444357;103555643;300000 -30544;96437926;103562074;300000 -30545;96431495;103568505;300000 -30546;96425064;103574936;300000 -30547;96418634;103581366;300000 -30548;96412204;103587796;300000 -30549;96405774;103594226;300000 -30550;96399345;103600655;300000 -30551;96392917;103607083;300000 -30552;96386489;103613511;300000 -30553;96380061;103619939;300000 -30554;96373634;103626366;300000 -30555;96367207;103632793;300000 -30556;96360780;103639220;300000 -30557;96354354;103645646;300000 -30558;96347929;103652071;300000 -30559;96341503;103658497;300000 -30560;96335079;103664921;300000 -30561;96328654;103671346;300000 -30562;96322230;103677770;300000 -30563;96315807;103684193;300000 -30564;96309384;103690616;300000 -30565;96302961;103697039;300000 -30566;96296539;103703461;300000 -30567;96290117;103709883;300000 -30568;96283695;103716305;300000 -30569;96277274;103722726;300000 -30570;96270854;103729146;300000 -30571;96264434;103735566;300000 -30572;96258014;103741986;300000 -30573;96251595;103748405;300000 -30574;96245176;103754824;300000 -30575;96238757;103761243;300000 -30576;96232339;103767661;300000 -30577;96225921;103774079;300000 -30578;96219504;103780496;300000 -30579;96213087;103786913;300000 -30580;96206671;103793329;300000 -30581;96200255;103799745;300000 -30582;96193840;103806160;300000 -30583;96187424;103812576;300000 -30584;96181010;103818990;300000 -30585;96174595;103825405;300000 -30586;96168182;103831818;300000 -30587;96161768;103838232;300000 -30588;96155355;103844645;300000 -30589;96148942;103851058;300000 -30590;96142530;103857470;300000 -30591;96136118;103863882;300000 -30592;96129707;103870293;300000 -30593;96123296;103876704;300000 -30594;96116886;103883114;300000 -30595;96110476;103889524;300000 -30596;96104066;103895934;300000 -30597;96097657;103902343;300000 -30598;96091248;103908752;300000 -30599;96084839;103915161;300000 -30600;96078431;103921569;300000 -30601;96072024;103927976;300000 -30602;96065617;103934383;300000 -30603;96059210;103940790;300000 -30604;96052804;103947196;300000 -30605;96046398;103953602;300000 -30606;96039992;103960008;300000 -30607;96033587;103966413;300000 -30608;96027182;103972818;300000 -30609;96020778;103979222;300000 -30610;96014374;103985626;300000 -30611;96007971;103992029;300000 -30612;96001568;103998432;300000 -30613;95995165;104004835;300000 -30614;95988763;104011237;300000 -30615;95982362;104017638;300000 -30616;95975960;104024040;300000 -30617;95969559;104030441;300000 -30618;95963159;104036841;300000 -30619;95956759;104043241;300000 -30620;95950359;104049641;300000 -30621;95943960;104056040;300000 -30622;95937561;104062439;300000 -30623;95931163;104068837;300000 -30624;95924765;104075235;300000 -30625;95918367;104081633;300000 -30626;95911970;104088030;300000 -30627;95905574;104094426;300000 -30628;95899177;104100823;300000 -30629;95892781;104107219;300000 -30630;95886386;104113614;300000 -30631;95879991;104120009;300000 -30632;95873596;104126404;300000 -30633;95867202;104132798;300000 -30634;95860808;104139192;300000 -30635;95854415;104145585;300000 -30636;95848022;104151978;300000 -30637;95841629;104158371;300000 -30638;95835237;104164763;300000 -30639;95828846;104171154;300000 -30640;95822454;104177546;300000 -30641;95816063;104183937;300000 -30642;95809673;104190327;300000 -30643;95803283;104196717;300000 -30644;95796893;104203107;300000 -30645;95790504;104209496;300000 -30646;95784115;104215885;300000 -30647;95777727;104222273;300000 -30648;95771339;104228661;300000 -30649;95764952;104235048;300000 -30650;95758564;104241436;300000 -30651;95752178;104247822;300000 -30652;95745791;104254209;300000 -30653;95739406;104260594;300000 -30654;95733020;104266980;300000 -30655;95726635;104273365;300000 -30656;95720251;104279749;300000 -30657;95713866;104286134;300000 -30658;95707483;104292517;300000 -30659;95701099;104298901;300000 -30660;95694716;104305284;300000 -30661;95688334;104311666;300000 -30662;95681952;104318048;300000 -30663;95675570;104324430;300000 -30664;95669189;104330811;300000 -30665;95662808;104337192;300000 -30666;95656427;104343573;300000 -30667;95650047;104349953;300000 -30668;95643668;104356332;300000 -30669;95637288;104362712;300000 -30670;95630910;104369090;300000 -30671;95624531;104375469;300000 -30672;95618153;104381847;300000 -30673;95611776;104388224;300000 -30674;95605399;104394601;300000 -30675;95599022;104400978;300000 -30676;95592646;104407354;300000 -30677;95586270;104413730;300000 -30678;95579894;104420106;300000 -30679;95573519;104426481;300000 -30680;95567145;104432855;300000 -30681;95560771;104439229;300000 -30682;95554397;104445603;300000 -30683;95548023;104451977;300000 -30684;95541650;104458350;300000 -30685;95535278;104464722;300000 -30686;95528906;104471094;300000 -30687;95522534;104477466;300000 -30688;95516163;104483837;300000 -30689;95509792;104490208;300000 -30690;95503421;104496579;300000 -30691;95497051;104502949;300000 -30692;95490682;104509318;300000 -30693;95484312;104515688;300000 -30694;95477944;104522056;300000 -30695;95471575;104528425;300000 -30696;95465207;104534793;300000 -30697;95458840;104541160;300000 -30698;95452472;104547528;300000 -30699;95446106;104553894;300000 -30700;95439739;104560261;300000 -30701;95433374;104566626;300000 -30702;95427008;104572992;300000 -30703;95420643;104579357;300000 -30704;95414278;104585722;300000 -30705;95407914;104592086;300000 -30706;95401550;104598450;300000 -30707;95395187;104604813;300000 -30708;95388824;104611176;300000 -30709;95382461;104617539;300000 -30710;95376099;104623901;300000 -30711;95369737;104630263;300000 -30712;95363376;104636624;300000 -30713;95357015;104642985;300000 -30714;95350654;104649346;300000 -30715;95344294;104655706;300000 -30716;95337935;104662065;300000 -30717;95331575;104668425;300000 -30718;95325216;104674784;300000 -30719;95318858;104681142;300000 -30720;95312500;104687500;300000 -30721;95306142;104693858;300000 -30722;95299785;104700215;300000 -30723;95293428;104706572;300000 -30724;95287072;104712928;300000 -30725;95280716;104719284;300000 -30726;95274360;104725640;300000 -30727;95268005;104731995;300000 -30728;95261651;104738349;300000 -30729;95255296;104744704;300000 -30730;95248942;104751058;300000 -30731;95242589;104757411;300000 -30732;95236236;104763764;300000 -30733;95229883;104770117;300000 -30734;95223531;104776469;300000 -30735;95217179;104782821;300000 -30736;95210828;104789172;300000 -30737;95204477;104795523;300000 -30738;95198126;104801874;300000 -30739;95191776;104808224;300000 -30740;95185426;104814574;300000 -30741;95179077;104820923;300000 -30742;95172728;104827272;300000 -30743;95166379;104833621;300000 -30744;95160031;104839969;300000 -30745;95153684;104846316;300000 -30746;95147336;104852664;300000 -30747;95140989;104859011;300000 -30748;95134643;104865357;300000 -30749;95128297;104871703;300000 -30750;95121951;104878049;300000 -30751;95115606;104884394;300000 -30752;95109261;104890739;300000 -30753;95102917;104897083;300000 -30754;95096573;104903427;300000 -30755;95090229;104909771;300000 -30756;95083886;104916114;300000 -30757;95077543;104922457;300000 -30758;95071201;104928799;300000 -30759;95064859;104935141;300000 -30760;95058518;104941482;300000 -30761;95052176;104947824;300000 -30762;95045836;104954164;300000 -30763;95039495;104960505;300000 -30764;95033156;104966844;300000 -30765;95026816;104973184;300000 -30766;95020477;104979523;300000 -30767;95014139;104985861;300000 -30768;95007800;104992200;300000 -30769;95001463;104998537;300000 -30770;94995125;105004875;300000 -30771;94988788;105011212;300000 -30772;94982452;105017548;300000 -30773;94976115;105023885;300000 -30774;94969780;105030220;300000 -30775;94963444;105036556;300000 -30776;94957109;105042891;300000 -30777;94950775;105049225;300000 -30778;94944441;105055559;300000 -30779;94938107;105061893;300000 -30780;94931774;105068226;300000 -30781;94925441;105074559;300000 -30782;94919109;105080891;300000 -30783;94912777;105087223;300000 -30784;94906445;105093555;300000 -30785;94900114;105099886;300000 -30786;94893783;105106217;300000 -30787;94887452;105112548;300000 -30788;94881123;105118877;300000 -30789;94874793;105125207;300000 -30790;94868464;105131536;300000 -30791;94862135;105137865;300000 -30792;94855807;105144193;300000 -30793;94849479;105150521;300000 -30794;94843151;105156849;300000 -30795;94836824;105163176;300000 -30796;94830497;105169503;300000 -30797;94824171;105175829;300000 -30798;94817845;105182155;300000 -30799;94811520;105188480;300000 -30800;94805195;105194805;300000 -30801;94798870;105201130;300000 -30802;94792546;105207454;300000 -30803;94786222;105213778;300000 -30804;94779899;105220101;300000 -30805;94773576;105226424;300000 -30806;94767253;105232747;300000 -30807;94760931;105239069;300000 -30808;94754609;105245391;300000 -30809;94748288;105251712;300000 -30810;94741967;105258033;300000 -30811;94735646;105264354;300000 -30812;94729326;105270674;300000 -30813;94723007;105276993;300000 -30814;94716687;105283313;300000 -30815;94710368;105289632;300000 -30816;94704050;105295950;300000 -30817;94697732;105302268;300000 -30818;94691414;105308586;300000 -30819;94685097;105314903;300000 -30820;94678780;105321220;300000 -30821;94672464;105327536;300000 -30822;94666148;105333852;300000 -30823;94659832;105340168;300000 -30824;94653517;105346483;300000 -30825;94647202;105352798;300000 -30826;94640888;105359112;300000 -30827;94634574;105365426;300000 -30828;94628260;105371740;300000 -30829;94621947;105378053;300000 -30830;94615634;105384366;300000 -30831;94609322;105390678;300000 -30832;94603010;105396990;300000 -30833;94596698;105403302;300000 -30834;94590387;105409613;300000 -30835;94584077;105415923;300000 -30836;94577766;105422234;300000 -30837;94571456;105428544;300000 -30838;94565147;105434853;300000 -30839;94558838;105441162;300000 -30840;94552529;105447471;300000 -30841;94546221;105453779;300000 -30842;94539913;105460087;300000 -30843;94533606;105466394;300000 -30844;94527299;105472701;300000 -30845;94520992;105479008;300000 -30846;94514686;105485314;300000 -30847;94508380;105491620;300000 -30848;94502075;105497925;300000 -30849;94495770;105504230;300000 -30850;94489465;105510535;300000 -30851;94483161;105516839;300000 -30852;94476857;105523143;300000 -30853;94470554;105529446;300000 -30854;94464251;105535749;300000 -30855;94457948;105542052;300000 -30856;94451646;105548354;300000 -30857;94445345;105554655;300000 -30858;94439043;105560957;300000 -30859;94432742;105567258;300000 -30860;94426442;105573558;300000 -30861;94420142;105579858;300000 -30862;94413842;105586158;300000 -30863;94407543;105592457;300000 -30864;94401244;105598756;300000 -30865;94394946;105605054;300000 -30866;94388648;105611352;300000 -30867;94382350;105617650;300000 -30868;94376053;105623947;300000 -30869;94369756;105630244;300000 -30870;94363460;105636540;300000 -30871;94357164;105642836;300000 -30872;94350868;105649132;300000 -30873;94344573;105655427;300000 -30874;94338278;105661722;300000 -30875;94331984;105668016;300000 -30876;94325690;105674310;300000 -30877;94319396;105680604;300000 -30878;94313103;105686897;300000 -30879;94306810;105693190;300000 -30880;94300518;105699482;300000 -30881;94294226;105705774;300000 -30882;94287935;105712065;300000 -30883;94281644;105718356;300000 -30884;94275353;105724647;300000 -30885;94269063;105730937;300000 -30886;94262773;105737227;300000 -30887;94256483;105743517;300000 -30888;94250194;105749806;300000 -30889;94243906;105756094;300000 -30890;94237617;105762383;300000 -30891;94231330;105768670;300000 -30892;94225042;105774958;300000 -30893;94218755;105781245;300000 -30894;94212468;105787532;300000 -30895;94206182;105793818;300000 -30896;94199896;105800104;300000 -30897;94193611;105806389;300000 -30898;94187326;105812674;300000 -30899;94181041;105818959;300000 -30900;94174757;105825243;300000 -30901;94168474;105831526;300000 -30902;94162190;105837810;300000 -30903;94155907;105844093;300000 -30904;94149625;105850375;300000 -30905;94143343;105856657;300000 -30906;94137061;105862939;300000 -30907;94130779;105869221;300000 -30908;94124499;105875501;300000 -30909;94118218;105881782;300000 -30910;94111938;105888062;300000 -30911;94105658;105894342;300000 -30912;94099379;105900621;300000 -30913;94093100;105906900;300000 -30914;94086822;105913178;300000 -30915;94080543;105919457;300000 -30916;94074266;105925734;300000 -30917;94067988;105932012;300000 -30918;94061712;105938288;300000 -30919;94055435;105944565;300000 -30920;94049159;105950841;300000 -30921;94042883;105957117;300000 -30922;94036608;105963392;300000 -30923;94030333;105969667;300000 -30924;94024059;105975941;300000 -30925;94017785;105982215;300000 -30926;94011511;105988489;300000 -30927;94005238;105994762;300000 -30928;93998965;106001035;300000 -30929;93992693;106007307;300000 -30930;93986421;106013579;300000 -30931;93980149;106019851;300000 -30932;93973878;106026122;300000 -30933;93967607;106032393;300000 -30934;93961337;106038663;300000 -30935;93955067;106044933;300000 -30936;93948798;106051202;300000 -30937;93942528;106057472;300000 -30938;93936260;106063740;300000 -30939;93929991;106070009;300000 -30940;93923723;106076277;300000 -30941;93917456;106082544;300000 -30942;93911189;106088811;300000 -30943;93904922;106095078;300000 -30944;93898656;106101344;300000 -30945;93892390;106107610;300000 -30946;93886124;106113876;300000 -30947;93879859;106120141;300000 -30948;93873594;106126406;300000 -30949;93867330;106132670;300000 -30950;93861066;106138934;300000 -30951;93854803;106145197;300000 -30952;93848540;106151460;300000 -30953;93842277;106157723;300000 -30954;93836015;106163985;300000 -30955;93829753;106170247;300000 -30956;93823491;106176509;300000 -30957;93817230;106182770;300000 -30958;93810970;106189030;300000 -30959;93804709;106195291;300000 -30960;93798450;106201550;300000 -30961;93792190;106207810;300000 -30962;93785931;106214069;300000 -30963;93779673;106220327;300000 -30964;93773414;106226586;300000 -30965;93767156;106232844;300000 -30966;93760899;106239101;300000 -30967;93754642;106245358;300000 -30968;93748385;106251615;300000 -30969;93742129;106257871;300000 -30970;93735873;106264127;300000 -30971;93729618;106270382;300000 -30972;93723363;106276637;300000 -30973;93717108;106282892;300000 -30974;93710854;106289146;300000 -30975;93704600;106295400;300000 -30976;93698347;106301653;300000 -30977;93692094;106307906;300000 -30978;93685842;106314158;300000 -30979;93679589;106320411;300000 -30980;93673338;106326662;300000 -30981;93667086;106332914;300000 -30982;93660835;106339165;300000 -30983;93654585;106345415;300000 -30984;93648335;106351665;300000 -30985;93642085;106357915;300000 -30986;93635836;106364164;300000 -30987;93629587;106370413;300000 -30988;93623338;106376662;300000 -30989;93617090;106382910;300000 -30990;93610842;106389158;300000 -30991;93604595;106395405;300000 -30992;93598348;106401652;300000 -30993;93592101;106407899;300000 -30994;93585855;106414145;300000 -30995;93579610;106420390;300000 -30996;93573364;106426636;300000 -30997;93567119;106432881;300000 -30998;93560875;106439125;300000 -30999;93554631;106445369;300000 -31000;93548387;106451613;300000 -31001;93542144;106457856;300000 -31002;93535901;106464099;300000 -31003;93529658;106470342;300000 -31004;93523416;106476584;300000 -31005;93517175;106482825;300000 -31006;93510933;106489067;300000 -31007;93504692;106495308;300000 -31008;93498452;106501548;300000 -31009;93492212;106507788;300000 -31010;93485972;106514028;300000 -31011;93479733;106520267;300000 -31012;93473494;106526506;300000 -31013;93467256;106532744;300000 -31014;93461018;106538982;300000 -31015;93454780;106545220;300000 -31016;93448543;106551457;300000 -31017;93442306;106557694;300000 -31018;93436069;106563931;300000 -31019;93429833;106570167;300000 -31020;93423598;106576402;300000 -31021;93417362;106582638;300000 -31022;93411128;106588872;300000 -31023;93404893;106595107;300000 -31024;93398659;106601341;300000 -31025;93392425;106607575;300000 -31026;93386192;106613808;300000 -31027;93379959;106620041;300000 -31028;93373727;106626273;300000 -31029;93367495;106632505;300000 -31030;93361263;106638737;300000 -31031;93355032;106644968;300000 -31032;93348801;106651199;300000 -31033;93342571;106657429;300000 -31034;93336341;106663659;300000 -31035;93330111;106669889;300000 -31036;93323882;106676118;300000 -31037;93317653;106682347;300000 -31038;93311425;106688575;300000 -31039;93305197;106694803;300000 -31040;93298969;106701031;300000 -31041;93292742;106707258;300000 -31042;93286515;106713485;300000 -31043;93280289;106719711;300000 -31044;93274063;106725937;300000 -31045;93267837;106732163;300000 -31046;93261612;106738388;300000 -31047;93255387;106744613;300000 -31048;93249163;106750837;300000 -31049;93242939;106757061;300000 -31050;93236715;106763285;300000 -31051;93230492;106769508;300000 -31052;93224269;106775731;300000 -31053;93218047;106781953;300000 -31054;93211825;106788175;300000 -31055;93205603;106794397;300000 -31056;93199382;106800618;300000 -31057;93193161;106806839;300000 -31058;93186941;106813059;300000 -31059;93180721;106819279;300000 -31060;93174501;106825499;300000 -31061;93168282;106831718;300000 -31062;93162063;106837937;300000 -31063;93155845;106844155;300000 -31064;93149627;106850373;300000 -31065;93143409;106856591;300000 -31066;93137192;106862808;300000 -31067;93130975;106869025;300000 -31068;93124759;106875241;300000 -31069;93118543;106881457;300000 -31070;93112327;106887673;300000 -31071;93106112;106893888;300000 -31072;93099897;106900103;300000 -31073;93093683;106906317;300000 -31074;93087469;106912531;300000 -31075;93081255;106918745;300000 -31076;93075042;106924958;300000 -31077;93068829;106931171;300000 -31078;93062617;106937383;300000 -31079;93056405;106943595;300000 -31080;93050193;106949807;300000 -31081;93043982;106956018;300000 -31082;93037771;106962229;300000 -31083;93031561;106968439;300000 -31084;93025351;106974649;300000 -31085;93019141;106980859;300000 -31086;93012932;106987068;300000 -31087;93006723;106993277;300000 -31088;93000515;106999485;300000 -31089;92994307;107005693;300000 -31090;92988099;107011901;300000 -31091;92981892;107018108;300000 -31092;92975685;107024315;300000 -31093;92969479;107030521;300000 -31094;92963273;107036727;300000 -31095;92957067;107042933;300000 -31096;92950862;107049138;300000 -31097;92944657;107055343;300000 -31098;92938453;107061547;300000 -31099;92932249;107067751;300000 -31100;92926045;107073955;300000 -31101;92919842;107080158;300000 -31102;92913639;107086361;300000 -31103;92907437;107092563;300000 -31104;92901235;107098765;300000 -31105;92895033;107104967;300000 -31106;92888832;107111168;300000 -31107;92882631;107117369;300000 -31108;92876431;107123569;300000 -31109;92870230;107129770;300000 -31110;92864031;107135969;300000 -31111;92857832;107142168;300000 -31112;92851633;107148367;300000 -31113;92845434;107154566;300000 -31114;92839236;107160764;300000 -31115;92833039;107166961;300000 -31116;92826841;107173159;300000 -31117;92820645;107179355;300000 -31118;92814448;107185552;300000 -31119;92808252;107191748;300000 -31120;92802057;107197943;300000 -31121;92795861;107204139;300000 -31122;92789666;107210334;300000 -31123;92783472;107216528;300000 -31124;92777278;107222722;300000 -31125;92771084;107228916;300000 -31126;92764891;107235109;300000 -31127;92758698;107241302;300000 -31128;92752506;107247494;300000 -31129;92746314;107253686;300000 -31130;92740122;107259878;300000 -31131;92733931;107266069;300000 -31132;92727740;107272260;300000 -31133;92721549;107278451;300000 -31134;92715359;107284641;300000 -31135;92709170;107290830;300000 -31136;92702980;107297020;300000 -31137;92696792;107303208;300000 -31138;92690603;107309397;300000 -31139;92684415;107315585;300000 -31140;92678227;107321773;300000 -31141;92672040;107327960;300000 -31142;92665853;107334147;300000 -31143;92659667;107340333;300000 -31144;92653481;107346519;300000 -31145;92647295;107352705;300000 -31146;92641110;107358890;300000 -31147;92634925;107365075;300000 -31148;92628740;107371260;300000 -31149;92622556;107377444;300000 -31150;92616372;107383628;300000 -31151;92610189;107389811;300000 -31152;92604006;107395994;300000 -31153;92597824;107402176;300000 -31154;92591642;107408358;300000 -31155;92585460;107414540;300000 -31156;92579278;107420722;300000 -31157;92573098;107426902;300000 -31158;92566917;107433083;300000 -31159;92560737;107439263;300000 -31160;92554557;107445443;300000 -31161;92548378;107451622;300000 -31162;92542199;107457801;300000 -31163;92536020;107463980;300000 -31164;92529842;107470158;300000 -31165;92523664;107476336;300000 -31166;92517487;107482513;300000 -31167;92511310;107488690;300000 -31168;92505133;107494867;300000 -31169;92498957;107501043;300000 -31170;92492782;107507218;300000 -31171;92486606;107513394;300000 -31172;92480431;107519569;300000 -31173;92474257;107525743;300000 -31174;92468082;107531918;300000 -31175;92461909;107538091;300000 -31176;92455735;107544265;300000 -31177;92449562;107550438;300000 -31178;92443390;107556610;300000 -31179;92437217;107562783;300000 -31180;92431046;107568954;300000 -31181;92424874;107575126;300000 -31182;92418703;107581297;300000 -31183;92412532;107587468;300000 -31184;92406362;107593638;300000 -31185;92400192;107599808;300000 -31186;92394023;107605977;300000 -31187;92387854;107612146;300000 -31188;92381685;107618315;300000 -31189;92375517;107624483;300000 -31190;92369349;107630651;300000 -31191;92363182;107636818;300000 -31192;92357015;107642985;300000 -31193;92350848;107649152;300000 -31194;92344682;107655318;300000 -31195;92338516;107661484;300000 -31196;92332350;107667650;300000 -31197;92326185;107673815;300000 -31198;92320021;107679979;300000 -31199;92313856;107686144;300000 -31200;92307692;107692308;300000 -31201;92301529;107698471;300000 -31202;92295366;107704634;300000 -31203;92289203;107710797;300000 -31204;92283041;107716959;300000 -31205;92276879;107723121;300000 -31206;92270717;107729283;300000 -31207;92264556;107735444;300000 -31208;92258395;107741605;300000 -31209;92252235;107747765;300000 -31210;92246075;107753925;300000 -31211;92239915;107760085;300000 -31212;92233756;107766244;300000 -31213;92227597;107772403;300000 -31214;92221439;107778561;300000 -31215;92215281;107784719;300000 -31216;92209124;107790876;300000 -31217;92202966;107797034;300000 -31218;92196810;107803190;300000 -31219;92190653;107809347;300000 -31220;92184497;107815503;300000 -31221;92178342;107821658;300000 -31222;92172186;107827814;300000 -31223;92166031;107833969;300000 -31224;92159877;107840123;300000 -31225;92153723;107846277;300000 -31226;92147569;107852431;300000 -31227;92141416;107858584;300000 -31228;92135263;107864737;300000 -31229;92129111;107870889;300000 -31230;92122959;107877041;300000 -31231;92116807;107883193;300000 -31232;92110656;107889344;300000 -31233;92104505;107895495;300000 -31234;92098354;107901646;300000 -31235;92092204;107907796;300000 -31236;92086055;107913945;300000 -31237;92079905;107920095;300000 -31238;92073756;107926244;300000 -31239;92067608;107932392;300000 -31240;92061460;107938540;300000 -31241;92055312;107944688;300000 -31242;92049165;107950835;300000 -31243;92043018;107956982;300000 -31244;92036871;107963129;300000 -31245;92030725;107969275;300000 -31246;92024579;107975421;300000 -31247;92018434;107981566;300000 -31248;92012289;107987711;300000 -31249;92006144;107993856;300000 -31250;92000000;108000000;300000 -31251;91993856;108006144;300000 -31252;91987713;108012287;300000 -31253;91981570;108018430;300000 -31254;91975427;108024573;300000 -31255;91969285;108030715;300000 -31256;91963143;108036857;300000 -31257;91957002;108042998;300000 -31258;91950861;108049139;300000 -31259;91944720;108055280;300000 -31260;91938580;108061420;300000 -31261;91932440;108067560;300000 -31262;91926300;108073700;300000 -31263;91920161;108079839;300000 -31264;91914023;108085977;300000 -31265;91907884;108092116;300000 -31266;91901746;108098254;300000 -31267;91895609;108104391;300000 -31268;91889472;108110528;300000 -31269;91883335;108116665;300000 -31270;91877199;108122801;300000 -31271;91871063;108128937;300000 -31272;91864927;108135073;300000 -31273;91858792;108141208;300000 -31274;91852657;108147343;300000 -31275;91846523;108153477;300000 -31276;91840389;108159611;300000 -31277;91834255;108165745;300000 -31278;91828122;108171878;300000 -31279;91821989;108178011;300000 -31280;91815857;108184143;300000 -31281;91809725;108190275;300000 -31282;91803593;108196407;300000 -31283;91797462;108202538;300000 -31284;91791331;108208669;300000 -31285;91785201;108214799;300000 -31286;91779071;108220929;300000 -31287;91772941;108227059;300000 -31288;91766812;108233188;300000 -31289;91760683;108239317;300000 -31290;91754554;108245446;300000 -31291;91748426;108251574;300000 -31292;91742298;108257702;300000 -31293;91736171;108263829;300000 -31294;91730044;108269956;300000 -31295;91723918;108276082;300000 -31296;91717791;108282209;300000 -31297;91711666;108288334;300000 -31298;91705540;108294460;300000 -31299;91699415;108300585;300000 -31300;91693291;108306709;300000 -31301;91687167;108312833;300000 -31302;91681043;108318957;300000 -31303;91674919;108325081;300000 -31304;91668796;108331204;300000 -31305;91662674;108337326;300000 -31306;91656551;108343449;300000 -31307;91650430;108349570;300000 -31308;91644308;108355692;300000 -31309;91638187;108361813;300000 -31310;91632066;108367934;300000 -31311;91625946;108374054;300000 -31312;91619826;108380174;300000 -31313;91613707;108386293;300000 -31314;91607588;108392412;300000 -31315;91601469;108398531;300000 -31316;91595351;108404649;300000 -31317;91589233;108410767;300000 -31318;91583115;108416885;300000 -31319;91576998;108423002;300000 -31320;91570881;108429119;300000 -31321;91564765;108435235;300000 -31322;91558649;108441351;300000 -31323;91552533;108447467;300000 -31324;91546418;108453582;300000 -31325;91540303;108459697;300000 -31326;91534189;108465811;300000 -31327;91528075;108471925;300000 -31328;91521961;108478039;300000 -31329;91515848;108484152;300000 -31330;91509735;108490265;300000 -31331;91503623;108496377;300000 -31332;91497511;108502489;300000 -31333;91491399;108508601;300000 -31334;91485288;108514712;300000 -31335;91479177;108520823;300000 -31336;91473066;108526934;300000 -31337;91466956;108533044;300000 -31338;91460846;108539154;300000 -31339;91454737;108545263;300000 -31340;91448628;108551372;300000 -31341;91442519;108557481;300000 -31342;91436411;108563589;300000 -31343;91430303;108569697;300000 -31344;91424196;108575804;300000 -31345;91418089;108581911;300000 -31346;91411982;108588018;300000 -31347;91405876;108594124;300000 -31348;91399770;108600230;300000 -31349;91393665;108606335;300000 -31350;91387560;108612440;300000 -31351;91381455;108618545;300000 -31352;91375351;108624649;300000 -31353;91369247;108630753;300000 -31354;91363143;108636857;300000 -31355;91357040;108642960;300000 -31356;91350938;108649062;300000 -31357;91344835;108655165;300000 -31358;91338733;108661267;300000 -31359;91332632;108667368;300000 -31360;91326531;108673469;300000 -31361;91320430;108679570;300000 -31362;91314329;108685671;300000 -31363;91308229;108691771;300000 -31364;91302130;108697870;300000 -31365;91296031;108703969;300000 -31366;91289932;108710068;300000 -31367;91283833;108716167;300000 -31368;91277735;108722265;300000 -31369;91271638;108728362;300000 -31370;91265540;108734460;300000 -31371;91259443;108740557;300000 -31372;91253347;108746653;300000 -31373;91247251;108752749;300000 -31374;91241155;108758845;300000 -31375;91235060;108764940;300000 -31376;91228965;108771035;300000 -31377;91222870;108777130;300000 -31378;91216776;108783224;300000 -31379;91210682;108789318;300000 -31380;91204589;108795411;300000 -31381;91198496;108801504;300000 -31382;91192403;108807597;300000 -31383;91186311;108813689;300000 -31384;91180219;108819781;300000 -31385;91174128;108825872;300000 -31386;91168037;108831963;300000 -31387;91161946;108838054;300000 -31388;91155856;108844144;300000 -31389;91149766;108850234;300000 -31390;91143676;108856324;300000 -31391;91137587;108862413;300000 -31392;91131498;108868502;300000 -31393;91125410;108874590;300000 -31394;91119322;108880678;300000 -31395;91113235;108886765;300000 -31396;91107147;108892853;300000 -31397;91101061;108898939;300000 -31398;91094974;108905026;300000 -31399;91088888;108911112;300000 -31400;91082803;108917197;300000 -31401;91076717;108923283;300000 -31402;91070632;108929368;300000 -31403;91064548;108935452;300000 -31404;91058464;108941536;300000 -31405;91052380;108947620;300000 -31406;91046297;108953703;300000 -31407;91040214;108959786;300000 -31408;91034131;108965869;300000 -31409;91028049;108971951;300000 -31410;91021968;108978032;300000 -31411;91015886;108984114;300000 -31412;91009805;108990195;300000 -31413;91003725;108996275;300000 -31414;90997644;109002356;300000 -31415;90991565;109008435;300000 -31416;90985485;109014515;300000 -31417;90979406;109020594;300000 -31418;90973327;109026673;300000 -31419;90967249;109032751;300000 -31420;90961171;109038829;300000 -31421;90955094;109044906;300000 -31422;90949017;109050983;300000 -31423;90942940;109057060;300000 -31424;90936864;109063136;300000 -31425;90930788;109069212;300000 -31426;90924712;109075288;300000 -31427;90918637;109081363;300000 -31428;90912562;109087438;300000 -31429;90906488;109093512;300000 -31430;90900414;109099586;300000 -31431;90894340;109105660;300000 -31432;90888267;109111733;300000 -31433;90882194;109117806;300000 -31434;90876121;109123879;300000 -31435;90870049;109129951;300000 -31436;90863978;109136022;300000 -31437;90857906;109142094;300000 -31438;90851835;109148165;300000 -31439;90845765;109154235;300000 -31440;90839695;109160305;300000 -31441;90833625;109166375;300000 -31442;90827555;109172445;300000 -31443;90821486;109178514;300000 -31444;90815418;109184582;300000 -31445;90809350;109190650;300000 -31446;90803282;109196718;300000 -31447;90797214;109202786;300000 -31448;90791147;109208853;300000 -31449;90785081;109214919;300000 -31450;90779014;109220986;300000 -31451;90772948;109227052;300000 -31452;90766883;109233117;300000 -31453;90760818;109239182;300000 -31454;90754753;109245247;300000 -31455;90748689;109251311;300000 -31456;90742625;109257375;300000 -31457;90736561;109263439;300000 -31458;90730498;109269502;300000 -31459;90724435;109275565;300000 -31460;90718373;109281627;300000 -31461;90712310;109287690;300000 -31462;90706249;109293751;300000 -31463;90700188;109299812;300000 -31464;90694127;109305873;300000 -31465;90688066;109311934;300000 -31466;90682006;109317994;300000 -31467;90675946;109324054;300000 -31468;90669887;109330113;300000 -31469;90663828;109336172;300000 -31470;90657769;109342231;300000 -31471;90651711;109348289;300000 -31472;90645653;109354347;300000 -31473;90639596;109360404;300000 -31474;90633539;109366461;300000 -31475;90627482;109372518;300000 -31476;90621426;109378574;300000 -31477;90615370;109384630;300000 -31478;90609314;109390686;300000 -31479;90603259;109396741;300000 -31480;90597205;109402795;300000 -31481;90591150;109408850;300000 -31482;90585096;109414904;300000 -31483;90579043;109420957;300000 -31484;90572989;109427011;300000 -31485;90566937;109433063;300000 -31486;90560884;109439116;300000 -31487;90554832;109445168;300000 -31488;90548780;109451220;300000 -31489;90542729;109457271;300000 -31490;90536678;109463322;300000 -31491;90530628;109469372;300000 -31492;90524578;109475422;300000 -31493;90518528;109481472;300000 -31494;90512479;109487521;300000 -31495;90506430;109493570;300000 -31496;90500381;109499619;300000 -31497;90494333;109505667;300000 -31498;90488285;109511715;300000 -31499;90482238;109517762;300000 -31500;90476190;109523810;300000 -31501;90470144;109529856;300000 -31502;90464098;109535902;300000 -31503;90458052;109541948;300000 -31504;90452006;109547994;300000 -31505;90445961;109554039;300000 -31506;90439916;109560084;300000 -31507;90433872;109566128;300000 -31508;90427828;109572172;300000 -31509;90421784;109578216;300000 -31510;90415741;109584259;300000 -31511;90409698;109590302;300000 -31512;90403656;109596344;300000 -31513;90397614;109602386;300000 -31514;90391572;109608428;300000 -31515;90385531;109614469;300000 -31516;90379490;109620510;300000 -31517;90373449;109626551;300000 -31518;90367409;109632591;300000 -31519;90361369;109638631;300000 -31520;90355330;109644670;300000 -31521;90349291;109650709;300000 -31522;90343252;109656748;300000 -31523;90337214;109662786;300000 -31524;90331176;109668824;300000 -31525;90325139;109674861;300000 -31526;90319102;109680898;300000 -31527;90313065;109686935;300000 -31528;90307029;109692971;300000 -31529;90300993;109699007;300000 -31530;90294957;109705043;300000 -31531;90288922;109711078;300000 -31532;90282887;109717113;300000 -31533;90276853;109723147;300000 -31534;90270819;109729181;300000 -31535;90264785;109735215;300000 -31536;90258752;109741248;300000 -31537;90252719;109747281;300000 -31538;90246687;109753313;300000 -31539;90240654;109759346;300000 -31540;90234623;109765377;300000 -31541;90228591;109771409;300000 -31542;90222560;109777440;300000 -31543;90216530;109783470;300000 -31544;90210500;109789500;300000 -31545;90204470;109795530;300000 -31546;90198440;109801560;300000 -31547;90192411;109807589;300000 -31548;90186383;109813617;300000 -31549;90180354;109819646;300000 -31550;90174326;109825674;300000 -31551;90168299;109831701;300000 -31552;90162272;109837728;300000 -31553;90156245;109843755;300000 -31554;90150219;109849781;300000 -31555;90144193;109855807;300000 -31556;90138167;109861833;300000 -31557;90132142;109867858;300000 -31558;90126117;109873883;300000 -31559;90120093;109879907;300000 -31560;90114068;109885932;300000 -31561;90108045;109891955;300000 -31562;90102021;109897979;300000 -31563;90095998;109904002;300000 -31564;90089976;109910024;300000 -31565;90083954;109916046;300000 -31566;90077932;109922068;300000 -31567;90071911;109928089;300000 -31568;90065890;109934110;300000 -31569;90059869;109940131;300000 -31570;90053849;109946151;300000 -31571;90047829;109952171;300000 -31572;90041809;109958191;300000 -31573;90035790;109964210;300000 -31574;90029771;109970229;300000 -31575;90023753;109976247;300000 -31576;90017735;109982265;300000 -31577;90011717;109988283;300000 -31578;90005700;109994300;300000 -31579;89999683;110000317;300000 -31580;89993667;110006333;300000 -31581;89987651;110012349;300000 -31582;89981635;110018365;300000 -31583;89975620;110024380;300000 -31584;89969605;110030395;300000 -31585;89963590;110036410;300000 -31586;89957576;110042424;300000 -31587;89951562;110048438;300000 -31588;89945549;110054451;300000 -31589;89939536;110060464;300000 -31590;89933523;110066477;300000 -31591;89927511;110072489;300000 -31592;89921499;110078501;300000 -31593;89915488;110084512;300000 -31594;89909476;110090524;300000 -31595;89903466;110096534;300000 -31596;89897455;110102545;300000 -31597;89891445;110108555;300000 -31598;89885436;110114564;300000 -31599;89879427;110120573;300000 -31600;89873418;110126582;300000 -31601;89867409;110132591;300000 -31602;89861401;110138599;300000 -31603;89855393;110144607;300000 -31604;89849386;110150614;300000 -31605;89843379;110156621;300000 -31606;89837373;110162627;300000 -31607;89831366;110168634;300000 -31608;89825361;110174639;300000 -31609;89819355;110180645;300000 -31610;89813350;110186650;300000 -31611;89807346;110192654;300000 -31612;89801341;110198659;300000 -31613;89795337;110204663;300000 -31614;89789334;110210666;300000 -31615;89783331;110216669;300000 -31616;89777328;110222672;300000 -31617;89771326;110228674;300000 -31618;89765324;110234676;300000 -31619;89759322;110240678;300000 -31620;89753321;110246679;300000 -31621;89747320;110252680;300000 -31622;89741319;110258681;300000 -31623;89735319;110264681;300000 -31624;89729320;110270680;300000 -31625;89723320;110276680;300000 -31626;89717321;110282679;300000 -31627;89711323;110288677;300000 -31628;89705324;110294676;300000 -31629;89699327;110300673;300000 -31630;89693329;110306671;300000 -31631;89687332;110312668;300000 -31632;89681335;110318665;300000 -31633;89675339;110324661;300000 -31634;89669343;110330657;300000 -31635;89663348;110336652;300000 -31636;89657352;110342648;300000 -31637;89651358;110348642;300000 -31638;89645363;110354637;300000 -31639;89639369;110360631;300000 -31640;89633375;110366625;300000 -31641;89627382;110372618;300000 -31642;89621389;110378611;300000 -31643;89615397;110384603;300000 -31644;89609405;110390595;300000 -31645;89603413;110396587;300000 -31646;89597421;110402579;300000 -31647;89591430;110408570;300000 -31648;89585440;110414560;300000 -31649;89579450;110420550;300000 -31650;89573460;110426540;300000 -31651;89567470;110432530;300000 -31652;89561481;110438519;300000 -31653;89555492;110444508;300000 -31654;89549504;110450496;300000 -31655;89543516;110456484;300000 -31656;89537528;110462472;300000 -31657;89531541;110468459;300000 -31658;89525554;110474446;300000 -31659;89519568;110480432;300000 -31660;89513582;110486418;300000 -31661;89507596;110492404;300000 -31662;89501611;110498389;300000 -31663;89495626;110504374;300000 -31664;89489641;110510359;300000 -31665;89483657;110516343;300000 -31666;89477673;110522327;300000 -31667;89471690;110528310;300000 -31668;89465707;110534293;300000 -31669;89459724;110540276;300000 -31670;89453742;110546258;300000 -31671;89447760;110552240;300000 -31672;89441778;110558222;300000 -31673;89435797;110564203;300000 -31674;89429816;110570184;300000 -31675;89423836;110576164;300000 -31676;89417856;110582144;300000 -31677;89411876;110588124;300000 -31678;89405897;110594103;300000 -31679;89399918;110600082;300000 -31680;89393939;110606061;300000 -31681;89387961;110612039;300000 -31682;89381983;110618017;300000 -31683;89376006;110623994;300000 -31684;89370029;110629971;300000 -31685;89364052;110635948;300000 -31686;89358076;110641924;300000 -31687;89352100;110647900;300000 -31688;89346125;110653875;300000 -31689;89340150;110659850;300000 -31690;89334175;110665825;300000 -31691;89328200;110671800;300000 -31692;89322226;110677774;300000 -31693;89316253;110683747;300000 -31694;89310280;110689720;300000 -31695;89304307;110695693;300000 -31696;89298334;110701666;300000 -31697;89292362;110707638;300000 -31698;89286390;110713610;300000 -31699;89280419;110719581;300000 -31700;89274448;110725552;300000 -31701;89268477;110731523;300000 -31702;89262507;110737493;300000 -31703;89256537;110743463;300000 -31704;89250568;110749432;300000 -31705;89244599;110755401;300000 -31706;89238630;110761370;300000 -31707;89232662;110767338;300000 -31708;89226694;110773306;300000 -31709;89220726;110779274;300000 -31710;89214759;110785241;300000 -31711;89208792;110791208;300000 -31712;89202825;110797175;300000 -31713;89196859;110803141;300000 -31714;89190894;110809106;300000 -31715;89184928;110815072;300000 -31716;89178963;110821037;300000 -31717;89172999;110827001;300000 -31718;89167034;110832966;300000 -31719;89161071;110838929;300000 -31720;89155107;110844893;300000 -31721;89149144;110850856;300000 -31722;89143181;110856819;300000 -31723;89137219;110862781;300000 -31724;89131257;110868743;300000 -31725;89125296;110874704;300000 -31726;89119334;110880666;300000 -31727;89113373;110886627;300000 -31728;89107413;110892587;300000 -31729;89101453;110898547;300000 -31730;89095493;110904507;300000 -31731;89089534;110910466;300000 -31732;89083575;110916425;300000 -31733;89077616;110922384;300000 -31734;89071658;110928342;300000 -31735;89065700;110934300;300000 -31736;89059743;110940257;300000 -31737;89053786;110946214;300000 -31738;89047829;110952171;300000 -31739;89041873;110958127;300000 -31740;89035917;110964083;300000 -31741;89029961;110970039;300000 -31742;89024006;110975994;300000 -31743;89018051;110981949;300000 -31744;89012097;110987903;300000 -31745;89006143;110993857;300000 -31746;89000189;110999811;300000 -31747;88994236;111005764;300000 -31748;88988283;111011717;300000 -31749;88982330;111017670;300000 -31750;88976378;111023622;300000 -31751;88970426;111029574;300000 -31752;88964475;111035525;300000 -31753;88958524;111041476;300000 -31754;88952573;111047427;300000 -31755;88946623;111053377;300000 -31756;88940673;111059327;300000 -31757;88934723;111065277;300000 -31758;88928774;111071226;300000 -31759;88922825;111077175;300000 -31760;88916877;111083123;300000 -31761;88910928;111089072;300000 -31762;88904981;111095019;300000 -31763;88899033;111100967;300000 -31764;88893087;111106913;300000 -31765;88887140;111112860;300000 -31766;88881194;111118806;300000 -31767;88875248;111124752;300000 -31768;88869302;111130698;300000 -31769;88863357;111136643;300000 -31770;88857413;111142587;300000 -31771;88851468;111148532;300000 -31772;88845524;111154476;300000 -31773;88839581;111160419;300000 -31774;88833638;111166362;300000 -31775;88827695;111172305;300000 -31776;88821752;111178248;300000 -31777;88815810;111184190;300000 -31778;88809868;111190132;300000 -31779;88803927;111196073;300000 -31780;88797986;111202014;300000 -31781;88792046;111207954;300000 -31782;88786105;111213895;300000 -31783;88780165;111219835;300000 -31784;88774226;111225774;300000 -31785;88768287;111231713;300000 -31786;88762348;111237652;300000 -31787;88756410;111243590;300000 -31788;88750472;111249528;300000 -31789;88744534;111255466;300000 -31790;88738597;111261403;300000 -31791;88732660;111267340;300000 -31792;88726724;111273276;300000 -31793;88720788;111279212;300000 -31794;88714852;111285148;300000 -31795;88708916;111291084;300000 -31796;88702982;111297018;300000 -31797;88697047;111302953;300000 -31798;88691113;111308887;300000 -31799;88685179;111314821;300000 -31800;88679245;111320755;300000 -31801;88673312;111326688;300000 -31802;88667379;111332621;300000 -31803;88661447;111338553;300000 -31804;88655515;111344485;300000 -31805;88649583;111350417;300000 -31806;88643652;111356348;300000 -31807;88637721;111362279;300000 -31808;88631791;111368209;300000 -31809;88625861;111374139;300000 -31810;88619931;111380069;300000 -31811;88614001;111385999;300000 -31812;88608072;111391928;300000 -31813;88602144;111397856;300000 -31814;88596216;111403784;300000 -31815;88590288;111409712;300000 -31816;88584360;111415640;300000 -31817;88578433;111421567;300000 -31818;88572506;111427494;300000 -31819;88566580;111433420;300000 -31820;88560654;111439346;300000 -31821;88554728;111445272;300000 -31822;88548803;111451197;300000 -31823;88542878;111457122;300000 -31824;88536953;111463047;300000 -31825;88531029;111468971;300000 -31826;88525105;111474895;300000 -31827;88519182;111480818;300000 -31828;88513259;111486741;300000 -31829;88507336;111492664;300000 -31830;88501414;111498586;300000 -31831;88495492;111504508;300000 -31832;88489570;111510430;300000 -31833;88483649;111516351;300000 -31834;88477728;111522272;300000 -31835;88471808;111528192;300000 -31836;88465888;111534112;300000 -31837;88459968;111540032;300000 -31838;88454049;111545951;300000 -31839;88448130;111551870;300000 -31840;88442211;111557789;300000 -31841;88436293;111563707;300000 -31842;88430375;111569625;300000 -31843;88424457;111575543;300000 -31844;88418540;111581460;300000 -31845;88412624;111587376;300000 -31846;88406707;111593293;300000 -31847;88400791;111599209;300000 -31848;88394876;111605124;300000 -31849;88388960;111611040;300000 -31850;88383046;111616954;300000 -31851;88377131;111622869;300000 -31852;88371217;111628783;300000 -31853;88365303;111634697;300000 -31854;88359390;111640610;300000 -31855;88353477;111646523;300000 -31856;88347564;111652436;300000 -31857;88341652;111658348;300000 -31858;88335740;111664260;300000 -31859;88329828;111670172;300000 -31860;88323917;111676083;300000 -31861;88318006;111681994;300000 -31862;88312096;111687904;300000 -31863;88306186;111693814;300000 -31864;88300276;111699724;300000 -31865;88294367;111705633;300000 -31866;88288458;111711542;300000 -31867;88282549;111717451;300000 -31868;88276641;111723359;300000 -31869;88270733;111729267;300000 -31870;88264826;111735174;300000 -31871;88258919;111741081;300000 -31872;88253012;111746988;300000 -31873;88247106;111752894;300000 -31874;88241200;111758800;300000 -31875;88235294;111764706;300000 -31876;88229389;111770611;300000 -31877;88223484;111776516;300000 -31878;88217580;111782420;300000 -31879;88211675;111788325;300000 -31880;88205772;111794228;300000 -31881;88199868;111800132;300000 -31882;88193965;111806035;300000 -31883;88188063;111811937;300000 -31884;88182160;111817840;300000 -31885;88176258;111823742;300000 -31886;88170357;111829643;300000 -31887;88164456;111835544;300000 -31888;88158555;111841445;300000 -31889;88152655;111847345;300000 -31890;88146754;111853246;300000 -31891;88140855;111859145;300000 -31892;88134955;111865045;300000 -31893;88129057;111870943;300000 -31894;88123158;111876842;300000 -31895;88117260;111882740;300000 -31896;88111362;111888638;300000 -31897;88105464;111894536;300000 -31898;88099567;111900433;300000 -31899;88093671;111906329;300000 -31900;88087774;111912226;300000 -31901;88081878;111918122;300000 -31902;88075983;111924017;300000 -31903;88070087;111929913;300000 -31904;88064193;111935807;300000 -31905;88058298;111941702;300000 -31906;88052404;111947596;300000 -31907;88046510;111953490;300000 -31908;88040617;111959383;300000 -31909;88034724;111965276;300000 -31910;88028831;111971169;300000 -31911;88022939;111977061;300000 -31912;88017047;111982953;300000 -31913;88011155;111988845;300000 -31914;88005264;111994736;300000 -31915;87999373;112000627;300000 -31916;87993483;112006517;300000 -31917;87987593;112012407;300000 -31918;87981703;112018297;300000 -31919;87975814;112024186;300000 -31920;87969925;112030075;300000 -31921;87964036;112035964;300000 -31922;87958148;112041852;300000 -31923;87952260;112047740;300000 -31924;87946373;112053627;300000 -31925;87940486;112059514;300000 -31926;87934599;112065401;300000 -31927;87928712;112071288;300000 -31928;87922826;112077174;300000 -31929;87916941;112083059;300000 -31930;87911055;112088945;300000 -31931;87905171;112094829;300000 -31932;87899286;112100714;300000 -31933;87893402;112106598;300000 -31934;87887518;112112482;300000 -31935;87881635;112118365;300000 -31936;87875752;112124248;300000 -31937;87869869;112130131;300000 -31938;87863986;112136014;300000 -31939;87858105;112141895;300000 -31940;87852223;112147777;300000 -31941;87846342;112153658;300000 -31942;87840461;112159539;300000 -31943;87834580;112165420;300000 -31944;87828700;112171300;300000 -31945;87822820;112177180;300000 -31946;87816941;112183059;300000 -31947;87811062;112188938;300000 -31948;87805183;112194817;300000 -31949;87799305;112200695;300000 -31950;87793427;112206573;300000 -31951;87787550;112212450;300000 -31952;87781673;112218327;300000 -31953;87775796;112224204;300000 -31954;87769919;112230081;300000 -31955;87764043;112235957;300000 -31956;87758167;112241833;300000 -31957;87752292;112247708;300000 -31958;87746417;112253583;300000 -31959;87740543;112259457;300000 -31960;87734668;112265332;300000 -31961;87728794;112271206;300000 -31962;87722921;112277079;300000 -31963;87717048;112282952;300000 -31964;87711175;112288825;300000 -31965;87705303;112294697;300000 -31966;87699431;112300569;300000 -31967;87693559;112306441;300000 -31968;87687688;112312312;300000 -31969;87681817;112318183;300000 -31970;87675946;112324054;300000 -31971;87670076;112329924;300000 -31972;87664206;112335794;300000 -31973;87658337;112341663;300000 -31974;87652468;112347532;300000 -31975;87646599;112353401;300000 -31976;87640731;112359269;300000 -31977;87634863;112365137;300000 -31978;87628995;112371005;300000 -31979;87623128;112376872;300000 -31980;87617261;112382739;300000 -31981;87611394;112388606;300000 -31982;87605528;112394472;300000 -31983;87599662;112400338;300000 -31984;87593797;112406203;300000 -31985;87587932;112412068;300000 -31986;87582067;112417933;300000 -31987;87576203;112423797;300000 -31988;87570339;112429661;300000 -31989;87564475;112435525;300000 -31990;87558612;112441388;300000 -31991;87552749;112447251;300000 -31992;87546887;112453113;300000 -31993;87541025;112458975;300000 -31994;87535163;112464837;300000 -31995;87529301;112470699;300000 -31996;87523440;112476560;300000 -31997;87517580;112482420;300000 -31998;87511719;112488281;300000 -31999;87505860;112494140;300000 -32000;87500000;112500000;300000 -32001;87494141;112505859;300000 -32002;87488282;112511718;300000 -32003;87482424;112517576;300000 -32004;87476565;112523435;300000 -32005;87470708;112529292;300000 -32006;87464850;112535150;300000 -32007;87458993;112541007;300000 -32008;87453137;112546863;300000 -32009;87447280;112552720;300000 -32010;87441425;112558575;300000 -32011;87435569;112564431;300000 -32012;87429714;112570286;300000 -32013;87423859;112576141;300000 -32014;87418005;112581995;300000 -32015;87412151;112587849;300000 -32016;87406297;112593703;300000 -32017;87400444;112599556;300000 -32018;87394591;112605409;300000 -32019;87388738;112611262;300000 -32020;87382886;112617114;300000 -32021;87377034;112622966;300000 -32022;87371182;112628818;300000 -32023;87365331;112634669;300000 -32024;87359480;112640520;300000 -32025;87353630;112646370;300000 -32026;87347780;112652220;300000 -32027;87341930;112658070;300000 -32028;87336081;112663919;300000 -32029;87330232;112669768;300000 -32030;87324383;112675617;300000 -32031;87318535;112681465;300000 -32032;87312687;112687313;300000 -32033;87306840;112693160;300000 -32034;87300993;112699007;300000 -32035;87295146;112704854;300000 -32036;87289300;112710700;300000 -32037;87283454;112716546;300000 -32038;87277608;112722392;300000 -32039;87271763;112728237;300000 -32040;87265918;112734082;300000 -32041;87260073;112739927;300000 -32042;87254229;112745771;300000 -32043;87248385;112751615;300000 -32044;87242542;112757458;300000 -32045;87236698;112763302;300000 -32046;87230856;112769144;300000 -32047;87225013;112774987;300000 -32048;87219171;112780829;300000 -32049;87213330;112786670;300000 -32050;87207488;112792512;300000 -32051;87201647;112798353;300000 -32052;87195807;112804193;300000 -32053;87189967;112810033;300000 -32054;87184127;112815873;300000 -32055;87178287;112821713;300000 -32056;87172448;112827552;300000 -32057;87166609;112833391;300000 -32058;87160771;112839229;300000 -32059;87154933;112845067;300000 -32060;87149095;112850905;300000 -32061;87143258;112856742;300000 -32062;87137421;112862579;300000 -32063;87131585;112868415;300000 -32064;87125749;112874251;300000 -32065;87119913;112880087;300000 -32066;87114077;112885923;300000 -32067;87108242;112891758;300000 -32068;87102407;112897593;300000 -32069;87096573;112903427;300000 -32070;87090739;112909261;300000 -32071;87084905;112915095;300000 -32072;87079072;112920928;300000 -32073;87073239;112926761;300000 -32074;87067407;112932593;300000 -32075;87061574;112938426;300000 -32076;87055743;112944257;300000 -32077;87049911;112950089;300000 -32078;87044080;112955920;300000 -32079;87038249;112961751;300000 -32080;87032419;112967581;300000 -32081;87026589;112973411;300000 -32082;87020759;112979241;300000 -32083;87014930;112985070;300000 -32084;87009101;112990899;300000 -32085;87003273;112996727;300000 -32086;86997444;113002556;300000 -32087;86991617;113008383;300000 -32088;86985789;113014211;300000 -32089;86979962;113020038;300000 -32090;86974135;113025865;300000 -32091;86968309;113031691;300000 -32092;86962483;113037517;300000 -32093;86956657;113043343;300000 -32094;86950832;113049168;300000 -32095;86945007;113054993;300000 -32096;86939182;113060818;300000 -32097;86933358;113066642;300000 -32098;86927534;113072466;300000 -32099;86921711;113078289;300000 -32100;86915888;113084112;300000 -32101;86910065;113089935;300000 -32102;86904243;113095757;300000 -32103;86898421;113101579;300000 -32104;86892599;113107401;300000 -32105;86886778;113113222;300000 -32106;86880957;113119043;300000 -32107;86875136;113124864;300000 -32108;86869316;113130684;300000 -32109;86863496;113136504;300000 -32110;86857677;113142323;300000 -32111;86851858;113148142;300000 -32112;86846039;113153961;300000 -32113;86840220;113159780;300000 -32114;86834402;113165598;300000 -32115;86828585;113171415;300000 -32116;86822767;113177233;300000 -32117;86816951;113183049;300000 -32118;86811134;113188866;300000 -32119;86805318;113194682;300000 -32120;86799502;113200498;300000 -32121;86793686;113206314;300000 -32122;86787871;113212129;300000 -32123;86782056;113217944;300000 -32124;86776242;113223758;300000 -32125;86770428;113229572;300000 -32126;86764614;113235386;300000 -32127;86758801;113241199;300000 -32128;86752988;113247012;300000 -32129;86747175;113252825;300000 -32130;86741363;113258637;300000 -32131;86735551;113264449;300000 -32132;86729740;113270260;300000 -32133;86723929;113276071;300000 -32134;86718118;113281882;300000 -32135;86712307;113287693;300000 -32136;86706497;113293503;300000 -32137;86700688;113299312;300000 -32138;86694878;113305122;300000 -32139;86689069;113310931;300000 -32140;86683261;113316739;300000 -32141;86677452;113322548;300000 -32142;86671645;113328355;300000 -32143;86665837;113334163;300000 -32144;86660030;113339970;300000 -32145;86654223;113345777;300000 -32146;86648417;113351583;300000 -32147;86642611;113357389;300000 -32148;86636805;113363195;300000 -32149;86630999;113369001;300000 -32150;86625194;113374806;300000 -32151;86619390;113380610;300000 -32152;86613585;113386415;300000 -32153;86607782;113392218;300000 -32154;86601978;113398022;300000 -32155;86596175;113403825;300000 -32156;86590372;113409628;300000 -32157;86584569;113415431;300000 -32158;86578767;113421233;300000 -32159;86572966;113427034;300000 -32160;86567164;113432836;300000 -32161;86561363;113438637;300000 -32162;86555562;113444438;300000 -32163;86549762;113450238;300000 -32164;86543962;113456038;300000 -32165;86538163;113461837;300000 -32166;86532363;113467637;300000 -32167;86526564;113473436;300000 -32168;86520766;113479234;300000 -32169;86514968;113485032;300000 -32170;86509170;113490830;300000 -32171;86503373;113496627;300000 -32172;86497576;113502424;300000 -32173;86491779;113508221;300000 -32174;86485982;113514018;300000 -32175;86480186;113519814;300000 -32176;86474391;113525609;300000 -32177;86468596;113531404;300000 -32178;86462801;113537199;300000 -32179;86457006;113542994;300000 -32180;86451212;113548788;300000 -32181;86445418;113554582;300000 -32182;86439625;113560375;300000 -32183;86433832;113566168;300000 -32184;86428039;113571961;300000 -32185;86422246;113577754;300000 -32186;86416454;113583546;300000 -32187;86410663;113589337;300000 -32188;86404871;113595129;300000 -32189;86399080;113600920;300000 -32190;86393290;113606710;300000 -32191;86387500;113612500;300000 -32192;86381710;113618290;300000 -32193;86375920;113624080;300000 -32194;86370131;113629869;300000 -32195;86364342;113635658;300000 -32196;86358554;113641446;300000 -32197;86352766;113647234;300000 -32198;86346978;113653022;300000 -32199;86341191;113658809;300000 -32200;86335404;113664596;300000 -32201;86329617;113670383;300000 -32202;86323831;113676169;300000 -32203;86318045;113681955;300000 -32204;86312259;113687741;300000 -32205;86306474;113693526;300000 -32206;86300689;113699311;300000 -32207;86294905;113705095;300000 -32208;86289121;113710879;300000 -32209;86283337;113716663;300000 -32210;86277554;113722446;300000 -32211;86271771;113728229;300000 -32212;86265988;113734012;300000 -32213;86260206;113739794;300000 -32214;86254424;113745576;300000 -32215;86248642;113751358;300000 -32216;86242861;113757139;300000 -32217;86237080;113762920;300000 -32218;86231299;113768701;300000 -32219;86225519;113774481;300000 -32220;86219739;113780261;300000 -32221;86213960;113786040;300000 -32222;86208181;113791819;300000 -32223;86202402;113797598;300000 -32224;86196624;113803376;300000 -32225;86190846;113809154;300000 -32226;86185068;113814932;300000 -32227;86179291;113820709;300000 -32228;86173514;113826486;300000 -32229;86167737;113832263;300000 -32230;86161961;113838039;300000 -32231;86156185;113843815;300000 -32232;86150410;113849590;300000 -32233;86144634;113855366;300000 -32234;86138860;113861140;300000 -32235;86133085;113866915;300000 -32236;86127311;113872689;300000 -32237;86121537;113878463;300000 -32238;86115764;113884236;300000 -32239;86109991;113890009;300000 -32240;86104218;113895782;300000 -32241;86098446;113901554;300000 -32242;86092674;113907326;300000 -32243;86086903;113913097;300000 -32244;86081131;113918869;300000 -32245;86075361;113924639;300000 -32246;86069590;113930410;300000 -32247;86063820;113936180;300000 -32248;86058050;113941950;300000 -32249;86052281;113947719;300000 -32250;86046512;113953488;300000 -32251;86040743;113959257;300000 -32252;86034975;113965025;300000 -32253;86029207;113970793;300000 -32254;86023439;113976561;300000 -32255;86017672;113982328;300000 -32256;86011905;113988095;300000 -32257;86006138;113993862;300000 -32258;86000372;113999628;300000 -32259;85994606;114005394;300000 -32260;85988841;114011159;300000 -32261;85983076;114016924;300000 -32262;85977311;114022689;300000 -32263;85971546;114028454;300000 -32264;85965782;114034218;300000 -32265;85960019;114039981;300000 -32266;85954255;114045745;300000 -32267;85948492;114051508;300000 -32268;85942730;114057270;300000 -32269;85936967;114063033;300000 -32270;85931205;114068795;300000 -32271;85925444;114074556;300000 -32272;85919683;114080317;300000 -32273;85913922;114086078;300000 -32274;85908161;114091839;300000 -32275;85902401;114097599;300000 -32276;85896641;114103359;300000 -32277;85890882;114109118;300000 -32278;85885123;114114877;300000 -32279;85879364;114120636;300000 -32280;85873606;114126394;300000 -32281;85867848;114132152;300000 -32282;85862090;114137910;300000 -32283;85856333;114143667;300000 -32284;85850576;114149424;300000 -32285;85844820;114155180;300000 -32286;85839063;114160937;300000 -32287;85833308;114166692;300000 -32288;85827552;114172448;300000 -32289;85821797;114178203;300000 -32290;85816042;114183958;300000 -32291;85810288;114189712;300000 -32292;85804534;114195466;300000 -32293;85798780;114201220;300000 -32294;85793027;114206973;300000 -32295;85787274;114212726;300000 -32296;85781521;114218479;300000 -32297;85775769;114224231;300000 -32298;85770017;114229983;300000 -32299;85764265;114235735;300000 -32300;85758514;114241486;300000 -32301;85752763;114247237;300000 -32302;85747013;114252987;300000 -32303;85741262;114258738;300000 -32304;85735513;114264487;300000 -32305;85729763;114270237;300000 -32306;85724014;114275986;300000 -32307;85718265;114281735;300000 -32308;85712517;114287483;300000 -32309;85706769;114293231;300000 -32310;85701021;114298979;300000 -32311;85695274;114304726;300000 -32312;85689527;114310473;300000 -32313;85683781;114316219;300000 -32314;85678034;114321966;300000 -32315;85672288;114327712;300000 -32316;85666543;114333457;300000 -32317;85660798;114339202;300000 -32318;85655053;114344947;300000 -32319;85649308;114350692;300000 -32320;85643564;114356436;300000 -32321;85637821;114362179;300000 -32322;85632077;114367923;300000 -32323;85626334;114373666;300000 -32324;85620592;114379408;300000 -32325;85614849;114385151;300000 -32326;85609107;114390893;300000 -32327;85603366;114396634;300000 -32328;85597624;114402376;300000 -32329;85591883;114408117;300000 -32330;85586143;114413857;300000 -32331;85580403;114419597;300000 -32332;85574663;114425337;300000 -32333;85568923;114431077;300000 -32334;85563184;114436816;300000 -32335;85557445;114442555;300000 -32336;85551707;114448293;300000 -32337;85545969;114454031;300000 -32338;85540231;114459769;300000 -32339;85534494;114465506;300000 -32340;85528757;114471243;300000 -32341;85523020;114476980;300000 -32342;85517284;114482716;300000 -32343;85511548;114488452;300000 -32344;85505813;114494187;300000 -32345;85500077;114499923;300000 -32346;85494342;114505658;300000 -32347;85488608;114511392;300000 -32348;85482874;114517126;300000 -32349;85477140;114522860;300000 -32350;85471406;114528594;300000 -32351;85465673;114534327;300000 -32352;85459941;114540059;300000 -32353;85454208;114545792;300000 -32354;85448476;114551524;300000 -32355;85442745;114557255;300000 -32356;85437013;114562987;300000 -32357;85431282;114568718;300000 -32358;85425552;114574448;300000 -32359;85419821;114580179;300000 -32360;85414091;114585909;300000 -32361;85408362;114591638;300000 -32362;85402633;114597367;300000 -32363;85396904;114603096;300000 -32364;85391175;114608825;300000 -32365;85385447;114614553;300000 -32366;85379719;114620281;300000 -32367;85373992;114626008;300000 -32368;85368265;114631735;300000 -32369;85362538;114637462;300000 -32370;85356812;114643188;300000 -32371;85351086;114648914;300000 -32372;85345360;114654640;300000 -32373;85339635;114660365;300000 -32374;85333910;114666090;300000 -32375;85328185;114671815;300000 -32376;85322461;114677539;300000 -32377;85316737;114683263;300000 -32378;85311014;114688986;300000 -32379;85305290;114694710;300000 -32380;85299568;114700432;300000 -32381;85293845;114706155;300000 -32382;85288123;114711877;300000 -32383;85282401;114717599;300000 -32384;85276680;114723320;300000 -32385;85270959;114729041;300000 -32386;85265238;114734762;300000 -32387;85259518;114740482;300000 -32388;85253798;114746202;300000 -32389;85248078;114751922;300000 -32390;85242359;114757641;300000 -32391;85236640;114763360;300000 -32392;85230921;114769079;300000 -32393;85225203;114774797;300000 -32394;85219485;114780515;300000 -32395;85213768;114786232;300000 -32396;85208050;114791950;300000 -32397;85202334;114797666;300000 -32398;85196617;114803383;300000 -32399;85190901;114809099;300000 -32400;85185185;114814815;300000 -32401;85179470;114820530;300000 -32402;85173755;114826245;300000 -32403;85168040;114831960;300000 -32404;85162326;114837674;300000 -32405;85156612;114843388;300000 -32406;85150898;114849102;300000 -32407;85145185;114854815;300000 -32408;85139472;114860528;300000 -32409;85133759;114866241;300000 -32410;85128047;114871953;300000 -32411;85122335;114877665;300000 -32412;85116623;114883377;300000 -32413;85110912;114889088;300000 -32414;85105201;114894799;300000 -32415;85099491;114900509;300000 -32416;85093781;114906219;300000 -32417;85088071;114911929;300000 -32418;85082362;114917638;300000 -32419;85076653;114923347;300000 -32420;85070944;114929056;300000 -32421;85065235;114934765;300000 -32422;85059527;114940473;300000 -32423;85053820;114946180;300000 -32424;85048113;114951887;300000 -32425;85042406;114957594;300000 -32426;85036699;114963301;300000 -32427;85030993;114969007;300000 -32428;85025287;114974713;300000 -32429;85019581;114980419;300000 -32430;85013876;114986124;300000 -32431;85008171;114991829;300000 -32432;85002467;114997533;300000 -32433;84996763;115003237;300000 -32434;84991059;115008941;300000 -32435;84985355;115014645;300000 -32436;84979652;115020348;300000 -32437;84973950;115026050;300000 -32438;84968247;115031753;300000 -32439;84962545;115037455;300000 -32440;84956843;115043157;300000 -32441;84951142;115048858;300000 -32442;84945441;115054559;300000 -32443;84939740;115060260;300000 -32444;84934040;115065960;300000 -32445;84928340;115071660;300000 -32446;84922641;115077359;300000 -32447;84916941;115083059;300000 -32448;84911243;115088757;300000 -32449;84905544;115094456;300000 -32450;84899846;115100154;300000 -32451;84894148;115105852;300000 -32452;84888451;115111549;300000 -32453;84882754;115117246;300000 -32454;84877057;115122943;300000 -32455;84871360;115128640;300000 -32456;84865664;115134336;300000 -32457;84859969;115140031;300000 -32458;84854273;115145727;300000 -32459;84848578;115151422;300000 -32460;84842884;115157116;300000 -32461;84837189;115162811;300000 -32462;84831495;115168505;300000 -32463;84825802;115174198;300000 -32464;84820108;115179892;300000 -32465;84814416;115185584;300000 -32466;84808723;115191277;300000 -32467;84803031;115196969;300000 -32468;84797339;115202661;300000 -32469;84791647;115208353;300000 -32470;84785956;115214044;300000 -32471;84780265;115219735;300000 -32472;84774575;115225425;300000 -32473;84768885;115231115;300000 -32474;84763195;115236805;300000 -32475;84757506;115242494;300000 -32476;84751817;115248183;300000 -32477;84746128;115253872;300000 -32478;84740440;115259560;300000 -32479;84734752;115265248;300000 -32480;84729064;115270936;300000 -32481;84723377;115276623;300000 -32482;84717690;115282310;300000 -32483;84712003;115287997;300000 -32484;84706317;115293683;300000 -32485;84700631;115299369;300000 -32486;84694946;115305054;300000 -32487;84689260;115310740;300000 -32488;84683575;115316425;300000 -32489;84677891;115322109;300000 -32490;84672207;115327793;300000 -32491;84666523;115333477;300000 -32492;84660840;115339160;300000 -32493;84655156;115344844;300000 -32494;84649474;115350526;300000 -32495;84643791;115356209;300000 -32496;84638109;115361891;300000 -32497;84632428;115367572;300000 -32498;84626746;115373254;300000 -32499;84621065;115378935;300000 -32500;84615385;115384615;300000 -32501;84609704;115390296;300000 -32502;84604024;115395976;300000 -32503;84598345;115401655;300000 -32504;84592666;115407334;300000 -32505;84586987;115413013;300000 -32506;84581308;115418692;300000 -32507;84575630;115424370;300000 -32508;84569952;115430048;300000 -32509;84564275;115435725;300000 -32510;84558597;115441403;300000 -32511;84552921;115447079;300000 -32512;84547244;115452756;300000 -32513;84541568;115458432;300000 -32514;84535892;115464108;300000 -32515;84530217;115469783;300000 -32516;84524542;115475458;300000 -32517;84518867;115481133;300000 -32518;84513193;115486807;300000 -32519;84507519;115492481;300000 -32520;84501845;115498155;300000 -32521;84496172;115503828;300000 -32522;84490499;115509501;300000 -32523;84484826;115515174;300000 -32524;84479154;115520846;300000 -32525;84473482;115526518;300000 -32526;84467810;115532190;300000 -32527;84462139;115537861;300000 -32528;84456468;115543532;300000 -32529;84450798;115549202;300000 -32530;84445128;115554872;300000 -32531;84439458;115560542;300000 -32532;84433788;115566212;300000 -32533;84428119;115571881;300000 -32534;84422450;115577550;300000 -32535;84416782;115583218;300000 -32536;84411114;115588886;300000 -32537;84405446;115594554;300000 -32538;84399779;115600221;300000 -32539;84394112;115605888;300000 -32540;84388445;115611555;300000 -32541;84382779;115617221;300000 -32542;84377113;115622887;300000 -32543;84371447;115628553;300000 -32544;84365782;115634218;300000 -32545;84360117;115639883;300000 -32546;84354452;115645548;300000 -32547;84348788;115651212;300000 -32548;84343124;115656876;300000 -32549;84337460;115662540;300000 -32550;84331797;115668203;300000 -32551;84326134;115673866;300000 -32552;84320472;115679528;300000 -32553;84314810;115685190;300000 -32554;84309148;115690852;300000 -32555;84303486;115696514;300000 -32556;84297825;115702175;300000 -32557;84292165;115707835;300000 -32558;84286504;115713496;300000 -32559;84280844;115719156;300000 -32560;84275184;115724816;300000 -32561;84269525;115730475;300000 -32562;84263866;115736134;300000 -32563;84258207;115741793;300000 -32564;84252549;115747451;300000 -32565;84246891;115753109;300000 -32566;84241233;115758767;300000 -32567;84235576;115764424;300000 -32568;84229919;115770081;300000 -32569;84224262;115775738;300000 -32570;84218606;115781394;300000 -32571;84212950;115787050;300000 -32572;84207295;115792705;300000 -32573;84201639;115798361;300000 -32574;84195985;115804015;300000 -32575;84190330;115809670;300000 -32576;84184676;115815324;300000 -32577;84179022;115820978;300000 -32578;84173369;115826631;300000 -32579;84167715;115832285;300000 -32580;84162063;115837937;300000 -32581;84156410;115843590;300000 -32582;84150758;115849242;300000 -32583;84145106;115854894;300000 -32584;84139455;115860545;300000 -32585;84133804;115866196;300000 -32586;84128153;115871847;300000 -32587;84122503;115877497;300000 -32588;84116853;115883147;300000 -32589;84111203;115888797;300000 -32590;84105554;115894446;300000 -32591;84099905;115900095;300000 -32592;84094256;115905744;300000 -32593;84088608;115911392;300000 -32594;84082960;115917040;300000 -32595;84077312;115922688;300000 -32596;84071665;115928335;300000 -32597;84066018;115933982;300000 -32598;84060372;115939628;300000 -32599;84054726;115945274;300000 -32600;84049080;115950920;300000 -32601;84043434;115956566;300000 -32602;84037789;115962211;300000 -32603;84032144;115967856;300000 -32604;84026500;115973500;300000 -32605;84020856;115979144;300000 -32606;84015212;115984788;300000 -32607;84009568;115990432;300000 -32608;84003925;115996075;300000 -32609;83998283;116001717;300000 -32610;83992640;116007360;300000 -32611;83986998;116013002;300000 -32612;83981357;116018643;300000 -32613;83975715;116024285;300000 -32614;83970074;116029926;300000 -32615;83964434;116035566;300000 -32616;83958793;116041207;300000 -32617;83953153;116046847;300000 -32618;83947514;116052486;300000 -32619;83941874;116058126;300000 -32620;83936235;116063765;300000 -32621;83930597;116069403;300000 -32622;83924959;116075041;300000 -32623;83919321;116080679;300000 -32624;83913683;116086317;300000 -32625;83908046;116091954;300000 -32626;83902409;116097591;300000 -32627;83896773;116103227;300000 -32628;83891136;116108864;300000 -32629;83885501;116114499;300000 -32630;83879865;116120135;300000 -32631;83874230;116125770;300000 -32632;83868595;116131405;300000 -32633;83862961;116137039;300000 -32634;83857327;116142673;300000 -32635;83851693;116148307;300000 -32636;83846060;116153940;300000 -32637;83840427;116159573;300000 -32638;83834794;116165206;300000 -32639;83829161;116170839;300000 -32640;83823529;116176471;300000 -32641;83817898;116182102;300000 -32642;83812266;116187734;300000 -32643;83806635;116193365;300000 -32644;83801005;116198995;300000 -32645;83795374;116204626;300000 -32646;83789745;116210255;300000 -32647;83784115;116215885;300000 -32648;83778486;116221514;300000 -32649;83772857;116227143;300000 -32650;83767228;116232772;300000 -32651;83761600;116238400;300000 -32652;83755972;116244028;300000 -32653;83750345;116249655;300000 -32654;83744717;116255283;300000 -32655;83739090;116260910;300000 -32656;83733464;116266536;300000 -32657;83727838;116272162;300000 -32658;83722212;116277788;300000 -32659;83716587;116283413;300000 -32660;83710961;116289039;300000 -32661;83705337;116294663;300000 -32662;83699712;116300288;300000 -32663;83694088;116305912;300000 -32664;83688464;116311536;300000 -32665;83682841;116317159;300000 -32666;83677218;116322782;300000 -32667;83671595;116328405;300000 -32668;83665973;116334027;300000 -32669;83660351;116339649;300000 -32670;83654729;116345271;300000 -32671;83649108;116350892;300000 -32672;83643487;116356513;300000 -32673;83637866;116362134;300000 -32674;83632246;116367754;300000 -32675;83626626;116373374;300000 -32676;83621006;116378994;300000 -32677;83615387;116384613;300000 -32678;83609768;116390232;300000 -32679;83604149;116395851;300000 -32680;83598531;116401469;300000 -32681;83592913;116407087;300000 -32682;83587296;116412704;300000 -32683;83581679;116418321;300000 -32684;83576062;116423938;300000 -32685;83570445;116429555;300000 -32686;83564829;116435171;300000 -32687;83559213;116440787;300000 -32688;83553598;116446402;300000 -32689;83547983;116452017;300000 -32690;83542368;116457632;300000 -32691;83536753;116463247;300000 -32692;83531139;116468861;300000 -32693;83525525;116474475;300000 -32694;83519912;116480088;300000 -32695;83514299;116485701;300000 -32696;83508686;116491314;300000 -32697;83503074;116496926;300000 -32698;83497462;116502538;300000 -32699;83491850;116508150;300000 -32700;83486239;116513761;300000 -32701;83480628;116519372;300000 -32702;83475017;116524983;300000 -32703;83469406;116530594;300000 -32704;83463796;116536204;300000 -32705;83458187;116541813;300000 -32706;83452578;116547422;300000 -32707;83446969;116553031;300000 -32708;83441360;116558640;300000 -32709;83435752;116564248;300000 -32710;83430144;116569856;300000 -32711;83424536;116575464;300000 -32712;83418929;116581071;300000 -32713;83413322;116586678;300000 -32714;83407715;116592285;300000 -32715;83402109;116597891;300000 -32716;83396503;116603497;300000 -32717;83390898;116609102;300000 -32718;83385292;116614708;300000 -32719;83379688;116620312;300000 -32720;83374083;116625917;300000 -32721;83368479;116631521;300000 -32722;83362875;116637125;300000 -32723;83357272;116642728;300000 -32724;83351669;116648331;300000 -32725;83346066;116653934;300000 -32726;83340463;116659537;300000 -32727;83334861;116665139;300000 -32728;83329259;116670741;300000 -32729;83323658;116676342;300000 -32730;83318057;116681943;300000 -32731;83312456;116687544;300000 -32732;83306856;116693144;300000 -32733;83301256;116698744;300000 -32734;83295656;116704344;300000 -32735;83290057;116709943;300000 -32736;83284457;116715543;300000 -32737;83278859;116721141;300000 -32738;83273260;116726740;300000 -32739;83267662;116732338;300000 -32740;83262065;116737935;300000 -32741;83256467;116743533;300000 -32742;83250870;116749130;300000 -32743;83245274;116754726;300000 -32744;83239677;116760323;300000 -32745;83234082;116765918;300000 -32746;83228486;116771514;300000 -32747;83222891;116777109;300000 -32748;83217296;116782704;300000 -32749;83211701;116788299;300000 -32750;83206107;116793893;300000 -32751;83200513;116799487;300000 -32752;83194919;116805081;300000 -32753;83189326;116810674;300000 -32754;83183733;116816267;300000 -32755;83178141;116821859;300000 -32756;83172549;116827451;300000 -32757;83166957;116833043;300000 -32758;83161365;116838635;300000 -32759;83155774;116844226;300000 -32760;83150183;116849817;300000 -32761;83144593;116855407;300000 -32762;83139003;116860997;300000 -32763;83133413;116866587;300000 -32764;83127823;116872177;300000 -32765;83122234;116877766;300000 -32766;83116645;116883355;300000 -32767;83111057;116888943;300000 -32768;83105469;116894531;300000 -32769;83099881;116900119;300000 -32770;83094294;116905706;300000 -32771;83088706;116911294;300000 -32772;83083120;116916880;300000 -32773;83077533;116922467;300000 -32774;83071947;116928053;300000 -32775;83066362;116933638;300000 -32776;83060776;116939224;300000 -32777;83055191;116944809;300000 -32778;83049606;116950394;300000 -32779;83044022;116955978;300000 -32780;83038438;116961562;300000 -32781;83032854;116967146;300000 -32782;83027271;116972729;300000 -32783;83021688;116978312;300000 -32784;83016105;116983895;300000 -32785;83010523;116989477;300000 -32786;83004941;116995059;300000 -32787;82999360;117000640;300000 -32788;82993778;117006222;300000 -32789;82988197;117011803;300000 -32790;82982617;117017383;300000 -32791;82977036;117022964;300000 -32792;82971456;117028544;300000 -32793;82965877;117034123;300000 -32794;82960298;117039702;300000 -32795;82954719;117045281;300000 -32796;82949140;117050860;300000 -32797;82943562;117056438;300000 -32798;82937984;117062016;300000 -32799;82932406;117067594;300000 -32800;82926829;117073171;300000 -32801;82921252;117078748;300000 -32802;82915676;117084324;300000 -32803;82910100;117089900;300000 -32804;82904524;117095476;300000 -32805;82898948;117101052;300000 -32806;82893373;117106627;300000 -32807;82887798;117112202;300000 -32808;82882224;117117776;300000 -32809;82876650;117123350;300000 -32810;82871076;117128924;300000 -32811;82865502;117134498;300000 -32812;82859929;117140071;300000 -32813;82854357;117145643;300000 -32814;82848784;117151216;300000 -32815;82843212;117156788;300000 -32816;82837640;117162360;300000 -32817;82832069;117167931;300000 -32818;82826498;117173502;300000 -32819;82820927;117179073;300000 -32820;82815356;117184644;300000 -32821;82809786;117190214;300000 -32822;82804217;117195783;300000 -32823;82798647;117201353;300000 -32824;82793078;117206922;300000 -32825;82787510;117212490;300000 -32826;82781941;117218059;300000 -32827;82776373;117223627;300000 -32828;82770805;117229195;300000 -32829;82765238;117234762;300000 -32830;82759671;117240329;300000 -32831;82754104;117245896;300000 -32832;82748538;117251462;300000 -32833;82742972;117257028;300000 -32834;82737406;117262594;300000 -32835;82731841;117268159;300000 -32836;82726276;117273724;300000 -32837;82720711;117279289;300000 -32838;82715147;117284853;300000 -32839;82709583;117290417;300000 -32840;82704019;117295981;300000 -32841;82698456;117301544;300000 -32842;82692893;117307107;300000 -32843;82687331;117312669;300000 -32844;82681768;117318232;300000 -32845;82676206;117323794;300000 -32846;82670645;117329355;300000 -32847;82665084;117334916;300000 -32848;82659523;117340477;300000 -32849;82653962;117346038;300000 -32850;82648402;117351598;300000 -32851;82642842;117357158;300000 -32852;82637282;117362718;300000 -32853;82631723;117368277;300000 -32854;82626164;117373836;300000 -32855;82620606;117379394;300000 -32856;82615047;117384953;300000 -32857;82609490;117390510;300000 -32858;82603932;117396068;300000 -32859;82598375;117401625;300000 -32860;82592818;117407182;300000 -32861;82587261;117412739;300000 -32862;82581705;117418295;300000 -32863;82576149;117423851;300000 -32864;82570594;117429406;300000 -32865;82565039;117434961;300000 -32866;82559484;117440516;300000 -32867;82553929;117446071;300000 -32868;82548375;117451625;300000 -32869;82542822;117457178;300000 -32870;82537268;117462732;300000 -32871;82531715;117468285;300000 -32872;82526162;117473838;300000 -32873;82520610;117479390;300000 -32874;82515057;117484943;300000 -32875;82509506;117490494;300000 -32876;82503954;117496046;300000 -32877;82498403;117501597;300000 -32878;82492852;117507148;300000 -32879;82487302;117512698;300000 -32880;82481752;117518248;300000 -32881;82476202;117523798;300000 -32882;82470653;117529347;300000 -32883;82465104;117534896;300000 -32884;82459555;117540445;300000 -32885;82454006;117545994;300000 -32886;82448458;117551542;300000 -32887;82442911;117557089;300000 -32888;82437363;117562637;300000 -32889;82431816;117568184;300000 -32890;82426269;117573731;300000 -32891;82420723;117579277;300000 -32892;82415177;117584823;300000 -32893;82409631;117590369;300000 -32894;82404086;117595914;300000 -32895;82398541;117601459;300000 -32896;82392996;117607004;300000 -32897;82387452;117612548;300000 -32898;82381908;117618092;300000 -32899;82376364;117623636;300000 -32900;82370821;117629179;300000 -32901;82365278;117634722;300000 -32902;82359735;117640265;300000 -32903;82354193;117645807;300000 -32904;82348651;117651349;300000 -32905;82343109;117656891;300000 -32906;82337568;117662432;300000 -32907;82332027;117667973;300000 -32908;82326486;117673514;300000 -32909;82320946;117679054;300000 -32910;82315406;117684594;300000 -32911;82309866;117690134;300000 -32912;82304327;117695673;300000 -32913;82298788;117701212;300000 -32914;82293249;117706751;300000 -32915;82287711;117712289;300000 -32916;82282173;117717827;300000 -32917;82276635;117723365;300000 -32918;82271098;117728902;300000 -32919;82265561;117734439;300000 -32920;82260024;117739976;300000 -32921;82254488;117745512;300000 -32922;82248952;117751048;300000 -32923;82243416;117756584;300000 -32924;82237881;117762119;300000 -32925;82232346;117767654;300000 -32926;82226812;117773188;300000 -32927;82221277;117778723;300000 -32928;82215743;117784257;300000 -32929;82210210;117789790;300000 -32930;82204677;117795323;300000 -32931;82199144;117800856;300000 -32932;82193611;117806389;300000 -32933;82188079;117811921;300000 -32934;82182547;117817453;300000 -32935;82177015;117822985;300000 -32936;82171484;117828516;300000 -32937;82165953;117834047;300000 -32938;82160423;117839577;300000 -32939;82154892;117845108;300000 -32940;82149362;117850638;300000 -32941;82143833;117856167;300000 -32942;82138304;117861696;300000 -32943;82132775;117867225;300000 -32944;82127246;117872754;300000 -32945;82121718;117878282;300000 -32946;82116190;117883810;300000 -32947;82110663;117889337;300000 -32948;82105135;117894865;300000 -32949;82099608;117900392;300000 -32950;82094082;117905918;300000 -32951;82088556;117911444;300000 -32952;82083030;117916970;300000 -32953;82077504;117922496;300000 -32954;82071979;117928021;300000 -32955;82066454;117933546;300000 -32956;82060930;117939070;300000 -32957;82055406;117944594;300000 -32958;82049882;117950118;300000 -32959;82044358;117955642;300000 -32960;82038835;117961165;300000 -32961;82033312;117966688;300000 -32962;82027790;117972210;300000 -32963;82022267;117977733;300000 -32964;82016746;117983254;300000 -32965;82011224;117988776;300000 -32966;82005703;117994297;300000 -32967;82000182;117999818;300000 -32968;81994661;118005339;300000 -32969;81989141;118010859;300000 -32970;81983621;118016379;300000 -32971;81978102;118021898;300000 -32972;81972583;118027417;300000 -32973;81967064;118032936;300000 -32974;81961545;118038455;300000 -32975;81956027;118043973;300000 -32976;81950509;118049491;300000 -32977;81944992;118055008;300000 -32978;81939475;118060525;300000 -32979;81933958;118066042;300000 -32980;81928441;118071559;300000 -32981;81922925;118077075;300000 -32982;81917409;118082591;300000 -32983;81911894;118088106;300000 -32984;81906379;118093621;300000 -32985;81900864;118099136;300000 -32986;81895350;118104650;300000 -32987;81889835;118110165;300000 -32988;81884322;118115678;300000 -32989;81878808;118121192;300000 -32990;81873295;118126705;300000 -32991;81867782;118132218;300000 -32992;81862270;118137730;300000 -32993;81856757;118143243;300000 -32994;81851246;118148754;300000 -32995;81845734;118154266;300000 -32996;81840223;118159777;300000 -32997;81834712;118165288;300000 -32998;81829202;118170798;300000 -32999;81823692;118176308;300000 -33000;81818182;118181818;300000 -33001;81812672;118187328;300000 -33002;81807163;118192837;300000 -33003;81801654;118198346;300000 -33004;81796146;118203854;300000 -33005;81790638;118209362;300000 -33006;81785130;118214870;300000 -33007;81779623;118220377;300000 -33008;81774115;118225885;300000 -33009;81768609;118231391;300000 -33010;81763102;118236898;300000 -33011;81757596;118242404;300000 -33012;81752090;118247910;300000 -33013;81746585;118253415;300000 -33014;81741080;118258920;300000 -33015;81735575;118264425;300000 -33016;81730070;118269930;300000 -33017;81724566;118275434;300000 -33018;81719062;118280938;300000 -33019;81713559;118286441;300000 -33020;81708056;118291944;300000 -33021;81702553;118297447;300000 -33022;81697050;118302950;300000 -33023;81691548;118308452;300000 -33024;81686047;118313953;300000 -33025;81680545;118319455;300000 -33026;81675044;118324956;300000 -33027;81669543;118330457;300000 -33028;81664043;118335957;300000 -33029;81658542;118341458;300000 -33030;81653043;118346957;300000 -33031;81647543;118352457;300000 -33032;81642044;118357956;300000 -33033;81636545;118363455;300000 -33034;81631047;118368953;300000 -33035;81625549;118374451;300000 -33036;81620051;118379949;300000 -33037;81614553;118385447;300000 -33038;81609056;118390944;300000 -33039;81603559;118396441;300000 -33040;81598063;118401937;300000 -33041;81592567;118407433;300000 -33042;81587071;118412929;300000 -33043;81581576;118418424;300000 -33044;81576080;118423920;300000 -33045;81570586;118429414;300000 -33046;81565091;118434909;300000 -33047;81559597;118440403;300000 -33048;81554103;118445897;300000 -33049;81548610;118451390;300000 -33050;81543116;118456884;300000 -33051;81537624;118462376;300000 -33052;81532131;118467869;300000 -33053;81526639;118473361;300000 -33054;81521147;118478853;300000 -33055;81515656;118484344;300000 -33056;81510165;118489835;300000 -33057;81504674;118495326;300000 -33058;81499183;118500817;300000 -33059;81493693;118506307;300000 -33060;81488203;118511797;300000 -33061;81482714;118517286;300000 -33062;81477225;118522775;300000 -33063;81471736;118528264;300000 -33064;81466247;118533753;300000 -33065;81460759;118539241;300000 -33066;81455271;118544729;300000 -33067;81449784;118550216;300000 -33068;81444297;118555703;300000 -33069;81438810;118561190;300000 -33070;81433323;118566677;300000 -33071;81427837;118572163;300000 -33072;81422351;118577649;300000 -33073;81416866;118583134;300000 -33074;81411381;118588619;300000 -33075;81405896;118594104;300000 -33076;81400411;118599589;300000 -33077;81394927;118605073;300000 -33078;81389443;118610557;300000 -33079;81383960;118616040;300000 -33080;81378476;118621524;300000 -33081;81372994;118627006;300000 -33082;81367511;118632489;300000 -33083;81362029;118637971;300000 -33084;81356547;118643453;300000 -33085;81351065;118648935;300000 -33086;81345584;118654416;300000 -33087;81340103;118659897;300000 -33088;81334623;118665377;300000 -33089;81329143;118670857;300000 -33090;81323663;118676337;300000 -33091;81318183;118681817;300000 -33092;81312704;118687296;300000 -33093;81307225;118692775;300000 -33094;81301747;118698253;300000 -33095;81296268;118703732;300000 -33096;81290790;118709210;300000 -33097;81285313;118714687;300000 -33098;81279836;118720164;300000 -33099;81274359;118725641;300000 -33100;81268882;118731118;300000 -33101;81263406;118736594;300000 -33102;81257930;118742070;300000 -33103;81252454;118747546;300000 -33104;81246979;118753021;300000 -33105;81241504;118758496;300000 -33106;81236030;118763970;300000 -33107;81230555;118769445;300000 -33108;81225082;118774918;300000 -33109;81219608;118780392;300000 -33110;81214135;118785865;300000 -33111;81208662;118791338;300000 -33112;81203189;118796811;300000 -33113;81197717;118802283;300000 -33114;81192245;118807755;300000 -33115;81186773;118813227;300000 -33116;81181302;118818698;300000 -33117;81175831;118824169;300000 -33118;81170361;118829639;300000 -33119;81164890;118835110;300000 -33120;81159420;118840580;300000 -33121;81153951;118846049;300000 -33122;81148481;118851519;300000 -33123;81143012;118856988;300000 -33124;81137544;118862456;300000 -33125;81132075;118867925;300000 -33126;81126607;118873393;300000 -33127;81121140;118878860;300000 -33128;81115673;118884327;300000 -33129;81110206;118889794;300000 -33130;81104739;118895261;300000 -33131;81099273;118900727;300000 -33132;81093807;118906193;300000 -33133;81088341;118911659;300000 -33134;81082876;118917124;300000 -33135;81077411;118922589;300000 -33136;81071946;118928054;300000 -33137;81066482;118933518;300000 -33138;81061018;118938982;300000 -33139;81055554;118944446;300000 -33140;81050091;118949909;300000 -33141;81044628;118955372;300000 -33142;81039165;118960835;300000 -33143;81033702;118966298;300000 -33144;81028240;118971760;300000 -33145;81022779;118977221;300000 -33146;81017317;118982683;300000 -33147;81011856;118988144;300000 -33148;81006396;118993604;300000 -33149;81000935;118999065;300000 -33150;80995475;119004525;300000 -33151;80990015;119009985;300000 -33152;80984556;119015444;300000 -33153;80979097;119020903;300000 -33154;80973638;119026362;300000 -33155;80968180;119031820;300000 -33156;80962722;119037278;300000 -33157;80957264;119042736;300000 -33158;80951807;119048193;300000 -33159;80946349;119053651;300000 -33160;80940893;119059107;300000 -33161;80935436;119064564;300000 -33162;80929980;119070020;300000 -33163;80924524;119075476;300000 -33164;80919069;119080931;300000 -33165;80913614;119086386;300000 -33166;80908159;119091841;300000 -33167;80902704;119097296;300000 -33168;80897250;119102750;300000 -33169;80891797;119108203;300000 -33170;80886343;119113657;300000 -33171;80880890;119119110;300000 -33172;80875437;119124563;300000 -33173;80869985;119130015;300000 -33174;80864532;119135468;300000 -33175;80859081;119140919;300000 -33176;80853629;119146371;300000 -33177;80848178;119151822;300000 -33178;80842727;119157273;300000 -33179;80837277;119162723;300000 -33180;80831826;119168174;300000 -33181;80826377;119173623;300000 -33182;80820927;119179073;300000 -33183;80815478;119184522;300000 -33184;80810029;119189971;300000 -33185;80804580;119195420;300000 -33186;80799132;119200868;300000 -33187;80793684;119206316;300000 -33188;80788237;119211763;300000 -33189;80782789;119217211;300000 -33190;80777343;119222657;300000 -33191;80771896;119228104;300000 -33192;80766450;119233550;300000 -33193;80761004;119238996;300000 -33194;80755558;119244442;300000 -33195;80750113;119249887;300000 -33196;80744668;119255332;300000 -33197;80739223;119260777;300000 -33198;80733779;119266221;300000 -33199;80728335;119271665;300000 -33200;80722892;119277108;300000 -33201;80717448;119282552;300000 -33202;80712005;119287995;300000 -33203;80706563;119293437;300000 -33204;80701120;119298880;300000 -33205;80695678;119304322;300000 -33206;80690237;119309763;300000 -33207;80684795;119315205;300000 -33208;80679354;119320646;300000 -33209;80673914;119326086;300000 -33210;80668473;119331527;300000 -33211;80663033;119336967;300000 -33212;80657594;119342406;300000 -33213;80652154;119347846;300000 -33214;80646715;119353285;300000 -33215;80641277;119358723;300000 -33216;80635838;119364162;300000 -33217;80630400;119369600;300000 -33218;80624962;119375038;300000 -33219;80619525;119380475;300000 -33220;80614088;119385912;300000 -33221;80608651;119391349;300000 -33222;80603215;119396785;300000 -33223;80597779;119402221;300000 -33224;80592343;119407657;300000 -33225;80586907;119413093;300000 -33226;80581472;119418528;300000 -33227;80576038;119423962;300000 -33228;80570603;119429397;300000 -33229;80565169;119434831;300000 -33230;80559735;119440265;300000 -33231;80554302;119445698;300000 -33232;80548869;119451131;300000 -33233;80543436;119456564;300000 -33234;80538003;119461997;300000 -33235;80532571;119467429;300000 -33236;80527139;119472861;300000 -33237;80521708;119478292;300000 -33238;80516277;119483723;300000 -33239;80510846;119489154;300000 -33240;80505415;119494585;300000 -33241;80499985;119500015;300000 -33242;80494555;119505445;300000 -33243;80489126;119510874;300000 -33244;80483696;119516304;300000 -33245;80478267;119521733;300000 -33246;80472839;119527161;300000 -33247;80467411;119532589;300000 -33248;80461983;119538017;300000 -33249;80456555;119543445;300000 -33250;80451128;119548872;300000 -33251;80445701;119554299;300000 -33252;80440274;119559726;300000 -33253;80434848;119565152;300000 -33254;80429422;119570578;300000 -33255;80423996;119576004;300000 -33256;80418571;119581429;300000 -33257;80413146;119586854;300000 -33258;80407721;119592279;300000 -33259;80402297;119597703;300000 -33260;80396873;119603127;300000 -33261;80391449;119608551;300000 -33262;80386026;119613974;300000 -33263;80380603;119619397;300000 -33264;80375180;119624820;300000 -33265;80369758;119630242;300000 -33266;80364336;119635664;300000 -33267;80358914;119641086;300000 -33268;80353493;119646507;300000 -33269;80348072;119651928;300000 -33270;80342651;119657349;300000 -33271;80337231;119662769;300000 -33272;80331811;119668189;300000 -33273;80326391;119673609;300000 -33274;80320971;119679029;300000 -33275;80315552;119684448;300000 -33276;80310133;119689867;300000 -33277;80304715;119695285;300000 -33278;80299297;119700703;300000 -33279;80293879;119706121;300000 -33280;80288462;119711538;300000 -33281;80283044;119716956;300000 -33282;80277628;119722372;300000 -33283;80272211;119727789;300000 -33284;80266795;119733205;300000 -33285;80261379;119738621;300000 -33286;80255963;119744037;300000 -33287;80250548;119749452;300000 -33288;80245133;119754867;300000 -33289;80239719;119760281;300000 -33290;80234305;119765695;300000 -33291;80228891;119771109;300000 -33292;80223477;119776523;300000 -33293;80218064;119781936;300000 -33294;80212651;119787349;300000 -33295;80207238;119792762;300000 -33296;80201826;119798174;300000 -33297;80196414;119803586;300000 -33298;80191002;119808998;300000 -33299;80185591;119814409;300000 -33300;80180180;119819820;300000 -33301;80174770;119825230;300000 -33302;80169359;119830641;300000 -33303;80163949;119836051;300000 -33304;80158540;119841460;300000 -33305;80153130;119846870;300000 -33306;80147721;119852279;300000 -33307;80142312;119857688;300000 -33308;80136904;119863096;300000 -33309;80131496;119868504;300000 -33310;80126088;119873912;300000 -33311;80120681;119879319;300000 -33312;80115274;119884726;300000 -33313;80109867;119890133;300000 -33314;80104461;119895539;300000 -33315;80099054;119900946;300000 -33316;80093649;119906351;300000 -33317;80088243;119911757;300000 -33318;80082838;119917162;300000 -33319;80077433;119922567;300000 -33320;80072029;119927971;300000 -33321;80066625;119933375;300000 -33322;80061221;119938779;300000 -33323;80055817;119944183;300000 -33324;80050414;119949586;300000 -33325;80045011;119954989;300000 -33326;80039609;119960391;300000 -33327;80034206;119965794;300000 -33328;80028805;119971195;300000 -33329;80023403;119976597;300000 -33330;80018002;119981998;300000 -33331;80012601;119987399;300000 -33332;80007200;119992800;300000 -33333;80001800;119998200;300000 -33334;79996400;120003600;300000 -33335;79991000;120009000;300000 -33336;79985601;120014399;300000 -33337;79980202;120019798;300000 -33338;79974804;120025196;300000 -33339;79969405;120030595;300000 -33340;79964007;120035993;300000 -33341;79958610;120041390;300000 -33342;79953212;120046788;300000 -33343;79947815;120052185;300000 -33344;79942418;120057582;300000 -33345;79937022;120062978;300000 -33346;79931626;120068374;300000 -33347;79926230;120073770;300000 -33348;79920835;120079165;300000 -33349;79915440;120084560;300000 -33350;79910045;120089955;300000 -33351;79904651;120095349;300000 -33352;79899256;120100744;300000 -33353;79893863;120106137;300000 -33354;79888469;120111531;300000 -33355;79883076;120116924;300000 -33356;79877683;120122317;300000 -33357;79872291;120127709;300000 -33358;79866898;120133102;300000 -33359;79861507;120138493;300000 -33360;79856115;120143885;300000 -33361;79850724;120149276;300000 -33362;79845333;120154667;300000 -33363;79839942;120160058;300000 -33364;79834552;120165448;300000 -33365;79829162;120170838;300000 -33366;79823773;120176227;300000 -33367;79818383;120181617;300000 -33368;79812994;120187006;300000 -33369;79807606;120192394;300000 -33370;79802218;120197782;300000 -33371;79796830;120203170;300000 -33372;79791442;120208558;300000 -33373;79786055;120213945;300000 -33374;79780668;120219332;300000 -33375;79775281;120224719;300000 -33376;79769895;120230105;300000 -33377;79764508;120235492;300000 -33378;79759123;120240877;300000 -33379;79753737;120246263;300000 -33380;79748352;120251648;300000 -33381;79742968;120257032;300000 -33382;79737583;120262417;300000 -33383;79732199;120267801;300000 -33384;79726815;120273185;300000 -33385;79721432;120278568;300000 -33386;79716049;120283951;300000 -33387;79710666;120289334;300000 -33388;79705283;120294717;300000 -33389;79699901;120300099;300000 -33390;79694519;120305481;300000 -33391;79689138;120310862;300000 -33392;79683757;120316243;300000 -33393;79678376;120321624;300000 -33394;79672995;120327005;300000 -33395;79667615;120332385;300000 -33396;79662235;120337765;300000 -33397;79656855;120343145;300000 -33398;79651476;120348524;300000 -33399;79646097;120353903;300000 -33400;79640719;120359281;300000 -33401;79635340;120364660;300000 -33402;79629962;120370038;300000 -33403;79624585;120375415;300000 -33404;79619207;120380793;300000 -33405;79613830;120386170;300000 -33406;79608454;120391546;300000 -33407;79603077;120396923;300000 -33408;79597701;120402299;300000 -33409;79592325;120407675;300000 -33410;79586950;120413050;300000 -33411;79581575;120418425;300000 -33412;79576200;120423800;300000 -33413;79570826;120429174;300000 -33414;79565452;120434548;300000 -33415;79560078;120439922;300000 -33416;79554704;120445296;300000 -33417;79549331;120450669;300000 -33418;79543958;120456042;300000 -33419;79538586;120461414;300000 -33420;79533214;120466786;300000 -33421;79527842;120472158;300000 -33422;79522470;120477530;300000 -33423;79517099;120482901;300000 -33424;79511728;120488272;300000 -33425;79506358;120493642;300000 -33426;79500987;120499013;300000 -33427;79495617;120504383;300000 -33428;79490248;120509752;300000 -33429;79484878;120515122;300000 -33430;79479509;120520491;300000 -33431;79474141;120525859;300000 -33432;79468772;120531228;300000 -33433;79463404;120536596;300000 -33434;79458037;120541963;300000 -33435;79452669;120547331;300000 -33436;79447302;120552698;300000 -33437;79441936;120558064;300000 -33438;79436569;120563431;300000 -33439;79431203;120568797;300000 -33440;79425837;120574163;300000 -33441;79420472;120579528;300000 -33442;79415107;120584893;300000 -33443;79409742;120590258;300000 -33444;79404377;120595623;300000 -33445;79399013;120600987;300000 -33446;79393649;120606351;300000 -33447;79388286;120611714;300000 -33448;79382923;120617077;300000 -33449;79377560;120622440;300000 -33450;79372197;120627803;300000 -33451;79366835;120633165;300000 -33452;79361473;120638527;300000 -33453;79356112;120643888;300000 -33454;79350750;120649250;300000 -33455;79345389;120654611;300000 -33456;79340029;120659971;300000 -33457;79334668;120665332;300000 -33458;79329308;120670692;300000 -33459;79323949;120676051;300000 -33460;79318589;120681411;300000 -33461;79313230;120686770;300000 -33462;79307872;120692128;300000 -33463;79302513;120697487;300000 -33464;79297155;120702845;300000 -33465;79291797;120708203;300000 -33466;79286440;120713560;300000 -33467;79281083;120718917;300000 -33468;79275726;120724274;300000 -33469;79270370;120729630;300000 -33470;79265013;120734987;300000 -33471;79259658;120740342;300000 -33472;79254302;120745698;300000 -33473;79248947;120751053;300000 -33474;79243592;120756408;300000 -33475;79238237;120761763;300000 -33476;79232883;120767117;300000 -33477;79227529;120772471;300000 -33478;79222176;120777824;300000 -33479;79216822;120783178;300000 -33480;79211470;120788530;300000 -33481;79206117;120793883;300000 -33482;79200765;120799235;300000 -33483;79195413;120804587;300000 -33484;79190061;120809939;300000 -33485;79184710;120815290;300000 -33486;79179359;120820641;300000 -33487;79174008;120825992;300000 -33488;79168657;120831343;300000 -33489;79163307;120836693;300000 -33490;79157958;120842042;300000 -33491;79152608;120847392;300000 -33492;79147259;120852741;300000 -33493;79141910;120858090;300000 -33494;79136562;120863438;300000 -33495;79131214;120868786;300000 -33496;79125866;120874134;300000 -33497;79120518;120879482;300000 -33498;79115171;120884829;300000 -33499;79109824;120890176;300000 -33500;79104478;120895522;300000 -33501;79099131;120900869;300000 -33502;79093785;120906215;300000 -33503;79088440;120911560;300000 -33504;79083095;120916905;300000 -33505;79077750;120922250;300000 -33506;79072405;120927595;300000 -33507;79067061;120932939;300000 -33508;79061717;120938283;300000 -33509;79056373;120943627;300000 -33510;79051030;120948970;300000 -33511;79045686;120954314;300000 -33512;79040344;120959656;300000 -33513;79035001;120964999;300000 -33514;79029659;120970341;300000 -33515;79024317;120975683;300000 -33516;79018976;120981024;300000 -33517;79013635;120986365;300000 -33518;79008294;120991706;300000 -33519;79002954;120997046;300000 -33520;78997613;121002387;300000 -33521;78992274;121007726;300000 -33522;78986934;121013066;300000 -33523;78981595;121018405;300000 -33524;78976256;121023744;300000 -33525;78970917;121029083;300000 -33526;78965579;121034421;300000 -33527;78960241;121039759;300000 -33528;78954903;121045097;300000 -33529;78949566;121050434;300000 -33530;78944229;121055771;300000 -33531;78938892;121061108;300000 -33532;78933556;121066444;300000 -33533;78928220;121071780;300000 -33534;78922884;121077116;300000 -33535;78917549;121082451;300000 -33536;78912214;121087786;300000 -33537;78906879;121093121;300000 -33538;78901545;121098455;300000 -33539;78896210;121103790;300000 -33540;78890877;121109123;300000 -33541;78885543;121114457;300000 -33542;78880210;121119790;300000 -33543;78874877;121125123;300000 -33544;78869544;121130456;300000 -33545;78864212;121135788;300000 -33546;78858880;121141120;300000 -33547;78853549;121146451;300000 -33548;78848217;121151783;300000 -33549;78842887;121157113;300000 -33550;78837556;121162444;300000 -33551;78832226;121167774;300000 -33552;78826896;121173104;300000 -33553;78821566;121178434;300000 -33554;78816237;121183763;300000 -33555;78810907;121189093;300000 -33556;78805579;121194421;300000 -33557;78800250;121199750;300000 -33558;78794922;121205078;300000 -33559;78789594;121210406;300000 -33560;78784267;121215733;300000 -33561;78778940;121221060;300000 -33562;78773613;121226387;300000 -33563;78768287;121231713;300000 -33564;78762960;121237040;300000 -33565;78757634;121242366;300000 -33566;78752309;121247691;300000 -33567;78746984;121253016;300000 -33568;78741659;121258341;300000 -33569;78736334;121263666;300000 -33570;78731010;121268990;300000 -33571;78725686;121274314;300000 -33572;78720362;121279638;300000 -33573;78715039;121284961;300000 -33574;78709716;121290284;300000 -33575;78704393;121295607;300000 -33576;78699071;121300929;300000 -33577;78693749;121306251;300000 -33578;78688427;121311573;300000 -33579;78683106;121316894;300000 -33580;78677784;121322216;300000 -33581;78672464;121327536;300000 -33582;78667143;121332857;300000 -33583;78661823;121338177;300000 -33584;78656503;121343497;300000 -33585;78651184;121348816;300000 -33586;78645864;121354136;300000 -33587;78640545;121359455;300000 -33588;78635227;121364773;300000 -33589;78629909;121370091;300000 -33590;78624591;121375409;300000 -33591;78619273;121380727;300000 -33592;78613956;121386044;300000 -33593;78608639;121391361;300000 -33594;78603322;121396678;300000 -33595;78598006;121401994;300000 -33596;78592690;121407310;300000 -33597;78587374;121412626;300000 -33598;78582058;121417942;300000 -33599;78576743;121423257;300000 -33600;78571429;121428571;300000 -33601;78566114;121433886;300000 -33602;78560800;121439200;300000 -33603;78555486;121444514;300000 -33604;78550173;121449827;300000 -33605;78544859;121455141;300000 -33606;78539547;121460453;300000 -33607;78534234;121465766;300000 -33608;78528922;121471078;300000 -33609;78523610;121476390;300000 -33610;78518298;121481702;300000 -33611;78512987;121487013;300000 -33612;78507676;121492324;300000 -33613;78502365;121497635;300000 -33614;78497055;121502945;300000 -33615;78491745;121508255;300000 -33616;78486435;121513565;300000 -33617;78481126;121518874;300000 -33618;78475817;121524183;300000 -33619;78470508;121529492;300000 -33620;78465199;121534801;300000 -33621;78459891;121540109;300000 -33622;78454583;121545417;300000 -33623;78449276;121550724;300000 -33624;78443969;121556031;300000 -33625;78438662;121561338;300000 -33626;78433355;121566645;300000 -33627;78428049;121571951;300000 -33628;78422743;121577257;300000 -33629;78417437;121582563;300000 -33630;78412132;121587868;300000 -33631;78406827;121593173;300000 -33632;78401522;121598478;300000 -33633;78396218;121603782;300000 -33634;78390914;121609086;300000 -33635;78385610;121614390;300000 -33636;78380307;121619693;300000 -33637;78375004;121624996;300000 -33638;78369701;121630299;300000 -33639;78364398;121635602;300000 -33640;78359096;121640904;300000 -33641;78353794;121646206;300000 -33642;78348493;121651507;300000 -33643;78343192;121656808;300000 -33644;78337891;121662109;300000 -33645;78332590;121667410;300000 -33646;78327290;121672710;300000 -33647;78321990;121678010;300000 -33648;78316690;121683310;300000 -33649;78311391;121688609;300000 -33650;78306092;121693908;300000 -33651;78300793;121699207;300000 -33652;78295495;121704505;300000 -33653;78290197;121709803;300000 -33654;78284899;121715101;300000 -33655;78279602;121720398;300000 -33656;78274305;121725695;300000 -33657;78269008;121730992;300000 -33658;78263711;121736289;300000 -33659;78258415;121741585;300000 -33660;78253119;121746881;300000 -33661;78247824;121752176;300000 -33662;78242529;121757471;300000 -33663;78237234;121762766;300000 -33664;78231939;121768061;300000 -33665;78226645;121773355;300000 -33666;78221351;121778649;300000 -33667;78216057;121783943;300000 -33668;78210764;121789236;300000 -33669;78205471;121794529;300000 -33670;78200178;121799822;300000 -33671;78194886;121805114;300000 -33672;78189594;121810406;300000 -33673;78184302;121815698;300000 -33674;78179011;121820989;300000 -33675;78173719;121826281;300000 -33676;78168429;121831571;300000 -33677;78163138;121836862;300000 -33678;78157848;121842152;300000 -33679;78152558;121847442;300000 -33680;78147268;121852732;300000 -33681;78141979;121858021;300000 -33682;78136690;121863310;300000 -33683;78131402;121868598;300000 -33684;78126113;121873887;300000 -33685;78120825;121879175;300000 -33686;78115538;121884462;300000 -33687;78110250;121889750;300000 -33688;78104963;121895037;300000 -33689;78099676;121900324;300000 -33690;78094390;121905610;300000 -33691;78089104;121910896;300000 -33692;78083818;121916182;300000 -33693;78078533;121921467;300000 -33694;78073247;121926753;300000 -33695;78067963;121932037;300000 -33696;78062678;121937322;300000 -33697;78057394;121942606;300000 -33698;78052110;121947890;300000 -33699;78046826;121953174;300000 -33700;78041543;121958457;300000 -33701;78036260;121963740;300000 -33702;78030977;121969023;300000 -33703;78025695;121974305;300000 -33704;78020413;121979587;300000 -33705;78015131;121984869;300000 -33706;78009850;121990150;300000 -33707;78004569;121995431;300000 -33708;77999288;122000712;300000 -33709;77994008;122005992;300000 -33710;77988727;122011273;300000 -33711;77983448;122016552;300000 -33712;77978168;122021832;300000 -33713;77972889;122027111;300000 -33714;77967610;122032390;300000 -33715;77962331;122037669;300000 -33716;77957053;122042947;300000 -33717;77951775;122048225;300000 -33718;77946497;122053503;300000 -33719;77941220;122058780;300000 -33720;77935943;122064057;300000 -33721;77930666;122069334;300000 -33722;77925390;122074610;300000 -33723;77920114;122079886;300000 -33724;77914838;122085162;300000 -33725;77909563;122090437;300000 -33726;77904287;122095713;300000 -33727;77899013;122100987;300000 -33728;77893738;122106262;300000 -33729;77888464;122111536;300000 -33730;77883190;122116810;300000 -33731;77877916;122122084;300000 -33732;77872643;122127357;300000 -33733;77867370;122132630;300000 -33734;77862098;122137902;300000 -33735;77856825;122143175;300000 -33736;77851553;122148447;300000 -33737;77846282;122153718;300000 -33738;77841010;122158990;300000 -33739;77835739;122164261;300000 -33740;77830468;122169532;300000 -33741;77825198;122174802;300000 -33742;77819928;122180072;300000 -33743;77814658;122185342;300000 -33744;77809388;122190612;300000 -33745;77804119;122195881;300000 -33746;77798850;122201150;300000 -33747;77793582;122206418;300000 -33748;77788313;122211687;300000 -33749;77783045;122216955;300000 -33750;77777778;122222222;300000 -33751;77772510;122227490;300000 -33752;77767243;122232757;300000 -33753;77761977;122238023;300000 -33754;77756710;122243290;300000 -33755;77751444;122248556;300000 -33756;77746178;122253822;300000 -33757;77740913;122259087;300000 -33758;77735648;122264352;300000 -33759;77730383;122269617;300000 -33760;77725118;122274882;300000 -33761;77719854;122280146;300000 -33762;77714590;122285410;300000 -33763;77709327;122290673;300000 -33764;77704063;122295937;300000 -33765;77698801;122301199;300000 -33766;77693538;122306462;300000 -33767;77688276;122311724;300000 -33768;77683014;122316986;300000 -33769;77677752;122322248;300000 -33770;77672490;122327510;300000 -33771;77667229;122332771;300000 -33772;77661968;122338032;300000 -33773;77656708;122343292;300000 -33774;77651448;122348552;300000 -33775;77646188;122353812;300000 -33776;77640928;122359072;300000 -33777;77635669;122364331;300000 -33778;77630410;122369590;300000 -33779;77625152;122374848;300000 -33780;77619893;122380107;300000 -33781;77614635;122385365;300000 -33782;77609378;122390622;300000 -33783;77604120;122395880;300000 -33784;77598863;122401137;300000 -33785;77593607;122406393;300000 -33786;77588350;122411650;300000 -33787;77583094;122416906;300000 -33788;77577838;122422162;300000 -33789;77572583;122427417;300000 -33790;77567328;122432672;300000 -33791;77562073;122437927;300000 -33792;77556818;122443182;300000 -33793;77551564;122448436;300000 -33794;77546310;122453690;300000 -33795;77541056;122458944;300000 -33796;77535803;122464197;300000 -33797;77530550;122469450;300000 -33798;77525297;122474703;300000 -33799;77520045;122479955;300000 -33800;77514793;122485207;300000 -33801;77509541;122490459;300000 -33802;77504290;122495710;300000 -33803;77499039;122500961;300000 -33804;77493788;122506212;300000 -33805;77488537;122511463;300000 -33806;77483287;122516713;300000 -33807;77478037;122521963;300000 -33808;77472788;122527212;300000 -33809;77467538;122532462;300000 -33810;77462289;122537711;300000 -33811;77457041;122542959;300000 -33812;77451792;122548208;300000 -33813;77446544;122553456;300000 -33814;77441297;122558703;300000 -33815;77436049;122563951;300000 -33816;77430802;122569198;300000 -33817;77425555;122574445;300000 -33818;77420309;122579691;300000 -33819;77415063;122584937;300000 -33820;77409817;122590183;300000 -33821;77404571;122595429;300000 -33822;77399326;122600674;300000 -33823;77394081;122605919;300000 -33824;77388836;122611164;300000 -33825;77383592;122616408;300000 -33826;77378348;122621652;300000 -33827;77373104;122626896;300000 -33828;77367861;122632139;300000 -33829;77362618;122637382;300000 -33830;77357375;122642625;300000 -33831;77352133;122647867;300000 -33832;77346891;122653109;300000 -33833;77341649;122658351;300000 -33834;77336407;122663593;300000 -33835;77331166;122668834;300000 -33836;77325925;122674075;300000 -33837;77320684;122679316;300000 -33838;77315444;122684556;300000 -33839;77310204;122689796;300000 -33840;77304965;122695035;300000 -33841;77299725;122700275;300000 -33842;77294486;122705514;300000 -33843;77289247;122710753;300000 -33844;77284009;122715991;300000 -33845;77278771;122721229;300000 -33846;77273533;122726467;300000 -33847;77268296;122731704;300000 -33848;77263058;122736942;300000 -33849;77257822;122742178;300000 -33850;77252585;122747415;300000 -33851;77247349;122752651;300000 -33852;77242113;122757887;300000 -33853;77236877;122763123;300000 -33854;77231642;122768358;300000 -33855;77226407;122773593;300000 -33856;77221172;122778828;300000 -33857;77215938;122784062;300000 -33858;77210704;122789296;300000 -33859;77205470;122794530;300000 -33860;77200236;122799764;300000 -33861;77195003;122804997;300000 -33862;77189770;122810230;300000 -33863;77184538;122815462;300000 -33864;77179305;122820695;300000 -33865;77174074;122825926;300000 -33866;77168842;122831158;300000 -33867;77163611;122836389;300000 -33868;77158380;122841620;300000 -33869;77153149;122846851;300000 -33870;77147919;122852081;300000 -33871;77142688;122857312;300000 -33872;77137459;122862541;300000 -33873;77132229;122867771;300000 -33874;77127000;122873000;300000 -33875;77121771;122878229;300000 -33876;77116543;122883457;300000 -33877;77111314;122888686;300000 -33878;77106087;122893913;300000 -33879;77100859;122899141;300000 -33880;77095632;122904368;300000 -33881;77090405;122909595;300000 -33882;77085178;122914822;300000 -33883;77079952;122920048;300000 -33884;77074726;122925274;300000 -33885;77069500;122930500;300000 -33886;77064274;122935726;300000 -33887;77059049;122940951;300000 -33888;77053824;122946176;300000 -33889;77048600;122951400;300000 -33890;77043376;122956624;300000 -33891;77038152;122961848;300000 -33892;77032928;122967072;300000 -33893;77027705;122972295;300000 -33894;77022482;122977518;300000 -33895;77017259;122982741;300000 -33896;77012037;122987963;300000 -33897;77006815;122993185;300000 -33898;77001593;122998407;300000 -33899;76996372;123003628;300000 -33900;76991150;123008850;300000 -33901;76985930;123014070;300000 -33902;76980709;123019291;300000 -33903;76975489;123024511;300000 -33904;76970269;123029731;300000 -33905;76965049;123034951;300000 -33906;76959830;123040170;300000 -33907;76954611;123045389;300000 -33908;76949392;123050608;300000 -33909;76944174;123055826;300000 -33910;76938956;123061044;300000 -33911;76933738;123066262;300000 -33912;76928521;123071479;300000 -33913;76923304;123076696;300000 -33914;76918087;123081913;300000 -33915;76912870;123087130;300000 -33916;76907654;123092346;300000 -33917;76902438;123097562;300000 -33918;76897223;123102777;300000 -33919;76892007;123107993;300000 -33920;76886792;123113208;300000 -33921;76881578;123118422;300000 -33922;76876363;123123637;300000 -33923;76871149;123128851;300000 -33924;76865936;123134064;300000 -33925;76860722;123139278;300000 -33926;76855509;123144491;300000 -33927;76850296;123149704;300000 -33928;76845084;123154916;300000 -33929;76839871;123160129;300000 -33930;76834660;123165340;300000 -33931;76829448;123170552;300000 -33932;76824237;123175763;300000 -33933;76819026;123180974;300000 -33934;76813815;123186185;300000 -33935;76808605;123191395;300000 -33936;76803395;123196605;300000 -33937;76798185;123201815;300000 -33938;76792975;123207025;300000 -33939;76787766;123212234;300000 -33940;76782557;123217443;300000 -33941;76777349;123222651;300000 -33942;76772141;123227859;300000 -33943;76766933;123233067;300000 -33944;76761725;123238275;300000 -33945;76756518;123243482;300000 -33946;76751311;123248689;300000 -33947;76746104;123253896;300000 -33948;76740898;123259102;300000 -33949;76735692;123264308;300000 -33950;76730486;123269514;300000 -33951;76725281;123274719;300000 -33952;76720075;123279925;300000 -33953;76714871;123285129;300000 -33954;76709666;123290334;300000 -33955;76704462;123295538;300000 -33956;76699258;123300742;300000 -33957;76694054;123305946;300000 -33958;76688851;123311149;300000 -33959;76683648;123316352;300000 -33960;76678445;123321555;300000 -33961;76673243;123326757;300000 -33962;76668041;123331959;300000 -33963;76662839;123337161;300000 -33964;76657637;123342363;300000 -33965;76652436;123347564;300000 -33966;76647235;123352765;300000 -33967;76642035;123357965;300000 -33968;76636835;123363165;300000 -33969;76631635;123368365;300000 -33970;76626435;123373565;300000 -33971;76621236;123378764;300000 -33972;76616037;123383963;300000 -33973;76610838;123389162;300000 -33974;76605640;123394360;300000 -33975;76600442;123399558;300000 -33976;76595244;123404756;300000 -33977;76590046;123409954;300000 -33978;76584849;123415151;300000 -33979;76579652;123420348;300000 -33980;76574456;123425544;300000 -33981;76569259;123430741;300000 -33982;76564063;123435937;300000 -33983;76558868;123441132;300000 -33984;76553672;123446328;300000 -33985;76548477;123451523;300000 -33986;76543283;123456717;300000 -33987;76538088;123461912;300000 -33988;76532894;123467106;300000 -33989;76527700;123472300;300000 -33990;76522507;123477493;300000 -33991;76517313;123482687;300000 -33992;76512120;123487880;300000 -33993;76506928;123493072;300000 -33994;76501736;123498264;300000 -33995;76496544;123503456;300000 -33996;76491352;123508648;300000 -33997;76486161;123513839;300000 -33998;76480969;123519031;300000 -33999;76475779;123524221;300000 -34000;76470588;123529412;300000 -34001;76465398;123534602;300000 -34002;76460208;123539792;300000 -34003;76455019;123544981;300000 -34004;76449829;123550171;300000 -34005;76444640;123555360;300000 -34006;76439452;123560548;300000 -34007;76434264;123565736;300000 -34008;76429076;123570924;300000 -34009;76423888;123576112;300000 -34010;76418700;123581300;300000 -34011;76413513;123586487;300000 -34012;76408326;123591674;300000 -34013;76403140;123596860;300000 -34014;76397954;123602046;300000 -34015;76392768;123607232;300000 -34016;76387582;123612418;300000 -34017;76382397;123617603;300000 -34018;76377212;123622788;300000 -34019;76372027;123627973;300000 -34020;76366843;123633157;300000 -34021;76361659;123638341;300000 -34022;76356475;123643525;300000 -34023;76351292;123648708;300000 -34024;76346109;123653891;300000 -34025;76340926;123659074;300000 -34026;76335743;123664257;300000 -34027;76330561;123669439;300000 -34028;76325379;123674621;300000 -34029;76320197;123679803;300000 -34030;76315016;123684984;300000 -34031;76309835;123690165;300000 -34032;76304654;123695346;300000 -34033;76299474;123700526;300000 -34034;76294294;123705706;300000 -34035;76289114;123710886;300000 -34036;76283935;123716065;300000 -34037;76278755;123721245;300000 -34038;76273577;123726423;300000 -34039;76268398;123731602;300000 -34040;76263220;123736780;300000 -34041;76258042;123741958;300000 -34042;76252864;123747136;300000 -34043;76247687;123752313;300000 -34044;76242510;123757490;300000 -34045;76237333;123762667;300000 -34046;76232156;123767844;300000 -34047;76226980;123773020;300000 -34048;76221805;123778195;300000 -34049;76216629;123783371;300000 -34050;76211454;123788546;300000 -34051;76206279;123793721;300000 -34052;76201104;123798896;300000 -34053;76195930;123804070;300000 -34054;76190756;123809244;300000 -34055;76185582;123814418;300000 -34056;76180409;123819591;300000 -34057;76175236;123824764;300000 -34058;76170063;123829937;300000 -34059;76164890;123835110;300000 -34060;76159718;123840282;300000 -34061;76154546;123845454;300000 -34062;76149375;123850625;300000 -34063;76144203;123855797;300000 -34064;76139032;123860968;300000 -34065;76133862;123866138;300000 -34066;76128691;123871309;300000 -34067;76123521;123876479;300000 -34068;76118352;123881648;300000 -34069;76113182;123886818;300000 -34070;76108013;123891987;300000 -34071;76102844;123897156;300000 -34072;76097676;123902324;300000 -34073;76092507;123907493;300000 -34074;76087339;123912661;300000 -34075;76082172;123917828;300000 -34076;76077004;123922996;300000 -34077;76071837;123928163;300000 -34078;76066671;123933329;300000 -34079;76061504;123938496;300000 -34080;76056338;123943662;300000 -34081;76051172;123948828;300000 -34082;76046007;123953993;300000 -34083;76040841;123959159;300000 -34084;76035677;123964323;300000 -34085;76030512;123969488;300000 -34086;76025348;123974652;300000 -34087;76020184;123979816;300000 -34088;76015020;123984980;300000 -34089;76009857;123990143;300000 -34090;76004693;123995307;300000 -34091;75999531;124000469;300000 -34092;75994368;124005632;300000 -34093;75989206;124010794;300000 -34094;75984044;124015956;300000 -34095;75978883;124021117;300000 -34096;75973721;124026279;300000 -34097;75968560;124031440;300000 -34098;75963400;124036600;300000 -34099;75958239;124041761;300000 -34100;75953079;124046921;300000 -34101;75947919;124052081;300000 -34102;75942760;124057240;300000 -34103;75937601;124062399;300000 -34104;75932442;124067558;300000 -34105;75927283;124072717;300000 -34106;75922125;124077875;300000 -34107;75916967;124083033;300000 -34108;75911810;124088190;300000 -34109;75906652;124093348;300000 -34110;75901495;124098505;300000 -34111;75896338;124103662;300000 -34112;75891182;124108818;300000 -34113;75886026;124113974;300000 -34114;75880870;124119130;300000 -34115;75875714;124124286;300000 -34116;75870559;124129441;300000 -34117;75865404;124134596;300000 -34118;75860250;124139750;300000 -34119;75855095;124144905;300000 -34120;75849941;124150059;300000 -34121;75844788;124155212;300000 -34122;75839634;124160366;300000 -34123;75834481;124165519;300000 -34124;75829328;124170672;300000 -34125;75824176;124175824;300000 -34126;75819024;124180976;300000 -34127;75813872;124186128;300000 -34128;75808720;124191280;300000 -34129;75803569;124196431;300000 -34130;75798418;124201582;300000 -34131;75793267;124206733;300000 -34132;75788117;124211883;300000 -34133;75782967;124217033;300000 -34134;75777817;124222183;300000 -34135;75772667;124227333;300000 -34136;75767518;124232482;300000 -34137;75762369;124237631;300000 -34138;75757221;124242779;300000 -34139;75752072;124247928;300000 -34140;75746924;124253076;300000 -34141;75741777;124258223;300000 -34142;75736629;124263371;300000 -34143;75731482;124268518;300000 -34144;75726336;124273664;300000 -34145;75721189;124278811;300000 -34146;75716043;124283957;300000 -34147;75710897;124289103;300000 -34148;75705751;124294249;300000 -34149;75700606;124299394;300000 -34150;75695461;124304539;300000 -34151;75690317;124309683;300000 -34152;75685172;124314828;300000 -34153;75680028;124319972;300000 -34154;75674884;124325116;300000 -34155;75669741;124330259;300000 -34156;75664598;124335402;300000 -34157;75659455;124340545;300000 -34158;75654312;124345688;300000 -34159;75649170;124350830;300000 -34160;75644028;124355972;300000 -34161;75638886;124361114;300000 -34162;75633745;124366255;300000 -34163;75628604;124371396;300000 -34164;75623463;124376537;300000 -34165;75618323;124381677;300000 -34166;75613183;124386817;300000 -34167;75608043;124391957;300000 -34168;75602903;124397097;300000 -34169;75597764;124402236;300000 -34170;75592625;124407375;300000 -34171;75587486;124412514;300000 -34172;75582348;124417652;300000 -34173;75577210;124422790;300000 -34174;75572072;124427928;300000 -34175;75566935;124433065;300000 -34176;75561798;124438202;300000 -34177;75556661;124443339;300000 -34178;75551524;124448476;300000 -34179;75546388;124453612;300000 -34180;75541252;124458748;300000 -34181;75536117;124463883;300000 -34182;75530981;124469019;300000 -34183;75525846;124474154;300000 -34184;75520711;124479289;300000 -34185;75515577;124484423;300000 -34186;75510443;124489557;300000 -34187;75505309;124494691;300000 -34188;75500176;124499824;300000 -34189;75495042;124504958;300000 -34190;75489909;124510091;300000 -34191;75484777;124515223;300000 -34192;75479644;124520356;300000 -34193;75474512;124525488;300000 -34194;75469381;124530619;300000 -34195;75464249;124535751;300000 -34196;75459118;124540882;300000 -34197;75453987;124546013;300000 -34198;75448857;124551143;300000 -34199;75443726;124556274;300000 -34200;75438596;124561404;300000 -34201;75433467;124566533;300000 -34202;75428338;124571662;300000 -34203;75423208;124576792;300000 -34204;75418080;124581920;300000 -34205;75412951;124587049;300000 -34206;75407823;124592177;300000 -34207;75402695;124597305;300000 -34208;75397568;124602432;300000 -34209;75392441;124607559;300000 -34210;75387314;124612686;300000 -34211;75382187;124617813;300000 -34212;75377061;124622939;300000 -34213;75371935;124628065;300000 -34214;75366809;124633191;300000 -34215;75361683;124638317;300000 -34216;75356558;124643442;300000 -34217;75351433;124648567;300000 -34218;75346309;124653691;300000 -34219;75341185;124658815;300000 -34220;75336061;124663939;300000 -34221;75330937;124669063;300000 -34222;75325814;124674186;300000 -34223;75320691;124679309;300000 -34224;75315568;124684432;300000 -34225;75310446;124689554;300000 -34226;75305323;124694677;300000 -34227;75300202;124699798;300000 -34228;75295080;124704920;300000 -34229;75289959;124710041;300000 -34230;75284838;124715162;300000 -34231;75279717;124720283;300000 -34232;75274597;124725403;300000 -34233;75269477;124730523;300000 -34234;75264357;124735643;300000 -34235;75259238;124740762;300000 -34236;75254118;124745882;300000 -34237;75249000;124751000;300000 -34238;75243881;124756119;300000 -34239;75238763;124761237;300000 -34240;75233645;124766355;300000 -34241;75228527;124771473;300000 -34242;75223410;124776590;300000 -34243;75218293;124781707;300000 -34244;75213176;124786824;300000 -34245;75208060;124791940;300000 -34246;75202943;124797057;300000 -34247;75197828;124802172;300000 -34248;75192712;124807288;300000 -34249;75187597;124812403;300000 -34250;75182482;124817518;300000 -34251;75177367;124822633;300000 -34252;75172253;124827747;300000 -34253;75167139;124832861;300000 -34254;75162025;124837975;300000 -34255;75156911;124843089;300000 -34256;75151798;124848202;300000 -34257;75146685;124853315;300000 -34258;75141573;124858427;300000 -34259;75136460;124863540;300000 -34260;75131349;124868651;300000 -34261;75126237;124873763;300000 -34262;75121125;124878875;300000 -34263;75116014;124883986;300000 -34264;75110904;124889096;300000 -34265;75105793;124894207;300000 -34266;75100683;124899317;300000 -34267;75095573;124904427;300000 -34268;75090463;124909537;300000 -34269;75085354;124914646;300000 -34270;75080245;124919755;300000 -34271;75075136;124924864;300000 -34272;75070028;124929972;300000 -34273;75064920;124935080;300000 -34274;75059812;124940188;300000 -34275;75054705;124945295;300000 -34276;75049597;124950403;300000 -34277;75044490;124955510;300000 -34278;75039384;124960616;300000 -34279;75034278;124965722;300000 -34280;75029172;124970828;300000 -34281;75024066;124975934;300000 -34282;75018960;124981040;300000 -34283;75013855;124986145;300000 -34284;75008750;124991250;300000 -34285;75003646;124996354;300000 -34286;74998542;125001458;300000 -34287;74993438;125006562;300000 -34288;74988334;125011666;300000 -34289;74983231;125016769;300000 -34290;74978128;125021872;300000 -34291;74973025;125026975;300000 -34292;74967923;125032077;300000 -34293;74962820;125037180;300000 -34294;74957719;125042281;300000 -34295;74952617;125047383;300000 -34296;74947516;125052484;300000 -34297;74942415;125057585;300000 -34298;74937314;125062686;300000 -34299;74932214;125067786;300000 -34300;74927114;125072886;300000 -34301;74922014;125077986;300000 -34302;74916914;125083086;300000 -34303;74911815;125088185;300000 -34304;74906716;125093284;300000 -34305;74901618;125098382;300000 -34306;74896520;125103480;300000 -34307;74891422;125108578;300000 -34308;74886324;125113676;300000 -34309;74881227;125118773;300000 -34310;74876129;125123871;300000 -34311;74871033;125128967;300000 -34312;74865936;125134064;300000 -34313;74860840;125139160;300000 -34314;74855744;125144256;300000 -34315;74850648;125149352;300000 -34316;74845553;125154447;300000 -34317;74840458;125159542;300000 -34318;74835363;125164637;300000 -34319;74830269;125169731;300000 -34320;74825175;125174825;300000 -34321;74820081;125179919;300000 -34322;74814987;125185013;300000 -34323;74809894;125190106;300000 -34324;74804801;125195199;300000 -34325;74799709;125200291;300000 -34326;74794616;125205384;300000 -34327;74789524;125210476;300000 -34328;74784433;125215567;300000 -34329;74779341;125220659;300000 -34330;74774250;125225750;300000 -34331;74769159;125230841;300000 -34332;74764069;125235931;300000 -34333;74758978;125241022;300000 -34334;74753888;125246112;300000 -34335;74748799;125251201;300000 -34336;74743709;125256291;300000 -34337;74738620;125261380;300000 -34338;74733531;125266469;300000 -34339;74728443;125271557;300000 -34340;74723355;125276645;300000 -34341;74718267;125281733;300000 -34342;74713179;125286821;300000 -34343;74708092;125291908;300000 -34344;74703005;125296995;300000 -34345;74697918;125302082;300000 -34346;74692832;125307168;300000 -34347;74687746;125312254;300000 -34348;74682660;125317340;300000 -34349;74677574;125322426;300000 -34350;74672489;125327511;300000 -34351;74667404;125332596;300000 -34352;74662320;125337680;300000 -34353;74657235;125342765;300000 -34354;74652151;125347849;300000 -34355;74647067;125352933;300000 -34356;74641984;125358016;300000 -34357;74636901;125363099;300000 -34358;74631818;125368182;300000 -34359;74626735;125373265;300000 -34360;74621653;125378347;300000 -34361;74616571;125383429;300000 -34362;74611489;125388511;300000 -34363;74606408;125393592;300000 -34364;74601327;125398673;300000 -34365;74596246;125403754;300000 -34366;74591166;125408834;300000 -34367;74586085;125413915;300000 -34368;74581006;125418994;300000 -34369;74575926;125424074;300000 -34370;74570847;125429153;300000 -34371;74565768;125434232;300000 -34372;74560689;125439311;300000 -34373;74555611;125444389;300000 -34374;74550532;125449468;300000 -34375;74545455;125454545;300000 -34376;74540377;125459623;300000 -34377;74535300;125464700;300000 -34378;74530223;125469777;300000 -34379;74525146;125474854;300000 -34380;74520070;125479930;300000 -34381;74514994;125485006;300000 -34382;74509918;125490082;300000 -34383;74504843;125495157;300000 -34384;74499767;125500233;300000 -34385;74494692;125505308;300000 -34386;74489618;125510382;300000 -34387;74484544;125515456;300000 -34388;74479470;125520530;300000 -34389;74474396;125525604;300000 -34390;74469322;125530678;300000 -34391;74464249;125535751;300000 -34392;74459177;125540823;300000 -34393;74454104;125545896;300000 -34394;74449032;125550968;300000 -34395;74443960;125556040;300000 -34396;74438888;125561112;300000 -34397;74433817;125566183;300000 -34398;74428746;125571254;300000 -34399;74423675;125576325;300000 -34400;74418605;125581395;300000 -34401;74413534;125586466;300000 -34402;74408465;125591535;300000 -34403;74403395;125596605;300000 -34404;74398326;125601674;300000 -34405;74393257;125606743;300000 -34406;74388188;125611812;300000 -34407;74383120;125616880;300000 -34408;74378052;125621948;300000 -34409;74372984;125627016;300000 -34410;74367916;125632084;300000 -34411;74362849;125637151;300000 -34412;74357782;125642218;300000 -34413;74352716;125647284;300000 -34414;74347649;125652351;300000 -34415;74342583;125657417;300000 -34416;74337517;125662483;300000 -34417;74332452;125667548;300000 -34418;74327387;125672613;300000 -34419;74322322;125677678;300000 -34420;74317257;125682743;300000 -34421;74312193;125687807;300000 -34422;74307129;125692871;300000 -34423;74302065;125697935;300000 -34424;74297002;125702998;300000 -34425;74291939;125708061;300000 -34426;74286876;125713124;300000 -34427;74281814;125718186;300000 -34428;74276751;125723249;300000 -34429;74271690;125728310;300000 -34430;74266628;125733372;300000 -34431;74261567;125738433;300000 -34432;74256506;125743494;300000 -34433;74251445;125748555;300000 -34434;74246384;125753616;300000 -34435;74241324;125758676;300000 -34436;74236264;125763736;300000 -34437;74231205;125768795;300000 -34438;74226146;125773854;300000 -34439;74221087;125778913;300000 -34440;74216028;125783972;300000 -34441;74210969;125789031;300000 -34442;74205911;125794089;300000 -34443;74200854;125799146;300000 -34444;74195796;125804204;300000 -34445;74190739;125809261;300000 -34446;74185682;125814318;300000 -34447;74180625;125819375;300000 -34448;74175569;125824431;300000 -34449;74170513;125829487;300000 -34450;74165457;125834543;300000 -34451;74160402;125839598;300000 -34452;74155347;125844653;300000 -34453;74150292;125849708;300000 -34454;74145237;125854763;300000 -34455;74140183;125859817;300000 -34456;74135129;125864871;300000 -34457;74130075;125869925;300000 -34458;74125022;125874978;300000 -34459;74119969;125880031;300000 -34460;74114916;125885084;300000 -34461;74109863;125890137;300000 -34462;74104811;125895189;300000 -34463;74099759;125900241;300000 -34464;74094708;125905292;300000 -34465;74089656;125910344;300000 -34466;74084605;125915395;300000 -34467;74079554;125920446;300000 -34468;74074504;125925496;300000 -34469;74069454;125930546;300000 -34470;74064404;125935596;300000 -34471;74059354;125940646;300000 -34472;74054305;125945695;300000 -34473;74049256;125950744;300000 -34474;74044207;125955793;300000 -34475;74039159;125960841;300000 -34476;74034111;125965889;300000 -34477;74029063;125970937;300000 -34478;74024015;125975985;300000 -34479;74018968;125981032;300000 -34480;74013921;125986079;300000 -34481;74008874;125991126;300000 -34482;74003828;125996172;300000 -34483;73998782;126001218;300000 -34484;73993736;126006264;300000 -34485;73988691;126011309;300000 -34486;73983646;126016354;300000 -34487;73978601;126021399;300000 -34488;73973556;126026444;300000 -34489;73968512;126031488;300000 -34490;73963468;126036532;300000 -34491;73958424;126041576;300000 -34492;73953380;126046620;300000 -34493;73948337;126051663;300000 -34494;73943294;126056706;300000 -34495;73938252;126061748;300000 -34496;73933210;126066790;300000 -34497;73928168;126071832;300000 -34498;73923126;126076874;300000 -34499;73918085;126081915;300000 -34500;73913043;126086957;300000 -34501;73908003;126091997;300000 -34502;73902962;126097038;300000 -34503;73897922;126102078;300000 -34504;73892882;126107118;300000 -34505;73887842;126112158;300000 -34506;73882803;126117197;300000 -34507;73877764;126122236;300000 -34508;73872725;126127275;300000 -34509;73867687;126132313;300000 -34510;73862649;126137351;300000 -34511;73857611;126142389;300000 -34512;73852573;126147427;300000 -34513;73847536;126152464;300000 -34514;73842499;126157501;300000 -34515;73837462;126162538;300000 -34516;73832426;126167574;300000 -34517;73827389;126172611;300000 -34518;73822354;126177646;300000 -34519;73817318;126182682;300000 -34520;73812283;126187717;300000 -34521;73807248;126192752;300000 -34522;73802213;126197787;300000 -34523;73797179;126202821;300000 -34524;73792145;126207855;300000 -34525;73787111;126212889;300000 -34526;73782077;126217923;300000 -34527;73777044;126222956;300000 -34528;73772011;126227989;300000 -34529;73766978;126233022;300000 -34530;73761946;126238054;300000 -34531;73756914;126243086;300000 -34532;73751882;126248118;300000 -34533;73746851;126253149;300000 -34534;73741820;126258180;300000 -34535;73736789;126263211;300000 -34536;73731758;126268242;300000 -34537;73726728;126273272;300000 -34538;73721698;126278302;300000 -34539;73716668;126283332;300000 -34540;73711639;126288361;300000 -34541;73706610;126293390;300000 -34542;73701581;126298419;300000 -34543;73696552;126303448;300000 -34544;73691524;126308476;300000 -34545;73686496;126313504;300000 -34546;73681468;126318532;300000 -34547;73676441;126323559;300000 -34548;73671414;126328586;300000 -34549;73666387;126333613;300000 -34550;73661360;126338640;300000 -34551;73656334;126343666;300000 -34552;73651308;126348692;300000 -34553;73646283;126353717;300000 -34554;73641257;126358743;300000 -34555;73636232;126363768;300000 -34556;73631207;126368793;300000 -34557;73626183;126373817;300000 -34558;73621159;126378841;300000 -34559;73616135;126383865;300000 -34560;73611111;126388889;300000 -34561;73606088;126393912;300000 -34562;73601065;126398935;300000 -34563;73596042;126403958;300000 -34564;73591020;126408980;300000 -34565;73585997;126414003;300000 -34566;73580976;126419024;300000 -34567;73575954;126424046;300000 -34568;73570933;126429067;300000 -34569;73565912;126434088;300000 -34570;73560891;126439109;300000 -34571;73555871;126444129;300000 -34572;73550850;126449150;300000 -34573;73545831;126454169;300000 -34574;73540811;126459189;300000 -34575;73535792;126464208;300000 -34576;73530773;126469227;300000 -34577;73525754;126474246;300000 -34578;73520736;126479264;300000 -34579;73515718;126484282;300000 -34580;73510700;126489300;300000 -34581;73505682;126494318;300000 -34582;73500665;126499335;300000 -34583;73495648;126504352;300000 -34584;73490632;126509368;300000 -34585;73485615;126514385;300000 -34586;73480599;126519401;300000 -34587;73475583;126524417;300000 -34588;73470568;126529432;300000 -34589;73465553;126534447;300000 -34590;73460538;126539462;300000 -34591;73455523;126544477;300000 -34592;73450509;126549491;300000 -34593;73445495;126554505;300000 -34594;73440481;126559519;300000 -34595;73435468;126564532;300000 -34596;73430454;126569546;300000 -34597;73425442;126574558;300000 -34598;73420429;126579571;300000 -34599;73415417;126584583;300000 -34600;73410405;126589595;300000 -34601;73405393;126594607;300000 -34602;73400381;126599619;300000 -34603;73395370;126604630;300000 -34604;73390359;126609641;300000 -34605;73385349;126614651;300000 -34606;73380339;126619661;300000 -34607;73375329;126624671;300000 -34608;73370319;126629681;300000 -34609;73365310;126634690;300000 -34610;73360300;126639700;300000 -34611;73355292;126644708;300000 -34612;73350283;126649717;300000 -34613;73345275;126654725;300000 -34614;73340267;126659733;300000 -34615;73335259;126664741;300000 -34616;73330252;126669748;300000 -34617;73325245;126674755;300000 -34618;73320238;126679762;300000 -34619;73315232;126684768;300000 -34620;73310225;126689775;300000 -34621;73305219;126694781;300000 -34622;73300214;126699786;300000 -34623;73295208;126704792;300000 -34624;73290203;126709797;300000 -34625;73285199;126714801;300000 -34626;73280194;126719806;300000 -34627;73275190;126724810;300000 -34628;73270186;126729814;300000 -34629;73265182;126734818;300000 -34630;73260179;126739821;300000 -34631;73255176;126744824;300000 -34632;73250173;126749827;300000 -34633;73245171;126754829;300000 -34634;73240169;126759831;300000 -34635;73235167;126764833;300000 -34636;73230165;126769835;300000 -34637;73225164;126774836;300000 -34638;73220163;126779837;300000 -34639;73215162;126784838;300000 -34640;73210162;126789838;300000 -34641;73205162;126794838;300000 -34642;73200162;126799838;300000 -34643;73195162;126804838;300000 -34644;73190163;126809837;300000 -34645;73185164;126814836;300000 -34646;73180165;126819835;300000 -34647;73175167;126824833;300000 -34648;73170169;126829831;300000 -34649;73165171;126834829;300000 -34650;73160173;126839827;300000 -34651;73155176;126844824;300000 -34652;73150179;126849821;300000 -34653;73145182;126854818;300000 -34654;73140186;126859814;300000 -34655;73135190;126864810;300000 -34656;73130194;126869806;300000 -34657;73125198;126874802;300000 -34658;73120203;126879797;300000 -34659;73115208;126884792;300000 -34660;73110214;126889786;300000 -34661;73105219;126894781;300000 -34662;73100225;126899775;300000 -34663;73095231;126904769;300000 -34664;73090238;126909762;300000 -34665;73085244;126914756;300000 -34666;73080252;126919748;300000 -34667;73075259;126924741;300000 -34668;73070267;126929733;300000 -34669;73065274;126934726;300000 -34670;73060283;126939717;300000 -34671;73055291;126944709;300000 -34672;73050300;126949700;300000 -34673;73045309;126954691;300000 -34674;73040318;126959682;300000 -34675;73035328;126964672;300000 -34676;73030338;126969662;300000 -34677;73025348;126974652;300000 -34678;73020359;126979641;300000 -34679;73015370;126984630;300000 -34680;73010381;126989619;300000 -34681;73005392;126994608;300000 -34682;73000404;126999596;300000 -34683;72995416;127004584;300000 -34684;72990428;127009572;300000 -34685;72985440;127014560;300000 -34686;72980453;127019547;300000 -34687;72975466;127024534;300000 -34688;72970480;127029520;300000 -34689;72965493;127034507;300000 -34690;72960507;127039493;300000 -34691;72955522;127044478;300000 -34692;72950536;127049464;300000 -34693;72945551;127054449;300000 -34694;72940566;127059434;300000 -34695;72935581;127064419;300000 -34696;72930597;127069403;300000 -34697;72925613;127074387;300000 -34698;72920629;127079371;300000 -34699;72915646;127084354;300000 -34700;72910663;127089337;300000 -34701;72905680;127094320;300000 -34702;72900697;127099303;300000 -34703;72895715;127104285;300000 -34704;72890733;127109267;300000 -34705;72885751;127114249;300000 -34706;72880770;127119230;300000 -34707;72875789;127124211;300000 -34708;72870808;127129192;300000 -34709;72865827;127134173;300000 -34710;72860847;127139153;300000 -34711;72855867;127144133;300000 -34712;72850887;127149113;300000 -34713;72845908;127154092;300000 -34714;72840929;127159071;300000 -34715;72835950;127164050;300000 -34716;72830971;127169029;300000 -34717;72825993;127174007;300000 -34718;72821015;127178985;300000 -34719;72816037;127183963;300000 -34720;72811060;127188940;300000 -34721;72806083;127193917;300000 -34722;72801106;127198894;300000 -34723;72796129;127203871;300000 -34724;72791153;127208847;300000 -34725;72786177;127213823;300000 -34726;72781201;127218799;300000 -34727;72776226;127223774;300000 -34728;72771251;127228749;300000 -34729;72766276;127233724;300000 -34730;72761301;127238699;300000 -34731;72756327;127243673;300000 -34732;72751353;127248647;300000 -34733;72746380;127253620;300000 -34734;72741406;127258594;300000 -34735;72736433;127263567;300000 -34736;72731460;127268540;300000 -34737;72726488;127273512;300000 -34738;72721515;127278485;300000 -34739;72716543;127283457;300000 -34740;72711572;127288428;300000 -34741;72706600;127293400;300000 -34742;72701629;127298371;300000 -34743;72696658;127303342;300000 -34744;72691688;127308312;300000 -34745;72686718;127313282;300000 -34746;72681748;127318252;300000 -34747;72676778;127323222;300000 -34748;72671808;127328192;300000 -34749;72666839;127333161;300000 -34750;72661871;127338129;300000 -34751;72656902;127343098;300000 -34752;72651934;127348066;300000 -34753;72646966;127353034;300000 -34754;72641998;127358002;300000 -34755;72637031;127362969;300000 -34756;72632064;127367936;300000 -34757;72627097;127372903;300000 -34758;72622130;127377870;300000 -34759;72617164;127382836;300000 -34760;72612198;127387802;300000 -34761;72607232;127392768;300000 -34762;72602267;127397733;300000 -34763;72597302;127402698;300000 -34764;72592337;127407663;300000 -34765;72587372;127412628;300000 -34766;72582408;127417592;300000 -34767;72577444;127422556;300000 -34768;72572480;127427520;300000 -34769;72567517;127432483;300000 -34770;72562554;127437446;300000 -34771;72557591;127442409;300000 -34772;72552629;127447371;300000 -34773;72547666;127452334;300000 -34774;72542704;127457296;300000 -34775;72537743;127462257;300000 -34776;72532781;127467219;300000 -34777;72527820;127472180;300000 -34778;72522859;127477141;300000 -34779;72517899;127482101;300000 -34780;72512938;127487062;300000 -34781;72507978;127492022;300000 -34782;72503019;127496981;300000 -34783;72498059;127501941;300000 -34784;72493100;127506900;300000 -34785;72488141;127511859;300000 -34786;72483183;127516817;300000 -34787;72478225;127521775;300000 -34788;72473267;127526733;300000 -34789;72468309;127531691;300000 -34790;72463352;127536648;300000 -34791;72458394;127541606;300000 -34792;72453438;127546562;300000 -34793;72448481;127551519;300000 -34794;72443525;127556475;300000 -34795;72438569;127561431;300000 -34796;72433613;127566387;300000 -34797;72428658;127571342;300000 -34798;72423703;127576297;300000 -34799;72418748;127581252;300000 -34800;72413793;127586207;300000 -34801;72408839;127591161;300000 -34802;72403885;127596115;300000 -34803;72398931;127601069;300000 -34804;72393978;127606022;300000 -34805;72389025;127610975;300000 -34806;72384072;127615928;300000 -34807;72379119;127620881;300000 -34808;72374167;127625833;300000 -34809;72369215;127630785;300000 -34810;72364263;127635737;300000 -34811;72359312;127640688;300000 -34812;72354361;127645639;300000 -34813;72349410;127650590;300000 -34814;72344459;127655541;300000 -34815;72339509;127660491;300000 -34816;72334559;127665441;300000 -34817;72329609;127670391;300000 -34818;72324660;127675340;300000 -34819;72319711;127680289;300000 -34820;72314762;127685238;300000 -34821;72309813;127690187;300000 -34822;72304865;127695135;300000 -34823;72299917;127700083;300000 -34824;72294969;127705031;300000 -34825;72290022;127709978;300000 -34826;72285074;127714926;300000 -34827;72280127;127719873;300000 -34828;72275181;127724819;300000 -34829;72270235;127729765;300000 -34830;72265289;127734711;300000 -34831;72260343;127739657;300000 -34832;72255397;127744603;300000 -34833;72250452;127749548;300000 -34834;72245507;127754493;300000 -34835;72240563;127759437;300000 -34836;72235618;127764382;300000 -34837;72230674;127769326;300000 -34838;72225731;127774269;300000 -34839;72220787;127779213;300000 -34840;72215844;127784156;300000 -34841;72210901;127789099;300000 -34842;72205958;127794042;300000 -34843;72201016;127798984;300000 -34844;72196074;127803926;300000 -34845;72191132;127808868;300000 -34846;72186191;127813809;300000 -34847;72181249;127818751;300000 -34848;72176309;127823691;300000 -34849;72171368;127828632;300000 -34850;72166428;127833572;300000 -34851;72161487;127838513;300000 -34852;72156548;127843452;300000 -34853;72151608;127848392;300000 -34854;72146669;127853331;300000 -34855;72141730;127858270;300000 -34856;72136791;127863209;300000 -34857;72131853;127868147;300000 -34858;72126915;127873085;300000 -34859;72121977;127878023;300000 -34860;72117040;127882960;300000 -34861;72112102;127887898;300000 -34862;72107165;127892835;300000 -34863;72102229;127897771;300000 -34864;72097292;127902708;300000 -34865;72092356;127907644;300000 -34866;72087420;127912580;300000 -34867;72082485;127917515;300000 -34868;72077550;127922450;300000 -34869;72072615;127927385;300000 -34870;72067680;127932320;300000 -34871;72062746;127937254;300000 -34872;72057811;127942189;300000 -34873;72052878;127947122;300000 -34874;72047944;127952056;300000 -34875;72043011;127956989;300000 -34876;72038078;127961922;300000 -34877;72033145;127966855;300000 -34878;72028213;127971787;300000 -34879;72023280;127976720;300000 -34880;72018349;127981651;300000 -34881;72013417;127986583;300000 -34882;72008486;127991514;300000 -34883;72003555;127996445;300000 -34884;71998624;128001376;300000 -34885;71993694;128006306;300000 -34886;71988763;128011237;300000 -34887;71983834;128016166;300000 -34888;71978904;128021096;300000 -34889;71973975;128026025;300000 -34890;71969046;128030954;300000 -34891;71964117;128035883;300000 -34892;71959188;128040812;300000 -34893;71954260;128045740;300000 -34894;71949332;128050668;300000 -34895;71944405;128055595;300000 -34896;71939477;128060523;300000 -34897;71934550;128065450;300000 -34898;71929623;128070377;300000 -34899;71924697;128075303;300000 -34900;71919771;128080229;300000 -34901;71914845;128085155;300000 -34902;71909919;128090081;300000 -34903;71904994;128095006;300000 -34904;71900069;128099931;300000 -34905;71895144;128104856;300000 -34906;71890219;128109781;300000 -34907;71885295;128114705;300000 -34908;71880371;128119629;300000 -34909;71875448;128124552;300000 -34910;71870524;128129476;300000 -34911;71865601;128134399;300000 -34912;71860678;128139322;300000 -34913;71855756;128144244;300000 -34914;71850833;128149167;300000 -34915;71845911;128154089;300000 -34916;71840990;128159010;300000 -34917;71836068;128163932;300000 -34918;71831147;128168853;300000 -34919;71826226;128173774;300000 -34920;71821306;128178694;300000 -34921;71816386;128183614;300000 -34922;71811466;128188534;300000 -34923;71806546;128193454;300000 -34924;71801626;128198374;300000 -34925;71796707;128203293;300000 -34926;71791788;128208212;300000 -34927;71786870;128213130;300000 -34928;71781951;128218049;300000 -34929;71777033;128222967;300000 -34930;71772116;128227884;300000 -34931;71767198;128232802;300000 -34932;71762281;128237719;300000 -34933;71757364;128242636;300000 -34934;71752447;128247553;300000 -34935;71747531;128252469;300000 -34936;71742615;128257385;300000 -34937;71737699;128262301;300000 -34938;71732784;128267216;300000 -34939;71727869;128272131;300000 -34940;71722954;128277046;300000 -34941;71718039;128281961;300000 -34942;71713125;128286875;300000 -34943;71708211;128291789;300000 -34944;71703297;128296703;300000 -34945;71698383;128301617;300000 -34946;71693470;128306530;300000 -34947;71688557;128311443;300000 -34948;71683644;128316356;300000 -34949;71678732;128321268;300000 -34950;71673820;128326180;300000 -34951;71668908;128331092;300000 -34952;71663996;128336004;300000 -34953;71659085;128340915;300000 -34954;71654174;128345826;300000 -34955;71649263;128350737;300000 -34956;71644353;128355647;300000 -34957;71639443;128360557;300000 -34958;71634533;128365467;300000 -34959;71629623;128370377;300000 -34960;71624714;128375286;300000 -34961;71619805;128380195;300000 -34962;71614896;128385104;300000 -34963;71609988;128390012;300000 -34964;71605080;128394920;300000 -34965;71600172;128399828;300000 -34966;71595264;128404736;300000 -34967;71590357;128409643;300000 -34968;71585450;128414550;300000 -34969;71580543;128419457;300000 -34970;71575636;128424364;300000 -34971;71570730;128429270;300000 -34972;71565824;128434176;300000 -34973;71560918;128439082;300000 -34974;71556013;128443987;300000 -34975;71551108;128448892;300000 -34976;71546203;128453797;300000 -34977;71541299;128458701;300000 -34978;71536394;128463606;300000 -34979;71531490;128468510;300000 -34980;71526587;128473413;300000 -34981;71521683;128478317;300000 -34982;71516780;128483220;300000 -34983;71511877;128488123;300000 -34984;71506975;128493025;300000 -34985;71502072;128497928;300000 -34986;71497170;128502830;300000 -34987;71492269;128507731;300000 -34988;71487367;128512633;300000 -34989;71482466;128517534;300000 -34990;71477565;128522435;300000 -34991;71472664;128527336;300000 -34992;71467764;128532236;300000 -34993;71462864;128537136;300000 -34994;71457964;128542036;300000 -34995;71453065;128546935;300000 -34996;71448166;128551834;300000 -34997;71443267;128556733;300000 -34998;71438368;128561632;300000 -34999;71433470;128566530;300000 -35000;71428571;128571429;300000 -35001;71423674;128576326;300000 -35002;71418776;128581224;300000 -35003;71413879;128586121;300000 -35004;71408982;128591018;300000 -35005;71404085;128595915;300000 -35006;71399189;128600811;300000 -35007;71394293;128605707;300000 -35008;71389397;128610603;300000 -35009;71384501;128615499;300000 -35010;71379606;128620394;300000 -35011;71374711;128625289;300000 -35012;71369816;128630184;300000 -35013;71364922;128635078;300000 -35014;71360027;128639973;300000 -35015;71355134;128644866;300000 -35016;71350240;128649760;300000 -35017;71345347;128654653;300000 -35018;71340453;128659547;300000 -35019;71335561;128664439;300000 -35020;71330668;128669332;300000 -35021;71325776;128674224;300000 -35022;71320884;128679116;300000 -35023;71315992;128684008;300000 -35024;71311101;128688899;300000 -35025;71306210;128693790;300000 -35026;71301319;128698681;300000 -35027;71296428;128703572;300000 -35028;71291538;128708462;300000 -35029;71286648;128713352;300000 -35030;71281758;128718242;300000 -35031;71276869;128723131;300000 -35032;71271980;128728020;300000 -35033;71267091;128732909;300000 -35034;71262202;128737798;300000 -35035;71257314;128742686;300000 -35036;71252426;128747574;300000 -35037;71247538;128752462;300000 -35038;71242651;128757349;300000 -35039;71237764;128762236;300000 -35040;71232877;128767123;300000 -35041;71227990;128772010;300000 -35042;71223104;128776896;300000 -35043;71218218;128781782;300000 -35044;71213332;128786668;300000 -35045;71208446;128791554;300000 -35046;71203561;128796439;300000 -35047;71198676;128801324;300000 -35048;71193791;128806209;300000 -35049;71188907;128811093;300000 -35050;71184023;128815977;300000 -35051;71179139;128820861;300000 -35052;71174255;128825745;300000 -35053;71169372;128830628;300000 -35054;71164489;128835511;300000 -35055;71159606;128840394;300000 -35056;71154724;128845276;300000 -35057;71149842;128850158;300000 -35058;71144960;128855040;300000 -35059;71140078;128859922;300000 -35060;71135197;128864803;300000 -35061;71130316;128869684;300000 -35062;71125435;128874565;300000 -35063;71120554;128879446;300000 -35064;71115674;128884326;300000 -35065;71110794;128889206;300000 -35066;71105915;128894085;300000 -35067;71101035;128898965;300000 -35068;71096156;128903844;300000 -35069;71091277;128908723;300000 -35070;71086399;128913601;300000 -35071;71081520;128918480;300000 -35072;71076642;128923358;300000 -35073;71071765;128928235;300000 -35074;71066887;128933113;300000 -35075;71062010;128937990;300000 -35076;71057133;128942867;300000 -35077;71052256;128947744;300000 -35078;71047380;128952620;300000 -35079;71042504;128957496;300000 -35080;71037628;128962372;300000 -35081;71032753;128967247;300000 -35082;71027878;128972122;300000 -35083;71023003;128976997;300000 -35084;71018128;128981872;300000 -35085;71013254;128986746;300000 -35086;71008379;128991621;300000 -35087;71003506;128996494;300000 -35088;70998632;129001368;300000 -35089;70993759;129006241;300000 -35090;70988886;129011114;300000 -35091;70984013;129015987;300000 -35092;70979141;129020859;300000 -35093;70974268;129025732;300000 -35094;70969396;129030604;300000 -35095;70964525;129035475;300000 -35096;70959654;129040346;300000 -35097;70954782;129045218;300000 -35098;70949912;129050088;300000 -35099;70945041;129054959;300000 -35100;70940171;129059829;300000 -35101;70935301;129064699;300000 -35102;70930431;129069569;300000 -35103;70925562;129074438;300000 -35104;70920693;129079307;300000 -35105;70915824;129084176;300000 -35106;70910955;129089045;300000 -35107;70906087;129093913;300000 -35108;70901219;129098781;300000 -35109;70896351;129103649;300000 -35110;70891484;129108516;300000 -35111;70886617;129113383;300000 -35112;70881750;129118250;300000 -35113;70876883;129123117;300000 -35114;70872017;129127983;300000 -35115;70867151;129132849;300000 -35116;70862285;129137715;300000 -35117;70857419;129142581;300000 -35118;70852554;129147446;300000 -35119;70847689;129152311;300000 -35120;70842825;129157175;300000 -35121;70837960;129162040;300000 -35122;70833096;129166904;300000 -35123;70828232;129171768;300000 -35124;70823369;129176631;300000 -35125;70818505;129181495;300000 -35126;70813642;129186358;300000 -35127;70808780;129191220;300000 -35128;70803917;129196083;300000 -35129;70799055;129200945;300000 -35130;70794193;129205807;300000 -35131;70789331;129210669;300000 -35132;70784470;129215530;300000 -35133;70779609;129220391;300000 -35134;70774748;129225252;300000 -35135;70769888;129230112;300000 -35136;70765027;129234973;300000 -35137;70760167;129239833;300000 -35138;70755308;129244692;300000 -35139;70750448;129249552;300000 -35140;70745589;129254411;300000 -35141;70740730;129259270;300000 -35142;70735872;129264128;300000 -35143;70731013;129268987;300000 -35144;70726155;129273845;300000 -35145;70721297;129278703;300000 -35146;70716440;129283560;300000 -35147;70711583;129288417;300000 -35148;70706726;129293274;300000 -35149;70701869;129298131;300000 -35150;70697013;129302987;300000 -35151;70692157;129307843;300000 -35152;70687301;129312699;300000 -35153;70682445;129317555;300000 -35154;70677590;129322410;300000 -35155;70672735;129327265;300000 -35156;70667880;129332120;300000 -35157;70663026;129336974;300000 -35158;70658172;129341828;300000 -35159;70653318;129346682;300000 -35160;70648464;129351536;300000 -35161;70643611;129356389;300000 -35162;70638758;129361242;300000 -35163;70633905;129366095;300000 -35164;70629052;129370948;300000 -35165;70624200;129375800;300000 -35166;70619348;129380652;300000 -35167;70614497;129385503;300000 -35168;70609645;129390355;300000 -35169;70604794;129395206;300000 -35170;70599943;129400057;300000 -35171;70595093;129404907;300000 -35172;70590242;129409758;300000 -35173;70585392;129414608;300000 -35174;70580542;129419458;300000 -35175;70575693;129424307;300000 -35176;70570844;129429156;300000 -35177;70565995;129434005;300000 -35178;70561146;129438854;300000 -35179;70556298;129443702;300000 -35180;70551450;129448550;300000 -35181;70546602;129453398;300000 -35182;70541754;129458246;300000 -35183;70536907;129463093;300000 -35184;70532060;129467940;300000 -35185;70527213;129472787;300000 -35186;70522367;129477633;300000 -35187;70517521;129482479;300000 -35188;70512675;129487325;300000 -35189;70507829;129492171;300000 -35190;70502984;129497016;300000 -35191;70498139;129501861;300000 -35192;70493294;129506706;300000 -35193;70488449;129511551;300000 -35194;70483605;129516395;300000 -35195;70478761;129521239;300000 -35196;70473917;129526083;300000 -35197;70469074;129530926;300000 -35198;70464231;129535769;300000 -35199;70459388;129540612;300000 -35200;70454545;129545455;300000 -35201;70449703;129550297;300000 -35202;70444861;129555139;300000 -35203;70440019;129559981;300000 -35204;70435178;129564822;300000 -35205;70430337;129569663;300000 -35206;70425496;129574504;300000 -35207;70420655;129579345;300000 -35208;70415815;129584185;300000 -35209;70410974;129589026;300000 -35210;70406135;129593865;300000 -35211;70401295;129598705;300000 -35212;70396456;129603544;300000 -35213;70391617;129608383;300000 -35214;70386778;129613222;300000 -35215;70381940;129618060;300000 -35216;70377101;129622899;300000 -35217;70372263;129627737;300000 -35218;70367426;129632574;300000 -35219;70362588;129637412;300000 -35220;70357751;129642249;300000 -35221;70352914;129647086;300000 -35222;70348078;129651922;300000 -35223;70343242;129656758;300000 -35224;70338406;129661594;300000 -35225;70333570;129666430;300000 -35226;70328734;129671266;300000 -35227;70323899;129676101;300000 -35228;70319064;129680936;300000 -35229;70314230;129685770;300000 -35230;70309395;129690605;300000 -35231;70304561;129695439;300000 -35232;70299728;129700272;300000 -35233;70294894;129705106;300000 -35234;70290061;129709939;300000 -35235;70285228;129714772;300000 -35236;70280395;129719605;300000 -35237;70275563;129724437;300000 -35238;70270730;129729270;300000 -35239;70265899;129734101;300000 -35240;70261067;129738933;300000 -35241;70256236;129743764;300000 -35242;70251405;129748595;300000 -35243;70246574;129753426;300000 -35244;70241743;129758257;300000 -35245;70236913;129763087;300000 -35246;70232083;129767917;300000 -35247;70227253;129772747;300000 -35248;70222424;129777576;300000 -35249;70217595;129782405;300000 -35250;70212766;129787234;300000 -35251;70207937;129792063;300000 -35252;70203109;129796891;300000 -35253;70198281;129801719;300000 -35254;70193453;129806547;300000 -35255;70188626;129811374;300000 -35256;70183799;129816201;300000 -35257;70178972;129821028;300000 -35258;70174145;129825855;300000 -35259;70169318;129830682;300000 -35260;70164492;129835508;300000 -35261;70159666;129840334;300000 -35262;70154841;129845159;300000 -35263;70150016;129849984;300000 -35264;70145191;129854809;300000 -35265;70140366;129859634;300000 -35266;70135541;129864459;300000 -35267;70130717;129869283;300000 -35268;70125893;129874107;300000 -35269;70121069;129878931;300000 -35270;70116246;129883754;300000 -35271;70111423;129888577;300000 -35272;70106600;129893400;300000 -35273;70101778;129898222;300000 -35274;70096955;129903045;300000 -35275;70092133;129907867;300000 -35276;70087311;129912689;300000 -35277;70082490;129917510;300000 -35278;70077669;129922331;300000 -35279;70072848;129927152;300000 -35280;70068027;129931973;300000 -35281;70063207;129936793;300000 -35282;70058387;129941613;300000 -35283;70053567;129946433;300000 -35284;70048747;129951253;300000 -35285;70043928;129956072;300000 -35286;70039109;129960891;300000 -35287;70034290;129965710;300000 -35288;70029472;129970528;300000 -35289;70024654;129975346;300000 -35290;70019836;129980164;300000 -35291;70015018;129984982;300000 -35292;70010201;129989799;300000 -35293;70005384;129994616;300000 -35294;70000567;129999433;300000 -35295;69995750;130004250;300000 -35296;69990934;130009066;300000 -35297;69986118;130013882;300000 -35298;69981302;130018698;300000 -35299;69976487;130023513;300000 -35300;69971671;130028329;300000 -35301;69966856;130033144;300000 -35302;69962042;130037958;300000 -35303;69957227;130042773;300000 -35304;69952413;130047587;300000 -35305;69947599;130052401;300000 -35306;69942786;130057214;300000 -35307;69937973;130062027;300000 -35308;69933160;130066840;300000 -35309;69928347;130071653;300000 -35310;69923534;130076466;300000 -35311;69918722;130081278;300000 -35312;69913910;130086090;300000 -35313;69909099;130090901;300000 -35314;69904287;130095713;300000 -35315;69899476;130100524;300000 -35316;69894665;130105335;300000 -35317;69889855;130110145;300000 -35318;69885044;130114956;300000 -35319;69880234;130119766;300000 -35320;69875425;130124575;300000 -35321;69870615;130129385;300000 -35322;69865806;130134194;300000 -35323;69860997;130139003;300000 -35324;69856188;130143812;300000 -35325;69851380;130148620;300000 -35326;69846572;130153428;300000 -35327;69841764;130158236;300000 -35328;69836957;130163043;300000 -35329;69832149;130167851;300000 -35330;69827342;130172658;300000 -35331;69822535;130177465;300000 -35332;69817729;130182271;300000 -35333;69812923;130187077;300000 -35334;69808117;130191883;300000 -35335;69803311;130196689;300000 -35336;69798506;130201494;300000 -35337;69793701;130206299;300000 -35338;69788896;130211104;300000 -35339;69784091;130215909;300000 -35340;69779287;130220713;300000 -35341;69774483;130225517;300000 -35342;69769679;130230321;300000 -35343;69764876;130235124;300000 -35344;69760072;130239928;300000 -35345;69755269;130244731;300000 -35346;69750467;130249533;300000 -35347;69745664;130254336;300000 -35348;69740862;130259138;300000 -35349;69736060;130263940;300000 -35350;69731259;130268741;300000 -35351;69726458;130273542;300000 -35352;69721656;130278344;300000 -35353;69716856;130283144;300000 -35354;69712055;130287945;300000 -35355;69707255;130292745;300000 -35356;69702455;130297545;300000 -35357;69697655;130302345;300000 -35358;69692856;130307144;300000 -35359;69688057;130311943;300000 -35360;69683258;130316742;300000 -35361;69678459;130321541;300000 -35362;69673661;130326339;300000 -35363;69668863;130331137;300000 -35364;69664065;130335935;300000 -35365;69659268;130340732;300000 -35366;69654470;130345530;300000 -35367;69649673;130350327;300000 -35368;69644877;130355123;300000 -35369;69640080;130359920;300000 -35370;69635284;130364716;300000 -35371;69630488;130369512;300000 -35372;69625693;130374307;300000 -35373;69620897;130379103;300000 -35374;69616102;130383898;300000 -35375;69611307;130388693;300000 -35376;69606513;130393487;300000 -35377;69601719;130398281;300000 -35378;69596925;130403075;300000 -35379;69592131;130407869;300000 -35380;69587337;130412663;300000 -35381;69582544;130417456;300000 -35382;69577751;130422249;300000 -35383;69572959;130427041;300000 -35384;69568166;130431834;300000 -35385;69563374;130436626;300000 -35386;69558582;130441418;300000 -35387;69553791;130446209;300000 -35388;69549000;130451000;300000 -35389;69544209;130455791;300000 -35390;69539418;130460582;300000 -35391;69534627;130465373;300000 -35392;69529837;130470163;300000 -35393;69525047;130474953;300000 -35394;69520258;130479742;300000 -35395;69515468;130484532;300000 -35396;69510679;130489321;300000 -35397;69505890;130494110;300000 -35398;69501102;130498898;300000 -35399;69496313;130503687;300000 -35400;69491525;130508475;300000 -35401;69486738;130513262;300000 -35402;69481950;130518050;300000 -35403;69477163;130522837;300000 -35404;69472376;130527624;300000 -35405;69467589;130532411;300000 -35406;69462803;130537197;300000 -35407;69458017;130541983;300000 -35408;69453231;130546769;300000 -35409;69448445;130551555;300000 -35410;69443660;130556340;300000 -35411;69438875;130561125;300000 -35412;69434090;130565910;300000 -35413;69429306;130570694;300000 -35414;69424521;130575479;300000 -35415;69419737;130580263;300000 -35416;69414954;130585046;300000 -35417;69410170;130589830;300000 -35418;69405387;130594613;300000 -35419;69400604;130599396;300000 -35420;69395822;130604178;300000 -35421;69391039;130608961;300000 -35422;69386257;130613743;300000 -35423;69381475;130618525;300000 -35424;69376694;130623306;300000 -35425;69371912;130628088;300000 -35426;69367131;130632869;300000 -35427;69362351;130637649;300000 -35428;69357570;130642430;300000 -35429;69352790;130647210;300000 -35430;69348010;130651990;300000 -35431;69343231;130656769;300000 -35432;69338451;130661549;300000 -35433;69333672;130666328;300000 -35434;69328893;130671107;300000 -35435;69324115;130675885;300000 -35436;69319336;130680664;300000 -35437;69314558;130685442;300000 -35438;69309780;130690220;300000 -35439;69305003;130694997;300000 -35440;69300226;130699774;300000 -35441;69295449;130704551;300000 -35442;69290672;130709328;300000 -35443;69285896;130714104;300000 -35444;69281120;130718880;300000 -35445;69276344;130723656;300000 -35446;69271568;130728432;300000 -35447;69266793;130733207;300000 -35448;69262018;130737982;300000 -35449;69257243;130742757;300000 -35450;69252468;130747532;300000 -35451;69247694;130752306;300000 -35452;69242920;130757080;300000 -35453;69238146;130761854;300000 -35454;69233373;130766627;300000 -35455;69228600;130771400;300000 -35456;69223827;130776173;300000 -35457;69219054;130780946;300000 -35458;69214282;130785718;300000 -35459;69209510;130790490;300000 -35460;69204738;130795262;300000 -35461;69199966;130800034;300000 -35462;69195195;130804805;300000 -35463;69190424;130809576;300000 -35464;69185653;130814347;300000 -35465;69180883;130819117;300000 -35466;69176112;130823888;300000 -35467;69171342;130828658;300000 -35468;69166573;130833427;300000 -35469;69161803;130838197;300000 -35470;69157034;130842966;300000 -35471;69152265;130847735;300000 -35472;69147497;130852503;300000 -35473;69142728;130857272;300000 -35474;69137960;130862040;300000 -35475;69133192;130866808;300000 -35476;69128425;130871575;300000 -35477;69123658;130876342;300000 -35478;69118891;130881109;300000 -35479;69114124;130885876;300000 -35480;69109357;130890643;300000 -35481;69104591;130895409;300000 -35482;69099825;130900175;300000 -35483;69095060;130904940;300000 -35484;69090294;130909706;300000 -35485;69085529;130914471;300000 -35486;69080764;130919236;300000 -35487;69076000;130924000;300000 -35488;69071235;130928765;300000 -35489;69066471;130933529;300000 -35490;69061708;130938292;300000 -35491;69056944;130943056;300000 -35492;69052181;130947819;300000 -35493;69047418;130952582;300000 -35494;69042655;130957345;300000 -35495;69037893;130962107;300000 -35496;69033130;130966870;300000 -35497;69028369;130971631;300000 -35498;69023607;130976393;300000 -35499;69018846;130981154;300000 -35500;69014085;130985915;300000 -35501;69009324;130990676;300000 -35502;69004563;130995437;300000 -35503;68999803;131000197;300000 -35504;68995043;131004957;300000 -35505;68990283;131009717;300000 -35506;68985524;131014476;300000 -35507;68980764;131019236;300000 -35508;68976005;131023995;300000 -35509;68971247;131028753;300000 -35510;68966488;131033512;300000 -35511;68961730;131038270;300000 -35512;68956972;131043028;300000 -35513;68952215;131047785;300000 -35514;68947457;131052543;300000 -35515;68942700;131057300;300000 -35516;68937943;131062057;300000 -35517;68933187;131066813;300000 -35518;68928431;131071569;300000 -35519;68923675;131076325;300000 -35520;68918919;131081081;300000 -35521;68914163;131085837;300000 -35522;68909408;131090592;300000 -35523;68904653;131095347;300000 -35524;68899899;131100101;300000 -35525;68895144;131104856;300000 -35526;68890390;131109610;300000 -35527;68885636;131114364;300000 -35528;68880883;131119117;300000 -35529;68876129;131123871;300000 -35530;68871376;131128624;300000 -35531;68866624;131133376;300000 -35532;68861871;131138129;300000 -35533;68857119;131142881;300000 -35534;68852367;131147633;300000 -35535;68847615;131152385;300000 -35536;68842864;131157136;300000 -35537;68838112;131161888;300000 -35538;68833361;131166639;300000 -35539;68828611;131171389;300000 -35540;68823860;131176140;300000 -35541;68819110;131180890;300000 -35542;68814360;131185640;300000 -35543;68809611;131190389;300000 -35544;68804862;131195138;300000 -35545;68800113;131199887;300000 -35546;68795364;131204636;300000 -35547;68790615;131209385;300000 -35548;68785867;131214133;300000 -35549;68781119;131218881;300000 -35550;68776371;131223629;300000 -35551;68771624;131228376;300000 -35552;68766877;131233123;300000 -35553;68762130;131237870;300000 -35554;68757383;131242617;300000 -35555;68752637;131247363;300000 -35556;68747891;131252109;300000 -35557;68743145;131256855;300000 -35558;68738399;131261601;300000 -35559;68733654;131266346;300000 -35560;68728909;131271091;300000 -35561;68724164;131275836;300000 -35562;68719420;131280580;300000 -35563;68714675;131285325;300000 -35564;68709931;131290069;300000 -35565;68705188;131294812;300000 -35566;68700444;131299556;300000 -35567;68695701;131304299;300000 -35568;68690958;131309042;300000 -35569;68686216;131313784;300000 -35570;68681473;131318527;300000 -35571;68676731;131323269;300000 -35572;68671989;131328011;300000 -35573;68667248;131332752;300000 -35574;68662506;131337494;300000 -35575;68657765;131342235;300000 -35576;68653025;131346975;300000 -35577;68648284;131351716;300000 -35578;68643544;131356456;300000 -35579;68638804;131361196;300000 -35580;68634064;131365936;300000 -35581;68629325;131370675;300000 -35582;68624585;131375415;300000 -35583;68619847;131380153;300000 -35584;68615108;131384892;300000 -35585;68610370;131389630;300000 -35586;68605631;131394369;300000 -35587;68600894;131399106;300000 -35588;68596156;131403844;300000 -35589;68591419;131408581;300000 -35590;68586682;131413318;300000 -35591;68581945;131418055;300000 -35592;68577208;131422792;300000 -35593;68572472;131427528;300000 -35594;68567736;131432264;300000 -35595;68563000;131437000;300000 -35596;68558265;131441735;300000 -35597;68553530;131446470;300000 -35598;68548795;131451205;300000 -35599;68544060;131455940;300000 -35600;68539326;131460674;300000 -35601;68534592;131465408;300000 -35602;68529858;131470142;300000 -35603;68525124;131474876;300000 -35604;68520391;131479609;300000 -35605;68515658;131484342;300000 -35606;68510925;131489075;300000 -35607;68506193;131493807;300000 -35608;68501460;131498540;300000 -35609;68496728;131503272;300000 -35610;68491997;131508003;300000 -35611;68487265;131512735;300000 -35612;68482534;131517466;300000 -35613;68477803;131522197;300000 -35614;68473072;131526928;300000 -35615;68468342;131531658;300000 -35616;68463612;131536388;300000 -35617;68458882;131541118;300000 -35618;68454152;131545848;300000 -35619;68449423;131550577;300000 -35620;68444694;131555306;300000 -35621;68439965;131560035;300000 -35622;68435237;131564763;300000 -35623;68430508;131569492;300000 -35624;68425780;131574220;300000 -35625;68421053;131578947;300000 -35626;68416325;131583675;300000 -35627;68411598;131588402;300000 -35628;68406871;131593129;300000 -35629;68402144;131597856;300000 -35630;68397418;131602582;300000 -35631;68392692;131607308;300000 -35632;68387966;131612034;300000 -35633;68383240;131616760;300000 -35634;68378515;131621485;300000 -35635;68373790;131626210;300000 -35636;68369065;131630935;300000 -35637;68364340;131635660;300000 -35638;68359616;131640384;300000 -35639;68354892;131645108;300000 -35640;68350168;131649832;300000 -35641;68345445;131654555;300000 -35642;68340722;131659278;300000 -35643;68335999;131664001;300000 -35644;68331276;131668724;300000 -35645;68326554;131673446;300000 -35646;68321831;131678169;300000 -35647;68317109;131682891;300000 -35648;68312388;131687612;300000 -35649;68307666;131692334;300000 -35650;68302945;131697055;300000 -35651;68298224;131701776;300000 -35652;68293504;131706496;300000 -35653;68288784;131711216;300000 -35654;68284063;131715937;300000 -35655;68279344;131720656;300000 -35656;68274624;131725376;300000 -35657;68269905;131730095;300000 -35658;68265186;131734814;300000 -35659;68260467;131739533;300000 -35660;68255749;131744251;300000 -35661;68251031;131748969;300000 -35662;68246313;131753687;300000 -35663;68241595;131758405;300000 -35664;68236878;131763122;300000 -35665;68232160;131767840;300000 -35666;68227444;131772556;300000 -35667;68222727;131777273;300000 -35668;68218011;131781989;300000 -35669;68213294;131786706;300000 -35670;68208579;131791421;300000 -35671;68203863;131796137;300000 -35672;68199148;131800852;300000 -35673;68194433;131805567;300000 -35674;68189718;131810282;300000 -35675;68185004;131814996;300000 -35676;68180289;131819711;300000 -35677;68175575;131824425;300000 -35678;68170862;131829138;300000 -35679;68166148;131833852;300000 -35680;68161435;131838565;300000 -35681;68156722;131843278;300000 -35682;68152009;131847991;300000 -35683;68147297;131852703;300000 -35684;68142585;131857415;300000 -35685;68137873;131862127;300000 -35686;68133161;131866839;300000 -35687;68128450;131871550;300000 -35688;68123739;131876261;300000 -35689;68119028;131880972;300000 -35690;68114318;131885682;300000 -35691;68109607;131890393;300000 -35692;68104897;131895103;300000 -35693;68100188;131899812;300000 -35694;68095478;131904522;300000 -35695;68090769;131909231;300000 -35696;68086060;131913940;300000 -35697;68081351;131918649;300000 -35698;68076643;131923357;300000 -35699;68071935;131928065;300000 -35700;68067227;131932773;300000 -35701;68062519;131937481;300000 -35702;68057812;131942188;300000 -35703;68053105;131946895;300000 -35704;68048398;131951602;300000 -35705;68043691;131956309;300000 -35706;68038985;131961015;300000 -35707;68034279;131965721;300000 -35708;68029573;131970427;300000 -35709;68024868;131975132;300000 -35710;68020162;131979838;300000 -35711;68015457;131984543;300000 -35712;68010753;131989247;300000 -35713;68006048;131993952;300000 -35714;68001344;131998656;300000 -35715;67996640;132003360;300000 -35716;67991936;132008064;300000 -35717;67987233;132012767;300000 -35718;67982530;132017470;300000 -35719;67977827;132022173;300000 -35720;67973124;132026876;300000 -35721;67968422;132031578;300000 -35722;67963720;132036280;300000 -35723;67959018;132040982;300000 -35724;67954316;132045684;300000 -35725;67949615;132050385;300000 -35726;67944914;132055086;300000 -35727;67940213;132059787;300000 -35728;67935513;132064487;300000 -35729;67930813;132069187;300000 -35730;67926113;132073887;300000 -35731;67921413;132078587;300000 -35732;67916713;132083287;300000 -35733;67912014;132087986;300000 -35734;67907315;132092685;300000 -35735;67902616;132097384;300000 -35736;67897918;132102082;300000 -35737;67893220;132106780;300000 -35738;67888522;132111478;300000 -35739;67883824;132116176;300000 -35740;67879127;132120873;300000 -35741;67874430;132125570;300000 -35742;67869733;132130267;300000 -35743;67865037;132134963;300000 -35744;67860340;132139660;300000 -35745;67855644;132144356;300000 -35746;67850948;132149052;300000 -35747;67846253;132153747;300000 -35748;67841558;132158442;300000 -35749;67836863;132163137;300000 -35750;67832168;132167832;300000 -35751;67827473;132172527;300000 -35752;67822779;132177221;300000 -35753;67818085;132181915;300000 -35754;67813392;132186608;300000 -35755;67808698;132191302;300000 -35756;67804005;132195995;300000 -35757;67799312;132200688;300000 -35758;67794619;132205381;300000 -35759;67789927;132210073;300000 -35760;67785235;132214765;300000 -35761;67780543;132219457;300000 -35762;67775851;132224149;300000 -35763;67771160;132228840;300000 -35764;67766469;132233531;300000 -35765;67761778;132238222;300000 -35766;67757088;132242912;300000 -35767;67752397;132247603;300000 -35768;67747707;132252293;300000 -35769;67743018;132256982;300000 -35770;67738328;132261672;300000 -35771;67733639;132266361;300000 -35772;67728950;132271050;300000 -35773;67724261;132275739;300000 -35774;67719573;132280427;300000 -35775;67714885;132285115;300000 -35776;67710197;132289803;300000 -35777;67705509;132294491;300000 -35778;67700822;132299178;300000 -35779;67696135;132303865;300000 -35780;67691448;132308552;300000 -35781;67686761;132313239;300000 -35782;67682075;132317925;300000 -35783;67677389;132322611;300000 -35784;67672703;132327297;300000 -35785;67668017;132331983;300000 -35786;67663332;132336668;300000 -35787;67658647;132341353;300000 -35788;67653962;132346038;300000 -35789;67649278;132350722;300000 -35790;67644593;132355407;300000 -35791;67639909;132360091;300000 -35792;67635226;132364774;300000 -35793;67630542;132369458;300000 -35794;67625859;132374141;300000 -35795;67621176;132378824;300000 -35796;67616493;132383507;300000 -35797;67611811;132388189;300000 -35798;67607129;132392871;300000 -35799;67602447;132397553;300000 -35800;67597765;132402235;300000 -35801;67593084;132406916;300000 -35802;67588403;132411597;300000 -35803;67583722;132416278;300000 -35804;67579041;132420959;300000 -35805;67574361;132425639;300000 -35806;67569681;132430319;300000 -35807;67565001;132434999;300000 -35808;67560322;132439678;300000 -35809;67555642;132444358;300000 -35810;67550963;132449037;300000 -35811;67546285;132453715;300000 -35812;67541606;132458394;300000 -35813;67536928;132463072;300000 -35814;67532250;132467750;300000 -35815;67527572;132472428;300000 -35816;67522895;132477105;300000 -35817;67518218;132481782;300000 -35818;67513541;132486459;300000 -35819;67508864;132491136;300000 -35820;67504188;132495812;300000 -35821;67499511;132500489;300000 -35822;67494836;132505164;300000 -35823;67490160;132509840;300000 -35824;67485485;132514515;300000 -35825;67480809;132519191;300000 -35826;67476135;132523865;300000 -35827;67471460;132528540;300000 -35828;67466786;132533214;300000 -35829;67462112;132537888;300000 -35830;67457438;132542562;300000 -35831;67452764;132547236;300000 -35832;67448091;132551909;300000 -35833;67443418;132556582;300000 -35834;67438745;132561255;300000 -35835;67434073;132565927;300000 -35836;67429401;132570599;300000 -35837;67424729;132575271;300000 -35838;67420057;132579943;300000 -35839;67415385;132584615;300000 -35840;67410714;132589286;300000 -35841;67406043;132593957;300000 -35842;67401373;132598627;300000 -35843;67396702;132603298;300000 -35844;67392032;132607968;300000 -35845;67387362;132612638;300000 -35846;67382693;132617307;300000 -35847;67378023;132621977;300000 -35848;67373354;132626646;300000 -35849;67368685;132631315;300000 -35850;67364017;132635983;300000 -35851;67359348;132640652;300000 -35852;67354680;132645320;300000 -35853;67350013;132649987;300000 -35854;67345345;132654655;300000 -35855;67340678;132659322;300000 -35856;67336011;132663989;300000 -35857;67331344;132668656;300000 -35858;67326677;132673323;300000 -35859;67322011;132677989;300000 -35860;67317345;132682655;300000 -35861;67312680;132687320;300000 -35862;67308014;132691986;300000 -35863;67303349;132696651;300000 -35864;67298684;132701316;300000 -35865;67294019;132705981;300000 -35866;67289355;132710645;300000 -35867;67284691;132715309;300000 -35868;67280027;132719973;300000 -35869;67275363;132724637;300000 -35870;67270700;132729300;300000 -35871;67266037;132733963;300000 -35872;67261374;132738626;300000 -35873;67256711;132743289;300000 -35874;67252049;132747951;300000 -35875;67247387;132752613;300000 -35876;67242725;132757275;300000 -35877;67238063;132761937;300000 -35878;67233402;132766598;300000 -35879;67228741;132771259;300000 -35880;67224080;132775920;300000 -35881;67219420;132780580;300000 -35882;67214759;132785241;300000 -35883;67210099;132789901;300000 -35884;67205440;132794560;300000 -35885;67200780;132799220;300000 -35886;67196121;132803879;300000 -35887;67191462;132808538;300000 -35888;67186803;132813197;300000 -35889;67182145;132817855;300000 -35890;67177487;132822513;300000 -35891;67172829;132827171;300000 -35892;67168171;132831829;300000 -35893;67163514;132836486;300000 -35894;67158857;132841143;300000 -35895;67154200;132845800;300000 -35896;67149543;132850457;300000 -35897;67144887;132855113;300000 -35898;67140231;132859769;300000 -35899;67135575;132864425;300000 -35900;67130919;132869081;300000 -35901;67126264;132873736;300000 -35902;67121609;132878391;300000 -35903;67116954;132883046;300000 -35904;67112299;132887701;300000 -35905;67107645;132892355;300000 -35906;67102991;132897009;300000 -35907;67098337;132901663;300000 -35908;67093684;132906316;300000 -35909;67089031;132910969;300000 -35910;67084378;132915622;300000 -35911;67079725;132920275;300000 -35912;67075072;132924928;300000 -35913;67070420;132929580;300000 -35914;67065768;132934232;300000 -35915;67061117;132938883;300000 -35916;67056465;132943535;300000 -35917;67051814;132948186;300000 -35918;67047163;132952837;300000 -35919;67042512;132957488;300000 -35920;67037862;132962138;300000 -35921;67033212;132966788;300000 -35922;67028562;132971438;300000 -35923;67023912;132976088;300000 -35924;67019263;132980737;300000 -35925;67014614;132985386;300000 -35926;67009965;132990035;300000 -35927;67005316;132994684;300000 -35928;67000668;132999332;300000 -35929;66996020;133003980;300000 -35930;66991372;133008628;300000 -35931;66986725;133013275;300000 -35932;66982077;133017923;300000 -35933;66977430;133022570;300000 -35934;66972783;133027217;300000 -35935;66968137;133031863;300000 -35936;66963491;133036509;300000 -35937;66958845;133041155;300000 -35938;66954199;133045801;300000 -35939;66949553;133050447;300000 -35940;66944908;133055092;300000 -35941;66940263;133059737;300000 -35942;66935618;133064382;300000 -35943;66930974;133069026;300000 -35944;66926330;133073670;300000 -35945;66921686;133078314;300000 -35946;66917042;133082958;300000 -35947;66912399;133087601;300000 -35948;66907756;133092244;300000 -35949;66903113;133096887;300000 -35950;66898470;133101530;300000 -35951;66893828;133106172;300000 -35952;66889186;133110814;300000 -35953;66884544;133115456;300000 -35954;66879902;133120098;300000 -35955;66875261;133124739;300000 -35956;66870620;133129380;300000 -35957;66865979;133134021;300000 -35958;66861338;133138662;300000 -35959;66856698;133143302;300000 -35960;66852058;133147942;300000 -35961;66847418;133152582;300000 -35962;66842778;133157222;300000 -35963;66838139;133161861;300000 -35964;66833500;133166500;300000 -35965;66828861;133171139;300000 -35966;66824223;133175777;300000 -35967;66819585;133180415;300000 -35968;66814947;133185053;300000 -35969;66810309;133189691;300000 -35970;66805671;133194329;300000 -35971;66801034;133198966;300000 -35972;66796397;133203603;300000 -35973;66791760;133208240;300000 -35974;66787124;133212876;300000 -35975;66782488;133217512;300000 -35976;66777852;133222148;300000 -35977;66773216;133226784;300000 -35978;66768581;133231419;300000 -35979;66763946;133236054;300000 -35980;66759311;133240689;300000 -35981;66754676;133245324;300000 -35982;66750042;133249958;300000 -35983;66745408;133254592;300000 -35984;66740774;133259226;300000 -35985;66736140;133263860;300000 -35986;66731507;133268493;300000 -35987;66726874;133273126;300000 -35988;66722241;133277759;300000 -35989;66717608;133282392;300000 -35990;66712976;133287024;300000 -35991;66708344;133291656;300000 -35992;66703712;133296288;300000 -35993;66699080;133300920;300000 -35994;66694449;133305551;300000 -35995;66689818;133310182;300000 -35996;66685187;133314813;300000 -35997;66680557;133319443;300000 -35998;66675926;133324074;300000 -35999;66671296;133328704;300000 -36000;66666667;133333333;300000 -36001;66662037;133337963;300000 -36002;66657408;133342592;300000 -36003;66652779;133347221;300000 -36004;66648150;133351850;300000 -36005;66643522;133356478;300000 -36006;66638894;133361106;300000 -36007;66634266;133365734;300000 -36008;66629638;133370362;300000 -36009;66625010;133374990;300000 -36010;66620383;133379617;300000 -36011;66615756;133384244;300000 -36012;66611130;133388870;300000 -36013;66606503;133393497;300000 -36014;66601877;133398123;300000 -36015;66597251;133402749;300000 -36016;66592625;133407375;300000 -36017;66588000;133412000;300000 -36018;66583375;133416625;300000 -36019;66578750;133421250;300000 -36020;66574125;133425875;300000 -36021;66569501;133430499;300000 -36022;66564877;133435123;300000 -36023;66560253;133439747;300000 -36024;66555630;133444370;300000 -36025;66551006;133448994;300000 -36026;66546383;133453617;300000 -36027;66541760;133458240;300000 -36028;66537138;133462862;300000 -36029;66532515;133467485;300000 -36030;66527893;133472107;300000 -36031;66523272;133476728;300000 -36032;66518650;133481350;300000 -36033;66514029;133485971;300000 -36034;66509408;133490592;300000 -36035;66504787;133495213;300000 -36036;66500167;133499833;300000 -36037;66495546;133504454;300000 -36038;66490926;133509074;300000 -36039;66486307;133513693;300000 -36040;66481687;133518313;300000 -36041;66477068;133522932;300000 -36042;66472449;133527551;300000 -36043;66467830;133532170;300000 -36044;66463212;133536788;300000 -36045;66458593;133541407;300000 -36046;66453975;133546025;300000 -36047;66449358;133550642;300000 -36048;66444740;133555260;300000 -36049;66440123;133559877;300000 -36050;66435506;133564494;300000 -36051;66430890;133569110;300000 -36052;66426273;133573727;300000 -36053;66421657;133578343;300000 -36054;66417041;133582959;300000 -36055;66412425;133587575;300000 -36056;66407810;133592190;300000 -36057;66403195;133596805;300000 -36058;66398580;133601420;300000 -36059;66393965;133606035;300000 -36060;66389351;133610649;300000 -36061;66384737;133615263;300000 -36062;66380123;133619877;300000 -36063;66375510;133624490;300000 -36064;66370896;133629104;300000 -36065;66366283;133633717;300000 -36066;66361670;133638330;300000 -36067;66357058;133642942;300000 -36068;66352445;133647555;300000 -36069;66347833;133652167;300000 -36070;66343222;133656778;300000 -36071;66338610;133661390;300000 -36072;66333999;133666001;300000 -36073;66329388;133670612;300000 -36074;66324777;133675223;300000 -36075;66320166;133679834;300000 -36076;66315556;133684444;300000 -36077;66310946;133689054;300000 -36078;66306336;133693664;300000 -36079;66301727;133698273;300000 -36080;66297118;133702882;300000 -36081;66292509;133707491;300000 -36082;66287900;133712100;300000 -36083;66283291;133716709;300000 -36084;66278683;133721317;300000 -36085;66274075;133725925;300000 -36086;66269467;133730533;300000 -36087;66264860;133735140;300000 -36088;66260253;133739747;300000 -36089;66255646;133744354;300000 -36090;66251039;133748961;300000 -36091;66246433;133753567;300000 -36092;66241826;133758174;300000 -36093;66237221;133762779;300000 -36094;66232615;133767385;300000 -36095;66228009;133771991;300000 -36096;66223404;133776596;300000 -36097;66218799;133781201;300000 -36098;66214195;133785805;300000 -36099;66209590;133790410;300000 -36100;66204986;133795014;300000 -36101;66200382;133799618;300000 -36102;66195779;133804221;300000 -36103;66191175;133808825;300000 -36104;66186572;133813428;300000 -36105;66181969;133818031;300000 -36106;66177367;133822633;300000 -36107;66172764;133827236;300000 -36108;66168162;133831838;300000 -36109;66163560;133836440;300000 -36110;66158959;133841041;300000 -36111;66154357;133845643;300000 -36112;66149756;133850244;300000 -36113;66145155;133854845;300000 -36114;66140555;133859445;300000 -36115;66135955;133864045;300000 -36116;66131355;133868645;300000 -36117;66126755;133873245;300000 -36118;66122155;133877845;300000 -36119;66117556;133882444;300000 -36120;66112957;133887043;300000 -36121;66108358;133891642;300000 -36122;66103759;133896241;300000 -36123;66099161;133900839;300000 -36124;66094563;133905437;300000 -36125;66089965;133910035;300000 -36126;66085368;133914632;300000 -36127;66080771;133919229;300000 -36128;66076174;133923826;300000 -36129;66071577;133928423;300000 -36130;66066980;133933020;300000 -36131;66062384;133937616;300000 -36132;66057788;133942212;300000 -36133;66053192;133946808;300000 -36134;66048597;133951403;300000 -36135;66044002;133955998;300000 -36136;66039407;133960593;300000 -36137;66034812;133965188;300000 -36138;66030217;133969783;300000 -36139;66025623;133974377;300000 -36140;66021029;133978971;300000 -36141;66016436;133983564;300000 -36142;66011842;133988158;300000 -36143;66007249;133992751;300000 -36144;66002656;133997344;300000 -36145;65998063;134001937;300000 -36146;65993471;134006529;300000 -36147;65988879;134011121;300000 -36148;65984287;134015713;300000 -36149;65979695;134020305;300000 -36150;65975104;134024896;300000 -36151;65970513;134029487;300000 -36152;65965922;134034078;300000 -36153;65961331;134038669;300000 -36154;65956741;134043259;300000 -36155;65952150;134047850;300000 -36156;65947561;134052439;300000 -36157;65942971;134057029;300000 -36158;65938382;134061618;300000 -36159;65933792;134066208;300000 -36160;65929204;134070796;300000 -36161;65924615;134075385;300000 -36162;65920027;134079973;300000 -36163;65915438;134084562;300000 -36164;65910851;134089149;300000 -36165;65906263;134093737;300000 -36166;65901676;134098324;300000 -36167;65897089;134102911;300000 -36168;65892502;134107498;300000 -36169;65887915;134112085;300000 -36170;65883329;134116671;300000 -36171;65878743;134121257;300000 -36172;65874157;134125843;300000 -36173;65869571;134130429;300000 -36174;65864986;134135014;300000 -36175;65860401;134139599;300000 -36176;65855816;134144184;300000 -36177;65851231;134148769;300000 -36178;65846647;134153353;300000 -36179;65842063;134157937;300000 -36180;65837479;134162521;300000 -36181;65832896;134167104;300000 -36182;65828312;134171688;300000 -36183;65823729;134176271;300000 -36184;65819147;134180853;300000 -36185;65814564;134185436;300000 -36186;65809982;134190018;300000 -36187;65805400;134194600;300000 -36188;65800818;134199182;300000 -36189;65796236;134203764;300000 -36190;65791655;134208345;300000 -36191;65787074;134212926;300000 -36192;65782493;134217507;300000 -36193;65777913;134222087;300000 -36194;65773333;134226667;300000 -36195;65768753;134231247;300000 -36196;65764173;134235827;300000 -36197;65759593;134240407;300000 -36198;65755014;134244986;300000 -36199;65750435;134249565;300000 -36200;65745856;134254144;300000 -36201;65741278;134258722;300000 -36202;65736700;134263300;300000 -36203;65732122;134267878;300000 -36204;65727544;134272456;300000 -36205;65722966;134277034;300000 -36206;65718389;134281611;300000 -36207;65713812;134286188;300000 -36208;65709236;134290764;300000 -36209;65704659;134295341;300000 -36210;65700083;134299917;300000 -36211;65695507;134304493;300000 -36212;65690931;134309069;300000 -36213;65686356;134313644;300000 -36214;65681781;134318219;300000 -36215;65677206;134322794;300000 -36216;65672631;134327369;300000 -36217;65668056;134331944;300000 -36218;65663482;134336518;300000 -36219;65658908;134341092;300000 -36220;65654335;134345665;300000 -36221;65649761;134350239;300000 -36222;65645188;134354812;300000 -36223;65640615;134359385;300000 -36224;65636042;134363958;300000 -36225;65631470;134368530;300000 -36226;65626898;134373102;300000 -36227;65622326;134377674;300000 -36228;65617754;134382246;300000 -36229;65613183;134386817;300000 -36230;65608612;134391388;300000 -36231;65604041;134395959;300000 -36232;65599470;134400530;300000 -36233;65594900;134405100;300000 -36234;65590330;134409670;300000 -36235;65585760;134414240;300000 -36236;65581190;134418810;300000 -36237;65576621;134423379;300000 -36238;65572051;134427949;300000 -36239;65567483;134432517;300000 -36240;65562914;134437086;300000 -36241;65558346;134441654;300000 -36242;65553777;134446223;300000 -36243;65549210;134450790;300000 -36244;65544642;134455358;300000 -36245;65540074;134459926;300000 -36246;65535507;134464493;300000 -36247;65530940;134469060;300000 -36248;65526374;134473626;300000 -36249;65521807;134478193;300000 -36250;65517241;134482759;300000 -36251;65512676;134487324;300000 -36252;65508110;134491890;300000 -36253;65503545;134496455;300000 -36254;65498979;134501021;300000 -36255;65494415;134505585;300000 -36256;65489850;134510150;300000 -36257;65485286;134514714;300000 -36258;65480721;134519279;300000 -36259;65476158;134523842;300000 -36260;65471594;134528406;300000 -36261;65467031;134532969;300000 -36262;65462468;134537532;300000 -36263;65457905;134542095;300000 -36264;65453342;134546658;300000 -36265;65448780;134551220;300000 -36266;65444218;134555782;300000 -36267;65439656;134560344;300000 -36268;65435094;134564906;300000 -36269;65430533;134569467;300000 -36270;65425972;134574028;300000 -36271;65421411;134578589;300000 -36272;65416850;134583150;300000 -36273;65412290;134587710;300000 -36274;65407730;134592270;300000 -36275;65403170;134596830;300000 -36276;65398611;134601389;300000 -36277;65394051;134605949;300000 -36278;65389492;134610508;300000 -36279;65384933;134615067;300000 -36280;65380375;134619625;300000 -36281;65375817;134624183;300000 -36282;65371258;134628742;300000 -36283;65366701;134633299;300000 -36284;65362143;134637857;300000 -36285;65357586;134642414;300000 -36286;65353029;134646971;300000 -36287;65348472;134651528;300000 -36288;65343915;134656085;300000 -36289;65339359;134660641;300000 -36290;65334803;134665197;300000 -36291;65330247;134669753;300000 -36292;65325692;134674308;300000 -36293;65321136;134678864;300000 -36294;65316581;134683419;300000 -36295;65312026;134687974;300000 -36296;65307472;134692528;300000 -36297;65302918;134697082;300000 -36298;65298364;134701636;300000 -36299;65293810;134706190;300000 -36300;65289256;134710744;300000 -36301;65284703;134715297;300000 -36302;65280150;134719850;300000 -36303;65275597;134724403;300000 -36304;65271045;134728955;300000 -36305;65266492;134733508;300000 -36306;65261940;134738060;300000 -36307;65257388;134742612;300000 -36308;65252837;134747163;300000 -36309;65248286;134751714;300000 -36310;65243735;134756265;300000 -36311;65239184;134760816;300000 -36312;65234633;134765367;300000 -36313;65230083;134769917;300000 -36314;65225533;134774467;300000 -36315;65220983;134779017;300000 -36316;65216434;134783566;300000 -36317;65211884;134788116;300000 -36318;65207335;134792665;300000 -36319;65202786;134797214;300000 -36320;65198238;134801762;300000 -36321;65193690;134806310;300000 -36322;65189142;134810858;300000 -36323;65184594;134815406;300000 -36324;65180046;134819954;300000 -36325;65175499;134824501;300000 -36326;65170952;134829048;300000 -36327;65166405;134833595;300000 -36328;65161859;134838141;300000 -36329;65157312;134842688;300000 -36330;65152766;134847234;300000 -36331;65148221;134851779;300000 -36332;65143675;134856325;300000 -36333;65139130;134860870;300000 -36334;65134585;134865415;300000 -36335;65130040;134869960;300000 -36336;65125495;134874505;300000 -36337;65120951;134879049;300000 -36338;65116407;134883593;300000 -36339;65111863;134888137;300000 -36340;65107320;134892680;300000 -36341;65102776;134897224;300000 -36342;65098233;134901767;300000 -36343;65093691;134906309;300000 -36344;65089148;134910852;300000 -36345;65084606;134915394;300000 -36346;65080064;134919936;300000 -36347;65075522;134924478;300000 -36348;65070981;134929019;300000 -36349;65066439;134933561;300000 -36350;65061898;134938102;300000 -36351;65057357;134942643;300000 -36352;65052817;134947183;300000 -36353;65048277;134951723;300000 -36354;65043737;134956263;300000 -36355;65039197;134960803;300000 -36356;65034657;134965343;300000 -36357;65030118;134969882;300000 -36358;65025579;134974421;300000 -36359;65021040;134978960;300000 -36360;65016502;134983498;300000 -36361;65011963;134988037;300000 -36362;65007425;134992575;300000 -36363;65002888;134997112;300000 -36364;64998350;135001650;300000 -36365;64993813;135006187;300000 -36366;64989276;135010724;300000 -36367;64984739;135015261;300000 -36368;64980202;135019798;300000 -36369;64975666;135024334;300000 -36370;64971130;135028870;300000 -36371;64966594;135033406;300000 -36372;64962059;135037941;300000 -36373;64957523;135042477;300000 -36374;64952988;135047012;300000 -36375;64948454;135051546;300000 -36376;64943919;135056081;300000 -36377;64939385;135060615;300000 -36378;64934851;135065149;300000 -36379;64930317;135069683;300000 -36380;64925783;135074217;300000 -36381;64921250;135078750;300000 -36382;64916717;135083283;300000 -36383;64912184;135087816;300000 -36384;64907652;135092348;300000 -36385;64903119;135096881;300000 -36386;64898587;135101413;300000 -36387;64894056;135105944;300000 -36388;64889524;135110476;300000 -36389;64884993;135115007;300000 -36390;64880462;135119538;300000 -36391;64875931;135124069;300000 -36392;64871400;135128600;300000 -36393;64866870;135133130;300000 -36394;64862340;135137660;300000 -36395;64857810;135142190;300000 -36396;64853281;135146719;300000 -36397;64848751;135151249;300000 -36398;64844222;135155778;300000 -36399;64839693;135160307;300000 -36400;64835165;135164835;300000 -36401;64830637;135169363;300000 -36402;64826108;135173892;300000 -36403;64821581;135178419;300000 -36404;64817053;135182947;300000 -36405;64812526;135187474;300000 -36406;64807999;135192001;300000 -36407;64803472;135196528;300000 -36408;64798945;135201055;300000 -36409;64794419;135205581;300000 -36410;64789893;135210107;300000 -36411;64785367;135214633;300000 -36412;64780841;135219159;300000 -36413;64776316;135223684;300000 -36414;64771791;135228209;300000 -36415;64767266;135232734;300000 -36416;64762742;135237258;300000 -36417;64758217;135241783;300000 -36418;64753693;135246307;300000 -36419;64749169;135250831;300000 -36420;64744646;135255354;300000 -36421;64740122;135259878;300000 -36422;64735599;135264401;300000 -36423;64731077;135268923;300000 -36424;64726554;135273446;300000 -36425;64722032;135277968;300000 -36426;64717509;135282491;300000 -36427;64712988;135287012;300000 -36428;64708466;135291534;300000 -36429;64703945;135296055;300000 -36430;64699424;135300576;300000 -36431;64694903;135305097;300000 -36432;64690382;135309618;300000 -36433;64685862;135314138;300000 -36434;64681342;135318658;300000 -36435;64676822;135323178;300000 -36436;64672302;135327698;300000 -36437;64667783;135332217;300000 -36438;64663264;135336736;300000 -36439;64658745;135341255;300000 -36440;64654226;135345774;300000 -36441;64649708;135350292;300000 -36442;64645190;135354810;300000 -36443;64640672;135359328;300000 -36444;64636154;135363846;300000 -36445;64631637;135368363;300000 -36446;64627120;135372880;300000 -36447;64622603;135377397;300000 -36448;64618086;135381914;300000 -36449;64613570;135386430;300000 -36450;64609053;135390947;300000 -36451;64604538;135395462;300000 -36452;64600022;135399978;300000 -36453;64595507;135404493;300000 -36454;64590991;135409009;300000 -36455;64586476;135413524;300000 -36456;64581962;135418038;300000 -36457;64577447;135422553;300000 -36458;64572933;135427067;300000 -36459;64568419;135431581;300000 -36460;64563906;135436094;300000 -36461;64559392;135440608;300000 -36462;64554879;135445121;300000 -36463;64550366;135449634;300000 -36464;64545853;135454147;300000 -36465;64541341;135458659;300000 -36466;64536829;135463171;300000 -36467;64532317;135467683;300000 -36468;64527805;135472195;300000 -36469;64523294;135476706;300000 -36470;64518783;135481217;300000 -36471;64514272;135485728;300000 -36472;64509761;135490239;300000 -36473;64505250;135494750;300000 -36474;64500740;135499260;300000 -36475;64496230;135503770;300000 -36476;64491721;135508279;300000 -36477;64487211;135512789;300000 -36478;64482702;135517298;300000 -36479;64478193;135521807;300000 -36480;64473684;135526316;300000 -36481;64469176;135530824;300000 -36482;64464668;135535332;300000 -36483;64460160;135539840;300000 -36484;64455652;135544348;300000 -36485;64451144;135548856;300000 -36486;64446637;135553363;300000 -36487;64442130;135557870;300000 -36488;64437623;135562377;300000 -36489;64433117;135566883;300000 -36490;64428611;135571389;300000 -36491;64424105;135575895;300000 -36492;64419599;135580401;300000 -36493;64415093;135584907;300000 -36494;64410588;135589412;300000 -36495;64406083;135593917;300000 -36496;64401578;135598422;300000 -36497;64397074;135602926;300000 -36498;64392569;135607431;300000 -36499;64388065;135611935;300000 -36500;64383562;135616438;300000 -36501;64379058;135620942;300000 -36502;64374555;135625445;300000 -36503;64370052;135629948;300000 -36504;64365549;135634451;300000 -36505;64361046;135638954;300000 -36506;64356544;135643456;300000 -36507;64352042;135647958;300000 -36508;64347540;135652460;300000 -36509;64343039;135656961;300000 -36510;64338537;135661463;300000 -36511;64334036;135665964;300000 -36512;64329535;135670465;300000 -36513;64325035;135674965;300000 -36514;64320535;135679465;300000 -36515;64316035;135683965;300000 -36516;64311535;135688465;300000 -36517;64307035;135692965;300000 -36518;64302536;135697464;300000 -36519;64298037;135701963;300000 -36520;64293538;135706462;300000 -36521;64289039;135710961;300000 -36522;64284541;135715459;300000 -36523;64280043;135719957;300000 -36524;64275545;135724455;300000 -36525;64271047;135728953;300000 -36526;64266550;135733450;300000 -36527;64262053;135737947;300000 -36528;64257556;135742444;300000 -36529;64253059;135746941;300000 -36530;64248563;135751437;300000 -36531;64244067;135755933;300000 -36532;64239571;135760429;300000 -36533;64235075;135764925;300000 -36534;64230580;135769420;300000 -36535;64226085;135773915;300000 -36536;64221590;135778410;300000 -36537;64217095;135782905;300000 -36538;64212601;135787399;300000 -36539;64208106;135791894;300000 -36540;64203612;135796388;300000 -36541;64199119;135800881;300000 -36542;64194625;135805375;300000 -36543;64190132;135809868;300000 -36544;64185639;135814361;300000 -36545;64181147;135818853;300000 -36546;64176654;135823346;300000 -36547;64172162;135827838;300000 -36548;64167670;135832330;300000 -36549;64163178;135836822;300000 -36550;64158687;135841313;300000 -36551;64154196;135845804;300000 -36552;64149705;135850295;300000 -36553;64145214;135854786;300000 -36554;64140723;135859277;300000 -36555;64136233;135863767;300000 -36556;64131743;135868257;300000 -36557;64127253;135872747;300000 -36558;64122764;135877236;300000 -36559;64118275;135881725;300000 -36560;64113786;135886214;300000 -36561;64109297;135890703;300000 -36562;64104808;135895192;300000 -36563;64100320;135899680;300000 -36564;64095832;135904168;300000 -36565;64091344;135908656;300000 -36566;64086857;135913143;300000 -36567;64082369;135917631;300000 -36568;64077882;135922118;300000 -36569;64073395;135926605;300000 -36570;64068909;135931091;300000 -36571;64064423;135935577;300000 -36572;64059937;135940063;300000 -36573;64055451;135944549;300000 -36574;64050965;135949035;300000 -36575;64046480;135953520;300000 -36576;64041995;135958005;300000 -36577;64037510;135962490;300000 -36578;64033025;135966975;300000 -36579;64028541;135971459;300000 -36580;64024057;135975943;300000 -36581;64019573;135980427;300000 -36582;64015089;135984911;300000 -36583;64010606;135989394;300000 -36584;64006123;135993877;300000 -36585;64001640;135998360;300000 -36586;63997157;136002843;300000 -36587;63992675;136007325;300000 -36588;63988193;136011807;300000 -36589;63983711;136016289;300000 -36590;63979229;136020771;300000 -36591;63974748;136025252;300000 -36592;63970267;136029733;300000 -36593;63965786;136034214;300000 -36594;63961305;136038695;300000 -36595;63956825;136043175;300000 -36596;63952345;136047655;300000 -36597;63947865;136052135;300000 -36598;63943385;136056615;300000 -36599;63938905;136061095;300000 -36600;63934426;136065574;300000 -36601;63929947;136070053;300000 -36602;63925469;136074531;300000 -36603;63920990;136079010;300000 -36604;63916512;136083488;300000 -36605;63912034;136087966;300000 -36606;63907556;136092444;300000 -36607;63903079;136096921;300000 -36608;63898601;136101399;300000 -36609;63894124;136105876;300000 -36610;63889648;136110352;300000 -36611;63885171;136114829;300000 -36612;63880695;136119305;300000 -36613;63876219;136123781;300000 -36614;63871743;136128257;300000 -36615;63867268;136132732;300000 -36616;63862792;136137208;300000 -36617;63858317;136141683;300000 -36618;63853842;136146158;300000 -36619;63849368;136150632;300000 -36620;63844894;136155106;300000 -36621;63840419;136159581;300000 -36622;63835946;136164054;300000 -36623;63831472;136168528;300000 -36624;63826999;136173001;300000 -36625;63822526;136177474;300000 -36626;63818053;136181947;300000 -36627;63813580;136186420;300000 -36628;63809108;136190892;300000 -36629;63804636;136195364;300000 -36630;63800164;136199836;300000 -36631;63795692;136204308;300000 -36632;63791221;136208779;300000 -36633;63786750;136213250;300000 -36634;63782279;136217721;300000 -36635;63777808;136222192;300000 -36636;63773338;136226662;300000 -36637;63768868;136231132;300000 -36638;63764398;136235602;300000 -36639;63759928;136240072;300000 -36640;63755459;136244541;300000 -36641;63750989;136249011;300000 -36642;63746520;136253480;300000 -36643;63742052;136257948;300000 -36644;63737583;136262417;300000 -36645;63733115;136266885;300000 -36646;63728647;136271353;300000 -36647;63724179;136275821;300000 -36648;63719712;136280288;300000 -36649;63715245;136284755;300000 -36650;63710778;136289222;300000 -36651;63706311;136293689;300000 -36652;63701844;136298156;300000 -36653;63697378;136302622;300000 -36654;63692912;136307088;300000 -36655;63688446;136311554;300000 -36656;63683981;136316019;300000 -36657;63679516;136320484;300000 -36658;63675050;136324950;300000 -36659;63670586;136329414;300000 -36660;63666121;136333879;300000 -36661;63661657;136338343;300000 -36662;63657193;136342807;300000 -36663;63652729;136347271;300000 -36664;63648265;136351735;300000 -36665;63643802;136356198;300000 -36666;63639339;136360661;300000 -36667;63634876;136365124;300000 -36668;63630413;136369587;300000 -36669;63625951;136374049;300000 -36670;63621489;136378511;300000 -36671;63617027;136382973;300000 -36672;63612565;136387435;300000 -36673;63608104;136391896;300000 -36674;63603643;136396357;300000 -36675;63599182;136400818;300000 -36676;63594721;136405279;300000 -36677;63590261;136409739;300000 -36678;63585801;136414199;300000 -36679;63581341;136418659;300000 -36680;63576881;136423119;300000 -36681;63572422;136427578;300000 -36682;63567962;136432038;300000 -36683;63563504;136436496;300000 -36684;63559045;136440955;300000 -36685;63554586;136445414;300000 -36686;63550128;136449872;300000 -36687;63545670;136454330;300000 -36688;63541212;136458788;300000 -36689;63536755;136463245;300000 -36690;63532298;136467702;300000 -36691;63527841;136472159;300000 -36692;63523384;136476616;300000 -36693;63518927;136481073;300000 -36694;63514471;136485529;300000 -36695;63510015;136489985;300000 -36696;63505559;136494441;300000 -36697;63501104;136498896;300000 -36698;63496648;136503352;300000 -36699;63492193;136507807;300000 -36700;63487738;136512262;300000 -36701;63483284;136516716;300000 -36702;63478829;136521171;300000 -36703;63474375;136525625;300000 -36704;63469922;136530078;300000 -36705;63465468;136534532;300000 -36706;63461015;136538985;300000 -36707;63456561;136543439;300000 -36708;63452109;136547891;300000 -36709;63447656;136552344;300000 -36710;63443203;136556797;300000 -36711;63438751;136561249;300000 -36712;63434299;136565701;300000 -36713;63429848;136570152;300000 -36714;63425396;136574604;300000 -36715;63420945;136579055;300000 -36716;63416494;136583506;300000 -36717;63412043;136587957;300000 -36718;63407593;136592407;300000 -36719;63403143;136596857;300000 -36720;63398693;136601307;300000 -36721;63394243;136605757;300000 -36722;63389794;136610206;300000 -36723;63385344;136614656;300000 -36724;63380895;136619105;300000 -36725;63376447;136623553;300000 -36726;63371998;136628002;300000 -36727;63367550;136632450;300000 -36728;63363102;136636898;300000 -36729;63358654;136641346;300000 -36730;63354206;136645794;300000 -36731;63349759;136650241;300000 -36732;63345312;136654688;300000 -36733;63340865;136659135;300000 -36734;63336419;136663581;300000 -36735;63331972;136668028;300000 -36736;63327526;136672474;300000 -36737;63323080;136676920;300000 -36738;63318635;136681365;300000 -36739;63314189;136685811;300000 -36740;63309744;136690256;300000 -36741;63305299;136694701;300000 -36742;63300855;136699145;300000 -36743;63296410;136703590;300000 -36744;63291966;136708034;300000 -36745;63287522;136712478;300000 -36746;63283078;136716922;300000 -36747;63278635;136721365;300000 -36748;63274192;136725808;300000 -36749;63269749;136730251;300000 -36750;63265306;136734694;300000 -36751;63260864;136739136;300000 -36752;63256421;136743579;300000 -36753;63251979;136748021;300000 -36754;63247538;136752462;300000 -36755;63243096;136756904;300000 -36756;63238655;136761345;300000 -36757;63234214;136765786;300000 -36758;63229773;136770227;300000 -36759;63225333;136774667;300000 -36760;63220892;136779108;300000 -36761;63216452;136783548;300000 -36762;63212012;136787988;300000 -36763;63207573;136792427;300000 -36764;63203134;136796866;300000 -36765;63198694;136801306;300000 -36766;63194256;136805744;300000 -36767;63189817;136810183;300000 -36768;63185379;136814621;300000 -36769;63180940;136819060;300000 -36770;63176503;136823497;300000 -36771;63172065;136827935;300000 -36772;63167628;136832372;300000 -36773;63163190;136836810;300000 -36774;63158753;136841247;300000 -36775;63154317;136845683;300000 -36776;63149880;136850120;300000 -36777;63145444;136854556;300000 -36778;63141008;136858992;300000 -36779;63136573;136863427;300000 -36780;63132137;136867863;300000 -36781;63127702;136872298;300000 -36782;63123267;136876733;300000 -36783;63118832;136881168;300000 -36784;63114398;136885602;300000 -36785;63109963;136890037;300000 -36786;63105529;136894471;300000 -36787;63101095;136898905;300000 -36788;63096662;136903338;300000 -36789;63092229;136907771;300000 -36790;63087796;136912204;300000 -36791;63083363;136916637;300000 -36792;63078930;136921070;300000 -36793;63074498;136925502;300000 -36794;63070066;136929934;300000 -36795;63065634;136934366;300000 -36796;63061202;136938798;300000 -36797;63056771;136943229;300000 -36798;63052340;136947660;300000 -36799;63047909;136952091;300000 -36800;63043478;136956522;300000 -36801;63039048;136960952;300000 -36802;63034618;136965382;300000 -36803;63030188;136969812;300000 -36804;63025758;136974242;300000 -36805;63021329;136978671;300000 -36806;63016899;136983101;300000 -36807;63012470;136987530;300000 -36808;63008042;136991958;300000 -36809;63003613;136996387;300000 -36810;62999185;137000815;300000 -36811;62994757;137005243;300000 -36812;62990329;137009671;300000 -36813;62985902;137014098;300000 -36814;62981474;137018526;300000 -36815;62977047;137022953;300000 -36816;62972621;137027379;300000 -36817;62968194;137031806;300000 -36818;62963768;137036232;300000 -36819;62959342;137040658;300000 -36820;62954916;137045084;300000 -36821;62950490;137049510;300000 -36822;62946065;137053935;300000 -36823;62941640;137058360;300000 -36824;62937215;137062785;300000 -36825;62932790;137067210;300000 -36826;62928366;137071634;300000 -36827;62923942;137076058;300000 -36828;62919518;137080482;300000 -36829;62915094;137084906;300000 -36830;62910671;137089329;300000 -36831;62906247;137093753;300000 -36832;62901825;137098175;300000 -36833;62897402;137102598;300000 -36834;62892979;137107021;300000 -36835;62888557;137111443;300000 -36836;62884135;137115865;300000 -36837;62879713;137120287;300000 -36838;62875292;137124708;300000 -36839;62870871;137129129;300000 -36840;62866450;137133550;300000 -36841;62862029;137137971;300000 -36842;62857608;137142392;300000 -36843;62853188;137146812;300000 -36844;62848768;137151232;300000 -36845;62844348;137155652;300000 -36846;62839928;137160072;300000 -36847;62835509;137164491;300000 -36848;62831090;137168910;300000 -36849;62826671;137173329;300000 -36850;62822252;137177748;300000 -36851;62817834;137182166;300000 -36852;62813416;137186584;300000 -36853;62808998;137191002;300000 -36854;62804580;137195420;300000 -36855;62800163;137199837;300000 -36856;62795746;137204254;300000 -36857;62791329;137208671;300000 -36858;62786912;137213088;300000 -36859;62782495;137217505;300000 -36860;62778079;137221921;300000 -36861;62773663;137226337;300000 -36862;62769247;137230753;300000 -36863;62764832;137235168;300000 -36864;62760417;137239583;300000 -36865;62756002;137243998;300000 -36866;62751587;137248413;300000 -36867;62747172;137252828;300000 -36868;62742758;137257242;300000 -36869;62738344;137261656;300000 -36870;62733930;137266070;300000 -36871;62729516;137270484;300000 -36872;62725103;137274897;300000 -36873;62720690;137279310;300000 -36874;62716277;137283723;300000 -36875;62711864;137288136;300000 -36876;62707452;137292548;300000 -36877;62703040;137296960;300000 -36878;62698628;137301372;300000 -36879;62694216;137305784;300000 -36880;62689805;137310195;300000 -36881;62685394;137314606;300000 -36882;62680983;137319017;300000 -36883;62676572;137323428;300000 -36884;62672161;137327839;300000 -36885;62667751;137332249;300000 -36886;62663341;137336659;300000 -36887;62658931;137341069;300000 -36888;62654522;137345478;300000 -36889;62650112;137349888;300000 -36890;62645703;137354297;300000 -36891;62641295;137358705;300000 -36892;62636886;137363114;300000 -36893;62632478;137367522;300000 -36894;62628070;137371930;300000 -36895;62623662;137376338;300000 -36896;62619254;137380746;300000 -36897;62614847;137385153;300000 -36898;62610440;137389560;300000 -36899;62606033;137393967;300000 -36900;62601626;137398374;300000 -36901;62597220;137402780;300000 -36902;62592813;137407187;300000 -36903;62588407;137411593;300000 -36904;62584002;137415998;300000 -36905;62579596;137420404;300000 -36906;62575191;137424809;300000 -36907;62570786;137429214;300000 -36908;62566381;137433619;300000 -36909;62561977;137438023;300000 -36910;62557572;137442428;300000 -36911;62553168;137446832;300000 -36912;62548765;137451235;300000 -36913;62544361;137455639;300000 -36914;62539958;137460042;300000 -36915;62535555;137464445;300000 -36916;62531152;137468848;300000 -36917;62526749;137473251;300000 -36918;62522347;137477653;300000 -36919;62517945;137482055;300000 -36920;62513543;137486457;300000 -36921;62509141;137490859;300000 -36922;62504740;137495260;300000 -36923;62500339;137499661;300000 -36924;62495938;137504062;300000 -36925;62491537;137508463;300000 -36926;62487136;137512864;300000 -36927;62482736;137517264;300000 -36928;62478336;137521664;300000 -36929;62473936;137526064;300000 -36930;62469537;137530463;300000 -36931;62465138;137534862;300000 -36932;62460739;137539261;300000 -36933;62456340;137543660;300000 -36934;62451941;137548059;300000 -36935;62447543;137552457;300000 -36936;62443145;137556855;300000 -36937;62438747;137561253;300000 -36938;62434349;137565651;300000 -36939;62429952;137570048;300000 -36940;62425555;137574445;300000 -36941;62421158;137578842;300000 -36942;62416761;137583239;300000 -36943;62412365;137587635;300000 -36944;62407969;137592031;300000 -36945;62403573;137596427;300000 -36946;62399177;137600823;300000 -36947;62394782;137605218;300000 -36948;62390386;137609614;300000 -36949;62385992;137614008;300000 -36950;62381597;137618403;300000 -36951;62377202;137622798;300000 -36952;62372808;137627192;300000 -36953;62368414;137631586;300000 -36954;62364020;137635980;300000 -36955;62359627;137640373;300000 -36956;62355233;137644767;300000 -36957;62350840;137649160;300000 -36958;62346447;137653553;300000 -36959;62342055;137657945;300000 -36960;62337662;137662338;300000 -36961;62333270;137666730;300000 -36962;62328878;137671122;300000 -36963;62324487;137675513;300000 -36964;62320095;137679905;300000 -36965;62315704;137684296;300000 -36966;62311313;137688687;300000 -36967;62306922;137693078;300000 -36968;62302532;137697468;300000 -36969;62298142;137701858;300000 -36970;62293752;137706248;300000 -36971;62289362;137710638;300000 -36972;62284972;137715028;300000 -36973;62280583;137719417;300000 -36974;62276194;137723806;300000 -36975;62271805;137728195;300000 -36976;62267417;137732583;300000 -36977;62263028;137736972;300000 -36978;62258640;137741360;300000 -36979;62254252;137745748;300000 -36980;62249865;137750135;300000 -36981;62245477;137754523;300000 -36982;62241090;137758910;300000 -36983;62236703;137763297;300000 -36984;62232317;137767683;300000 -36985;62227930;137772070;300000 -36986;62223544;137776456;300000 -36987;62219158;137780842;300000 -36988;62214772;137785228;300000 -36989;62210387;137789613;300000 -36990;62206002;137793998;300000 -36991;62201617;137798383;300000 -36992;62197232;137802768;300000 -36993;62192847;137807153;300000 -36994;62188463;137811537;300000 -36995;62184079;137815921;300000 -36996;62179695;137820305;300000 -36997;62175312;137824688;300000 -36998;62170928;137829072;300000 -36999;62166545;137833455;300000 -37000;62162162;137837838;300000 -37001;62157780;137842220;300000 -37002;62153397;137846603;300000 -37003;62149015;137850985;300000 -37004;62144633;137855367;300000 -37005;62140251;137859749;300000 -37006;62135870;137864130;300000 -37007;62131489;137868511;300000 -37008;62127108;137872892;300000 -37009;62122727;137877273;300000 -37010;62118346;137881654;300000 -37011;62113966;137886034;300000 -37012;62109586;137890414;300000 -37013;62105206;137894794;300000 -37014;62100827;137899173;300000 -37015;62096447;137903553;300000 -37016;62092068;137907932;300000 -37017;62087689;137912311;300000 -37018;62083311;137916689;300000 -37019;62078932;137921068;300000 -37020;62074554;137925446;300000 -37021;62070176;137929824;300000 -37022;62065799;137934201;300000 -37023;62061421;137938579;300000 -37024;62057044;137942956;300000 -37025;62052667;137947333;300000 -37026;62048290;137951710;300000 -37027;62043914;137956086;300000 -37028;62039538;137960462;300000 -37029;62035162;137964838;300000 -37030;62030786;137969214;300000 -37031;62026410;137973590;300000 -37032;62022035;137977965;300000 -37033;62017660;137982340;300000 -37034;62013285;137986715;300000 -37035;62008910;137991090;300000 -37036;62004536;137995464;300000 -37037;62000162;137999838;300000 -37038;61995788;138004212;300000 -37039;61991414;138008586;300000 -37040;61987041;138012959;300000 -37041;61982668;138017332;300000 -37042;61978295;138021705;300000 -37043;61973922;138026078;300000 -37044;61969550;138030450;300000 -37045;61965177;138034823;300000 -37046;61960805;138039195;300000 -37047;61956434;138043566;300000 -37048;61952062;138047938;300000 -37049;61947691;138052309;300000 -37050;61943320;138056680;300000 -37051;61938949;138061051;300000 -37052;61934578;138065422;300000 -37053;61930208;138069792;300000 -37054;61925838;138074162;300000 -37055;61921468;138078532;300000 -37056;61917098;138082902;300000 -37057;61912729;138087271;300000 -37058;61908360;138091640;300000 -37059;61903991;138096009;300000 -37060;61899622;138100378;300000 -37061;61895254;138104746;300000 -37062;61890886;138109114;300000 -37063;61886518;138113482;300000 -37064;61882150;138117850;300000 -37065;61877782;138122218;300000 -37066;61873415;138126585;300000 -37067;61869048;138130952;300000 -37068;61864681;138135319;300000 -37069;61860315;138139685;300000 -37070;61855948;138144052;300000 -37071;61851582;138148418;300000 -37072;61847216;138152784;300000 -37073;61842851;138157149;300000 -37074;61838485;138161515;300000 -37075;61834120;138165880;300000 -37076;61829755;138170245;300000 -37077;61825390;138174610;300000 -37078;61821026;138178974;300000 -37079;61816662;138183338;300000 -37080;61812298;138187702;300000 -37081;61807934;138192066;300000 -37082;61803570;138196430;300000 -37083;61799207;138200793;300000 -37084;61794844;138205156;300000 -37085;61790481;138209519;300000 -37086;61786119;138213881;300000 -37087;61781756;138218244;300000 -37088;61777394;138222606;300000 -37089;61773032;138226968;300000 -37090;61768671;138231329;300000 -37091;61764309;138235691;300000 -37092;61759948;138240052;300000 -37093;61755587;138244413;300000 -37094;61751227;138248773;300000 -37095;61746866;138253134;300000 -37096;61742506;138257494;300000 -37097;61738146;138261854;300000 -37098;61733786;138266214;300000 -37099;61729427;138270573;300000 -37100;61725067;138274933;300000 -37101;61720708;138279292;300000 -37102;61716350;138283650;300000 -37103;61711991;138288009;300000 -37104;61707633;138292367;300000 -37105;61703274;138296726;300000 -37106;61698917;138301083;300000 -37107;61694559;138305441;300000 -37108;61690202;138309798;300000 -37109;61685844;138314156;300000 -37110;61681487;138318513;300000 -37111;61677131;138322869;300000 -37112;61672774;138327226;300000 -37113;61668418;138331582;300000 -37114;61664062;138335938;300000 -37115;61659706;138340294;300000 -37116;61655351;138344649;300000 -37117;61650996;138349004;300000 -37118;61646640;138353360;300000 -37119;61642286;138357714;300000 -37120;61637931;138362069;300000 -37121;61633577;138366423;300000 -37122;61629223;138370777;300000 -37123;61624869;138375131;300000 -37124;61620515;138379485;300000 -37125;61616162;138383838;300000 -37126;61611808;138388192;300000 -37127;61607455;138392545;300000 -37128;61603103;138396897;300000 -37129;61598750;138401250;300000 -37130;61594398;138405602;300000 -37131;61590046;138409954;300000 -37132;61585694;138414306;300000 -37133;61581343;138418657;300000 -37134;61576991;138423009;300000 -37135;61572640;138427360;300000 -37136;61568290;138431710;300000 -37137;61563939;138436061;300000 -37138;61559589;138440411;300000 -37139;61555238;138444762;300000 -37140;61550889;138449111;300000 -37141;61546539;138453461;300000 -37142;61542189;138457811;300000 -37143;61537840;138462160;300000 -37144;61533491;138466509;300000 -37145;61529143;138470857;300000 -37146;61524794;138475206;300000 -37147;61520446;138479554;300000 -37148;61516098;138483902;300000 -37149;61511750;138488250;300000 -37150;61507402;138492598;300000 -37151;61503055;138496945;300000 -37152;61498708;138501292;300000 -37153;61494361;138505639;300000 -37154;61490015;138509985;300000 -37155;61485668;138514332;300000 -37156;61481322;138518678;300000 -37157;61476976;138523024;300000 -37158;61472630;138527370;300000 -37159;61468285;138531715;300000 -37160;61463940;138536060;300000 -37161;61459595;138540405;300000 -37162;61455250;138544750;300000 -37163;61450905;138549095;300000 -37164;61446561;138553439;300000 -37165;61442217;138557783;300000 -37166;61437873;138562127;300000 -37167;61433530;138566470;300000 -37168;61429186;138570814;300000 -37169;61424843;138575157;300000 -37170;61420500;138579500;300000 -37171;61416158;138583842;300000 -37172;61411815;138588185;300000 -37173;61407473;138592527;300000 -37174;61403131;138596869;300000 -37175;61398790;138601210;300000 -37176;61394448;138605552;300000 -37177;61390107;138609893;300000 -37178;61385766;138614234;300000 -37179;61381425;138618575;300000 -37180;61377084;138622916;300000 -37181;61372744;138627256;300000 -37182;61368404;138631596;300000 -37183;61364064;138635936;300000 -37184;61359725;138640275;300000 -37185;61355385;138644615;300000 -37186;61351046;138648954;300000 -37187;61346707;138653293;300000 -37188;61342369;138657631;300000 -37189;61338030;138661970;300000 -37190;61333692;138666308;300000 -37191;61329354;138670646;300000 -37192;61325016;138674984;300000 -37193;61320679;138679321;300000 -37194;61316341;138683659;300000 -37195;61312004;138687996;300000 -37196;61307667;138692333;300000 -37197;61303331;138696669;300000 -37198;61298995;138701005;300000 -37199;61294658;138705342;300000 -37200;61290323;138709677;300000 -37201;61285987;138714013;300000 -37202;61281652;138718348;300000 -37203;61277316;138722684;300000 -37204;61272981;138727019;300000 -37205;61268647;138731353;300000 -37206;61264312;138735688;300000 -37207;61259978;138740022;300000 -37208;61255644;138744356;300000 -37209;61251310;138748690;300000 -37210;61246977;138753023;300000 -37211;61242643;138757357;300000 -37212;61238310;138761690;300000 -37213;61233977;138766023;300000 -37214;61229645;138770355;300000 -37215;61225312;138774688;300000 -37216;61220980;138779020;300000 -37217;61216648;138783352;300000 -37218;61212317;138787683;300000 -37219;61207985;138792015;300000 -37220;61203654;138796346;300000 -37221;61199323;138800677;300000 -37222;61194992;138805008;300000 -37223;61190662;138809338;300000 -37224;61186331;138813669;300000 -37225;61182001;138817999;300000 -37226;61177672;138822328;300000 -37227;61173342;138826658;300000 -37228;61169013;138830987;300000 -37229;61164683;138835317;300000 -37230;61160355;138839645;300000 -37231;61156026;138843974;300000 -37232;61151697;138848303;300000 -37233;61147369;138852631;300000 -37234;61143041;138856959;300000 -37235;61138714;138861286;300000 -37236;61134386;138865614;300000 -37237;61130059;138869941;300000 -37238;61125732;138874268;300000 -37239;61121405;138878595;300000 -37240;61117078;138882922;300000 -37241;61112752;138887248;300000 -37242;61108426;138891574;300000 -37243;61104100;138895900;300000 -37244;61099774;138900226;300000 -37245;61095449;138904551;300000 -37246;61091124;138908876;300000 -37247;61086799;138913201;300000 -37248;61082474;138917526;300000 -37249;61078150;138921850;300000 -37250;61073826;138926174;300000 -37251;61069501;138930499;300000 -37252;61065178;138934822;300000 -37253;61060854;138939146;300000 -37254;61056531;138943469;300000 -37255;61052208;138947792;300000 -37256;61047885;138952115;300000 -37257;61043562;138956438;300000 -37258;61039240;138960760;300000 -37259;61034918;138965082;300000 -37260;61030596;138969404;300000 -37261;61026274;138973726;300000 -37262;61021953;138978047;300000 -37263;61017631;138982369;300000 -37264;61013310;138986690;300000 -37265;61008990;138991010;300000 -37266;61004669;138995331;300000 -37267;61000349;138999651;300000 -37268;60996029;139003971;300000 -37269;60991709;139008291;300000 -37270;60987389;139012611;300000 -37271;60983070;139016930;300000 -37272;60978751;139021249;300000 -37273;60974432;139025568;300000 -37274;60970113;139029887;300000 -37275;60965795;139034205;300000 -37276;60961477;139038523;300000 -37277;60957159;139042841;300000 -37278;60952841;139047159;300000 -37279;60948523;139051477;300000 -37280;60944206;139055794;300000 -37281;60939889;139060111;300000 -37282;60935572;139064428;300000 -37283;60931256;139068744;300000 -37284;60926939;139073061;300000 -37285;60922623;139077377;300000 -37286;60918307;139081693;300000 -37287;60913991;139086009;300000 -37288;60909676;139090324;300000 -37289;60905361;139094639;300000 -37290;60901046;139098954;300000 -37291;60896731;139103269;300000 -37292;60892417;139107583;300000 -37293;60888102;139111898;300000 -37294;60883788;139116212;300000 -37295;60879474;139120526;300000 -37296;60875161;139124839;300000 -37297;60870848;139129152;300000 -37298;60866534;139133466;300000 -37299;60862222;139137778;300000 -37300;60857909;139142091;300000 -37301;60853596;139146404;300000 -37302;60849284;139150716;300000 -37303;60844972;139155028;300000 -37304;60840661;139159339;300000 -37305;60836349;139163651;300000 -37306;60832038;139167962;300000 -37307;60827727;139172273;300000 -37308;60823416;139176584;300000 -37309;60819105;139180895;300000 -37310;60814795;139185205;300000 -37311;60810485;139189515;300000 -37312;60806175;139193825;300000 -37313;60801865;139198135;300000 -37314;60797556;139202444;300000 -37315;60793247;139206753;300000 -37316;60788938;139211062;300000 -37317;60784629;139215371;300000 -37318;60780320;139219680;300000 -37319;60776012;139223988;300000 -37320;60771704;139228296;300000 -37321;60767396;139232604;300000 -37322;60763089;139236911;300000 -37323;60758781;139241219;300000 -37324;60754474;139245526;300000 -37325;60750167;139249833;300000 -37326;60745861;139254139;300000 -37327;60741554;139258446;300000 -37328;60737248;139262752;300000 -37329;60732942;139267058;300000 -37330;60728636;139271364;300000 -37331;60724331;139275669;300000 -37332;60720026;139279974;300000 -37333;60715721;139284279;300000 -37334;60711416;139288584;300000 -37335;60707111;139292889;300000 -37336;60702807;139297193;300000 -37337;60698503;139301497;300000 -37338;60694199;139305801;300000 -37339;60689895;139310105;300000 -37340;60685592;139314408;300000 -37341;60681289;139318711;300000 -37342;60676986;139323014;300000 -37343;60672683;139327317;300000 -37344;60668380;139331620;300000 -37345;60664078;139335922;300000 -37346;60659776;139340224;300000 -37347;60655474;139344526;300000 -37348;60651173;139348827;300000 -37349;60646871;139353129;300000 -37350;60642570;139357430;300000 -37351;60638269;139361731;300000 -37352;60633969;139366031;300000 -37353;60629668;139370332;300000 -37354;60625368;139374632;300000 -37355;60621068;139378932;300000 -37356;60616768;139383232;300000 -37357;60612469;139387531;300000 -37358;60608170;139391830;300000 -37359;60603871;139396129;300000 -37360;60599572;139400428;300000 -37361;60595273;139404727;300000 -37362;60590975;139409025;300000 -37363;60586677;139413323;300000 -37364;60582379;139417621;300000 -37365;60578081;139421919;300000 -37366;60573784;139426216;300000 -37367;60569486;139430514;300000 -37368;60565189;139434811;300000 -37369;60560893;139439107;300000 -37370;60556596;139443404;300000 -37371;60552300;139447700;300000 -37372;60548004;139451996;300000 -37373;60543708;139456292;300000 -37374;60539412;139460588;300000 -37375;60535117;139464883;300000 -37376;60530822;139469178;300000 -37377;60526527;139473473;300000 -37378;60522232;139477768;300000 -37379;60517938;139482062;300000 -37380;60513644;139486356;300000 -37381;60509350;139490650;300000 -37382;60505056;139494944;300000 -37383;60500762;139499238;300000 -37384;60496469;139503531;300000 -37385;60492176;139507824;300000 -37386;60487883;139512117;300000 -37387;60483591;139516409;300000 -37388;60479298;139520702;300000 -37389;60475006;139524994;300000 -37390;60470714;139529286;300000 -37391;60466422;139533578;300000 -37392;60462131;139537869;300000 -37393;60457840;139542160;300000 -37394;60453549;139546451;300000 -37395;60449258;139550742;300000 -37396;60444967;139555033;300000 -37397;60440677;139559323;300000 -37398;60436387;139563613;300000 -37399;60432097;139567903;300000 -37400;60427807;139572193;300000 -37401;60423518;139576482;300000 -37402;60419229;139580771;300000 -37403;60414940;139585060;300000 -37404;60410651;139589349;300000 -37405;60406363;139593637;300000 -37406;60402075;139597925;300000 -37407;60397787;139602213;300000 -37408;60393499;139606501;300000 -37409;60389211;139610789;300000 -37410;60384924;139615076;300000 -37411;60380637;139619363;300000 -37412;60376350;139623650;300000 -37413;60372063;139627937;300000 -37414;60367777;139632223;300000 -37415;60363491;139636509;300000 -37416;60359205;139640795;300000 -37417;60354919;139645081;300000 -37418;60350633;139649367;300000 -37419;60346348;139653652;300000 -37420;60342063;139657937;300000 -37421;60337778;139662222;300000 -37422;60333494;139666506;300000 -37423;60329209;139670791;300000 -37424;60324925;139675075;300000 -37425;60320641;139679359;300000 -37426;60316358;139683642;300000 -37427;60312074;139687926;300000 -37428;60307791;139692209;300000 -37429;60303508;139696492;300000 -37430;60299225;139700775;300000 -37431;60294943;139705057;300000 -37432;60290660;139709340;300000 -37433;60286378;139713622;300000 -37434;60282096;139717904;300000 -37435;60277815;139722185;300000 -37436;60273533;139726467;300000 -37437;60269252;139730748;300000 -37438;60264971;139735029;300000 -37439;60260691;139739309;300000 -37440;60256410;139743590;300000 -37441;60252130;139747870;300000 -37442;60247850;139752150;300000 -37443;60243570;139756430;300000 -37444;60239291;139760709;300000 -37445;60235011;139764989;300000 -37446;60230732;139769268;300000 -37447;60226453;139773547;300000 -37448;60222175;139777825;300000 -37449;60217896;139782104;300000 -37450;60213618;139786382;300000 -37451;60209340;139790660;300000 -37452;60205062;139794938;300000 -37453;60200785;139799215;300000 -37454;60196508;139803492;300000 -37455;60192231;139807769;300000 -37456;60187954;139812046;300000 -37457;60183677;139816323;300000 -37458;60179401;139820599;300000 -37459;60175125;139824875;300000 -37460;60170849;139829151;300000 -37461;60166573;139833427;300000 -37462;60162298;139837702;300000 -37463;60158023;139841977;300000 -37464;60153748;139846252;300000 -37465;60149473;139850527;300000 -37466;60145198;139854802;300000 -37467;60140924;139859076;300000 -37468;60136650;139863350;300000 -37469;60132376;139867624;300000 -37470;60128102;139871898;300000 -37471;60123829;139876171;300000 -37472;60119556;139880444;300000 -37473;60115283;139884717;300000 -37474;60111010;139888990;300000 -37475;60106738;139893262;300000 -37476;60102466;139897534;300000 -37477;60098194;139901806;300000 -37478;60093922;139906078;300000 -37479;60089650;139910350;300000 -37480;60085379;139914621;300000 -37481;60081108;139918892;300000 -37482;60076837;139923163;300000 -37483;60072566;139927434;300000 -37484;60068296;139931704;300000 -37485;60064026;139935974;300000 -37486;60059756;139940244;300000 -37487;60055486;139944514;300000 -37488;60051216;139948784;300000 -37489;60046947;139953053;300000 -37490;60042678;139957322;300000 -37491;60038409;139961591;300000 -37492;60034141;139965859;300000 -37493;60029872;139970128;300000 -37494;60025604;139974396;300000 -37495;60021336;139978664;300000 -37496;60017068;139982932;300000 -37497;60012801;139987199;300000 -37498;60008534;139991466;300000 -37499;60004267;139995733;300000 -37500;60000000;140000000;300000 -37501;59995733;140004267;300000 -37502;59991467;140008533;300000 -37503;59987201;140012799;300000 -37504;59982935;140017065;300000 -37505;59978670;140021330;300000 -37506;59974404;140025596;300000 -37507;59970139;140029861;300000 -37508;59965874;140034126;300000 -37509;59961609;140038391;300000 -37510;59957345;140042655;300000 -37511;59953080;140046920;300000 -37512;59948816;140051184;300000 -37513;59944553;140055447;300000 -37514;59940289;140059711;300000 -37515;59936026;140063974;300000 -37516;59931762;140068238;300000 -37517;59927500;140072500;300000 -37518;59923237;140076763;300000 -37519;59918974;140081026;300000 -37520;59914712;140085288;300000 -37521;59910450;140089550;300000 -37522;59906188;140093812;300000 -37523;59901927;140098073;300000 -37524;59897665;140102335;300000 -37525;59893404;140106596;300000 -37526;59889144;140110856;300000 -37527;59884883;140115117;300000 -37528;59880622;140119378;300000 -37529;59876362;140123638;300000 -37530;59872102;140127898;300000 -37531;59867843;140132157;300000 -37532;59863583;140136417;300000 -37533;59859324;140140676;300000 -37534;59855065;140144935;300000 -37535;59850806;140149194;300000 -37536;59846547;140153453;300000 -37537;59842289;140157711;300000 -37538;59838031;140161969;300000 -37539;59833773;140166227;300000 -37540;59829515;140170485;300000 -37541;59825258;140174742;300000 -37542;59821000;140179000;300000 -37543;59816743;140183257;300000 -37544;59812487;140187513;300000 -37545;59808230;140191770;300000 -37546;59803974;140196026;300000 -37547;59799718;140200282;300000 -37548;59795462;140204538;300000 -37549;59791206;140208794;300000 -37550;59786951;140213049;300000 -37551;59782696;140217304;300000 -37552;59778441;140221559;300000 -37553;59774186;140225814;300000 -37554;59769931;140230069;300000 -37555;59765677;140234323;300000 -37556;59761423;140238577;300000 -37557;59757169;140242831;300000 -37558;59752915;140247085;300000 -37559;59748662;140251338;300000 -37560;59744409;140255591;300000 -37561;59740156;140259844;300000 -37562;59735903;140264097;300000 -37563;59731651;140268349;300000 -37564;59727399;140272601;300000 -37565;59723147;140276853;300000 -37566;59718895;140281105;300000 -37567;59714643;140285357;300000 -37568;59710392;140289608;300000 -37569;59706141;140293859;300000 -37570;59701890;140298110;300000 -37571;59697639;140302361;300000 -37572;59693389;140306611;300000 -37573;59689138;140310862;300000 -37574;59684888;140315112;300000 -37575;59680639;140319361;300000 -37576;59676389;140323611;300000 -37577;59672140;140327860;300000 -37578;59667891;140332109;300000 -37579;59663642;140336358;300000 -37580;59659393;140340607;300000 -37581;59655145;140344855;300000 -37582;59650897;140349103;300000 -37583;59646649;140353351;300000 -37584;59642401;140357599;300000 -37585;59638154;140361846;300000 -37586;59633906;140366094;300000 -37587;59629659;140370341;300000 -37588;59625412;140374588;300000 -37589;59621166;140378834;300000 -37590;59616919;140383081;300000 -37591;59612673;140387327;300000 -37592;59608427;140391573;300000 -37593;59604182;140395818;300000 -37594;59599936;140400064;300000 -37595;59595691;140404309;300000 -37596;59591446;140408554;300000 -37597;59587201;140412799;300000 -37598;59582957;140417043;300000 -37599;59578712;140421288;300000 -37600;59574468;140425532;300000 -37601;59570224;140429776;300000 -37602;59565981;140434019;300000 -37603;59561737;140438263;300000 -37604;59557494;140442506;300000 -37605;59553251;140446749;300000 -37606;59549008;140450992;300000 -37607;59544766;140455234;300000 -37608;59540523;140459477;300000 -37609;59536281;140463719;300000 -37610;59532039;140467961;300000 -37611;59527798;140472202;300000 -37612;59523556;140476444;300000 -37613;59519315;140480685;300000 -37614;59515074;140484926;300000 -37615;59510833;140489167;300000 -37616;59506593;140493407;300000 -37617;59502353;140497647;300000 -37618;59498113;140501887;300000 -37619;59493873;140506127;300000 -37620;59489633;140510367;300000 -37621;59485394;140514606;300000 -37622;59481155;140518845;300000 -37623;59476916;140523084;300000 -37624;59472677;140527323;300000 -37625;59468439;140531561;300000 -37626;59464200;140535800;300000 -37627;59459962;140540038;300000 -37628;59455724;140544276;300000 -37629;59451487;140548513;300000 -37630;59447250;140552750;300000 -37631;59443012;140556988;300000 -37632;59438776;140561224;300000 -37633;59434539;140565461;300000 -37634;59430302;140569698;300000 -37635;59426066;140573934;300000 -37636;59421830;140578170;300000 -37637;59417594;140582406;300000 -37638;59413359;140586641;300000 -37639;59409124;140590876;300000 -37640;59404888;140595112;300000 -37641;59400654;140599346;300000 -37642;59396419;140603581;300000 -37643;59392184;140607816;300000 -37644;59387950;140612050;300000 -37645;59383716;140616284;300000 -37646;59379483;140620517;300000 -37647;59375249;140624751;300000 -37648;59371016;140628984;300000 -37649;59366783;140633217;300000 -37650;59362550;140637450;300000 -37651;59358317;140641683;300000 -37652;59354085;140645915;300000 -37653;59349853;140650147;300000 -37654;59345621;140654379;300000 -37655;59341389;140658611;300000 -37656;59337157;140662843;300000 -37657;59332926;140667074;300000 -37658;59328695;140671305;300000 -37659;59324464;140675536;300000 -37660;59320234;140679766;300000 -37661;59316003;140683997;300000 -37662;59311773;140688227;300000 -37663;59307543;140692457;300000 -37664;59303314;140696686;300000 -37665;59299084;140700916;300000 -37666;59294855;140705145;300000 -37667;59290626;140709374;300000 -37668;59286397;140713603;300000 -37669;59282168;140717832;300000 -37670;59277940;140722060;300000 -37671;59273712;140726288;300000 -37672;59269484;140730516;300000 -37673;59265256;140734744;300000 -37674;59261029;140738971;300000 -37675;59256802;140743198;300000 -37676;59252575;140747425;300000 -37677;59248348;140751652;300000 -37678;59244121;140755879;300000 -37679;59239895;140760105;300000 -37680;59235669;140764331;300000 -37681;59231443;140768557;300000 -37682;59227217;140772783;300000 -37683;59222992;140777008;300000 -37684;59218767;140781233;300000 -37685;59214542;140785458;300000 -37686;59210317;140789683;300000 -37687;59206092;140793908;300000 -37688;59201868;140798132;300000 -37689;59197644;140802356;300000 -37690;59193420;140806580;300000 -37691;59189196;140810804;300000 -37692;59184973;140815027;300000 -37693;59180750;140819250;300000 -37694;59176527;140823473;300000 -37695;59172304;140827696;300000 -37696;59168081;140831919;300000 -37697;59163859;140836141;300000 -37698;59159637;140840363;300000 -37699;59155415;140844585;300000 -37700;59151194;140848806;300000 -37701;59146972;140853028;300000 -37702;59142751;140857249;300000 -37703;59138530;140861470;300000 -37704;59134309;140865691;300000 -37705;59130089;140869911;300000 -37706;59125869;140874131;300000 -37707;59121649;140878351;300000 -37708;59117429;140882571;300000 -37709;59113209;140886791;300000 -37710;59108990;140891010;300000 -37711;59104770;140895230;300000 -37712;59100552;140899448;300000 -37713;59096333;140903667;300000 -37714;59092114;140907886;300000 -37715;59087896;140912104;300000 -37716;59083678;140916322;300000 -37717;59079460;140920540;300000 -37718;59075243;140924757;300000 -37719;59071025;140928975;300000 -37720;59066808;140933192;300000 -37721;59062591;140937409;300000 -37722;59058374;140941626;300000 -37723;59054158;140945842;300000 -37724;59049942;140950058;300000 -37725;59045726;140954274;300000 -37726;59041510;140958490;300000 -37727;59037294;140962706;300000 -37728;59033079;140966921;300000 -37729;59028864;140971136;300000 -37730;59024649;140975351;300000 -37731;59020434;140979566;300000 -37732;59016220;140983780;300000 -37733;59012005;140987995;300000 -37734;59007791;140992209;300000 -37735;59003578;140996422;300000 -37736;58999364;141000636;300000 -37737;58995151;141004849;300000 -37738;58990938;141009062;300000 -37739;58986725;141013275;300000 -37740;58982512;141017488;300000 -37741;58978299;141021701;300000 -37742;58974087;141025913;300000 -37743;58969875;141030125;300000 -37744;58965663;141034337;300000 -37745;58961452;141038548;300000 -37746;58957241;141042759;300000 -37747;58953029;141046971;300000 -37748;58948818;141051182;300000 -37749;58944608;141055392;300000 -37750;58940397;141059603;300000 -37751;58936187;141063813;300000 -37752;58931977;141068023;300000 -37753;58927767;141072233;300000 -37754;58923558;141076442;300000 -37755;58919348;141080652;300000 -37756;58915139;141084861;300000 -37757;58910930;141089070;300000 -37758;58906722;141093278;300000 -37759;58902513;141097487;300000 -37760;58898305;141101695;300000 -37761;58894097;141105903;300000 -37762;58889889;141110111;300000 -37763;58885682;141114318;300000 -37764;58881474;141118526;300000 -37765;58877267;141122733;300000 -37766;58873060;141126940;300000 -37767;58868854;141131146;300000 -37768;58864647;141135353;300000 -37769;58860441;141139559;300000 -37770;58856235;141143765;300000 -37771;58852029;141147971;300000 -37772;58847824;141152176;300000 -37773;58843618;141156382;300000 -37774;58839413;141160587;300000 -37775;58835208;141164792;300000 -37776;58831004;141168996;300000 -37777;58826799;141173201;300000 -37778;58822595;141177405;300000 -37779;58818391;141181609;300000 -37780;58814187;141185813;300000 -37781;58809984;141190016;300000 -37782;58805781;141194219;300000 -37783;58801577;141198423;300000 -37784;58797375;141202625;300000 -37785;58793172;141206828;300000 -37786;58788969;141211031;300000 -37787;58784767;141215233;300000 -37788;58780565;141219435;300000 -37789;58776363;141223637;300000 -37790;58772162;141227838;300000 -37791;58767961;141232039;300000 -37792;58763760;141236240;300000 -37793;58759559;141240441;300000 -37794;58755358;141244642;300000 -37795;58751158;141248842;300000 -37796;58746957;141253043;300000 -37797;58742757;141257243;300000 -37798;58738558;141261442;300000 -37799;58734358;141265642;300000 -37800;58730159;141269841;300000 -37801;58725960;141274040;300000 -37802;58721761;141278239;300000 -37803;58717562;141282438;300000 -37804;58713364;141286636;300000 -37805;58709165;141290835;300000 -37806;58704967;141295033;300000 -37807;58700770;141299230;300000 -37808;58696572;141303428;300000 -37809;58692375;141307625;300000 -37810;58688178;141311822;300000 -37811;58683981;141316019;300000 -37812;58679784;141320216;300000 -37813;58675588;141324412;300000 -37814;58671392;141328608;300000 -37815;58667196;141332804;300000 -37816;58663000;141337000;300000 -37817;58658804;141341196;300000 -37818;58654609;141345391;300000 -37819;58650414;141349586;300000 -37820;58646219;141353781;300000 -37821;58642024;141357976;300000 -37822;58637830;141362170;300000 -37823;58633636;141366364;300000 -37824;58629442;141370558;300000 -37825;58625248;141374752;300000 -37826;58621054;141378946;300000 -37827;58616861;141383139;300000 -37828;58612668;141387332;300000 -37829;58608475;141391525;300000 -37830;58604282;141395718;300000 -37831;58600090;141399910;300000 -37832;58595898;141404102;300000 -37833;58591706;141408294;300000 -37834;58587514;141412486;300000 -37835;58583322;141416678;300000 -37836;58579131;141420869;300000 -37837;58574940;141425060;300000 -37838;58570749;141429251;300000 -37839;58566558;141433442;300000 -37840;58562368;141437632;300000 -37841;58558178;141441822;300000 -37842;58553988;141446012;300000 -37843;58549798;141450202;300000 -37844;58545608;141454392;300000 -37845;58541419;141458581;300000 -37846;58537230;141462770;300000 -37847;58533041;141466959;300000 -37848;58528852;141471148;300000 -37849;58524664;141475336;300000 -37850;58520476;141479524;300000 -37851;58516288;141483712;300000 -37852;58512100;141487900;300000 -37853;58507912;141492088;300000 -37854;58503725;141496275;300000 -37855;58499538;141500462;300000 -37856;58495351;141504649;300000 -37857;58491164;141508836;300000 -37858;58486978;141513022;300000 -37859;58482791;141517209;300000 -37860;58478605;141521395;300000 -37861;58474420;141525580;300000 -37862;58470234;141529766;300000 -37863;58466049;141533951;300000 -37864;58461864;141538136;300000 -37865;58457679;141542321;300000 -37866;58453494;141546506;300000 -37867;58449309;141550691;300000 -37868;58445125;141554875;300000 -37869;58440941;141559059;300000 -37870;58436757;141563243;300000 -37871;58432574;141567426;300000 -37872;58428390;141571610;300000 -37873;58424207;141575793;300000 -37874;58420024;141579976;300000 -37875;58415842;141584158;300000 -37876;58411659;141588341;300000 -37877;58407477;141592523;300000 -37878;58403295;141596705;300000 -37879;58399113;141600887;300000 -37880;58394931;141605069;300000 -37881;58390750;141609250;300000 -37882;58386569;141613431;300000 -37883;58382388;141617612;300000 -37884;58378207;141621793;300000 -37885;58374027;141625973;300000 -37886;58369846;141630154;300000 -37887;58365666;141634334;300000 -37888;58361486;141638514;300000 -37889;58357307;141642693;300000 -37890;58353127;141646873;300000 -37891;58348948;141651052;300000 -37892;58344769;141655231;300000 -37893;58340591;141659409;300000 -37894;58336412;141663588;300000 -37895;58332234;141667766;300000 -37896;58328056;141671944;300000 -37897;58323878;141676122;300000 -37898;58319700;141680300;300000 -37899;58315523;141684477;300000 -37900;58311346;141688654;300000 -37901;58307169;141692831;300000 -37902;58302992;141697008;300000 -37903;58298815;141701185;300000 -37904;58294639;141705361;300000 -37905;58290463;141709537;300000 -37906;58286287;141713713;300000 -37907;58282111;141717889;300000 -37908;58277936;141722064;300000 -37909;58273761;141726239;300000 -37910;58269586;141730414;300000 -37911;58265411;141734589;300000 -37912;58261237;141738763;300000 -37913;58257062;141742938;300000 -37914;58252888;141747112;300000 -37915;58248714;141751286;300000 -37916;58244541;141755459;300000 -37917;58240367;141759633;300000 -37918;58236194;141763806;300000 -37919;58232021;141767979;300000 -37920;58227848;141772152;300000 -37921;58223676;141776324;300000 -37922;58219503;141780497;300000 -37923;58215331;141784669;300000 -37924;58211159;141788841;300000 -37925;58206987;141793013;300000 -37926;58202816;141797184;300000 -37927;58198645;141801355;300000 -37928;58194474;141805526;300000 -37929;58190303;141809697;300000 -37930;58186132;141813868;300000 -37931;58181962;141818038;300000 -37932;58177792;141822208;300000 -37933;58173622;141826378;300000 -37934;58169452;141830548;300000 -37935;58165283;141834717;300000 -37936;58161113;141838887;300000 -37937;58156944;141843056;300000 -37938;58152776;141847224;300000 -37939;58148607;141851393;300000 -37940;58144439;141855561;300000 -37941;58140270;141859730;300000 -37942;58136102;141863898;300000 -37943;58131935;141868065;300000 -37944;58127767;141872233;300000 -37945;58123600;141876400;300000 -37946;58119433;141880567;300000 -37947;58115266;141884734;300000 -37948;58111099;141888901;300000 -37949;58106933;141893067;300000 -37950;58102767;141897233;300000 -37951;58098601;141901399;300000 -37952;58094435;141905565;300000 -37953;58090270;141909730;300000 -37954;58086104;141913896;300000 -37955;58081939;141918061;300000 -37956;58077774;141922226;300000 -37957;58073610;141926390;300000 -37958;58069445;141930555;300000 -37959;58065281;141934719;300000 -37960;58061117;141938883;300000 -37961;58056953;141943047;300000 -37962;58052790;141947210;300000 -37963;58048626;141951374;300000 -37964;58044463;141955537;300000 -37965;58040300;141959700;300000 -37966;58036138;141963862;300000 -37967;58031975;141968025;300000 -37968;58027813;141972187;300000 -37969;58023651;141976349;300000 -37970;58019489;141980511;300000 -37971;58015327;141984673;300000 -37972;58011166;141988834;300000 -37973;58007005;141992995;300000 -37974;58002844;141997156;300000 -37975;57998683;142001317;300000 -37976;57994523;142005477;300000 -37977;57990363;142009637;300000 -37978;57986203;142013797;300000 -37979;57982043;142017957;300000 -37980;57977883;142022117;300000 -37981;57973724;142026276;300000 -37982;57969565;142030435;300000 -37983;57965406;142034594;300000 -37984;57961247;142038753;300000 -37985;57957088;142042912;300000 -37986;57952930;142047070;300000 -37987;57948772;142051228;300000 -37988;57944614;142055386;300000 -37989;57940456;142059544;300000 -37990;57936299;142063701;300000 -37991;57932142;142067858;300000 -37992;57927985;142072015;300000 -37993;57923828;142076172;300000 -37994;57919672;142080328;300000 -37995;57915515;142084485;300000 -37996;57911359;142088641;300000 -37997;57907203;142092797;300000 -37998;57903048;142096952;300000 -37999;57898892;142101108;300000 -38000;57894737;142105263;300000 -38001;57890582;142109418;300000 -38002;57886427;142113573;300000 -38003;57882272;142117728;300000 -38004;57878118;142121882;300000 -38005;57873964;142126036;300000 -38006;57869810;142130190;300000 -38007;57865656;142134344;300000 -38008;57861503;142138497;300000 -38009;57857350;142142650;300000 -38010;57853197;142146803;300000 -38011;57849044;142150956;300000 -38012;57844891;142155109;300000 -38013;57840739;142159261;300000 -38014;57836587;142163413;300000 -38015;57832435;142167565;300000 -38016;57828283;142171717;300000 -38017;57824131;142175869;300000 -38018;57819980;142180020;300000 -38019;57815829;142184171;300000 -38020;57811678;142188322;300000 -38021;57807527;142192473;300000 -38022;57803377;142196623;300000 -38023;57799227;142200773;300000 -38024;57795077;142204923;300000 -38025;57790927;142209073;300000 -38026;57786777;142213223;300000 -38027;57782628;142217372;300000 -38028;57778479;142221521;300000 -38029;57774330;142225670;300000 -38030;57770181;142229819;300000 -38031;57766033;142233967;300000 -38032;57761885;142238115;300000 -38033;57757737;142242263;300000 -38034;57753589;142246411;300000 -38035;57749441;142250559;300000 -38036;57745294;142254706;300000 -38037;57741147;142258853;300000 -38038;57737000;142263000;300000 -38039;57732853;142267147;300000 -38040;57728707;142271293;300000 -38041;57724560;142275440;300000 -38042;57720414;142279586;300000 -38043;57716268;142283732;300000 -38044;57712123;142287877;300000 -38045;57707977;142292023;300000 -38046;57703832;142296168;300000 -38047;57699687;142300313;300000 -38048;57695542;142304458;300000 -38049;57691398;142308602;300000 -38050;57687254;142312746;300000 -38051;57683110;142316890;300000 -38052;57678966;142321034;300000 -38053;57674822;142325178;300000 -38054;57670679;142329321;300000 -38055;57666535;142333465;300000 -38056;57662392;142337608;300000 -38057;57658249;142341751;300000 -38058;57654107;142345893;300000 -38059;57649965;142350035;300000 -38060;57645822;142354178;300000 -38061;57641680;142358320;300000 -38062;57637539;142362461;300000 -38063;57633397;142366603;300000 -38064;57629256;142370744;300000 -38065;57625115;142374885;300000 -38066;57620974;142379026;300000 -38067;57616833;142383167;300000 -38068;57612693;142387307;300000 -38069;57608553;142391447;300000 -38070;57604413;142395587;300000 -38071;57600273;142399727;300000 -38072;57596134;142403866;300000 -38073;57591994;142408006;300000 -38074;57587855;142412145;300000 -38075;57583716;142416284;300000 -38076;57579578;142420422;300000 -38077;57575439;142424561;300000 -38078;57571301;142428699;300000 -38079;57567163;142432837;300000 -38080;57563025;142436975;300000 -38081;57558888;142441112;300000 -38082;57554750;142445250;300000 -38083;57550613;142449387;300000 -38084;57546476;142453524;300000 -38085;57542340;142457660;300000 -38086;57538203;142461797;300000 -38087;57534067;142465933;300000 -38088;57529931;142470069;300000 -38089;57525795;142474205;300000 -38090;57521659;142478341;300000 -38091;57517524;142482476;300000 -38092;57513389;142486611;300000 -38093;57509254;142490746;300000 -38094;57505119;142494881;300000 -38095;57500984;142499016;300000 -38096;57496850;142503150;300000 -38097;57492716;142507284;300000 -38098;57488582;142511418;300000 -38099;57484448;142515552;300000 -38100;57480315;142519685;300000 -38101;57476182;142523818;300000 -38102;57472049;142527951;300000 -38103;57467916;142532084;300000 -38104;57463783;142536217;300000 -38105;57459651;142540349;300000 -38106;57455519;142544481;300000 -38107;57451387;142548613;300000 -38108;57447255;142552745;300000 -38109;57443124;142556876;300000 -38110;57438992;142561008;300000 -38111;57434861;142565139;300000 -38112;57430730;142569270;300000 -38113;57426600;142573400;300000 -38114;57422469;142577531;300000 -38115;57418339;142581661;300000 -38116;57414209;142585791;300000 -38117;57410079;142589921;300000 -38118;57405950;142594050;300000 -38119;57401821;142598179;300000 -38120;57397692;142602308;300000 -38121;57393563;142606437;300000 -38122;57389434;142610566;300000 -38123;57385305;142614695;300000 -38124;57381177;142618823;300000 -38125;57377049;142622951;300000 -38126;57372921;142627079;300000 -38127;57368794;142631206;300000 -38128;57364666;142635334;300000 -38129;57360539;142639461;300000 -38130;57356412;142643588;300000 -38131;57352286;142647714;300000 -38132;57348159;142651841;300000 -38133;57344033;142655967;300000 -38134;57339907;142660093;300000 -38135;57335781;142664219;300000 -38136;57331655;142668345;300000 -38137;57327530;142672470;300000 -38138;57323404;142676596;300000 -38139;57319279;142680721;300000 -38140;57315155;142684845;300000 -38141;57311030;142688970;300000 -38142;57306906;142693094;300000 -38143;57302782;142697218;300000 -38144;57298658;142701342;300000 -38145;57294534;142705466;300000 -38146;57290411;142709589;300000 -38147;57286287;142713713;300000 -38148;57282164;142717836;300000 -38149;57278041;142721959;300000 -38150;57273919;142726081;300000 -38151;57269796;142730204;300000 -38152;57265674;142734326;300000 -38153;57261552;142738448;300000 -38154;57257430;142742570;300000 -38155;57253309;142746691;300000 -38156;57249188;142750812;300000 -38157;57245066;142754934;300000 -38158;57240946;142759054;300000 -38159;57236825;142763175;300000 -38160;57232704;142767296;300000 -38161;57228584;142771416;300000 -38162;57224464;142775536;300000 -38163;57220344;142779656;300000 -38164;57216225;142783775;300000 -38165;57212105;142787895;300000 -38166;57207986;142792014;300000 -38167;57203867;142796133;300000 -38168;57199748;142800252;300000 -38169;57195630;142804370;300000 -38170;57191512;142808488;300000 -38171;57187394;142812606;300000 -38172;57183276;142816724;300000 -38173;57179158;142820842;300000 -38174;57175041;142824959;300000 -38175;57170923;142829077;300000 -38176;57166806;142833194;300000 -38177;57162690;142837310;300000 -38178;57158573;142841427;300000 -38179;57154457;142845543;300000 -38180;57150340;142849660;300000 -38181;57146225;142853775;300000 -38182;57142109;142857891;300000 -38183;57137993;142862007;300000 -38184;57133878;142866122;300000 -38185;57129763;142870237;300000 -38186;57125648;142874352;300000 -38187;57121534;142878466;300000 -38188;57117419;142882581;300000 -38189;57113305;142886695;300000 -38190;57109191;142890809;300000 -38191;57105077;142894923;300000 -38192;57100964;142899036;300000 -38193;57096850;142903150;300000 -38194;57092737;142907263;300000 -38195;57088624;142911376;300000 -38196;57084511;142915489;300000 -38197;57080399;142919601;300000 -38198;57076287;142923713;300000 -38199;57072175;142927825;300000 -38200;57068063;142931937;300000 -38201;57063951;142936049;300000 -38202;57059840;142940160;300000 -38203;57055729;142944271;300000 -38204;57051618;142948382;300000 -38205;57047507;142952493;300000 -38206;57043396;142956604;300000 -38207;57039286;142960714;300000 -38208;57035176;142964824;300000 -38209;57031066;142968934;300000 -38210;57026956;142973044;300000 -38211;57022847;142977153;300000 -38212;57018738;142981262;300000 -38213;57014629;142985371;300000 -38214;57010520;142989480;300000 -38215;57006411;142993589;300000 -38216;57002303;142997697;300000 -38217;56998195;143001805;300000 -38218;56994087;143005913;300000 -38219;56989979;143010021;300000 -38220;56985871;143014129;300000 -38221;56981764;143018236;300000 -38222;56977657;143022343;300000 -38223;56973550;143026450;300000 -38224;56969443;143030557;300000 -38225;56965337;143034663;300000 -38226;56961231;143038769;300000 -38227;56957125;143042875;300000 -38228;56953019;143046981;300000 -38229;56948913;143051087;300000 -38230;56944808;143055192;300000 -38231;56940703;143059297;300000 -38232;56936598;143063402;300000 -38233;56932493;143067507;300000 -38234;56928388;143071612;300000 -38235;56924284;143075716;300000 -38236;56920180;143079820;300000 -38237;56916076;143083924;300000 -38238;56911972;143088028;300000 -38239;56907869;143092131;300000 -38240;56903766;143096234;300000 -38241;56899663;143100337;300000 -38242;56895560;143104440;300000 -38243;56891457;143108543;300000 -38244;56887355;143112645;300000 -38245;56883253;143116747;300000 -38246;56879151;143120849;300000 -38247;56875049;143124951;300000 -38248;56870948;143129052;300000 -38249;56866846;143133154;300000 -38250;56862745;143137255;300000 -38251;56858644;143141356;300000 -38252;56854544;143145456;300000 -38253;56850443;143149557;300000 -38254;56846343;143153657;300000 -38255;56842243;143157757;300000 -38256;56838143;143161857;300000 -38257;56834043;143165957;300000 -38258;56829944;143170056;300000 -38259;56825845;143174155;300000 -38260;56821746;143178254;300000 -38261;56817647;143182353;300000 -38262;56813549;143186451;300000 -38263;56809450;143190550;300000 -38264;56805352;143194648;300000 -38265;56801254;143198746;300000 -38266;56797157;143202843;300000 -38267;56793059;143206941;300000 -38268;56788962;143211038;300000 -38269;56784865;143215135;300000 -38270;56780768;143219232;300000 -38271;56776672;143223328;300000 -38272;56772575;143227425;300000 -38273;56768479;143231521;300000 -38274;56764383;143235617;300000 -38275;56760287;143239713;300000 -38276;56756192;143243808;300000 -38277;56752097;143247903;300000 -38278;56748001;143251999;300000 -38279;56743907;143256093;300000 -38280;56739812;143260188;300000 -38281;56735717;143264283;300000 -38282;56731623;143268377;300000 -38283;56727529;143272471;300000 -38284;56723435;143276565;300000 -38285;56719342;143280658;300000 -38286;56715248;143284752;300000 -38287;56711155;143288845;300000 -38288;56707062;143292938;300000 -38289;56702970;143297030;300000 -38290;56698877;143301123;300000 -38291;56694785;143305215;300000 -38292;56690693;143309307;300000 -38293;56686601;143313399;300000 -38294;56682509;143317491;300000 -38295;56678418;143321582;300000 -38296;56674326;143325674;300000 -38297;56670235;143329765;300000 -38298;56666144;143333856;300000 -38299;56662054;143337946;300000 -38300;56657963;143342037;300000 -38301;56653873;143346127;300000 -38302;56649783;143350217;300000 -38303;56645694;143354306;300000 -38304;56641604;143358396;300000 -38305;56637515;143362485;300000 -38306;56633426;143366574;300000 -38307;56629337;143370663;300000 -38308;56625248;143374752;300000 -38309;56621160;143378840;300000 -38310;56617071;143382929;300000 -38311;56612983;143387017;300000 -38312;56608895;143391105;300000 -38313;56604808;143395192;300000 -38314;56600720;143399280;300000 -38315;56596633;143403367;300000 -38316;56592546;143407454;300000 -38317;56588459;143411541;300000 -38318;56584373;143415627;300000 -38319;56580287;143419713;300000 -38320;56576200;143423800;300000 -38321;56572115;143427885;300000 -38322;56568029;143431971;300000 -38323;56563943;143436057;300000 -38324;56559858;143440142;300000 -38325;56555773;143444227;300000 -38326;56551688;143448312;300000 -38327;56547604;143452396;300000 -38328;56543519;143456481;300000 -38329;56539435;143460565;300000 -38330;56535351;143464649;300000 -38331;56531267;143468733;300000 -38332;56527184;143472816;300000 -38333;56523100;143476900;300000 -38334;56519017;143480983;300000 -38335;56514934;143485066;300000 -38336;56510851;143489149;300000 -38337;56506769;143493231;300000 -38338;56502687;143497313;300000 -38339;56498605;143501395;300000 -38340;56494523;143505477;300000 -38341;56490441;143509559;300000 -38342;56486360;143513640;300000 -38343;56482278;143517722;300000 -38344;56478197;143521803;300000 -38345;56474117;143525883;300000 -38346;56470036;143529964;300000 -38347;56465956;143534044;300000 -38348;56461875;143538125;300000 -38349;56457796;143542204;300000 -38350;56453716;143546284;300000 -38351;56449636;143550364;300000 -38352;56445557;143554443;300000 -38353;56441478;143558522;300000 -38354;56437399;143562601;300000 -38355;56433320;143566680;300000 -38356;56429242;143570758;300000 -38357;56425164;143574836;300000 -38358;56421086;143578914;300000 -38359;56417008;143582992;300000 -38360;56412930;143587070;300000 -38361;56408853;143591147;300000 -38362;56404776;143595224;300000 -38363;56400699;143599301;300000 -38364;56396622;143603378;300000 -38365;56392545;143607455;300000 -38366;56388469;143611531;300000 -38367;56384393;143615607;300000 -38368;56380317;143619683;300000 -38369;56376241;143623759;300000 -38370;56372166;143627834;300000 -38371;56368090;143631910;300000 -38372;56364015;143635985;300000 -38373;56359941;143640059;300000 -38374;56355866;143644134;300000 -38375;56351792;143648208;300000 -38376;56347717;143652283;300000 -38377;56343643;143656357;300000 -38378;56339570;143660430;300000 -38379;56335496;143664504;300000 -38380;56331423;143668577;300000 -38381;56327349;143672651;300000 -38382;56323277;143676723;300000 -38383;56319204;143680796;300000 -38384;56315131;143684869;300000 -38385;56311059;143688941;300000 -38386;56306987;143693013;300000 -38387;56302915;143697085;300000 -38388;56298843;143701157;300000 -38389;56294772;143705228;300000 -38390;56290701;143709299;300000 -38391;56286630;143713370;300000 -38392;56282559;143717441;300000 -38393;56278488;143721512;300000 -38394;56274418;143725582;300000 -38395;56270348;143729652;300000 -38396;56266278;143733722;300000 -38397;56262208;143737792;300000 -38398;56258138;143741862;300000 -38399;56254069;143745931;300000 -38400;56250000;143750000;300000 -38401;56245931;143754069;300000 -38402;56241862;143758138;300000 -38403;56237794;143762206;300000 -38404;56233726;143766274;300000 -38405;56229658;143770342;300000 -38406;56225590;143774410;300000 -38407;56221522;143778478;300000 -38408;56217455;143782545;300000 -38409;56213387;143786613;300000 -38410;56209320;143790680;300000 -38411;56205254;143794746;300000 -38412;56201187;143798813;300000 -38413;56197121;143802879;300000 -38414;56193055;143806945;300000 -38415;56188989;143811011;300000 -38416;56184923;143815077;300000 -38417;56180857;143819143;300000 -38418;56176792;143823208;300000 -38419;56172727;143827273;300000 -38420;56168662;143831338;300000 -38421;56164597;143835403;300000 -38422;56160533;143839467;300000 -38423;56156469;143843531;300000 -38424;56152405;143847595;300000 -38425;56148341;143851659;300000 -38426;56144277;143855723;300000 -38427;56140214;143859786;300000 -38428;56136151;143863849;300000 -38429;56132088;143867912;300000 -38430;56128025;143871975;300000 -38431;56123962;143876038;300000 -38432;56119900;143880100;300000 -38433;56115838;143884162;300000 -38434;56111776;143888224;300000 -38435;56107714;143892286;300000 -38436;56103653;143896347;300000 -38437;56099592;143900408;300000 -38438;56095530;143904470;300000 -38439;56091470;143908530;300000 -38440;56087409;143912591;300000 -38441;56083349;143916651;300000 -38442;56079288;143920712;300000 -38443;56075228;143924772;300000 -38444;56071168;143928832;300000 -38445;56067109;143932891;300000 -38446;56063049;143936951;300000 -38447;56058990;143941010;300000 -38448;56054931;143945069;300000 -38449;56050873;143949127;300000 -38450;56046814;143953186;300000 -38451;56042756;143957244;300000 -38452;56038698;143961302;300000 -38453;56034640;143965360;300000 -38454;56030582;143969418;300000 -38455;56026525;143973475;300000 -38456;56022467;143977533;300000 -38457;56018410;143981590;300000 -38458;56014353;143985647;300000 -38459;56010297;143989703;300000 -38460;56006240;143993760;300000 -38461;56002184;143997816;300000 -38462;55998128;144001872;300000 -38463;55994072;144005928;300000 -38464;55990017;144009983;300000 -38465;55985961;144014039;300000 -38466;55981906;144018094;300000 -38467;55977851;144022149;300000 -38468;55973796;144026204;300000 -38469;55969742;144030258;300000 -38470;55965688;144034312;300000 -38471;55961633;144038367;300000 -38472;55957580;144042420;300000 -38473;55953526;144046474;300000 -38474;55949472;144050528;300000 -38475;55945419;144054581;300000 -38476;55941366;144058634;300000 -38477;55937313;144062687;300000 -38478;55933261;144066739;300000 -38479;55929208;144070792;300000 -38480;55925156;144074844;300000 -38481;55921104;144078896;300000 -38482;55917052;144082948;300000 -38483;55913001;144086999;300000 -38484;55908949;144091051;300000 -38485;55904898;144095102;300000 -38486;55900847;144099153;300000 -38487;55896796;144103204;300000 -38488;55892746;144107254;300000 -38489;55888695;144111305;300000 -38490;55884645;144115355;300000 -38491;55880595;144119405;300000 -38492;55876546;144123454;300000 -38493;55872496;144127504;300000 -38494;55868447;144131553;300000 -38495;55864398;144135602;300000 -38496;55860349;144139651;300000 -38497;55856300;144143700;300000 -38498;55852252;144147748;300000 -38499;55848204;144151796;300000 -38500;55844156;144155844;300000 -38501;55840108;144159892;300000 -38502;55836060;144163940;300000 -38503;55832013;144167987;300000 -38504;55827966;144172034;300000 -38505;55823919;144176081;300000 -38506;55819872;144180128;300000 -38507;55815826;144184174;300000 -38508;55811779;144188221;300000 -38509;55807733;144192267;300000 -38510;55803687;144196313;300000 -38511;55799642;144200358;300000 -38512;55795596;144204404;300000 -38513;55791551;144208449;300000 -38514;55787506;144212494;300000 -38515;55783461;144216539;300000 -38516;55779416;144220584;300000 -38517;55775372;144224628;300000 -38518;55771328;144228672;300000 -38519;55767284;144232716;300000 -38520;55763240;144236760;300000 -38521;55759196;144240804;300000 -38522;55755153;144244847;300000 -38523;55751110;144248890;300000 -38524;55747067;144252933;300000 -38525;55743024;144256976;300000 -38526;55738981;144261019;300000 -38527;55734939;144265061;300000 -38528;55730897;144269103;300000 -38529;55726855;144273145;300000 -38530;55722813;144277187;300000 -38531;55718772;144281228;300000 -38532;55714731;144285269;300000 -38533;55710690;144289310;300000 -38534;55706649;144293351;300000 -38535;55702608;144297392;300000 -38536;55698568;144301432;300000 -38537;55694527;144305473;300000 -38538;55690487;144309513;300000 -38539;55686447;144313553;300000 -38540;55682408;144317592;300000 -38541;55678368;144321632;300000 -38542;55674329;144325671;300000 -38543;55670290;144329710;300000 -38544;55666252;144333748;300000 -38545;55662213;144337787;300000 -38546;55658175;144341825;300000 -38547;55654137;144345863;300000 -38548;55650099;144349901;300000 -38549;55646061;144353939;300000 -38550;55642023;144357977;300000 -38551;55637986;144362014;300000 -38552;55633949;144366051;300000 -38553;55629912;144370088;300000 -38554;55625875;144374125;300000 -38555;55621839;144378161;300000 -38556;55617803;144382197;300000 -38557;55613767;144386233;300000 -38558;55609731;144390269;300000 -38559;55605695;144394305;300000 -38560;55601660;144398340;300000 -38561;55597625;144402375;300000 -38562;55593590;144406410;300000 -38563;55589555;144410445;300000 -38564;55585520;144414480;300000 -38565;55581486;144418514;300000 -38566;55577452;144422548;300000 -38567;55573418;144426582;300000 -38568;55569384;144430616;300000 -38569;55565350;144434650;300000 -38570;55561317;144438683;300000 -38571;55557284;144442716;300000 -38572;55553251;144446749;300000 -38573;55549218;144450782;300000 -38574;55545186;144454814;300000 -38575;55541154;144458846;300000 -38576;55537122;144462878;300000 -38577;55533090;144466910;300000 -38578;55529058;144470942;300000 -38579;55525027;144474973;300000 -38580;55520995;144479005;300000 -38581;55516964;144483036;300000 -38582;55512933;144487067;300000 -38583;55508903;144491097;300000 -38584;55504872;144495128;300000 -38585;55500842;144499158;300000 -38586;55496812;144503188;300000 -38587;55492783;144507217;300000 -38588;55488753;144511247;300000 -38589;55484724;144515276;300000 -38590;55480694;144519306;300000 -38591;55476666;144523334;300000 -38592;55472637;144527363;300000 -38593;55468608;144531392;300000 -38594;55464580;144535420;300000 -38595;55460552;144539448;300000 -38596;55456524;144543476;300000 -38597;55452496;144547504;300000 -38598;55448469;144551531;300000 -38599;55444442;144555558;300000 -38600;55440415;144559585;300000 -38601;55436388;144563612;300000 -38602;55432361;144567639;300000 -38603;55428335;144571665;300000 -38604;55424308;144575692;300000 -38605;55420282;144579718;300000 -38606;55416257;144583743;300000 -38607;55412231;144587769;300000 -38608;55408206;144591794;300000 -38609;55404180;144595820;300000 -38610;55400155;144599845;300000 -38611;55396131;144603869;300000 -38612;55392106;144607894;300000 -38613;55388082;144611918;300000 -38614;55384058;144615942;300000 -38615;55380034;144619966;300000 -38616;55376010;144623990;300000 -38617;55371986;144628014;300000 -38618;55367963;144632037;300000 -38619;55363940;144636060;300000 -38620;55359917;144640083;300000 -38621;55355894;144644106;300000 -38622;55351872;144648128;300000 -38623;55347850;144652150;300000 -38624;55343828;144656172;300000 -38625;55339806;144660194;300000 -38626;55335784;144664216;300000 -38627;55331763;144668237;300000 -38628;55327742;144672258;300000 -38629;55323721;144676279;300000 -38630;55319700;144680300;300000 -38631;55315679;144684321;300000 -38632;55311659;144688341;300000 -38633;55307639;144692361;300000 -38634;55303619;144696381;300000 -38635;55299599;144700401;300000 -38636;55295579;144704421;300000 -38637;55291560;144708440;300000 -38638;55287541;144712459;300000 -38639;55283522;144716478;300000 -38640;55279503;144720497;300000 -38641;55275485;144724515;300000 -38642;55271466;144728534;300000 -38643;55267448;144732552;300000 -38644;55263430;144736570;300000 -38645;55259413;144740587;300000 -38646;55255395;144744605;300000 -38647;55251378;144748622;300000 -38648;55247361;144752639;300000 -38649;55243344;144756656;300000 -38650;55239327;144760673;300000 -38651;55235311;144764689;300000 -38652;55231295;144768705;300000 -38653;55227279;144772721;300000 -38654;55223263;144776737;300000 -38655;55219247;144780753;300000 -38656;55215232;144784768;300000 -38657;55211217;144788783;300000 -38658;55207202;144792798;300000 -38659;55203187;144796813;300000 -38660;55199172;144800828;300000 -38661;55195158;144804842;300000 -38662;55191144;144808856;300000 -38663;55187130;144812870;300000 -38664;55183116;144816884;300000 -38665;55179103;144820897;300000 -38666;55175089;144824911;300000 -38667;55171076;144828924;300000 -38668;55167063;144832937;300000 -38669;55163051;144836949;300000 -38670;55159038;144840962;300000 -38671;55155026;144844974;300000 -38672;55151014;144848986;300000 -38673;55147002;144852998;300000 -38674;55142990;144857010;300000 -38675;55138979;144861021;300000 -38676;55134967;144865033;300000 -38677;55130956;144869044;300000 -38678;55126946;144873054;300000 -38679;55122935;144877065;300000 -38680;55118925;144881075;300000 -38681;55114914;144885086;300000 -38682;55110904;144889096;300000 -38683;55106895;144893105;300000 -38684;55102885;144897115;300000 -38685;55098876;144901124;300000 -38686;55094866;144905134;300000 -38687;55090857;144909143;300000 -38688;55086849;144913151;300000 -38689;55082840;144917160;300000 -38690;55078832;144921168;300000 -38691;55074824;144925176;300000 -38692;55070816;144929184;300000 -38693;55066808;144933192;300000 -38694;55062800;144937200;300000 -38695;55058793;144941207;300000 -38696;55054786;144945214;300000 -38697;55050779;144949221;300000 -38698;55046772;144953228;300000 -38699;55042766;144957234;300000 -38700;55038760;144961240;300000 -38701;55034754;144965246;300000 -38702;55030748;144969252;300000 -38703;55026742;144973258;300000 -38704;55022737;144977263;300000 -38705;55018731;144981269;300000 -38706;55014726;144985274;300000 -38707;55010722;144989278;300000 -38708;55006717;144993283;300000 -38709;55002713;144997287;300000 -38710;54998708;145001292;300000 -38711;54994704;145005296;300000 -38712;54990701;145009299;300000 -38713;54986697;145013303;300000 -38714;54982694;145017306;300000 -38715;54978690;145021310;300000 -38716;54974687;145025313;300000 -38717;54970685;145029315;300000 -38718;54966682;145033318;300000 -38719;54962680;145037320;300000 -38720;54958678;145041322;300000 -38721;54954676;145045324;300000 -38722;54950674;145049326;300000 -38723;54946673;145053327;300000 -38724;54942671;145057329;300000 -38725;54938670;145061330;300000 -38726;54934669;145065331;300000 -38727;54930669;145069331;300000 -38728;54926668;145073332;300000 -38729;54922668;145077332;300000 -38730;54918668;145081332;300000 -38731;54914668;145085332;300000 -38732;54910668;145089332;300000 -38733;54906669;145093331;300000 -38734;54902669;145097331;300000 -38735;54898670;145101330;300000 -38736;54894672;145105328;300000 -38737;54890673;145109327;300000 -38738;54886675;145113325;300000 -38739;54882676;145117324;300000 -38740;54878678;145121322;300000 -38741;54874681;145125319;300000 -38742;54870683;145129317;300000 -38743;54866686;145133314;300000 -38744;54862688;145137312;300000 -38745;54858691;145141309;300000 -38746;54854695;145145305;300000 -38747;54850698;145149302;300000 -38748;54846702;145153298;300000 -38749;54842706;145157294;300000 -38750;54838710;145161290;300000 -38751;54834714;145165286;300000 -38752;54830718;145169282;300000 -38753;54826723;145173277;300000 -38754;54822728;145177272;300000 -38755;54818733;145181267;300000 -38756;54814738;145185262;300000 -38757;54810744;145189256;300000 -38758;54806750;145193250;300000 -38759;54802755;145197245;300000 -38760;54798762;145201238;300000 -38761;54794768;145205232;300000 -38762;54790774;145209226;300000 -38763;54786781;145213219;300000 -38764;54782788;145217212;300000 -38765;54778795;145221205;300000 -38766;54774803;145225197;300000 -38767;54770810;145229190;300000 -38768;54766818;145233182;300000 -38769;54762826;145237174;300000 -38770;54758834;145241166;300000 -38771;54754843;145245157;300000 -38772;54750851;145249149;300000 -38773;54746860;145253140;300000 -38774;54742869;145257131;300000 -38775;54738878;145261122;300000 -38776;54734888;145265112;300000 -38777;54730897;145269103;300000 -38778;54726907;145273093;300000 -38779;54722917;145277083;300000 -38780;54718927;145281073;300000 -38781;54714938;145285062;300000 -38782;54710948;145289052;300000 -38783;54706959;145293041;300000 -38784;54702970;145297030;300000 -38785;54698982;145301018;300000 -38786;54694993;145305007;300000 -38787;54691005;145308995;300000 -38788;54687017;145312983;300000 -38789;54683029;145316971;300000 -38790;54679041;145320959;300000 -38791;54675053;145324947;300000 -38792;54671066;145328934;300000 -38793;54667079;145332921;300000 -38794;54663092;145336908;300000 -38795;54659106;145340894;300000 -38796;54655119;145344881;300000 -38797;54651133;145348867;300000 -38798;54647147;145352853;300000 -38799;54643161;145356839;300000 -38800;54639175;145360825;300000 -38801;54635190;145364810;300000 -38802;54631205;145368795;300000 -38803;54627220;145372780;300000 -38804;54623235;145376765;300000 -38805;54619250;145380750;300000 -38806;54615266;145384734;300000 -38807;54611281;145388719;300000 -38808;54607297;145392703;300000 -38809;54603314;145396686;300000 -38810;54599330;145400670;300000 -38811;54595347;145404653;300000 -38812;54591363;145408637;300000 -38813;54587381;145412619;300000 -38814;54583398;145416602;300000 -38815;54579415;145420585;300000 -38816;54575433;145424567;300000 -38817;54571451;145428549;300000 -38818;54567469;145432531;300000 -38819;54563487;145436513;300000 -38820;54559505;145440495;300000 -38821;54555524;145444476;300000 -38822;54551543;145448457;300000 -38823;54547562;145452438;300000 -38824;54543581;145456419;300000 -38825;54539601;145460399;300000 -38826;54535620;145464380;300000 -38827;54531640;145468360;300000 -38828;54527660;145472340;300000 -38829;54523681;145476319;300000 -38830;54519701;145480299;300000 -38831;54515722;145484278;300000 -38832;54511743;145488257;300000 -38833;54507764;145492236;300000 -38834;54503785;145496215;300000 -38835;54499807;145500193;300000 -38836;54495829;145504171;300000 -38837;54491851;145508149;300000 -38838;54487873;145512127;300000 -38839;54483895;145516105;300000 -38840;54479918;145520082;300000 -38841;54475940;145524060;300000 -38842;54471963;145528037;300000 -38843;54467987;145532013;300000 -38844;54464010;145535990;300000 -38845;54460033;145539967;300000 -38846;54456057;145543943;300000 -38847;54452081;145547919;300000 -38848;54448105;145551895;300000 -38849;54444130;145555870;300000 -38850;54440154;145559846;300000 -38851;54436179;145563821;300000 -38852;54432204;145567796;300000 -38853;54428229;145571771;300000 -38854;54424255;145575745;300000 -38855;54420281;145579719;300000 -38856;54416306;145583694;300000 -38857;54412332;145587668;300000 -38858;54408359;145591641;300000 -38859;54404385;145595615;300000 -38860;54400412;145599588;300000 -38861;54396439;145603561;300000 -38862;54392466;145607534;300000 -38863;54388493;145611507;300000 -38864;54384520;145615480;300000 -38865;54380548;145619452;300000 -38866;54376576;145623424;300000 -38867;54372604;145627396;300000 -38868;54368632;145631368;300000 -38869;54364661;145635339;300000 -38870;54360689;145639311;300000 -38871;54356718;145643282;300000 -38872;54352747;145647253;300000 -38873;54348777;145651223;300000 -38874;54344806;145655194;300000 -38875;54340836;145659164;300000 -38876;54336866;145663134;300000 -38877;54332896;145667104;300000 -38878;54328926;145671074;300000 -38879;54324957;145675043;300000 -38880;54320988;145679012;300000 -38881;54317019;145682981;300000 -38882;54313050;145686950;300000 -38883;54309081;145690919;300000 -38884;54305113;145694887;300000 -38885;54301144;145698856;300000 -38886;54297176;145702824;300000 -38887;54293209;145706791;300000 -38888;54289241;145710759;300000 -38889;54285273;145714727;300000 -38890;54281306;145718694;300000 -38891;54277339;145722661;300000 -38892;54273372;145726628;300000 -38893;54269406;145730594;300000 -38894;54265439;145734561;300000 -38895;54261473;145738527;300000 -38896;54257507;145742493;300000 -38897;54253541;145746459;300000 -38898;54249576;145750424;300000 -38899;54245610;145754390;300000 -38900;54241645;145758355;300000 -38901;54237680;145762320;300000 -38902;54233715;145766285;300000 -38903;54229751;145770249;300000 -38904;54225787;145774213;300000 -38905;54221822;145778178;300000 -38906;54217858;145782142;300000 -38907;54213895;145786105;300000 -38908;54209931;145790069;300000 -38909;54205968;145794032;300000 -38910;54202005;145797995;300000 -38911;54198042;145801958;300000 -38912;54194079;145805921;300000 -38913;54190116;145809884;300000 -38914;54186154;145813846;300000 -38915;54182192;145817808;300000 -38916;54178230;145821770;300000 -38917;54174268;145825732;300000 -38918;54170307;145829693;300000 -38919;54166345;145833655;300000 -38920;54162384;145837616;300000 -38921;54158423;145841577;300000 -38922;54154463;145845537;300000 -38923;54150502;145849498;300000 -38924;54146542;145853458;300000 -38925;54142582;145857418;300000 -38926;54138622;145861378;300000 -38927;54134662;145865338;300000 -38928;54130703;145869297;300000 -38929;54126744;145873256;300000 -38930;54122784;145877216;300000 -38931;54118826;145881174;300000 -38932;54114867;145885133;300000 -38933;54110908;145889092;300000 -38934;54106950;145893050;300000 -38935;54102992;145897008;300000 -38936;54099034;145900966;300000 -38937;54095077;145904923;300000 -38938;54091119;145908881;300000 -38939;54087162;145912838;300000 -38940;54083205;145916795;300000 -38941;54079248;145920752;300000 -38942;54075291;145924709;300000 -38943;54071335;145928665;300000 -38944;54067379;145932621;300000 -38945;54063423;145936577;300000 -38946;54059467;145940533;300000 -38947;54055511;145944489;300000 -38948;54051556;145948444;300000 -38949;54047601;145952399;300000 -38950;54043646;145956354;300000 -38951;54039691;145960309;300000 -38952;54035736;145964264;300000 -38953;54031782;145968218;300000 -38954;54027828;145972172;300000 -38955;54023874;145976126;300000 -38956;54019920;145980080;300000 -38957;54015966;145984034;300000 -38958;54012013;145987987;300000 -38959;54008060;145991940;300000 -38960;54004107;145995893;300000 -38961;54000154;145999846;300000 -38962;53996201;146003799;300000 -38963;53992249;146007751;300000 -38964;53988297;146011703;300000 -38965;53984345;146015655;300000 -38966;53980393;146019607;300000 -38967;53976442;146023558;300000 -38968;53972490;146027510;300000 -38969;53968539;146031461;300000 -38970;53964588;146035412;300000 -38971;53960637;146039363;300000 -38972;53956687;146043313;300000 -38973;53952737;146047263;300000 -38974;53948786;146051214;300000 -38975;53944836;146055164;300000 -38976;53940887;146059113;300000 -38977;53936937;146063063;300000 -38978;53932988;146067012;300000 -38979;53929039;146070961;300000 -38980;53925090;146074910;300000 -38981;53921141;146078859;300000 -38982;53917193;146082807;300000 -38983;53913244;146086756;300000 -38984;53909296;146090704;300000 -38985;53905348;146094652;300000 -38986;53901401;146098599;300000 -38987;53897453;146102547;300000 -38988;53893506;146106494;300000 -38989;53889559;146110441;300000 -38990;53885612;146114388;300000 -38991;53881665;146118335;300000 -38992;53877719;146122281;300000 -38993;53873772;146126228;300000 -38994;53869826;146130174;300000 -38995;53865880;146134120;300000 -38996;53861935;146138065;300000 -38997;53857989;146142011;300000 -38998;53854044;146145956;300000 -38999;53850099;146149901;300000 -39000;53846154;146153846;300000 -39001;53842209;146157791;300000 -39002;53838265;146161735;300000 -39003;53834320;146165680;300000 -39004;53830376;146169624;300000 -39005;53826433;146173567;300000 -39006;53822489;146177511;300000 -39007;53818545;146181455;300000 -39008;53814602;146185398;300000 -39009;53810659;146189341;300000 -39010;53806716;146193284;300000 -39011;53802774;146197226;300000 -39012;53798831;146201169;300000 -39013;53794889;146205111;300000 -39014;53790947;146209053;300000 -39015;53787005;146212995;300000 -39016;53783063;146216937;300000 -39017;53779122;146220878;300000 -39018;53775181;146224819;300000 -39019;53771240;146228760;300000 -39020;53767299;146232701;300000 -39021;53763358;146236642;300000 -39022;53759418;146240582;300000 -39023;53755478;146244522;300000 -39024;53751538;146248462;300000 -39025;53747598;146252402;300000 -39026;53743658;146256342;300000 -39027;53739719;146260281;300000 -39028;53735779;146264221;300000 -39029;53731840;146268160;300000 -39030;53727902;146272098;300000 -39031;53723963;146276037;300000 -39032;53720025;146279975;300000 -39033;53716086;146283914;300000 -39034;53712148;146287852;300000 -39035;53708211;146291789;300000 -39036;53704273;146295727;300000 -39037;53700336;146299664;300000 -39038;53696398;146303602;300000 -39039;53692461;146307539;300000 -39040;53688525;146311475;300000 -39041;53684588;146315412;300000 -39042;53680652;146319348;300000 -39043;53676715;146323285;300000 -39044;53672779;146327221;300000 -39045;53668844;146331156;300000 -39046;53664908;146335092;300000 -39047;53660973;146339027;300000 -39048;53657037;146342963;300000 -39049;53653103;146346897;300000 -39050;53649168;146350832;300000 -39051;53645233;146354767;300000 -39052;53641299;146358701;300000 -39053;53637365;146362635;300000 -39054;53633431;146366569;300000 -39055;53629497;146370503;300000 -39056;53625563;146374437;300000 -39057;53621630;146378370;300000 -39058;53617697;146382303;300000 -39059;53613764;146386236;300000 -39060;53609831;146390169;300000 -39061;53605898;146394102;300000 -39062;53601966;146398034;300000 -39063;53598034;146401966;300000 -39064;53594102;146405898;300000 -39065;53590170;146409830;300000 -39066;53586239;146413761;300000 -39067;53582307;146417693;300000 -39068;53578376;146421624;300000 -39069;53574445;146425555;300000 -39070;53570514;146429486;300000 -39071;53566584;146433416;300000 -39072;53562654;146437346;300000 -39073;53558723;146441277;300000 -39074;53554793;146445207;300000 -39075;53550864;146449136;300000 -39076;53546934;146453066;300000 -39077;53543005;146456995;300000 -39078;53539076;146460924;300000 -39079;53535147;146464853;300000 -39080;53531218;146468782;300000 -39081;53527289;146472711;300000 -39082;53523361;146476639;300000 -39083;53519433;146480567;300000 -39084;53515505;146484495;300000 -39085;53511577;146488423;300000 -39086;53507650;146492350;300000 -39087;53503722;146496278;300000 -39088;53499795;146500205;300000 -39089;53495868;146504132;300000 -39090;53491942;146508058;300000 -39091;53488015;146511985;300000 -39092;53484089;146515911;300000 -39093;53480163;146519837;300000 -39094;53476237;146523763;300000 -39095;53472311;146527689;300000 -39096;53468386;146531614;300000 -39097;53464460;146535540;300000 -39098;53460535;146539465;300000 -39099;53456610;146543390;300000 -39100;53452685;146547315;300000 -39101;53448761;146551239;300000 -39102;53444837;146555163;300000 -39103;53440912;146559088;300000 -39104;53436989;146563011;300000 -39105;53433065;146566935;300000 -39106;53429141;146570859;300000 -39107;53425218;146574782;300000 -39108;53421295;146578705;300000 -39109;53417372;146582628;300000 -39110;53413449;146586551;300000 -39111;53409527;146590473;300000 -39112;53405604;146594396;300000 -39113;53401682;146598318;300000 -39114;53397760;146602240;300000 -39115;53393839;146606161;300000 -39116;53389917;146610083;300000 -39117;53385996;146614004;300000 -39118;53382075;146617925;300000 -39119;53378154;146621846;300000 -39120;53374233;146625767;300000 -39121;53370313;146629687;300000 -39122;53366392;146633608;300000 -39123;53362472;146637528;300000 -39124;53358552;146641448;300000 -39125;53354633;146645367;300000 -39126;53350713;146649287;300000 -39127;53346794;146653206;300000 -39128;53342875;146657125;300000 -39129;53338956;146661044;300000 -39130;53335037;146664963;300000 -39131;53331119;146668881;300000 -39132;53327200;146672800;300000 -39133;53323282;146676718;300000 -39134;53319364;146680636;300000 -39135;53315447;146684553;300000 -39136;53311529;146688471;300000 -39137;53307612;146692388;300000 -39138;53303695;146696305;300000 -39139;53299778;146700222;300000 -39140;53295861;146704139;300000 -39141;53291945;146708055;300000 -39142;53288028;146711972;300000 -39143;53284112;146715888;300000 -39144;53280196;146719804;300000 -39145;53276280;146723720;300000 -39146;53272365;146727635;300000 -39147;53268450;146731550;300000 -39148;53264535;146735465;300000 -39149;53260620;146739380;300000 -39150;53256705;146743295;300000 -39151;53252790;146747210;300000 -39152;53248876;146751124;300000 -39153;53244962;146755038;300000 -39154;53241048;146758952;300000 -39155;53237134;146762866;300000 -39156;53233221;146766779;300000 -39157;53229308;146770692;300000 -39158;53225395;146774605;300000 -39159;53221482;146778518;300000 -39160;53217569;146782431;300000 -39161;53213656;146786344;300000 -39162;53209744;146790256;300000 -39163;53205832;146794168;300000 -39164;53201920;146798080;300000 -39165;53198008;146801992;300000 -39166;53194097;146805903;300000 -39167;53190186;146809814;300000 -39168;53186275;146813725;300000 -39169;53182364;146817636;300000 -39170;53178453;146821547;300000 -39171;53174542;146825458;300000 -39172;53170632;146829368;300000 -39173;53166722;146833278;300000 -39174;53162812;146837188;300000 -39175;53158902;146841098;300000 -39176;53154993;146845007;300000 -39177;53151084;146848916;300000 -39178;53147174;146852826;300000 -39179;53143266;146856734;300000 -39180;53139357;146860643;300000 -39181;53135448;146864552;300000 -39182;53131540;146868460;300000 -39183;53127632;146872368;300000 -39184;53123724;146876276;300000 -39185;53119816;146880184;300000 -39186;53115909;146884091;300000 -39187;53112001;146887999;300000 -39188;53108094;146891906;300000 -39189;53104187;146895813;300000 -39190;53100281;146899719;300000 -39191;53096374;146903626;300000 -39192;53092468;146907532;300000 -39193;53088562;146911438;300000 -39194;53084656;146915344;300000 -39195;53080750;146919250;300000 -39196;53076845;146923155;300000 -39197;53072939;146927061;300000 -39198;53069034;146930966;300000 -39199;53065129;146934871;300000 -39200;53061224;146938776;300000 -39201;53057320;146942680;300000 -39202;53053416;146946584;300000 -39203;53049512;146950488;300000 -39204;53045608;146954392;300000 -39205;53041704;146958296;300000 -39206;53037800;146962200;300000 -39207;53033897;146966103;300000 -39208;53029994;146970006;300000 -39209;53026091;146973909;300000 -39210;53022188;146977812;300000 -39211;53018286;146981714;300000 -39212;53014383;146985617;300000 -39213;53010481;146989519;300000 -39214;53006579;146993421;300000 -39215;53002678;146997322;300000 -39216;52998776;147001224;300000 -39217;52994875;147005125;300000 -39218;52990974;147009026;300000 -39219;52987073;147012927;300000 -39220;52983172;147016828;300000 -39221;52979271;147020729;300000 -39222;52975371;147024629;300000 -39223;52971471;147028529;300000 -39224;52967571;147032429;300000 -39225;52963671;147036329;300000 -39226;52959772;147040228;300000 -39227;52955872;147044128;300000 -39228;52951973;147048027;300000 -39229;52948074;147051926;300000 -39230;52944175;147055825;300000 -39231;52940277;147059723;300000 -39232;52936378;147063622;300000 -39233;52932480;147067520;300000 -39234;52928582;147071418;300000 -39235;52924685;147075315;300000 -39236;52920787;147079213;300000 -39237;52916890;147083110;300000 -39238;52912993;147087007;300000 -39239;52909096;147090904;300000 -39240;52905199;147094801;300000 -39241;52901302;147098698;300000 -39242;52897406;147102594;300000 -39243;52893510;147106490;300000 -39244;52889614;147110386;300000 -39245;52885718;147114282;300000 -39246;52881822;147118178;300000 -39247;52877927;147122073;300000 -39248;52874032;147125968;300000 -39249;52870137;147129863;300000 -39250;52866242;147133758;300000 -39251;52862347;147137653;300000 -39252;52858453;147141547;300000 -39253;52854559;147145441;300000 -39254;52850665;147149335;300000 -39255;52846771;147153229;300000 -39256;52842878;147157122;300000 -39257;52838984;147161016;300000 -39258;52835091;147164909;300000 -39259;52831198;147168802;300000 -39260;52827305;147172695;300000 -39261;52823413;147176587;300000 -39262;52819520;147180480;300000 -39263;52815628;147184372;300000 -39264;52811736;147188264;300000 -39265;52807844;147192156;300000 -39266;52803953;147196047;300000 -39267;52800061;147199939;300000 -39268;52796170;147203830;300000 -39269;52792279;147207721;300000 -39270;52788388;147211612;300000 -39271;52784497;147215503;300000 -39272;52780607;147219393;300000 -39273;52776717;147223283;300000 -39274;52772827;147227173;300000 -39275;52768937;147231063;300000 -39276;52765047;147234953;300000 -39277;52761158;147238842;300000 -39278;52757269;147242731;300000 -39279;52753380;147246620;300000 -39280;52749491;147250509;300000 -39281;52745602;147254398;300000 -39282;52741714;147258286;300000 -39283;52737826;147262174;300000 -39284;52733937;147266063;300000 -39285;52730050;147269950;300000 -39286;52726162;147273838;300000 -39287;52722275;147277725;300000 -39288;52718387;147281613;300000 -39289;52714500;147285500;300000 -39290;52710613;147289387;300000 -39291;52706727;147293273;300000 -39292;52702840;147297160;300000 -39293;52698954;147301046;300000 -39294;52695068;147304932;300000 -39295;52691182;147308818;300000 -39296;52687296;147312704;300000 -39297;52683411;147316589;300000 -39298;52679526;147320474;300000 -39299;52675641;147324359;300000 -39300;52671756;147328244;300000 -39301;52667871;147332129;300000 -39302;52663987;147336013;300000 -39303;52660102;147339898;300000 -39304;52656218;147343782;300000 -39305;52652334;147347666;300000 -39306;52648451;147351549;300000 -39307;52644567;147355433;300000 -39308;52640684;147359316;300000 -39309;52636801;147363199;300000 -39310;52632918;147367082;300000 -39311;52629035;147370965;300000 -39312;52625153;147374847;300000 -39313;52621270;147378730;300000 -39314;52617388;147382612;300000 -39315;52613506;147386494;300000 -39316;52609625;147390375;300000 -39317;52605743;147394257;300000 -39318;52601862;147398138;300000 -39319;52597981;147402019;300000 -39320;52594100;147405900;300000 -39321;52590219;147409781;300000 -39322;52586338;147413662;300000 -39323;52582458;147417542;300000 -39324;52578578;147421422;300000 -39325;52574698;147425302;300000 -39326;52570818;147429182;300000 -39327;52566939;147433061;300000 -39328;52563059;147436941;300000 -39329;52559180;147440820;300000 -39330;52555301;147444699;300000 -39331;52551423;147448577;300000 -39332;52547544;147452456;300000 -39333;52543666;147456334;300000 -39334;52539787;147460213;300000 -39335;52535909;147464091;300000 -39336;52532032;147467968;300000 -39337;52528154;147471846;300000 -39338;52524277;147475723;300000 -39339;52520400;147479600;300000 -39340;52516523;147483477;300000 -39341;52512646;147487354;300000 -39342;52508769;147491231;300000 -39343;52504893;147495107;300000 -39344;52501017;147498983;300000 -39345;52497141;147502859;300000 -39346;52493265;147506735;300000 -39347;52489389;147510611;300000 -39348;52485514;147514486;300000 -39349;52481639;147518361;300000 -39350;52477764;147522236;300000 -39351;52473889;147526111;300000 -39352;52470014;147529986;300000 -39353;52466140;147533860;300000 -39354;52462266;147537734;300000 -39355;52458392;147541608;300000 -39356;52454518;147545482;300000 -39357;52450644;147549356;300000 -39358;52446771;147553229;300000 -39359;52442897;147557103;300000 -39360;52439024;147560976;300000 -39361;52435152;147564848;300000 -39362;52431279;147568721;300000 -39363;52427406;147572594;300000 -39364;52423534;147576466;300000 -39365;52419662;147580338;300000 -39366;52415790;147584210;300000 -39367;52411919;147588081;300000 -39368;52408047;147591953;300000 -39369;52404176;147595824;300000 -39370;52400305;147599695;300000 -39371;52396434;147603566;300000 -39372;52392563;147607437;300000 -39373;52388693;147611307;300000 -39374;52384822;147615178;300000 -39375;52380952;147619048;300000 -39376;52377082;147622918;300000 -39377;52373213;147626787;300000 -39378;52369343;147630657;300000 -39379;52365474;147634526;300000 -39380;52361605;147638395;300000 -39381;52357736;147642264;300000 -39382;52353867;147646133;300000 -39383;52349999;147650001;300000 -39384;52346130;147653870;300000 -39385;52342262;147657738;300000 -39386;52338394;147661606;300000 -39387;52334527;147665473;300000 -39388;52330659;147669341;300000 -39389;52326792;147673208;300000 -39390;52322925;147677075;300000 -39391;52319058;147680942;300000 -39392;52315191;147684809;300000 -39393;52311324;147688676;300000 -39394;52307458;147692542;300000 -39395;52303592;147696408;300000 -39396;52299726;147700274;300000 -39397;52295860;147704140;300000 -39398;52291995;147708005;300000 -39399;52288129;147711871;300000 -39400;52284264;147715736;300000 -39401;52280399;147719601;300000 -39402;52276534;147723466;300000 -39403;52272670;147727330;300000 -39404;52268805;147731195;300000 -39405;52264941;147735059;300000 -39406;52261077;147738923;300000 -39407;52257213;147742787;300000 -39408;52253350;147746650;300000 -39409;52249486;147750514;300000 -39410;52245623;147754377;300000 -39411;52241760;147758240;300000 -39412;52237897;147762103;300000 -39413;52234034;147765966;300000 -39414;52230172;147769828;300000 -39415;52226310;147773690;300000 -39416;52222448;147777552;300000 -39417;52218586;147781414;300000 -39418;52214724;147785276;300000 -39419;52210863;147789137;300000 -39420;52207002;147792998;300000 -39421;52203140;147796860;300000 -39422;52199280;147800720;300000 -39423;52195419;147804581;300000 -39424;52191558;147808442;300000 -39425;52187698;147812302;300000 -39426;52183838;147816162;300000 -39427;52179978;147820022;300000 -39428;52176118;147823882;300000 -39429;52172259;147827741;300000 -39430;52168400;147831600;300000 -39431;52164541;147835459;300000 -39432;52160682;147839318;300000 -39433;52156823;147843177;300000 -39434;52152964;147847036;300000 -39435;52149106;147850894;300000 -39436;52145248;147854752;300000 -39437;52141390;147858610;300000 -39438;52137532;147862468;300000 -39439;52133675;147866325;300000 -39440;52129817;147870183;300000 -39441;52125960;147874040;300000 -39442;52122103;147877897;300000 -39443;52118247;147881753;300000 -39444;52114390;147885610;300000 -39445;52110534;147889466;300000 -39446;52106677;147893323;300000 -39447;52102822;147897178;300000 -39448;52098966;147901034;300000 -39449;52095110;147904890;300000 -39450;52091255;147908745;300000 -39451;52087400;147912600;300000 -39452;52083545;147916455;300000 -39453;52079690;147920310;300000 -39454;52075835;147924165;300000 -39455;52071981;147928019;300000 -39456;52068127;147931873;300000 -39457;52064272;147935728;300000 -39458;52060419;147939581;300000 -39459;52056565;147943435;300000 -39460;52052712;147947288;300000 -39461;52048858;147951142;300000 -39462;52045005;147954995;300000 -39463;52041152;147958848;300000 -39464;52037300;147962700;300000 -39465;52033447;147966553;300000 -39466;52029595;147970405;300000 -39467;52025743;147974257;300000 -39468;52021891;147978109;300000 -39469;52018039;147981961;300000 -39470;52014188;147985812;300000 -39471;52010337;147989663;300000 -39472;52006486;147993514;300000 -39473;52002635;147997365;300000 -39474;51998784;148001216;300000 -39475;51994934;148005066;300000 -39476;51991083;148008917;300000 -39477;51987233;148012767;300000 -39478;51983383;148016617;300000 -39479;51979533;148020467;300000 -39480;51975684;148024316;300000 -39481;51971835;148028165;300000 -39482;51967985;148032015;300000 -39483;51964136;148035864;300000 -39484;51960288;148039712;300000 -39485;51956439;148043561;300000 -39486;51952591;148047409;300000 -39487;51948743;148051257;300000 -39488;51944895;148055105;300000 -39489;51941047;148058953;300000 -39490;51937199;148062801;300000 -39491;51933352;148066648;300000 -39492;51929505;148070495;300000 -39493;51925658;148074342;300000 -39494;51921811;148078189;300000 -39495;51917964;148082036;300000 -39496;51914118;148085882;300000 -39497;51910272;148089728;300000 -39498;51906426;148093574;300000 -39499;51902580;148097420;300000 -39500;51898734;148101266;300000 -39501;51894889;148105111;300000 -39502;51891043;148108957;300000 -39503;51887198;148112802;300000 -39504;51883354;148116646;300000 -39505;51879509;148120491;300000 -39506;51875664;148124336;300000 -39507;51871820;148128180;300000 -39508;51867976;148132024;300000 -39509;51864132;148135868;300000 -39510;51860289;148139711;300000 -39511;51856445;148143555;300000 -39512;51852602;148147398;300000 -39513;51848759;148151241;300000 -39514;51844916;148155084;300000 -39515;51841073;148158927;300000 -39516;51837230;148162770;300000 -39517;51833388;148166612;300000 -39518;51829546;148170454;300000 -39519;51825704;148174296;300000 -39520;51821862;148178138;300000 -39521;51818021;148181979;300000 -39522;51814179;148185821;300000 -39523;51810338;148189662;300000 -39524;51806497;148193503;300000 -39525;51802657;148197343;300000 -39526;51798816;148201184;300000 -39527;51794976;148205024;300000 -39528;51791135;148208865;300000 -39529;51787295;148212705;300000 -39530;51783456;148216544;300000 -39531;51779616;148220384;300000 -39532;51775777;148224223;300000 -39533;51771937;148228063;300000 -39534;51768098;148231902;300000 -39535;51764260;148235740;300000 -39536;51760421;148239579;300000 -39537;51756582;148243418;300000 -39538;51752744;148247256;300000 -39539;51748906;148251094;300000 -39540;51745068;148254932;300000 -39541;51741231;148258769;300000 -39542;51737393;148262607;300000 -39543;51733556;148266444;300000 -39544;51729719;148270281;300000 -39545;51725882;148274118;300000 -39546;51722045;148277955;300000 -39547;51718209;148281791;300000 -39548;51714372;148285628;300000 -39549;51710536;148289464;300000 -39550;51706700;148293300;300000 -39551;51702865;148297135;300000 -39552;51699029;148300971;300000 -39553;51695194;148304806;300000 -39554;51691359;148308641;300000 -39555;51687524;148312476;300000 -39556;51683689;148316311;300000 -39557;51679854;148320146;300000 -39558;51676020;148323980;300000 -39559;51672186;148327814;300000 -39560;51668352;148331648;300000 -39561;51664518;148335482;300000 -39562;51660684;148339316;300000 -39563;51656851;148343149;300000 -39564;51653018;148346982;300000 -39565;51649185;148350815;300000 -39566;51645352;148354648;300000 -39567;51641519;148358481;300000 -39568;51637687;148362313;300000 -39569;51633855;148366145;300000 -39570;51630023;148369977;300000 -39571;51626191;148373809;300000 -39572;51622359;148377641;300000 -39573;51618528;148381472;300000 -39574;51614697;148385303;300000 -39575;51610865;148389135;300000 -39576;51607035;148392965;300000 -39577;51603204;148396796;300000 -39578;51599373;148400627;300000 -39579;51595543;148404457;300000 -39580;51591713;148408287;300000 -39581;51587883;148412117;300000 -39582;51584053;148415947;300000 -39583;51580224;148419776;300000 -39584;51576395;148423605;300000 -39585;51572565;148427435;300000 -39586;51568736;148431264;300000 -39587;51564908;148435092;300000 -39588;51561079;148438921;300000 -39589;51557251;148442749;300000 -39590;51553423;148446577;300000 -39591;51549595;148450405;300000 -39592;51545767;148454233;300000 -39593;51541939;148458061;300000 -39594;51538112;148461888;300000 -39595;51534285;148465715;300000 -39596;51530458;148469542;300000 -39597;51526631;148473369;300000 -39598;51522804;148477196;300000 -39599;51518978;148481022;300000 -39600;51515152;148484848;300000 -39601;51511325;148488675;300000 -39602;51507500;148492500;300000 -39603;51503674;148496326;300000 -39604;51499849;148500151;300000 -39605;51496023;148503977;300000 -39606;51492198;148507802;300000 -39607;51488373;148511627;300000 -39608;51484549;148515451;300000 -39609;51480724;148519276;300000 -39610;51476900;148523100;300000 -39611;51473076;148526924;300000 -39612;51469252;148530748;300000 -39613;51465428;148534572;300000 -39614;51461604;148538396;300000 -39615;51457781;148542219;300000 -39616;51453958;148546042;300000 -39617;51450135;148549865;300000 -39618;51446312;148553688;300000 -39619;51442490;148557510;300000 -39620;51438667;148561333;300000 -39621;51434845;148565155;300000 -39622;51431023;148568977;300000 -39623;51427201;148572799;300000 -39624;51423380;148576620;300000 -39625;51419558;148580442;300000 -39626;51415737;148584263;300000 -39627;51411916;148588084;300000 -39628;51408095;148591905;300000 -39629;51404275;148595725;300000 -39630;51400454;148599546;300000 -39631;51396634;148603366;300000 -39632;51392814;148607186;300000 -39633;51388994;148611006;300000 -39634;51385174;148614826;300000 -39635;51381355;148618645;300000 -39636;51377536;148622464;300000 -39637;51373716;148626284;300000 -39638;51369898;148630102;300000 -39639;51366079;148633921;300000 -39640;51362260;148637740;300000 -39641;51358442;148641558;300000 -39642;51354624;148645376;300000 -39643;51350806;148649194;300000 -39644;51346988;148653012;300000 -39645;51343171;148656829;300000 -39646;51339353;148660647;300000 -39647;51335536;148664464;300000 -39648;51331719;148668281;300000 -39649;51327902;148672098;300000 -39650;51324086;148675914;300000 -39651;51320269;148679731;300000 -39652;51316453;148683547;300000 -39653;51312637;148687363;300000 -39654;51308821;148691179;300000 -39655;51305006;148694994;300000 -39656;51301190;148698810;300000 -39657;51297375;148702625;300000 -39658;51293560;148706440;300000 -39659;51289745;148710255;300000 -39660;51285930;148714070;300000 -39661;51282116;148717884;300000 -39662;51278302;148721698;300000 -39663;51274488;148725512;300000 -39664;51270674;148729326;300000 -39665;51266860;148733140;300000 -39666;51263046;148736954;300000 -39667;51259233;148740767;300000 -39668;51255420;148744580;300000 -39669;51251607;148748393;300000 -39670;51247794;148752206;300000 -39671;51243982;148756018;300000 -39672;51240169;148759831;300000 -39673;51236357;148763643;300000 -39674;51232545;148767455;300000 -39675;51228733;148771267;300000 -39676;51224922;148775078;300000 -39677;51221110;148778890;300000 -39678;51217299;148782701;300000 -39679;51213488;148786512;300000 -39680;51209677;148790323;300000 -39681;51205867;148794133;300000 -39682;51202056;148797944;300000 -39683;51198246;148801754;300000 -39684;51194436;148805564;300000 -39685;51190626;148809374;300000 -39686;51186817;148813183;300000 -39687;51183007;148816993;300000 -39688;51179198;148820802;300000 -39689;51175389;148824611;300000 -39690;51171580;148828420;300000 -39691;51167771;148832229;300000 -39692;51163963;148836037;300000 -39693;51160154;148839846;300000 -39694;51156346;148843654;300000 -39695;51152538;148847462;300000 -39696;51148730;148851270;300000 -39697;51144923;148855077;300000 -39698;51141115;148858885;300000 -39699;51137308;148862692;300000 -39700;51133501;148866499;300000 -39701;51129694;148870306;300000 -39702;51125888;148874112;300000 -39703;51122081;148877919;300000 -39704;51118275;148881725;300000 -39705;51114469;148885531;300000 -39706;51110663;148889337;300000 -39707;51106858;148893142;300000 -39708;51103052;148896948;300000 -39709;51099247;148900753;300000 -39710;51095442;148904558;300000 -39711;51091637;148908363;300000 -39712;51087832;148912168;300000 -39713;51084028;148915972;300000 -39714;51080224;148919776;300000 -39715;51076419;148923581;300000 -39716;51072616;148927384;300000 -39717;51068812;148931188;300000 -39718;51065008;148934992;300000 -39719;51061205;148938795;300000 -39720;51057402;148942598;300000 -39721;51053599;148946401;300000 -39722;51049796;148950204;300000 -39723;51045994;148954006;300000 -39724;51042191;148957809;300000 -39725;51038389;148961611;300000 -39726;51034587;148965413;300000 -39727;51030785;148969215;300000 -39728;51026983;148973017;300000 -39729;51023182;148976818;300000 -39730;51019381;148980619;300000 -39731;51015580;148984420;300000 -39732;51011779;148988221;300000 -39733;51007978;148992022;300000 -39734;51004178;148995822;300000 -39735;51000378;148999622;300000 -39736;50996577;149003423;300000 -39737;50992778;149007222;300000 -39738;50988978;149011022;300000 -39739;50985178;149014822;300000 -39740;50981379;149018621;300000 -39741;50977580;149022420;300000 -39742;50973781;149026219;300000 -39743;50969982;149030018;300000 -39744;50966184;149033816;300000 -39745;50962385;149037615;300000 -39746;50958587;149041413;300000 -39747;50954789;149045211;300000 -39748;50950991;149049009;300000 -39749;50947194;149052806;300000 -39750;50943396;149056604;300000 -39751;50939599;149060401;300000 -39752;50935802;149064198;300000 -39753;50932005;149067995;300000 -39754;50928208;149071792;300000 -39755;50924412;149075588;300000 -39756;50920616;149079384;300000 -39757;50916820;149083180;300000 -39758;50913024;149086976;300000 -39759;50909228;149090772;300000 -39760;50905433;149094567;300000 -39761;50901637;149098363;300000 -39762;50897842;149102158;300000 -39763;50894047;149105953;300000 -39764;50890252;149109748;300000 -39765;50886458;149113542;300000 -39766;50882664;149117336;300000 -39767;50878869;149121131;300000 -39768;50875075;149124925;300000 -39769;50871282;149128718;300000 -39770;50867488;149132512;300000 -39771;50863695;149136305;300000 -39772;50859901;149140099;300000 -39773;50856108;149143892;300000 -39774;50852316;149147684;300000 -39775;50848523;149151477;300000 -39776;50844730;149155270;300000 -39777;50840938;149159062;300000 -39778;50837146;149162854;300000 -39779;50833354;149166646;300000 -39780;50829563;149170437;300000 -39781;50825771;149174229;300000 -39782;50821980;149178020;300000 -39783;50818189;149181811;300000 -39784;50814398;149185602;300000 -39785;50810607;149189393;300000 -39786;50806816;149193184;300000 -39787;50803026;149196974;300000 -39788;50799236;149200764;300000 -39789;50795446;149204554;300000 -39790;50791656;149208344;300000 -39791;50787867;149212133;300000 -39792;50784077;149215923;300000 -39793;50780288;149219712;300000 -39794;50776499;149223501;300000 -39795;50772710;149227290;300000 -39796;50768921;149231079;300000 -39797;50765133;149234867;300000 -39798;50761345;149238655;300000 -39799;50757557;149242443;300000 -39800;50753769;149246231;300000 -39801;50749981;149250019;300000 -39802;50746194;149253806;300000 -39803;50742406;149257594;300000 -39804;50738619;149261381;300000 -39805;50734832;149265168;300000 -39806;50731046;149268954;300000 -39807;50727259;149272741;300000 -39808;50723473;149276527;300000 -39809;50719687;149280313;300000 -39810;50715901;149284099;300000 -39811;50712115;149287885;300000 -39812;50708329;149291671;300000 -39813;50704544;149295456;300000 -39814;50700759;149299241;300000 -39815;50696974;149303026;300000 -39816;50693189;149306811;300000 -39817;50689404;149310596;300000 -39818;50685620;149314380;300000 -39819;50681835;149318165;300000 -39820;50678051;149321949;300000 -39821;50674267;149325733;300000 -39822;50670484;149329516;300000 -39823;50666700;149333300;300000 -39824;50662917;149337083;300000 -39825;50659134;149340866;300000 -39826;50655351;149344649;300000 -39827;50651568;149348432;300000 -39828;50647785;149352215;300000 -39829;50644003;149355997;300000 -39830;50640221;149359779;300000 -39831;50636439;149363561;300000 -39832;50632657;149367343;300000 -39833;50628876;149371124;300000 -39834;50625094;149374906;300000 -39835;50621313;149378687;300000 -39836;50617532;149382468;300000 -39837;50613751;149386249;300000 -39838;50609970;149390030;300000 -39839;50606190;149393810;300000 -39840;50602410;149397590;300000 -39841;50598630;149401370;300000 -39842;50594850;149405150;300000 -39843;50591070;149408930;300000 -39844;50587290;149412710;300000 -39845;50583511;149416489;300000 -39846;50579732;149420268;300000 -39847;50575953;149424047;300000 -39848;50572174;149427826;300000 -39849;50568396;149431604;300000 -39850;50564617;149435383;300000 -39851;50560839;149439161;300000 -39852;50557061;149442939;300000 -39853;50553283;149446717;300000 -39854;50549506;149450494;300000 -39855;50545728;149454272;300000 -39856;50541951;149458049;300000 -39857;50538174;149461826;300000 -39858;50534397;149465603;300000 -39859;50530620;149469380;300000 -39860;50526844;149473156;300000 -39861;50523068;149476932;300000 -39862;50519292;149480708;300000 -39863;50515516;149484484;300000 -39864;50511740;149488260;300000 -39865;50507964;149492036;300000 -39866;50504189;149495811;300000 -39867;50500414;149499586;300000 -39868;50496639;149503361;300000 -39869;50492864;149507136;300000 -39870;50489090;149510910;300000 -39871;50485315;149514685;300000 -39872;50481541;149518459;300000 -39873;50477767;149522233;300000 -39874;50473993;149526007;300000 -39875;50470219;149529781;300000 -39876;50466446;149533554;300000 -39877;50462673;149537327;300000 -39878;50458900;149541100;300000 -39879;50455127;149544873;300000 -39880;50451354;149548646;300000 -39881;50447582;149552418;300000 -39882;50443809;149556191;300000 -39883;50440037;149559963;300000 -39884;50436265;149563735;300000 -39885;50432493;149567507;300000 -39886;50428722;149571278;300000 -39887;50424950;149575050;300000 -39888;50421179;149578821;300000 -39889;50417408;149582592;300000 -39890;50413638;149586362;300000 -39891;50409867;149590133;300000 -39892;50406096;149593904;300000 -39893;50402326;149597674;300000 -39894;50398556;149601444;300000 -39895;50394786;149605214;300000 -39896;50391017;149608983;300000 -39897;50387247;149612753;300000 -39898;50383478;149616522;300000 -39899;50379709;149620291;300000 -39900;50375940;149624060;300000 -39901;50372171;149627829;300000 -39902;50368403;149631597;300000 -39903;50364634;149635366;300000 -39904;50360866;149639134;300000 -39905;50357098;149642902;300000 -39906;50353330;149646670;300000 -39907;50349563;149650437;300000 -39908;50345795;149654205;300000 -39909;50342028;149657972;300000 -39910;50338261;149661739;300000 -39911;50334494;149665506;300000 -39912;50330728;149669272;300000 -39913;50326961;149673039;300000 -39914;50323195;149676805;300000 -39915;50319429;149680571;300000 -39916;50315663;149684337;300000 -39917;50311897;149688103;300000 -39918;50308132;149691868;300000 -39919;50304366;149695634;300000 -39920;50300601;149699399;300000 -39921;50296836;149703164;300000 -39922;50293071;149706929;300000 -39923;50289307;149710693;300000 -39924;50285543;149714457;300000 -39925;50281778;149718222;300000 -39926;50278014;149721986;300000 -39927;50274251;149725749;300000 -39928;50270487;149729513;300000 -39929;50266723;149733277;300000 -39930;50262960;149737040;300000 -39931;50259197;149740803;300000 -39932;50255434;149744566;300000 -39933;50251672;149748328;300000 -39934;50247909;149752091;300000 -39935;50244147;149755853;300000 -39936;50240385;149759615;300000 -39937;50236623;149763377;300000 -39938;50232861;149767139;300000 -39939;50229099;149770901;300000 -39940;50225338;149774662;300000 -39941;50221577;149778423;300000 -39942;50217816;149782184;300000 -39943;50214055;149785945;300000 -39944;50210294;149789706;300000 -39945;50206534;149793466;300000 -39946;50202774;149797226;300000 -39947;50199014;149800986;300000 -39948;50195254;149804746;300000 -39949;50191494;149808506;300000 -39950;50187735;149812265;300000 -39951;50183975;149816025;300000 -39952;50180216;149819784;300000 -39953;50176457;149823543;300000 -39954;50172699;149827301;300000 -39955;50168940;149831060;300000 -39956;50165182;149834818;300000 -39957;50161424;149838576;300000 -39958;50157666;149842334;300000 -39959;50153908;149846092;300000 -39960;50150150;149849850;300000 -39961;50146393;149853607;300000 -39962;50142636;149857364;300000 -39963;50138878;149861122;300000 -39964;50135122;149864878;300000 -39965;50131365;149868635;300000 -39966;50127608;149872392;300000 -39967;50123852;149876148;300000 -39968;50120096;149879904;300000 -39969;50116340;149883660;300000 -39970;50112584;149887416;300000 -39971;50108829;149891171;300000 -39972;50105074;149894926;300000 -39973;50101318;149898682;300000 -39974;50097563;149902437;300000 -39975;50093809;149906191;300000 -39976;50090054;149909946;300000 -39977;50086300;149913700;300000 -39978;50082545;149917455;300000 -39979;50078791;149921209;300000 -39980;50075038;149924962;300000 -39981;50071284;149928716;300000 -39982;50067530;149932470;300000 -39983;50063777;149936223;300000 -39984;50060024;149939976;300000 -39985;50056271;149943729;300000 -39986;50052518;149947482;300000 -39987;50048766;149951234;300000 -39988;50045014;149954986;300000 -39989;50041261;149958739;300000 -39990;50037509;149962491;300000 -39991;50033758;149966242;300000 -39992;50030006;149969994;300000 -39993;50026255;149973745;300000 -39994;50022503;149977497;300000 -39995;50018752;149981248;300000 -39996;50015002;149984998;300000 -39997;50011251;149988749;300000 -39998;50007500;149992500;300000 -39999;50003750;149996250;300000 -40000;50000000;150000000;300000 -40001;49996250;150003750;300000 -40002;49992500;150007500;300000 -40003;49988751;150011249;300000 -40004;49985001;150014999;300000 -40005;49981252;150018748;300000 -40006;49977503;150022497;300000 -40007;49973755;150026245;300000 -40008;49970006;150029994;300000 -40009;49966258;150033742;300000 -40010;49962509;150037491;300000 -40011;49958761;150041239;300000 -40012;49955013;150044987;300000 -40013;49951266;150048734;300000 -40014;49947518;150052482;300000 -40015;49943771;150056229;300000 -40016;49940024;150059976;300000 -40017;49936277;150063723;300000 -40018;49932530;150067470;300000 -40019;49928784;150071216;300000 -40020;49925037;150074963;300000 -40021;49921291;150078709;300000 -40022;49917545;150082455;300000 -40023;49913800;150086200;300000 -40024;49910054;150089946;300000 -40025;49906309;150093691;300000 -40026;49902563;150097437;300000 -40027;49898818;150101182;300000 -40028;49895073;150104927;300000 -40029;49891329;150108671;300000 -40030;49887584;150112416;300000 -40031;49883840;150116160;300000 -40032;49880096;150119904;300000 -40033;49876352;150123648;300000 -40034;49872608;150127392;300000 -40035;49868865;150131135;300000 -40036;49865121;150134879;300000 -40037;49861378;150138622;300000 -40038;49857635;150142365;300000 -40039;49853892;150146108;300000 -40040;49850150;150149850;300000 -40041;49846407;150153593;300000 -40042;49842665;150157335;300000 -40043;49838923;150161077;300000 -40044;49835181;150164819;300000 -40045;49831440;150168560;300000 -40046;49827698;150172302;300000 -40047;49823957;150176043;300000 -40048;49820216;150179784;300000 -40049;49816475;150183525;300000 -40050;49812734;150187266;300000 -40051;49808994;150191006;300000 -40052;49805253;150194747;300000 -40053;49801513;150198487;300000 -40054;49797773;150202227;300000 -40055;49794033;150205967;300000 -40056;49790294;150209706;300000 -40057;49786554;150213446;300000 -40058;49782815;150217185;300000 -40059;49779076;150220924;300000 -40060;49775337;150224663;300000 -40061;49771598;150228402;300000 -40062;49767860;150232140;300000 -40063;49764122;150235878;300000 -40064;49760383;150239617;300000 -40065;49756645;150243355;300000 -40066;49752908;150247092;300000 -40067;49749170;150250830;300000 -40068;49745433;150254567;300000 -40069;49741696;150258304;300000 -40070;49737959;150262041;300000 -40071;49734222;150265778;300000 -40072;49730485;150269515;300000 -40073;49726749;150273251;300000 -40074;49723012;150276988;300000 -40075;49719276;150280724;300000 -40076;49715540;150284460;300000 -40077;49711805;150288195;300000 -40078;49708069;150291931;300000 -40079;49704334;150295666;300000 -40080;49700599;150299401;300000 -40081;49696864;150303136;300000 -40082;49693129;150306871;300000 -40083;49689395;150310605;300000 -40084;49685660;150314340;300000 -40085;49681926;150318074;300000 -40086;49678192;150321808;300000 -40087;49674458;150325542;300000 -40088;49670724;150329276;300000 -40089;49666991;150333009;300000 -40090;49663258;150336742;300000 -40091;49659525;150340475;300000 -40092;49655792;150344208;300000 -40093;49652059;150347941;300000 -40094;49648326;150351674;300000 -40095;49644594;150355406;300000 -40096;49640862;150359138;300000 -40097;49637130;150362870;300000 -40098;49633398;150366602;300000 -40099;49629667;150370333;300000 -40100;49625935;150374065;300000 -40101;49622204;150377796;300000 -40102;49618473;150381527;300000 -40103;49614742;150385258;300000 -40104;49611011;150388989;300000 -40105;49607281;150392719;300000 -40106;49603551;150396449;300000 -40107;49599820;150400180;300000 -40108;49596091;150403909;300000 -40109;49592361;150407639;300000 -40110;49588631;150411369;300000 -40111;49584902;150415098;300000 -40112;49581173;150418827;300000 -40113;49577444;150422556;300000 -40114;49573715;150426285;300000 -40115;49569986;150430014;300000 -40116;49566258;150433742;300000 -40117;49562530;150437470;300000 -40118;49558802;150441198;300000 -40119;49555074;150444926;300000 -40120;49551346;150448654;300000 -40121;49547618;150452382;300000 -40122;49543891;150456109;300000 -40123;49540164;150459836;300000 -40124;49536437;150463563;300000 -40125;49532710;150467290;300000 -40126;49528984;150471016;300000 -40127;49525257;150474743;300000 -40128;49521531;150478469;300000 -40129;49517805;150482195;300000 -40130;49514079;150485921;300000 -40131;49510354;150489646;300000 -40132;49506628;150493372;300000 -40133;49502903;150497097;300000 -40134;49499178;150500822;300000 -40135;49495453;150504547;300000 -40136;49491728;150508272;300000 -40137;49488004;150511996;300000 -40138;49484279;150515721;300000 -40139;49480555;150519445;300000 -40140;49476831;150523169;300000 -40141;49473107;150526893;300000 -40142;49469384;150530616;300000 -40143;49465660;150534340;300000 -40144;49461937;150538063;300000 -40145;49458214;150541786;300000 -40146;49454491;150545509;300000 -40147;49450768;150549232;300000 -40148;49447046;150552954;300000 -40149;49443324;150556676;300000 -40150;49439601;150560399;300000 -40151;49435880;150564120;300000 -40152;49432158;150567842;300000 -40153;49428436;150571564;300000 -40154;49424715;150575285;300000 -40155;49420994;150579006;300000 -40156;49417273;150582727;300000 -40157;49413552;150586448;300000 -40158;49409831;150590169;300000 -40159;49406111;150593889;300000 -40160;49402390;150597610;300000 -40161;49398670;150601330;300000 -40162;49394950;150605050;300000 -40163;49391231;150608769;300000 -40164;49387511;150612489;300000 -40165;49383792;150616208;300000 -40166;49380073;150619927;300000 -40167;49376354;150623646;300000 -40168;49372635;150627365;300000 -40169;49368916;150631084;300000 -40170;49365198;150634802;300000 -40171;49361480;150638520;300000 -40172;49357762;150642238;300000 -40173;49354044;150645956;300000 -40174;49350326;150649674;300000 -40175;49346609;150653391;300000 -40176;49342891;150657109;300000 -40177;49339174;150660826;300000 -40178;49335457;150664543;300000 -40179;49331740;150668260;300000 -40180;49328024;150671976;300000 -40181;49324308;150675692;300000 -40182;49320591;150679409;300000 -40183;49316875;150683125;300000 -40184;49313159;150686841;300000 -40185;49309444;150690556;300000 -40186;49305728;150694272;300000 -40187;49302013;150697987;300000 -40188;49298298;150701702;300000 -40189;49294583;150705417;300000 -40190;49290868;150709132;300000 -40191;49287154;150712846;300000 -40192;49283439;150716561;300000 -40193;49279725;150720275;300000 -40194;49276011;150723989;300000 -40195;49272298;150727702;300000 -40196;49268584;150731416;300000 -40197;49264871;150735129;300000 -40198;49261157;150738843;300000 -40199;49257444;150742556;300000 -40200;49253731;150746269;300000 -40201;49250019;150749981;300000 -40202;49246306;150753694;300000 -40203;49242594;150757406;300000 -40204;49238882;150761118;300000 -40205;49235170;150764830;300000 -40206;49231458;150768542;300000 -40207;49227746;150772254;300000 -40208;49224035;150775965;300000 -40209;49220324;150779676;300000 -40210;49216613;150783387;300000 -40211;49212902;150787098;300000 -40212;49209191;150790809;300000 -40213;49205481;150794519;300000 -40214;49201771;150798229;300000 -40215;49198060;150801940;300000 -40216;49194351;150805649;300000 -40217;49190641;150809359;300000 -40218;49186931;150813069;300000 -40219;49183222;150816778;300000 -40220;49179513;150820487;300000 -40221;49175804;150824196;300000 -40222;49172095;150827905;300000 -40223;49168386;150831614;300000 -40224;49164678;150835322;300000 -40225;49160970;150839030;300000 -40226;49157261;150842739;300000 -40227;49153554;150846446;300000 -40228;49149846;150850154;300000 -40229;49146138;150853862;300000 -40230;49142431;150857569;300000 -40231;49138724;150861276;300000 -40232;49135017;150864983;300000 -40233;49131310;150868690;300000 -40234;49127604;150872396;300000 -40235;49123897;150876103;300000 -40236;49120191;150879809;300000 -40237;49116485;150883515;300000 -40238;49112779;150887221;300000 -40239;49109073;150890927;300000 -40240;49105368;150894632;300000 -40241;49101662;150898338;300000 -40242;49097957;150902043;300000 -40243;49094252;150905748;300000 -40244;49090548;150909452;300000 -40245;49086843;150913157;300000 -40246;49083139;150916861;300000 -40247;49079434;150920566;300000 -40248;49075730;150924270;300000 -40249;49072027;150927973;300000 -40250;49068323;150931677;300000 -40251;49064620;150935380;300000 -40252;49060916;150939084;300000 -40253;49057213;150942787;300000 -40254;49053510;150946490;300000 -40255;49049807;150950193;300000 -40256;49046105;150953895;300000 -40257;49042403;150957597;300000 -40258;49038700;150961300;300000 -40259;49034998;150965002;300000 -40260;49031297;150968703;300000 -40261;49027595;150972405;300000 -40262;49023893;150976107;300000 -40263;49020192;150979808;300000 -40264;49016491;150983509;300000 -40265;49012790;150987210;300000 -40266;49009090;150990910;300000 -40267;49005389;150994611;300000 -40268;49001689;150998311;300000 -40269;48997989;151002011;300000 -40270;48994289;151005711;300000 -40271;48990589;151009411;300000 -40272;48986889;151013111;300000 -40273;48983190;151016810;300000 -40274;48979490;151020510;300000 -40275;48975791;151024209;300000 -40276;48972093;151027907;300000 -40277;48968394;151031606;300000 -40278;48964695;151035305;300000 -40279;48960997;151039003;300000 -40280;48957299;151042701;300000 -40281;48953601;151046399;300000 -40282;48949903;151050097;300000 -40283;48946206;151053794;300000 -40284;48942508;151057492;300000 -40285;48938811;151061189;300000 -40286;48935114;151064886;300000 -40287;48931417;151068583;300000 -40288;48927720;151072280;300000 -40289;48924024;151075976;300000 -40290;48920328;151079672;300000 -40291;48916632;151083368;300000 -40292;48912936;151087064;300000 -40293;48909240;151090760;300000 -40294;48905544;151094456;300000 -40295;48901849;151098151;300000 -40296;48898154;151101846;300000 -40297;48894459;151105541;300000 -40298;48890764;151109236;300000 -40299;48887069;151112931;300000 -40300;48883375;151116625;300000 -40301;48879680;151120320;300000 -40302;48875986;151124014;300000 -40303;48872292;151127708;300000 -40304;48868599;151131401;300000 -40305;48864905;151135095;300000 -40306;48861212;151138788;300000 -40307;48857519;151142481;300000 -40308;48853826;151146174;300000 -40309;48850133;151149867;300000 -40310;48846440;151153560;300000 -40311;48842748;151157252;300000 -40312;48839055;151160945;300000 -40313;48835363;151164637;300000 -40314;48831671;151168329;300000 -40315;48827980;151172020;300000 -40316;48824288;151175712;300000 -40317;48820597;151179403;300000 -40318;48816906;151183094;300000 -40319;48813215;151186785;300000 -40320;48809524;151190476;300000 -40321;48805833;151194167;300000 -40322;48802143;151197857;300000 -40323;48798452;151201548;300000 -40324;48794762;151205238;300000 -40325;48791073;151208927;300000 -40326;48787383;151212617;300000 -40327;48783693;151216307;300000 -40328;48780004;151219996;300000 -40329;48776315;151223685;300000 -40330;48772626;151227374;300000 -40331;48768937;151231063;300000 -40332;48765248;151234752;300000 -40333;48761560;151238440;300000 -40334;48757872;151242128;300000 -40335;48754184;151245816;300000 -40336;48750496;151249504;300000 -40337;48746808;151253192;300000 -40338;48743121;151256879;300000 -40339;48739433;151260567;300000 -40340;48735746;151264254;300000 -40341;48732059;151267941;300000 -40342;48728372;151271628;300000 -40343;48724686;151275314;300000 -40344;48720999;151279001;300000 -40345;48717313;151282687;300000 -40346;48713627;151286373;300000 -40347;48709941;151290059;300000 -40348;48706256;151293744;300000 -40349;48702570;151297430;300000 -40350;48698885;151301115;300000 -40351;48695200;151304800;300000 -40352;48691515;151308485;300000 -40353;48687830;151312170;300000 -40354;48684145;151315855;300000 -40355;48680461;151319539;300000 -40356;48676777;151323223;300000 -40357;48673093;151326907;300000 -40358;48669409;151330591;300000 -40359;48665725;151334275;300000 -40360;48662042;151337958;300000 -40361;48658358;151341642;300000 -40362;48654675;151345325;300000 -40363;48650992;151349008;300000 -40364;48647309;151352691;300000 -40365;48643627;151356373;300000 -40366;48639945;151360055;300000 -40367;48636262;151363738;300000 -40368;48632580;151367420;300000 -40369;48628898;151371102;300000 -40370;48625217;151374783;300000 -40371;48621535;151378465;300000 -40372;48617854;151382146;300000 -40373;48614173;151385827;300000 -40374;48610492;151389508;300000 -40375;48606811;151393189;300000 -40376;48603131;151396869;300000 -40377;48599450;151400550;300000 -40378;48595770;151404230;300000 -40379;48592090;151407910;300000 -40380;48588410;151411590;300000 -40381;48584730;151415270;300000 -40382;48581051;151418949;300000 -40383;48577372;151422628;300000 -40384;48573693;151426307;300000 -40385;48570014;151429986;300000 -40386;48566335;151433665;300000 -40387;48562656;151437344;300000 -40388;48558978;151441022;300000 -40389;48555300;151444700;300000 -40390;48551622;151448378;300000 -40391;48547944;151452056;300000 -40392;48544266;151455734;300000 -40393;48540589;151459411;300000 -40394;48536911;151463089;300000 -40395;48533234;151466766;300000 -40396;48529557;151470443;300000 -40397;48525881;151474119;300000 -40398;48522204;151477796;300000 -40399;48518528;151481472;300000 -40400;48514851;151485149;300000 -40401;48511175;151488825;300000 -40402;48507500;151492500;300000 -40403;48503824;151496176;300000 -40404;48500149;151499851;300000 -40405;48496473;151503527;300000 -40406;48492798;151507202;300000 -40407;48489123;151510877;300000 -40408;48485448;151514552;300000 -40409;48481774;151518226;300000 -40410;48478099;151521901;300000 -40411;48474425;151525575;300000 -40412;48470751;151529249;300000 -40413;48467077;151532923;300000 -40414;48463404;151536596;300000 -40415;48459730;151540270;300000 -40416;48456057;151543943;300000 -40417;48452384;151547616;300000 -40418;48448711;151551289;300000 -40419;48445038;151554962;300000 -40420;48441366;151558634;300000 -40421;48437693;151562307;300000 -40422;48434021;151565979;300000 -40423;48430349;151569651;300000 -40424;48426677;151573323;300000 -40425;48423006;151576994;300000 -40426;48419334;151580666;300000 -40427;48415663;151584337;300000 -40428;48411992;151588008;300000 -40429;48408321;151591679;300000 -40430;48404650;151595350;300000 -40431;48400979;151599021;300000 -40432;48397309;151602691;300000 -40433;48393639;151606361;300000 -40434;48389969;151610031;300000 -40435;48386299;151613701;300000 -40436;48382629;151617371;300000 -40437;48378960;151621040;300000 -40438;48375291;151624709;300000 -40439;48371621;151628379;300000 -40440;48367953;151632047;300000 -40441;48364284;151635716;300000 -40442;48360615;151639385;300000 -40443;48356947;151643053;300000 -40444;48353279;151646721;300000 -40445;48349611;151650389;300000 -40446;48345943;151654057;300000 -40447;48342275;151657725;300000 -40448;48338608;151661392;300000 -40449;48334940;151665060;300000 -40450;48331273;151668727;300000 -40451;48327606;151672394;300000 -40452;48323939;151676061;300000 -40453;48320273;151679727;300000 -40454;48316607;151683393;300000 -40455;48312940;151687060;300000 -40456;48309274;151690726;300000 -40457;48305608;151694392;300000 -40458;48301943;151698057;300000 -40459;48298277;151701723;300000 -40460;48294612;151705388;300000 -40461;48290947;151709053;300000 -40462;48287282;151712718;300000 -40463;48283617;151716383;300000 -40464;48279953;151720047;300000 -40465;48276288;151723712;300000 -40466;48272624;151727376;300000 -40467;48268960;151731040;300000 -40468;48265296;151734704;300000 -40469;48261632;151738368;300000 -40470;48257969;151742031;300000 -40471;48254306;151745694;300000 -40472;48250642;151749358;300000 -40473;48246979;151753021;300000 -40474;48243317;151756683;300000 -40475;48239654;151760346;300000 -40476;48235992;151764008;300000 -40477;48232329;151767671;300000 -40478;48228667;151771333;300000 -40479;48225006;151774994;300000 -40480;48221344;151778656;300000 -40481;48217682;151782318;300000 -40482;48214021;151785979;300000 -40483;48210360;151789640;300000 -40484;48206699;151793301;300000 -40485;48203038;151796962;300000 -40486;48199378;151800622;300000 -40487;48195717;151804283;300000 -40488;48192057;151807943;300000 -40489;48188397;151811603;300000 -40490;48184737;151815263;300000 -40491;48181077;151818923;300000 -40492;48177418;151822582;300000 -40493;48173758;151826242;300000 -40494;48170099;151829901;300000 -40495;48166440;151833560;300000 -40496;48162782;151837218;300000 -40497;48159123;151840877;300000 -40498;48155464;151844536;300000 -40499;48151806;151848194;300000 -40500;48148148;151851852;300000 -40501;48144490;151855510;300000 -40502;48140833;151859167;300000 -40503;48137175;151862825;300000 -40504;48133518;151866482;300000 -40505;48129861;151870139;300000 -40506;48126204;151873796;300000 -40507;48122547;151877453;300000 -40508;48118890;151881110;300000 -40509;48115234;151884766;300000 -40510;48111577;151888423;300000 -40511;48107921;151892079;300000 -40512;48104265;151895735;300000 -40513;48100610;151899390;300000 -40514;48096954;151903046;300000 -40515;48093299;151906701;300000 -40516;48089644;151910356;300000 -40517;48085989;151914011;300000 -40518;48082334;151917666;300000 -40519;48078679;151921321;300000 -40520;48075025;151924975;300000 -40521;48071370;151928630;300000 -40522;48067716;151932284;300000 -40523;48064062;151935938;300000 -40524;48060409;151939591;300000 -40525;48056755;151943245;300000 -40526;48053102;151946898;300000 -40527;48049449;151950551;300000 -40528;48045795;151954205;300000 -40529;48042143;151957857;300000 -40530;48038490;151961510;300000 -40531;48034838;151965162;300000 -40532;48031185;151968815;300000 -40533;48027533;151972467;300000 -40534;48023881;151976119;300000 -40535;48020229;151979771;300000 -40536;48016578;151983422;300000 -40537;48012926;151987074;300000 -40538;48009275;151990725;300000 -40539;48005624;151994376;300000 -40540;48001973;151998027;300000 -40541;47998323;152001677;300000 -40542;47994672;152005328;300000 -40543;47991022;152008978;300000 -40544;47987372;152012628;300000 -40545;47983722;152016278;300000 -40546;47980072;152019928;300000 -40547;47976422;152023578;300000 -40548;47972773;152027227;300000 -40549;47969124;152030876;300000 -40550;47965475;152034525;300000 -40551;47961826;152038174;300000 -40552;47958177;152041823;300000 -40553;47954529;152045471;300000 -40554;47950880;152049120;300000 -40555;47947232;152052768;300000 -40556;47943584;152056416;300000 -40557;47939936;152060064;300000 -40558;47936289;152063711;300000 -40559;47932641;152067359;300000 -40560;47928994;152071006;300000 -40561;47925347;152074653;300000 -40562;47921700;152078300;300000 -40563;47918053;152081947;300000 -40564;47914407;152085593;300000 -40565;47910761;152089239;300000 -40566;47907114;152092886;300000 -40567;47903468;152096532;300000 -40568;47899823;152100177;300000 -40569;47896177;152103823;300000 -40570;47892531;152107469;300000 -40571;47888886;152111114;300000 -40572;47885241;152114759;300000 -40573;47881596;152118404;300000 -40574;47877951;152122049;300000 -40575;47874307;152125693;300000 -40576;47870662;152129338;300000 -40577;47867018;152132982;300000 -40578;47863374;152136626;300000 -40579;47859730;152140270;300000 -40580;47856087;152143913;300000 -40581;47852443;152147557;300000 -40582;47848800;152151200;300000 -40583;47845157;152154843;300000 -40584;47841514;152158486;300000 -40585;47837871;152162129;300000 -40586;47834229;152165771;300000 -40587;47830586;152169414;300000 -40588;47826944;152173056;300000 -40589;47823302;152176698;300000 -40590;47819660;152180340;300000 -40591;47816018;152183982;300000 -40592;47812377;152187623;300000 -40593;47808735;152191265;300000 -40594;47805094;152194906;300000 -40595;47801453;152198547;300000 -40596;47797813;152202187;300000 -40597;47794172;152205828;300000 -40598;47790532;152209468;300000 -40599;47786891;152213109;300000 -40600;47783251;152216749;300000 -40601;47779611;152220389;300000 -40602;47775972;152224028;300000 -40603;47772332;152227668;300000 -40604;47768693;152231307;300000 -40605;47765054;152234946;300000 -40606;47761415;152238585;300000 -40607;47757776;152242224;300000 -40608;47754137;152245863;300000 -40609;47750499;152249501;300000 -40610;47746860;152253140;300000 -40611;47743222;152256778;300000 -40612;47739584;152260416;300000 -40613;47735947;152264053;300000 -40614;47732309;152267691;300000 -40615;47728672;152271328;300000 -40616;47725034;152274966;300000 -40617;47721397;152278603;300000 -40618;47717761;152282239;300000 -40619;47714124;152285876;300000 -40620;47710487;152289513;300000 -40621;47706851;152293149;300000 -40622;47703215;152296785;300000 -40623;47699579;152300421;300000 -40624;47695943;152304057;300000 -40625;47692308;152307692;300000 -40626;47688672;152311328;300000 -40627;47685037;152314963;300000 -40628;47681402;152318598;300000 -40629;47677767;152322233;300000 -40630;47674132;152325868;300000 -40631;47670498;152329502;300000 -40632;47666864;152333136;300000 -40633;47663229;152336771;300000 -40634;47659595;152340405;300000 -40635;47655962;152344038;300000 -40636;47652328;152347672;300000 -40637;47648695;152351305;300000 -40638;47645061;152354939;300000 -40639;47641428;152358572;300000 -40640;47637795;152362205;300000 -40641;47634163;152365837;300000 -40642;47630530;152369470;300000 -40643;47626898;152373102;300000 -40644;47623265;152376735;300000 -40645;47619633;152380367;300000 -40646;47616002;152383998;300000 -40647;47612370;152387630;300000 -40648;47608738;152391262;300000 -40649;47605107;152394893;300000 -40650;47601476;152398524;300000 -40651;47597845;152402155;300000 -40652;47594214;152405786;300000 -40653;47590584;152409416;300000 -40654;47586953;152413047;300000 -40655;47583323;152416677;300000 -40656;47579693;152420307;300000 -40657;47576063;152423937;300000 -40658;47572433;152427567;300000 -40659;47568804;152431196;300000 -40660;47565175;152434825;300000 -40661;47561545;152438455;300000 -40662;47557916;152442084;300000 -40663;47554288;152445712;300000 -40664;47550659;152449341;300000 -40665;47547031;152452969;300000 -40666;47543402;152456598;300000 -40667;47539774;152460226;300000 -40668;47536146;152463854;300000 -40669;47532519;152467481;300000 -40670;47528891;152471109;300000 -40671;47525264;152474736;300000 -40672;47521637;152478363;300000 -40673;47518009;152481991;300000 -40674;47514383;152485617;300000 -40675;47510756;152489244;300000 -40676;47507130;152492870;300000 -40677;47503503;152496497;300000 -40678;47499877;152500123;300000 -40679;47496251;152503749;300000 -40680;47492625;152507375;300000 -40681;47489000;152511000;300000 -40682;47485374;152514626;300000 -40683;47481749;152518251;300000 -40684;47478124;152521876;300000 -40685;47474499;152525501;300000 -40686;47470875;152529125;300000 -40687;47467250;152532750;300000 -40688;47463626;152536374;300000 -40689;47460001;152539999;300000 -40690;47456377;152543623;300000 -40691;47452754;152547246;300000 -40692;47449130;152550870;300000 -40693;47445507;152554493;300000 -40694;47441883;152558117;300000 -40695;47438260;152561740;300000 -40696;47434637;152565363;300000 -40697;47431015;152568985;300000 -40698;47427392;152572608;300000 -40699;47423770;152576230;300000 -40700;47420147;152579853;300000 -40701;47416525;152583475;300000 -40702;47412904;152587096;300000 -40703;47409282;152590718;300000 -40704;47405660;152594340;300000 -40705;47402039;152597961;300000 -40706;47398418;152601582;300000 -40707;47394797;152605203;300000 -40708;47391176;152608824;300000 -40709;47387556;152612444;300000 -40710;47383935;152616065;300000 -40711;47380315;152619685;300000 -40712;47376695;152623305;300000 -40713;47373075;152626925;300000 -40714;47369455;152630545;300000 -40715;47365836;152634164;300000 -40716;47362216;152637784;300000 -40717;47358597;152641403;300000 -40718;47354978;152645022;300000 -40719;47351359;152648641;300000 -40720;47347741;152652259;300000 -40721;47344122;152655878;300000 -40722;47340504;152659496;300000 -40723;47336886;152663114;300000 -40724;47333268;152666732;300000 -40725;47329650;152670350;300000 -40726;47326033;152673967;300000 -40727;47322415;152677585;300000 -40728;47318798;152681202;300000 -40729;47315181;152684819;300000 -40730;47311564;152688436;300000 -40731;47307947;152692053;300000 -40732;47304331;152695669;300000 -40733;47300714;152699286;300000 -40734;47297098;152702902;300000 -40735;47293482;152706518;300000 -40736;47289866;152710134;300000 -40737;47286251;152713749;300000 -40738;47282635;152717365;300000 -40739;47279020;152720980;300000 -40740;47275405;152724595;300000 -40741;47271790;152728210;300000 -40742;47268175;152731825;300000 -40743;47264561;152735439;300000 -40744;47260946;152739054;300000 -40745;47257332;152742668;300000 -40746;47253718;152746282;300000 -40747;47250104;152749896;300000 -40748;47246491;152753509;300000 -40749;47242877;152757123;300000 -40750;47239264;152760736;300000 -40751;47235651;152764349;300000 -40752;47232038;152767962;300000 -40753;47228425;152771575;300000 -40754;47224812;152775188;300000 -40755;47221200;152778800;300000 -40756;47217588;152782412;300000 -40757;47213976;152786024;300000 -40758;47210364;152789636;300000 -40759;47206752;152793248;300000 -40760;47203140;152796860;300000 -40761;47199529;152800471;300000 -40762;47195918;152804082;300000 -40763;47192307;152807693;300000 -40764;47188696;152811304;300000 -40765;47185085;152814915;300000 -40766;47181475;152818525;300000 -40767;47177864;152822136;300000 -40768;47174254;152825746;300000 -40769;47170644;152829356;300000 -40770;47167035;152832965;300000 -40771;47163425;152836575;300000 -40772;47159816;152840184;300000 -40773;47156206;152843794;300000 -40774;47152597;152847403;300000 -40775;47148988;152851012;300000 -40776;47145380;152854620;300000 -40777;47141771;152858229;300000 -40778;47138163;152861837;300000 -40779;47134555;152865445;300000 -40780;47130947;152869053;300000 -40781;47127339;152872661;300000 -40782;47123731;152876269;300000 -40783;47120124;152879876;300000 -40784;47116516;152883484;300000 -40785;47112909;152887091;300000 -40786;47109302;152890698;300000 -40787;47105695;152894305;300000 -40788;47102089;152897911;300000 -40789;47098482;152901518;300000 -40790;47094876;152905124;300000 -40791;47091270;152908730;300000 -40792;47087664;152912336;300000 -40793;47084059;152915941;300000 -40794;47080453;152919547;300000 -40795;47076848;152923152;300000 -40796;47073242;152926758;300000 -40797;47069637;152930363;300000 -40798;47066033;152933967;300000 -40799;47062428;152937572;300000 -40800;47058824;152941176;300000 -40801;47055219;152944781;300000 -40802;47051615;152948385;300000 -40803;47048011;152951989;300000 -40804;47044407;152955593;300000 -40805;47040804;152959196;300000 -40806;47037200;152962800;300000 -40807;47033597;152966403;300000 -40808;47029994;152970006;300000 -40809;47026391;152973609;300000 -40810;47022789;152977211;300000 -40811;47019186;152980814;300000 -40812;47015584;152984416;300000 -40813;47011981;152988019;300000 -40814;47008379;152991621;300000 -40815;47004778;152995222;300000 -40816;47001176;152998824;300000 -40817;46997575;153002425;300000 -40818;46993973;153006027;300000 -40819;46990372;153009628;300000 -40820;46986771;153013229;300000 -40821;46983170;153016830;300000 -40822;46979570;153020430;300000 -40823;46975969;153024031;300000 -40824;46972369;153027631;300000 -40825;46968769;153031231;300000 -40826;46965169;153034831;300000 -40827;46961570;153038430;300000 -40828;46957970;153042030;300000 -40829;46954371;153045629;300000 -40830;46950771;153049229;300000 -40831;46947172;153052828;300000 -40832;46943574;153056426;300000 -40833;46939975;153060025;300000 -40834;46936377;153063623;300000 -40835;46932778;153067222;300000 -40836;46929180;153070820;300000 -40837;46925582;153074418;300000 -40838;46921984;153078016;300000 -40839;46918387;153081613;300000 -40840;46914789;153085211;300000 -40841;46911192;153088808;300000 -40842;46907595;153092405;300000 -40843;46903998;153096002;300000 -40844;46900402;153099598;300000 -40845;46896805;153103195;300000 -40846;46893209;153106791;300000 -40847;46889612;153110388;300000 -40848;46886016;153113984;300000 -40849;46882421;153117579;300000 -40850;46878825;153121175;300000 -40851;46875229;153124771;300000 -40852;46871634;153128366;300000 -40853;46868039;153131961;300000 -40854;46864444;153135556;300000 -40855;46860849;153139151;300000 -40856;46857255;153142745;300000 -40857;46853660;153146340;300000 -40858;46850066;153149934;300000 -40859;46846472;153153528;300000 -40860;46842878;153157122;300000 -40861;46839284;153160716;300000 -40862;46835691;153164309;300000 -40863;46832097;153167903;300000 -40864;46828504;153171496;300000 -40865;46824911;153175089;300000 -40866;46821318;153178682;300000 -40867;46817726;153182274;300000 -40868;46814133;153185867;300000 -40869;46810541;153189459;300000 -40870;46806949;153193051;300000 -40871;46803357;153196643;300000 -40872;46799765;153200235;300000 -40873;46796174;153203826;300000 -40874;46792582;153207418;300000 -40875;46788991;153211009;300000 -40876;46785400;153214600;300000 -40877;46781809;153218191;300000 -40878;46778218;153221782;300000 -40879;46774628;153225372;300000 -40880;46771037;153228963;300000 -40881;46767447;153232553;300000 -40882;46763857;153236143;300000 -40883;46760267;153239733;300000 -40884;46756677;153243323;300000 -40885;46753088;153246912;300000 -40886;46749499;153250501;300000 -40887;46745909;153254091;300000 -40888;46742320;153257680;300000 -40889;46738732;153261268;300000 -40890;46735143;153264857;300000 -40891;46731555;153268445;300000 -40892;46727966;153272034;300000 -40893;46724378;153275622;300000 -40894;46720790;153279210;300000 -40895;46717203;153282797;300000 -40896;46713615;153286385;300000 -40897;46710028;153289972;300000 -40898;46706440;153293560;300000 -40899;46702853;153297147;300000 -40900;46699267;153300733;300000 -40901;46695680;153304320;300000 -40902;46692093;153307907;300000 -40903;46688507;153311493;300000 -40904;46684921;153315079;300000 -40905;46681335;153318665;300000 -40906;46677749;153322251;300000 -40907;46674163;153325837;300000 -40908;46670578;153329422;300000 -40909;46666993;153333007;300000 -40910;46663407;153336593;300000 -40911;46659823;153340177;300000 -40912;46656238;153343762;300000 -40913;46652653;153347347;300000 -40914;46649069;153350931;300000 -40915;46645485;153354515;300000 -40916;46641900;153358100;300000 -40917;46638317;153361683;300000 -40918;46634733;153365267;300000 -40919;46631149;153368851;300000 -40920;46627566;153372434;300000 -40921;46623983;153376017;300000 -40922;46620400;153379600;300000 -40923;46616817;153383183;300000 -40924;46613234;153386766;300000 -40925;46609652;153390348;300000 -40926;46606069;153393931;300000 -40927;46602487;153397513;300000 -40928;46598905;153401095;300000 -40929;46595324;153404676;300000 -40930;46591742;153408258;300000 -40931;46588161;153411839;300000 -40932;46584579;153415421;300000 -40933;46580998;153419002;300000 -40934;46577417;153422583;300000 -40935;46573837;153426163;300000 -40936;46570256;153429744;300000 -40937;46566676;153433324;300000 -40938;46563095;153436905;300000 -40939;46559515;153440485;300000 -40940;46555936;153444064;300000 -40941;46552356;153447644;300000 -40942;46548776;153451224;300000 -40943;46545197;153454803;300000 -40944;46541618;153458382;300000 -40945;46538039;153461961;300000 -40946;46534460;153465540;300000 -40947;46530881;153469119;300000 -40948;46527303;153472697;300000 -40949;46523725;153476275;300000 -40950;46520147;153479853;300000 -40951;46516569;153483431;300000 -40952;46512991;153487009;300000 -40953;46509413;153490587;300000 -40954;46505836;153494164;300000 -40955;46502259;153497741;300000 -40956;46498682;153501318;300000 -40957;46495105;153504895;300000 -40958;46491528;153508472;300000 -40959;46487951;153512049;300000 -40960;46484375;153515625;300000 -40961;46480799;153519201;300000 -40962;46477223;153522777;300000 -40963;46473647;153526353;300000 -40964;46470071;153529929;300000 -40965;46466496;153533504;300000 -40966;46462920;153537080;300000 -40967;46459345;153540655;300000 -40968;46455770;153544230;300000 -40969;46452196;153547804;300000 -40970;46448621;153551379;300000 -40971;46445046;153554954;300000 -40972;46441472;153558528;300000 -40973;46437898;153562102;300000 -40974;46434324;153565676;300000 -40975;46430750;153569250;300000 -40976;46427177;153572823;300000 -40977;46423603;153576397;300000 -40978;46420030;153579970;300000 -40979;46416457;153583543;300000 -40980;46412884;153587116;300000 -40981;46409312;153590688;300000 -40982;46405739;153594261;300000 -40983;46402167;153597833;300000 -40984;46398595;153601405;300000 -40985;46395023;153604977;300000 -40986;46391451;153608549;300000 -40987;46387879;153612121;300000 -40988;46384308;153615692;300000 -40989;46380736;153619264;300000 -40990;46377165;153622835;300000 -40991;46373594;153626406;300000 -40992;46370023;153629977;300000 -40993;46366453;153633547;300000 -40994;46362882;153637118;300000 -40995;46359312;153640688;300000 -40996;46355742;153644258;300000 -40997;46352172;153647828;300000 -40998;46348602;153651398;300000 -40999;46345033;153654967;300000 -41000;46341463;153658537;300000 -41001;46337894;153662106;300000 -41002;46334325;153665675;300000 -41003;46330756;153669244;300000 -41004;46327188;153672812;300000 -41005;46323619;153676381;300000 -41006;46320051;153679949;300000 -41007;46316483;153683517;300000 -41008;46312915;153687085;300000 -41009;46309347;153690653;300000 -41010;46305779;153694221;300000 -41011;46302212;153697788;300000 -41012;46298644;153701356;300000 -41013;46295077;153704923;300000 -41014;46291510;153708490;300000 -41015;46287943;153712057;300000 -41016;46284377;153715623;300000 -41017;46280810;153719190;300000 -41018;46277244;153722756;300000 -41019;46273678;153726322;300000 -41020;46270112;153729888;300000 -41021;46266546;153733454;300000 -41022;46262981;153737019;300000 -41023;46259415;153740585;300000 -41024;46255850;153744150;300000 -41025;46252285;153747715;300000 -41026;46248720;153751280;300000 -41027;46245156;153754844;300000 -41028;46241591;153758409;300000 -41029;46238027;153761973;300000 -41030;46234463;153765537;300000 -41031;46230899;153769101;300000 -41032;46227335;153772665;300000 -41033;46223771;153776229;300000 -41034;46220208;153779792;300000 -41035;46216644;153783356;300000 -41036;46213081;153786919;300000 -41037;46209518;153790482;300000 -41038;46205955;153794045;300000 -41039;46202393;153797607;300000 -41040;46198830;153801170;300000 -41041;46195268;153804732;300000 -41042;46191706;153808294;300000 -41043;46188144;153811856;300000 -41044;46184582;153815418;300000 -41045;46181021;153818979;300000 -41046;46177459;153822541;300000 -41047;46173898;153826102;300000 -41048;46170337;153829663;300000 -41049;46166776;153833224;300000 -41050;46163216;153836784;300000 -41051;46159655;153840345;300000 -41052;46156095;153843905;300000 -41053;46152535;153847465;300000 -41054;46148975;153851025;300000 -41055;46145415;153854585;300000 -41056;46141855;153858145;300000 -41057;46138296;153861704;300000 -41058;46134736;153865264;300000 -41059;46131177;153868823;300000 -41060;46127618;153872382;300000 -41061;46124059;153875941;300000 -41062;46120501;153879499;300000 -41063;46116942;153883058;300000 -41064;46113384;153886616;300000 -41065;46109826;153890174;300000 -41066;46106268;153893732;300000 -41067;46102710;153897290;300000 -41068;46099153;153900847;300000 -41069;46095595;153904405;300000 -41070;46092038;153907962;300000 -41071;46088481;153911519;300000 -41072;46084924;153915076;300000 -41073;46081367;153918633;300000 -41074;46077811;153922189;300000 -41075;46074254;153925746;300000 -41076;46070698;153929302;300000 -41077;46067142;153932858;300000 -41078;46063586;153936414;300000 -41079;46060031;153939969;300000 -41080;46056475;153943525;300000 -41081;46052920;153947080;300000 -41082;46049365;153950635;300000 -41083;46045810;153954190;300000 -41084;46042255;153957745;300000 -41085;46038700;153961300;300000 -41086;46035146;153964854;300000 -41087;46031592;153968408;300000 -41088;46028037;153971963;300000 -41089;46024483;153975517;300000 -41090;46020930;153979070;300000 -41091;46017376;153982624;300000 -41092;46013823;153986177;300000 -41093;46010269;153989731;300000 -41094;46006716;153993284;300000 -41095;46003163;153996837;300000 -41096;45999611;154000389;300000 -41097;45996058;154003942;300000 -41098;45992506;154007494;300000 -41099;45988954;154011046;300000 -41100;45985401;154014599;300000 -41101;45981850;154018150;300000 -41102;45978298;154021702;300000 -41103;45974746;154025254;300000 -41104;45971195;154028805;300000 -41105;45967644;154032356;300000 -41106;45964093;154035907;300000 -41107;45960542;154039458;300000 -41108;45956991;154043009;300000 -41109;45953441;154046559;300000 -41110;45949891;154050109;300000 -41111;45946340;154053660;300000 -41112;45942790;154057210;300000 -41113;45939241;154060759;300000 -41114;45935691;154064309;300000 -41115;45932142;154067858;300000 -41116;45928592;154071408;300000 -41117;45925043;154074957;300000 -41118;45921494;154078506;300000 -41119;45917945;154082055;300000 -41120;45914397;154085603;300000 -41121;45910848;154089152;300000 -41122;45907300;154092700;300000 -41123;45903752;154096248;300000 -41124;45900204;154099796;300000 -41125;45896657;154103343;300000 -41126;45893109;154106891;300000 -41127;45889562;154110438;300000 -41128;45886014;154113986;300000 -41129;45882467;154117533;300000 -41130;45878920;154121080;300000 -41131;45875374;154124626;300000 -41132;45871827;154128173;300000 -41133;45868281;154131719;300000 -41134;45864735;154135265;300000 -41135;45861189;154138811;300000 -41136;45857643;154142357;300000 -41137;45854097;154145903;300000 -41138;45850552;154149448;300000 -41139;45847006;154152994;300000 -41140;45843461;154156539;300000 -41141;45839916;154160084;300000 -41142;45836372;154163628;300000 -41143;45832827;154167173;300000 -41144;45829283;154170717;300000 -41145;45825738;154174262;300000 -41146;45822194;154177806;300000 -41147;45818650;154181350;300000 -41148;45815106;154184894;300000 -41149;45811563;154188437;300000 -41150;45808019;154191981;300000 -41151;45804476;154195524;300000 -41152;45800933;154199067;300000 -41153;45797390;154202610;300000 -41154;45793847;154206153;300000 -41155;45790305;154209695;300000 -41156;45786763;154213237;300000 -41157;45783220;154216780;300000 -41158;45779678;154220322;300000 -41159;45776136;154223864;300000 -41160;45772595;154227405;300000 -41161;45769053;154230947;300000 -41162;45765512;154234488;300000 -41163;45761971;154238029;300000 -41164;45758430;154241570;300000 -41165;45754889;154245111;300000 -41166;45751348;154248652;300000 -41167;45747808;154252192;300000 -41168;45744267;154255733;300000 -41169;45740727;154259273;300000 -41170;45737187;154262813;300000 -41171;45733647;154266353;300000 -41172;45730108;154269892;300000 -41173;45726568;154273432;300000 -41174;45723029;154276971;300000 -41175;45719490;154280510;300000 -41176;45715951;154284049;300000 -41177;45712412;154287588;300000 -41178;45708874;154291126;300000 -41179;45705335;154294665;300000 -41180;45701797;154298203;300000 -41181;45698259;154301741;300000 -41182;45694721;154305279;300000 -41183;45691183;154308817;300000 -41184;45687646;154312354;300000 -41185;45684108;154315892;300000 -41186;45680571;154319429;300000 -41187;45677034;154322966;300000 -41188;45673497;154326503;300000 -41189;45669960;154330040;300000 -41190;45666424;154333576;300000 -41191;45662888;154337112;300000 -41192;45659351;154340649;300000 -41193;45655815;154344185;300000 -41194;45652279;154347721;300000 -41195;45648744;154351256;300000 -41196;45645208;154354792;300000 -41197;45641673;154358327;300000 -41198;45638138;154361862;300000 -41199;45634603;154365397;300000 -41200;45631068;154368932;300000 -41201;45627533;154372467;300000 -41202;45623999;154376001;300000 -41203;45620465;154379535;300000 -41204;45616930;154383070;300000 -41205;45613396;154386604;300000 -41206;45609863;154390137;300000 -41207;45606329;154393671;300000 -41208;45602796;154397204;300000 -41209;45599262;154400738;300000 -41210;45595729;154404271;300000 -41211;45592196;154407804;300000 -41212;45588663;154411337;300000 -41213;45585131;154414869;300000 -41214;45581598;154418402;300000 -41215;45578066;154421934;300000 -41216;45574534;154425466;300000 -41217;45571002;154428998;300000 -41218;45567471;154432529;300000 -41219;45563939;154436061;300000 -41220;45560408;154439592;300000 -41221;45556876;154443124;300000 -41222;45553345;154446655;300000 -41223;45549814;154450186;300000 -41224;45546284;154453716;300000 -41225;45542753;154457247;300000 -41226;45539223;154460777;300000 -41227;45535693;154464307;300000 -41228;45532163;154467837;300000 -41229;45528633;154471367;300000 -41230;45525103;154474897;300000 -41231;45521574;154478426;300000 -41232;45518044;154481956;300000 -41233;45514515;154485485;300000 -41234;45510986;154489014;300000 -41235;45507457;154492543;300000 -41236;45503929;154496071;300000 -41237;45500400;154499600;300000 -41238;45496872;154503128;300000 -41239;45493344;154506656;300000 -41240;45489816;154510184;300000 -41241;45486288;154513712;300000 -41242;45482760;154517240;300000 -41243;45479233;154520767;300000 -41244;45475706;154524294;300000 -41245;45472178;154527822;300000 -41246;45468652;154531348;300000 -41247;45465125;154534875;300000 -41248;45461598;154538402;300000 -41249;45458072;154541928;300000 -41250;45454545;154545455;300000 -41251;45451019;154548981;300000 -41252;45447493;154552507;300000 -41253;45443968;154556032;300000 -41254;45440442;154559558;300000 -41255;45436917;154563083;300000 -41256;45433392;154566608;300000 -41257;45429866;154570134;300000 -41258;45426342;154573658;300000 -41259;45422817;154577183;300000 -41260;45419292;154580708;300000 -41261;45415768;154584232;300000 -41262;45412244;154587756;300000 -41263;45408720;154591280;300000 -41264;45405196;154594804;300000 -41265;45401672;154598328;300000 -41266;45398149;154601851;300000 -41267;45394625;154605375;300000 -41268;45391102;154608898;300000 -41269;45387579;154612421;300000 -41270;45384056;154615944;300000 -41271;45380534;154619466;300000 -41272;45377011;154622989;300000 -41273;45373489;154626511;300000 -41274;45369967;154630033;300000 -41275;45366445;154633555;300000 -41276;45362923;154637077;300000 -41277;45359401;154640599;300000 -41278;45355880;154644120;300000 -41279;45352358;154647642;300000 -41280;45348837;154651163;300000 -41281;45345316;154654684;300000 -41282;45341795;154658205;300000 -41283;45338275;154661725;300000 -41284;45334754;154665246;300000 -41285;45331234;154668766;300000 -41286;45327714;154672286;300000 -41287;45324194;154675806;300000 -41288;45320674;154679326;300000 -41289;45317155;154682845;300000 -41290;45313635;154686365;300000 -41291;45310116;154689884;300000 -41292;45306597;154693403;300000 -41293;45303078;154696922;300000 -41294;45299559;154700441;300000 -41295;45296041;154703959;300000 -41296;45292522;154707478;300000 -41297;45289004;154710996;300000 -41298;45285486;154714514;300000 -41299;45281968;154718032;300000 -41300;45278450;154721550;300000 -41301;45274933;154725067;300000 -41302;45271415;154728585;300000 -41303;45267898;154732102;300000 -41304;45264381;154735619;300000 -41305;45260864;154739136;300000 -41306;45257348;154742652;300000 -41307;45253831;154746169;300000 -41308;45250315;154749685;300000 -41309;45246799;154753201;300000 -41310;45243282;154756718;300000 -41311;45239767;154760233;300000 -41312;45236251;154763749;300000 -41313;45232735;154767265;300000 -41314;45229220;154770780;300000 -41315;45225705;154774295;300000 -41316;45222190;154777810;300000 -41317;45218675;154781325;300000 -41318;45215160;154784840;300000 -41319;45211646;154788354;300000 -41320;45208132;154791868;300000 -41321;45204618;154795382;300000 -41322;45201104;154798896;300000 -41323;45197590;154802410;300000 -41324;45194076;154805924;300000 -41325;45190563;154809437;300000 -41326;45187049;154812951;300000 -41327;45183536;154816464;300000 -41328;45180023;154819977;300000 -41329;45176510;154823490;300000 -41330;45172998;154827002;300000 -41331;45169485;154830515;300000 -41332;45165973;154834027;300000 -41333;45162461;154837539;300000 -41334;45158949;154841051;300000 -41335;45155437;154844563;300000 -41336;45151926;154848074;300000 -41337;45148414;154851586;300000 -41338;45144903;154855097;300000 -41339;45141392;154858608;300000 -41340;45137881;154862119;300000 -41341;45134370;154865630;300000 -41342;45130860;154869140;300000 -41343;45127349;154872651;300000 -41344;45123839;154876161;300000 -41345;45120329;154879671;300000 -41346;45116819;154883181;300000 -41347;45113309;154886691;300000 -41348;45109800;154890200;300000 -41349;45106290;154893710;300000 -41350;45102781;154897219;300000 -41351;45099272;154900728;300000 -41352;45095763;154904237;300000 -41353;45092254;154907746;300000 -41354;45088746;154911254;300000 -41355;45085238;154914762;300000 -41356;45081729;154918271;300000 -41357;45078221;154921779;300000 -41358;45074713;154925287;300000 -41359;45071206;154928794;300000 -41360;45067698;154932302;300000 -41361;45064191;154935809;300000 -41362;45060684;154939316;300000 -41363;45057177;154942823;300000 -41364;45053670;154946330;300000 -41365;45050163;154949837;300000 -41366;45046657;154953343;300000 -41367;45043150;154956850;300000 -41368;45039644;154960356;300000 -41369;45036138;154963862;300000 -41370;45032632;154967368;300000 -41371;45029127;154970873;300000 -41372;45025621;154974379;300000 -41373;45022116;154977884;300000 -41374;45018611;154981389;300000 -41375;45015106;154984894;300000 -41376;45011601;154988399;300000 -41377;45008096;154991904;300000 -41378;45004592;154995408;300000 -41379;45001088;154998912;300000 -41380;44997583;155002417;300000 -41381;44994079;155005921;300000 -41382;44990576;155009424;300000 -41383;44987072;155012928;300000 -41384;44983569;155016431;300000 -41385;44980065;155019935;300000 -41386;44976562;155023438;300000 -41387;44973059;155026941;300000 -41388;44969556;155030444;300000 -41389;44966054;155033946;300000 -41390;44962551;155037449;300000 -41391;44959049;155040951;300000 -41392;44955547;155044453;300000 -41393;44952045;155047955;300000 -41394;44948543;155051457;300000 -41395;44945042;155054958;300000 -41396;44941540;155058460;300000 -41397;44938039;155061961;300000 -41398;44934538;155065462;300000 -41399;44931037;155068963;300000 -41400;44927536;155072464;300000 -41401;44924036;155075964;300000 -41402;44920535;155079465;300000 -41403;44917035;155082965;300000 -41404;44913535;155086465;300000 -41405;44910035;155089965;300000 -41406;44906535;155093465;300000 -41407;44903036;155096964;300000 -41408;44899536;155100464;300000 -41409;44896037;155103963;300000 -41410;44892538;155107462;300000 -41411;44889039;155110961;300000 -41412;44885540;155114460;300000 -41413;44882042;155117958;300000 -41414;44878543;155121457;300000 -41415;44875045;155124955;300000 -41416;44871547;155128453;300000 -41417;44868049;155131951;300000 -41418;44864552;155135448;300000 -41419;44861054;155138946;300000 -41420;44857557;155142443;300000 -41421;44854060;155145940;300000 -41422;44850563;155149437;300000 -41423;44847066;155152934;300000 -41424;44843569;155156431;300000 -41425;44840072;155159928;300000 -41426;44836576;155163424;300000 -41427;44833080;155166920;300000 -41428;44829584;155170416;300000 -41429;44826088;155173912;300000 -41430;44822592;155177408;300000 -41431;44819097;155180903;300000 -41432;44815601;155184399;300000 -41433;44812106;155187894;300000 -41434;44808611;155191389;300000 -41435;44805116;155194884;300000 -41436;44801622;155198378;300000 -41437;44798127;155201873;300000 -41438;44794633;155205367;300000 -41439;44791139;155208861;300000 -41440;44787645;155212355;300000 -41441;44784151;155215849;300000 -41442;44780657;155219343;300000 -41443;44777164;155222836;300000 -41444;44773670;155226330;300000 -41445;44770177;155229823;300000 -41446;44766684;155233316;300000 -41447;44763192;155236808;300000 -41448;44759699;155240301;300000 -41449;44756206;155243794;300000 -41450;44752714;155247286;300000 -41451;44749222;155250778;300000 -41452;44745730;155254270;300000 -41453;44742238;155257762;300000 -41454;44738747;155261253;300000 -41455;44735255;155264745;300000 -41456;44731764;155268236;300000 -41457;44728273;155271727;300000 -41458;44724782;155275218;300000 -41459;44721291;155278709;300000 -41460;44717800;155282200;300000 -41461;44714310;155285690;300000 -41462;44710820;155289180;300000 -41463;44707329;155292671;300000 -41464;44703839;155296161;300000 -41465;44700350;155299650;300000 -41466;44696860;155303140;300000 -41467;44693371;155306629;300000 -41468;44689881;155310119;300000 -41469;44686392;155313608;300000 -41470;44682903;155317097;300000 -41471;44679415;155320585;300000 -41472;44675926;155324074;300000 -41473;44672437;155327563;300000 -41474;44668949;155331051;300000 -41475;44665461;155334539;300000 -41476;44661973;155338027;300000 -41477;44658485;155341515;300000 -41478;44654998;155345002;300000 -41479;44651510;155348490;300000 -41480;44648023;155351977;300000 -41481;44644536;155355464;300000 -41482;44641049;155358951;300000 -41483;44637562;155362438;300000 -41484;44634076;155365924;300000 -41485;44630589;155369411;300000 -41486;44627103;155372897;300000 -41487;44623617;155376383;300000 -41488;44620131;155379869;300000 -41489;44616645;155383355;300000 -41490;44613160;155386840;300000 -41491;44609674;155390326;300000 -41492;44606189;155393811;300000 -41493;44602704;155397296;300000 -41494;44599219;155400781;300000 -41495;44595734;155404266;300000 -41496;44592250;155407750;300000 -41497;44588765;155411235;300000 -41498;44585281;155414719;300000 -41499;44581797;155418203;300000 -41500;44578313;155421687;300000 -41501;44574830;155425170;300000 -41502;44571346;155428654;300000 -41503;44567863;155432137;300000 -41504;44564379;155435621;300000 -41505;44560896;155439104;300000 -41506;44557413;155442587;300000 -41507;44553931;155446069;300000 -41508;44550448;155449552;300000 -41509;44546966;155453034;300000 -41510;44543483;155456517;300000 -41511;44540001;155459999;300000 -41512;44536520;155463480;300000 -41513;44533038;155466962;300000 -41514;44529556;155470444;300000 -41515;44526075;155473925;300000 -41516;44522594;155477406;300000 -41517;44519113;155480887;300000 -41518;44515632;155484368;300000 -41519;44512151;155487849;300000 -41520;44508671;155491329;300000 -41521;44505190;155494810;300000 -41522;44501710;155498290;300000 -41523;44498230;155501770;300000 -41524;44494750;155505250;300000 -41525;44491270;155508730;300000 -41526;44487791;155512209;300000 -41527;44484311;155515689;300000 -41528;44480832;155519168;300000 -41529;44477353;155522647;300000 -41530;44473874;155526126;300000 -41531;44470396;155529604;300000 -41532;44466917;155533083;300000 -41533;44463439;155536561;300000 -41534;44459961;155540039;300000 -41535;44456482;155543518;300000 -41536;44453005;155546995;300000 -41537;44449527;155550473;300000 -41538;44446049;155553951;300000 -41539;44442572;155557428;300000 -41540;44439095;155560905;300000 -41541;44435618;155564382;300000 -41542;44432141;155567859;300000 -41543;44428664;155571336;300000 -41544;44425188;155574812;300000 -41545;44421711;155578289;300000 -41546;44418235;155581765;300000 -41547;44414759;155585241;300000 -41548;44411283;155588717;300000 -41549;44407808;155592192;300000 -41550;44404332;155595668;300000 -41551;44400857;155599143;300000 -41552;44397382;155602618;300000 -41553;44393907;155606093;300000 -41554;44390432;155609568;300000 -41555;44386957;155613043;300000 -41556;44383483;155616517;300000 -41557;44380008;155619992;300000 -41558;44376534;155623466;300000 -41559;44373060;155626940;300000 -41560;44369586;155630414;300000 -41561;44366112;155633888;300000 -41562;44362639;155637361;300000 -41563;44359166;155640834;300000 -41564;44355692;155644308;300000 -41565;44352219;155647781;300000 -41566;44348747;155651253;300000 -41567;44345274;155654726;300000 -41568;44341801;155658199;300000 -41569;44338329;155661671;300000 -41570;44334857;155665143;300000 -41571;44331385;155668615;300000 -41572;44327913;155672087;300000 -41573;44324441;155675559;300000 -41574;44320970;155679030;300000 -41575;44317498;155682502;300000 -41576;44314027;155685973;300000 -41577;44310556;155689444;300000 -41578;44307085;155692915;300000 -41579;44303615;155696385;300000 -41580;44300144;155699856;300000 -41581;44296674;155703326;300000 -41582;44293204;155706796;300000 -41583;44289734;155710266;300000 -41584;44286264;155713736;300000 -41585;44282794;155717206;300000 -41586;44279325;155720675;300000 -41587;44275855;155724145;300000 -41588;44272386;155727614;300000 -41589;44268917;155731083;300000 -41590;44265448;155734552;300000 -41591;44261980;155738020;300000 -41592;44258511;155741489;300000 -41593;44255043;155744957;300000 -41594;44251575;155748425;300000 -41595;44248107;155751893;300000 -41596;44244639;155755361;300000 -41597;44241171;155758829;300000 -41598;44237704;155762296;300000 -41599;44234236;155765764;300000 -41600;44230769;155769231;300000 -41601;44227302;155772698;300000 -41602;44223835;155776165;300000 -41603;44220369;155779631;300000 -41604;44216902;155783098;300000 -41605;44213436;155786564;300000 -41606;44209970;155790030;300000 -41607;44206504;155793496;300000 -41608;44203038;155796962;300000 -41609;44199572;155800428;300000 -41610;44196107;155803893;300000 -41611;44192641;155807359;300000 -41612;44189176;155810824;300000 -41613;44185711;155814289;300000 -41614;44182246;155817754;300000 -41615;44178782;155821218;300000 -41616;44175317;155824683;300000 -41617;44171853;155828147;300000 -41618;44168389;155831611;300000 -41619;44164925;155835075;300000 -41620;44161461;155838539;300000 -41621;44157997;155842003;300000 -41622;44154534;155845466;300000 -41623;44151070;155848930;300000 -41624;44147607;155852393;300000 -41625;44144144;155855856;300000 -41626;44140681;155859319;300000 -41627;44137219;155862781;300000 -41628;44133756;155866244;300000 -41629;44130294;155869706;300000 -41630;44126832;155873168;300000 -41631;44123370;155876630;300000 -41632;44119908;155880092;300000 -41633;44116446;155883554;300000 -41634;44112985;155887015;300000 -41635;44109523;155890477;300000 -41636;44106062;155893938;300000 -41637;44102601;155897399;300000 -41638;44099140;155900860;300000 -41639;44095680;155904320;300000 -41640;44092219;155907781;300000 -41641;44088759;155911241;300000 -41642;44085298;155914702;300000 -41643;44081838;155918162;300000 -41644;44078379;155921621;300000 -41645;44074919;155925081;300000 -41646;44071459;155928541;300000 -41647;44068000;155932000;300000 -41648;44064541;155935459;300000 -41649;44061082;155938918;300000 -41650;44057623;155942377;300000 -41651;44054164;155945836;300000 -41652;44050706;155949294;300000 -41653;44047247;155952753;300000 -41654;44043789;155956211;300000 -41655;44040331;155959669;300000 -41656;44036873;155963127;300000 -41657;44033416;155966584;300000 -41658;44029958;155970042;300000 -41659;44026501;155973499;300000 -41660;44023044;155976956;300000 -41661;44019587;155980413;300000 -41662;44016130;155983870;300000 -41663;44012673;155987327;300000 -41664;44009217;155990783;300000 -41665;44005760;155994240;300000 -41666;44002304;155997696;300000 -41667;43998848;156001152;300000 -41668;43995392;156004608;300000 -41669;43991936;156008064;300000 -41670;43988481;156011519;300000 -41671;43985026;156014974;300000 -41672;43981570;156018430;300000 -41673;43978115;156021885;300000 -41674;43974660;156025340;300000 -41675;43971206;156028794;300000 -41676;43967751;156032249;300000 -41677;43964297;156035703;300000 -41678;43960843;156039157;300000 -41679;43957389;156042611;300000 -41680;43953935;156046065;300000 -41681;43950481;156049519;300000 -41682;43947027;156052973;300000 -41683;43943574;156056426;300000 -41684;43940121;156059879;300000 -41685;43936668;156063332;300000 -41686;43933215;156066785;300000 -41687;43929762;156070238;300000 -41688;43926310;156073690;300000 -41689;43922857;156077143;300000 -41690;43919405;156080595;300000 -41691;43915953;156084047;300000 -41692;43912501;156087499;300000 -41693;43909049;156090951;300000 -41694;43905598;156094402;300000 -41695;43902147;156097853;300000 -41696;43898695;156101305;300000 -41697;43895244;156104756;300000 -41698;43891793;156108207;300000 -41699;43888343;156111657;300000 -41700;43884892;156115108;300000 -41701;43881442;156118558;300000 -41702;43877991;156122009;300000 -41703;43874541;156125459;300000 -41704;43871092;156128908;300000 -41705;43867642;156132358;300000 -41706;43864192;156135808;300000 -41707;43860743;156139257;300000 -41708;43857294;156142706;300000 -41709;43853844;156146156;300000 -41710;43850396;156149604;300000 -41711;43846947;156153053;300000 -41712;43843498;156156502;300000 -41713;43840050;156159950;300000 -41714;43836602;156163398;300000 -41715;43833154;156166846;300000 -41716;43829706;156170294;300000 -41717;43826258;156173742;300000 -41718;43822810;156177190;300000 -41719;43819363;156180637;300000 -41720;43815916;156184084;300000 -41721;43812469;156187531;300000 -41722;43809022;156190978;300000 -41723;43805575;156194425;300000 -41724;43802128;156197872;300000 -41725;43798682;156201318;300000 -41726;43795236;156204764;300000 -41727;43791789;156208211;300000 -41728;43788344;156211656;300000 -41729;43784898;156215102;300000 -41730;43781452;156218548;300000 -41731;43778007;156221993;300000 -41732;43774561;156225439;300000 -41733;43771116;156228884;300000 -41734;43767671;156232329;300000 -41735;43764227;156235773;300000 -41736;43760782;156239218;300000 -41737;43757338;156242662;300000 -41738;43753893;156246107;300000 -41739;43750449;156249551;300000 -41740;43747005;156252995;300000 -41741;43743561;156256439;300000 -41742;43740118;156259882;300000 -41743;43736674;156263326;300000 -41744;43733231;156266769;300000 -41745;43729788;156270212;300000 -41746;43726345;156273655;300000 -41747;43722902;156277098;300000 -41748;43719460;156280540;300000 -41749;43716017;156283983;300000 -41750;43712575;156287425;300000 -41751;43709133;156290867;300000 -41752;43705691;156294309;300000 -41753;43702249;156297751;300000 -41754;43698807;156301193;300000 -41755;43695366;156304634;300000 -41756;43691925;156308075;300000 -41757;43688483;156311517;300000 -41758;43685042;156314958;300000 -41759;43681602;156318398;300000 -41760;43678161;156321839;300000 -41761;43674720;156325280;300000 -41762;43671280;156328720;300000 -41763;43667840;156332160;300000 -41764;43664400;156335600;300000 -41765;43660960;156339040;300000 -41766;43657520;156342480;300000 -41767;43654081;156345919;300000 -41768;43650642;156349358;300000 -41769;43647202;156352798;300000 -41770;43643763;156356237;300000 -41771;43640325;156359675;300000 -41772;43636886;156363114;300000 -41773;43633447;156366553;300000 -41774;43630009;156369991;300000 -41775;43626571;156373429;300000 -41776;43623133;156376867;300000 -41777;43619695;156380305;300000 -41778;43616257;156383743;300000 -41779;43612820;156387180;300000 -41780;43609382;156390618;300000 -41781;43605945;156394055;300000 -41782;43602508;156397492;300000 -41783;43599071;156400929;300000 -41784;43595635;156404365;300000 -41785;43592198;156407802;300000 -41786;43588762;156411238;300000 -41787;43585326;156414674;300000 -41788;43581890;156418110;300000 -41789;43578454;156421546;300000 -41790;43575018;156424982;300000 -41791;43571582;156428418;300000 -41792;43568147;156431853;300000 -41793;43564712;156435288;300000 -41794;43561277;156438723;300000 -41795;43557842;156442158;300000 -41796;43554407;156445593;300000 -41797;43550973;156449027;300000 -41798;43547538;156452462;300000 -41799;43544104;156455896;300000 -41800;43540670;156459330;300000 -41801;43537236;156462764;300000 -41802;43533802;156466198;300000 -41803;43530369;156469631;300000 -41804;43526935;156473065;300000 -41805;43523502;156476498;300000 -41806;43520069;156479931;300000 -41807;43516636;156483364;300000 -41808;43513203;156486797;300000 -41809;43509771;156490229;300000 -41810;43506338;156493662;300000 -41811;43502906;156497094;300000 -41812;43499474;156500526;300000 -41813;43496042;156503958;300000 -41814;43492610;156507390;300000 -41815;43489179;156510821;300000 -41816;43485747;156514253;300000 -41817;43482316;156517684;300000 -41818;43478885;156521115;300000 -41819;43475454;156524546;300000 -41820;43472023;156527977;300000 -41821;43468592;156531408;300000 -41822;43465162;156534838;300000 -41823;43461732;156538268;300000 -41824;43458301;156541699;300000 -41825;43454871;156545129;300000 -41826;43451442;156548558;300000 -41827;43448012;156551988;300000 -41828;43444583;156555417;300000 -41829;43441153;156558847;300000 -41830;43437724;156562276;300000 -41831;43434295;156565705;300000 -41832;43430866;156569134;300000 -41833;43427438;156572562;300000 -41834;43424009;156575991;300000 -41835;43420581;156579419;300000 -41836;43417153;156582847;300000 -41837;43413725;156586275;300000 -41838;43410297;156589703;300000 -41839;43406869;156593131;300000 -41840;43403442;156596558;300000 -41841;43400014;156599986;300000 -41842;43396587;156603413;300000 -41843;43393160;156606840;300000 -41844;43389733;156610267;300000 -41845;43386307;156613693;300000 -41846;43382880;156617120;300000 -41847;43379454;156620546;300000 -41848;43376028;156623972;300000 -41849;43372601;156627399;300000 -41850;43369176;156630824;300000 -41851;43365750;156634250;300000 -41852;43362324;156637676;300000 -41853;43358899;156641101;300000 -41854;43355474;156644526;300000 -41855;43352049;156647951;300000 -41856;43348624;156651376;300000 -41857;43345199;156654801;300000 -41858;43341775;156658225;300000 -41859;43338350;156661650;300000 -41860;43334926;156665074;300000 -41861;43331502;156668498;300000 -41862;43328078;156671922;300000 -41863;43324654;156675346;300000 -41864;43321231;156678769;300000 -41865;43317807;156682193;300000 -41866;43314384;156685616;300000 -41867;43310961;156689039;300000 -41868;43307538;156692462;300000 -41869;43304115;156695885;300000 -41870;43300693;156699307;300000 -41871;43297270;156702730;300000 -41872;43293848;156706152;300000 -41873;43290426;156709574;300000 -41874;43287004;156712996;300000 -41875;43283582;156716418;300000 -41876;43280160;156719840;300000 -41877;43276739;156723261;300000 -41878;43273318;156726682;300000 -41879;43269897;156730103;300000 -41880;43266476;156733524;300000 -41881;43263055;156736945;300000 -41882;43259634;156740366;300000 -41883;43256214;156743786;300000 -41884;43252793;156747207;300000 -41885;43249373;156750627;300000 -41886;43245953;156754047;300000 -41887;43242533;156757467;300000 -41888;43239114;156760886;300000 -41889;43235694;156764306;300000 -41890;43232275;156767725;300000 -41891;43228856;156771144;300000 -41892;43225437;156774563;300000 -41893;43222018;156777982;300000 -41894;43218599;156781401;300000 -41895;43215181;156784819;300000 -41896;43211762;156788238;300000 -41897;43208344;156791656;300000 -41898;43204926;156795074;300000 -41899;43201508;156798492;300000 -41900;43198091;156801909;300000 -41901;43194673;156805327;300000 -41902;43191256;156808744;300000 -41903;43187839;156812161;300000 -41904;43184422;156815578;300000 -41905;43181005;156818995;300000 -41906;43177588;156822412;300000 -41907;43174171;156825829;300000 -41908;43170755;156829245;300000 -41909;43167339;156832661;300000 -41910;43163923;156836077;300000 -41911;43160507;156839493;300000 -41912;43157091;156842909;300000 -41913;43153675;156846325;300000 -41914;43150260;156849740;300000 -41915;43146845;156853155;300000 -41916;43143430;156856570;300000 -41917;43140015;156859985;300000 -41918;43136600;156863400;300000 -41919;43133185;156866815;300000 -41920;43129771;156870229;300000 -41921;43126357;156873643;300000 -41922;43122943;156877057;300000 -41923;43119529;156880471;300000 -41924;43116115;156883885;300000 -41925;43112701;156887299;300000 -41926;43109288;156890712;300000 -41927;43105874;156894126;300000 -41928;43102461;156897539;300000 -41929;43099048;156900952;300000 -41930;43095636;156904364;300000 -41931;43092223;156907777;300000 -41932;43088810;156911190;300000 -41933;43085398;156914602;300000 -41934;43081986;156918014;300000 -41935;43078574;156921426;300000 -41936;43075162;156924838;300000 -41937;43071750;156928250;300000 -41938;43068339;156931661;300000 -41939;43064928;156935072;300000 -41940;43061516;156938484;300000 -41941;43058105;156941895;300000 -41942;43054695;156945305;300000 -41943;43051284;156948716;300000 -41944;43047873;156952127;300000 -41945;43044463;156955537;300000 -41946;43041053;156958947;300000 -41947;43037643;156962357;300000 -41948;43034233;156965767;300000 -41949;43030823;156969177;300000 -41950;43027414;156972586;300000 -41951;43024004;156975996;300000 -41952;43020595;156979405;300000 -41953;43017186;156982814;300000 -41954;43013777;156986223;300000 -41955;43010368;156989632;300000 -41956;43006960;156993040;300000 -41957;43003551;156996449;300000 -41958;43000143;156999857;300000 -41959;42996735;157003265;300000 -41960;42993327;157006673;300000 -41961;42989919;157010081;300000 -41962;42986512;157013488;300000 -41963;42983104;157016896;300000 -41964;42979697;157020303;300000 -41965;42976290;157023710;300000 -41966;42972883;157027117;300000 -41967;42969476;157030524;300000 -41968;42966069;157033931;300000 -41969;42962663;157037337;300000 -41970;42959257;157040743;300000 -41971;42955850;157044150;300000 -41972;42952444;157047556;300000 -41973;42949039;157050961;300000 -41974;42945633;157054367;300000 -41975;42942228;157057772;300000 -41976;42938822;157061178;300000 -41977;42935417;157064583;300000 -41978;42932012;157067988;300000 -41979;42928607;157071393;300000 -41980;42925202;157074798;300000 -41981;42921798;157078202;300000 -41982;42918394;157081606;300000 -41983;42914989;157085011;300000 -41984;42911585;157088415;300000 -41985;42908181;157091819;300000 -41986;42904778;157095222;300000 -41987;42901374;157098626;300000 -41988;42897971;157102029;300000 -41989;42894568;157105432;300000 -41990;42891165;157108835;300000 -41991;42887762;157112238;300000 -41992;42884359;157115641;300000 -41993;42880956;157119044;300000 -41994;42877554;157122446;300000 -41995;42874152;157125848;300000 -41996;42870750;157129250;300000 -41997;42867348;157132652;300000 -41998;42863946;157136054;300000 -41999;42860544;157139456;300000 -42000;42857143;157142857;300000 -42001;42853742;157146258;300000 -42002;42850340;157149660;300000 -42003;42846940;157153060;300000 -42004;42843539;157156461;300000 -42005;42840138;157159862;300000 -42006;42836738;157163262;300000 -42007;42833337;157166663;300000 -42008;42829937;157170063;300000 -42009;42826537;157173463;300000 -42010;42823137;157176863;300000 -42011;42819738;157180262;300000 -42012;42816338;157183662;300000 -42013;42812939;157187061;300000 -42014;42809540;157190460;300000 -42015;42806141;157193859;300000 -42016;42802742;157197258;300000 -42017;42799343;157200657;300000 -42018;42795945;157204055;300000 -42019;42792546;157207454;300000 -42020;42789148;157210852;300000 -42021;42785750;157214250;300000 -42022;42782352;157217648;300000 -42023;42778954;157221046;300000 -42024;42775557;157224443;300000 -42025;42772159;157227841;300000 -42026;42768762;157231238;300000 -42027;42765365;157234635;300000 -42028;42761968;157238032;300000 -42029;42758571;157241429;300000 -42030;42755175;157244825;300000 -42031;42751778;157248222;300000 -42032;42748382;157251618;300000 -42033;42744986;157255014;300000 -42034;42741590;157258410;300000 -42035;42738194;157261806;300000 -42036;42734799;157265201;300000 -42037;42731403;157268597;300000 -42038;42728008;157271992;300000 -42039;42724613;157275387;300000 -42040;42721218;157278782;300000 -42041;42717823;157282177;300000 -42042;42714428;157285572;300000 -42043;42711034;157288966;300000 -42044;42707640;157292360;300000 -42045;42704245;157295755;300000 -42046;42700851;157299149;300000 -42047;42697458;157302542;300000 -42048;42694064;157305936;300000 -42049;42690670;157309330;300000 -42050;42687277;157312723;300000 -42051;42683884;157316116;300000 -42052;42680491;157319509;300000 -42053;42677098;157322902;300000 -42054;42673705;157326295;300000 -42055;42670313;157329687;300000 -42056;42666920;157333080;300000 -42057;42663528;157336472;300000 -42058;42660136;157339864;300000 -42059;42656744;157343256;300000 -42060;42653352;157346648;300000 -42061;42649961;157350039;300000 -42062;42646569;157353431;300000 -42063;42643178;157356822;300000 -42064;42639787;157360213;300000 -42065;42636396;157363604;300000 -42066;42633005;157366995;300000 -42067;42629615;157370385;300000 -42068;42626224;157373776;300000 -42069;42622834;157377166;300000 -42070;42619444;157380556;300000 -42071;42616054;157383946;300000 -42072;42612664;157387336;300000 -42073;42609274;157390726;300000 -42074;42605885;157394115;300000 -42075;42602496;157397504;300000 -42076;42599106;157400894;300000 -42077;42595717;157404283;300000 -42078;42592329;157407671;300000 -42079;42588940;157411060;300000 -42080;42585551;157414449;300000 -42081;42582163;157417837;300000 -42082;42578775;157421225;300000 -42083;42575387;157424613;300000 -42084;42571999;157428001;300000 -42085;42568611;157431389;300000 -42086;42565224;157434776;300000 -42087;42561836;157438164;300000 -42088;42558449;157441551;300000 -42089;42555062;157444938;300000 -42090;42551675;157448325;300000 -42091;42548288;157451712;300000 -42092;42544902;157455098;300000 -42093;42541515;157458485;300000 -42094;42538129;157461871;300000 -42095;42534743;157465257;300000 -42096;42531357;157468643;300000 -42097;42527971;157472029;300000 -42098;42524585;157475415;300000 -42099;42521200;157478800;300000 -42100;42517815;157482185;300000 -42101;42514430;157485570;300000 -42102;42511045;157488955;300000 -42103;42507660;157492340;300000 -42104;42504275;157495725;300000 -42105;42500891;157499109;300000 -42106;42497506;157502494;300000 -42107;42494122;157505878;300000 -42108;42490738;157509262;300000 -42109;42487354;157512646;300000 -42110;42483971;157516029;300000 -42111;42480587;157519413;300000 -42112;42477204;157522796;300000 -42113;42473820;157526180;300000 -42114;42470437;157529563;300000 -42115;42467054;157532946;300000 -42116;42463672;157536328;300000 -42117;42460289;157539711;300000 -42118;42456907;157543093;300000 -42119;42453525;157546475;300000 -42120;42450142;157549858;300000 -42121;42446761;157553239;300000 -42122;42443379;157556621;300000 -42123;42439997;157560003;300000 -42124;42436616;157563384;300000 -42125;42433234;157566766;300000 -42126;42429853;157570147;300000 -42127;42426472;157573528;300000 -42128;42423092;157576908;300000 -42129;42419711;157580289;300000 -42130;42416330;157583670;300000 -42131;42412950;157587050;300000 -42132;42409570;157590430;300000 -42133;42406190;157593810;300000 -42134;42402810;157597190;300000 -42135;42399430;157600570;300000 -42136;42396051;157603949;300000 -42137;42392672;157607328;300000 -42138;42389292;157610708;300000 -42139;42385913;157614087;300000 -42140;42382534;157617466;300000 -42141;42379156;157620844;300000 -42142;42375777;157624223;300000 -42143;42372399;157627601;300000 -42144;42369021;157630979;300000 -42145;42365642;157634358;300000 -42146;42362265;157637735;300000 -42147;42358887;157641113;300000 -42148;42355509;157644491;300000 -42149;42352132;157647868;300000 -42150;42348754;157651246;300000 -42151;42345377;157654623;300000 -42152;42342000;157658000;300000 -42153;42338624;157661376;300000 -42154;42335247;157664753;300000 -42155;42331870;157668130;300000 -42156;42328494;157671506;300000 -42157;42325118;157674882;300000 -42158;42321742;157678258;300000 -42159;42318366;157681634;300000 -42160;42314991;157685009;300000 -42161;42311615;157688385;300000 -42162;42308240;157691760;300000 -42163;42304864;157695136;300000 -42164;42301489;157698511;300000 -42165;42298115;157701885;300000 -42166;42294740;157705260;300000 -42167;42291365;157708635;300000 -42168;42287991;157712009;300000 -42169;42284617;157715383;300000 -42170;42281243;157718757;300000 -42171;42277869;157722131;300000 -42172;42274495;157725505;300000 -42173;42271121;157728879;300000 -42174;42267748;157732252;300000 -42175;42264375;157735625;300000 -42176;42261002;157738998;300000 -42177;42257629;157742371;300000 -42178;42254256;157745744;300000 -42179;42250883;157749117;300000 -42180;42247511;157752489;300000 -42181;42244138;157755862;300000 -42182;42240766;157759234;300000 -42183;42237394;157762606;300000 -42184;42234022;157765978;300000 -42185;42230651;157769349;300000 -42186;42227279;157772721;300000 -42187;42223908;157776092;300000 -42188;42220537;157779463;300000 -42189;42217166;157782834;300000 -42190;42213795;157786205;300000 -42191;42210424;157789576;300000 -42192;42207053;157792947;300000 -42193;42203683;157796317;300000 -42194;42200313;157799687;300000 -42195;42196943;157803057;300000 -42196;42193573;157806427;300000 -42197;42190203;157809797;300000 -42198;42186833;157813167;300000 -42199;42183464;157816536;300000 -42200;42180095;157819905;300000 -42201;42176726;157823274;300000 -42202;42173357;157826643;300000 -42203;42169988;157830012;300000 -42204;42166619;157833381;300000 -42205;42163251;157836749;300000 -42206;42159882;157840118;300000 -42207;42156514;157843486;300000 -42208;42153146;157846854;300000 -42209;42149778;157850222;300000 -42210;42146411;157853589;300000 -42211;42143043;157856957;300000 -42212;42139676;157860324;300000 -42213;42136309;157863691;300000 -42214;42132942;157867058;300000 -42215;42129575;157870425;300000 -42216;42126208;157873792;300000 -42217;42122842;157877158;300000 -42218;42119475;157880525;300000 -42219;42116109;157883891;300000 -42220;42112743;157887257;300000 -42221;42109377;157890623;300000 -42222;42106011;157893989;300000 -42223;42102645;157897355;300000 -42224;42099280;157900720;300000 -42225;42095915;157904085;300000 -42226;42092550;157907450;300000 -42227;42089185;157910815;300000 -42228;42085820;157914180;300000 -42229;42082455;157917545;300000 -42230;42079091;157920909;300000 -42231;42075726;157924274;300000 -42232;42072362;157927638;300000 -42233;42068998;157931002;300000 -42234;42065634;157934366;300000 -42235;42062271;157937729;300000 -42236;42058907;157941093;300000 -42237;42055544;157944456;300000 -42238;42052181;157947819;300000 -42239;42048817;157951183;300000 -42240;42045455;157954545;300000 -42241;42042092;157957908;300000 -42242;42038729;157961271;300000 -42243;42035367;157964633;300000 -42244;42032005;157967995;300000 -42245;42028642;157971358;300000 -42246;42025280;157974720;300000 -42247;42021919;157978081;300000 -42248;42018557;157981443;300000 -42249;42015196;157984804;300000 -42250;42011834;157988166;300000 -42251;42008473;157991527;300000 -42252;42005112;157994888;300000 -42253;42001751;157998249;300000 -42254;41998391;158001609;300000 -42255;41995030;158004970;300000 -42256;41991670;158008330;300000 -42257;41988310;158011690;300000 -42258;41984950;158015050;300000 -42259;41981590;158018410;300000 -42260;41978230;158021770;300000 -42261;41974870;158025130;300000 -42262;41971511;158028489;300000 -42263;41968152;158031848;300000 -42264;41964793;158035207;300000 -42265;41961434;158038566;300000 -42266;41958075;158041925;300000 -42267;41954716;158045284;300000 -42268;41951358;158048642;300000 -42269;41948000;158052000;300000 -42270;41944642;158055358;300000 -42271;41941284;158058716;300000 -42272;41937926;158062074;300000 -42273;41934568;158065432;300000 -42274;41931211;158068789;300000 -42275;41927853;158072147;300000 -42276;41924496;158075504;300000 -42277;41921139;158078861;300000 -42278;41917782;158082218;300000 -42279;41914426;158085574;300000 -42280;41911069;158088931;300000 -42281;41907713;158092287;300000 -42282;41904356;158095644;300000 -42283;41901000;158099000;300000 -42284;41897644;158102356;300000 -42285;41894289;158105711;300000 -42286;41890933;158109067;300000 -42287;41887578;158112422;300000 -42288;41884222;158115778;300000 -42289;41880867;158119133;300000 -42290;41877512;158122488;300000 -42291;41874158;158125842;300000 -42292;41870803;158129197;300000 -42293;41867449;158132551;300000 -42294;41864094;158135906;300000 -42295;41860740;158139260;300000 -42296;41857386;158142614;300000 -42297;41854032;158145968;300000 -42298;41850679;158149321;300000 -42299;41847325;158152675;300000 -42300;41843972;158156028;300000 -42301;41840618;158159382;300000 -42302;41837265;158162735;300000 -42303;41833912;158166088;300000 -42304;41830560;158169440;300000 -42305;41827207;158172793;300000 -42306;41823855;158176145;300000 -42307;41820503;158179497;300000 -42308;41817150;158182850;300000 -42309;41813798;158186202;300000 -42310;41810447;158189553;300000 -42311;41807095;158192905;300000 -42312;41803744;158196256;300000 -42313;41800392;158199608;300000 -42314;41797041;158202959;300000 -42315;41793690;158206310;300000 -42316;41790339;158209661;300000 -42317;41786989;158213011;300000 -42318;41783638;158216362;300000 -42319;41780288;158219712;300000 -42320;41776938;158223062;300000 -42321;41773588;158226412;300000 -42322;41770238;158229762;300000 -42323;41766888;158233112;300000 -42324;41763538;158236462;300000 -42325;41760189;158239811;300000 -42326;41756840;158243160;300000 -42327;41753491;158246509;300000 -42328;41750142;158249858;300000 -42329;41746793;158253207;300000 -42330;41743444;158256556;300000 -42331;41740096;158259904;300000 -42332;41736748;158263252;300000 -42333;41733399;158266601;300000 -42334;41730051;158269949;300000 -42335;41726704;158273296;300000 -42336;41723356;158276644;300000 -42337;41720009;158279991;300000 -42338;41716661;158283339;300000 -42339;41713314;158286686;300000 -42340;41709967;158290033;300000 -42341;41706620;158293380;300000 -42342;41703273;158296727;300000 -42343;41699927;158300073;300000 -42344;41696580;158303420;300000 -42345;41693234;158306766;300000 -42346;41689888;158310112;300000 -42347;41686542;158313458;300000 -42348;41683196;158316804;300000 -42349;41679851;158320149;300000 -42350;41676505;158323495;300000 -42351;41673160;158326840;300000 -42352;41669815;158330185;300000 -42353;41666470;158333530;300000 -42354;41663125;158336875;300000 -42355;41659780;158340220;300000 -42356;41656436;158343564;300000 -42357;41653092;158346908;300000 -42358;41649747;158350253;300000 -42359;41646403;158353597;300000 -42360;41643059;158356941;300000 -42361;41639716;158360284;300000 -42362;41636372;158363628;300000 -42363;41633029;158366971;300000 -42364;41629686;158370314;300000 -42365;41626342;158373658;300000 -42366;41623000;158377000;300000 -42367;41619657;158380343;300000 -42368;41616314;158383686;300000 -42369;41612972;158387028;300000 -42370;41609629;158390371;300000 -42371;41606287;158393713;300000 -42372;41602945;158397055;300000 -42373;41599604;158400396;300000 -42374;41596262;158403738;300000 -42375;41592920;158407080;300000 -42376;41589579;158410421;300000 -42377;41586238;158413762;300000 -42378;41582897;158417103;300000 -42379;41579556;158420444;300000 -42380;41576215;158423785;300000 -42381;41572875;158427125;300000 -42382;41569534;158430466;300000 -42383;41566194;158433806;300000 -42384;41562854;158437146;300000 -42385;41559514;158440486;300000 -42386;41556174;158443826;300000 -42387;41552835;158447165;300000 -42388;41549495;158450505;300000 -42389;41546156;158453844;300000 -42390;41542817;158457183;300000 -42391;41539478;158460522;300000 -42392;41536139;158463861;300000 -42393;41532800;158467200;300000 -42394;41529462;158470538;300000 -42395;41526123;158473877;300000 -42396;41522785;158477215;300000 -42397;41519447;158480553;300000 -42398;41516109;158483891;300000 -42399;41512772;158487228;300000 -42400;41509434;158490566;300000 -42401;41506097;158493903;300000 -42402;41502759;158497241;300000 -42403;41499422;158500578;300000 -42404;41496085;158503915;300000 -42405;41492748;158507252;300000 -42406;41489412;158510588;300000 -42407;41486075;158513925;300000 -42408;41482739;158517261;300000 -42409;41479403;158520597;300000 -42410;41476067;158523933;300000 -42411;41472731;158527269;300000 -42412;41469395;158530605;300000 -42413;41466060;158533940;300000 -42414;41462725;158537275;300000 -42415;41459389;158540611;300000 -42416;41456054;158543946;300000 -42417;41452719;158547281;300000 -42418;41449385;158550615;300000 -42419;41446050;158553950;300000 -42420;41442716;158557284;300000 -42421;41439381;158560619;300000 -42422;41436047;158563953;300000 -42423;41432713;158567287;300000 -42424;41429380;158570620;300000 -42425;41426046;158573954;300000 -42426;41422712;158577288;300000 -42427;41419379;158580621;300000 -42428;41416046;158583954;300000 -42429;41412713;158587287;300000 -42430;41409380;158590620;300000 -42431;41406047;158593953;300000 -42432;41402715;158597285;300000 -42433;41399383;158600617;300000 -42434;41396050;158603950;300000 -42435;41392718;158607282;300000 -42436;41389386;158610614;300000 -42437;41386055;158613945;300000 -42438;41382723;158617277;300000 -42439;41379392;158620608;300000 -42440;41376060;158623940;300000 -42441;41372729;158627271;300000 -42442;41369398;158630602;300000 -42443;41366067;158633933;300000 -42444;41362737;158637263;300000 -42445;41359406;158640594;300000 -42446;41356076;158643924;300000 -42447;41352746;158647254;300000 -42448;41349416;158650584;300000 -42449;41346086;158653914;300000 -42450;41342756;158657244;300000 -42451;41339427;158660573;300000 -42452;41336097;158663903;300000 -42453;41332768;158667232;300000 -42454;41329439;158670561;300000 -42455;41326110;158673890;300000 -42456;41322781;158677219;300000 -42457;41319453;158680547;300000 -42458;41316124;158683876;300000 -42459;41312796;158687204;300000 -42460;41309468;158690532;300000 -42461;41306140;158693860;300000 -42462;41302812;158697188;300000 -42463;41299484;158700516;300000 -42464;41296157;158703843;300000 -42465;41292829;158707171;300000 -42466;41289502;158710498;300000 -42467;41286175;158713825;300000 -42468;41282848;158717152;300000 -42469;41279522;158720478;300000 -42470;41276195;158723805;300000 -42471;41272869;158727131;300000 -42472;41269542;158730458;300000 -42473;41266216;158733784;300000 -42474;41262890;158737110;300000 -42475;41259564;158740436;300000 -42476;41256239;158743761;300000 -42477;41252913;158747087;300000 -42478;41249588;158750412;300000 -42479;41246263;158753737;300000 -42480;41242938;158757062;300000 -42481;41239613;158760387;300000 -42482;41236288;158763712;300000 -42483;41232964;158767036;300000 -42484;41229639;158770361;300000 -42485;41226315;158773685;300000 -42486;41222991;158777009;300000 -42487;41219667;158780333;300000 -42488;41216343;158783657;300000 -42489;41213020;158786980;300000 -42490;41209696;158790304;300000 -42491;41206373;158793627;300000 -42492;41203050;158796950;300000 -42493;41199727;158800273;300000 -42494;41196404;158803596;300000 -42495;41193082;158806918;300000 -42496;41189759;158810241;300000 -42497;41186437;158813563;300000 -42498;41183114;158816886;300000 -42499;41179792;158820208;300000 -42500;41176471;158823529;300000 -42501;41173149;158826851;300000 -42502;41169827;158830173;300000 -42503;41166506;158833494;300000 -42504;41163185;158836815;300000 -42505;41159864;158840136;300000 -42506;41156543;158843457;300000 -42507;41153222;158846778;300000 -42508;41149901;158850099;300000 -42509;41146581;158853419;300000 -42510;41143260;158856740;300000 -42511;41139940;158860060;300000 -42512;41136620;158863380;300000 -42513;41133300;158866700;300000 -42514;41129981;158870019;300000 -42515;41126661;158873339;300000 -42516;41123342;158876658;300000 -42517;41120023;158879977;300000 -42518;41116704;158883296;300000 -42519;41113385;158886615;300000 -42520;41110066;158889934;300000 -42521;41106747;158893253;300000 -42522;41103429;158896571;300000 -42523;41100111;158899889;300000 -42524;41096792;158903208;300000 -42525;41093474;158906526;300000 -42526;41090157;158909843;300000 -42527;41086839;158913161;300000 -42528;41083521;158916479;300000 -42529;41080204;158919796;300000 -42530;41076887;158923113;300000 -42531;41073570;158926430;300000 -42532;41070253;158929747;300000 -42533;41066936;158933064;300000 -42534;41063620;158936380;300000 -42535;41060303;158939697;300000 -42536;41056987;158943013;300000 -42537;41053671;158946329;300000 -42538;41050355;158949645;300000 -42539;41047039;158952961;300000 -42540;41043724;158956276;300000 -42541;41040408;158959592;300000 -42542;41037093;158962907;300000 -42543;41033778;158966222;300000 -42544;41030463;158969537;300000 -42545;41027148;158972852;300000 -42546;41023833;158976167;300000 -42547;41020518;158979482;300000 -42548;41017204;158982796;300000 -42549;41013890;158986110;300000 -42550;41010576;158989424;300000 -42551;41007262;158992738;300000 -42552;41003948;158996052;300000 -42553;41000635;158999365;300000 -42554;40997321;159002679;300000 -42555;40994008;159005992;300000 -42556;40990695;159009305;300000 -42557;40987382;159012618;300000 -42558;40984069;159015931;300000 -42559;40980756;159019244;300000 -42560;40977444;159022556;300000 -42561;40974131;159025869;300000 -42562;40970819;159029181;300000 -42563;40967507;159032493;300000 -42564;40964195;159035805;300000 -42565;40960883;159039117;300000 -42566;40957572;159042428;300000 -42567;40954260;159045740;300000 -42568;40950949;159049051;300000 -42569;40947638;159052362;300000 -42570;40944327;159055673;300000 -42571;40941016;159058984;300000 -42572;40937706;159062294;300000 -42573;40934395;159065605;300000 -42574;40931085;159068915;300000 -42575;40927775;159072225;300000 -42576;40924464;159075536;300000 -42577;40921155;159078845;300000 -42578;40917845;159082155;300000 -42579;40914535;159085465;300000 -42580;40911226;159088774;300000 -42581;40907917;159092083;300000 -42582;40904608;159095392;300000 -42583;40901299;159098701;300000 -42584;40897990;159102010;300000 -42585;40894681;159105319;300000 -42586;40891373;159108627;300000 -42587;40888064;159111936;300000 -42588;40884756;159115244;300000 -42589;40881448;159118552;300000 -42590;40878140;159121860;300000 -42591;40874833;159125167;300000 -42592;40871525;159128475;300000 -42593;40868218;159131782;300000 -42594;40864911;159135089;300000 -42595;40861603;159138397;300000 -42596;40858297;159141703;300000 -42597;40854990;159145010;300000 -42598;40851683;159148317;300000 -42599;40848377;159151623;300000 -42600;40845070;159154930;300000 -42601;40841764;159158236;300000 -42602;40838458;159161542;300000 -42603;40835152;159164848;300000 -42604;40831847;159168153;300000 -42605;40828541;159171459;300000 -42606;40825236;159174764;300000 -42607;40821931;159178069;300000 -42608;40818626;159181374;300000 -42609;40815321;159184679;300000 -42610;40812016;159187984;300000 -42611;40808711;159191289;300000 -42612;40805407;159194593;300000 -42613;40802103;159197897;300000 -42614;40798799;159201201;300000 -42615;40795495;159204505;300000 -42616;40792191;159207809;300000 -42617;40788887;159211113;300000 -42618;40785584;159214416;300000 -42619;40782280;159217720;300000 -42620;40778977;159221023;300000 -42621;40775674;159224326;300000 -42622;40772371;159227629;300000 -42623;40769068;159230932;300000 -42624;40765766;159234234;300000 -42625;40762463;159237537;300000 -42626;40759161;159240839;300000 -42627;40755859;159244141;300000 -42628;40752557;159247443;300000 -42629;40749255;159250745;300000 -42630;40745954;159254046;300000 -42631;40742652;159257348;300000 -42632;40739351;159260649;300000 -42633;40736050;159263950;300000 -42634;40732749;159267251;300000 -42635;40729448;159270552;300000 -42636;40726147;159273853;300000 -42637;40722846;159277154;300000 -42638;40719546;159280454;300000 -42639;40716246;159283754;300000 -42640;40712946;159287054;300000 -42641;40709646;159290354;300000 -42642;40706346;159293654;300000 -42643;40703046;159296954;300000 -42644;40699747;159300253;300000 -42645;40696447;159303553;300000 -42646;40693148;159306852;300000 -42647;40689849;159310151;300000 -42648;40686550;159313450;300000 -42649;40683252;159316748;300000 -42650;40679953;159320047;300000 -42651;40676655;159323345;300000 -42652;40673356;159326644;300000 -42653;40670058;159329942;300000 -42654;40666760;159333240;300000 -42655;40663463;159336537;300000 -42656;40660165;159339835;300000 -42657;40656868;159343132;300000 -42658;40653570;159346430;300000 -42659;40650273;159349727;300000 -42660;40646976;159353024;300000 -42661;40643679;159356321;300000 -42662;40640383;159359617;300000 -42663;40637086;159362914;300000 -42664;40633790;159366210;300000 -42665;40630493;159369507;300000 -42666;40627197;159372803;300000 -42667;40623901;159376099;300000 -42668;40620606;159379394;300000 -42669;40617310;159382690;300000 -42670;40614015;159385985;300000 -42671;40610719;159389281;300000 -42672;40607424;159392576;300000 -42673;40604129;159395871;300000 -42674;40600834;159399166;300000 -42675;40597540;159402460;300000 -42676;40594245;159405755;300000 -42677;40590951;159409049;300000 -42678;40587656;159412344;300000 -42679;40584362;159415638;300000 -42680;40581068;159418932;300000 -42681;40577775;159422225;300000 -42682;40574481;159425519;300000 -42683;40571188;159428812;300000 -42684;40567894;159432106;300000 -42685;40564601;159435399;300000 -42686;40561308;159438692;300000 -42687;40558015;159441985;300000 -42688;40554723;159445277;300000 -42689;40551430;159448570;300000 -42690;40548138;159451862;300000 -42691;40544846;159455154;300000 -42692;40541553;159458447;300000 -42693;40538262;159461738;300000 -42694;40534970;159465030;300000 -42695;40531678;159468322;300000 -42696;40528387;159471613;300000 -42697;40525095;159474905;300000 -42698;40521804;159478196;300000 -42699;40518513;159481487;300000 -42700;40515222;159484778;300000 -42701;40511932;159488068;300000 -42702;40508641;159491359;300000 -42703;40505351;159494649;300000 -42704;40502061;159497939;300000 -42705;40498771;159501229;300000 -42706;40495481;159504519;300000 -42707;40492191;159507809;300000 -42708;40488901;159511099;300000 -42709;40485612;159514388;300000 -42710;40482323;159517677;300000 -42711;40479034;159520966;300000 -42712;40475745;159524255;300000 -42713;40472456;159527544;300000 -42714;40469167;159530833;300000 -42715;40465878;159534122;300000 -42716;40462590;159537410;300000 -42717;40459302;159540698;300000 -42718;40456014;159543986;300000 -42719;40452726;159547274;300000 -42720;40449438;159550562;300000 -42721;40446151;159553849;300000 -42722;40442863;159557137;300000 -42723;40439576;159560424;300000 -42724;40436289;159563711;300000 -42725;40433002;159566998;300000 -42726;40429715;159570285;300000 -42727;40426428;159573572;300000 -42728;40423142;159576858;300000 -42729;40419855;159580145;300000 -42730;40416569;159583431;300000 -42731;40413283;159586717;300000 -42732;40409997;159590003;300000 -42733;40406711;159593289;300000 -42734;40403426;159596574;300000 -42735;40400140;159599860;300000 -42736;40396855;159603145;300000 -42737;40393570;159606430;300000 -42738;40390285;159609715;300000 -42739;40387000;159613000;300000 -42740;40383715;159616285;300000 -42741;40380431;159619569;300000 -42742;40377147;159622853;300000 -42743;40373862;159626138;300000 -42744;40370578;159629422;300000 -42745;40367294;159632706;300000 -42746;40364011;159635989;300000 -42747;40360727;159639273;300000 -42748;40357444;159642556;300000 -42749;40354160;159645840;300000 -42750;40350877;159649123;300000 -42751;40347594;159652406;300000 -42752;40344311;159655689;300000 -42753;40341029;159658971;300000 -42754;40337746;159662254;300000 -42755;40334464;159665536;300000 -42756;40331182;159668818;300000 -42757;40327900;159672100;300000 -42758;40324618;159675382;300000 -42759;40321336;159678664;300000 -42760;40318054;159681946;300000 -42761;40314773;159685227;300000 -42762;40311492;159688508;300000 -42763;40308210;159691790;300000 -42764;40304929;159695071;300000 -42765;40301649;159698351;300000 -42766;40298368;159701632;300000 -42767;40295087;159704913;300000 -42768;40291807;159708193;300000 -42769;40288527;159711473;300000 -42770;40285247;159714753;300000 -42771;40281967;159718033;300000 -42772;40278687;159721313;300000 -42773;40275407;159724593;300000 -42774;40272128;159727872;300000 -42775;40268849;159731151;300000 -42776;40265569;159734431;300000 -42777;40262290;159737710;300000 -42778;40259012;159740988;300000 -42779;40255733;159744267;300000 -42780;40252454;159747546;300000 -42781;40249176;159750824;300000 -42782;40245898;159754102;300000 -42783;40242620;159757380;300000 -42784;40239342;159760658;300000 -42785;40236064;159763936;300000 -42786;40232786;159767214;300000 -42787;40229509;159770491;300000 -42788;40226232;159773768;300000 -42789;40222954;159777046;300000 -42790;40219677;159780323;300000 -42791;40216401;159783599;300000 -42792;40213124;159786876;300000 -42793;40209847;159790153;300000 -42794;40206571;159793429;300000 -42795;40203295;159796705;300000 -42796;40200019;159799981;300000 -42797;40196743;159803257;300000 -42798;40193467;159806533;300000 -42799;40190191;159809809;300000 -42800;40186916;159813084;300000 -42801;40183641;159816359;300000 -42802;40180365;159819635;300000 -42803;40177090;159822910;300000 -42804;40173816;159826184;300000 -42805;40170541;159829459;300000 -42806;40167266;159832734;300000 -42807;40163992;159836008;300000 -42808;40160718;159839282;300000 -42809;40157444;159842556;300000 -42810;40154170;159845830;300000 -42811;40150896;159849104;300000 -42812;40147622;159852378;300000 -42813;40144349;159855651;300000 -42814;40141075;159858925;300000 -42815;40137802;159862198;300000 -42816;40134529;159865471;300000 -42817;40131256;159868744;300000 -42818;40127984;159872016;300000 -42819;40124711;159875289;300000 -42820;40121439;159878561;300000 -42821;40118166;159881834;300000 -42822;40114894;159885106;300000 -42823;40111622;159888378;300000 -42824;40108350;159891650;300000 -42825;40105079;159894921;300000 -42826;40101807;159898193;300000 -42827;40098536;159901464;300000 -42828;40095265;159904735;300000 -42829;40091994;159908006;300000 -42830;40088723;159911277;300000 -42831;40085452;159914548;300000 -42832;40082182;159917818;300000 -42833;40078911;159921089;300000 -42834;40075641;159924359;300000 -42835;40072371;159927629;300000 -42836;40069101;159930899;300000 -42837;40065831;159934169;300000 -42838;40062561;159937439;300000 -42839;40059292;159940708;300000 -42840;40056022;159943978;300000 -42841;40052753;159947247;300000 -42842;40049484;159950516;300000 -42843;40046215;159953785;300000 -42844;40042947;159957053;300000 -42845;40039678;159960322;300000 -42846;40036409;159963591;300000 -42847;40033141;159966859;300000 -42848;40029873;159970127;300000 -42849;40026605;159973395;300000 -42850;40023337;159976663;300000 -42851;40020070;159979930;300000 -42852;40016802;159983198;300000 -42853;40013535;159986465;300000 -42854;40010267;159989733;300000 -42855;40007000;159993000;300000 -42856;40003733;159996267;300000 -42857;40000467;159999533;300000 -42858;39997200;160002800;300000 -42859;39993934;160006066;300000 -42860;39990667;160009333;300000 -42861;39987401;160012599;300000 -42862;39984135;160015865;300000 -42863;39980869;160019131;300000 -42864;39977604;160022396;300000 -42865;39974338;160025662;300000 -42866;39971073;160028927;300000 -42867;39967807;160032193;300000 -42868;39964542;160035458;300000 -42869;39961277;160038723;300000 -42870;39958013;160041987;300000 -42871;39954748;160045252;300000 -42872;39951483;160048517;300000 -42873;39948219;160051781;300000 -42874;39944955;160055045;300000 -42875;39941691;160058309;300000 -42876;39938427;160061573;300000 -42877;39935163;160064837;300000 -42878;39931900;160068100;300000 -42879;39928636;160071364;300000 -42880;39925373;160074627;300000 -42881;39922110;160077890;300000 -42882;39918847;160081153;300000 -42883;39915584;160084416;300000 -42884;39912322;160087678;300000 -42885;39909059;160090941;300000 -42886;39905797;160094203;300000 -42887;39902535;160097465;300000 -42888;39899273;160100727;300000 -42889;39896011;160103989;300000 -42890;39892749;160107251;300000 -42891;39889487;160110513;300000 -42892;39886226;160113774;300000 -42893;39882965;160117035;300000 -42894;39879703;160120297;300000 -42895;39876442;160123558;300000 -42896;39873182;160126818;300000 -42897;39869921;160130079;300000 -42898;39866660;160133340;300000 -42899;39863400;160136600;300000 -42900;39860140;160139860;300000 -42901;39856880;160143120;300000 -42902;39853620;160146380;300000 -42903;39850360;160149640;300000 -42904;39847101;160152899;300000 -42905;39843841;160156159;300000 -42906;39840582;160159418;300000 -42907;39837323;160162677;300000 -42908;39834064;160165936;300000 -42909;39830805;160169195;300000 -42910;39827546;160172454;300000 -42911;39824287;160175713;300000 -42912;39821029;160178971;300000 -42913;39817771;160182229;300000 -42914;39814513;160185487;300000 -42915;39811255;160188745;300000 -42916;39807997;160192003;300000 -42917;39804739;160195261;300000 -42918;39801482;160198518;300000 -42919;39798225;160201775;300000 -42920;39794967;160205033;300000 -42921;39791710;160208290;300000 -42922;39788453;160211547;300000 -42923;39785197;160214803;300000 -42924;39781940;160218060;300000 -42925;39778684;160221316;300000 -42926;39775427;160224573;300000 -42927;39772171;160227829;300000 -42928;39768915;160231085;300000 -42929;39765660;160234340;300000 -42930;39762404;160237596;300000 -42931;39759148;160240852;300000 -42932;39755893;160244107;300000 -42933;39752638;160247362;300000 -42934;39749383;160250617;300000 -42935;39746128;160253872;300000 -42936;39742873;160257127;300000 -42937;39739619;160260381;300000 -42938;39736364;160263636;300000 -42939;39733110;160266890;300000 -42940;39729856;160270144;300000 -42941;39726602;160273398;300000 -42942;39723348;160276652;300000 -42943;39720094;160279906;300000 -42944;39716841;160283159;300000 -42945;39713587;160286413;300000 -42946;39710334;160289666;300000 -42947;39707081;160292919;300000 -42948;39703828;160296172;300000 -42949;39700575;160299425;300000 -42950;39697322;160302678;300000 -42951;39694070;160305930;300000 -42952;39690818;160309182;300000 -42953;39687565;160312435;300000 -42954;39684313;160315687;300000 -42955;39681062;160318938;300000 -42956;39677810;160322190;300000 -42957;39674558;160325442;300000 -42958;39671307;160328693;300000 -42959;39668056;160331944;300000 -42960;39664804;160335196;300000 -42961;39661554;160338446;300000 -42962;39658303;160341697;300000 -42963;39655052;160344948;300000 -42964;39651802;160348198;300000 -42965;39648551;160351449;300000 -42966;39645301;160354699;300000 -42967;39642051;160357949;300000 -42968;39638801;160361199;300000 -42969;39635551;160364449;300000 -42970;39632302;160367698;300000 -42971;39629052;160370948;300000 -42972;39625803;160374197;300000 -42973;39622554;160377446;300000 -42974;39619305;160380695;300000 -42975;39616056;160383944;300000 -42976;39612807;160387193;300000 -42977;39609559;160390441;300000 -42978;39606310;160393690;300000 -42979;39603062;160396938;300000 -42980;39599814;160400186;300000 -42981;39596566;160403434;300000 -42982;39593318;160406682;300000 -42983;39590070;160409930;300000 -42984;39586823;160413177;300000 -42985;39583576;160416424;300000 -42986;39580328;160419672;300000 -42987;39577081;160422919;300000 -42988;39573835;160426165;300000 -42989;39570588;160429412;300000 -42990;39567341;160432659;300000 -42991;39564095;160435905;300000 -42992;39560849;160439151;300000 -42993;39557602;160442398;300000 -42994;39554356;160445644;300000 -42995;39551111;160448889;300000 -42996;39547865;160452135;300000 -42997;39544619;160455381;300000 -42998;39541374;160458626;300000 -42999;39538129;160461871;300000 -43000;39534884;160465116;300000 -43001;39531639;160468361;300000 -43002;39528394;160471606;300000 -43003;39525149;160474851;300000 -43004;39521905;160478095;300000 -43005;39518661;160481339;300000 -43006;39515416;160484584;300000 -43007;39512172;160487828;300000 -43008;39508929;160491071;300000 -43009;39505685;160494315;300000 -43010;39502441;160497559;300000 -43011;39499198;160500802;300000 -43012;39495955;160504045;300000 -43013;39492712;160507288;300000 -43014;39489469;160510531;300000 -43015;39486226;160513774;300000 -43016;39482983;160517017;300000 -43017;39479741;160520259;300000 -43018;39476498;160523502;300000 -43019;39473256;160526744;300000 -43020;39470014;160529986;300000 -43021;39466772;160533228;300000 -43022;39463530;160536470;300000 -43023;39460289;160539711;300000 -43024;39457047;160542953;300000 -43025;39453806;160546194;300000 -43026;39450565;160549435;300000 -43027;39447324;160552676;300000 -43028;39444083;160555917;300000 -43029;39440842;160559158;300000 -43030;39437602;160562398;300000 -43031;39434361;160565639;300000 -43032;39431121;160568879;300000 -43033;39427881;160572119;300000 -43034;39424641;160575359;300000 -43035;39421401;160578599;300000 -43036;39418162;160581838;300000 -43037;39414922;160585078;300000 -43038;39411683;160588317;300000 -43039;39408444;160591556;300000 -43040;39405204;160594796;300000 -43041;39401966;160598034;300000 -43042;39398727;160601273;300000 -43043;39395488;160604512;300000 -43044;39392250;160607750;300000 -43045;39389011;160610989;300000 -43046;39385773;160614227;300000 -43047;39382535;160617465;300000 -43048;39379298;160620702;300000 -43049;39376060;160623940;300000 -43050;39372822;160627178;300000 -43051;39369585;160630415;300000 -43052;39366348;160633652;300000 -43053;39363111;160636889;300000 -43054;39359874;160640126;300000 -43055;39356637;160643363;300000 -43056;39353400;160646600;300000 -43057;39350164;160649836;300000 -43058;39346927;160653073;300000 -43059;39343691;160656309;300000 -43060;39340455;160659545;300000 -43061;39337219;160662781;300000 -43062;39333984;160666016;300000 -43063;39330748;160669252;300000 -43064;39327513;160672487;300000 -43065;39324277;160675723;300000 -43066;39321042;160678958;300000 -43067;39317807;160682193;300000 -43068;39314572;160685428;300000 -43069;39311338;160688662;300000 -43070;39308103;160691897;300000 -43071;39304869;160695131;300000 -43072;39301634;160698366;300000 -43073;39298400;160701600;300000 -43074;39295166;160704834;300000 -43075;39291933;160708067;300000 -43076;39288699;160711301;300000 -43077;39285466;160714534;300000 -43078;39282232;160717768;300000 -43079;39278999;160721001;300000 -43080;39275766;160724234;300000 -43081;39272533;160727467;300000 -43082;39269300;160730700;300000 -43083;39266068;160733932;300000 -43084;39262835;160737165;300000 -43085;39259603;160740397;300000 -43086;39256371;160743629;300000 -43087;39253139;160746861;300000 -43088;39249907;160750093;300000 -43089;39246675;160753325;300000 -43090;39243444;160756556;300000 -43091;39240213;160759787;300000 -43092;39236981;160763019;300000 -43093;39233750;160766250;300000 -43094;39230519;160769481;300000 -43095;39227289;160772711;300000 -43096;39224058;160775942;300000 -43097;39220827;160779173;300000 -43098;39217597;160782403;300000 -43099;39214367;160785633;300000 -43100;39211137;160788863;300000 -43101;39207907;160792093;300000 -43102;39204677;160795323;300000 -43103;39201448;160798552;300000 -43104;39198218;160801782;300000 -43105;39194989;160805011;300000 -43106;39191760;160808240;300000 -43107;39188531;160811469;300000 -43108;39185302;160814698;300000 -43109;39182073;160817927;300000 -43110;39178845;160821155;300000 -43111;39175616;160824384;300000 -43112;39172388;160827612;300000 -43113;39169160;160830840;300000 -43114;39165932;160834068;300000 -43115;39162704;160837296;300000 -43116;39159477;160840523;300000 -43117;39156249;160843751;300000 -43118;39153022;160846978;300000 -43119;39149795;160850205;300000 -43120;39146568;160853432;300000 -43121;39143341;160856659;300000 -43122;39140114;160859886;300000 -43123;39136888;160863112;300000 -43124;39133661;160866339;300000 -43125;39130435;160869565;300000 -43126;39127209;160872791;300000 -43127;39123983;160876017;300000 -43128;39120757;160879243;300000 -43129;39117531;160882469;300000 -43130;39114306;160885694;300000 -43131;39111080;160888920;300000 -43132;39107855;160892145;300000 -43133;39104630;160895370;300000 -43134;39101405;160898595;300000 -43135;39098180;160901820;300000 -43136;39094955;160905045;300000 -43137;39091731;160908269;300000 -43138;39088507;160911493;300000 -43139;39085282;160914718;300000 -43140;39082058;160917942;300000 -43141;39078835;160921165;300000 -43142;39075611;160924389;300000 -43143;39072387;160927613;300000 -43144;39069164;160930836;300000 -43145;39065940;160934060;300000 -43146;39062717;160937283;300000 -43147;39059494;160940506;300000 -43148;39056271;160943729;300000 -43149;39053049;160946951;300000 -43150;39049826;160950174;300000 -43151;39046604;160953396;300000 -43152;39043382;160956618;300000 -43153;39040159;160959841;300000 -43154;39036937;160963063;300000 -43155;39033716;160966284;300000 -43156;39030494;160969506;300000 -43157;39027273;160972727;300000 -43158;39024051;160975949;300000 -43159;39020830;160979170;300000 -43160;39017609;160982391;300000 -43161;39014388;160985612;300000 -43162;39011167;160988833;300000 -43163;39007947;160992053;300000 -43164;39004726;160995274;300000 -43165;39001506;160998494;300000 -43166;38998286;161001714;300000 -43167;38995066;161004934;300000 -43168;38991846;161008154;300000 -43169;38988626;161011374;300000 -43170;38985407;161014593;300000 -43171;38982187;161017813;300000 -43172;38978968;161021032;300000 -43173;38975749;161024251;300000 -43174;38972530;161027470;300000 -43175;38969311;161030689;300000 -43176;38966092;161033908;300000 -43177;38962874;161037126;300000 -43178;38959655;161040345;300000 -43179;38956437;161043563;300000 -43180;38953219;161046781;300000 -43181;38950001;161049999;300000 -43182;38946783;161053217;300000 -43183;38943566;161056434;300000 -43184;38940348;161059652;300000 -43185;38937131;161062869;300000 -43186;38933914;161066086;300000 -43187;38930697;161069303;300000 -43188;38927480;161072520;300000 -43189;38924263;161075737;300000 -43190;38921047;161078953;300000 -43191;38917830;161082170;300000 -43192;38914614;161085386;300000 -43193;38911398;161088602;300000 -43194;38908182;161091818;300000 -43195;38904966;161095034;300000 -43196;38901750;161098250;300000 -43197;38898535;161101465;300000 -43198;38895319;161104681;300000 -43199;38892104;161107896;300000 -43200;38888889;161111111;300000 -43201;38885674;161114326;300000 -43202;38882459;161117541;300000 -43203;38879244;161120756;300000 -43204;38876030;161123970;300000 -43205;38872816;161127184;300000 -43206;38869601;161130399;300000 -43207;38866387;161133613;300000 -43208;38863173;161136827;300000 -43209;38859960;161140040;300000 -43210;38856746;161143254;300000 -43211;38853533;161146467;300000 -43212;38850319;161149681;300000 -43213;38847106;161152894;300000 -43214;38843893;161156107;300000 -43215;38840680;161159320;300000 -43216;38837468;161162532;300000 -43217;38834255;161165745;300000 -43218;38831043;161168957;300000 -43219;38827830;161172170;300000 -43220;38824618;161175382;300000 -43221;38821406;161178594;300000 -43222;38818194;161181806;300000 -43223;38814983;161185017;300000 -43224;38811771;161188229;300000 -43225;38808560;161191440;300000 -43226;38805349;161194651;300000 -43227;38802138;161197862;300000 -43228;38798927;161201073;300000 -43229;38795716;161204284;300000 -43230;38792505;161207495;300000 -43231;38789295;161210705;300000 -43232;38786084;161213916;300000 -43233;38782874;161217126;300000 -43234;38779664;161220336;300000 -43235;38776454;161223546;300000 -43236;38773245;161226755;300000 -43237;38770035;161229965;300000 -43238;38766825;161233175;300000 -43239;38763616;161236384;300000 -43240;38760407;161239593;300000 -43241;38757198;161242802;300000 -43242;38753989;161246011;300000 -43243;38750780;161249220;300000 -43244;38747572;161252428;300000 -43245;38744364;161255636;300000 -43246;38741155;161258845;300000 -43247;38737947;161262053;300000 -43248;38734739;161265261;300000 -43249;38731531;161268469;300000 -43250;38728324;161271676;300000 -43251;38725116;161274884;300000 -43252;38721909;161278091;300000 -43253;38718702;161281298;300000 -43254;38715495;161284505;300000 -43255;38712288;161287712;300000 -43256;38709081;161290919;300000 -43257;38705874;161294126;300000 -43258;38702668;161297332;300000 -43259;38699461;161300539;300000 -43260;38696255;161303745;300000 -43261;38693049;161306951;300000 -43262;38689843;161310157;300000 -43263;38686638;161313362;300000 -43264;38683432;161316568;300000 -43265;38680227;161319773;300000 -43266;38677021;161322979;300000 -43267;38673816;161326184;300000 -43268;38670611;161329389;300000 -43269;38667406;161332594;300000 -43270;38664202;161335798;300000 -43271;38660997;161339003;300000 -43272;38657793;161342207;300000 -43273;38654588;161345412;300000 -43274;38651384;161348616;300000 -43275;38648180;161351820;300000 -43276;38644976;161355024;300000 -43277;38641773;161358227;300000 -43278;38638569;161361431;300000 -43279;38635366;161364634;300000 -43280;38632163;161367837;300000 -43281;38628960;161371040;300000 -43282;38625757;161374243;300000 -43283;38622554;161377446;300000 -43284;38619351;161380649;300000 -43285;38616149;161383851;300000 -43286;38612946;161387054;300000 -43287;38609744;161390256;300000 -43288;38606542;161393458;300000 -43289;38603340;161396660;300000 -43290;38600139;161399861;300000 -43291;38596937;161403063;300000 -43292;38593736;161406264;300000 -43293;38590534;161409466;300000 -43294;38587333;161412667;300000 -43295;38584132;161415868;300000 -43296;38580931;161419069;300000 -43297;38577731;161422269;300000 -43298;38574530;161425470;300000 -43299;38571330;161428670;300000 -43300;38568129;161431871;300000 -43301;38564929;161435071;300000 -43302;38561729;161438271;300000 -43303;38558529;161441471;300000 -43304;38555330;161444670;300000 -43305;38552130;161447870;300000 -43306;38548931;161451069;300000 -43307;38545732;161454268;300000 -43308;38542533;161457467;300000 -43309;38539334;161460666;300000 -43310;38536135;161463865;300000 -43311;38532936;161467064;300000 -43312;38529738;161470262;300000 -43313;38526539;161473461;300000 -43314;38523341;161476659;300000 -43315;38520143;161479857;300000 -43316;38516945;161483055;300000 -43317;38513747;161486253;300000 -43318;38510550;161489450;300000 -43319;38507352;161492648;300000 -43320;38504155;161495845;300000 -43321;38500958;161499042;300000 -43322;38497761;161502239;300000 -43323;38494564;161505436;300000 -43324;38491367;161508633;300000 -43325;38488171;161511829;300000 -43326;38484974;161515026;300000 -43327;38481778;161518222;300000 -43328;38478582;161521418;300000 -43329;38475386;161524614;300000 -43330;38472190;161527810;300000 -43331;38468994;161531006;300000 -43332;38465799;161534201;300000 -43333;38462604;161537396;300000 -43334;38459408;161540592;300000 -43335;38456213;161543787;300000 -43336;38453018;161546982;300000 -43337;38449823;161550177;300000 -43338;38446629;161553371;300000 -43339;38443434;161556566;300000 -43340;38440240;161559760;300000 -43341;38437046;161562954;300000 -43342;38433852;161566148;300000 -43343;38430658;161569342;300000 -43344;38427464;161572536;300000 -43345;38424270;161575730;300000 -43346;38421077;161578923;300000 -43347;38417884;161582116;300000 -43348;38414690;161585310;300000 -43349;38411497;161588503;300000 -43350;38408304;161591696;300000 -43351;38405112;161594888;300000 -43352;38401919;161598081;300000 -43353;38398727;161601273;300000 -43354;38395534;161604466;300000 -43355;38392342;161607658;300000 -43356;38389150;161610850;300000 -43357;38385958;161614042;300000 -43358;38382767;161617233;300000 -43359;38379575;161620425;300000 -43360;38376384;161623616;300000 -43361;38373193;161626807;300000 -43362;38370001;161629999;300000 -43363;38366810;161633190;300000 -43364;38363620;161636380;300000 -43365;38360429;161639571;300000 -43366;38357238;161642762;300000 -43367;38354048;161645952;300000 -43368;38350858;161649142;300000 -43369;38347668;161652332;300000 -43370;38344478;161655522;300000 -43371;38341288;161658712;300000 -43372;38338098;161661902;300000 -43373;38334909;161665091;300000 -43374;38331719;161668281;300000 -43375;38328530;161671470;300000 -43376;38325341;161674659;300000 -43377;38322152;161677848;300000 -43378;38318964;161681036;300000 -43379;38315775;161684225;300000 -43380;38312586;161687414;300000 -43381;38309398;161690602;300000 -43382;38306210;161693790;300000 -43383;38303022;161696978;300000 -43384;38299834;161700166;300000 -43385;38296646;161703354;300000 -43386;38293459;161706541;300000 -43387;38290271;161709729;300000 -43388;38287084;161712916;300000 -43389;38283897;161716103;300000 -43390;38280710;161719290;300000 -43391;38277523;161722477;300000 -43392;38274336;161725664;300000 -43393;38271150;161728850;300000 -43394;38267963;161732037;300000 -43395;38264777;161735223;300000 -43396;38261591;161738409;300000 -43397;38258405;161741595;300000 -43398;38255219;161744781;300000 -43399;38252033;161747967;300000 -43400;38248848;161751152;300000 -43401;38245663;161754337;300000 -43402;38242477;161757523;300000 -43403;38239292;161760708;300000 -43404;38236107;161763893;300000 -43405;38232922;161767078;300000 -43406;38229738;161770262;300000 -43407;38226553;161773447;300000 -43408;38223369;161776631;300000 -43409;38220185;161779815;300000 -43410;38217001;161782999;300000 -43411;38213817;161786183;300000 -43412;38210633;161789367;300000 -43413;38207449;161792551;300000 -43414;38204266;161795734;300000 -43415;38201083;161798917;300000 -43416;38197899;161802101;300000 -43417;38194716;161805284;300000 -43418;38191533;161808467;300000 -43419;38188351;161811649;300000 -43420;38185168;161814832;300000 -43421;38181986;161818014;300000 -43422;38178803;161821197;300000 -43423;38175621;161824379;300000 -43424;38172439;161827561;300000 -43425;38169257;161830743;300000 -43426;38166076;161833924;300000 -43427;38162894;161837106;300000 -43428;38159713;161840287;300000 -43429;38156531;161843469;300000 -43430;38153350;161846650;300000 -43431;38150169;161849831;300000 -43432;38146988;161853012;300000 -43433;38143808;161856192;300000 -43434;38140627;161859373;300000 -43435;38137447;161862553;300000 -43436;38134267;161865733;300000 -43437;38131086;161868914;300000 -43438;38127906;161872094;300000 -43439;38124727;161875273;300000 -43440;38121547;161878453;300000 -43441;38118367;161881633;300000 -43442;38115188;161884812;300000 -43443;38112009;161887991;300000 -43444;38108830;161891170;300000 -43445;38105651;161894349;300000 -43446;38102472;161897528;300000 -43447;38099293;161900707;300000 -43448;38096115;161903885;300000 -43449;38092937;161907063;300000 -43450;38089758;161910242;300000 -43451;38086580;161913420;300000 -43452;38083402;161916598;300000 -43453;38080225;161919775;300000 -43454;38077047;161922953;300000 -43455;38073870;161926130;300000 -43456;38070692;161929308;300000 -43457;38067515;161932485;300000 -43458;38064338;161935662;300000 -43459;38061161;161938839;300000 -43460;38057984;161942016;300000 -43461;38054808;161945192;300000 -43462;38051631;161948369;300000 -43463;38048455;161951545;300000 -43464;38045279;161954721;300000 -43465;38042103;161957897;300000 -43466;38038927;161961073;300000 -43467;38035751;161964249;300000 -43468;38032576;161967424;300000 -43469;38029400;161970600;300000 -43470;38026225;161973775;300000 -43471;38023050;161976950;300000 -43472;38019875;161980125;300000 -43473;38016700;161983300;300000 -43474;38013525;161986475;300000 -43475;38010351;161989649;300000 -43476;38007176;161992824;300000 -43477;38004002;161995998;300000 -43478;38000828;161999172;300000 -43479;37997654;162002346;300000 -43480;37994480;162005520;300000 -43481;37991307;162008693;300000 -43482;37988133;162011867;300000 -43483;37984960;162015040;300000 -43484;37981786;162018214;300000 -43485;37978613;162021387;300000 -43486;37975440;162024560;300000 -43487;37972268;162027732;300000 -43488;37969095;162030905;300000 -43489;37965922;162034078;300000 -43490;37962750;162037250;300000 -43491;37959578;162040422;300000 -43492;37956406;162043594;300000 -43493;37953234;162046766;300000 -43494;37950062;162049938;300000 -43495;37946890;162053110;300000 -43496;37943719;162056281;300000 -43497;37940548;162059452;300000 -43498;37937376;162062624;300000 -43499;37934205;162065795;300000 -43500;37931034;162068966;300000 -43501;37927864;162072136;300000 -43502;37924693;162075307;300000 -43503;37921523;162078477;300000 -43504;37918352;162081648;300000 -43505;37915182;162084818;300000 -43506;37912012;162087988;300000 -43507;37908842;162091158;300000 -43508;37905673;162094327;300000 -43509;37902503;162097497;300000 -43510;37899333;162100667;300000 -43511;37896164;162103836;300000 -43512;37892995;162107005;300000 -43513;37889826;162110174;300000 -43514;37886657;162113343;300000 -43515;37883488;162116512;300000 -43516;37880320;162119680;300000 -43517;37877151;162122849;300000 -43518;37873983;162126017;300000 -43519;37870815;162129185;300000 -43520;37867647;162132353;300000 -43521;37864479;162135521;300000 -43522;37861312;162138688;300000 -43523;37858144;162141856;300000 -43524;37854977;162145023;300000 -43525;37851809;162148191;300000 -43526;37848642;162151358;300000 -43527;37845475;162154525;300000 -43528;37842308;162157692;300000 -43529;37839142;162160858;300000 -43530;37835975;162164025;300000 -43531;37832809;162167191;300000 -43532;37829643;162170357;300000 -43533;37826476;162173524;300000 -43534;37823311;162176689;300000 -43535;37820145;162179855;300000 -43536;37816979;162183021;300000 -43537;37813814;162186186;300000 -43538;37810648;162189352;300000 -43539;37807483;162192517;300000 -43540;37804318;162195682;300000 -43541;37801153;162198847;300000 -43542;37797988;162202012;300000 -43543;37794824;162205176;300000 -43544;37791659;162208341;300000 -43545;37788495;162211505;300000 -43546;37785330;162214670;300000 -43547;37782166;162217834;300000 -43548;37779002;162220998;300000 -43549;37775839;162224161;300000 -43550;37772675;162227325;300000 -43551;37769512;162230488;300000 -43552;37766348;162233652;300000 -43553;37763185;162236815;300000 -43554;37760022;162239978;300000 -43555;37756859;162243141;300000 -43556;37753696;162246304;300000 -43557;37750534;162249466;300000 -43558;37747371;162252629;300000 -43559;37744209;162255791;300000 -43560;37741047;162258953;300000 -43561;37737885;162262115;300000 -43562;37734723;162265277;300000 -43563;37731561;162268439;300000 -43564;37728400;162271600;300000 -43565;37725238;162274762;300000 -43566;37722077;162277923;300000 -43567;37718916;162281084;300000 -43568;37715755;162284245;300000 -43569;37712594;162287406;300000 -43570;37709433;162290567;300000 -43571;37706273;162293727;300000 -43572;37703112;162296888;300000 -43573;37699952;162300048;300000 -43574;37696792;162303208;300000 -43575;37693632;162306368;300000 -43576;37690472;162309528;300000 -43577;37687312;162312688;300000 -43578;37684153;162315847;300000 -43579;37680993;162319007;300000 -43580;37677834;162322166;300000 -43581;37674675;162325325;300000 -43582;37671516;162328484;300000 -43583;37668357;162331643;300000 -43584;37665198;162334802;300000 -43585;37662040;162337960;300000 -43586;37658881;162341119;300000 -43587;37655723;162344277;300000 -43588;37652565;162347435;300000 -43589;37649407;162350593;300000 -43590;37646249;162353751;300000 -43591;37643091;162356909;300000 -43592;37639934;162360066;300000 -43593;37636777;162363223;300000 -43594;37633619;162366381;300000 -43595;37630462;162369538;300000 -43596;37627305;162372695;300000 -43597;37624148;162375852;300000 -43598;37620992;162379008;300000 -43599;37617835;162382165;300000 -43600;37614679;162385321;300000 -43601;37611523;162388477;300000 -43602;37608367;162391633;300000 -43603;37605211;162394789;300000 -43604;37602055;162397945;300000 -43605;37598899;162401101;300000 -43606;37595744;162404256;300000 -43607;37592588;162407412;300000 -43608;37589433;162410567;300000 -43609;37586278;162413722;300000 -43610;37583123;162416877;300000 -43611;37579968;162420032;300000 -43612;37576814;162423186;300000 -43613;37573659;162426341;300000 -43614;37570505;162429495;300000 -43615;37567351;162432649;300000 -43616;37564197;162435803;300000 -43617;37561043;162438957;300000 -43618;37557889;162442111;300000 -43619;37554735;162445265;300000 -43620;37551582;162448418;300000 -43621;37548429;162451571;300000 -43622;37545275;162454725;300000 -43623;37542122;162457878;300000 -43624;37538969;162461031;300000 -43625;37535817;162464183;300000 -43626;37532664;162467336;300000 -43627;37529512;162470488;300000 -43628;37526359;162473641;300000 -43629;37523207;162476793;300000 -43630;37520055;162479945;300000 -43631;37516903;162483097;300000 -43632;37513751;162486249;300000 -43633;37510600;162489400;300000 -43634;37507448;162492552;300000 -43635;37504297;162495703;300000 -43636;37501146;162498854;300000 -43637;37497995;162502005;300000 -43638;37494844;162505156;300000 -43639;37491693;162508307;300000 -43640;37488543;162511457;300000 -43641;37485392;162514608;300000 -43642;37482242;162517758;300000 -43643;37479092;162520908;300000 -43644;37475942;162524058;300000 -43645;37472792;162527208;300000 -43646;37469642;162530358;300000 -43647;37466493;162533507;300000 -43648;37463343;162536657;300000 -43649;37460194;162539806;300000 -43650;37457045;162542955;300000 -43651;37453896;162546104;300000 -43652;37450747;162549253;300000 -43653;37447598;162552402;300000 -43654;37444450;162555550;300000 -43655;37441301;162558699;300000 -43656;37438153;162561847;300000 -43657;37435005;162564995;300000 -43658;37431857;162568143;300000 -43659;37428709;162571291;300000 -43660;37425561;162574439;300000 -43661;37422414;162577586;300000 -43662;37419266;162580734;300000 -43663;37416119;162583881;300000 -43664;37412972;162587028;300000 -43665;37409825;162590175;300000 -43666;37406678;162593322;300000 -43667;37403531;162596469;300000 -43668;37400385;162599615;300000 -43669;37397238;162602762;300000 -43670;37394092;162605908;300000 -43671;37390946;162609054;300000 -43672;37387800;162612200;300000 -43673;37384654;162615346;300000 -43674;37381508;162618492;300000 -43675;37378363;162621637;300000 -43676;37375218;162624782;300000 -43677;37372072;162627928;300000 -43678;37368927;162631073;300000 -43679;37365782;162634218;300000 -43680;37362637;162637363;300000 -43681;37359493;162640507;300000 -43682;37356348;162643652;300000 -43683;37353204;162646796;300000 -43684;37350060;162649940;300000 -43685;37346915;162653085;300000 -43686;37343771;162656229;300000 -43687;37340628;162659372;300000 -43688;37337484;162662516;300000 -43689;37334340;162665660;300000 -43690;37331197;162668803;300000 -43691;37328054;162671946;300000 -43692;37324911;162675089;300000 -43693;37321768;162678232;300000 -43694;37318625;162681375;300000 -43695;37315482;162684518;300000 -43696;37312340;162687660;300000 -43697;37309197;162690803;300000 -43698;37306055;162693945;300000 -43699;37302913;162697087;300000 -43700;37299771;162700229;300000 -43701;37296629;162703371;300000 -43702;37293488;162706512;300000 -43703;37290346;162709654;300000 -43704;37287205;162712795;300000 -43705;37284064;162715936;300000 -43706;37280923;162719077;300000 -43707;37277782;162722218;300000 -43708;37274641;162725359;300000 -43709;37271500;162728500;300000 -43710;37268360;162731640;300000 -43711;37265219;162734781;300000 -43712;37262079;162737921;300000 -43713;37258939;162741061;300000 -43714;37255799;162744201;300000 -43715;37252659;162747341;300000 -43716;37249520;162750480;300000 -43717;37246380;162753620;300000 -43718;37243241;162756759;300000 -43719;37240102;162759898;300000 -43720;37236962;162763038;300000 -43721;37233824;162766176;300000 -43722;37230685;162769315;300000 -43723;37227546;162772454;300000 -43724;37224408;162775592;300000 -43725;37221269;162778731;300000 -43726;37218131;162781869;300000 -43727;37214993;162785007;300000 -43728;37211855;162788145;300000 -43729;37208717;162791283;300000 -43730;37205580;162794420;300000 -43731;37202442;162797558;300000 -43732;37199305;162800695;300000 -43733;37196168;162803832;300000 -43734;37193031;162806969;300000 -43735;37189894;162810106;300000 -43736;37186757;162813243;300000 -43737;37183620;162816380;300000 -43738;37180484;162819516;300000 -43739;37177347;162822653;300000 -43740;37174211;162825789;300000 -43741;37171075;162828925;300000 -43742;37167939;162832061;300000 -43743;37164804;162835196;300000 -43744;37161668;162838332;300000 -43745;37158532;162841468;300000 -43746;37155397;162844603;300000 -43747;37152262;162847738;300000 -43748;37149127;162850873;300000 -43749;37145992;162854008;300000 -43750;37142857;162857143;300000 -43751;37139723;162860277;300000 -43752;37136588;162863412;300000 -43753;37133454;162866546;300000 -43754;37130320;162869680;300000 -43755;37127185;162872815;300000 -43756;37124052;162875948;300000 -43757;37120918;162879082;300000 -43758;37117784;162882216;300000 -43759;37114651;162885349;300000 -43760;37111517;162888483;300000 -43761;37108384;162891616;300000 -43762;37105251;162894749;300000 -43763;37102118;162897882;300000 -43764;37098985;162901015;300000 -43765;37095853;162904147;300000 -43766;37092720;162907280;300000 -43767;37089588;162910412;300000 -43768;37086456;162913544;300000 -43769;37083324;162916676;300000 -43770;37080192;162919808;300000 -43771;37077060;162922940;300000 -43772;37073929;162926071;300000 -43773;37070797;162929203;300000 -43774;37067666;162932334;300000 -43775;37064535;162935465;300000 -43776;37061404;162938596;300000 -43777;37058273;162941727;300000 -43778;37055142;162944858;300000 -43779;37052011;162947989;300000 -43780;37048881;162951119;300000 -43781;37045750;162954250;300000 -43782;37042620;162957380;300000 -43783;37039490;162960510;300000 -43784;37036360;162963640;300000 -43785;37033231;162966769;300000 -43786;37030101;162969899;300000 -43787;37026971;162973029;300000 -43788;37023842;162976158;300000 -43789;37020713;162979287;300000 -43790;37017584;162982416;300000 -43791;37014455;162985545;300000 -43792;37011326;162988674;300000 -43793;37008198;162991802;300000 -43794;37005069;162994931;300000 -43795;37001941;162998059;300000 -43796;36998813;163001187;300000 -43797;36995685;163004315;300000 -43798;36992557;163007443;300000 -43799;36989429;163010571;300000 -43800;36986301;163013699;300000 -43801;36983174;163016826;300000 -43802;36980047;163019953;300000 -43803;36976919;163023081;300000 -43804;36973792;163026208;300000 -43805;36970665;163029335;300000 -43806;36967539;163032461;300000 -43807;36964412;163035588;300000 -43808;36961286;163038714;300000 -43809;36958159;163041841;300000 -43810;36955033;163044967;300000 -43811;36951907;163048093;300000 -43812;36948781;163051219;300000 -43813;36945655;163054345;300000 -43814;36942530;163057470;300000 -43815;36939404;163060596;300000 -43816;36936279;163063721;300000 -43817;36933154;163066846;300000 -43818;36930029;163069971;300000 -43819;36926904;163073096;300000 -43820;36923779;163076221;300000 -43821;36920654;163079346;300000 -43822;36917530;163082470;300000 -43823;36914406;163085594;300000 -43824;36911281;163088719;300000 -43825;36908157;163091843;300000 -43826;36905034;163094966;300000 -43827;36901910;163098090;300000 -43828;36898786;163101214;300000 -43829;36895663;163104337;300000 -43830;36892539;163107461;300000 -43831;36889416;163110584;300000 -43832;36886293;163113707;300000 -43833;36883170;163116830;300000 -43834;36880047;163119953;300000 -43835;36876925;163123075;300000 -43836;36873802;163126198;300000 -43837;36870680;163129320;300000 -43838;36867558;163132442;300000 -43839;36864436;163135564;300000 -43840;36861314;163138686;300000 -43841;36858192;163141808;300000 -43842;36855070;163144930;300000 -43843;36851949;163148051;300000 -43844;36848828;163151172;300000 -43845;36845706;163154294;300000 -43846;36842585;163157415;300000 -43847;36839465;163160535;300000 -43848;36836344;163163656;300000 -43849;36833223;163166777;300000 -43850;36830103;163169897;300000 -43851;36826982;163173018;300000 -43852;36823862;163176138;300000 -43853;36820742;163179258;300000 -43854;36817622;163182378;300000 -43855;36814502;163185498;300000 -43856;36811383;163188617;300000 -43857;36808263;163191737;300000 -43858;36805144;163194856;300000 -43859;36802025;163197975;300000 -43860;36798906;163201094;300000 -43861;36795787;163204213;300000 -43862;36792668;163207332;300000 -43863;36789549;163210451;300000 -43864;36786431;163213569;300000 -43865;36783312;163216688;300000 -43866;36780194;163219806;300000 -43867;36777076;163222924;300000 -43868;36773958;163226042;300000 -43869;36770840;163229160;300000 -43870;36767723;163232277;300000 -43871;36764605;163235395;300000 -43872;36761488;163238512;300000 -43873;36758371;163241629;300000 -43874;36755254;163244746;300000 -43875;36752137;163247863;300000 -43876;36749020;163250980;300000 -43877;36745903;163254097;300000 -43878;36742787;163257213;300000 -43879;36739670;163260330;300000 -43880;36736554;163263446;300000 -43881;36733438;163266562;300000 -43882;36730322;163269678;300000 -43883;36727206;163272794;300000 -43884;36724091;163275909;300000 -43885;36720975;163279025;300000 -43886;36717860;163282140;300000 -43887;36714745;163285255;300000 -43888;36711630;163288370;300000 -43889;36708515;163291485;300000 -43890;36705400;163294600;300000 -43891;36702285;163297715;300000 -43892;36699171;163300829;300000 -43893;36696056;163303944;300000 -43894;36692942;163307058;300000 -43895;36689828;163310172;300000 -43896;36686714;163313286;300000 -43897;36683600;163316400;300000 -43898;36680487;163319513;300000 -43899;36677373;163322627;300000 -43900;36674260;163325740;300000 -43901;36671146;163328854;300000 -43902;36668033;163331967;300000 -43903;36664920;163335080;300000 -43904;36661808;163338192;300000 -43905;36658695;163341305;300000 -43906;36655582;163344418;300000 -43907;36652470;163347530;300000 -43908;36649358;163350642;300000 -43909;36646246;163353754;300000 -43910;36643134;163356866;300000 -43911;36640022;163359978;300000 -43912;36636910;163363090;300000 -43913;36633799;163366201;300000 -43914;36630687;163369313;300000 -43915;36627576;163372424;300000 -43916;36624465;163375535;300000 -43917;36621354;163378646;300000 -43918;36618243;163381757;300000 -43919;36615132;163384868;300000 -43920;36612022;163387978;300000 -43921;36608911;163391089;300000 -43922;36605801;163394199;300000 -43923;36602691;163397309;300000 -43924;36599581;163400419;300000 -43925;36596471;163403529;300000 -43926;36593362;163406638;300000 -43927;36590252;163409748;300000 -43928;36587143;163412857;300000 -43929;36584033;163415967;300000 -43930;36580924;163419076;300000 -43931;36577815;163422185;300000 -43932;36574706;163425294;300000 -43933;36571598;163428402;300000 -43934;36568489;163431511;300000 -43935;36565381;163434619;300000 -43936;36562272;163437728;300000 -43937;36559164;163440836;300000 -43938;36556056;163443944;300000 -43939;36552948;163447052;300000 -43940;36549841;163450159;300000 -43941;36546733;163453267;300000 -43942;36543626;163456374;300000 -43943;36540518;163459482;300000 -43944;36537411;163462589;300000 -43945;36534304;163465696;300000 -43946;36531197;163468803;300000 -43947;36528091;163471909;300000 -43948;36524984;163475016;300000 -43949;36521878;163478122;300000 -43950;36518771;163481229;300000 -43951;36515665;163484335;300000 -43952;36512559;163487441;300000 -43953;36509453;163490547;300000 -43954;36506348;163493652;300000 -43955;36503242;163496758;300000 -43956;36500137;163499863;300000 -43957;36497031;163502969;300000 -43958;36493926;163506074;300000 -43959;36490821;163509179;300000 -43960;36487716;163512284;300000 -43961;36484611;163515389;300000 -43962;36481507;163518493;300000 -43963;36478402;163521598;300000 -43964;36475298;163524702;300000 -43965;36472194;163527806;300000 -43966;36469090;163530910;300000 -43967;36465986;163534014;300000 -43968;36462882;163537118;300000 -43969;36459778;163540222;300000 -43970;36456675;163543325;300000 -43971;36453572;163546428;300000 -43972;36450468;163549532;300000 -43973;36447365;163552635;300000 -43974;36444263;163555737;300000 -43975;36441160;163558840;300000 -43976;36438057;163561943;300000 -43977;36434955;163565045;300000 -43978;36431852;163568148;300000 -43979;36428750;163571250;300000 -43980;36425648;163574352;300000 -43981;36422546;163577454;300000 -43982;36419444;163580556;300000 -43983;36416343;163583657;300000 -43984;36413241;163586759;300000 -43985;36410140;163589860;300000 -43986;36407039;163592961;300000 -43987;36403938;163596062;300000 -43988;36400837;163599163;300000 -43989;36397736;163602264;300000 -43990;36394635;163605365;300000 -43991;36391535;163608465;300000 -43992;36388434;163611566;300000 -43993;36385334;163614666;300000 -43994;36382234;163617766;300000 -43995;36379134;163620866;300000 -43996;36376034;163623966;300000 -43997;36372935;163627065;300000 -43998;36369835;163630165;300000 -43999;36366736;163633264;300000 -44000;36363636;163636364;300000 -44001;36360537;163639463;300000 -44002;36357438;163642562;300000 -44003;36354339;163645661;300000 -44004;36351241;163648759;300000 -44005;36348142;163651858;300000 -44006;36345044;163654956;300000 -44007;36341946;163658054;300000 -44008;36338847;163661153;300000 -44009;36335750;163664250;300000 -44010;36332652;163667348;300000 -44011;36329554;163670446;300000 -44012;36326456;163673544;300000 -44013;36323359;163676641;300000 -44014;36320262;163679738;300000 -44015;36317165;163682835;300000 -44016;36314068;163685932;300000 -44017;36310971;163689029;300000 -44018;36307874;163692126;300000 -44019;36304777;163695223;300000 -44020;36301681;163698319;300000 -44021;36298585;163701415;300000 -44022;36295489;163704511;300000 -44023;36292393;163707607;300000 -44024;36289297;163710703;300000 -44025;36286201;163713799;300000 -44026;36283105;163716895;300000 -44027;36280010;163719990;300000 -44028;36276915;163723085;300000 -44029;36273820;163726180;300000 -44030;36270725;163729275;300000 -44031;36267630;163732370;300000 -44032;36264535;163735465;300000 -44033;36261440;163738560;300000 -44034;36258346;163741654;300000 -44035;36255252;163744748;300000 -44036;36252157;163747843;300000 -44037;36249063;163750937;300000 -44038;36245969;163754031;300000 -44039;36242876;163757124;300000 -44040;36239782;163760218;300000 -44041;36236689;163763311;300000 -44042;36233595;163766405;300000 -44043;36230502;163769498;300000 -44044;36227409;163772591;300000 -44045;36224316;163775684;300000 -44046;36221223;163778777;300000 -44047;36218131;163781869;300000 -44048;36215038;163784962;300000 -44049;36211946;163788054;300000 -44050;36208854;163791146;300000 -44051;36205762;163794238;300000 -44052;36202670;163797330;300000 -44053;36199578;163800422;300000 -44054;36196486;163803514;300000 -44055;36193395;163806605;300000 -44056;36190303;163809697;300000 -44057;36187212;163812788;300000 -44058;36184121;163815879;300000 -44059;36181030;163818970;300000 -44060;36177939;163822061;300000 -44061;36174849;163825151;300000 -44062;36171758;163828242;300000 -44063;36168668;163831332;300000 -44064;36165577;163834423;300000 -44065;36162487;163837513;300000 -44066;36159397;163840603;300000 -44067;36156307;163843693;300000 -44068;36153218;163846782;300000 -44069;36150128;163849872;300000 -44070;36147039;163852961;300000 -44071;36143950;163856050;300000 -44072;36140860;163859140;300000 -44073;36137771;163862229;300000 -44074;36134683;163865317;300000 -44075;36131594;163868406;300000 -44076;36128505;163871495;300000 -44077;36125417;163874583;300000 -44078;36122329;163877671;300000 -44079;36119240;163880760;300000 -44080;36116152;163883848;300000 -44081;36113065;163886935;300000 -44082;36109977;163890023;300000 -44083;36106889;163893111;300000 -44084;36103802;163896198;300000 -44085;36100715;163899285;300000 -44086;36097627;163902373;300000 -44087;36094540;163905460;300000 -44088;36091453;163908547;300000 -44089;36088367;163911633;300000 -44090;36085280;163914720;300000 -44091;36082194;163917806;300000 -44092;36079107;163920893;300000 -44093;36076021;163923979;300000 -44094;36072935;163927065;300000 -44095;36069849;163930151;300000 -44096;36066763;163933237;300000 -44097;36063678;163936322;300000 -44098;36060592;163939408;300000 -44099;36057507;163942493;300000 -44100;36054422;163945578;300000 -44101;36051337;163948663;300000 -44102;36048252;163951748;300000 -44103;36045167;163954833;300000 -44104;36042082;163957918;300000 -44105;36038998;163961002;300000 -44106;36035913;163964087;300000 -44107;36032829;163967171;300000 -44108;36029745;163970255;300000 -44109;36026661;163973339;300000 -44110;36023577;163976423;300000 -44111;36020494;163979506;300000 -44112;36017410;163982590;300000 -44113;36014327;163985673;300000 -44114;36011244;163988756;300000 -44115;36008160;163991840;300000 -44116;36005078;163994922;300000 -44117;36001995;163998005;300000 -44118;35998912;164001088;300000 -44119;35995829;164004171;300000 -44120;35992747;164007253;300000 -44121;35989665;164010335;300000 -44122;35986583;164013417;300000 -44123;35983501;164016499;300000 -44124;35980419;164019581;300000 -44125;35977337;164022663;300000 -44126;35974256;164025744;300000 -44127;35971174;164028826;300000 -44128;35968093;164031907;300000 -44129;35965012;164034988;300000 -44130;35961931;164038069;300000 -44131;35958850;164041150;300000 -44132;35955769;164044231;300000 -44133;35952688;164047312;300000 -44134;35949608;164050392;300000 -44135;35946528;164053472;300000 -44136;35943448;164056552;300000 -44137;35940367;164059633;300000 -44138;35937288;164062712;300000 -44139;35934208;164065792;300000 -44140;35931128;164068872;300000 -44141;35928049;164071951;300000 -44142;35924969;164075031;300000 -44143;35921890;164078110;300000 -44144;35918811;164081189;300000 -44145;35915732;164084268;300000 -44146;35912653;164087347;300000 -44147;35909575;164090425;300000 -44148;35906496;164093504;300000 -44149;35903418;164096582;300000 -44150;35900340;164099660;300000 -44151;35897262;164102738;300000 -44152;35894184;164105816;300000 -44153;35891106;164108894;300000 -44154;35888028;164111972;300000 -44155;35884951;164115049;300000 -44156;35881873;164118127;300000 -44157;35878796;164121204;300000 -44158;35875719;164124281;300000 -44159;35872642;164127358;300000 -44160;35869565;164130435;300000 -44161;35866489;164133511;300000 -44162;35863412;164136588;300000 -44163;35860336;164139664;300000 -44164;35857259;164142741;300000 -44165;35854183;164145817;300000 -44166;35851107;164148893;300000 -44167;35848031;164151969;300000 -44168;35844956;164155044;300000 -44169;35841880;164158120;300000 -44170;35838805;164161195;300000 -44171;35835729;164164271;300000 -44172;35832654;164167346;300000 -44173;35829579;164170421;300000 -44174;35826504;164173496;300000 -44175;35823430;164176570;300000 -44176;35820355;164179645;300000 -44177;35817280;164182720;300000 -44178;35814206;164185794;300000 -44179;35811132;164188868;300000 -44180;35808058;164191942;300000 -44181;35804984;164195016;300000 -44182;35801910;164198090;300000 -44183;35798837;164201163;300000 -44184;35795763;164204237;300000 -44185;35792690;164207310;300000 -44186;35789617;164210383;300000 -44187;35786544;164213456;300000 -44188;35783471;164216529;300000 -44189;35780398;164219602;300000 -44190;35777325;164222675;300000 -44191;35774253;164225747;300000 -44192;35771180;164228820;300000 -44193;35768108;164231892;300000 -44194;35765036;164234964;300000 -44195;35761964;164238036;300000 -44196;35758892;164241108;300000 -44197;35755821;164244179;300000 -44198;35752749;164247251;300000 -44199;35749678;164250322;300000 -44200;35746606;164253394;300000 -44201;35743535;164256465;300000 -44202;35740464;164259536;300000 -44203;35737393;164262607;300000 -44204;35734323;164265677;300000 -44205;35731252;164268748;300000 -44206;35728182;164271818;300000 -44207;35725111;164274889;300000 -44208;35722041;164277959;300000 -44209;35718971;164281029;300000 -44210;35715901;164284099;300000 -44211;35712832;164287168;300000 -44212;35709762;164290238;300000 -44213;35706693;164293307;300000 -44214;35703623;164296377;300000 -44215;35700554;164299446;300000 -44216;35697485;164302515;300000 -44217;35694416;164305584;300000 -44218;35691347;164308653;300000 -44219;35688279;164311721;300000 -44220;35685210;164314790;300000 -44221;35682142;164317858;300000 -44222;35679074;164320926;300000 -44223;35676006;164323994;300000 -44224;35672938;164327062;300000 -44225;35669870;164330130;300000 -44226;35666802;164333198;300000 -44227;35663735;164336265;300000 -44228;35660667;164339333;300000 -44229;35657600;164342400;300000 -44230;35654533;164345467;300000 -44231;35651466;164348534;300000 -44232;35648399;164351601;300000 -44233;35645333;164354667;300000 -44234;35642266;164357734;300000 -44235;35639200;164360800;300000 -44236;35636133;164363867;300000 -44237;35633067;164366933;300000 -44238;35630001;164369999;300000 -44239;35626936;164373064;300000 -44240;35623870;164376130;300000 -44241;35620804;164379196;300000 -44242;35617739;164382261;300000 -44243;35614674;164385326;300000 -44244;35611608;164388392;300000 -44245;35608543;164391457;300000 -44246;35605478;164394522;300000 -44247;35602414;164397586;300000 -44248;35599349;164400651;300000 -44249;35596285;164403715;300000 -44250;35593220;164406780;300000 -44251;35590156;164409844;300000 -44252;35587092;164412908;300000 -44253;35584028;164415972;300000 -44254;35580964;164419036;300000 -44255;35577901;164422099;300000 -44256;35574837;164425163;300000 -44257;35571774;164428226;300000 -44258;35568711;164431289;300000 -44259;35565648;164434352;300000 -44260;35562585;164437415;300000 -44261;35559522;164440478;300000 -44262;35556459;164443541;300000 -44263;35553397;164446603;300000 -44264;35550334;164449666;300000 -44265;35547272;164452728;300000 -44266;35544210;164455790;300000 -44267;35541148;164458852;300000 -44268;35538086;164461914;300000 -44269;35535025;164464975;300000 -44270;35531963;164468037;300000 -44271;35528902;164471098;300000 -44272;35525840;164474160;300000 -44273;35522779;164477221;300000 -44274;35519718;164480282;300000 -44275;35516657;164483343;300000 -44276;35513597;164486403;300000 -44277;35510536;164489464;300000 -44278;35507475;164492525;300000 -44279;35504415;164495585;300000 -44280;35501355;164498645;300000 -44281;35498295;164501705;300000 -44282;35495235;164504765;300000 -44283;35492175;164507825;300000 -44284;35489116;164510884;300000 -44285;35486056;164513944;300000 -44286;35482997;164517003;300000 -44287;35479938;164520062;300000 -44288;35476879;164523121;300000 -44289;35473820;164526180;300000 -44290;35470761;164529239;300000 -44291;35467702;164532298;300000 -44292;35464644;164535356;300000 -44293;35461585;164538415;300000 -44294;35458527;164541473;300000 -44295;35455469;164544531;300000 -44296;35452411;164547589;300000 -44297;35449353;164550647;300000 -44298;35446296;164553704;300000 -44299;35443238;164556762;300000 -44300;35440181;164559819;300000 -44301;35437123;164562877;300000 -44302;35434066;164565934;300000 -44303;35431009;164568991;300000 -44304;35427952;164572048;300000 -44305;35424896;164575104;300000 -44306;35421839;164578161;300000 -44307;35418783;164581217;300000 -44308;35415726;164584274;300000 -44309;35412670;164587330;300000 -44310;35409614;164590386;300000 -44311;35406558;164593442;300000 -44312;35403502;164596498;300000 -44313;35400447;164599553;300000 -44314;35397391;164602609;300000 -44315;35394336;164605664;300000 -44316;35391281;164608719;300000 -44317;35388226;164611774;300000 -44318;35385171;164614829;300000 -44319;35382116;164617884;300000 -44320;35379061;164620939;300000 -44321;35376007;164623993;300000 -44322;35372952;164627048;300000 -44323;35369898;164630102;300000 -44324;35366844;164633156;300000 -44325;35363790;164636210;300000 -44326;35360736;164639264;300000 -44327;35357683;164642317;300000 -44328;35354629;164645371;300000 -44329;35351576;164648424;300000 -44330;35348522;164651478;300000 -44331;35345469;164654531;300000 -44332;35342416;164657584;300000 -44333;35339363;164660637;300000 -44334;35336311;164663689;300000 -44335;35333258;164666742;300000 -44336;35330206;164669794;300000 -44337;35327153;164672847;300000 -44338;35324101;164675899;300000 -44339;35321049;164678951;300000 -44340;35317997;164682003;300000 -44341;35314946;164685054;300000 -44342;35311894;164688106;300000 -44343;35308842;164691158;300000 -44344;35305791;164694209;300000 -44345;35302740;164697260;300000 -44346;35299689;164700311;300000 -44347;35296638;164703362;300000 -44348;35293587;164706413;300000 -44349;35290536;164709464;300000 -44350;35287486;164712514;300000 -44351;35284436;164715564;300000 -44352;35281385;164718615;300000 -44353;35278335;164721665;300000 -44354;35275285;164724715;300000 -44355;35272235;164727765;300000 -44356;35269186;164730814;300000 -44357;35266136;164733864;300000 -44358;35263087;164736913;300000 -44359;35260037;164739963;300000 -44360;35256988;164743012;300000 -44361;35253939;164746061;300000 -44362;35250890;164749110;300000 -44363;35247842;164752158;300000 -44364;35244793;164755207;300000 -44365;35241745;164758255;300000 -44366;35238696;164761304;300000 -44367;35235648;164764352;300000 -44368;35232600;164767400;300000 -44369;35229552;164770448;300000 -44370;35226504;164773496;300000 -44371;35223457;164776543;300000 -44372;35220409;164779591;300000 -44373;35217362;164782638;300000 -44374;35214315;164785685;300000 -44375;35211268;164788732;300000 -44376;35208221;164791779;300000 -44377;35205174;164794826;300000 -44378;35202127;164797873;300000 -44379;35199081;164800919;300000 -44380;35196034;164803966;300000 -44381;35192988;164807012;300000 -44382;35189942;164810058;300000 -44383;35186896;164813104;300000 -44384;35183850;164816150;300000 -44385;35180804;164819196;300000 -44386;35177759;164822241;300000 -44387;35174713;164825287;300000 -44388;35171668;164828332;300000 -44389;35168623;164831377;300000 -44390;35165578;164834422;300000 -44391;35162533;164837467;300000 -44392;35159488;164840512;300000 -44393;35156444;164843556;300000 -44394;35153399;164846601;300000 -44395;35150355;164849645;300000 -44396;35147311;164852689;300000 -44397;35144267;164855733;300000 -44398;35141223;164858777;300000 -44399;35138179;164861821;300000 -44400;35135135;164864865;300000 -44401;35132092;164867908;300000 -44402;35129048;164870952;300000 -44403;35126005;164873995;300000 -44404;35122962;164877038;300000 -44405;35119919;164880081;300000 -44406;35116876;164883124;300000 -44407;35113833;164886167;300000 -44408;35110791;164889209;300000 -44409;35107748;164892252;300000 -44410;35104706;164895294;300000 -44411;35101664;164898336;300000 -44412;35098622;164901378;300000 -44413;35095580;164904420;300000 -44414;35092538;164907462;300000 -44415;35089497;164910503;300000 -44416;35086455;164913545;300000 -44417;35083414;164916586;300000 -44418;35080373;164919627;300000 -44419;35077332;164922668;300000 -44420;35074291;164925709;300000 -44421;35071250;164928750;300000 -44422;35068209;164931791;300000 -44423;35065169;164934831;300000 -44424;35062129;164937871;300000 -44425;35059088;164940912;300000 -44426;35056048;164943952;300000 -44427;35053008;164946992;300000 -44428;35049968;164950032;300000 -44429;35046929;164953071;300000 -44430;35043889;164956111;300000 -44431;35040850;164959150;300000 -44432;35037811;164962189;300000 -44433;35034771;164965229;300000 -44434;35031732;164968268;300000 -44435;35028694;164971306;300000 -44436;35025655;164974345;300000 -44437;35022616;164977384;300000 -44438;35019578;164980422;300000 -44439;35016540;164983460;300000 -44440;35013501;164986499;300000 -44441;35010463;164989537;300000 -44442;35007425;164992575;300000 -44443;35004388;164995612;300000 -44444;35001350;164998650;300000 -44445;34998313;165001687;300000 -44446;34995275;165004725;300000 -44447;34992238;165007762;300000 -44448;34989201;165010799;300000 -44449;34986164;165013836;300000 -44450;34983127;165016873;300000 -44451;34980090;165019910;300000 -44452;34977054;165022946;300000 -44453;34974018;165025982;300000 -44454;34970981;165029019;300000 -44455;34967945;165032055;300000 -44456;34964909;165035091;300000 -44457;34961873;165038127;300000 -44458;34958838;165041162;300000 -44459;34955802;165044198;300000 -44460;34952767;165047233;300000 -44461;34949731;165050269;300000 -44462;34946696;165053304;300000 -44463;34943661;165056339;300000 -44464;34940626;165059374;300000 -44465;34937591;165062409;300000 -44466;34934557;165065443;300000 -44467;34931522;165068478;300000 -44468;34928488;165071512;300000 -44469;34925454;165074546;300000 -44470;34922420;165077580;300000 -44471;34919386;165080614;300000 -44472;34916352;165083648;300000 -44473;34913318;165086682;300000 -44474;34910285;165089715;300000 -44475;34907251;165092749;300000 -44476;34904218;165095782;300000 -44477;34901185;165098815;300000 -44478;34898152;165101848;300000 -44479;34895119;165104881;300000 -44480;34892086;165107914;300000 -44481;34889054;165110946;300000 -44482;34886021;165113979;300000 -44483;34882989;165117011;300000 -44484;34879957;165120043;300000 -44485;34876925;165123075;300000 -44486;34873893;165126107;300000 -44487;34870861;165129139;300000 -44488;34867830;165132170;300000 -44489;34864798;165135202;300000 -44490;34861767;165138233;300000 -44491;34858735;165141265;300000 -44492;34855704;165144296;300000 -44493;34852673;165147327;300000 -44494;34849643;165150357;300000 -44495;34846612;165153388;300000 -44496;34843581;165156419;300000 -44497;34840551;165159449;300000 -44498;34837521;165162479;300000 -44499;34834491;165165509;300000 -44500;34831461;165168539;300000 -44501;34828431;165171569;300000 -44502;34825401;165174599;300000 -44503;34822372;165177628;300000 -44504;34819342;165180658;300000 -44505;34816313;165183687;300000 -44506;34813284;165186716;300000 -44507;34810255;165189745;300000 -44508;34807226;165192774;300000 -44509;34804197;165195803;300000 -44510;34801168;165198832;300000 -44511;34798140;165201860;300000 -44512;34795111;165204889;300000 -44513;34792083;165207917;300000 -44514;34789055;165210945;300000 -44515;34786027;165213973;300000 -44516;34782999;165217001;300000 -44517;34779972;165220028;300000 -44518;34776944;165223056;300000 -44519;34773917;165226083;300000 -44520;34770889;165229111;300000 -44521;34767862;165232138;300000 -44522;34764835;165235165;300000 -44523;34761809;165238191;300000 -44524;34758782;165241218;300000 -44525;34755755;165244245;300000 -44526;34752729;165247271;300000 -44527;34749702;165250298;300000 -44528;34746676;165253324;300000 -44529;34743650;165256350;300000 -44530;34740624;165259376;300000 -44531;34737599;165262401;300000 -44532;34734573;165265427;300000 -44533;34731547;165268453;300000 -44534;34728522;165271478;300000 -44535;34725497;165274503;300000 -44536;34722472;165277528;300000 -44537;34719447;165280553;300000 -44538;34716422;165283578;300000 -44539;34713397;165286603;300000 -44540;34710373;165289627;300000 -44541;34707348;165292652;300000 -44542;34704324;165295676;300000 -44543;34701300;165298700;300000 -44544;34698276;165301724;300000 -44545;34695252;165304748;300000 -44546;34692228;165307772;300000 -44547;34689205;165310795;300000 -44548;34686181;165313819;300000 -44549;34683158;165316842;300000 -44550;34680135;165319865;300000 -44551;34677112;165322888;300000 -44552;34674089;165325911;300000 -44553;34671066;165328934;300000 -44554;34668043;165331957;300000 -44555;34665021;165334979;300000 -44556;34661998;165338002;300000 -44557;34658976;165341024;300000 -44558;34655954;165344046;300000 -44559;34652932;165347068;300000 -44560;34649910;165350090;300000 -44561;34646889;165353111;300000 -44562;34643867;165356133;300000 -44563;34640846;165359154;300000 -44564;34637824;165362176;300000 -44565;34634803;165365197;300000 -44566;34631782;165368218;300000 -44567;34628761;165371239;300000 -44568;34625740;165374260;300000 -44569;34622720;165377280;300000 -44570;34619699;165380301;300000 -44571;34616679;165383321;300000 -44572;34613659;165386341;300000 -44573;34610639;165389361;300000 -44574;34607619;165392381;300000 -44575;34604599;165395401;300000 -44576;34601579;165398421;300000 -44577;34598560;165401440;300000 -44578;34595540;165404460;300000 -44579;34592521;165407479;300000 -44580;34589502;165410498;300000 -44581;34586483;165413517;300000 -44582;34583464;165416536;300000 -44583;34580445;165419555;300000 -44584;34577427;165422573;300000 -44585;34574408;165425592;300000 -44586;34571390;165428610;300000 -44587;34568372;165431628;300000 -44588;34565354;165434646;300000 -44589;34562336;165437664;300000 -44590;34559318;165440682;300000 -44591;34556301;165443699;300000 -44592;34553283;165446717;300000 -44593;34550266;165449734;300000 -44594;34547249;165452751;300000 -44595;34544231;165455769;300000 -44596;34541214;165458786;300000 -44597;34538198;165461802;300000 -44598;34535181;165464819;300000 -44599;34532164;165467836;300000 -44600;34529148;165470852;300000 -44601;34526132;165473868;300000 -44602;34523116;165476884;300000 -44603;34520100;165479900;300000 -44604;34517084;165482916;300000 -44605;34514068;165485932;300000 -44606;34511052;165488948;300000 -44607;34508037;165491963;300000 -44608;34505022;165494978;300000 -44609;34502006;165497994;300000 -44610;34498991;165501009;300000 -44611;34495976;165504024;300000 -44612;34492962;165507038;300000 -44613;34489947;165510053;300000 -44614;34486932;165513068;300000 -44615;34483918;165516082;300000 -44616;34480904;165519096;300000 -44617;34477890;165522110;300000 -44618;34474876;165525124;300000 -44619;34471862;165528138;300000 -44620;34468848;165531152;300000 -44621;34465834;165534166;300000 -44622;34462821;165537179;300000 -44623;34459808;165540192;300000 -44624;34456795;165543205;300000 -44625;34453782;165546218;300000 -44626;34450769;165549231;300000 -44627;34447756;165552244;300000 -44628;34444743;165555257;300000 -44629;34441731;165558269;300000 -44630;34438718;165561282;300000 -44631;34435706;165564294;300000 -44632;34432694;165567306;300000 -44633;34429682;165570318;300000 -44634;34426670;165573330;300000 -44635;34423659;165576341;300000 -44636;34420647;165579353;300000 -44637;34417636;165582364;300000 -44638;34414624;165585376;300000 -44639;34411613;165588387;300000 -44640;34408602;165591398;300000 -44641;34405591;165594409;300000 -44642;34402581;165597419;300000 -44643;34399570;165600430;300000 -44644;34396559;165603441;300000 -44645;34393549;165606451;300000 -44646;34390539;165609461;300000 -44647;34387529;165612471;300000 -44648;34384519;165615481;300000 -44649;34381509;165618491;300000 -44650;34378499;165621501;300000 -44651;34375490;165624510;300000 -44652;34372481;165627519;300000 -44653;34369471;165630529;300000 -44654;34366462;165633538;300000 -44655;34363453;165636547;300000 -44656;34360444;165639556;300000 -44657;34357436;165642564;300000 -44658;34354427;165645573;300000 -44659;34351419;165648581;300000 -44660;34348410;165651590;300000 -44661;34345402;165654598;300000 -44662;34342394;165657606;300000 -44663;34339386;165660614;300000 -44664;34336378;165663622;300000 -44665;34333371;165666629;300000 -44666;34330363;165669637;300000 -44667;34327356;165672644;300000 -44668;34324349;165675651;300000 -44669;34321341;165678659;300000 -44670;34318334;165681666;300000 -44671;34315328;165684672;300000 -44672;34312321;165687679;300000 -44673;34309314;165690686;300000 -44674;34306308;165693692;300000 -44675;34303302;165696698;300000 -44676;34300295;165699705;300000 -44677;34297289;165702711;300000 -44678;34294284;165705716;300000 -44679;34291278;165708722;300000 -44680;34288272;165711728;300000 -44681;34285267;165714733;300000 -44682;34282261;165717739;300000 -44683;34279256;165720744;300000 -44684;34276251;165723749;300000 -44685;34273246;165726754;300000 -44686;34270241;165729759;300000 -44687;34267237;165732763;300000 -44688;34264232;165735768;300000 -44689;34261228;165738772;300000 -44690;34258223;165741777;300000 -44691;34255219;165744781;300000 -44692;34252215;165747785;300000 -44693;34249211;165750789;300000 -44694;34246208;165753792;300000 -44695;34243204;165756796;300000 -44696;34240200;165759800;300000 -44697;34237197;165762803;300000 -44698;34234194;165765806;300000 -44699;34231191;165768809;300000 -44700;34228188;165771812;300000 -44701;34225185;165774815;300000 -44702;34222182;165777818;300000 -44703;34219180;165780820;300000 -44704;34216178;165783822;300000 -44705;34213175;165786825;300000 -44706;34210173;165789827;300000 -44707;34207171;165792829;300000 -44708;34204169;165795831;300000 -44709;34201168;165798832;300000 -44710;34198166;165801834;300000 -44711;34195165;165804835;300000 -44712;34192163;165807837;300000 -44713;34189162;165810838;300000 -44714;34186161;165813839;300000 -44715;34183160;165816840;300000 -44716;34180159;165819841;300000 -44717;34177159;165822841;300000 -44718;34174158;165825842;300000 -44719;34171158;165828842;300000 -44720;34168157;165831843;300000 -44721;34165157;165834843;300000 -44722;34162157;165837843;300000 -44723;34159157;165840843;300000 -44724;34156158;165843842;300000 -44725;34153158;165846842;300000 -44726;34150159;165849841;300000 -44727;34147159;165852841;300000 -44728;34144160;165855840;300000 -44729;34141161;165858839;300000 -44730;34138162;165861838;300000 -44731;34135164;165864836;300000 -44732;34132165;165867835;300000 -44733;34129166;165870834;300000 -44734;34126168;165873832;300000 -44735;34123170;165876830;300000 -44736;34120172;165879828;300000 -44737;34117174;165882826;300000 -44738;34114176;165885824;300000 -44739;34111178;165888822;300000 -44740;34108181;165891819;300000 -44741;34105183;165894817;300000 -44742;34102186;165897814;300000 -44743;34099189;165900811;300000 -44744;34096192;165903808;300000 -44745;34093195;165906805;300000 -44746;34090198;165909802;300000 -44747;34087201;165912799;300000 -44748;34084205;165915795;300000 -44749;34081209;165918791;300000 -44750;34078212;165921788;300000 -44751;34075216;165924784;300000 -44752;34072220;165927780;300000 -44753;34069224;165930776;300000 -44754;34066229;165933771;300000 -44755;34063233;165936767;300000 -44756;34060238;165939762;300000 -44757;34057242;165942758;300000 -44758;34054247;165945753;300000 -44759;34051252;165948748;300000 -44760;34048257;165951743;300000 -44761;34045263;165954737;300000 -44762;34042268;165957732;300000 -44763;34039274;165960726;300000 -44764;34036279;165963721;300000 -44765;34033285;165966715;300000 -44766;34030291;165969709;300000 -44767;34027297;165972703;300000 -44768;34024303;165975697;300000 -44769;34021309;165978691;300000 -44770;34018316;165981684;300000 -44771;34015322;165984678;300000 -44772;34012329;165987671;300000 -44773;34009336;165990664;300000 -44774;34006343;165993657;300000 -44775;34003350;165996650;300000 -44776;34000357;165999643;300000 -44777;33997365;166002635;300000 -44778;33994372;166005628;300000 -44779;33991380;166008620;300000 -44780;33988388;166011612;300000 -44781;33985396;166014604;300000 -44782;33982404;166017596;300000 -44783;33979412;166020588;300000 -44784;33976420;166023580;300000 -44785;33973429;166026571;300000 -44786;33970437;166029563;300000 -44787;33967446;166032554;300000 -44788;33964455;166035545;300000 -44789;33961464;166038536;300000 -44790;33958473;166041527;300000 -44791;33955482;166044518;300000 -44792;33952492;166047508;300000 -44793;33949501;166050499;300000 -44794;33946511;166053489;300000 -44795;33943520;166056480;300000 -44796;33940530;166059470;300000 -44797;33937540;166062460;300000 -44798;33934551;166065449;300000 -44799;33931561;166068439;300000 -44800;33928571;166071429;300000 -44801;33925582;166074418;300000 -44802;33922593;166077407;300000 -44803;33919604;166080396;300000 -44804;33916615;166083385;300000 -44805;33913626;166086374;300000 -44806;33910637;166089363;300000 -44807;33907648;166092352;300000 -44808;33904660;166095340;300000 -44809;33901672;166098328;300000 -44810;33898683;166101317;300000 -44811;33895695;166104305;300000 -44812;33892707;166107293;300000 -44813;33889720;166110280;300000 -44814;33886732;166113268;300000 -44815;33883744;166116256;300000 -44816;33880757;166119243;300000 -44817;33877770;166122230;300000 -44818;33874782;166125218;300000 -44819;33871795;166128205;300000 -44820;33868809;166131191;300000 -44821;33865822;166134178;300000 -44822;33862835;166137165;300000 -44823;33859849;166140151;300000 -44824;33856862;166143138;300000 -44825;33853876;166146124;300000 -44826;33850890;166149110;300000 -44827;33847904;166152096;300000 -44828;33844918;166155082;300000 -44829;33841933;166158067;300000 -44830;33838947;166161053;300000 -44831;33835962;166164038;300000 -44832;33832976;166167024;300000 -44833;33829991;166170009;300000 -44834;33827006;166172994;300000 -44835;33824021;166175979;300000 -44836;33821037;166178963;300000 -44837;33818052;166181948;300000 -44838;33815068;166184932;300000 -44839;33812083;166187917;300000 -44840;33809099;166190901;300000 -44841;33806115;166193885;300000 -44842;33803131;166196869;300000 -44843;33800147;166199853;300000 -44844;33797164;166202836;300000 -44845;33794180;166205820;300000 -44846;33791197;166208803;300000 -44847;33788213;166211787;300000 -44848;33785230;166214770;300000 -44849;33782247;166217753;300000 -44850;33779264;166220736;300000 -44851;33776281;166223719;300000 -44852;33773299;166226701;300000 -44853;33770316;166229684;300000 -44854;33767334;166232666;300000 -44855;33764352;166235648;300000 -44856;33761370;166238630;300000 -44857;33758388;166241612;300000 -44858;33755406;166244594;300000 -44859;33752424;166247576;300000 -44860;33749443;166250557;300000 -44861;33746461;166253539;300000 -44862;33743480;166256520;300000 -44863;33740499;166259501;300000 -44864;33737518;166262482;300000 -44865;33734537;166265463;300000 -44866;33731556;166268444;300000 -44867;33728576;166271424;300000 -44868;33725595;166274405;300000 -44869;33722615;166277385;300000 -44870;33719634;166280366;300000 -44871;33716654;166283346;300000 -44872;33713674;166286326;300000 -44873;33710695;166289305;300000 -44874;33707715;166292285;300000 -44875;33704735;166295265;300000 -44876;33701756;166298244;300000 -44877;33698777;166301223;300000 -44878;33695797;166304203;300000 -44879;33692818;166307182;300000 -44880;33689840;166310160;300000 -44881;33686861;166313139;300000 -44882;33683882;166316118;300000 -44883;33680904;166319096;300000 -44884;33677925;166322075;300000 -44885;33674947;166325053;300000 -44886;33671969;166328031;300000 -44887;33668991;166331009;300000 -44888;33666013;166333987;300000 -44889;33663035;166336965;300000 -44890;33660058;166339942;300000 -44891;33657080;166342920;300000 -44892;33654103;166345897;300000 -44893;33651126;166348874;300000 -44894;33648149;166351851;300000 -44895;33645172;166354828;300000 -44896;33642195;166357805;300000 -44897;33639219;166360781;300000 -44898;33636242;166363758;300000 -44899;33633266;166366734;300000 -44900;33630290;166369710;300000 -44901;33627313;166372687;300000 -44902;33624337;166375663;300000 -44903;33621362;166378638;300000 -44904;33618386;166381614;300000 -44905;33615410;166384590;300000 -44906;33612435;166387565;300000 -44907;33609460;166390540;300000 -44908;33606484;166393516;300000 -44909;33603509;166396491;300000 -44910;33600534;166399466;300000 -44911;33597560;166402440;300000 -44912;33594585;166405415;300000 -44913;33591610;166408390;300000 -44914;33588636;166411364;300000 -44915;33585662;166414338;300000 -44916;33582688;166417312;300000 -44917;33579714;166420286;300000 -44918;33576740;166423260;300000 -44919;33573766;166426234;300000 -44920;33570793;166429207;300000 -44921;33567819;166432181;300000 -44922;33564846;166435154;300000 -44923;33561873;166438127;300000 -44924;33558899;166441101;300000 -44925;33555927;166444073;300000 -44926;33552954;166447046;300000 -44927;33549981;166450019;300000 -44928;33547009;166452991;300000 -44929;33544036;166455964;300000 -44930;33541064;166458936;300000 -44931;33538092;166461908;300000 -44932;33535120;166464880;300000 -44933;33532148;166467852;300000 -44934;33529176;166470824;300000 -44935;33526205;166473795;300000 -44936;33523233;166476767;300000 -44937;33520262;166479738;300000 -44938;33517290;166482710;300000 -44939;33514319;166485681;300000 -44940;33511348;166488652;300000 -44941;33508378;166491622;300000 -44942;33505407;166494593;300000 -44943;33502436;166497564;300000 -44944;33499466;166500534;300000 -44945;33496496;166503504;300000 -44946;33493526;166506474;300000 -44947;33490556;166509444;300000 -44948;33487586;166512414;300000 -44949;33484616;166515384;300000 -44950;33481646;166518354;300000 -44951;33478677;166521323;300000 -44952;33475707;166524293;300000 -44953;33472738;166527262;300000 -44954;33469769;166530231;300000 -44955;33466800;166533200;300000 -44956;33463831;166536169;300000 -44957;33460863;166539137;300000 -44958;33457894;166542106;300000 -44959;33454926;166545074;300000 -44960;33451957;166548043;300000 -44961;33448989;166551011;300000 -44962;33446021;166553979;300000 -44963;33443053;166556947;300000 -44964;33440085;166559915;300000 -44965;33437118;166562882;300000 -44966;33434150;166565850;300000 -44967;33431183;166568817;300000 -44968;33428216;166571784;300000 -44969;33425249;166574751;300000 -44970;33422282;166577718;300000 -44971;33419315;166580685;300000 -44972;33416348;166583652;300000 -44973;33413381;166586619;300000 -44974;33410415;166589585;300000 -44975;33407449;166592551;300000 -44976;33404482;166595518;300000 -44977;33401516;166598484;300000 -44978;33398550;166601450;300000 -44979;33395585;166604415;300000 -44980;33392619;166607381;300000 -44981;33389653;166610347;300000 -44982;33386688;166613312;300000 -44983;33383723;166616277;300000 -44984;33380758;166619242;300000 -44985;33377793;166622207;300000 -44986;33374828;166625172;300000 -44987;33371863;166628137;300000 -44988;33368898;166631102;300000 -44989;33365934;166634066;300000 -44990;33362970;166637030;300000 -44991;33360005;166639995;300000 -44992;33357041;166642959;300000 -44993;33354077;166645923;300000 -44994;33351113;166648887;300000 -44995;33348150;166651850;300000 -44996;33345186;166654814;300000 -44997;33342223;166657777;300000 -44998;33339260;166660740;300000 -44999;33336296;166663704;300000 -45000;33333333;166666667;300000 -45001;33330370;166669630;300000 -45002;33327408;166672592;300000 -45003;33324445;166675555;300000 -45004;33321483;166678517;300000 -45005;33318520;166681480;300000 -45006;33315558;166684442;300000 -45007;33312596;166687404;300000 -45008;33309634;166690366;300000 -45009;33306672;166693328;300000 -45010;33303710;166696290;300000 -45011;33300749;166699251;300000 -45012;33297787;166702213;300000 -45013;33294826;166705174;300000 -45014;33291865;166708135;300000 -45015;33288904;166711096;300000 -45016;33285943;166714057;300000 -45017;33282982;166717018;300000 -45018;33280021;166719979;300000 -45019;33277061;166722939;300000 -45020;33274100;166725900;300000 -45021;33271140;166728860;300000 -45022;33268180;166731820;300000 -45023;33265220;166734780;300000 -45024;33262260;166737740;300000 -45025;33259300;166740700;300000 -45026;33256341;166743659;300000 -45027;33253381;166746619;300000 -45028;33250422;166749578;300000 -45029;33247463;166752537;300000 -45030;33244504;166755496;300000 -45031;33241545;166758455;300000 -45032;33238586;166761414;300000 -45033;33235627;166764373;300000 -45034;33232669;166767331;300000 -45035;33229710;166770290;300000 -45036;33226752;166773248;300000 -45037;33223794;166776206;300000 -45038;33220836;166779164;300000 -45039;33217878;166782122;300000 -45040;33214920;166785080;300000 -45041;33211962;166788038;300000 -45042;33209005;166790995;300000 -45043;33206048;166793952;300000 -45044;33203090;166796910;300000 -45045;33200133;166799867;300000 -45046;33197176;166802824;300000 -45047;33194219;166805781;300000 -45048;33191263;166808737;300000 -45049;33188306;166811694;300000 -45050;33185350;166814650;300000 -45051;33182393;166817607;300000 -45052;33179437;166820563;300000 -45053;33176481;166823519;300000 -45054;33173525;166826475;300000 -45055;33170569;166829431;300000 -45056;33167614;166832386;300000 -45057;33164658;166835342;300000 -45058;33161703;166838297;300000 -45059;33158747;166841253;300000 -45060;33155792;166844208;300000 -45061;33152837;166847163;300000 -45062;33149882;166850118;300000 -45063;33146928;166853072;300000 -45064;33143973;166856027;300000 -45065;33141019;166858981;300000 -45066;33138064;166861936;300000 -45067;33135110;166864890;300000 -45068;33132156;166867844;300000 -45069;33129202;166870798;300000 -45070;33126248;166873752;300000 -45071;33123294;166876706;300000 -45072;33120341;166879659;300000 -45073;33117387;166882613;300000 -45074;33114434;166885566;300000 -45075;33111481;166888519;300000 -45076;33108528;166891472;300000 -45077;33105575;166894425;300000 -45078;33102622;166897378;300000 -45079;33099669;166900331;300000 -45080;33096717;166903283;300000 -45081;33093765;166906235;300000 -45082;33090812;166909188;300000 -45083;33087860;166912140;300000 -45084;33084908;166915092;300000 -45085;33081956;166918044;300000 -45086;33079005;166920995;300000 -45087;33076053;166923947;300000 -45088;33073101;166926899;300000 -45089;33070150;166929850;300000 -45090;33067199;166932801;300000 -45091;33064248;166935752;300000 -45092;33061297;166938703;300000 -45093;33058346;166941654;300000 -45094;33055395;166944605;300000 -45095;33052445;166947555;300000 -45096;33049494;166950506;300000 -45097;33046544;166953456;300000 -45098;33043594;166956406;300000 -45099;33040644;166959356;300000 -45100;33037694;166962306;300000 -45101;33034744;166965256;300000 -45102;33031795;166968205;300000 -45103;33028845;166971155;300000 -45104;33025896;166974104;300000 -45105;33022946;166977054;300000 -45106;33019997;166980003;300000 -45107;33017048;166982952;300000 -45108;33014099;166985901;300000 -45109;33011151;166988849;300000 -45110;33008202;166991798;300000 -45111;33005254;166994746;300000 -45112;33002305;166997695;300000 -45113;32999357;167000643;300000 -45114;32996409;167003591;300000 -45115;32993461;167006539;300000 -45116;32990513;167009487;300000 -45117;32987566;167012434;300000 -45118;32984618;167015382;300000 -45119;32981671;167018329;300000 -45120;32978723;167021277;300000 -45121;32975776;167024224;300000 -45122;32972829;167027171;300000 -45123;32969882;167030118;300000 -45124;32966936;167033064;300000 -45125;32963989;167036011;300000 -45126;32961042;167038958;300000 -45127;32958096;167041904;300000 -45128;32955150;167044850;300000 -45129;32952204;167047796;300000 -45130;32949258;167050742;300000 -45131;32946312;167053688;300000 -45132;32943366;167056634;300000 -45133;32940421;167059579;300000 -45134;32937475;167062525;300000 -45135;32934530;167065470;300000 -45136;32931585;167068415;300000 -45137;32928639;167071361;300000 -45138;32925695;167074305;300000 -45139;32922750;167077250;300000 -45140;32919805;167080195;300000 -45141;32916861;167083139;300000 -45142;32913916;167086084;300000 -45143;32910972;167089028;300000 -45144;32908028;167091972;300000 -45145;32905084;167094916;300000 -45146;32902140;167097860;300000 -45147;32899196;167100804;300000 -45148;32896252;167103748;300000 -45149;32893309;167106691;300000 -45150;32890365;167109635;300000 -45151;32887422;167112578;300000 -45152;32884479;167115521;300000 -45153;32881536;167118464;300000 -45154;32878593;167121407;300000 -45155;32875651;167124349;300000 -45156;32872708;167127292;300000 -45157;32869765;167130235;300000 -45158;32866823;167133177;300000 -45159;32863881;167136119;300000 -45160;32860939;167139061;300000 -45161;32857997;167142003;300000 -45162;32855055;167144945;300000 -45163;32852113;167147887;300000 -45164;32849172;167150828;300000 -45165;32846230;167153770;300000 -45166;32843289;167156711;300000 -45167;32840348;167159652;300000 -45168;32837407;167162593;300000 -45169;32834466;167165534;300000 -45170;32831525;167168475;300000 -45171;32828585;167171415;300000 -45172;32825644;167174356;300000 -45173;32822704;167177296;300000 -45174;32819764;167180236;300000 -45175;32816823;167183177;300000 -45176;32813883;167186117;300000 -45177;32810944;167189056;300000 -45178;32808004;167191996;300000 -45179;32805064;167194936;300000 -45180;32802125;167197875;300000 -45181;32799185;167200815;300000 -45182;32796246;167203754;300000 -45183;32793307;167206693;300000 -45184;32790368;167209632;300000 -45185;32787429;167212571;300000 -45186;32784491;167215509;300000 -45187;32781552;167218448;300000 -45188;32778614;167221386;300000 -45189;32775675;167224325;300000 -45190;32772737;167227263;300000 -45191;32769799;167230201;300000 -45192;32766861;167233139;300000 -45193;32763924;167236076;300000 -45194;32760986;167239014;300000 -45195;32758048;167241952;300000 -45196;32755111;167244889;300000 -45197;32752174;167247826;300000 -45198;32749237;167250763;300000 -45199;32746300;167253700;300000 -45200;32743363;167256637;300000 -45201;32740426;167259574;300000 -45202;32737489;167262511;300000 -45203;32734553;167265447;300000 -45204;32731617;167268383;300000 -45205;32728680;167271320;300000 -45206;32725744;167274256;300000 -45207;32722808;167277192;300000 -45208;32719873;167280127;300000 -45209;32716937;167283063;300000 -45210;32714001;167285999;300000 -45211;32711066;167288934;300000 -45212;32708131;167291869;300000 -45213;32705195;167294805;300000 -45214;32702260;167297740;300000 -45215;32699325;167300675;300000 -45216;32696391;167303609;300000 -45217;32693456;167306544;300000 -45218;32690521;167309479;300000 -45219;32687587;167312413;300000 -45220;32684653;167315347;300000 -45221;32681719;167318281;300000 -45222;32678785;167321215;300000 -45223;32675851;167324149;300000 -45224;32672917;167327083;300000 -45225;32669983;167330017;300000 -45226;32667050;167332950;300000 -45227;32664117;167335883;300000 -45228;32661183;167338817;300000 -45229;32658250;167341750;300000 -45230;32655317;167344683;300000 -45231;32652384;167347616;300000 -45232;32649452;167350548;300000 -45233;32646519;167353481;300000 -45234;32643587;167356413;300000 -45235;32640654;167359346;300000 -45236;32637722;167362278;300000 -45237;32634790;167365210;300000 -45238;32631858;167368142;300000 -45239;32628926;167371074;300000 -45240;32625995;167374005;300000 -45241;32623063;167376937;300000 -45242;32620132;167379868;300000 -45243;32617200;167382800;300000 -45244;32614269;167385731;300000 -45245;32611338;167388662;300000 -45246;32608407;167391593;300000 -45247;32605477;167394523;300000 -45248;32602546;167397454;300000 -45249;32599615;167400385;300000 -45250;32596685;167403315;300000 -45251;32593755;167406245;300000 -45252;32590825;167409175;300000 -45253;32587895;167412105;300000 -45254;32584965;167415035;300000 -45255;32582035;167417965;300000 -45256;32579106;167420894;300000 -45257;32576176;167423824;300000 -45258;32573247;167426753;300000 -45259;32570318;167429682;300000 -45260;32567388;167432612;300000 -45261;32564459;167435541;300000 -45262;32561531;167438469;300000 -45263;32558602;167441398;300000 -45264;32555673;167444327;300000 -45265;32552745;167447255;300000 -45266;32549817;167450183;300000 -45267;32546888;167453112;300000 -45268;32543960;167456040;300000 -45269;32541032;167458968;300000 -45270;32538105;167461895;300000 -45271;32535177;167464823;300000 -45272;32532250;167467750;300000 -45273;32529322;167470678;300000 -45274;32526395;167473605;300000 -45275;32523468;167476532;300000 -45276;32520541;167479459;300000 -45277;32517614;167482386;300000 -45278;32514687;167485313;300000 -45279;32511760;167488240;300000 -45280;32508834;167491166;300000 -45281;32505908;167494092;300000 -45282;32502981;167497019;300000 -45283;32500055;167499945;300000 -45284;32497129;167502871;300000 -45285;32494203;167505797;300000 -45286;32491278;167508722;300000 -45287;32488352;167511648;300000 -45288;32485427;167514573;300000 -45289;32482501;167517499;300000 -45290;32479576;167520424;300000 -45291;32476651;167523349;300000 -45292;32473726;167526274;300000 -45293;32470801;167529199;300000 -45294;32467877;167532123;300000 -45295;32464952;167535048;300000 -45296;32462028;167537972;300000 -45297;32459103;167540897;300000 -45298;32456179;167543821;300000 -45299;32453255;167546745;300000 -45300;32450331;167549669;300000 -45301;32447407;167552593;300000 -45302;32444484;167555516;300000 -45303;32441560;167558440;300000 -45304;32438637;167561363;300000 -45305;32435713;167564287;300000 -45306;32432790;167567210;300000 -45307;32429867;167570133;300000 -45308;32426944;167573056;300000 -45309;32424022;167575978;300000 -45310;32421099;167578901;300000 -45311;32418177;167581823;300000 -45312;32415254;167584746;300000 -45313;32412332;167587668;300000 -45314;32409410;167590590;300000 -45315;32406488;167593512;300000 -45316;32403566;167596434;300000 -45317;32400644;167599356;300000 -45318;32397723;167602277;300000 -45319;32394801;167605199;300000 -45320;32391880;167608120;300000 -45321;32388959;167611041;300000 -45322;32386038;167613962;300000 -45323;32383117;167616883;300000 -45324;32380196;167619804;300000 -45325;32377275;167622725;300000 -45326;32374355;167625645;300000 -45327;32371434;167628566;300000 -45328;32368514;167631486;300000 -45329;32365594;167634406;300000 -45330;32362674;167637326;300000 -45331;32359754;167640246;300000 -45332;32356834;167643166;300000 -45333;32353914;167646086;300000 -45334;32350995;167649005;300000 -45335;32348075;167651925;300000 -45336;32345156;167654844;300000 -45337;32342237;167657763;300000 -45338;32339318;167660682;300000 -45339;32336399;167663601;300000 -45340;32333480;167666520;300000 -45341;32330562;167669438;300000 -45342;32327643;167672357;300000 -45343;32324725;167675275;300000 -45344;32321807;167678193;300000 -45345;32318889;167681111;300000 -45346;32315971;167684029;300000 -45347;32313053;167686947;300000 -45348;32310135;167689865;300000 -45349;32307217;167692783;300000 -45350;32304300;167695700;300000 -45351;32301383;167698617;300000 -45352;32298465;167701535;300000 -45353;32295548;167704452;300000 -45354;32292631;167707369;300000 -45355;32289714;167710286;300000 -45356;32286798;167713202;300000 -45357;32283881;167716119;300000 -45358;32280965;167719035;300000 -45359;32278048;167721952;300000 -45360;32275132;167724868;300000 -45361;32272216;167727784;300000 -45362;32269300;167730700;300000 -45363;32266384;167733616;300000 -45364;32263469;167736531;300000 -45365;32260553;167739447;300000 -45366;32257638;167742362;300000 -45367;32254723;167745277;300000 -45368;32251807;167748193;300000 -45369;32248892;167751108;300000 -45370;32245978;167754022;300000 -45371;32243063;167756937;300000 -45372;32240148;167759852;300000 -45373;32237234;167762766;300000 -45374;32234319;167765681;300000 -45375;32231405;167768595;300000 -45376;32228491;167771509;300000 -45377;32225577;167774423;300000 -45378;32222663;167777337;300000 -45379;32219749;167780251;300000 -45380;32216836;167783164;300000 -45381;32213922;167786078;300000 -45382;32211009;167788991;300000 -45383;32208096;167791904;300000 -45384;32205182;167794818;300000 -45385;32202269;167797731;300000 -45386;32199357;167800643;300000 -45387;32196444;167803556;300000 -45388;32193531;167806469;300000 -45389;32190619;167809381;300000 -45390;32187707;167812293;300000 -45391;32184794;167815206;300000 -45392;32181882;167818118;300000 -45393;32178970;167821030;300000 -45394;32176059;167823941;300000 -45395;32173147;167826853;300000 -45396;32170235;167829765;300000 -45397;32167324;167832676;300000 -45398;32164413;167835587;300000 -45399;32161501;167838499;300000 -45400;32158590;167841410;300000 -45401;32155679;167844321;300000 -45402;32152769;167847231;300000 -45403;32149858;167850142;300000 -45404;32146947;167853053;300000 -45405;32144037;167855963;300000 -45406;32141127;167858873;300000 -45407;32138217;167861783;300000 -45408;32135307;167864693;300000 -45409;32132397;167867603;300000 -45410;32129487;167870513;300000 -45411;32126577;167873423;300000 -45412;32123668;167876332;300000 -45413;32120758;167879242;300000 -45414;32117849;167882151;300000 -45415;32114940;167885060;300000 -45416;32112031;167887969;300000 -45417;32109122;167890878;300000 -45418;32106213;167893787;300000 -45419;32103305;167896695;300000 -45420;32100396;167899604;300000 -45421;32097488;167902512;300000 -45422;32094580;167905420;300000 -45423;32091672;167908328;300000 -45424;32088764;167911236;300000 -45425;32085856;167914144;300000 -45426;32082948;167917052;300000 -45427;32080041;167919959;300000 -45428;32077133;167922867;300000 -45429;32074226;167925774;300000 -45430;32071319;167928681;300000 -45431;32068411;167931589;300000 -45432;32065504;167934496;300000 -45433;32062598;167937402;300000 -45434;32059691;167940309;300000 -45435;32056784;167943216;300000 -45436;32053878;167946122;300000 -45437;32050972;167949028;300000 -45438;32048065;167951935;300000 -45439;32045159;167954841;300000 -45440;32042254;167957746;300000 -45441;32039348;167960652;300000 -45442;32036442;167963558;300000 -45443;32033537;167966463;300000 -45444;32030631;167969369;300000 -45445;32027726;167972274;300000 -45446;32024821;167975179;300000 -45447;32021916;167978084;300000 -45448;32019011;167980989;300000 -45449;32016106;167983894;300000 -45450;32013201;167986799;300000 -45451;32010297;167989703;300000 -45452;32007392;167992608;300000 -45453;32004488;167995512;300000 -45454;32001584;167998416;300000 -45455;31998680;168001320;300000 -45456;31995776;168004224;300000 -45457;31992872;168007128;300000 -45458;31989969;168010031;300000 -45459;31987065;168012935;300000 -45460;31984162;168015838;300000 -45461;31981259;168018741;300000 -45462;31978356;168021644;300000 -45463;31975453;168024547;300000 -45464;31972550;168027450;300000 -45465;31969647;168030353;300000 -45466;31966744;168033256;300000 -45467;31963842;168036158;300000 -45468;31960940;168039060;300000 -45469;31958037;168041963;300000 -45470;31955135;168044865;300000 -45471;31952233;168047767;300000 -45472;31949331;168050669;300000 -45473;31946430;168053570;300000 -45474;31943528;168056472;300000 -45475;31940627;168059373;300000 -45476;31937725;168062275;300000 -45477;31934824;168065176;300000 -45478;31931923;168068077;300000 -45479;31929022;168070978;300000 -45480;31926121;168073879;300000 -45481;31923221;168076779;300000 -45482;31920320;168079680;300000 -45483;31917420;168082580;300000 -45484;31914519;168085481;300000 -45485;31911619;168088381;300000 -45486;31908719;168091281;300000 -45487;31905819;168094181;300000 -45488;31902919;168097081;300000 -45489;31900020;168099980;300000 -45490;31897120;168102880;300000 -45491;31894221;168105779;300000 -45492;31891322;168108678;300000 -45493;31888422;168111578;300000 -45494;31885523;168114477;300000 -45495;31882624;168117376;300000 -45496;31879726;168120274;300000 -45497;31876827;168123173;300000 -45498;31873929;168126071;300000 -45499;31871030;168128970;300000 -45500;31868132;168131868;300000 -45501;31865234;168134766;300000 -45502;31862336;168137664;300000 -45503;31859438;168140562;300000 -45504;31856540;168143460;300000 -45505;31853642;168146358;300000 -45506;31850745;168149255;300000 -45507;31847848;168152152;300000 -45508;31844950;168155050;300000 -45509;31842053;168157947;300000 -45510;31839156;168160844;300000 -45511;31836259;168163741;300000 -45512;31833363;168166637;300000 -45513;31830466;168169534;300000 -45514;31827570;168172430;300000 -45515;31824673;168175327;300000 -45516;31821777;168178223;300000 -45517;31818881;168181119;300000 -45518;31815985;168184015;300000 -45519;31813089;168186911;300000 -45520;31810193;168189807;300000 -45521;31807298;168192702;300000 -45522;31804402;168195598;300000 -45523;31801507;168198493;300000 -45524;31798612;168201388;300000 -45525;31795717;168204283;300000 -45526;31792822;168207178;300000 -45527;31789927;168210073;300000 -45528;31787032;168212968;300000 -45529;31784138;168215862;300000 -45530;31781243;168218757;300000 -45531;31778349;168221651;300000 -45532;31775455;168224545;300000 -45533;31772561;168227439;300000 -45534;31769667;168230333;300000 -45535;31766773;168233227;300000 -45536;31763879;168236121;300000 -45537;31760986;168239014;300000 -45538;31758092;168241908;300000 -45539;31755199;168244801;300000 -45540;31752306;168247694;300000 -45541;31749413;168250587;300000 -45542;31746520;168253480;300000 -45543;31743627;168256373;300000 -45544;31740734;168259266;300000 -45545;31737842;168262158;300000 -45546;31734949;168265051;300000 -45547;31732057;168267943;300000 -45548;31729165;168270835;300000 -45549;31726273;168273727;300000 -45550;31723381;168276619;300000 -45551;31720489;168279511;300000 -45552;31717597;168282403;300000 -45553;31714706;168285294;300000 -45554;31711815;168288185;300000 -45555;31708923;168291077;300000 -45556;31706032;168293968;300000 -45557;31703141;168296859;300000 -45558;31700250;168299750;300000 -45559;31697359;168302641;300000 -45560;31694469;168305531;300000 -45561;31691578;168308422;300000 -45562;31688688;168311312;300000 -45563;31685798;168314202;300000 -45564;31682908;168317092;300000 -45565;31680018;168319982;300000 -45566;31677128;168322872;300000 -45567;31674238;168325762;300000 -45568;31671348;168328652;300000 -45569;31668459;168331541;300000 -45570;31665569;168334431;300000 -45571;31662680;168337320;300000 -45572;31659791;168340209;300000 -45573;31656902;168343098;300000 -45574;31654013;168345987;300000 -45575;31651125;168348875;300000 -45576;31648236;168351764;300000 -45577;31645347;168354653;300000 -45578;31642459;168357541;300000 -45579;31639571;168360429;300000 -45580;31636683;168363317;300000 -45581;31633795;168366205;300000 -45582;31630907;168369093;300000 -45583;31628019;168371981;300000 -45584;31625132;168374868;300000 -45585;31622244;168377756;300000 -45586;31619357;168380643;300000 -45587;31616470;168383530;300000 -45588;31613583;168386417;300000 -45589;31610696;168389304;300000 -45590;31607809;168392191;300000 -45591;31604922;168395078;300000 -45592;31602035;168397965;300000 -45593;31599149;168400851;300000 -45594;31596263;168403737;300000 -45595;31593376;168406624;300000 -45596;31590490;168409510;300000 -45597;31587604;168412396;300000 -45598;31584719;168415281;300000 -45599;31581833;168418167;300000 -45600;31578947;168421053;300000 -45601;31576062;168423938;300000 -45602;31573177;168426823;300000 -45603;31570291;168429709;300000 -45604;31567406;168432594;300000 -45605;31564521;168435479;300000 -45606;31561637;168438363;300000 -45607;31558752;168441248;300000 -45608;31555867;168444133;300000 -45609;31552983;168447017;300000 -45610;31550099;168449901;300000 -45611;31547214;168452786;300000 -45612;31544330;168455670;300000 -45613;31541447;168458553;300000 -45614;31538563;168461437;300000 -45615;31535679;168464321;300000 -45616;31532796;168467204;300000 -45617;31529912;168470088;300000 -45618;31527029;168472971;300000 -45619;31524146;168475854;300000 -45620;31521263;168478737;300000 -45621;31518380;168481620;300000 -45622;31515497;168484503;300000 -45623;31512614;168487386;300000 -45624;31509732;168490268;300000 -45625;31506849;168493151;300000 -45626;31503967;168496033;300000 -45627;31501085;168498915;300000 -45628;31498203;168501797;300000 -45629;31495321;168504679;300000 -45630;31492439;168507561;300000 -45631;31489558;168510442;300000 -45632;31486676;168513324;300000 -45633;31483795;168516205;300000 -45634;31480913;168519087;300000 -45635;31478032;168521968;300000 -45636;31475151;168524849;300000 -45637;31472270;168527730;300000 -45638;31469390;168530610;300000 -45639;31466509;168533491;300000 -45640;31463628;168536372;300000 -45641;31460748;168539252;300000 -45642;31457868;168542132;300000 -45643;31454988;168545012;300000 -45644;31452108;168547892;300000 -45645;31449228;168550772;300000 -45646;31446348;168553652;300000 -45647;31443468;168556532;300000 -45648;31440589;168559411;300000 -45649;31437709;168562291;300000 -45650;31434830;168565170;300000 -45651;31431951;168568049;300000 -45652;31429072;168570928;300000 -45653;31426193;168573807;300000 -45654;31423314;168576686;300000 -45655;31420436;168579564;300000 -45656;31417557;168582443;300000 -45657;31414679;168585321;300000 -45658;31411801;168588199;300000 -45659;31408923;168591077;300000 -45660;31406045;168593955;300000 -45661;31403167;168596833;300000 -45662;31400289;168599711;300000 -45663;31397411;168602589;300000 -45664;31394534;168605466;300000 -45665;31391657;168608343;300000 -45666;31388779;168611221;300000 -45667;31385902;168614098;300000 -45668;31383025;168616975;300000 -45669;31380148;168619852;300000 -45670;31377272;168622728;300000 -45671;31374395;168625605;300000 -45672;31371519;168628481;300000 -45673;31368642;168631358;300000 -45674;31365766;168634234;300000 -45675;31362890;168637110;300000 -45676;31360014;168639986;300000 -45677;31357138;168642862;300000 -45678;31354262;168645738;300000 -45679;31351387;168648613;300000 -45680;31348511;168651489;300000 -45681;31345636;168654364;300000 -45682;31342761;168657239;300000 -45683;31339886;168660114;300000 -45684;31337011;168662989;300000 -45685;31334136;168665864;300000 -45686;31331261;168668739;300000 -45687;31328387;168671613;300000 -45688;31325512;168674488;300000 -45689;31322638;168677362;300000 -45690;31319764;168680236;300000 -45691;31316890;168683110;300000 -45692;31314016;168685984;300000 -45693;31311142;168688858;300000 -45694;31308268;168691732;300000 -45695;31305394;168694606;300000 -45696;31302521;168697479;300000 -45697;31299648;168700352;300000 -45698;31296774;168703226;300000 -45699;31293901;168706099;300000 -45700;31291028;168708972;300000 -45701;31288156;168711844;300000 -45702;31285283;168714717;300000 -45703;31282410;168717590;300000 -45704;31279538;168720462;300000 -45705;31276666;168723334;300000 -45706;31273793;168726207;300000 -45707;31270921;168729079;300000 -45708;31268049;168731951;300000 -45709;31265178;168734822;300000 -45710;31262306;168737694;300000 -45711;31259434;168740566;300000 -45712;31256563;168743437;300000 -45713;31253692;168746308;300000 -45714;31250820;168749180;300000 -45715;31247949;168752051;300000 -45716;31245078;168754922;300000 -45717;31242207;168757793;300000 -45718;31239337;168760663;300000 -45719;31236466;168763534;300000 -45720;31233596;168766404;300000 -45721;31230725;168769275;300000 -45722;31227855;168772145;300000 -45723;31224985;168775015;300000 -45724;31222115;168777885;300000 -45725;31219245;168780755;300000 -45726;31216376;168783624;300000 -45727;31213506;168786494;300000 -45728;31210637;168789363;300000 -45729;31207767;168792233;300000 -45730;31204898;168795102;300000 -45731;31202029;168797971;300000 -45732;31199160;168800840;300000 -45733;31196292;168803708;300000 -45734;31193423;168806577;300000 -45735;31190554;168809446;300000 -45736;31187686;168812314;300000 -45737;31184818;168815182;300000 -45738;31181949;168818051;300000 -45739;31179081;168820919;300000 -45740;31176213;168823787;300000 -45741;31173346;168826654;300000 -45742;31170478;168829522;300000 -45743;31167610;168832390;300000 -45744;31164743;168835257;300000 -45745;31161876;168838124;300000 -45746;31159008;168840992;300000 -45747;31156141;168843859;300000 -45748;31153274;168846726;300000 -45749;31150408;168849592;300000 -45750;31147541;168852459;300000 -45751;31144674;168855326;300000 -45752;31141808;168858192;300000 -45753;31138942;168861058;300000 -45754;31136076;168863924;300000 -45755;31133209;168866791;300000 -45756;31130344;168869656;300000 -45757;31127478;168872522;300000 -45758;31124612;168875388;300000 -45759;31121747;168878253;300000 -45760;31118881;168881119;300000 -45761;31116016;168883984;300000 -45762;31113151;168886849;300000 -45763;31110286;168889714;300000 -45764;31107421;168892579;300000 -45765;31104556;168895444;300000 -45766;31101691;168898309;300000 -45767;31098827;168901173;300000 -45768;31095962;168904038;300000 -45769;31093098;168906902;300000 -45770;31090234;168909766;300000 -45771;31087370;168912630;300000 -45772;31084506;168915494;300000 -45773;31081642;168918358;300000 -45774;31078778;168921222;300000 -45775;31075915;168924085;300000 -45776;31073051;168926949;300000 -45777;31070188;168929812;300000 -45778;31067325;168932675;300000 -45779;31064462;168935538;300000 -45780;31061599;168938401;300000 -45781;31058736;168941264;300000 -45782;31055873;168944127;300000 -45783;31053011;168946989;300000 -45784;31050149;168949851;300000 -45785;31047286;168952714;300000 -45786;31044424;168955576;300000 -45787;31041562;168958438;300000 -45788;31038700;168961300;300000 -45789;31035838;168964162;300000 -45790;31032977;168967023;300000 -45791;31030115;168969885;300000 -45792;31027254;168972746;300000 -45793;31024392;168975608;300000 -45794;31021531;168978469;300000 -45795;31018670;168981330;300000 -45796;31015809;168984191;300000 -45797;31012948;168987052;300000 -45798;31010088;168989912;300000 -45799;31007227;168992773;300000 -45800;31004367;168995633;300000 -45801;31001507;168998493;300000 -45802;30998646;169001354;300000 -45803;30995786;169004214;300000 -45804;30992926;169007074;300000 -45805;30990067;169009933;300000 -45806;30987207;169012793;300000 -45807;30984347;169015653;300000 -45808;30981488;169018512;300000 -45809;30978629;169021371;300000 -45810;30975769;169024231;300000 -45811;30972910;169027090;300000 -45812;30970052;169029948;300000 -45813;30967193;169032807;300000 -45814;30964334;169035666;300000 -45815;30961475;169038525;300000 -45816;30958617;169041383;300000 -45817;30955759;169044241;300000 -45818;30952901;169047099;300000 -45819;30950043;169049957;300000 -45820;30947185;169052815;300000 -45821;30944327;169055673;300000 -45822;30941469;169058531;300000 -45823;30938612;169061388;300000 -45824;30935754;169064246;300000 -45825;30932897;169067103;300000 -45826;30930040;169069960;300000 -45827;30927183;169072817;300000 -45828;30924326;169075674;300000 -45829;30921469;169078531;300000 -45830;30918612;169081388;300000 -45831;30915756;169084244;300000 -45832;30912899;169087101;300000 -45833;30910043;169089957;300000 -45834;30907187;169092813;300000 -45835;30904331;169095669;300000 -45836;30901475;169098525;300000 -45837;30898619;169101381;300000 -45838;30895763;169104237;300000 -45839;30892908;169107092;300000 -45840;30890052;169109948;300000 -45841;30887197;169112803;300000 -45842;30884342;169115658;300000 -45843;30881487;169118513;300000 -45844;30878632;169121368;300000 -45845;30875777;169124223;300000 -45846;30872922;169127078;300000 -45847;30870068;169129932;300000 -45848;30867213;169132787;300000 -45849;30864359;169135641;300000 -45850;30861505;169138495;300000 -45851;30858651;169141349;300000 -45852;30855797;169144203;300000 -45853;30852943;169147057;300000 -45854;30850089;169149911;300000 -45855;30847236;169152764;300000 -45856;30844382;169155618;300000 -45857;30841529;169158471;300000 -45858;30838676;169161324;300000 -45859;30835823;169164177;300000 -45860;30832970;169167030;300000 -45861;30830117;169169883;300000 -45862;30827264;169172736;300000 -45863;30824412;169175588;300000 -45864;30821559;169178441;300000 -45865;30818707;169181293;300000 -45866;30815855;169184145;300000 -45867;30813003;169186997;300000 -45868;30810151;169189849;300000 -45869;30807299;169192701;300000 -45870;30804447;169195553;300000 -45871;30801596;169198404;300000 -45872;30798744;169201256;300000 -45873;30795893;169204107;300000 -45874;30793042;169206958;300000 -45875;30790191;169209809;300000 -45876;30787340;169212660;300000 -45877;30784489;169215511;300000 -45878;30781638;169218362;300000 -45879;30778788;169221212;300000 -45880;30775937;169224063;300000 -45881;30773087;169226913;300000 -45882;30770237;169229763;300000 -45883;30767387;169232613;300000 -45884;30764537;169235463;300000 -45885;30761687;169238313;300000 -45886;30758837;169241163;300000 -45887;30755988;169244012;300000 -45888;30753138;169246862;300000 -45889;30750289;169249711;300000 -45890;30747440;169252560;300000 -45891;30744590;169255410;300000 -45892;30741741;169258259;300000 -45893;30738893;169261107;300000 -45894;30736044;169263956;300000 -45895;30733195;169266805;300000 -45896;30730347;169269653;300000 -45897;30727499;169272501;300000 -45898;30724650;169275350;300000 -45899;30721802;169278198;300000 -45900;30718954;169281046;300000 -45901;30716106;169283894;300000 -45902;30713259;169286741;300000 -45903;30710411;169289589;300000 -45904;30707564;169292436;300000 -45905;30704716;169295284;300000 -45906;30701869;169298131;300000 -45907;30699022;169300978;300000 -45908;30696175;169303825;300000 -45909;30693328;169306672;300000 -45910;30690481;169309519;300000 -45911;30687635;169312365;300000 -45912;30684788;169315212;300000 -45913;30681942;169318058;300000 -45914;30679096;169320904;300000 -45915;30676250;169323750;300000 -45916;30673404;169326596;300000 -45917;30670558;169329442;300000 -45918;30667712;169332288;300000 -45919;30664866;169335134;300000 -45920;30662021;169337979;300000 -45921;30659176;169340824;300000 -45922;30656330;169343670;300000 -45923;30653485;169346515;300000 -45924;30650640;169349360;300000 -45925;30647795;169352205;300000 -45926;30644951;169355049;300000 -45927;30642106;169357894;300000 -45928;30639261;169360739;300000 -45929;30636417;169363583;300000 -45930;30633573;169366427;300000 -45931;30630729;169369271;300000 -45932;30627885;169372115;300000 -45933;30625041;169374959;300000 -45934;30622197;169377803;300000 -45935;30619353;169380647;300000 -45936;30616510;169383490;300000 -45937;30613667;169386333;300000 -45938;30610823;169389177;300000 -45939;30607980;169392020;300000 -45940;30605137;169394863;300000 -45941;30602294;169397706;300000 -45942;30599451;169400549;300000 -45943;30596609;169403391;300000 -45944;30593766;169406234;300000 -45945;30590924;169409076;300000 -45946;30588082;169411918;300000 -45947;30585240;169414760;300000 -45948;30582397;169417603;300000 -45949;30579556;169420444;300000 -45950;30576714;169423286;300000 -45951;30573872;169426128;300000 -45952;30571031;169428969;300000 -45953;30568189;169431811;300000 -45954;30565348;169434652;300000 -45955;30562507;169437493;300000 -45956;30559666;169440334;300000 -45957;30556825;169443175;300000 -45958;30553984;169446016;300000 -45959;30551143;169448857;300000 -45960;30548303;169451697;300000 -45961;30545462;169454538;300000 -45962;30542622;169457378;300000 -45963;30539782;169460218;300000 -45964;30536942;169463058;300000 -45965;30534102;169465898;300000 -45966;30531262;169468738;300000 -45967;30528423;169471577;300000 -45968;30525583;169474417;300000 -45969;30522744;169477256;300000 -45970;30519904;169480096;300000 -45971;30517065;169482935;300000 -45972;30514226;169485774;300000 -45973;30511387;169488613;300000 -45974;30508548;169491452;300000 -45975;30505710;169494290;300000 -45976;30502871;169497129;300000 -45977;30500033;169499967;300000 -45978;30497194;169502806;300000 -45979;30494356;169505644;300000 -45980;30491518;169508482;300000 -45981;30488680;169511320;300000 -45982;30485842;169514158;300000 -45983;30483005;169516995;300000 -45984;30480167;169519833;300000 -45985;30477330;169522670;300000 -45986;30474492;169525508;300000 -45987;30471655;169528345;300000 -45988;30468818;169531182;300000 -45989;30465981;169534019;300000 -45990;30463144;169536856;300000 -45991;30460307;169539693;300000 -45992;30457471;169542529;300000 -45993;30454634;169545366;300000 -45994;30451798;169548202;300000 -45995;30448962;169551038;300000 -45996;30446126;169553874;300000 -45997;30443290;169556710;300000 -45998;30440454;169559546;300000 -45999;30437618;169562382;300000 -46000;30434783;169565217;300000 -46001;30431947;169568053;300000 -46002;30429112;169570888;300000 -46003;30426277;169573723;300000 -46004;30423441;169576559;300000 -46005;30420606;169579394;300000 -46006;30417772;169582228;300000 -46007;30414937;169585063;300000 -46008;30412102;169587898;300000 -46009;30409268;169590732;300000 -46010;30406433;169593567;300000 -46011;30403599;169596401;300000 -46012;30400765;169599235;300000 -46013;30397931;169602069;300000 -46014;30395097;169604903;300000 -46015;30392263;169607737;300000 -46016;30389430;169610570;300000 -46017;30386596;169613404;300000 -46018;30383763;169616237;300000 -46019;30380930;169619070;300000 -46020;30378096;169621904;300000 -46021;30375263;169624737;300000 -46022;30372431;169627569;300000 -46023;30369598;169630402;300000 -46024;30366765;169633235;300000 -46025;30363933;169636067;300000 -46026;30361100;169638900;300000 -46027;30358268;169641732;300000 -46028;30355436;169644564;300000 -46029;30352604;169647396;300000 -46030;30349772;169650228;300000 -46031;30346940;169653060;300000 -46032;30344108;169655892;300000 -46033;30341277;169658723;300000 -46034;30338445;169661555;300000 -46035;30335614;169664386;300000 -46036;30332783;169667217;300000 -46037;30329952;169670048;300000 -46038;30327121;169672879;300000 -46039;30324290;169675710;300000 -46040;30321460;169678540;300000 -46041;30318629;169681371;300000 -46042;30315799;169684201;300000 -46043;30312968;169687032;300000 -46044;30310138;169689862;300000 -46045;30307308;169692692;300000 -46046;30304478;169695522;300000 -46047;30301648;169698352;300000 -46048;30298819;169701181;300000 -46049;30295989;169704011;300000 -46050;30293160;169706840;300000 -46051;30290330;169709670;300000 -46052;30287501;169712499;300000 -46053;30284672;169715328;300000 -46054;30281843;169718157;300000 -46055;30279014;169720986;300000 -46056;30276186;169723814;300000 -46057;30273357;169726643;300000 -46058;30270528;169729472;300000 -46059;30267700;169732300;300000 -46060;30264872;169735128;300000 -46061;30262044;169737956;300000 -46062;30259216;169740784;300000 -46063;30256388;169743612;300000 -46064;30253560;169746440;300000 -46065;30250733;169749267;300000 -46066;30247905;169752095;300000 -46067;30245078;169754922;300000 -46068;30242251;169757749;300000 -46069;30239423;169760577;300000 -46070;30236596;169763404;300000 -46071;30233770;169766230;300000 -46072;30230943;169769057;300000 -46073;30228116;169771884;300000 -46074;30225290;169774710;300000 -46075;30222463;169777537;300000 -46076;30219637;169780363;300000 -46077;30216811;169783189;300000 -46078;30213985;169786015;300000 -46079;30211159;169788841;300000 -46080;30208333;169791667;300000 -46081;30205508;169794492;300000 -46082;30202682;169797318;300000 -46083;30199857;169800143;300000 -46084;30197032;169802968;300000 -46085;30194206;169805794;300000 -46086;30191381;169808619;300000 -46087;30188556;169811444;300000 -46088;30185732;169814268;300000 -46089;30182907;169817093;300000 -46090;30180082;169819918;300000 -46091;30177258;169822742;300000 -46092;30174434;169825566;300000 -46093;30171610;169828390;300000 -46094;30168786;169831214;300000 -46095;30165962;169834038;300000 -46096;30163138;169836862;300000 -46097;30160314;169839686;300000 -46098;30157491;169842509;300000 -46099;30154667;169845333;300000 -46100;30151844;169848156;300000 -46101;30149021;169850979;300000 -46102;30146198;169853802;300000 -46103;30143375;169856625;300000 -46104;30140552;169859448;300000 -46105;30137729;169862271;300000 -46106;30134907;169865093;300000 -46107;30132084;169867916;300000 -46108;30129262;169870738;300000 -46109;30126440;169873560;300000 -46110;30123617;169876383;300000 -46111;30120795;169879205;300000 -46112;30117974;169882026;300000 -46113;30115152;169884848;300000 -46114;30112330;169887670;300000 -46115;30109509;169890491;300000 -46116;30106687;169893313;300000 -46117;30103866;169896134;300000 -46118;30101045;169898955;300000 -46119;30098224;169901776;300000 -46120;30095403;169904597;300000 -46121;30092583;169907417;300000 -46122;30089762;169910238;300000 -46123;30086941;169913059;300000 -46124;30084121;169915879;300000 -46125;30081301;169918699;300000 -46126;30078481;169921519;300000 -46127;30075661;169924339;300000 -46128;30072841;169927159;300000 -46129;30070021;169929979;300000 -46130;30067201;169932799;300000 -46131;30064382;169935618;300000 -46132;30061562;169938438;300000 -46133;30058743;169941257;300000 -46134;30055924;169944076;300000 -46135;30053105;169946895;300000 -46136;30050286;169949714;300000 -46137;30047467;169952533;300000 -46138;30044649;169955351;300000 -46139;30041830;169958170;300000 -46140;30039012;169960988;300000 -46141;30036193;169963807;300000 -46142;30033375;169966625;300000 -46143;30030557;169969443;300000 -46144;30027739;169972261;300000 -46145;30024921;169975079;300000 -46146;30022104;169977896;300000 -46147;30019286;169980714;300000 -46148;30016469;169983531;300000 -46149;30013651;169986349;300000 -46150;30010834;169989166;300000 -46151;3000008017;169991983;300000 -46152;3000005200;169994800;300000 -46153;3000002383;169997617;300000 -46154;29999567;170000433;300000 -46155;29996750;170003250;300000 -46156;29993934;170006066;300000 -46157;29991117;170008883;300000 -46158;29988301;170011699;300000 -46159;29985485;170014515;300000 -46160;29982669;170017331;300000 -46161;29979853;170020147;300000 -46162;29977037;170022963;300000 -46163;29974222;170025778;300000 -46164;29971406;170028594;300000 -46165;29968591;170031409;300000 -46166;29965776;170034224;300000 -46167;29962961;170037039;300000 -46168;29960146;170039854;300000 -46169;29957331;170042669;300000 -46170;29954516;170045484;300000 -46171;29951701;170048299;300000 -46172;29948887;170051113;300000 -46173;29946072;170053928;300000 -46174;29943258;170056742;300000 -46175;29940444;170059556;300000 -46176;29937630;170062370;300000 -46177;29934816;170065184;300000 -46178;29932002;170067998;300000 -46179;29929189;170070811;300000 -46180;29926375;170073625;300000 -46181;29923562;170076438;300000 -46182;29920748;170079252;300000 -46183;29917935;170082065;300000 -46184;29915122;170084878;300000 -46185;29912309;170087691;300000 -46186;29909496;170090504;300000 -46187;29906684;170093316;300000 -46188;29903871;170096129;300000 -46189;29901059;170098941;300000 -46190;29898246;170101754;300000 -46191;29895434;170104566;300000 -46192;29892622;170107378;300000 -46193;29889810;170110190;300000 -46194;29886998;170113002;300000 -46195;29884187;170115813;300000 -46196;29881375;170118625;300000 -46197;29878564;170121436;300000 -46198;29875752;170124248;300000 -46199;29872941;170127059;300000 -46200;29870130;170129870;300000 -46201;29867319;170132681;300000 -46202;29864508;170135492;300000 -46203;29861697;170138303;300000 -46204;29858887;170141113;300000 -46205;29856076;170143924;300000 -46206;29853266;170146734;300000 -46207;29850456;170149544;300000 -46208;29847645;170152355;300000 -46209;29844835;170155165;300000 -46210;29842026;170157974;300000 -46211;29839216;170160784;300000 -46212;29836406;170163594;300000 -46213;29833597;170166403;300000 -46214;29830787;170169213;300000 -46215;29827978;170172022;300000 -46216;29825169;170174831;300000 -46217;29822360;170177640;300000 -46218;29819551;170180449;300000 -46219;29816742;170183258;300000 -46220;29813933;170186067;300000 -46221;29811125;170188875;300000 -46222;29808316;170191684;300000 -46223;29805508;170194492;300000 -46224;29802700;170197300;300000 -46225;29799892;170200108;300000 -46226;29797084;170202916;300000 -46227;29794276;170205724;300000 -46228;29791468;170208532;300000 -46229;29788661;170211339;300000 -46230;29785853;170214147;300000 -46231;29783046;170216954;300000 -46232;29780239;170219761;300000 -46233;29777432;170222568;300000 -46234;29774625;170225375;300000 -46235;29771818;170228182;300000 -46236;29769011;170230989;300000 -46237;29766205;170233795;300000 -46238;29763398;170236602;300000 -46239;29760592;170239408;300000 -46240;29757785;170242215;300000 -46241;29754979;170245021;300000 -46242;29752173;170247827;300000 -46243;29749367;170250633;300000 -46244;29746562;170253438;300000 -46245;29743756;170256244;300000 -46246;29740951;170259049;300000 -46247;29738145;170261855;300000 -46248;29735340;170264660;300000 -46249;29732535;170267465;300000 -46250;29729730;170270270;300000 -46251;29726925;170273075;300000 -46252;29724120;170275880;300000 -46253;29721315;170278685;300000 -46254;29718511;170281489;300000 -46255;29715706;170284294;300000 -46256;29712902;170287098;300000 -46257;29710098;170289902;300000 -46258;29707294;170292706;300000 -46259;29704490;170295510;300000 -46260;29701686;170298314;300000 -46261;29698882;170301118;300000 -46262;29696079;170303921;300000 -46263;29693275;170306725;300000 -46264;29690472;170309528;300000 -46265;29687669;170312331;300000 -46266;29684866;170315134;300000 -46267;29682063;170317937;300000 -46268;29679260;170320740;300000 -46269;29676457;170323543;300000 -46270;29673655;170326345;300000 -46271;29670852;170329148;300000 -46272;29668050;170331950;300000 -46273;29665248;170334752;300000 -46274;29662445;170337555;300000 -46275;29659643;170340357;300000 -46276;29656842;170343158;300000 -46277;29654040;170345960;300000 -46278;29651238;170348762;300000 -46279;29648437;170351563;300000 -46280;29645635;170354365;300000 -46281;29642834;170357166;300000 -46282;29640033;170359967;300000 -46283;29637232;170362768;300000 -46284;29634431;170365569;300000 -46285;29631630;170368370;300000 -46286;29628829;170371171;300000 -46287;29626029;170373971;300000 -46288;29623228;170376772;300000 -46289;29620428;170379572;300000 -46290;29617628;170382372;300000 -46291;29614828;170385172;300000 -46292;29612028;170387972;300000 -46293;29609228;170390772;300000 -46294;29606428;170393572;300000 -46295;29603629;170396371;300000 -46296;29600829;170399171;300000 -46297;29598030;170401970;300000 -46298;29595231;170404769;300000 -46299;29592432;170407568;300000 -46300;29589633;170410367;300000 -46301;29586834;170413166;300000 -46302;29584035;170415965;300000 -46303;29581237;170418763;300000 -46304;29578438;170421562;300000 -46305;29575640;170424360;300000 -46306;29572842;170427158;300000 -46307;29570043;170429957;300000 -46308;29567245;170432755;300000 -46309;29564448;170435552;300000 -46310;29561650;170438350;300000 -46311;29558852;170441148;300000 -46312;29556055;170443945;300000 -46313;29553257;170446743;300000 -46314;29550460;170449540;300000 -46315;29547663;170452337;300000 -46316;29544866;170455134;300000 -46317;29542069;170457931;300000 -46318;29539272;170460728;300000 -46319;29536475;170463525;300000 -46320;29533679;170466321;300000 -46321;29530882;170469118;300000 -46322;29528086;170471914;300000 -46323;29525290;170474710;300000 -46324;29522494;170477506;300000 -46325;29519698;170480302;300000 -46326;29516902;170483098;300000 -46327;29514106;170485894;300000 -46328;29511311;170488689;300000 -46329;29508515;170491485;300000 -46330;29505720;170494280;300000 -46331;29502925;170497075;300000 -46332;29500130;170499870;300000 -46333;29497335;170502665;300000 -46334;29494540;170505460;300000 -46335;29491745;170508255;300000 -46336;29488950;170511050;300000 -46337;29486156;170513844;300000 -46338;29483361;170516639;300000 -46339;29480567;170519433;300000 -46340;29477773;170522227;300000 -46341;29474979;170525021;300000 -46342;29472185;170527815;300000 -46343;29469391;170530609;300000 -46344;29466598;170533402;300000 -46345;29463804;170536196;300000 -46346;29461011;170538989;300000 -46347;29458217;170541783;300000 -46348;29455424;170544576;300000 -46349;29452631;170547369;300000 -46350;29449838;170550162;300000 -46351;29447045;170552955;300000 -46352;29444253;170555747;300000 -46353;29441460;170558540;300000 -46354;29438668;170561332;300000 -46355;29435875;170564125;300000 -46356;29433083;170566917;300000 -46357;29430291;170569709;300000 -46358;29427499;170572501;300000 -46359;29424707;170575293;300000 -46360;29421915;170578085;300000 -46361;29419124;170580876;300000 -46362;29416332;170583668;300000 -46363;29413541;170586459;300000 -46364;29410750;170589250;300000 -46365;29407959;170592041;300000 -46366;29405168;170594832;300000 -46367;29402377;170597623;300000 -46368;29399586;170600414;300000 -46369;29396795;170603205;300000 -46370;29394005;170605995;300000 -46371;29391214;170608786;300000 -46372;29388424;170611576;300000 -46373;29385634;170614366;300000 -46374;29382844;170617156;300000 -46375;29380054;170619946;300000 -46376;29377264;170622736;300000 -46377;29374474;170625526;300000 -46378;29371685;170628315;300000 -46379;29368895;170631105;300000 -46380;29366106;170633894;300000 -46381;29363317;170636683;300000 -46382;29360528;170639472;300000 -46383;29357739;170642261;300000 -46384;29354950;170645050;300000 -46385;29352161;170647839;300000 -46386;29349373;170650627;300000 -46387;29346584;170653416;300000 -46388;29343796;170656204;300000 -46389;29341008;170658992;300000 -46390;29338219;170661781;300000 -46391;29335431;170664569;300000 -46392;29332644;170667356;300000 -46393;29329856;170670144;300000 -46394;29327068;170672932;300000 -46395;29324281;170675719;300000 -46396;29321493;170678507;300000 -46397;29318706;170681294;300000 -46398;29315919;170684081;300000 -46399;29313132;170686868;300000 -46400;29310345;170689655;300000 -46401;29307558;170692442;300000 -46402;29304771;170695229;300000 -46403;29301985;170698015;300000 -46404;29299198;170700802;300000 -46405;29296412;170703588;300000 -46406;29293626;170706374;300000 -46407;29290840;170709160;300000 -46408;29288054;170711946;300000 -46409;29285268;170714732;300000 -46410;29282482;170717518;300000 -46411;29279697;170720303;300000 -46412;29276911;170723089;300000 -46413;29274126;170725874;300000 -46414;29271341;170728659;300000 -46415;29268555;170731445;300000 -46416;29265770;170734230;300000 -46417;29262986;170737014;300000 -46418;29260201;170739799;300000 -46419;29257416;170742584;300000 -46420;29254632;170745368;300000 -46421;29251847;170748153;300000 -46422;29249063;170750937;300000 -46423;29246279;170753721;300000 -46424;29243495;170756505;300000 -46425;29240711;170759289;300000 -46426;29237927;170762073;300000 -46427;29235143;170764857;300000 -46428;29232360;170767640;300000 -46429;29229576;170770424;300000 -46430;29226793;170773207;300000 -46431;29224010;170775990;300000 -46432;29221227;170778773;300000 -46433;29218444;170781556;300000 -46434;29215661;170784339;300000 -46435;29212878;170787122;300000 -46436;29210096;170789904;300000 -46437;29207313;170792687;300000 -46438;29204531;170795469;300000 -46439;29201749;170798251;300000 -46440;29198966;170801034;300000 -46441;29196184;170803816;300000 -46442;29193403;170806597;300000 -46443;29190621;170809379;300000 -46444;29187839;170812161;300000 -46445;29185058;170814942;300000 -46446;29182276;170817724;300000 -46447;29179495;170820505;300000 -46448;29176714;170823286;300000 -46449;29173933;170826067;300000 -46450;29171152;170828848;300000 -46451;29168371;170831629;300000 -46452;29165590;170834410;300000 -46453;29162810;170837190;300000 -46454;29160029;170839971;300000 -46455;29157249;170842751;300000 -46456;29154469;170845531;300000 -46457;29151689;170848311;300000 -46458;29148909;170851091;300000 -46459;29146129;170853871;300000 -46460;29143349;170856651;300000 -46461;29140570;170859430;300000 -46462;29137790;170862210;300000 -46463;29135011;170864989;300000 -46464;29132231;170867769;300000 -46465;29129452;170870548;300000 -46466;29126673;170873327;300000 -46467;29123894;170876106;300000 -46468;29121116;170878884;300000 -46469;29118337;170881663;300000 -46470;29115558;170884442;300000 -46471;29112780;170887220;300000 -46472;29110002;170889998;300000 -46473;29107224;170892776;300000 -46474;29104445;170895555;300000 -46475;29101668;170898332;300000 -46476;29098890;170901110;300000 -46477;29096112;170903888;300000 -46478;29093334;170906666;300000 -46479;29090557;170909443;300000 -46480;29087780;170912220;300000 -46481;29085002;170914998;300000 -46482;29082225;170917775;300000 -46483;29079448;170920552;300000 -46484;29076672;170923328;300000 -46485;29073895;170926105;300000 -46486;29071118;170928882;300000 -46487;29068342;170931658;300000 -46488;29065565;170934435;300000 -46489;29062789;170937211;300000 -46490;29060013;170939987;300000 -46491;29057237;170942763;300000 -46492;29054461;170945539;300000 -46493;29051685;170948315;300000 -46494;29048910;170951090;300000 -46495;29046134;170953866;300000 -46496;29043359;170956641;300000 -46497;29040583;170959417;300000 -46498;29037808;170962192;300000 -46499;29035033;170964967;300000 -46500;29032258;170967742;300000 -46501;29029483;170970517;300000 -46502;29026709;170973291;300000 -46503;29023934;170976066;300000 -46504;29021159;170978841;300000 -46505;29018385;170981615;300000 -46506;29015611;170984389;300000 -46507;29012837;170987163;300000 -46508;29010063;170989937;300000 -46509;29007289;170992711;300000 -46510;29004515;170995485;300000 -46511;29001742;170998258;300000 -46512;28998968;171001032;300000 -46513;28996195;171003805;300000 -46514;28993421;171006579;300000 -46515;28990648;171009352;300000 -46516;28987875;171012125;300000 -46517;28985102;171014898;300000 -46518;28982329;171017671;300000 -46519;28979557;171020443;300000 -46520;28976784;171023216;300000 -46521;28974012;171025988;300000 -46522;28971239;171028761;300000 -46523;28968467;171031533;300000 -46524;28965695;171034305;300000 -46525;28962923;171037077;300000 -46526;28960151;171039849;300000 -46527;28957380;171042620;300000 -46528;28954608;171045392;300000 -46529;28951836;171048164;300000 -46530;28949065;171050935;300000 -46531;28946294;171053706;300000 -46532;28943523;171056477;300000 -46533;28940752;171059248;300000 -46534;28937981;171062019;300000 -46535;28935210;171064790;300000 -46536;28932439;171067561;300000 -46537;28929669;171070331;300000 -46538;28926898;171073102;300000 -46539;28924128;171075872;300000 -46540;28921358;171078642;300000 -46541;28918588;171081412;300000 -46542;28915818;171084182;300000 -46543;28913048;171086952;300000 -46544;28910278;171089722;300000 -46545;28907509;171092491;300000 -46546;28904739;171095261;300000 -46547;28901970;171098030;300000 -46548;28899201;171100799;300000 -46549;28896432;171103568;300000 -46550;28893663;171106337;300000 -46551;28890894;171109106;300000 -46552;28888125;171111875;300000 -46553;28885356;171114644;300000 -46554;28882588;171117412;300000 -46555;28879820;171120180;300000 -46556;28877051;171122949;300000 -46557;28874283;171125717;300000 -46558;28871515;171128485;300000 -46559;28868747;171131253;300000 -46560;28865979;171134021;300000 -46561;28863212;171136788;300000 -46562;28860444;171139556;300000 -46563;28857677;171142323;300000 -46564;28854909;171145091;300000 -46565;28852142;171147858;300000 -46566;28849375;171150625;300000 -46567;28846608;171153392;300000 -46568;28843841;171156159;300000 -46569;28841075;171158925;300000 -46570;28838308;171161692;300000 -46571;28835541;171164459;300000 -46572;28832775;171167225;300000 -46573;28830009;171169991;300000 -46574;28827243;171172757;300000 -46575;28824477;171175523;300000 -46576;28821711;171178289;300000 -46577;28818945;171181055;300000 -46578;28816179;171183821;300000 -46579;28813414;171186586;300000 -46580;28810648;171189352;300000 -46581;28807883;171192117;300000 -46582;28805118;171194882;300000 -46583;28802353;171197647;300000 -46584;28799588;171200412;300000 -46585;28796823;171203177;300000 -46586;28794058;171205942;300000 -46587;28791294;171208706;300000 -46588;28788529;171211471;300000 -46589;28785765;171214235;300000 -46590;28783001;171216999;300000 -46591;28780237;171219763;300000 -46592;28777473;171222527;300000 -46593;28774709;171225291;300000 -46594;28771945;171228055;300000 -46595;28769181;171230819;300000 -46596;28766418;171233582;300000 -46597;28763654;171236346;300000 -46598;28760891;171239109;300000 -46599;28758128;171241872;300000 -46600;28755365;171244635;300000 -46601;28752602;171247398;300000 -46602;28749839;171250161;300000 -46603;28747076;171252924;300000 -46604;28744314;171255686;300000 -46605;28741551;171258449;300000 -46606;28738789;171261211;300000 -46607;28736027;171263973;300000 -46608;28733265;171266735;300000 -46609;28730503;171269497;300000 -46610;28727741;171272259;300000 -46611;28724979;171275021;300000 -46612;28722217;171277783;300000 -46613;28719456;171280544;300000 -46614;28716695;171283305;300000 -46615;28713933;171286067;300000 -46616;28711172;171288828;300000 -46617;28708411;171291589;300000 -46618;28705650;171294350;300000 -46619;28702889;171297111;300000 -46620;28700129;171299871;300000 -46621;28697368;171302632;300000 -46622;28694608;171305392;300000 -46623;28691847;171308153;300000 -46624;28689087;171310913;300000 -46625;28686327;171313673;300000 -46626;28683567;171316433;300000 -46627;28680807;171319193;300000 -46628;28678048;171321952;300000 -46629;28675288;171324712;300000 -46630;28672528;171327472;300000 -46631;28669769;171330231;300000 -46632;28667010;171332990;300000 -46633;28664251;171335749;300000 -46634;28661492;171338508;300000 -46635;28658733;171341267;300000 -46636;28655974;171344026;300000 -46637;28653215;171346785;300000 -46638;28650457;171349543;300000 -46639;28647698;171352302;300000 -46640;28644940;171355060;300000 -46641;28642182;171357818;300000 -46642;28639424;171360576;300000 -46643;28636666;171363334;300000 -46644;28633908;171366092;300000 -46645;28631150;171368850;300000 -46646;28628393;171371607;300000 -46647;28625635;171374365;300000 -46648;28622878;171377122;300000 -46649;28620120;171379880;300000 -46650;28617363;171382637;300000 -46651;28614606;171385394;300000 -46652;28611849;171388151;300000 -46653;28609093;171390907;300000 -46654;28606336;171393664;300000 -46655;28603579;171396421;300000 -46656;28600823;171399177;300000 -46657;28598067;171401933;300000 -46658;28595311;171404689;300000 -46659;28592554;171407446;300000 -46660;28589799;171410201;300000 -46661;28587043;171412957;300000 -46662;28584287;171415713;300000 -46663;28581531;171418469;300000 -46664;28578776;171421224;300000 -46665;28576021;171423979;300000 -46666;28573265;171426735;300000 -46667;28570510;171429490;300000 -46668;28567755;171432245;300000 -46669;28565000;171435000;300000 -46670;28562246;171437754;300000 -46671;28559491;171440509;300000 -46672;28556736;171443264;300000 -46673;28553982;171446018;300000 -46674;28551228;171448772;300000 -46675;28548473;171451527;300000 -46676;28545719;171454281;300000 -46677;28542965;171457035;300000 -46678;28540212;171459788;300000 -46679;28537458;171462542;300000 -46680;28534704;171465296;300000 -46681;28531951;171468049;300000 -46682;28529198;171470802;300000 -46683;28526444;171473556;300000 -46684;28523691;171476309;300000 -46685;28520938;171479062;300000 -46686;28518185;171481815;300000 -46687;28515433;171484567;300000 -46688;28512680;171487320;300000 -46689;28509927;171490073;300000 -46690;28507175;171492825;300000 -46691;28504423;171495577;300000 -46692;28501671;171498329;300000 -46693;28498918;171501082;300000 -46694;28496167;171503833;300000 -46695;28493415;171506585;300000 -46696;28490663;171509337;300000 -46697;28487911;171512089;300000 -46698;28485160;171514840;300000 -46699;28482409;171517591;300000 -46700;28479657;171520343;300000 -46701;28476906;171523094;300000 -46702;28474155;171525845;300000 -46703;28471404;171528596;300000 -46704;28468654;171531346;300000 -46705;28465903;171534097;300000 -46706;28463152;171536848;300000 -46707;28460402;171539598;300000 -46708;28457652;171542348;300000 -46709;28454902;171545098;300000 -46710;28452152;171547848;300000 -46711;28449402;171550598;300000 -46712;28446652;171553348;300000 -46713;28443902;171556098;300000 -46714;28441153;171558847;300000 -46715;28438403;171561597;300000 -46716;28435654;171564346;300000 -46717;28432905;171567095;300000 -46718;28430155;171569845;300000 -46719;28427406;171572594;300000 -46720;28424658;171575342;300000 -46721;28421909;171578091;300000 -46722;28419160;171580840;300000 -46723;28416412;171583588;300000 -46724;28413663;171586337;300000 -46725;28410915;171589085;300000 -46726;28408167;171591833;300000 -46727;28405419;171594581;300000 -46728;28402671;171597329;300000 -46729;28399923;171600077;300000 -46730;28397175;171602825;300000 -46731;28394428;171605572;300000 -46732;28391680;171608320;300000 -46733;28388933;171611067;300000 -46734;28386186;171613814;300000 -46735;28383439;171616561;300000 -46736;28380692;171619308;300000 -46737;28377945;171622055;300000 -46738;28375198;171624802;300000 -46739;28372451;171627549;300000 -46740;28369705;171630295;300000 -46741;28366958;171633042;300000 -46742;28364212;171635788;300000 -46743;28361466;171638534;300000 -46744;28358720;171641280;300000 -46745;28355974;171644026;300000 -46746;28353228;171646772;300000 -46747;28350482;171649518;300000 -46748;28347737;171652263;300000 -46749;28344991;171655009;300000 -46750;28342246;171657754;300000 -46751;28339501;171660499;300000 -46752;28336756;171663244;300000 -46753;28334011;171665989;300000 -46754;28331266;171668734;300000 -46755;28328521;171671479;300000 -46756;28325776;171674224;300000 -46757;28323032;171676968;300000 -46758;28320287;171679713;300000 -46759;28317543;171682457;300000 -46760;28314799;171685201;300000 -46761;28312055;171687945;300000 -46762;28309311;171690689;300000 -46763;28306567;171693433;300000 -46764;28303823;171696177;300000 -46765;28301080;171698920;300000 -46766;28298336;171701664;300000 -46767;28295593;171704407;300000 -46768;28292850;171707150;300000 -46769;28290107;171709893;300000 -46770;28287364;171712636;300000 -46771;28284621;171715379;300000 -46772;28281878;171718122;300000 -46773;28279135;171720865;300000 -46774;28276393;171723607;300000 -46775;28273650;171726350;300000 -46776;28270908;171729092;300000 -46777;28268166;171731834;300000 -46778;28265424;171734576;300000 -46779;28262682;171737318;300000 -46780;28259940;171740060;300000 -46781;28257198;171742802;300000 -46782;28254457;171745543;300000 -46783;28251715;171748285;300000 -46784;28248974;171751026;300000 -46785;28246233;171753767;300000 -46786;28243492;171756508;300000 -46787;28240751;171759249;300000 -46788;28238010;171761990;300000 -46789;28235269;171764731;300000 -46790;28232528;171767472;300000 -46791;28229788;171770212;300000 -46792;28227047;171772953;300000 -46793;28224307;171775693;300000 -46794;28221567;171778433;300000 -46795;28218827;171781173;300000 -46796;28216087;171783913;300000 -46797;28213347;171786653;300000 -46798;28210607;171789393;300000 -46799;28207868;171792132;300000 -46800;28205128;171794872;300000 -46801;28202389;171797611;300000 -46802;28199650;171800350;300000 -46803;28196910;171803090;300000 -46804;28194171;171805829;300000 -46805;28191433;171808567;300000 -46806;28188694;171811306;300000 -46807;28185955;171814045;300000 -46808;28183217;171816783;300000 -46809;28180478;171819522;300000 -46810;28177740;171822260;300000 -46811;28175002;171824998;300000 -46812;28172264;171827736;300000 -46813;28169526;171830474;300000 -46814;28166788;171833212;300000 -46815;28164050;171835950;300000 -46816;28161312;171838688;300000 -46817;28158575;171841425;300000 -46818;28155837;171844163;300000 -46819;28153100;171846900;300000 -46820;28150363;171849637;300000 -46821;28147626;171852374;300000 -46822;28144889;171855111;300000 -46823;28142152;171857848;300000 -46824;28139416;171860584;300000 -46825;28136679;171863321;300000 -46826;28133943;171866057;300000 -46827;28131206;171868794;300000 -46828;28128470;171871530;300000 -46829;28125734;171874266;300000 -46830;28122998;171877002;300000 -46831;28120262;171879738;300000 -46832;28117526;171882474;300000 -46833;28114791;171885209;300000 -46834;28112055;171887945;300000 -46835;28109320;171890680;300000 -46836;28106585;171893415;300000 -46837;28103850;171896150;300000 -46838;28101114;171898886;300000 -46839;28098380;171901620;300000 -46840;28095645;171904355;300000 -46841;28092910;171907090;300000 -46842;28090175;171909825;300000 -46843;28087441;171912559;300000 -46844;28084707;171915293;300000 -46845;28081972;171918028;300000 -46846;28079238;171920762;300000 -46847;28076504;171923496;300000 -46848;28073770;171926230;300000 -46849;28071037;171928963;300000 -46850;28068303;171931697;300000 -46851;28065570;171934430;300000 -46852;28062836;171937164;300000 -46853;28060103;171939897;300000 -46854;28057370;171942630;300000 -46855;28054637;171945363;300000 -46856;28051904;171948096;300000 -46857;28049171;171950829;300000 -46858;28046438;171953562;300000 -46859;28043706;171956294;300000 -46860;28040973;171959027;300000 -46861;28038241;171961759;300000 -46862;28035509;171964491;300000 -46863;28032776;171967224;300000 -46864;28030044;171969956;300000 -46865;28027312;171972688;300000 -46866;28024581;171975419;300000 -46867;28021849;171978151;300000 -46868;28019118;171980882;300000 -46869;28016386;171983614;300000 -46870;28013655;171986345;300000 -46871;28010924;171989076;300000 -46872;28008193;171991807;300000 -46873;28005462;171994538;300000 -46874;28002731;171997269;300000 -46875;28000000;172000000;300000 -46876;27997269;172002731;300000 -46877;27994539;172005461;300000 -46878;27991809;172008191;300000 -46879;27989078;172010922;300000 -46880;27986348;172013652;300000 -46881;27983618;172016382;300000 -46882;27980888;172019112;300000 -46883;27978158;172021842;300000 -46884;27975429;172024571;300000 -46885;27972699;172027301;300000 -46886;27969970;172030030;300000 -46887;27967240;172032760;300000 -46888;27964511;172035489;300000 -46889;27961782;172038218;300000 -46890;27959053;172040947;300000 -46891;27956324;172043676;300000 -46892;27953595;172046405;300000 -46893;27950867;172049133;300000 -46894;27948138;172051862;300000 -46895;27945410;172054590;300000 -46896;27942682;172057318;300000 -46897;27939954;172060046;300000 -46898;27937225;172062775;300000 -46899;27934498;172065502;300000 -46900;27931770;172068230;300000 -46901;27929042;172070958;300000 -46902;27926314;172073686;300000 -46903;27923587;172076413;300000 -46904;27920860;172079140;300000 -46905;27918132;172081868;300000 -46906;27915405;172084595;300000 -46907;27912678;172087322;300000 -46908;27909951;172090049;300000 -46909;27907225;172092775;300000 -46910;27904498;172095502;300000 -46911;27901771;172098229;300000 -46912;27899045;172100955;300000 -46913;27896319;172103681;300000 -46914;27893593;172106407;300000 -46915;27890866;172109134;300000 -46916;27888141;172111859;300000 -46917;27885415;172114585;300000 -46918;27882689;172117311;300000 -46919;27879963;172120037;300000 -46920;27877238;172122762;300000 -46921;27874512;172125488;300000 -46922;27871787;172128213;300000 -46923;27869062;172130938;300000 -46924;27866337;172133663;300000 -46925;27863612;172136388;300000 -46926;27860887;172139113;300000 -46927;27858163;172141837;300000 -46928;27855438;172144562;300000 -46929;27852714;172147286;300000 -46930;27849989;172150011;300000 -46931;27847265;172152735;300000 -46932;27844541;172155459;300000 -46933;27841817;172158183;300000 -46934;27839093;172160907;300000 -46935;27836369;172163631;300000 -46936;27833646;172166354;300000 -46937;27830922;172169078;300000 -46938;27828199;172171801;300000 -46939;27825476;172174524;300000 -46940;27822752;172177248;300000 -46941;27820029;172179971;300000 -46942;27817306;172182694;300000 -46943;27814584;172185416;300000 -46944;27811861;172188139;300000 -46945;27809138;172190862;300000 -46946;27806416;172193584;300000 -46947;27803694;172196306;300000 -46948;27800971;172199029;300000 -46949;27798249;172201751;300000 -46950;27795527;172204473;300000 -46951;27792805;172207195;300000 -46952;27790083;172209917;300000 -46953;27787362;172212638;300000 -46954;27784640;172215360;300000 -46955;27781919;172218081;300000 -46956;27779198;172220802;300000 -46957;27776476;172223524;300000 -46958;27773755;172226245;300000 -46959;27771034;172228966;300000 -46960;27768313;172231687;300000 -46961;27765593;172234407;300000 -46962;27762872;172237128;300000 -46963;27760152;172239848;300000 -46964;27757431;172242569;300000 -46965;27754711;172245289;300000 -46966;27751991;172248009;300000 -46967;27749271;172250729;300000 -46968;27746551;172253449;300000 -46969;27743831;172256169;300000 -46970;27741111;172258889;300000 -46971;27738392;172261608;300000 -46972;27735672;172264328;300000 -46973;27732953;172267047;300000 -46974;27730234;172269766;300000 -46975;27727515;172272485;300000 -46976;27724796;172275204;300000 -46977;27722077;172277923;300000 -46978;27719358;172280642;300000 -46979;27716639;172283361;300000 -46980;27713921;172286079;300000 -46981;27711202;172288798;300000 -46982;27708484;172291516;300000 -46983;27705766;172294234;300000 -46984;27703048;172296952;300000 -46985;27700330;172299670;300000 -46986;27697612;172302388;300000 -46987;27694894;172305106;300000 -46988;27692177;172307823;300000 -46989;27689459;172310541;300000 -46990;27686742;172313258;300000 -46991;27684025;172315975;300000 -46992;27681307;172318693;300000 -46993;27678590;172321410;300000 -46994;27675874;172324126;300000 -46995;27673157;172326843;300000 -46996;27670440;172329560;300000 -46997;27667723;172332277;300000 -46998;27665007;172334993;300000 -46999;27662291;172337709;300000 -47000;27659574;172340426;300000 -47001;27656858;172343142;300000 -47002;27654142;172345858;300000 -47003;27651427;172348573;300000 -47004;27648711;172351289;300000 -47005;27645995;172354005;300000 -47006;27643280;172356720;300000 -47007;27640564;172359436;300000 -47008;27637849;172362151;300000 -47009;27635134;172364866;300000 -47010;27632419;172367581;300000 -47011;27629704;172370296;300000 -47012;27626989;172373011;300000 -47013;27624274;172375726;300000 -47014;27621560;172378440;300000 -47015;27618845;172381155;300000 -47016;27616131;172383869;300000 -47017;27613416;172386584;300000 -47018;27610702;172389298;300000 -47019;27607988;172392012;300000 -47020;27605274;172394726;300000 -47021;27602561;172397439;300000 -47022;27599847;172400153;300000 -47023;27597133;172402867;300000 -47024;27594420;172405580;300000 -47025;27591707;172408293;300000 -47026;27588993;172411007;300000 -47027;27586280;172413720;300000 -47028;27583567;172416433;300000 -47029;27580854;172419146;300000 -47030;27578142;172421858;300000 -47031;27575429;172424571;300000 -47032;27572716;172427284;300000 -47033;27570004;172429996;300000 -47034;27567292;172432708;300000 -47035;27564580;172435420;300000 -47036;27561868;172438132;300000 -47037;27559156;172440844;300000 -47038;27556444;172443556;300000 -47039;27553732;172446268;300000 -47040;27551020;172448980;300000 -47041;27548309;172451691;300000 -47042;27545598;172454402;300000 -47043;27542886;172457114;300000 -47044;27540175;172459825;300000 -47045;27537464;172462536;300000 -47046;27534753;172465247;300000 -47047;27532042;172467958;300000 -47048;27529332;172470668;300000 -47049;27526621;172473379;300000 -47050;27523911;172476089;300000 -47051;27521200;172478800;300000 -47052;27518490;172481510;300000 -47053;27515780;172484220;300000 -47054;27513070;172486930;300000 -47055;27510360;172489640;300000 -47056;27507650;172492350;300000 -47057;27504941;172495059;300000 -47058;27502231;172497769;300000 -47059;27499522;172500478;300000 -47060;27496813;172503187;300000 -47061;27494103;172505897;300000 -47062;27491394;172508606;300000 -47063;27488685;172511315;300000 -47064;27485977;172514023;300000 -47065;27483268;172516732;300000 -47066;27480559;172519441;300000 -47067;27477851;172522149;300000 -47068;27475142;172524858;300000 -47069;27472434;172527566;300000 -47070;27469726;172530274;300000 -47071;27467018;172532982;300000 -47072;27464310;172535690;300000 -47073;27461602;172538398;300000 -47074;27458895;172541105;300000 -47075;27456187;172543813;300000 -47076;27453479;172546521;300000 -47077;27450772;172549228;300000 -47078;27448065;172551935;300000 -47079;27445358;172554642;300000 -47080;27442651;172557349;300000 -47081;27439944;172560056;300000 -47082;27437237;172562763;300000 -47083;27434531;172565469;300000 -47084;27431824;172568176;300000 -47085;27429118;172570882;300000 -47086;27426411;172573589;300000 -47087;27423705;172576295;300000 -47088;27420999;172579001;300000 -47089;27418293;172581707;300000 -47090;27415587;172584413;300000 -47091;27412881;172587119;300000 -47092;27410176;172589824;300000 -47093;27407470;172592530;300000 -47094;27404765;172595235;300000 -47095;27402060;172597940;300000 -47096;27399355;172600645;300000 -47097;27396649;172603351;300000 -47098;27393945;172606055;300000 -47099;27391240;172608760;300000 -47100;27388535;172611465;300000 -47101;27385830;172614170;300000 -47102;27383126;172616874;300000 -47103;27380422;172619578;300000 -47104;27377717;172622283;300000 -47105;27375013;172624987;300000 -47106;27372309;172627691;300000 -47107;27369605;172630395;300000 -47108;27366902;172633098;300000 -47109;27364198;172635802;300000 -47110;27361494;172638506;300000 -47111;27358791;172641209;300000 -47112;27356088;172643912;300000 -47113;27353384;172646616;300000 -47114;27350681;172649319;300000 -47115;27347978;172652022;300000 -47116;27345275;172654725;300000 -47117;27342573;172657427;300000 -47118;27339870;172660130;300000 -47119;27337168;172662832;300000 -47120;27334465;172665535;300000 -47121;27331763;172668237;300000 -47122;27329061;172670939;300000 -47123;27326359;172673641;300000 -47124;27323657;172676343;300000 -47125;27320955;172679045;300000 -47126;27318253;172681747;300000 -47127;27315552;172684448;300000 -47128;27312850;172687150;300000 -47129;27310149;172689851;300000 -47130;27307447;172692553;300000 -47131;27304746;172695254;300000 -47132;27302045;172697955;300000 -47133;27299344;172700656;300000 -47134;27296644;172703356;300000 -47135;27293943;172706057;300000 -47136;27291242;172708758;300000 -47137;27288542;172711458;300000 -47138;27285842;172714158;300000 -47139;27283141;172716859;300000 -47140;27280441;172719559;300000 -47141;27277741;172722259;300000 -47142;27275041;172724959;300000 -47143;27272342;172727658;300000 -47144;27269642;172730358;300000 -47145;27266942;172733058;300000 -47146;27264243;172735757;300000 -47147;27261544;172738456;300000 -47148;27258844;172741156;300000 -47149;27256145;172743855;300000 -47150;27253446;172746554;300000 -47151;27250748;172749252;300000 -47152;27248049;172751951;300000 -47153;27245350;172754650;300000 -47154;27242652;172757348;300000 -47155;27239953;172760047;300000 -47156;27237255;172762745;300000 -47157;27234557;172765443;300000 -47158;27231859;172768141;300000 -47159;27229161;172770839;300000 -47160;27226463;172773537;300000 -47161;27223765;172776235;300000 -47162;27221068;172778932;300000 -47163;27218370;172781630;300000 -47164;27215673;172784327;300000 -47165;27212976;172787024;300000 -47166;27210279;172789721;300000 -47167;27207582;172792418;300000 -47168;27204885;172795115;300000 -47169;27202188;172797812;300000 -47170;27199491;172800509;300000 -47171;27196795;172803205;300000 -47172;27194098;172805902;300000 -47173;27191402;172808598;300000 -47174;27188706;172811294;300000 -47175;27186010;172813990;300000 -47176;27183314;172816686;300000 -47177;27180618;172819382;300000 -47178;27177922;172822078;300000 -47179;27175226;172824774;300000 -47180;27172531;172827469;300000 -47181;27169835;172830165;300000 -47182;27167140;172832860;300000 -47183;27164445;172835555;300000 -47184;27161750;172838250;300000 -47185;27159055;172840945;300000 -47186;27156360;172843640;300000 -47187;27153665;172846335;300000 -47188;27150971;172849029;300000 -47189;27148276;172851724;300000 -47190;27145582;172854418;300000 -47191;27142887;172857113;300000 -47192;27140193;172859807;300000 -47193;27137499;172862501;300000 -47194;27134805;172865195;300000 -47195;27132111;172867889;300000 -47196;27129418;172870582;300000 -47197;27126724;172873276;300000 -47198;27124031;172875969;300000 -47199;27121337;172878663;300000 -47200;27118644;172881356;300000 -47201;27115951;172884049;300000 -47202;27113258;172886742;300000 -47203;27110565;172889435;300000 -47204;27107872;172892128;300000 -47205;27105180;172894820;300000 -47206;27102487;172897513;300000 -47207;27099795;172900205;300000 -47208;27097102;172902898;300000 -47209;27094410;172905590;300000 -47210;27091718;172908282;300000 -47211;27089026;172910974;300000 -47212;27086334;172913666;300000 -47213;27083642;172916358;300000 -47214;27080951;172919049;300000 -47215;27078259;172921741;300000 -47216;27075568;172924432;300000 -47217;27072876;172927124;300000 -47218;27070185;172929815;300000 -47219;27067494;172932506;300000 -47220;27064803;172935197;300000 -47221;27062112;172937888;300000 -47222;27059421;172940579;300000 -47223;27056731;172943269;300000 -47224;27054040;172945960;300000 -47225;27051350;172948650;300000 -47226;27048660;172951340;300000 -47227;27045969;172954031;300000 -47228;27043279;172956721;300000 -47229;27040589;172959411;300000 -47230;27037900;172962100;300000 -47231;27035210;172964790;300000 -47232;27032520;172967480;300000 -47233;27029831;172970169;300000 -47234;27027141;172972859;300000 -47235;27024452;172975548;300000 -47236;27021763;172978237;300000 -47237;27019074;172980926;300000 -47238;27016385;172983615;300000 -47239;27013696;172986304;300000 -47240;27011008;172988992;300000 -47241;27008319;172991681;300000 -47242;27005631;172994369;300000 -47243;27002942;172997058;300000 -47244;27000254;172999746;300000 -47245;26997566;173002434;300000 -47246;26994878;173005122;300000 -47247;26992190;173007810;300000 -47248;26989502;173010498;300000 -47249;26986815;173013185;300000 -47250;26984127;173015873;300000 -47251;26981440;173018560;300000 -47252;26978752;173021248;300000 -47253;26976065;173023935;300000 -47254;26973378;173026622;300000 -47255;26970691;173029309;300000 -47256;26968004;173031996;300000 -47257;26965317;173034683;300000 -47258;26962631;173037369;300000 -47259;26959944;173040056;300000 -47260;26957258;173042742;300000 -47261;26954571;173045429;300000 -47262;26951885;173048115;300000 -47263;26949199;173050801;300000 -47264;26946513;173053487;300000 -47265;26943827;173056173;300000 -47266;26941142;173058858;300000 -47267;26938456;173061544;300000 -47268;26935771;173064229;300000 -47269;26933085;173066915;300000 -47270;26930400;173069600;300000 -47271;26927715;173072285;300000 -47272;26925030;173074970;300000 -47273;26922345;173077655;300000 -47274;26919660;173080340;300000 -47275;26916975;173083025;300000 -47276;26914291;173085709;300000 -47277;26911606;173088394;300000 -47278;26908922;173091078;300000 -47279;26906237;173093763;300000 -47280;26903553;173096447;300000 -47281;26900869;173099131;300000 -47282;26898185;173101815;300000 -47283;26895502;173104498;300000 -47284;26892818;173107182;300000 -47285;26890134;173109866;300000 -47286;26887451;173112549;300000 -47287;26884767;173115233;300000 -47288;26882084;173117916;300000 -47289;26879401;173120599;300000 -47290;26876718;173123282;300000 -47291;26874035;173125965;300000 -47292;26871352;173128648;300000 -47293;26868670;173131330;300000 -47294;26865987;173134013;300000 -47295;26863305;173136695;300000 -47296;26860622;173139378;300000 -47297;26857940;173142060;300000 -47298;26855258;173144742;300000 -47299;26852576;173147424;300000 -47300;26849894;173150106;300000 -47301;26847213;173152787;300000 -47302;26844531;173155469;300000 -47303;26841849;173158151;300000 -47304;26839168;173160832;300000 -47305;26836487;173163513;300000 -47306;26833805;173166195;300000 -47307;26831124;173168876;300000 -47308;26828443;173171557;300000 -47309;26825763;173174237;300000 -47310;26823082;173176918;300000 -47311;26820401;173179599;300000 -47312;26817721;173182279;300000 -47313;26815040;173184960;300000 -47314;26812360;173187640;300000 -47315;26809680;173190320;300000 -47316;26807000;173193000;300000 -47317;26804320;173195680;300000 -47318;26801640;173198360;300000 -47319;26798960;173201040;300000 -47320;26796281;173203719;300000 -47321;26793601;173206399;300000 -47322;26790922;173209078;300000 -47323;26788243;173211757;300000 -47324;26785563;173214437;300000 -47325;26782884;173217116;300000 -47326;26780205;173219795;300000 -47327;26777527;173222473;300000 -47328;26774848;173225152;300000 -47329;26772169;173227831;300000 -47330;26769491;173230509;300000 -47331;26766812;173233188;300000 -47332;26764134;173235866;300000 -47333;26761456;173238544;300000 -47334;26758778;173241222;300000 -47335;26756100;173243900;300000 -47336;26753422;173246578;300000 -47337;26750745;173249255;300000 -47338;26748067;173251933;300000 -47339;26745390;173254610;300000 -47340;26742712;173257288;300000 -47341;26740035;173259965;300000 -47342;26737358;173262642;300000 -47343;26734681;173265319;300000 -47344;26732004;173267996;300000 -47345;26729327;173270673;300000 -47346;26726651;173273349;300000 -47347;26723974;173276026;300000 -47348;26721298;173278702;300000 -47349;26718621;173281379;300000 -47350;26715945;173284055;300000 -47351;26713269;173286731;300000 -47352;26710593;173289407;300000 -47353;26707917;173292083;300000 -47354;26705241;173294759;300000 -47355;26702566;173297434;300000 -47356;26699890;173300110;300000 -47357;26697215;173302785;300000 -47358;26694539;173305461;300000 -47359;26691864;173308136;300000 -47360;26689189;173310811;300000 -47361;26686514;173313486;300000 -47362;26683839;173316161;300000 -47363;26681165;173318835;300000 -47364;26678490;173321510;300000 -47365;26675815;173324185;300000 -47366;26673141;173326859;300000 -47367;26670467;173329533;300000 -47368;26667793;173332207;300000 -47369;26665119;173334881;300000 -47370;26662445;173337555;300000 -47371;26659771;173340229;300000 -47372;26657097;173342903;300000 -47373;26654423;173345577;300000 -47374;26651750;173348250;300000 -47375;26649077;173350923;300000 -47376;26646403;173353597;300000 -47377;26643730;173356270;300000 -47378;26641057;173358943;300000 -47379;26638384;173361616;300000 -47380;26635711;173364289;300000 -47381;26633039;173366961;300000 -47382;26630366;173369634;300000 -47383;26627693;173372307;300000 -47384;26625021;173374979;300000 -47385;26622349;173377651;300000 -47386;26619677;173380323;300000 -47387;26617005;173382995;300000 -47388;26614333;173385667;300000 -47389;26611661;173388339;300000 -47390;26608989;173391011;300000 -47391;26606318;173393682;300000 -47392;26603646;173396354;300000 -47393;26600975;173399025;300000 -47394;26598304;173401696;300000 -47395;26595632;173404368;300000 -47396;26592961;173407039;300000 -47397;26590291;173409709;300000 -47398;26587620;173412380;300000 -47399;26584949;173415051;300000 -47400;26582278;173417722;300000 -47401;26579608;173420392;300000 -47402;26576938;173423062;300000 -47403;26574267;173425733;300000 -47404;26571597;173428403;300000 -47405;26568927;173431073;300000 -47406;26566257;173433743;300000 -47407;26563588;173436412;300000 -47408;26560918;173439082;300000 -47409;26558248;173441752;300000 -47410;26555579;173444421;300000 -47411;26552910;173447090;300000 -47412;26550240;173449760;300000 -47413;26547571;173452429;300000 -47414;26544902;173455098;300000 -47415;26542233;173457767;300000 -47416;26539565;173460435;300000 -47417;26536896;173463104;300000 -47418;26534228;173465772;300000 -47419;26531559;173468441;300000 -47420;26528891;173471109;300000 -47421;26526223;173473777;300000 -47422;26523554;173476446;300000 -47423;26520886;173479114;300000 -47424;26518219;173481781;300000 -47425;26515551;173484449;300000 -47426;26512883;173487117;300000 -47427;26510216;173489784;300000 -47428;26507548;173492452;300000 -47429;26504881;173495119;300000 -47430;26502214;173497786;300000 -47431;26499547;173500453;300000 -47432;26496880;173503120;300000 -47433;26494213;173505787;300000 -47434;26491546;173508454;300000 -47435;26488880;173511120;300000 -47436;26486213;173513787;300000 -47437;26483547;173516453;300000 -47438;26480880;173519120;300000 -47439;26478214;173521786;300000 -47440;26475548;173524452;300000 -47441;26472882;173527118;300000 -47442;26470216;173529784;300000 -47443;26467551;173532449;300000 -47444;26464885;173535115;300000 -47445;26462219;173537781;300000 -47446;26459554;173540446;300000 -47447;26456889;173543111;300000 -47448;26454224;173545776;300000 -47449;26451559;173548441;300000 -47450;26448894;173551106;300000 -47451;26446229;173553771;300000 -47452;26443564;173556436;300000 -47453;26440899;173559101;300000 -47454;26438235;173561765;300000 -47455;26435571;173564429;300000 -47456;26432906;173567094;300000 -47457;26430242;173569758;300000 -47458;26427578;173572422;300000 -47459;26424914;173575086;300000 -47460;26422250;173577750;300000 -47461;26419587;173580413;300000 -47462;26416923;173583077;300000 -47463;26414260;173585740;300000 -47464;26411596;173588404;300000 -47465;26408933;173591067;300000 -47466;26406270;173593730;300000 -47467;26403607;173596393;300000 -47468;26400944;173599056;300000 -47469;26398281;173601719;300000 -47470;26395618;173604382;300000 -47471;26392956;173607044;300000 -47472;26390293;173609707;300000 -47473;26387631;173612369;300000 -47474;26384969;173615031;300000 -47475;26382306;173617694;300000 -47476;26379644;173620356;300000 -47477;26376983;173623017;300000 -47478;26374321;173625679;300000 -47479;26371659;173628341;300000 -47480;26368997;173631003;300000 -47481;26366336;173633664;300000 -47482;26363675;173636325;300000 -47483;26361013;173638987;300000 -47484;26358352;173641648;300000 -47485;26355691;173644309;300000 -47486;26353030;173646970;300000 -47487;26350370;173649630;300000 -47488;26347709;173652291;300000 -47489;26345048;173654952;300000 -47490;26342388;173657612;300000 -47491;26339728;173660272;300000 -47492;26337067;173662933;300000 -47493;26334407;173665593;300000 -47494;26331747;173668253;300000 -47495;26329087;173670913;300000 -47496;26326427;173673573;300000 -47497;26323768;173676232;300000 -47498;26321108;173678892;300000 -47499;26318449;173681551;300000 -47500;26315789;173684211;300000 -47501;26313130;173686870;300000 -47502;26310471;173689529;300000 -47503;26307812;173692188;300000 -47504;26305153;173694847;300000 -47505;26302494;173697506;300000 -47506;26299836;173700164;300000 -47507;26297177;173702823;300000 -47508;26294519;173705481;300000 -47509;26291860;173708140;300000 -47510;26289202;173710798;300000 -47511;26286544;173713456;300000 -47512;26283886;173716114;300000 -47513;26281228;173718772;300000 -47514;26278571;173721429;300000 -47515;26275913;173724087;300000 -47516;26273255;173726745;300000 -47517;26270598;173729402;300000 -47518;26267941;173732059;300000 -47519;26265283;173734717;300000 -47520;26262626;173737374;300000 -47521;26259969;173740031;300000 -47522;26257312;173742688;300000 -47523;26254656;173745344;300000 -47524;26251999;173748001;300000 -47525;26249342;173750658;300000 -47526;26246686;173753314;300000 -47527;26244030;173755970;300000 -47528;26241374;173758626;300000 -47529;26238717;173761283;300000 -47530;26236061;173763939;300000 -47531;26233406;173766594;300000 -47532;26230750;173769250;300000 -47533;26228094;173771906;300000 -47534;26225439;173774561;300000 -47535;26222783;173777217;300000 -47536;26220128;173779872;300000 -47537;26217473;173782527;300000 -47538;26214818;173785182;300000 -47539;26212163;173787837;300000 -47540;26209508;173790492;300000 -47541;26206853;173793147;300000 -47542;26204198;173795802;300000 -47543;26201544;173798456;300000 -47544;26198889;173801111;300000 -47545;26196235;173803765;300000 -47546;26193581;173806419;300000 -47547;26190927;173809073;300000 -47548;26188273;173811727;300000 -47549;26185619;173814381;300000 -47550;26182965;173817035;300000 -47551;26180312;173819688;300000 -47552;26177658;173822342;300000 -47553;26175005;173824995;300000 -47554;26172351;173827649;300000 -47555;26169698;173830302;300000 -47556;26167045;173832955;300000 -47557;26164392;173835608;300000 -47558;26161739;173838261;300000 -47559;26159087;173840913;300000 -47560;26156434;173843566;300000 -47561;26153781;173846219;300000 -47562;26151129;173848871;300000 -47563;26148477;173851523;300000 -47564;26145825;173854175;300000 -47565;26143173;173856827;300000 -47566;26140521;173859479;300000 -47567;26137869;173862131;300000 -47568;26135217;173864783;300000 -47569;26132565;173867435;300000 -47570;26129914;173870086;300000 -47571;26127262;173872738;300000 -47572;26124611;173875389;300000 -47573;26121960;173878040;300000 -47574;26119309;173880691;300000 -47575;26116658;173883342;300000 -47576;26114007;173885993;300000 -47577;26111356;173888644;300000 -47578;26108706;173891294;300000 -47579;26106055;173893945;300000 -47580;26103405;173896595;300000 -47581;26100755;173899245;300000 -47582;26098104;173901896;300000 -47583;26095454;173904546;300000 -47584;26092804;173907196;300000 -47585;26090154;173909846;300000 -47586;26087505;173912495;300000 -47587;26084855;173915145;300000 -47588;26082206;173917794;300000 -47589;26079556;173920444;300000 -47590;26076907;173923093;300000 -47591;26074258;173925742;300000 -47592;26071609;173928391;300000 -47593;26068960;173931040;300000 -47594;26066311;173933689;300000 -47595;26063662;173936338;300000 -47596;26061014;173938986;300000 -47597;26058365;173941635;300000 -47598;26055717;173944283;300000 -47599;26053068;173946932;300000 -47600;26050420;173949580;300000 -47601;26047772;173952228;300000 -47602;26045124;173954876;300000 -47603;26042476;173957524;300000 -47604;26039829;173960171;300000 -47605;26037181;173962819;300000 -47606;26034533;173965467;300000 -47607;26031886;173968114;300000 -47608;26029239;173970761;300000 -47609;26026592;173973408;300000 -47610;26023945;173976055;300000 -47611;26021298;173978702;300000 -47612;26018651;173981349;300000 -47613;26016004;173983996;300000 -47614;26013357;173986643;300000 -47615;26010711;173989289;300000 -47616;26008065;173991935;300000 -47617;26005418;173994582;300000 -47618;26002772;173997228;300000 -47619;26000126;173999874;300000 -47620;25997480;174002520;300000 -47621;25994834;174005166;300000 -47622;25992188;174007812;300000 -47623;25989543;174010457;300000 -47624;25986897;174013103;300000 -47625;25984252;174015748;300000 -47626;25981607;174018393;300000 -47627;25978962;174021038;300000 -47628;25976316;174023684;300000 -47629;25973672;174026328;300000 -47630;25971027;174028973;300000 -47631;25968382;174031618;300000 -47632;25965737;174034263;300000 -47633;25963093;174036907;300000 -47634;25960448;174039552;300000 -47635;25957804;174042196;300000 -47636;25955160;174044840;300000 -47637;25952516;174047484;300000 -47638;25949872;174050128;300000 -47639;25947228;174052772;300000 -47640;25944584;174055416;300000 -47641;25941941;174058059;300000 -47642;25939297;174060703;300000 -47643;25936654;174063346;300000 -47644;25934011;174065989;300000 -47645;25931367;174068633;300000 -47646;25928724;174071276;300000 -47647;25926081;174073919;300000 -47648;25923439;174076561;300000 -47649;25920796;174079204;300000 -47650;25918153;174081847;300000 -47651;25915511;174084489;300000 -47652;25912868;174087132;300000 -47653;25910226;174089774;300000 -47654;25907584;174092416;300000 -47655;25904942;174095058;300000 -47656;25902300;174097700;300000 -47657;25899658;174100342;300000 -47658;25897016;174102984;300000 -47659;25894375;174105625;300000 -47660;25891733;174108267;300000 -47661;25889092;174110908;300000 -47662;25886450;174113550;300000 -47663;25883809;174116191;300000 -47664;25881168;174118832;300000 -47665;25878527;174121473;300000 -47666;25875886;174124114;300000 -47667;25873246;174126754;300000 -47668;25870605;174129395;300000 -47669;25867965;174132035;300000 -47670;25865324;174134676;300000 -47671;25862684;174137316;300000 -47672;25860044;174139956;300000 -47673;25857404;174142596;300000 -47674;25854764;174145236;300000 -47675;25852124;174147876;300000 -47676;25849484;174150516;300000 -47677;25846844;174153156;300000 -47678;25844205;174155795;300000 -47679;25841565;174158435;300000 -47680;25838926;174161074;300000 -47681;25836287;174163713;300000 -47682;25833648;174166352;300000 -47683;25831009;174168991;300000 -47684;25828370;174171630;300000 -47685;25825731;174174269;300000 -47686;25823093;174176907;300000 -47687;25820454;174179546;300000 -47688;25817816;174182184;300000 -47689;25815178;174184822;300000 -47690;25812539;174187461;300000 -47691;25809901;174190099;300000 -47692;25807263;174192737;300000 -47693;25804625;174195375;300000 -47694;25801988;174198012;300000 -47695;25799350;174200650;300000 -47696;25796713;174203287;300000 -47697;25794075;174205925;300000 -47698;25791438;174208562;300000 -47699;25788801;174211199;300000 -47700;25786164;174213836;300000 -47701;25783527;174216473;300000 -47702;25780890;174219110;300000 -47703;25778253;174221747;300000 -47704;25775616;174224384;300000 -47705;25772980;174227020;300000 -47706;25770343;174229657;300000 -47707;25767707;174232293;300000 -47708;25765071;174234929;300000 -47709;25762435;174237565;300000 -47710;25759799;174240201;300000 -47711;25757163;174242837;300000 -47712;25754527;174245473;300000 -47713;25751892;174248108;300000 -47714;25749256;174250744;300000 -47715;25746621;174253379;300000 -47716;25743985;174256015;300000 -47717;25741350;174258650;300000 -47718;25738715;174261285;300000 -47719;25736080;174263920;300000 -47720;25733445;174266555;300000 -47721;25730810;174269190;300000 -47722;25728176;174271824;300000 -47723;25725541;174274459;300000 -47724;25722907;174277093;300000 -47725;25720272;174279728;300000 -47726;25717638;174282362;300000 -47727;25715004;174284996;300000 -47728;25712370;174287630;300000 -47729;25709736;174290264;300000 -47730;25707102;174292898;300000 -47731;25704469;174295531;300000 -47732;25701835;174298165;300000 -47733;25699202;174300798;300000 -47734;25696568;174303432;300000 -47735;25693935;174306065;300000 -47736;25691302;174308698;300000 -47737;25688669;174311331;300000 -47738;25686036;174313964;300000 -47739;25683404;174316596;300000 -47740;25680771;174319229;300000 -47741;25678138;174321862;300000 -47742;25675506;174324494;300000 -47743;25672874;174327126;300000 -47744;25670241;174329759;300000 -47745;25667609;174332391;300000 -47746;25664977;174335023;300000 -47747;25662345;174337655;300000 -47748;25659713;174340287;300000 -47749;25657082;174342918;300000 -47750;25654450;174345550;300000 -47751;25651819;174348181;300000 -47752;25649187;174350813;300000 -47753;25646556;174353444;300000 -47754;25643925;174356075;300000 -47755;25641294;174358706;300000 -47756;25638663;174361337;300000 -47757;25636032;174363968;300000 -47758;25633402;174366598;300000 -47759;25630771;174369229;300000 -47760;25628141;174371859;300000 -47761;25625510;174374490;300000 -47762;25622880;174377120;300000 -47763;25620250;174379750;300000 -47764;25617620;174382380;300000 -47765;25614990;174385010;300000 -47766;25612360;174387640;300000 -47767;25609731;174390269;300000 -47768;25607101;174392899;300000 -47769;25604472;174395528;300000 -47770;25601842;174398158;300000 -47771;25599213;174400787;300000 -47772;25596584;174403416;300000 -47773;25593955;174406045;300000 -47774;25591326;174408674;300000 -47775;25588697;174411303;300000 -47776;25586068;174413932;300000 -47777;25583440;174416560;300000 -47778;25580811;174419189;300000 -47779;25578183;174421817;300000 -47780;25575555;174424445;300000 -47781;25572926;174427074;300000 -47782;25570298;174429702;300000 -47783;25567671;174432329;300000 -47784;25565043;174434957;300000 -47785;25562415;174437585;300000 -47786;25559787;174440213;300000 -47787;25557160;174442840;300000 -47788;25554533;174445467;300000 -47789;25551905;174448095;300000 -47790;25549278;174450722;300000 -47791;25546651;174453349;300000 -47792;25544024;174455976;300000 -47793;25541397;174458603;300000 -47794;25538771;174461229;300000 -47795;25536144;174463856;300000 -47796;25533517;174466483;300000 -47797;25530891;174469109;300000 -47798;25528265;174471735;300000 -47799;25525639;174474361;300000 -47800;25523013;174476987;300000 -47801;25520387;174479613;300000 -47802;25517761;174482239;300000 -47803;25515135;174484865;300000 -47804;25512509;174487491;300000 -47805;25509884;174490116;300000 -47806;25507259;174492741;300000 -47807;25504633;174495367;300000 -47808;25502008;174497992;300000 -47809;25499383;174500617;300000 -47810;25496758;174503242;300000 -47811;25494133;174505867;300000 -47812;25491508;174508492;300000 -47813;25488884;174511116;300000 -47814;25486259;174513741;300000 -47815;25483635;174516365;300000 -47816;25481011;174518989;300000 -47817;25478386;174521614;300000 -47818;25475762;174524238;300000 -47819;25473138;174526862;300000 -47820;25470514;174529486;300000 -47821;25467891;174532109;300000 -47822;25465267;174534733;300000 -47823;25462643;174537357;300000 -47824;25460020;174539980;300000 -47825;25457397;174542603;300000 -47826;25454774;174545226;300000 -47827;25452150;174547850;300000 -47828;25449527;174550473;300000 -47829;25446905;174553095;300000 -47830;25444282;174555718;300000 -47831;25441659;174558341;300000 -47832;25439037;174560963;300000 -47833;25436414;174563586;300000 -47834;25433792;174566208;300000 -47835;25431170;174568830;300000 -47836;25428548;174571452;300000 -47837;25425926;174574074;300000 -47838;25423304;174576696;300000 -47839;25420682;174579318;300000 -47840;25418060;174581940;300000 -47841;25415439;174584561;300000 -47842;25412817;174587183;300000 -47843;25410196;174589804;300000 -47844;25407575;174592425;300000 -47845;25404953;174595047;300000 -47846;25402332;174597668;300000 -47847;25399712;174600288;300000 -47848;25397091;174602909;300000 -47849;25394470;174605530;300000 -47850;25391850;174608150;300000 -47851;25389229;174610771;300000 -47852;25386609;174613391;300000 -47853;25383988;174616012;300000 -47854;25381368;174618632;300000 -47855;25378748;174621252;300000 -47856;25376128;174623872;300000 -47857;25373509;174626491;300000 -47858;25370889;174629111;300000 -47859;25368269;174631731;300000 -47860;25365650;174634350;300000 -47861;25363030;174636970;300000 -47862;25360411;174639589;300000 -47863;25357792;174642208;300000 -47864;25355173;174644827;300000 -47865;25352554;174647446;300000 -47866;25349935;174650065;300000 -47867;25347317;174652683;300000 -47868;25344698;174655302;300000 -47869;25342079;174657921;300000 -47870;25339461;174660539;300000 -47871;25336843;174663157;300000 -47872;25334225;174665775;300000 -47873;25331607;174668393;300000 -47874;25328989;174671011;300000 -47875;25326371;174673629;300000 -47876;25323753;174676247;300000 -47877;25321135;174678865;300000 -47878;25318518;174681482;300000 -47879;25315900;174684100;300000 -47880;25313283;174686717;300000 -47881;25310666;174689334;300000 -47882;25308049;174691951;300000 -47883;25305432;174694568;300000 -47884;25302815;174697185;300000 -47885;25300198;174699802;300000 -47886;25297582;174702418;300000 -47887;25294965;174705035;300000 -47888;25292349;174707651;300000 -47889;25289733;174710267;300000 -47890;25287116;174712884;300000 -47891;25284500;174715500;300000 -47892;25281884;174718116;300000 -47893;25279268;174720732;300000 -47894;25276653;174723347;300000 -47895;25274037;174725963;300000 -47896;25271421;174728579;300000 -47897;25268806;174731194;300000 -47898;25266191;174733809;300000 -47899;25263575;174736425;300000 -47900;25260960;174739040;300000 -47901;25258345;174741655;300000 -47902;25255730;174744270;300000 -47903;25253116;174746884;300000 -47904;25250501;174749499;300000 -47905;25247886;174752114;300000 -47906;25245272;174754728;300000 -47907;25242658;174757342;300000 -47908;25240043;174759957;300000 -47909;25237429;174762571;300000 -47910;25234815;174765185;300000 -47911;25232201;174767799;300000 -47912;25229588;174770412;300000 -47913;25226974;174773026;300000 -47914;25224360;174775640;300000 -47915;25221747;174778253;300000 -47916;25219133;174780867;300000 -47917;25216520;174783480;300000 -47918;25213907;174786093;300000 -47919;25211294;174788706;300000 -47920;25208681;174791319;300000 -47921;25206068;174793932;300000 -47922;25203456;174796544;300000 -47923;25200843;174799157;300000 -47924;25198231;174801769;300000 -47925;25195618;174804382;300000 -47926;25193006;174806994;300000 -47927;25190394;174809606;300000 -47928;25187782;174812218;300000 -47929;25185170;174814830;300000 -47930;25182558;174817442;300000 -47931;25179946;174820054;300000 -47932;25177335;174822665;300000 -47933;25174723;174825277;300000 -47934;25172112;174827888;300000 -47935;25169500;174830500;300000 -47936;25166889;174833111;300000 -47937;25164278;174835722;300000 -47938;25161667;174838333;300000 -47939;25159056;174840944;300000 -47940;25156446;174843554;300000 -47941;25153835;174846165;300000 -47942;25151224;174848776;300000 -47943;25148614;174851386;300000 -47944;25146004;174853996;300000 -47945;25143393;174856607;300000 -47946;25140783;174859217;300000 -47947;25138173;174861827;300000 -47948;25135564;174864436;300000 -47949;25132954;174867046;300000 -47950;25130344;174869656;300000 -47951;25127735;174872265;300000 -47952;25125125;174874875;300000 -47953;25122516;174877484;300000 -47954;25119907;174880093;300000 -47955;25117297;174882703;300000 -47956;25114688;174885312;300000 -47957;25112080;174887920;300000 -47958;25109471;174890529;300000 -47959;25106862;174893138;300000 -47960;25104254;174895746;300000 -47961;25101645;174898355;300000 -47962;25099037;174900963;300000 -47963;25096428;174903572;300000 -47964;25093820;174906180;300000 -47965;25091212;174908788;300000 -47966;25088604;174911396;300000 -47967;25085997;174914003;300000 -47968;25083389;174916611;300000 -47969;25080781;174919219;300000 -47970;25078174;174921826;300000 -47971;25075566;174924434;300000 -47972;25072959;174927041;300000 -47973;25070352;174929648;300000 -47974;25067745;174932255;300000 -47975;25065138;174934862;300000 -47976;25062531;174937469;300000 -47977;25059925;174940075;300000 -47978;25057318;174942682;300000 -47979;25054711;174945289;300000 -47980;25052105;174947895;300000 -47981;25049499;174950501;300000 -47982;25046893;174953107;300000 -47983;25044287;174955713;300000 -47984;25041681;174958319;300000 -47985;25039075;174960925;300000 -47986;25036469;174963531;300000 -47987;25033863;174966137;300000 -47988;25031258;174968742;300000 -47989;25028652;174971348;300000 -47990;25026047;174973953;300000 -47991;25023442;174976558;300000 -47992;25020837;174979163;300000 -47993;25018232;174981768;300000 -47994;25015627;174984373;300000 -47995;25013022;174986978;300000 -47996;25010418;174989582;300000 -47997;25007813;174992187;300000 -47998;25005209;174994791;300000 -47999;25002604;174997396;300000 -48000;25000000;175000000;300000 -48001;24997396;175002604;300000 -48002;24994792;175005208;300000 -48003;24992188;175007812;300000 -48004;24989584;175010416;300000 -48005;24986981;175013019;300000 -48006;24984377;175015623;300000 -48007;24981773;175018227;300000 -48008;24979170;175020830;300000 -48009;24976567;175023433;300000 -48010;24973964;175026036;300000 -48011;24971361;175028639;300000 -48012;24968758;175031242;300000 -48013;24966155;175033845;300000 -48014;24963552;175036448;300000 -48015;24960950;175039050;300000 -48016;24958347;175041653;300000 -48017;24955745;175044255;300000 -48018;24953143;175046857;300000 -48019;24950540;175049460;300000 -48020;24947938;175052062;300000 -48021;24945336;175054664;300000 -48022;24942735;175057265;300000 -48023;24940133;175059867;300000 -48024;24937531;175062469;300000 -48025;24934930;175065070;300000 -48026;24932328;175067672;300000 -48027;24929727;175070273;300000 -48028;24927126;175072874;300000 -48029;24924525;175075475;300000 -48030;24921924;175078076;300000 -48031;24919323;175080677;300000 -48032;24916722;175083278;300000 -48033;24914122;175085878;300000 -48034;24911521;175088479;300000 -48035;24908921;175091079;300000 -48036;24906320;175093680;300000 -48037;24903720;175096280;300000 -48038;24901120;175098880;300000 -48039;24898520;175101480;300000 -48040;24895920;175104080;300000 -48041;24893320;175106680;300000 -48042;24890721;175109279;300000 -48043;24888121;175111879;300000 -48044;24885522;175114478;300000 -48045;24882922;175117078;300000 -48046;24880323;175119677;300000 -48047;24877724;175122276;300000 -48048;24875125;175124875;300000 -48049;24872526;175127474;300000 -48050;24869927;175130073;300000 -48051;24867328;175132672;300000 -48052;24864730;175135270;300000 -48053;24862131;175137869;300000 -48054;24859533;175140467;300000 -48055;24856935;175143065;300000 -48056;24854337;175145663;300000 -48057;24851739;175148261;300000 -48058;24849141;175150859;300000 -48059;24846543;175153457;300000 -48060;24843945;175156055;300000 -48061;24841347;175158653;300000 -48062;24838750;175161250;300000 -48063;24836153;175163847;300000 -48064;24833555;175166445;300000 -48065;24830958;175169042;300000 -48066;24828361;175171639;300000 -48067;24825764;175174236;300000 -48068;24823167;175176833;300000 -48069;24820570;175179430;300000 -48070;24817974;175182026;300000 -48071;24815377;175184623;300000 -48072;24812781;175187219;300000 -48073;24810185;175189815;300000 -48074;24807588;175192412;300000 -48075;24804992;175195008;300000 -48076;24802396;175197604;300000 -48077;24799800;175200200;300000 -48078;24797205;175202795;300000 -48079;24794609;175205391;300000 -48080;24792013;175207987;300000 -48081;24789418;175210582;300000 -48082;24786823;175213177;300000 -48083;24784227;175215773;300000 -48084;24781632;175218368;300000 -48085;24779037;175220963;300000 -48086;24776442;175223558;300000 -48087;24773847;175226153;300000 -48088;24771253;175228747;300000 -48089;24768658;175231342;300000 -48090;24766064;175233936;300000 -48091;24763469;175236531;300000 -48092;24760875;175239125;300000 -48093;24758281;175241719;300000 -48094;24755687;175244313;300000 -48095;24753093;175246907;300000 -48096;24750499;175249501;300000 -48097;24747905;175252095;300000 -48098;24745312;175254688;300000 -48099;24742718;175257282;300000 -48100;24740125;175259875;300000 -48101;24737531;175262469;300000 -48102;24734938;175265062;300000 -48103;24732345;175267655;300000 -48104;24729752;175270248;300000 -48105;24727159;175272841;300000 -48106;24724567;175275433;300000 -48107;24721974;175278026;300000 -48108;24719381;175280619;300000 -48109;24716789;175283211;300000 -48110;24714197;175285803;300000 -48111;24711604;175288396;300000 -48112;24709012;175290988;300000 -48113;24706420;175293580;300000 -48114;24703828;175296172;300000 -48115;24701237;175298763;300000 -48116;24698645;175301355;300000 -48117;24696053;175303947;300000 -48118;24693462;175306538;300000 -48119;24690871;175309129;300000 -48120;24688279;175311721;300000 -48121;24685688;175314312;300000 -48122;24683097;175316903;300000 -48123;24680506;175319494;300000 -48124;24677915;175322085;300000 -48125;24675325;175324675;300000 -48126;24672734;175327266;300000 -48127;24670144;175329856;300000 -48128;24667553;175332447;300000 -48129;24664963;175335037;300000 -48130;24662373;175337627;300000 -48131;24659783;175340217;300000 -48132;24657193;175342807;300000 -48133;24654603;175345397;300000 -48134;24652013;175347987;300000 -48135;24649423;175350577;300000 -48136;24646834;175353166;300000 -48137;24644245;175355755;300000 -48138;24641655;175358345;300000 -48139;24639066;175360934;300000 -48140;24636477;175363523;300000 -48141;24633888;175366112;300000 -48142;24631299;175368701;300000 -48143;24628710;175371290;300000 -48144;24626122;175373878;300000 -48145;24623533;175376467;300000 -48146;24620945;175379055;300000 -48147;24618356;175381644;300000 -48148;24615768;175384232;300000 -48149;24613180;175386820;300000 -48150;24610592;175389408;300000 -48151;24608004;175391996;300000 -48152;24605416;175394584;300000 -48153;24602828;175397172;300000 -48154;24600241;175399759;300000 -48155;24597653;175402347;300000 -48156;24595066;175404934;300000 -48157;24592479;175407521;300000 -48158;24589892;175410108;300000 -48159;24587305;175412695;300000 -48160;24584718;175415282;300000 -48161;24582131;175417869;300000 -48162;24579544;175420456;300000 -48163;24576957;175423043;300000 -48164;24574371;175425629;300000 -48165;24571784;175428216;300000 -48166;24569198;175430802;300000 -48167;24566612;175433388;300000 -48168;24564026;175435974;300000 -48169;24561440;175438560;300000 -48170;24558854;175441146;300000 -48171;24556268;175443732;300000 -48172;24553683;175446317;300000 -48173;24551097;175448903;300000 -48174;24548512;175451488;300000 -48175;24545926;175454074;300000 -48176;24543341;175456659;300000 -48177;24540756;175459244;300000 -48178;24538171;175461829;300000 -48179;24535586;175464414;300000 -48180;24533001;175466999;300000 -48181;24530417;175469583;300000 -48182;24527832;175472168;300000 -48183;24525247;175474753;300000 -48184;24522663;175477337;300000 -48185;24520079;175479921;300000 -48186;24517495;175482505;300000 -48187;24514911;175485089;300000 -48188;24512327;175487673;300000 -48189;24509743;175490257;300000 -48190;24507159;175492841;300000 -48191;24504576;175495424;300000 -48192;24501992;175498008;300000 -48193;24499409;175500591;300000 -48194;24496825;175503175;300000 -48195;24494242;175505758;300000 -48196;24491659;175508341;300000 -48197;24489076;175510924;300000 -48198;24486493;175513507;300000 -48199;24483910;175516090;300000 -48200;24481328;175518672;300000 -48201;24478745;175521255;300000 -48202;24476163;175523837;300000 -48203;24473580;175526420;300000 -48204;24470998;175529002;300000 -48205;24468416;175531584;300000 -48206;24465834;175534166;300000 -48207;24463252;175536748;300000 -48208;24460670;175539330;300000 -48209;24458089;175541911;300000 -48210;24455507;175544493;300000 -48211;24452926;175547074;300000 -48212;24450344;175549656;300000 -48213;24447763;175552237;300000 -48214;24445182;175554818;300000 -48215;24442601;175557399;300000 -48216;24440020;175559980;300000 -48217;24437439;175562561;300000 -48218;24434858;175565142;300000 -48219;24432278;175567722;300000 -48220;24429697;175570303;300000 -48221;24427117;175572883;300000 -48222;24424537;175575463;300000 -48223;24421956;175578044;300000 -48224;24419376;175580624;300000 -48225;24416796;175583204;300000 -48226;24414216;175585784;300000 -48227;24411637;175588363;300000 -48228;24409057;175590943;300000 -48229;24406477;175593523;300000 -48230;24403898;175596102;300000 -48231;24401319;175598681;300000 -48232;24398739;175601261;300000 -48233;24396160;175603840;300000 -48234;24393581;175606419;300000 -48235;24391002;175608998;300000 -48236;24388424;175611576;300000 -48237;24385845;175614155;300000 -48238;24383266;175616734;300000 -48239;24380688;175619312;300000 -48240;24378109;175621891;300000 -48241;24375531;175624469;300000 -48242;24372953;175627047;300000 -48243;24370375;175629625;300000 -48244;24367797;175632203;300000 -48245;24365219;175634781;300000 -48246;24362641;175637359;300000 -48247;24360064;175639936;300000 -48248;24357486;175642514;300000 -48249;24354909;175645091;300000 -48250;24352332;175647668;300000 -48251;24349754;175650246;300000 -48252;24347177;175652823;300000 -48253;24344600;175655400;300000 -48254;24342023;175657977;300000 -48255;24339447;175660553;300000 -48256;24336870;175663130;300000 -48257;24334293;175665707;300000 -48258;24331717;175668283;300000 -48259;24329141;175670859;300000 -48260;24326564;175673436;300000 -48261;24323988;175676012;300000 -48262;24321412;175678588;300000 -48263;24318836;175681164;300000 -48264;24316261;175683739;300000 -48265;24313685;175686315;300000 -48266;24311109;175688891;300000 -48267;24308534;175691466;300000 -48268;24305958;175694042;300000 -48269;24303383;175696617;300000 -48270;24300808;175699192;300000 -48271;24298233;175701767;300000 -48272;24295658;175704342;300000 -48273;24293083;175706917;300000 -48274;24290508;175709492;300000 -48275;24287934;175712066;300000 -48276;24285359;175714641;300000 -48277;24282785;175717215;300000 -48278;24280210;175719790;300000 -48279;24277636;175722364;300000 -48280;24275062;175724938;300000 -48281;24272488;175727512;300000 -48282;24269914;175730086;300000 -48283;24267340;175732660;300000 -48284;24264767;175735233;300000 -48285;24262193;175737807;300000 -48286;24259620;175740380;300000 -48287;24257046;175742954;300000 -48288;24254473;175745527;300000 -48289;24251900;175748100;300000 -48290;24249327;175750673;300000 -48291;24246754;175753246;300000 -48292;24244181;175755819;300000 -48293;24241609;175758391;300000 -48294;24239036;175760964;300000 -48295;24236463;175763537;300000 -48296;24233891;175766109;300000 -48297;24231319;175768681;300000 -48298;24228747;175771253;300000 -48299;24226174;175773826;300000 -48300;24223602;175776398;300000 -48301;24221031;175778969;300000 -48302;24218459;175781541;300000 -48303;24215887;175784113;300000 -48304;24213316;175786684;300000 -48305;24210744;175789256;300000 -48306;24208173;175791827;300000 -48307;24205602;175794398;300000 -48308;24203031;175796969;300000 -48309;24200460;175799540;300000 -48310;24197889;175802111;300000 -48311;24195318;175804682;300000 -48312;24192747;175807253;300000 -48313;24190177;175809823;300000 -48314;24187606;175812394;300000 -48315;24185036;175814964;300000 -48316;24182465;175817535;300000 -48317;24179895;175820105;300000 -48318;24177325;175822675;300000 -48319;24174755;175825245;300000 -48320;24172185;175827815;300000 -48321;24169616;175830384;300000 -48322;24167046;175832954;300000 -48323;24164477;175835523;300000 -48324;24161907;175838093;300000 -48325;24159338;175840662;300000 -48326;24156769;175843231;300000 -48327;24154200;175845800;300000 -48328;24151631;175848369;300000 -48329;24149062;175850938;300000 -48330;24146493;175853507;300000 -48331;24143924;175856076;300000 -48332;24141356;175858644;300000 -48333;24138787;175861213;300000 -48334;24136219;175863781;300000 -48335;24133651;175866349;300000 -48336;24131082;175868918;300000 -48337;24128514;175871486;300000 -48338;24125946;175874054;300000 -48339;24123379;175876621;300000 -48340;24120811;175879189;300000 -48341;24118243;175881757;300000 -48342;24115676;175884324;300000 -48343;24113108;175886892;300000 -48344;24110541;175889459;300000 -48345;24107974;175892026;300000 -48346;24105407;175894593;300000 -48347;24102840;175897160;300000 -48348;24100273;175899727;300000 -48349;24097706;175902294;300000 -48350;24095140;175904860;300000 -48351;24092573;175907427;300000 -48352;24090007;175909993;300000 -48353;24087440;175912560;300000 -48354;24084874;175915126;300000 -48355;24082308;175917692;300000 -48356;24079742;175920258;300000 -48357;24077176;175922824;300000 -48358;24074610;175925390;300000 -48359;24072045;175927955;300000 -48360;24069479;175930521;300000 -48361;24066913;175933087;300000 -48362;24064348;175935652;300000 -48363;24061783;175938217;300000 -48364;24059218;175940782;300000 -48365;24056653;175943347;300000 -48366;24054088;175945912;300000 -48367;24051523;175948477;300000 -48368;24048958;175951042;300000 -48369;24046393;175953607;300000 -48370;24043829;175956171;300000 -48371;24041264;175958736;300000 -48372;24038700;175961300;300000 -48373;24036136;175963864;300000 -48374;24033572;175966428;300000 -48375;24031008;175968992;300000 -48376;24028444;175971556;300000 -48377;24025880;175974120;300000 -48378;24023316;175976684;300000 -48379;24020753;175979247;300000 -48380;24018189;175981811;300000 -48381;24015626;175984374;300000 -48382;24013063;175986937;300000 -48383;24010500;175989500;300000 -48384;24007937;175992063;300000 -48385;24005374;175994626;300000 -48386;24002811;175997189;300000 -48387;24000248;175999752;300000 -48388;23997685;176002315;300000 -48389;23995123;176004877;300000 -48390;23992560;176007440;300000 -48391;23989998;176010002;300000 -48392;23987436;176012564;300000 -48393;23984874;176015126;300000 -48394;23982312;176017688;300000 -48395;23979750;176020250;300000 -48396;23977188;176022812;300000 -48397;23974627;176025373;300000 -48398;23972065;176027935;300000 -48399;23969504;176030496;300000 -48400;23966942;176033058;300000 -48401;23964381;176035619;300000 -48402;23961820;176038180;300000 -48403;23959259;176040741;300000 -48404;23956698;176043302;300000 -48405;23954137;176045863;300000 -48406;23951576;176048424;300000 -48407;23949016;176050984;300000 -48408;23946455;176053545;300000 -48409;23943895;176056105;300000 -48410;23941334;176058666;300000 -48411;23938774;176061226;300000 -48412;23936214;176063786;300000 -48413;23933654;176066346;300000 -48414;23931094;176068906;300000 -48415;23928535;176071465;300000 -48416;23925975;176074025;300000 -48417;23923415;176076585;300000 -48418;23920856;176079144;300000 -48419;23918297;176081703;300000 -48420;23915737;176084263;300000 -48421;23913178;176086822;300000 -48422;23910619;176089381;300000 -48423;23908060;176091940;300000 -48424;23905501;176094499;300000 -48425;23902943;176097057;300000 -48426;23900384;176099616;300000 -48427;23897826;176102174;300000 -48428;23895267;176104733;300000 -48429;23892709;176107291;300000 -48430;23890151;176109849;300000 -48431;23887593;176112407;300000 -48432;23885035;176114965;300000 -48433;23882477;176117523;300000 -48434;23879919;176120081;300000 -48435;23877361;176122639;300000 -48436;23874804;176125196;300000 -48437;23872246;176127754;300000 -48438;23869689;176130311;300000 -48439;23867132;176132868;300000 -48440;23864575;176135425;300000 -48441;23862018;176137982;300000 -48442;23859461;176140539;300000 -48443;23856904;176143096;300000 -48444;23854347;176145653;300000 -48445;23851791;176148209;300000 -48446;23849234;176150766;300000 -48447;23846678;176153322;300000 -48448;23844122;176155878;300000 -48449;23841565;176158435;300000 -48450;23839009;176160991;300000 -48451;23836453;176163547;300000 -48452;23833897;176166103;300000 -48453;23831342;176168658;300000 -48454;23828786;176171214;300000 -48455;23826231;176173769;300000 -48456;23823675;176176325;300000 -48457;23821120;176178880;300000 -48458;23818565;176181435;300000 -48459;23816009;176183991;300000 -48460;23813454;176186546;300000 -48461;23810899;176189101;300000 -48462;23808345;176191655;300000 -48463;23805790;176194210;300000 -48464;23803235;176196765;300000 -48465;23800681;176199319;300000 -48466;23798127;176201873;300000 -48467;23795572;176204428;300000 -48468;23793018;176206982;300000 -48469;23790464;176209536;300000 -48470;23787910;176212090;300000 -48471;23785356;176214644;300000 -48472;23782802;176217198;300000 -48473;23780249;176219751;300000 -48474;23777695;176222305;300000 -48475;23775142;176224858;300000 -48476;23772588;176227412;300000 -48477;23770035;176229965;300000 -48478;23767482;176232518;300000 -48479;23764929;176235071;300000 -48480;23762376;176237624;300000 -48481;23759823;176240177;300000 -48482;23757271;176242729;300000 -48483;23754718;176245282;300000 -48484;23752166;176247834;300000 -48485;23749613;176250387;300000 -48486;23747061;176252939;300000 -48487;23744509;176255491;300000 -48488;23741957;176258043;300000 -48489;23739405;176260595;300000 -48490;23736853;176263147;300000 -48491;23734301;176265699;300000 -48492;23731750;176268250;300000 -48493;23729198;176270802;300000 -48494;23726647;176273353;300000 -48495;23724095;176275905;300000 -48496;23721544;176278456;300000 -48497;23718993;176281007;300000 -48498;23716442;176283558;300000 -48499;23713891;176286109;300000 -48500;23711340;176288660;300000 -48501;23708790;176291210;300000 -48502;23706239;176293761;300000 -48503;23703688;176296312;300000 -48504;23701138;176298862;300000 -48505;23698588;176301412;300000 -48506;23696038;176303962;300000 -48507;23693488;176306512;300000 -48508;23690938;176309062;300000 -48509;23688388;176311612;300000 -48510;23685838;176314162;300000 -48511;23683288;176316712;300000 -48512;23680739;176319261;300000 -48513;23678189;176321811;300000 -48514;23675640;176324360;300000 -48515;23673091;176326909;300000 -48516;23670542;176329458;300000 -48517;23667993;176332007;300000 -48518;23665444;176334556;300000 -48519;23662895;176337105;300000 -48520;23660346;176339654;300000 -48521;23657798;176342202;300000 -48522;23655249;176344751;300000 -48523;23652701;176347299;300000 -48524;23650153;176349847;300000 -48525;23647604;176352396;300000 -48526;23645056;176354944;300000 -48527;23642508;176357492;300000 -48528;23639960;176360040;300000 -48529;23637413;176362587;300000 -48530;23634865;176365135;300000 -48531;23632317;176367683;300000 -48532;23629770;176370230;300000 -48533;23627223;176372777;300000 -48534;23624675;176375325;300000 -48535;23622128;176377872;300000 -48536;23619581;176380419;300000 -48537;23617034;176382966;300000 -48538;23614488;176385512;300000 -48539;23611941;176388059;300000 -48540;23609394;176390606;300000 -48541;23606848;176393152;300000 -48542;23604301;176395699;300000 -48543;23601755;176398245;300000 -48544;23599209;176400791;300000 -48545;23596663;176403337;300000 -48546;23594117;176405883;300000 -48547;23591571;176408429;300000 -48548;23589025;176410975;300000 -48549;23586480;176413520;300000 -48550;23583934;176416066;300000 -48551;23581389;176418611;300000 -48552;23578843;176421157;300000 -48553;23576298;176423702;300000 -48554;23573753;176426247;300000 -48555;23571208;176428792;300000 -48556;23568663;176431337;300000 -48557;23566118;176433882;300000 -48558;23563573;176436427;300000 -48559;23561029;176438971;300000 -48560;23558484;176441516;300000 -48561;23555940;176444060;300000 -48562;23553396;176446604;300000 -48563;23550851;176449149;300000 -48564;23548307;176451693;300000 -48565;23545763;176454237;300000 -48566;23543220;176456780;300000 -48567;23540676;176459324;300000 -48568;23538132;176461868;300000 -48569;23535589;176464411;300000 -48570;23533045;176466955;300000 -48571;23530502;176469498;300000 -48572;23527958;176472042;300000 -48573;23525415;176474585;300000 -48574;23522872;176477128;300000 -48575;23520329;176479671;300000 -48576;23517787;176482213;300000 -48577;23515244;176484756;300000 -48578;23512701;176487299;300000 -48579;23510159;176489841;300000 -48580;23507616;176492384;300000 -48581;23505074;176494926;300000 -48582;23502532;176497468;300000 -48583;23499990;176500010;300000 -48584;23497448;176502552;300000 -48585;23494906;176505094;300000 -48586;23492364;176507636;300000 -48587;23489822;176510178;300000 -48588;23487281;176512719;300000 -48589;23484739;176515261;300000 -48590;23482198;176517802;300000 -48591;23479657;176520343;300000 -48592;23477116;176522884;300000 -48593;23474575;176525425;300000 -48594;23472034;176527966;300000 -48595;23469493;176530507;300000 -48596;23466952;176533048;300000 -48597;23464411;176535589;300000 -48598;23461871;176538129;300000 -48599;23459330;176540670;300000 -48600;23456790;176543210;300000 -48601;23454250;176545750;300000 -48602;23451710;176548290;300000 -48603;23449170;176550830;300000 -48604;23446630;176553370;300000 -48605;23444090;176555910;300000 -48606;23441550;176558450;300000 -48607;23439011;176560989;300000 -48608;23436471;176563529;300000 -48609;23433932;176566068;300000 -48610;23431393;176568607;300000 -48611;23428854;176571146;300000 -48612;23426314;176573686;300000 -48613;23423776;176576224;300000 -48614;23421237;176578763;300000 -48615;23418698;176581302;300000 -48616;23416159;176583841;300000 -48617;23413621;176586379;300000 -48618;23411082;176588918;300000 -48619;23408544;176591456;300000 -48620;23406006;176593994;300000 -48621;23403468;176596532;300000 -48622;23400930;176599070;300000 -48623;23398392;176601608;300000 -48624;23395854;176604146;300000 -48625;23393316;176606684;300000 -48626;23390779;176609221;300000 -48627;23388241;176611759;300000 -48628;23385704;176614296;300000 -48629;23383166;176616834;300000 -48630;23380629;176619371;300000 -48631;23378092;176621908;300000 -48632;23375555;176624445;300000 -48633;23373018;176626982;300000 -48634;23370482;176629518;300000 -48635;23367945;176632055;300000 -48636;23365408;176634592;300000 -48637;23362872;176637128;300000 -48638;23360336;176639664;300000 -48639;23357799;176642201;300000 -48640;23355263;176644737;300000 -48641;23352727;176647273;300000 -48642;23350191;176649809;300000 -48643;23347655;176652345;300000 -48644;23345120;176654880;300000 -48645;23342584;176657416;300000 -48646;23340049;176659951;300000 -48647;23337513;176662487;300000 -48648;23334978;176665022;300000 -48649;23332443;176667557;300000 -48650;23329908;176670092;300000 -48651;23327373;176672627;300000 -48652;23324838;176675162;300000 -48653;23322303;176677697;300000 -48654;23319768;176680232;300000 -48655;23317234;176682766;300000 -48656;23314699;176685301;300000 -48657;23312165;176687835;300000 -48658;23309630;176690370;300000 -48659;23307096;176692904;300000 -48660;23304562;176695438;300000 -48661;23302028;176697972;300000 -48662;23299494;176700506;300000 -48663;23296961;176703039;300000 -48664;23294427;176705573;300000 -48665;23291894;176708106;300000 -48666;23289360;176710640;300000 -48667;23286827;176713173;300000 -48668;23284294;176715706;300000 -48669;23281760;176718240;300000 -48670;23279227;176720773;300000 -48671;23276695;176723305;300000 -48672;23274162;176725838;300000 -48673;23271629;176728371;300000 -48674;23269096;176730904;300000 -48675;23266564;176733436;300000 -48676;23264032;176735968;300000 -48677;23261499;176738501;300000 -48678;23258967;176741033;300000 -48679;23256435;176743565;300000 -48680;23253903;176746097;300000 -48681;23251371;176748629;300000 -48682;23248839;176751161;300000 -48683;23246308;176753692;300000 -48684;23243776;176756224;300000 -48685;23241245;176758755;300000 -48686;23238713;176761287;300000 -48687;23236182;176763818;300000 -48688;23233651;176766349;300000 -48689;23231120;176768880;300000 -48690;23228589;176771411;300000 -48691;23226058;176773942;300000 -48692;23223527;176776473;300000 -48693;23220997;176779003;300000 -48694;23218466;176781534;300000 -48695;23215936;176784064;300000 -48696;23213406;176786594;300000 -48697;23210875;176789125;300000 -48698;23208345;176791655;300000 -48699;23205815;176794185;300000 -48700;23203285;176796715;300000 -48701;23200756;176799244;300000 -48702;23198226;176801774;300000 -48703;23195696;176804304;300000 -48704;23193167;176806833;300000 -48705;23190638;176809362;300000 -48706;23188108;176811892;300000 -48707;23185579;176814421;300000 -48708;23183050;176816950;300000 -48709;23180521;176819479;300000 -48710;23177992;176822008;300000 -48711;23175463;176824537;300000 -48712;23172935;176827065;300000 -48713;23170406;176829594;300000 -48714;23167878;176832122;300000 -48715;23165349;176834651;300000 -48716;23162821;176837179;300000 -48717;23160293;176839707;300000 -48718;23157765;176842235;300000 -48719;23155237;176844763;300000 -48720;23152709;176847291;300000 -48721;23150182;176849818;300000 -48722;23147654;176852346;300000 -48723;23145127;176854873;300000 -48724;23142599;176857401;300000 -48725;23140072;176859928;300000 -48726;23137545;176862455;300000 -48727;23135018;176864982;300000 -48728;23132491;176867509;300000 -48729;23129964;176870036;300000 -48730;23127437;176872563;300000 -48731;23124910;176875090;300000 -48732;23122384;176877616;300000 -48733;23119857;176880143;300000 -48734;23117331;176882669;300000 -48735;23114805;176885195;300000 -48736;23112278;176887722;300000 -48737;23109752;176890248;300000 -48738;23107226;176892774;300000 -48739;23104701;176895299;300000 -48740;23102175;176897825;300000 -48741;23099649;176900351;300000 -48742;23097124;176902876;300000 -48743;23094598;176905402;300000 -48744;23092073;176907927;300000 -48745;23089548;176910452;300000 -48746;23087023;176912977;300000 -48747;23084498;176915502;300000 -48748;23081973;176918027;300000 -48749;23079448;176920552;300000 -48750;23076923;176923077;300000 -48751;23074398;176925602;300000 -48752;23071874;176928126;300000 -48753;23069350;176930650;300000 -48754;23066825;176933175;300000 -48755;23064301;176935699;300000 -48756;23061777;176938223;300000 -48757;23059253;176940747;300000 -48758;23056729;176943271;300000 -48759;23054205;176945795;300000 -48760;23051682;176948318;300000 -48761;23049158;176950842;300000 -48762;23046635;176953365;300000 -48763;23044111;176955889;300000 -48764;23041588;176958412;300000 -48765;23039065;176960935;300000 -48766;23036542;176963458;300000 -48767;23034019;176965981;300000 -48768;23031496;176968504;300000 -48769;23028973;176971027;300000 -48770;23026451;176973549;300000 -48771;23023928;176976072;300000 -48772;23021406;176978594;300000 -48773;23018883;176981117;300000 -48774;23016361;176983639;300000 -48775;23013839;176986161;300000 -48776;23011317;176988683;300000 -48777;23008795;176991205;300000 -48778;23006273;176993727;300000 -48779;23003752;176996248;300000 -48780;23001230;176998770;300000 -48781;22998709;177001291;300000 -48782;22996187;177003813;300000 -48783;22993666;177006334;300000 -48784;22991145;177008855;300000 -48785;22988624;177011376;300000 -48786;22986103;177013897;300000 -48787;22983582;177016418;300000 -48788;22981061;177018939;300000 -48789;22978540;177021460;300000 -48790;22976020;177023980;300000 -48791;22973499;177026501;300000 -48792;22970979;177029021;300000 -48793;22968459;177031541;300000 -48794;22965938;177034062;300000 -48795;22963418;177036582;300000 -48796;22960898;177039102;300000 -48797;22958379;177041621;300000 -48798;22955859;177044141;300000 -48799;22953339;177046661;300000 -48800;22950820;177049180;300000 -48801;22948300;177051700;300000 -48802;22945781;177054219;300000 -48803;22943262;177056738;300000 -48804;22940743;177059257;300000 -48805;22938224;177061776;300000 -48806;22935705;177064295;300000 -48807;22933186;177066814;300000 -48808;22930667;177069333;300000 -48809;22928148;177071852;300000 -48810;22925630;177074370;300000 -48811;22923112;177076888;300000 -48812;22920593;177079407;300000 -48813;22918075;177081925;300000 -48814;22915557;177084443;300000 -48815;22913039;177086961;300000 -48816;22910521;177089479;300000 -48817;22908003;177091997;300000 -48818;22905486;177094514;300000 -48819;22902968;177097032;300000 -48820;22900451;177099549;300000 -48821;22897933;177102067;300000 -48822;22895416;177104584;300000 -48823;22892899;177107101;300000 -48824;22890382;177109618;300000 -48825;22887865;177112135;300000 -48826;22885348;177114652;300000 -48827;22882831;177117169;300000 -48828;22880315;177119685;300000 -48829;22877798;177122202;300000 -48830;22875282;177124718;300000 -48831;22872765;177127235;300000 -48832;22870249;177129751;300000 -48833;22867733;177132267;300000 -48834;22865217;177134783;300000 -48835;22862701;177137299;300000 -48836;22860185;177139815;300000 -48837;22857669;177142331;300000 -48838;22855154;177144846;300000 -48839;22852638;177147362;300000 -48840;22850123;177149877;300000 -48841;22847608;177152392;300000 -48842;22845092;177154908;300000 -48843;22842577;177157423;300000 -48844;22840062;177159938;300000 -48845;22837547;177162453;300000 -48846;22835033;177164967;300000 -48847;22832518;177167482;300000 -48848;22830003;177169997;300000 -48849;22827489;177172511;300000 -48850;22824974;177175026;300000 -48851;22822460;177177540;300000 -48852;22819946;177180054;300000 -48853;22817432;177182568;300000 -48854;22814918;177185082;300000 -48855;22812404;177187596;300000 -48856;22809890;177190110;300000 -48857;22807377;177192623;300000 -48858;22804863;177195137;300000 -48859;22802350;177197650;300000 -48860;22799836;177200164;300000 -48861;22797323;177202677;300000 -48862;22794810;177205190;300000 -48863;22792297;177207703;300000 -48864;22789784;177210216;300000 -48865;22787271;177212729;300000 -48866;22784758;177215242;300000 -48867;22782246;177217754;300000 -48868;22779733;177220267;300000 -48869;22777221;177222779;300000 -48870;22774708;177225292;300000 -48871;22772196;177227804;300000 -48872;22769684;177230316;300000 -48873;22767172;177232828;300000 -48874;22764660;177235340;300000 -48875;22762148;177237852;300000 -48876;22759637;177240363;300000 -48877;22757125;177242875;300000 -48878;22754614;177245386;300000 -48879;22752102;177247898;300000 -48880;22749591;177250409;300000 -48881;22747080;177252920;300000 -48882;22744569;177255431;300000 -48883;22742058;177257942;300000 -48884;22739547;177260453;300000 -48885;22737036;177262964;300000 -48886;22734525;177265475;300000 -48887;22732015;177267985;300000 -48888;22729504;177270496;300000 -48889;22726994;177273006;300000 -48890;22724484;177275516;300000 -48891;22721973;177278027;300000 -48892;22719463;177280537;300000 -48893;22716953;177283047;300000 -48894;22714443;177285557;300000 -48895;22711934;177288066;300000 -48896;22709424;177290576;300000 -48897;22706915;177293085;300000 -48898;22704405;177295595;300000 -48899;22701896;177298104;300000 -48900;22699387;177300613;300000 -48901;22696877;177303123;300000 -48902;22694368;177305632;300000 -48903;22691859;177308141;300000 -48904;22689351;177310649;300000 -48905;22686842;177313158;300000 -48906;22684333;177315667;300000 -48907;22681825;177318175;300000 -48908;22679316;177320684;300000 -48909;22676808;177323192;300000 -48910;22674300;177325700;300000 -48911;22671792;177328208;300000 -48912;22669284;177330716;300000 -48913;22666776;177333224;300000 -48914;22664268;177335732;300000 -48915;22661760;177338240;300000 -48916;22659253;177340747;300000 -48917;22656745;177343255;300000 -48918;22654238;177345762;300000 -48919;22651730;177348270;300000 -48920;22649223;177350777;300000 -48921;22646716;177353284;300000 -48922;22644209;177355791;300000 -48923;22641702;177358298;300000 -48924;22639195;177360805;300000 -48925;22636689;177363311;300000 -48926;22634182;177365818;300000 -48927;22631676;177368324;300000 -48928;22629169;177370831;300000 -48929;22626663;177373337;300000 -48930;22624157;177375843;300000 -48931;22621651;177378349;300000 -48932;22619145;177380855;300000 -48933;22616639;177383361;300000 -48934;22614133;177385867;300000 -48935;22611628;177388372;300000 -48936;22609122;177390878;300000 -48937;22606617;177393383;300000 -48938;22604111;177395889;300000 -48939;22601606;177398394;300000 -48940;22599101;177400899;300000 -48941;22596596;177403404;300000 -48942;22594091;177405909;300000 -48943;22591586;177408414;300000 -48944;22589081;177410919;300000 -48945;22586577;177413423;300000 -48946;22584072;177415928;300000 -48947;22581568;177418432;300000 -48948;22579063;177420937;300000 -48949;22576559;177423441;300000 -48950;22574055;177425945;300000 -48951;22571551;177428449;300000 -48952;22569047;177430953;300000 -48953;22566543;177433457;300000 -48954;22564040;177435960;300000 -48955;22561536;177438464;300000 -48956;22559033;177440967;300000 -48957;22556529;177443471;300000 -48958;22554026;177445974;300000 -48959;22551523;177448477;300000 -48960;22549020;177450980;300000 -48961;22546517;177453483;300000 -48962;22544014;177455986;300000 -48963;22541511;177458489;300000 -48964;22539008;177460992;300000 -48965;22536506;177463494;300000 -48966;22534003;177465997;300000 -48967;22531501;177468499;300000 -48968;22528999;177471001;300000 -48969;22526496;177473504;300000 -48970;22523994;177476006;300000 -48971;22521492;177478508;300000 -48972;22518990;177481010;300000 -48973;22516489;177483511;300000 -48974;22513987;177486013;300000 -48975;22511485;177488515;300000 -48976;22508984;177491016;300000 -48977;22506483;177493517;300000 -48978;22503981;177496019;300000 -48979;22501480;177498520;300000 -48980;22498979;177501021;300000 -48981;22496478;177503522;300000 -48982;22493977;177506023;300000 -48983;22491477;177508523;300000 -48984;22488976;177511024;300000 -48985;22486475;177513525;300000 -48986;22483975;177516025;300000 -48987;22481475;177518525;300000 -48988;22478974;177521026;300000 -48989;22476474;177523526;300000 -48990;22473974;177526026;300000 -48991;22471474;177528526;300000 -48992;22468975;177531025;300000 -48993;22466475;177533525;300000 -48994;22463975;177536025;300000 -48995;22461476;177538524;300000 -48996;22458976;177541024;300000 -48997;22456477;177543523;300000 -48998;22453978;177546022;300000 -48999;22451479;177548521;300000 -49000;22448980;177551020;300000 -49001;22446481;177553519;300000 -49002;22443982;177556018;300000 -49003;22441483;177558517;300000 -49004;22438985;177561015;300000 -49005;22436486;177563514;300000 -49006;22433988;177566012;300000 -49007;22431489;177568511;300000 -49008;22428991;177571009;300000 -49009;22426493;177573507;300000 -49010;22423995;177576005;300000 -49011;22421497;177578503;300000 -49012;22418999;177581001;300000 -49013;22416502;177583498;300000 -49014;22414004;177585996;300000 -49015;22411507;177588493;300000 -49016;22409009;177590991;300000 -49017;22406512;177593488;300000 -49018;22404015;177595985;300000 -49019;22401518;177598482;300000 -49020;22399021;177600979;300000 -49021;22396524;177603476;300000 -49022;22394027;177605973;300000 -49023;22391531;177608469;300000 -49024;22389034;177610966;300000 -49025;22386537;177613463;300000 -49026;22384041;177615959;300000 -49027;22381545;177618455;300000 -49028;22379049;177620951;300000 -49029;22376553;177623447;300000 -49030;22374057;177625943;300000 -49031;22371561;177628439;300000 -49032;22369065;177630935;300000 -49033;22366569;177633431;300000 -49034;22364074;177635926;300000 -49035;22361578;177638422;300000 -49036;22359083;177640917;300000 -49037;22356588;177643412;300000 -49038;22354093;177645907;300000 -49039;22351598;177648402;300000 -49040;22349103;177650897;300000 -49041;22346608;177653392;300000 -49042;22344113;177655887;300000 -49043;22341619;177658381;300000 -49044;22339124;177660876;300000 -49045;22336630;177663370;300000 -49046;22334135;177665865;300000 -49047;22331641;177668359;300000 -49048;22329147;177670853;300000 -49049;22326653;177673347;300000 -49050;22324159;177675841;300000 -49051;22321665;177678335;300000 -49052;22319171;177680829;300000 -49053;22316678;177683322;300000 -49054;22314184;177685816;300000 -49055;22311691;177688309;300000 -49056;22309198;177690802;300000 -49057;22306704;177693296;300000 -49058;22304211;177695789;300000 -49059;22301718;177698282;300000 -49060;22299225;177700775;300000 -49061;22296733;177703267;300000 -49062;22294240;177705760;300000 -49063;22291747;177708253;300000 -49064;22289255;177710745;300000 -49065;22286762;177713238;300000 -49066;22284270;177715730;300000 -49067;22281778;177718222;300000 -49068;22279286;177720714;300000 -49069;22276794;177723206;300000 -49070;22274302;177725698;300000 -49071;22271810;177728190;300000 -49072;22269319;177730681;300000 -49073;22266827;177733173;300000 -49074;22264335;177735665;300000 -49075;22261844;177738156;300000 -49076;22259353;177740647;300000 -49077;22256862;177743138;300000 -49078;22254371;177745629;300000 -49079;22251880;177748120;300000 -49080;22249389;177750611;300000 -49081;22246898;177753102;300000 -49082;22244407;177755593;300000 -49083;22241917;177758083;300000 -49084;22239426;177760574;300000 -49085;22236936;177763064;300000 -49086;22234446;177765554;300000 -49087;22231956;177768044;300000 -49088;22229465;177770535;300000 -49089;22226975;177773025;300000 -49090;22224486;177775514;300000 -49091;22221996;177778004;300000 -49092;22219506;177780494;300000 -49093;22217017;177782983;300000 -49094;22214527;177785473;300000 -49095;22212038;177787962;300000 -49096;22209549;177790451;300000 -49097;22207059;177792941;300000 -49098;22204570;177795430;300000 -49099;22202082;177797918;300000 -49100;22199593;177800407;300000 -49101;22197104;177802896;300000 -49102;22194615;177805385;300000 -49103;22192127;177807873;300000 -49104;22189638;177810362;300000 -49105;22187150;177812850;300000 -49106;22184662;177815338;300000 -49107;22182174;177817826;300000 -49108;22179686;177820314;300000 -49109;22177198;177822802;300000 -49110;22174710;177825290;300000 -49111;22172222;177827778;300000 -49112;22169734;177830266;300000 -49113;22167247;177832753;300000 -49114;22164760;177835240;300000 -49115;22162272;177837728;300000 -49116;22159785;177840215;300000 -49117;22157298;177842702;300000 -49118;22154811;177845189;300000 -49119;22152324;177847676;300000 -49120;22149837;177850163;300000 -49121;22147350;177852650;300000 -49122;22144864;177855136;300000 -49123;22142377;177857623;300000 -49124;22139891;177860109;300000 -49125;22137405;177862595;300000 -49126;22134918;177865082;300000 -49127;22132432;177867568;300000 -49128;22129946;177870054;300000 -49129;22127460;177872540;300000 -49130;22124975;177875025;300000 -49131;22122489;177877511;300000 -49132;22120003;177879997;300000 -49133;22117518;177882482;300000 -49134;22115032;177884968;300000 -49135;22112547;177887453;300000 -49136;22110062;177889938;300000 -49137;22107577;177892423;300000 -49138;22105092;177894908;300000 -49139;22102607;177897393;300000 -49140;22100122;177899878;300000 -49141;22097637;177902363;300000 -49142;22095153;177904847;300000 -49143;22092668;177907332;300000 -49144;22090184;177909816;300000 -49145;22087700;177912300;300000 -49146;22085215;177914785;300000 -49147;22082731;177917269;300000 -49148;22080247;177919753;300000 -49149;22077764;177922236;300000 -49150;22075280;177924720;300000 -49151;22072796;177927204;300000 -49152;22070313;177929687;300000 -49153;22067829;177932171;300000 -49154;22065346;177934654;300000 -49155;22062862;177937138;300000 -49156;22060379;177939621;300000 -49157;22057896;177942104;300000 -49158;22055413;177944587;300000 -49159;22052930;177947070;300000 -49160;22050448;177949552;300000 -49161;22047965;177952035;300000 -49162;22045482;177954518;300000 -49163;22043000;177957000;300000 -49164;22040517;177959483;300000 -49165;22038035;177961965;300000 -49166;22035553;177964447;300000 -49167;22033071;177966929;300000 -49168;22030589;177969411;300000 -49169;22028107;177971893;300000 -49170;22025625;177974375;300000 -49171;22023144;177976856;300000 -49172;22020662;177979338;300000 -49173;22018181;177981819;300000 -49174;22015699;177984301;300000 -49175;22013218;177986782;300000 -49176;22010737;177989263;300000 -49177;22008256;177991744;300000 -49178;22005775;177994225;300000 -49179;22003294;177996706;300000 -49180;22000813;177999187;300000 -49181;21998333;178001667;300000 -49182;21995852;178004148;300000 -49183;21993372;178006628;300000 -49184;21990891;178009109;300000 -49185;21988411;178011589;300000 -49186;21985931;178014069;300000 -49187;21983451;178016549;300000 -49188;21980971;178019029;300000 -49189;21978491;178021509;300000 -49190;21976011;178023989;300000 -49191;21973532;178026468;300000 -49192;21971052;178028948;300000 -49193;21968573;178031427;300000 -49194;21966093;178033907;300000 -49195;21963614;178036386;300000 -49196;21961135;178038865;300000 -49197;21958656;178041344;300000 -49198;21956177;178043823;300000 -49199;21953698;178046302;300000 -49200;21951220;178048780;300000 -49201;21948741;178051259;300000 -49202;21946262;178053738;300000 -49203;21943784;178056216;300000 -49204;21941306;178058694;300000 -49205;21938827;178061173;300000 -49206;21936349;178063651;300000 -49207;21933871;178066129;300000 -49208;21931393;178068607;300000 -49209;21928915;178071085;300000 -49210;21926438;178073562;300000 -49211;21923960;178076040;300000 -49212;21921483;178078517;300000 -49213;21919005;178080995;300000 -49214;21916528;178083472;300000 -49215;21914051;178085949;300000 -49216;21911573;178088427;300000 -49217;21909096;178090904;300000 -49218;21906620;178093380;300000 -49219;21904143;178095857;300000 -49220;21901666;178098334;300000 -49221;21899189;178100811;300000 -49222;21896713;178103287;300000 -49223;21894236;178105764;300000 -49224;21891760;178108240;300000 -49225;21889284;178110716;300000 -49226;21886808;178113192;300000 -49227;21884332;178115668;300000 -49228;21881856;178118144;300000 -49229;21879380;178120620;300000 -49230;21876904;178123096;300000 -49231;21874429;178125571;300000 -49232;21871953;178128047;300000 -49233;21869478;178130522;300000 -49234;21867002;178132998;300000 -49235;21864527;178135473;300000 -49236;21862052;178137948;300000 -49237;21859577;178140423;300000 -49238;21857102;178142898;300000 -49239;21854627;178145373;300000 -49240;21852153;178147847;300000 -49241;21849678;178150322;300000 -49242;21847204;178152796;300000 -49243;21844729;178155271;300000 -49244;21842255;178157745;300000 -49245;21839781;178160219;300000 -49246;21837307;178162693;300000 -49247;21834833;178165167;300000 -49248;21832359;178167641;300000 -49249;21829885;178170115;300000 -49250;21827411;178172589;300000 -49251;21824938;178175062;300000 -49252;21822464;178177536;300000 -49253;21819991;178180009;300000 -49254;21817517;178182483;300000 -49255;21815044;178184956;300000 -49256;21812571;178187429;300000 -49257;21810098;178189902;300000 -49258;21807625;178192375;300000 -49259;21805152;178194848;300000 -49260;21802680;178197320;300000 -49261;21800207;178199793;300000 -49262;21797735;178202265;300000 -49263;21795262;178204738;300000 -49264;21792790;178207210;300000 -49265;21790318;178209682;300000 -49266;21787846;178212154;300000 -49267;21785374;178214626;300000 -49268;21782902;178217098;300000 -49269;21780430;178219570;300000 -49270;21777958;178222042;300000 -49271;21775487;178224513;300000 -49272;21773015;178226985;300000 -49273;21770544;178229456;300000 -49274;21768072;178231928;300000 -49275;21765601;178234399;300000 -49276;21763130;178236870;300000 -49277;21760659;178239341;300000 -49278;21758188;178241812;300000 -49279;21755717;178244283;300000 -49280;21753247;178246753;300000 -49281;21750776;178249224;300000 -49282;21748306;178251694;300000 -49283;21745835;178254165;300000 -49284;21743365;178256635;300000 -49285;21740895;178259105;300000 -49286;21738425;178261575;300000 -49287;21735955;178264045;300000 -49288;21733485;178266515;300000 -49289;21731015;178268985;300000 -49290;21728545;178271455;300000 -49291;21726076;178273924;300000 -49292;21723606;178276394;300000 -49293;21721137;178278863;300000 -49294;21718668;178281332;300000 -49295;21716198;178283802;300000 -49296;21713729;178286271;300000 -49297;21711260;178288740;300000 -49298;21708791;178291209;300000 -49299;21706323;178293677;300000 -49300;21703854;178296146;300000 -49301;21701385;178298615;300000 -49302;21698917;178301083;300000 -49303;21696448;178303552;300000 -49304;21693980;178306020;300000 -49305;21691512;178308488;300000 -49306;21689044;178310956;300000 -49307;21686576;178313424;300000 -49308;21684108;178315892;300000 -49309;21681640;178318360;300000 -49310;21679173;178320827;300000 -49311;21676705;178323295;300000 -49312;21674238;178325762;300000 -49313;21671770;178328230;300000 -49314;21669303;178330697;300000 -49315;21666836;178333164;300000 -49316;21664369;178335631;300000 -49317;21661902;178338098;300000 -49318;21659435;178340565;300000 -49319;21656968;178343032;300000 -49320;21654501;178345499;300000 -49321;21652035;178347965;300000 -49322;21649568;178350432;300000 -49323;21647102;178352898;300000 -49324;21644635;178355365;300000 -49325;21642169;178357831;300000 -49326;21639703;178360297;300000 -49327;21637237;178362763;300000 -49328;21634771;178365229;300000 -49329;21632306;178367694;300000 -49330;21629840;178370160;300000 -49331;21627374;178372626;300000 -49332;21624909;178375091;300000 -49333;21622443;178377557;300000 -49334;21619978;178380022;300000 -49335;21617513;178382487;300000 -49336;21615048;178384952;300000 -49337;21612583;178387417;300000 -49338;21610118;178389882;300000 -49339;21607653;178392347;300000 -49340;21605188;178394812;300000 -49341;21602724;178397276;300000 -49342;21600259;178399741;300000 -49343;21597795;178402205;300000 -49344;21595331;178404669;300000 -49345;21592867;178407133;300000 -49346;21590402;178409598;300000 -49347;21587938;178412062;300000 -49348;21585475;178414525;300000 -49349;21583011;178416989;300000 -49350;21580547;178419453;300000 -49351;21578084;178421916;300000 -49352;21575620;178424380;300000 -49353;21573157;178426843;300000 -49354;21570693;178429307;300000 -49355;21568230;178431770;300000 -49356;21565767;178434233;300000 -49357;21563304;178436696;300000 -49358;21560841;178439159;300000 -49359;21558378;178441622;300000 -49360;21555916;178444084;300000 -49361;21553453;178446547;300000 -49362;21550991;178449009;300000 -49363;21548528;178451472;300000 -49364;21546066;178453934;300000 -49365;21543604;178456396;300000 -49366;21541142;178458858;300000 -49367;21538680;178461320;300000 -49368;21536218;178463782;300000 -49369;21533756;178466244;300000 -49370;21531294;178468706;300000 -49371;21528833;178471167;300000 -49372;21526371;178473629;300000 -49373;21523910;178476090;300000 -49374;21521449;178478551;300000 -49375;21518987;178481013;300000 -49376;21516526;178483474;300000 -49377;21514065;178485935;300000 -49378;21511604;178488396;300000 -49379;21509144;178490856;300000 -49380;21506683;178493317;300000 -49381;21504222;178495778;300000 -49382;21501762;178498238;300000 -49383;21499301;178500699;300000 -49384;21496841;178503159;300000 -49385;21494381;178505619;300000 -49386;21491921;178508079;300000 -49387;21489461;178510539;300000 -49388;21487001;178512999;300000 -49389;21484541;178515459;300000 -49390;21482081;178517919;300000 -49391;21479622;178520378;300000 -49392;21477162;178522838;300000 -49393;21474703;178525297;300000 -49394;21472244;178527756;300000 -49395;21469784;178530216;300000 -49396;21467325;178532675;300000 -49397;21464866;178535134;300000 -49398;21462407;178537593;300000 -49399;21459949;178540051;300000 -49400;21457490;178542510;300000 -49401;21455031;178544969;300000 -49402;21452573;178547427;300000 -49403;21450114;178549886;300000 -49404;21447656;178552344;300000 -49405;21445198;178554802;300000 -49406;21442740;178557260;300000 -49407;21440282;178559718;300000 -49408;21437824;178562176;300000 -49409;21435366;178564634;300000 -49410;21432908;178567092;300000 -49411;21430451;178569549;300000 -49412;21427993;178572007;300000 -49413;21425536;178574464;300000 -49414;21423078;178576922;300000 -49415;21420621;178579379;300000 -49416;21418164;178581836;300000 -49417;21415707;178584293;300000 -49418;21413250;178586750;300000 -49419;21410793;178589207;300000 -49420;21408337;178591663;300000 -49421;21405880;178594120;300000 -49422;21403424;178596576;300000 -49423;21400967;178599033;300000 -49424;21398511;178601489;300000 -49425;21396055;178603945;300000 -49426;21393599;178606401;300000 -49427;21391142;178608858;300000 -49428;21388687;178611313;300000 -49429;21386231;178613769;300000 -49430;21383775;178616225;300000 -49431;21381319;178618681;300000 -49432;21378864;178621136;300000 -49433;21376408;178623592;300000 -49434;21373953;178626047;300000 -49435;21371498;178628502;300000 -49436;21369043;178630957;300000 -49437;21366588;178633412;300000 -49438;21364133;178635867;300000 -49439;21361678;178638322;300000 -49440;21359223;178640777;300000 -49441;21356769;178643231;300000 -49442;21354314;178645686;300000 -49443;21351860;178648140;300000 -49444;21349405;178650595;300000 -49445;21346951;178653049;300000 -49446;21344497;178655503;300000 -49447;21342043;178657957;300000 -49448;21339589;178660411;300000 -49449;21337135;178662865;300000 -49450;21334681;178665319;300000 -49451;21332228;178667772;300000 -49452;21329774;178670226;300000 -49453;21327321;178672679;300000 -49454;21324868;178675132;300000 -49455;21322414;178677586;300000 -49456;21319961;178680039;300000 -49457;21317508;178682492;300000 -49458;21315055;178684945;300000 -49459;21312602;178687398;300000 -49460;21310150;178689850;300000 -49461;21307697;178692303;300000 -49462;21305244;178694756;300000 -49463;21302792;178697208;300000 -49464;21300340;178699660;300000 -49465;21297887;178702113;300000 -49466;21295435;178704565;300000 -49467;21292983;178707017;300000 -49468;21290531;178709469;300000 -49469;21288079;178711921;300000 -49470;21285628;178714372;300000 -49471;21283176;178716824;300000 -49472;21280724;178719276;300000 -49473;21278273;178721727;300000 -49474;21275822;178724178;300000 -49475;21273370;178726630;300000 -49476;21270919;178729081;300000 -49477;21268468;178731532;300000 -49478;21266017;178733983;300000 -49479;21263566;178736434;300000 -49480;21261116;178738884;300000 -49481;21258665;178741335;300000 -49482;21256214;178743786;300000 -49483;21253764;178746236;300000 -49484;21251314;178748686;300000 -49485;21248863;178751137;300000 -49486;21246413;178753587;300000 -49487;21243963;178756037;300000 -49488;21241513;178758487;300000 -49489;21239063;178760937;300000 -49490;21236613;178763387;300000 -49491;21234164;178765836;300000 -49492;21231714;178768286;300000 -49493;21229265;178770735;300000 -49494;21226815;178773185;300000 -49495;21224366;178775634;300000 -49496;21221917;178778083;300000 -49497;21219468;178780532;300000 -49498;21217019;178782981;300000 -49499;21214570;178785430;300000 -49500;21212121;178787879;300000 -49501;21209673;178790327;300000 -49502;21207224;178792776;300000 -49503;21204775;178795225;300000 -49504;21202327;178797673;300000 -49505;21199879;178800121;300000 -49506;21197431;178802569;300000 -49507;21194983;178805017;300000 -49508;21192535;178807465;300000 -49509;21190087;178809913;300000 -49510;21187639;178812361;300000 -49511;21185191;178814809;300000 -49512;21182744;178817256;300000 -49513;21180296;178819704;300000 -49514;21177849;178822151;300000 -49515;21175401;178824599;300000 -49516;21172954;178827046;300000 -49517;21170507;178829493;300000 -49518;21168060;178831940;300000 -49519;21165613;178834387;300000 -49520;21163166;178836834;300000 -49521;21160720;178839280;300000 -49522;21158273;178841727;300000 -49523;21155827;178844173;300000 -49524;21153380;178846620;300000 -49525;21150934;178849066;300000 -49526;21148488;178851512;300000 -49527;21146042;178853958;300000 -49528;21143596;178856404;300000 -49529;21141150;178858850;300000 -49530;21138704;178861296;300000 -49531;21136258;178863742;300000 -49532;21133812;178866188;300000 -49533;21131367;178868633;300000 -49534;21128922;178871078;300000 -49535;21126476;178873524;300000 -49536;21124031;178875969;300000 -49537;21121586;178878414;300000 -49538;21119141;178880859;300000 -49539;21116696;178883304;300000 -49540;21114251;178885749;300000 -49541;21111806;178888194;300000 -49542;21109362;178890638;300000 -49543;21106917;178893083;300000 -49544;21104473;178895527;300000 -49545;21102028;178897972;300000 -49546;21099584;178900416;300000 -49547;21097140;178902860;300000 -49548;21094696;178905304;300000 -49549;21092252;178907748;300000 -49550;21089808;178910192;300000 -49551;21087365;178912635;300000 -49552;21084921;178915079;300000 -49553;21082477;178917523;300000 -49554;21080034;178919966;300000 -49555;21077591;178922409;300000 -49556;21075147;178924853;300000 -49557;21072704;178927296;300000 -49558;21070261;178929739;300000 -49559;21067818;178932182;300000 -49560;21065375;178934625;300000 -49561;21062933;178937067;300000 -49562;21060490;178939510;300000 -49563;21058047;178941953;300000 -49564;21055605;178944395;300000 -49565;21053163;178946837;300000 -49566;21050720;178949280;300000 -49567;21048278;178951722;300000 -49568;21045836;178954164;300000 -49569;21043394;178956606;300000 -49570;21040952;178959048;300000 -49571;21038510;178961490;300000 -49572;21036069;178963931;300000 -49573;21033627;178966373;300000 -49574;21031186;178968814;300000 -49575;21028744;178971256;300000 -49576;21026303;178973697;300000 -49577;21023862;178976138;300000 -49578;21021421;178978579;300000 -49579;21018980;178981020;300000 -49580;21016539;178983461;300000 -49581;21014098;178985902;300000 -49582;21011657;178988343;300000 -49583;21009217;178990783;300000 -49584;21006776;178993224;300000 -49585;21004336;178995664;300000 -49586;21001896;178998104;300000 -49587;20999456;179000544;300000 -49588;20997015;179002985;300000 -49589;20994575;179005425;300000 -49590;20992136;179007864;300000 -49591;20989696;179010304;300000 -49592;20987256;179012744;300000 -49593;20984816;179015184;300000 -49594;20982377;179017623;300000 -49595;20979937;179020063;300000 -49596;20977498;179022502;300000 -49597;20975059;179024941;300000 -49598;20972620;179027380;300000 -49599;20970181;179029819;300000 -49600;20967742;179032258;300000 -49601;20965303;179034697;300000 -49602;20962864;179037136;300000 -49603;20960426;179039574;300000 -49604;20957987;179042013;300000 -49605;20955549;179044451;300000 -49606;20953111;179046889;300000 -49607;20950672;179049328;300000 -49608;20948234;179051766;300000 -49609;20945796;179054204;300000 -49610;20943358;179056642;300000 -49611;20940920;179059080;300000 -49612;20938483;179061517;300000 -49613;20936045;179063955;300000 -49614;20933607;179066393;300000 -49615;20931170;179068830;300000 -49616;20928733;179071267;300000 -49617;20926295;179073705;300000 -49618;20923858;179076142;300000 -49619;20921421;179078579;300000 -49620;20918984;179081016;300000 -49621;20916547;179083453;300000 -49622;20914111;179085889;300000 -49623;20911674;179088326;300000 -49624;20909237;179090763;300000 -49625;20906801;179093199;300000 -49626;20904365;179095635;300000 -49627;20901928;179098072;300000 -49628;20899492;179100508;300000 -49629;20897056;179102944;300000 -49630;20894620;179105380;300000 -49631;20892184;179107816;300000 -49632;20889749;179110251;300000 -49633;20887313;179112687;300000 -49634;20884877;179115123;300000 -49635;20882442;179117558;300000 -49636;20880006;179119994;300000 -49637;20877571;179122429;300000 -49638;20875136;179124864;300000 -49639;20872701;179127299;300000 -49640;20870266;179129734;300000 -49641;20867831;179132169;300000 -49642;20865396;179134604;300000 -49643;20862962;179137038;300000 -49644;20860527;179139473;300000 -49645;20858092;179141908;300000 -49646;20855658;179144342;300000 -49647;20853224;179146776;300000 -49648;20850790;179149210;300000 -49649;20848355;179151645;300000 -49650;20845921;179154079;300000 -49651;20843488;179156512;300000 -49652;20841054;179158946;300000 -49653;20838620;179161380;300000 -49654;20836186;179163814;300000 -49655;20833753;179166247;300000 -49656;20831319;179168681;300000 -49657;20828886;179171114;300000 -49658;20826453;179173547;300000 -49659;20824020;179175980;300000 -49660;20821587;179178413;300000 -49661;20819154;179180846;300000 -49662;20816721;179183279;300000 -49663;20814288;179185712;300000 -49664;20811856;179188144;300000 -49665;20809423;179190577;300000 -49666;20806991;179193009;300000 -49667;20804558;179195442;300000 -49668;20802126;179197874;300000 -49669;20799694;179200306;300000 -49670;20797262;179202738;300000 -49671;20794830;179205170;300000 -49672;20792398;179207602;300000 -49673;20789966;179210034;300000 -49674;20787535;179212465;300000 -49675;20785103;179214897;300000 -49676;20782672;179217328;300000 -49677;20780240;179219760;300000 -49678;20777809;179222191;300000 -49679;20775378;179224622;300000 -49680;20772947;179227053;300000 -49681;20770516;179229484;300000 -49682;20768085;179231915;300000 -49683;20765654;179234346;300000 -49684;20763224;179236776;300000 -49685;20760793;179239207;300000 -49686;20758363;179241637;300000 -49687;20755932;179244068;300000 -49688;20753502;179246498;300000 -49689;20751072;179248928;300000 -49690;20748642;179251358;300000 -49691;20746212;179253788;300000 -49692;20743782;179256218;300000 -49693;20741352;179258648;300000 -49694;20738922;179261078;300000 -49695;20736493;179263507;300000 -49696;20734063;179265937;300000 -49697;20731634;179268366;300000 -49698;20729204;179270796;300000 -49699;20726775;179273225;300000 -49700;20724346;179275654;300000 -49701;20721917;179278083;300000 -49702;20719488;179280512;300000 -49703;20717059;179282941;300000 -49704;20714631;179285369;300000 -49705;20712202;179287798;300000 -49706;20709773;179290227;300000 -49707;20707345;179292655;300000 -49708;20704917;179295083;300000 -49709;20702488;179297512;300000 -49710;20700060;179299940;300000 -49711;20697632;179302368;300000 -49712;20695204;179304796;300000 -49713;20692777;179307223;300000 -49714;20690349;179309651;300000 -49715;20687921;179312079;300000 -49716;20685494;179314506;300000 -49717;20683066;179316934;300000 -49718;20680639;179319361;300000 -49719;20678212;179321788;300000 -49720;20675784;179324216;300000 -49721;20673357;179326643;300000 -49722;20670930;179329070;300000 -49723;20668504;179331496;300000 -49724;20666077;179333923;300000 -49725;20663650;179336350;300000 -49726;20661224;179338776;300000 -49727;20658797;179341203;300000 -49728;20656371;179343629;300000 -49729;20653944;179346056;300000 -49730;20651518;179348482;300000 -49731;20649092;179350908;300000 -49732;20646666;179353334;300000 -49733;20644240;179355760;300000 -49734;20641814;179358186;300000 -49735;20639389;179360611;300000 -49736;20636963;179363037;300000 -49737;20634538;179365462;300000 -49738;20632112;179367888;300000 -49739;20629687;179370313;300000 -49740;20627262;179372738;300000 -49741;20624837;179375163;300000 -49742;20622412;179377588;300000 -49743;20619987;179380013;300000 -49744;20617562;179382438;300000 -49745;20615137;179384863;300000 -49746;20612713;179387287;300000 -49747;20610288;179389712;300000 -49748;20607864;179392136;300000 -49749;20605439;179394561;300000 -49750;20603015;179396985;300000 -49751;20600591;179399409;300000 -49752;20598167;179401833;300000 -49753;20595743;179404257;300000 -49754;20593319;179406681;300000 -49755;20590895;179409105;300000 -49756;20588472;179411528;300000 -49757;20586048;179413952;300000 -49758;20583625;179416375;300000 -49759;20581201;179418799;300000 -49760;20578778;179421222;300000 -49761;20576355;179423645;300000 -49762;20573932;179426068;300000 -49763;20571509;179428491;300000 -49764;20569086;179430914;300000 -49765;20566663;179433337;300000 -49766;20564241;179435759;300000 -49767;20561818;179438182;300000 -49768;20559396;179440604;300000 -49769;20556973;179443027;300000 -49770;20554551;179445449;300000 -49771;20552129;179447871;300000 -49772;20549707;179450293;300000 -49773;20547285;179452715;300000 -49774;20544863;179455137;300000 -49775;20542441;179457559;300000 -49776;20540019;179459981;300000 -49777;20537598;179462402;300000 -49778;20535176;179464824;300000 -49779;20532755;179467245;300000 -49780;20530333;179469667;300000 -49781;20527912;179472088;300000 -49782;20525491;179474509;300000 -49783;20523070;179476930;300000 -49784;20520649;179479351;300000 -49785;20518228;179481772;300000 -49786;20515808;179484192;300000 -49787;20513387;179486613;300000 -49788;20510966;179489034;300000 -49789;20508546;179491454;300000 -49790;20506126;179493874;300000 -49791;20503705;179496295;300000 -49792;20501285;179498715;300000 -49793;20498865;179501135;300000 -49794;20496445;179503555;300000 -49795;20494026;179505974;300000 -49796;20491606;179508394;300000 -49797;20489186;179510814;300000 -49798;20486767;179513233;300000 -49799;20484347;179515653;300000 -49800;20481928;179518072;300000 -49801;20479508;179520492;300000 -49802;20477089;179522911;300000 -49803;20474670;179525330;300000 -49804;20472251;179527749;300000 -49805;20469832;179530168;300000 -49806;20467414;179532586;300000 -49807;20464995;179535005;300000 -49808;20462576;179537424;300000 -49809;20460158;179539842;300000 -49810;20457739;179542261;300000 -49811;20455321;179544679;300000 -49812;20452903;179547097;300000 -49813;20450485;179549515;300000 -49814;20448067;179551933;300000 -49815;20445649;179554351;300000 -49816;20443231;179556769;300000 -49817;20440813;179559187;300000 -49818;20438396;179561604;300000 -49819;20435978;179564022;300000 -49820;20433561;179566439;300000 -49821;20431143;179568857;300000 -49822;20428726;179571274;300000 -49823;20426309;179573691;300000 -49824;20423892;179576108;300000 -49825;20421475;179578525;300000 -49826;20419058;179580942;300000 -49827;20416642;179583358;300000 -49828;20414225;179585775;300000 -49829;20411808;179588192;300000 -49830;20409392;179590608;300000 -49831;20406976;179593024;300000 -49832;20404559;179595441;300000 -49833;20402143;179597857;300000 -49834;20399727;179600273;300000 -49835;20397311;179602689;300000 -49836;20394895;179605105;300000 -49837;20392479;179607521;300000 -49838;20390064;179609936;300000 -49839;20387648;179612352;300000 -49840;20385233;179614767;300000 -49841;20382817;179617183;300000 -49842;20380402;179619598;300000 -49843;20377987;179622013;300000 -49844;20375572;179624428;300000 -49845;20373157;179626843;300000 -49846;20370742;179629258;300000 -49847;20368327;179631673;300000 -49848;20365912;179634088;300000 -49849;20363498;179636502;300000 -49850;20361083;179638917;300000 -49851;20358669;179641331;300000 -49852;20356255;179643745;300000 -49853;20353840;179646160;300000 -49854;20351426;179648574;300000 -49855;20349012;179650988;300000 -49856;20346598;179653402;300000 -49857;20344184;179655816;300000 -49858;20341771;179658229;300000 -49859;20339357;179660643;300000 -49860;20336943;179663057;300000 -49861;20334530;179665470;300000 -49862;20332117;179667883;300000 -49863;20329703;179670297;300000 -49864;20327290;179672710;300000 -49865;20324877;179675123;300000 -49866;20322464;179677536;300000 -49867;20320051;179679949;300000 -49868;20317639;179682361;300000 -49869;20315226;179684774;300000 -49870;20312813;179687187;300000 -49871;20310401;179689599;300000 -49872;20307988;179692012;300000 -49873;20305576;179694424;300000 -49874;20303164;179696836;300000 -49875;20300752;179699248;300000 -49876;20298340;179701660;300000 -49877;20295928;179704072;300000 -49878;20293516;179706484;300000 -49879;20291104;179708896;300000 -49880;20288693;179711307;300000 -49881;20286281;179713719;300000 -49882;20283870;179716130;300000 -49883;20281459;179718541;300000 -49884;20279047;179720953;300000 -49885;20276636;179723364;300000 -49886;20274225;179725775;300000 -49887;20271814;179728186;300000 -49888;20269403;179730597;300000 -49889;20266993;179733007;300000 -49890;20264582;179735418;300000 -49891;20262172;179737828;300000 -49892;20259761;179740239;300000 -49893;20257351;179742649;300000 -49894;20254940;179745060;300000 -49895;20252530;179747470;300000 -49896;20250120;179749880;300000 -49897;20247710;179752290;300000 -49898;20245300;179754700;300000 -49899;20242891;179757109;300000 -49900;20240481;179759519;300000 -49901;20238071;179761929;300000 -49902;20235662;179764338;300000 -49903;20233253;179766747;300000 -49904;20230843;179769157;300000 -49905;20228434;179771566;300000 -49906;20226025;179773975;300000 -49907;20223616;179776384;300000 -49908;20221207;179778793;300000 -49909;20218798;179781202;300000 -49910;20216390;179783610;300000 -49911;20213981;179786019;300000 -49912;20211572;179788428;300000 -49913;20209164;179790836;300000 -49914;20206756;179793244;300000 -49915;20204347;179795653;300000 -49916;20201939;179798061;300000 -49917;20199531;179800469;300000 -49918;20197123;179802877;300000 -49919;20194715;179805285;300000 -49920;20192308;179807692;300000 -49921;20189900;179810100;300000 -49922;20187492;179812508;300000 -49923;20185085;179814915;300000 -49924;20182678;179817322;300000 -49925;20180270;179819730;300000 -49926;20177863;179822137;300000 -49927;20175456;179824544;300000 -49928;20173049;179826951;300000 -49929;20170642;179829358;300000 -49930;20168236;179831764;300000 -49931;20165829;179834171;300000 -49932;20163422;179836578;300000 -49933;20161016;179838984;300000 -49934;20158609;179841391;300000 -49935;20156203;179843797;300000 -49936;20153797;179846203;300000 -49937;20151391;179848609;300000 -49938;20148985;179851015;300000 -49939;20146579;179853421;300000 -49940;20144173;179855827;300000 -49941;20141767;179858233;300000 -49942;20139362;179860638;300000 -49943;20136956;179863044;300000 -49944;20134551;179865449;300000 -49945;20132145;179867855;300000 -49946;20129740;179870260;300000 -49947;20127335;179872665;300000 -49948;20124930;179875070;300000 -49949;20122525;179877475;300000 -49950;20120120;179879880;300000 -49951;20117715;179882285;300000 -49952;20115311;179884689;300000 -49953;20112906;179887094;300000 -49954;20110502;179889498;300000 -49955;20108097;179891903;300000 -49956;20105693;179894307;300000 -49957;20103289;179896711;300000 -49958;20100885;179899115;300000 -49959;20098481;179901519;300000 -49960;20096077;179903923;300000 -49961;20093673;179906327;300000 -49962;20091269;179908731;300000 -49963;20088866;179911134;300000 -49964;20086462;179913538;300000 -49965;20084059;179915941;300000 -49966;20081656;179918344;300000 -49967;20079252;179920748;300000 -49968;20076849;179923151;300000 -49969;20074446;179925554;300000 -49970;20072043;179927957;300000 -49971;20069640;179930360;300000 -49972;20067238;179932762;300000 -49973;20064835;179935165;300000 -49974;20062432;179937568;300000 -49975;20060030;179939970;300000 -49976;20057628;179942372;300000 -49977;20055225;179944775;300000 -49978;20052823;179947177;300000 -49979;20050421;179949579;300000 -49980;20048019;179951981;300000 -49981;20045617;179954383;300000 -49982;20043216;179956784;300000 -49983;20040814;179959186;300000 -49984;20038412;179961588;300000 -49985;20036011;179963989;300000 -49986;20033609;179966391;300000 -49987;20031208;179968792;300000 -49988;20028807;179971193;300000 -49989;20026406;179973594;300000 -49990;20024005;179975995;300000 -49991;20021604;179978396;300000 -49992;20019203;179980797;300000 -49993;20016802;179983198;300000 -49994;20014402;179985598;300000 -49995;20012001;179987999;300000 -49996;20009601;179990399;300000 -49997;20007200;179992800;300000 -49998;20004800;179995200;300000 -49999;20002400;179997600;300000 -50000;20000000;180000000;300000 -50001;19997600;180002400;300000 -50002;19995200;180004800;300000 -50003;19992800;180007200;300000 -50004;19990401;180009599;300000 -50005;19988001;180011999;300000 -50006;19985602;180014398;300000 -50007;19983202;180016798;300000 -50008;19980803;180019197;300000 -50009;19978404;180021596;300000 -50010;19976005;180023995;300000 -50011;19973606;180026394;300000 -50012;19971207;180028793;300000 -50013;19968808;180031192;300000 -50014;19966409;180033591;300000 -50015;19964011;180035989;300000 -50016;19961612;180038388;300000 -50017;19959214;180040786;300000 -50018;19956816;180043184;300000 -50019;19954417;180045583;300000 -50020;19952019;180047981;300000 -50021;19949621;180050379;300000 -50022;19947223;180052777;300000 -50023;19944825;180055175;300000 -50024;19942428;180057572;300000 -50025;19940030;180059970;300000 -50026;19937632;180062368;300000 -50027;19935235;180064765;300000 -50028;19932838;180067162;300000 -50029;19930440;180069560;300000 -50030;19928043;180071957;300000 -50031;19925646;180074354;300000 -50032;19923249;180076751;300000 -50033;19920852;180079148;300000 -50034;19918455;180081545;300000 -50035;19916059;180083941;300000 -50036;19913662;180086338;300000 -50037;19911266;180088734;300000 -50038;19908869;180091131;300000 -50039;19906473;180093527;300000 -50040;19904077;180095923;300000 -50041;19901681;180098319;300000 -50042;19899285;180100715;300000 -50043;19896889;180103111;300000 -50044;19894493;180105507;300000 -50045;19892097;180107903;300000 -50046;19889701;180110299;300000 -50047;19887306;180112694;300000 -50048;19884910;180115090;300000 -50049;19882515;180117485;300000 -50050;19880120;180119880;300000 -50051;19877725;180122275;300000 -50052;19875330;180124670;300000 -50053;19872935;180127065;300000 -50054;19870540;180129460;300000 -50055;19868145;180131855;300000 -50056;19865750;180134250;300000 -50057;19863356;180136644;300000 -50058;19860961;180139039;300000 -50059;19858567;180141433;300000 -50060;19856173;180143827;300000 -50061;19853778;180146222;300000 -50062;19851384;180148616;300000 -50063;19848990;180151010;300000 -50064;19846596;180153404;300000 -50065;19844203;180155797;300000 -50066;19841809;180158191;300000 -50067;19839415;180160585;300000 -50068;19837022;180162978;300000 -50069;19834628;180165372;300000 -50070;19832235;180167765;300000 -50071;19829842;180170158;300000 -50072;19827448;180172552;300000 -50073;19825055;180174945;300000 -50074;19822662;180177338;300000 -50075;19820270;180179730;300000 -50076;19817877;180182123;300000 -50077;19815484;180184516;300000 -50078;19813092;180186908;300000 -50079;19810699;180189301;300000 -50080;19808307;180191693;300000 -50081;19805914;180194086;300000 -50082;19803522;180196478;300000 -50083;19801130;180198870;300000 -50084;19798738;180201262;300000 -50085;19796346;180203654;300000 -50086;19793954;180206046;300000 -50087;19791563;180208437;300000 -50088;19789171;180210829;300000 -50089;19786780;180213220;300000 -50090;19784388;180215612;300000 -50091;19781997;180218003;300000 -50092;19779606;180220394;300000 -50093;19777214;180222786;300000 -50094;19774823;180225177;300000 -50095;19772432;180227568;300000 -50096;19770042;180229958;300000 -50097;19767651;180232349;300000 -50098;19765260;180234740;300000 -50099;19762870;180237130;300000 -50100;19760479;180239521;300000 -50101;19758089;180241911;300000 -50102;19755698;180244302;300000 -50103;19753308;180246692;300000 -50104;19750918;180249082;300000 -50105;19748528;180251472;300000 -50106;19746138;180253862;300000 -50107;19743748;180256252;300000 -50108;19741359;180258641;300000 -50109;19738969;180261031;300000 -50110;19736580;180263420;300000 -50111;19734190;180265810;300000 -50112;19731801;180268199;300000 -50113;19729412;180270588;300000 -50114;19727022;180272978;300000 -50115;19724633;180275367;300000 -50116;19722244;180277756;300000 -50117;19719856;180280144;300000 -50118;19717467;180282533;300000 -50119;19715078;180284922;300000 -50120;19712690;180287310;300000 -50121;19710301;180289699;300000 -50122;19707913;180292087;300000 -50123;19705524;180294476;300000 -50124;19703136;180296864;300000 -50125;19700748;180299252;300000 -50126;19698360;180301640;300000 -50127;19695972;180304028;300000 -50128;19693584;180306416;300000 -50129;19691197;180308803;300000 -50130;19688809;180311191;300000 -50131;19686422;180313578;300000 -50132;19684034;180315966;300000 -50133;19681647;180318353;300000 -50134;19679260;180320740;300000 -50135;19676872;180323128;300000 -50136;19674485;180325515;300000 -50137;19672098;180327902;300000 -50138;19669712;180330288;300000 -50139;19667325;180332675;300000 -50140;19664938;180335062;300000 -50141;19662552;180337448;300000 -50142;19660165;180339835;300000 -50143;19657779;180342221;300000 -50144;19655392;180344608;300000 -50145;19653006;180346994;300000 -50146;19650620;180349380;300000 -50147;19648234;180351766;300000 -50148;19645848;180354152;300000 -50149;19643462;180356538;300000 -50150;19641077;180358923;300000 -50151;19638691;180361309;300000 -50152;19636306;180363694;300000 -50153;19633920;180366080;300000 -50154;19631535;180368465;300000 -50155;19629150;180370850;300000 -50156;19626764;180373236;300000 -50157;19624379;180375621;300000 -50158;19621994;180378006;300000 -50159;19619610;180380390;300000 -50160;19617225;180382775;300000 -50161;19614840;180385160;300000 -50162;19612456;180387544;300000 -50163;19610071;180389929;300000 -50164;19607687;180392313;300000 -50165;19605303;180394697;300000 -50166;19602918;180397082;300000 -50167;19600534;180399466;300000 -50168;19598150;180401850;300000 -50169;19595766;180404234;300000 -50170;19593382;180406618;300000 -50171;19590999;180409001;300000 -50172;19588615;180411385;300000 -50173;19586232;180413768;300000 -50174;19583848;180416152;300000 -50175;19581465;180418535;300000 -50176;19579082;180420918;300000 -50177;19576698;180423302;300000 -50178;19574315;180425685;300000 -50179;19571932;180428068;300000 -50180;19569550;180430450;300000 -50181;19567167;180432833;300000 -50182;19564784;180435216;300000 -50183;19562402;180437598;300000 -50184;19560019;180439981;300000 -50185;19557637;180442363;300000 -50186;19555254;180444746;300000 -50187;19552872;180447128;300000 -50188;19550490;180449510;300000 -50189;19548108;180451892;300000 -50190;19545726;180454274;300000 -50191;19543344;180456656;300000 -50192;19540963;180459037;300000 -50193;19538581;180461419;300000 -50194;19536200;180463800;300000 -50195;19533818;180466182;300000 -50196;19531437;180468563;300000 -50197;19529056;180470944;300000 -50198;19526674;180473326;300000 -50199;19524293;180475707;300000 -50200;19521912;180478088;300000 -50201;19519531;180480469;300000 -50202;19517151;180482849;300000 -50203;19514770;180485230;300000 -50204;19512389;180487611;300000 -50205;19510009;180489991;300000 -50206;19507629;180492371;300000 -50207;19505248;180494752;300000 -50208;19502868;180497132;300000 -50209;19500488;180499512;300000 -50210;19498108;180501892;300000 -50211;19495728;180504272;300000 -50212;19493348;180506652;300000 -50213;19490968;180509032;300000 -50214;19488589;180511411;300000 -50215;19486209;180513791;300000 -50216;19483830;180516170;300000 -50217;19481451;180518549;300000 -50218;19479071;180520929;300000 -50219;19476692;180523308;300000 -50220;19474313;180525687;300000 -50221;19471934;180528066;300000 -50222;19469555;180530445;300000 -50223;19467176;180532824;300000 -50224;19464798;180535202;300000 -50225;19462419;180537581;300000 -50226;19460041;180539959;300000 -50227;19457662;180542338;300000 -50228;19455284;180544716;300000 -50229;19452906;180547094;300000 -50230;19450528;180549472;300000 -50231;19448150;180551850;300000 -50232;19445772;180554228;300000 -50233;19443394;180556606;300000 -50234;19441016;180558984;300000 -50235;19438638;180561362;300000 -50236;19436261;180563739;300000 -50237;19433883;180566117;300000 -50238;19431506;180568494;300000 -50239;19429129;180570871;300000 -50240;19426752;180573248;300000 -50241;19424375;180575625;300000 -50242;19421998;180578002;300000 -50243;19419621;180580379;300000 -50244;19417244;180582756;300000 -50245;19414867;180585133;300000 -50246;19412491;180587509;300000 -50247;19410114;180589886;300000 -50248;19407738;180592262;300000 -50249;19405361;180594639;300000 -50250;19402985;180597015;300000 -50251;19400609;180599391;300000 -50252;19398233;180601767;300000 -50253;19395857;180604143;300000 -50254;19393481;180606519;300000 -50255;19391105;180608895;300000 -50256;19388730;180611270;300000 -50257;19386354;180613646;300000 -50258;19383979;180616021;300000 -50259;19381603;180618397;300000 -50260;19379228;180620772;300000 -50261;19376853;180623147;300000 -50262;19374478;180625522;300000 -50263;19372103;180627897;300000 -50264;19369728;180630272;300000 -50265;19367353;180632647;300000 -50266;19364978;180635022;300000 -50267;19362604;180637396;300000 -50268;19360229;180639771;300000 -50269;19357855;180642145;300000 -50270;19355480;180644520;300000 -50271;19353106;180646894;300000 -50272;19350732;180649268;300000 -50273;19348358;180651642;300000 -50274;19345984;180654016;300000 -50275;19343610;180656390;300000 -50276;19341236;180658764;300000 -50277;19338863;180661137;300000 -50278;19336489;180663511;300000 -50279;19334116;180665884;300000 -50280;19331742;180668258;300000 -50281;19329369;180670631;300000 -50282;19326996;180673004;300000 -50283;19324623;180675377;300000 -50284;19322250;180677750;300000 -50285;19319877;180680123;300000 -50286;19317504;180682496;300000 -50287;19315131;180684869;300000 -50288;19312759;180687241;300000 -50289;19310386;180689614;300000 -50290;19308014;180691986;300000 -50291;19305641;180694359;300000 -50292;19303269;180696731;300000 -50293;19300897;180699103;300000 -50294;19298525;180701475;300000 -50295;19296153;180703847;300000 -50296;19293781;180706219;300000 -50297;19291409;180708591;300000 -50298;19289037;180710963;300000 -50299;19286666;180713334;300000 -50300;19284294;180715706;300000 -50301;19281923;180718077;300000 -50302;19279552;180720448;300000 -50303;19277180;180722820;300000 -50304;19274809;180725191;300000 -50305;19272438;180727562;300000 -50306;19270067;180729933;300000 -50307;19267696;180732304;300000 -50308;19265326;180734674;300000 -50309;19262955;180737045;300000 -50310;19260584;180739416;300000 -50311;19258214;180741786;300000 -50312;19255844;180744156;300000 -50313;19253473;180746527;300000 -50314;19251103;180748897;300000 -50315;19248733;180751267;300000 -50316;19246363;180753637;300000 -50317;19243993;180756007;300000 -50318;19241623;180758377;300000 -50319;19239254;180760746;300000 -50320;19236884;180763116;300000 -50321;19234514;180765486;300000 -50322;19232145;180767855;300000 -50323;19229776;180770224;300000 -50324;19227406;180772594;300000 -50325;19225037;180774963;300000 -50326;19222668;180777332;300000 -50327;19220299;180779701;300000 -50328;19217930;180782070;300000 -50329;19215562;180784438;300000 -50330;19213193;180786807;300000 -50331;19210824;180789176;300000 -50332;19208456;180791544;300000 -50333;19206087;180793913;300000 -50334;19203719;180796281;300000 -50335;19201351;180798649;300000 -50336;19198983;180801017;300000 -50337;19196615;180803385;300000 -50338;19194247;180805753;300000 -50339;19191879;180808121;300000 -50340;19189511;180810489;300000 -50341;19187144;180812856;300000 -50342;19184776;180815224;300000 -50343;19182409;180817591;300000 -50344;19180041;180819959;300000 -50345;19177674;180822326;300000 -50346;19175307;180824693;300000 -50347;19172940;180827060;300000 -50348;19170573;180829427;300000 -50349;19168206;180831794;300000 -50350;19165839;180834161;300000 -50351;19163472;180836528;300000 -50352;19161106;180838894;300000 -50353;19158739;180841261;300000 -50354;19156373;180843627;300000 -50355;19154007;180845993;300000 -50356;19151640;180848360;300000 -50357;19149274;180850726;300000 -50358;19146908;180853092;300000 -50359;19144542;180855458;300000 -50360;19142176;180857824;300000 -50361;19139811;180860189;300000 -50362;19137445;180862555;300000 -50363;19135079;180864921;300000 -50364;19132714;180867286;300000 -50365;19130348;180869652;300000 -50366;19127983;180872017;300000 -50367;19125618;180874382;300000 -50368;19123253;180876747;300000 -50369;19120888;180879112;300000 -50370;19118523;180881477;300000 -50371;19116158;180883842;300000 -50372;19113793;180886207;300000 -50373;19111429;180888571;300000 -50374;19109064;180890936;300000 -50375;19106700;180893300;300000 -50376;19104335;180895665;300000 -50377;19101971;180898029;300000 -50378;19099607;180900393;300000 -50379;19097243;180902757;300000 -50380;19094879;180905121;300000 -50381;19092515;180907485;300000 -50382;19090151;180909849;300000 -50383;19087788;180912212;300000 -50384;19085424;180914576;300000 -50385;19083060;180916940;300000 -50386;19080697;180919303;300000 -50387;19078334;180921666;300000 -50388;19075970;180924030;300000 -50389;19073607;180926393;300000 -50390;19071244;180928756;300000 -50391;19068881;180931119;300000 -50392;19066518;180933482;300000 -50393;19064156;180935844;300000 -50394;19061793;180938207;300000 -50395;19059430;180940570;300000 -50396;19057068;180942932;300000 -50397;19054706;180945294;300000 -50398;19052343;180947657;300000 -50399;19049981;180950019;300000 -50400;19047619;180952381;300000 -50401;19045257;180954743;300000 -50402;19042895;180957105;300000 -50403;19040533;180959467;300000 -50404;19038172;180961828;300000 -50405;19035810;180964190;300000 -50406;19033448;180966552;300000 -50407;19031087;180968913;300000 -50408;19028726;180971274;300000 -50409;19026364;180973636;300000 -50410;19024003;180975997;300000 -50411;19021642;180978358;300000 -50412;19019281;180980719;300000 -50413;19016920;180983080;300000 -50414;19014559;180985441;300000 -50415;19012199;180987801;300000 -50416;19009838;180990162;300000 -50417;19007478;180992522;300000 -50418;19005117;180994883;300000 -50419;19002757;180997243;300000 -50420;19000397;180999603;300000 -50421;18998037;181001963;300000 -50422;18995676;181004324;300000 -50423;18993317;181006683;300000 -50424;18990957;181009043;300000 -50425;18988597;181011403;300000 -50426;18986237;181013763;300000 -50427;18983878;181016122;300000 -50428;18981518;181018482;300000 -50429;18979159;181020841;300000 -50430;18976800;181023200;300000 -50431;18974440;181025560;300000 -50432;18972081;181027919;300000 -50433;18969722;181030278;300000 -50434;18967363;181032637;300000 -50435;18965004;181034996;300000 -50436;18962646;181037354;300000 -50437;18960287;181039713;300000 -50438;18957929;181042071;300000 -50439;18955570;181044430;300000 -50440;18953212;181046788;300000 -50441;18950853;181049147;300000 -50442;18948495;181051505;300000 -50443;18946137;181053863;300000 -50444;18943779;181056221;300000 -50445;18941421;181058579;300000 -50446;18939064;181060936;300000 -50447;18936706;181063294;300000 -50448;18934348;181065652;300000 -50449;18931991;181068009;300000 -50450;18929633;181070367;300000 -50451;18927276;181072724;300000 -50452;18924919;181075081;300000 -50453;18922562;181077438;300000 -50454;18920205;181079795;300000 -50455;18917848;181082152;300000 -50456;18915491;181084509;300000 -50457;18913134;181086866;300000 -50458;18910777;181089223;300000 -50459;18908421;181091579;300000 -50460;18906064;181093936;300000 -50461;18903708;181096292;300000 -50462;18901352;181098648;300000 -50463;18898995;181101005;300000 -50464;18896639;181103361;300000 -50465;18894283;181105717;300000 -50466;18891927;181108073;300000 -50467;18889571;181110429;300000 -50468;18887216;181112784;300000 -50469;18884860;181115140;300000 -50470;18882504;181117496;300000 -50471;18880149;181119851;300000 -50472;18877794;181122206;300000 -50473;18875438;181124562;300000 -50474;18873083;181126917;300000 -50475;18870728;181129272;300000 -50476;18868373;181131627;300000 -50477;18866018;181133982;300000 -50478;18863663;181136337;300000 -50479;18861309;181138691;300000 -50480;18858954;181141046;300000 -50481;18856600;181143400;300000 -50482;18854245;181145755;300000 -50483;18851891;181148109;300000 -50484;18849536;181150464;300000 -50485;18847182;181152818;300000 -50486;18844828;181155172;300000 -50487;18842474;181157526;300000 -50488;18840120;181159880;300000 -50489;18837767;181162233;300000 -50490;18835413;181164587;300000 -50491;18833059;181166941;300000 -50492;18830706;181169294;300000 -50493;18828352;181171648;300000 -50494;18825999;181174001;300000 -50495;18823646;181176354;300000 -50496;18821293;181178707;300000 -50497;18818940;181181060;300000 -50498;18816587;181183413;300000 -50499;18814234;181185766;300000 -50500;18811881;181188119;300000 -50501;18809529;181190471;300000 -50502;18807176;181192824;300000 -50503;18804823;181195177;300000 -50504;18802471;181197529;300000 -50505;18800119;181199881;300000 -50506;18797767;181202233;300000 -50507;18795414;181204586;300000 -50508;18793062;181206938;300000 -50509;18790711;181209289;300000 -50510;18788359;181211641;300000 -50511;18786007;181213993;300000 -50512;18783655;181216345;300000 -50513;18781304;181218696;300000 -50514;18778952;181221048;300000 -50515;18776601;181223399;300000 -50516;18774250;181225750;300000 -50517;18771899;181228101;300000 -50518;18769547;181230453;300000 -50519;18767197;181232803;300000 -50520;18764846;181235154;300000 -50521;18762495;181237505;300000 -50522;18760144;181239856;300000 -50523;18757793;181242207;300000 -50524;18755443;181244557;300000 -50525;18753093;181246907;300000 -50526;18750742;181249258;300000 -50527;18748392;181251608;300000 -50528;18746042;181253958;300000 -50529;18743692;181256308;300000 -50530;18741342;181258658;300000 -50531;18738992;181261008;300000 -50532;18736642;181263358;300000 -50533;18734292;181265708;300000 -50534;18731943;181268057;300000 -50535;18729593;181270407;300000 -50536;18727244;181272756;300000 -50537;18724895;181275105;300000 -50538;18722545;181277455;300000 -50539;18720196;181279804;300000 -50540;18717847;181282153;300000 -50541;18715498;181284502;300000 -50542;18713149;181286851;300000 -50543;18710801;181289199;300000 -50544;18708452;181291548;300000 -50545;18706103;181293897;300000 -50546;18703755;181296245;300000 -50547;18701407;181298593;300000 -50548;18699058;181300942;300000 -50549;18696710;181303290;300000 -50550;18694362;181305638;300000 -50551;18692014;181307986;300000 -50552;18689666;181310334;300000 -50553;18687318;181312682;300000 -50554;18684971;181315029;300000 -50555;18682623;181317377;300000 -50556;18680275;181319725;300000 -50557;18677928;181322072;300000 -50558;18675581;181324419;300000 -50559;18673233;181326767;300000 -50560;18670886;181329114;300000 -50561;18668539;181331461;300000 -50562;18666192;181333808;300000 -50563;18663845;181336155;300000 -50564;18661498;181338502;300000 -50565;18659152;181340848;300000 -50566;18656805;181343195;300000 -50567;18654458;181345542;300000 -50568;18652112;181347888;300000 -50569;18649766;181350234;300000 -50570;18647419;181352581;300000 -50571;18645073;181354927;300000 -50572;18642727;181357273;300000 -50573;18640381;181359619;300000 -50574;18638035;181361965;300000 -50575;18635690;181364310;300000 -50576;18633344;181366656;300000 -50577;18630998;181369002;300000 -50578;18628653;181371347;300000 -50579;18626307;181373693;300000 -50580;18623962;181376038;300000 -50581;18621617;181378383;300000 -50582;18619272;181380728;300000 -50583;18616927;181383073;300000 -50584;18614582;181385418;300000 -50585;18612237;181387763;300000 -50586;18609892;181390108;300000 -50587;18607547;181392453;300000 -50588;18605203;181394797;300000 -50589;18602858;181397142;300000 -50590;18600514;181399486;300000 -50591;18598170;181401830;300000 -50592;18595825;181404175;300000 -50593;18593481;181406519;300000 -50594;18591137;181408863;300000 -50595;18588793;181411207;300000 -50596;18586450;181413550;300000 -50597;18584106;181415894;300000 -50598;18581762;181418238;300000 -50599;18579419;181420581;300000 -50600;18577075;181422925;300000 -50601;18574732;181425268;300000 -50602;18572388;181427612;300000 -50603;18570045;181429955;300000 -50604;18567702;181432298;300000 -50605;18565359;181434641;300000 -50606;18563016;181436984;300000 -50607;18560673;181439327;300000 -50608;18558331;181441669;300000 -50609;18555988;181444012;300000 -50610;18553646;181446354;300000 -50611;18551303;181448697;300000 -50612;18548961;181451039;300000 -50613;18546618;181453382;300000 -50614;18544276;181455724;300000 -50615;18541934;181458066;300000 -50616;18539592;181460408;300000 -50617;18537250;181462750;300000 -50618;18534909;181465091;300000 -50619;18532567;181467433;300000 -50620;18530225;181469775;300000 -50621;18527884;181472116;300000 -50622;18525542;181474458;300000 -50623;18523201;181476799;300000 -50624;18520860;181479140;300000 -50625;18518519;181481481;300000 -50626;18516177;181483823;300000 -50627;18513836;181486164;300000 -50628;18511496;181488504;300000 -50629;18509155;181490845;300000 -50630;18506814;181493186;300000 -50631;18504474;181495526;300000 -50632;18502133;181497867;300000 -50633;18499793;181500207;300000 -50634;18497452;181502548;300000 -50635;18495112;181504888;300000 -50636;18492772;181507228;300000 -50637;18490432;181509568;300000 -50638;18488092;181511908;300000 -50639;18485752;181514248;300000 -50640;18483412;181516588;300000 -50641;18481073;181518927;300000 -50642;18478733;181521267;300000 -50643;18476394;181523606;300000 -50644;18474054;181525946;300000 -50645;18471715;181528285;300000 -50646;18469376;181530624;300000 -50647;18467037;181532963;300000 -50648;18464698;181535302;300000 -50649;18462359;181537641;300000 -50650;18460020;181539980;300000 -50651;18457681;181542319;300000 -50652;18455342;181544658;300000 -50653;18453004;181546996;300000 -50654;18450665;181549335;300000 -50655;18448327;181551673;300000 -50656;18445989;181554011;300000 -50657;18443650;181556350;300000 -50658;18441312;181558688;300000 -50659;18438974;181561026;300000 -50660;18436636;181563364;300000 -50661;18434299;181565701;300000 -50662;18431961;181568039;300000 -50663;18429623;181570377;300000 -50664;18427286;181572714;300000 -50665;18424948;181575052;300000 -50666;18422611;181577389;300000 -50667;18420274;181579726;300000 -50668;18417936;181582064;300000 -50669;18415599;181584401;300000 -50670;18413262;181586738;300000 -50671;18410925;181589075;300000 -50672;18408589;181591411;300000 -50673;18406252;181593748;300000 -50674;18403915;181596085;300000 -50675;18401579;181598421;300000 -50676;18399242;181600758;300000 -50677;18396906;181603094;300000 -50678;18394570;181605430;300000 -50679;18392233;181607767;300000 -50680;18389897;181610103;300000 -50681;18387561;181612439;300000 -50682;18385226;181614774;300000 -50683;18382890;181617110;300000 -50684;18380554;181619446;300000 -50685;18378218;181621782;300000 -50686;18375883;181624117;300000 -50687;18373547;181626453;300000 -50688;18371212;181628788;300000 -50689;18368877;181631123;300000 -50690;18366542;181633458;300000 -50691;18364207;181635793;300000 -50692;18361872;181638128;300000 -50693;18359537;181640463;300000 -50694;18357202;181642798;300000 -50695;18354867;181645133;300000 -50696;18352533;181647467;300000 -50697;18350198;181649802;300000 -50698;18347864;181652136;300000 -50699;18345529;181654471;300000 -50700;18343195;181656805;300000 -50701;18340861;181659139;300000 -50702;18338527;181661473;300000 -50703;18336193;181663807;300000 -50704;18333859;181666141;300000 -50705;18331525;181668475;300000 -50706;18329192;181670808;300000 -50707;18326858;181673142;300000 -50708;18324525;181675475;300000 -50709;18322191;181677809;300000 -50710;18319858;181680142;300000 -50711;18317525;181682475;300000 -50712;18315192;181684808;300000 -50713;18312859;181687141;300000 -50714;18310526;181689474;300000 -50715;18308193;181691807;300000 -50716;18305860;181694140;300000 -50717;18303527;181696473;300000 -50718;18301195;181698805;300000 -50719;18298862;181701138;300000 -50720;18296530;181703470;300000 -50721;18294198;181705802;300000 -50722;18291865;181708135;300000 -50723;18289533;181710467;300000 -50724;18287201;181712799;300000 -50725;18284869;181715131;300000 -50726;18282538;181717462;300000 -50727;18280206;181719794;300000 -50728;18277874;181722126;300000 -50729;18275543;181724457;300000 -50730;18273211;181726789;300000 -50731;18270880;181729120;300000 -50732;18268548;181731452;300000 -50733;18266217;181733783;300000 -50734;18263886;181736114;300000 -50735;18261555;181738445;300000 -50736;18259224;181740776;300000 -50737;18256893;181743107;300000 -50738;18254563;181745437;300000 -50739;18252232;181747768;300000 -50740;18249901;181750099;300000 -50741;18247571;181752429;300000 -50742;18245241;181754759;300000 -50743;18242910;181757090;300000 -50744;18240580;181759420;300000 -50745;18238250;181761750;300000 -50746;18235920;181764080;300000 -50747;18233590;181766410;300000 -50748;18231260;181768740;300000 -50749;18228931;181771069;300000 -50750;18226601;181773399;300000 -50751;18224271;181775729;300000 -50752;18221942;181778058;300000 -50753;18219613;181780387;300000 -50754;18217283;181782717;300000 -50755;18214954;181785046;300000 -50756;18212625;181787375;300000 -50757;18210296;181789704;300000 -50758;18207967;181792033;300000 -50759;18205638;181794362;300000 -50760;18203310;181796690;300000 -50761;18200981;181799019;300000 -50762;18198653;181801347;300000 -50763;18196324;181803676;300000 -50764;18193996;181806004;300000 -50765;18191667;181808333;300000 -50766;18189339;181810661;300000 -50767;18187011;181812989;300000 -50768;18184683;181815317;300000 -50769;18182355;181817645;300000 -50770;18180028;181819972;300000 -50771;18177700;181822300;300000 -50772;18175372;181824628;300000 -50773;18173045;181826955;300000 -50774;18170717;181829283;300000 -50775;18168390;181831610;300000 -50776;18166063;181833937;300000 -50777;18163736;181836264;300000 -50778;18161408;181838592;300000 -50779;18159082;181840918;300000 -50780;18156755;181843245;300000 -50781;18154428;181845572;300000 -50782;18152101;181847899;300000 -50783;18149775;181850225;300000 -50784;18147448;181852552;300000 -50785;18145122;181854878;300000 -50786;18142795;181857205;300000 -50787;18140469;181859531;300000 -50788;18138143;181861857;300000 -50789;18135817;181864183;300000 -50790;18133491;181866509;300000 -50791;18131165;181868835;300000 -50792;18128839;181871161;300000 -50793;18126513;181873487;300000 -50794;18124188;181875812;300000 -50795;18121862;181878138;300000 -50796;18119537;181880463;300000 -50797;18117212;181882788;300000 -50798;18114886;181885114;300000 -50799;18112561;181887439;300000 -50800;18110236;181889764;300000 -50801;18107911;181892089;300000 -50802;18105586;181894414;300000 -50803;18103262;181896738;300000 -50804;18100937;181899063;300000 -50805;18098612;181901388;300000 -50806;18096288;181903712;300000 -50807;18093963;181906037;300000 -50808;18091639;181908361;300000 -50809;18089315;181910685;300000 -50810;18086991;181913009;300000 -50811;18084667;181915333;300000 -50812;18082343;181917657;300000 -50813;18080019;181919981;300000 -50814;18077695;181922305;300000 -50815;18075371;181924629;300000 -50816;18073048;181926952;300000 -50817;18070724;181929276;300000 -50818;18068401;181931599;300000 -50819;18066078;181933922;300000 -50820;18063754;181936246;300000 -50821;18061431;181938569;300000 -50822;18059108;181940892;300000 -50823;18056785;181943215;300000 -50824;18054462;181945538;300000 -50825;18052140;181947860;300000 -50826;18049817;181950183;300000 -50827;18047494;181952506;300000 -50828;18045172;181954828;300000 -50829;18042850;181957150;300000 -50830;18040527;181959473;300000 -50831;18038205;181961795;300000 -50832;18035883;181964117;300000 -50833;18033561;181966439;300000 -50834;18031239;181968761;300000 -50835;18028917;181971083;300000 -50836;18026595;181973405;300000 -50837;18024274;181975726;300000 -50838;18021952;181978048;300000 -50839;18019631;181980369;300000 -50840;18017309;181982691;300000 -50841;18014988;181985012;300000 -50842;18012667;181987333;300000 -50843;18010346;181989654;300000 -50844;18008025;181991975;300000 -50845;18005704;181994296;300000 -50846;18003383;181996617;300000 -50847;18001062;181998938;300000 -50848;17998741;182001259;300000 -50849;17996421;182003579;300000 -50850;17994100;182005900;300000 -50851;17991780;182008220;300000 -50852;17989460;182010540;300000 -50853;17987139;182012861;300000 -50854;17984819;182015181;300000 -50855;17982499;182017501;300000 -50856;17980179;182019821;300000 -50857;17977859;182022141;300000 -50858;17975540;182024460;300000 -50859;17973220;182026780;300000 -50860;17970901;182029099;300000 -50861;17968581;182031419;300000 -50862;17966262;182033738;300000 -50863;17963942;182036058;300000 -50864;17961623;182038377;300000 -50865;17959304;182040696;300000 -50866;17956985;182043015;300000 -50867;17954666;182045334;300000 -50868;17952347;182047653;300000 -50869;17950029;182049971;300000 -50870;17947710;182052290;300000 -50871;17945391;182054609;300000 -50872;17943073;182056927;300000 -50873;17940754;182059246;300000 -50874;17938436;182061564;300000 -50875;17936118;182063882;300000 -50876;17933800;182066200;300000 -50877;17931482;182068518;300000 -50878;17929164;182070836;300000 -50879;17926846;182073154;300000 -50880;17924528;182075472;300000 -50881;17922211;182077789;300000 -50882;17919893;182080107;300000 -50883;17917576;182082424;300000 -50884;17915258;182084742;300000 -50885;17912941;182087059;300000 -50886;17910624;182089376;300000 -50887;17908307;182091693;300000 -50888;17905990;182094010;300000 -50889;17903673;182096327;300000 -50890;17901356;182098644;300000 -50891;17899039;182100961;300000 -50892;17896722;182103278;300000 -50893;17894406;182105594;300000 -50894;17892089;182107911;300000 -50895;17889773;182110227;300000 -50896;17887457;182112543;300000 -50897;17885141;182114859;300000 -50898;17882824;182117176;300000 -50899;17880508;182119492;300000 -50900;17878193;182121807;300000 -50901;17875877;182124123;300000 -50902;17873561;182126439;300000 -50903;17871245;182128755;300000 -50904;17868930;182131070;300000 -50905;17866614;182133386;300000 -50906;17864299;182135701;300000 -50907;17861984;182138016;300000 -50908;17859668;182140332;300000 -50909;17857353;182142647;300000 -50910;17855038;182144962;300000 -50911;17852723;182147277;300000 -50912;17850409;182149591;300000 -50913;17848094;182151906;300000 -50914;17845779;182154221;300000 -50915;17843465;182156535;300000 -50916;17841150;182158850;300000 -50917;17838836;182161164;300000 -50918;17836521;182163479;300000 -50919;17834207;182165793;300000 -50920;17831893;182168107;300000 -50921;17829579;182170421;300000 -50922;17827265;182172735;300000 -50923;17824951;182175049;300000 -50924;17822638;182177362;300000 -50925;17820324;182179676;300000 -50926;17818010;182181990;300000 -50927;17815697;182184303;300000 -50928;17813384;182186616;300000 -50929;17811070;182188930;300000 -50930;17808757;182191243;300000 -50931;17806444;182193556;300000 -50932;17804131;182195869;300000 -50933;17801818;182198182;300000 -50934;17799505;182200495;300000 -50935;17797193;182202807;300000 -50936;17794880;182205120;300000 -50937;17792567;182207433;300000 -50938;17790255;182209745;300000 -50939;17787942;182212058;300000 -50940;17785630;182214370;300000 -50941;17783318;182216682;300000 -50942;17781006;182218994;300000 -50943;17778694;182221306;300000 -50944;17776382;182223618;300000 -50945;17774070;182225930;300000 -50946;17771758;182228242;300000 -50947;17769447;182230553;300000 -50948;17767135;182232865;300000 -50949;17764824;182235176;300000 -50950;17762512;182237488;300000 -50951;17760201;182239799;300000 -50952;17757890;182242110;300000 -50953;17755579;182244421;300000 -50954;17753268;182246732;300000 -50955;17750957;182249043;300000 -50956;17748646;182251354;300000 -50957;17746335;182253665;300000 -50958;17744024;182255976;300000 -50959;17741714;182258286;300000 -50960;17739403;182260597;300000 -50961;17737093;182262907;300000 -50962;17734783;182265217;300000 -50963;17732473;182267527;300000 -50964;17730162;182269838;300000 -50965;17727852;182272148;300000 -50966;17725543;182274457;300000 -50967;17723233;182276767;300000 -50968;17720923;182279077;300000 -50969;17718613;182281387;300000 -50970;17716304;182283696;300000 -50971;17713994;182286006;300000 -50972;17711685;182288315;300000 -50973;17709376;182290624;300000 -50974;17707066;182292934;300000 -50975;17704757;182295243;300000 -50976;17702448;182297552;300000 -50977;17700139;182299861;300000 -50978;17697830;182302170;300000 -50979;17695522;182304478;300000 -50980;17693213;182306787;300000 -50981;17690904;182309096;300000 -50982;17688596;182311404;300000 -50983;17686288;182313712;300000 -50984;17683979;182316021;300000 -50985;17681671;182318329;300000 -50986;17679363;182320637;300000 -50987;17677055;182322945;300000 -50988;17674747;182325253;300000 -50989;17672439;182327561;300000 -50990;17670131;182329869;300000 -50991;17667824;182332176;300000 -50992;17665516;182334484;300000 -50993;17663209;182336791;300000 -50994;17660901;182339099;300000 -50995;17658594;182341406;300000 -50996;17656287;182343713;300000 -50997;17653980;182346020;300000 -50998;17651673;182348327;300000 -50999;17649366;182350634;300000 -51000;17647059;182352941;300000 -51001;17644752;182355248;300000 -51002;17642445;182357555;300000 -51003;17640139;182359861;300000 -51004;17637832;182362168;300000 -51005;17635526;182364474;300000 -51006;17633220;182366780;300000 -51007;17630913;182369087;300000 -51008;17628607;182371393;300000 -51009;17626301;182373699;300000 -51010;17623995;182376005;300000 -51011;17621689;182378311;300000 -51012;17619384;182380616;300000 -51013;17617078;182382922;300000 -51014;17614772;182385228;300000 -51015;17612467;182387533;300000 -51016;17610162;182389838;300000 -51017;17607856;182392144;300000 -51018;17605551;182394449;300000 -51019;17603246;182396754;300000 -51020;17600941;182399059;300000 -51021;17598636;182401364;300000 -51022;17596331;182403669;300000 -51023;17594026;182405974;300000 -51024;17591722;182408278;300000 -51025;17589417;182410583;300000 -51026;17587112;182412888;300000 -51027;17584808;182415192;300000 -51028;17582504;182417496;300000 -51029;17580199;182419801;300000 -51030;17577895;182422105;300000 -51031;17575591;182424409;300000 -51032;17573287;182426713;300000 -51033;17570983;182429017;300000 -51034;17568680;182431320;300000 -51035;17566376;182433624;300000 -51036;17564072;182435928;300000 -51037;17561769;182438231;300000 -51038;17559465;182440535;300000 -51039;17557162;182442838;300000 -51040;17554859;182445141;300000 -51041;17552556;182447444;300000 -51042;17550253;182449747;300000 -51043;17547950;182452050;300000 -51044;17545647;182454353;300000 -51045;17543344;182456656;300000 -51046;17541041;182458959;300000 -51047;17538739;182461261;300000 -51048;17536436;182463564;300000 -51049;17534134;182465866;300000 -51050;17531832;182468168;300000 -51051;17529529;182470471;300000 -51052;17527227;182472773;300000 -51053;17524925;182475075;300000 -51054;17522623;182477377;300000 -51055;17520321;182479679;300000 -51056;17518019;182481981;300000 -51057;17515718;182484282;300000 -51058;17513416;182486584;300000 -51059;17511115;182488885;300000 -51060;17508813;182491187;300000 -51061;17506512;182493488;300000 -51062;17504211;182495789;300000 -51063;17501909;182498091;300000 -51064;17499608;182500392;300000 -51065;17497307;182502693;300000 -51066;17495006;182504994;300000 -51067;17492706;182507294;300000 -51068;17490405;182509595;300000 -51069;17488104;182511896;300000 -51070;17485804;182514196;300000 -51071;17483503;182516497;300000 -51072;17481203;182518797;300000 -51073;17478903;182521097;300000 -51074;17476603;182523397;300000 -51075;17474302;182525698;300000 -51076;17472003;182527997;300000 -51077;17469703;182530297;300000 -51078;17467403;182532597;300000 -51079;17465103;182534897;300000 -51080;17462803;182537197;300000 -51081;17460504;182539496;300000 -51082;17458204;182541796;300000 -51083;17455905;182544095;300000 -51084;17453606;182546394;300000 -51085;17451307;182548693;300000 -51086;17449008;182550992;300000 -51087;17446709;182553291;300000 -51088;17444410;182555590;300000 -51089;17442111;182557889;300000 -51090;17439812;182560188;300000 -51091;17437513;182562487;300000 -51092;17435215;182564785;300000 -51093;17432916;182567084;300000 -51094;17430618;182569382;300000 -51095;17428320;182571680;300000 -51096;17426022;182573978;300000 -51097;17423724;182576276;300000 -51098;17421425;182578575;300000 -51099;17419128;182580872;300000 -51100;17416830;182583170;300000 -51101;17414532;182585468;300000 -51102;17412234;182587766;300000 -51103;17409937;182590063;300000 -51104;17407639;182592361;300000 -51105;17405342;182594658;300000 -51106;17403045;182596955;300000 -51107;17400747;182599253;300000 -51108;17398450;182601550;300000 -51109;17396153;182603847;300000 -51110;17393856;182606144;300000 -51111;17391560;182608440;300000 -51112;17389263;182610737;300000 -51113;17386966;182613034;300000 -51114;17384670;182615330;300000 -51115;17382373;182617627;300000 -51116;17380077;182619923;300000 -51117;17377780;182622220;300000 -51118;17375484;182624516;300000 -51119;17373188;182626812;300000 -51120;17370892;182629108;300000 -51121;17368596;182631404;300000 -51122;17366300;182633700;300000 -51123;17364004;182635996;300000 -51124;17361709;182638291;300000 -51125;17359413;182640587;300000 -51126;17357118;182642882;300000 -51127;17354822;182645178;300000 -51128;17352527;182647473;300000 -51129;17350232;182649768;300000 -51130;17347937;182652063;300000 -51131;17345642;182654358;300000 -51132;17343347;182656653;300000 -51133;17341052;182658948;300000 -51134;17338757;182661243;300000 -51135;17336462;182663538;300000 -51136;17334168;182665832;300000 -51137;17331873;182668127;300000 -51138;17329579;182670421;300000 -51139;17327284;182672716;300000 -51140;17324990;182675010;300000 -51141;17322696;182677304;300000 -51142;17320402;182679598;300000 -51143;17318108;182681892;300000 -51144;17315814;182684186;300000 -51145;17313520;182686480;300000 -51146;17311227;182688773;300000 -51147;17308933;182691067;300000 -51148;17306640;182693360;300000 -51149;17304346;182695654;300000 -51150;17302053;182697947;300000 -51151;17299760;182700240;300000 -51152;17297466;182702534;300000 -51153;17295173;182704827;300000 -51154;17292880;182707120;300000 -51155;17290587;182709413;300000 -51156;17288295;182711705;300000 -51157;17286002;182713998;300000 -51158;17283709;182716291;300000 -51159;17281417;182718583;300000 -51160;17279124;182720876;300000 -51161;17276832;182723168;300000 -51162;17274540;182725460;300000 -51163;17272248;182727752;300000 -51164;17269955;182730045;300000 -51165;17267663;182732337;300000 -51166;17265372;182734628;300000 -51167;17263080;182736920;300000 -51168;17260788;182739212;300000 -51169;17258496;182741504;300000 -51170;17256205;182743795;300000 -51171;17253913;182746087;300000 -51172;17251622;182748378;300000 -51173;17249331;182750669;300000 -51174;17247040;182752960;300000 -51175;17244748;182755252;300000 -51176;17242457;182757543;300000 -51177;17240166;182759834;300000 -51178;17237876;182762124;300000 -51179;17235585;182764415;300000 -51180;17233294;182766706;300000 -51181;17231004;182768996;300000 -51182;17228713;182771287;300000 -51183;17226423;182773577;300000 -51184;17224133;182775867;300000 -51185;17221842;182778158;300000 -51186;17219552;182780448;300000 -51187;17217262;182782738;300000 -51188;17214972;182785028;300000 -51189;17212682;182787318;300000 -51190;17210393;182789607;300000 -51191;17208103;182791897;300000 -51192;17205813;182794187;300000 -51193;17203524;182796476;300000 -51194;17201235;182798765;300000 -51195;17198945;182801055;300000 -51196;17196656;182803344;300000 -51197;17194367;182805633;300000 -51198;17192078;182807922;300000 -51199;17189789;182810211;300000 -51200;17187500;182812500;300000 -51201;17185211;182814789;300000 -51202;17182923;182817077;300000 -51203;17180634;182819366;300000 -51204;17178345;182821655;300000 -51205;17176057;182823943;300000 -51206;17173769;182826231;300000 -51207;17171480;182828520;300000 -51208;17169192;182830808;300000 -51209;17166904;182833096;300000 -51210;17164616;182835384;300000 -51211;17162328;182837672;300000 -51212;17160041;182839959;300000 -51213;17157753;182842247;300000 -51214;17155465;182844535;300000 -51215;17153178;182846822;300000 -51216;17150890;182849110;300000 -51217;17148603;182851397;300000 -51218;17146316;182853684;300000 -51219;17144029;182855971;300000 -51220;17141742;182858258;300000 -51221;17139455;182860545;300000 -51222;17137168;182862832;300000 -51223;17134881;182865119;300000 -51224;17132594;182867406;300000 -51225;17130307;182869693;300000 -51226;17128021;182871979;300000 -51227;17125734;182874266;300000 -51228;17123448;182876552;300000 -51229;17121162;182878838;300000 -51230;17118876;182881124;300000 -51231;17116590;182883410;300000 -51232;17114304;182885696;300000 -51233;17112018;182887982;300000 -51234;17109732;182890268;300000 -51235;17107446;182892554;300000 -51236;17105160;182894840;300000 -51237;17102875;182897125;300000 -51238;17100589;182899411;300000 -51239;17098304;182901696;300000 -51240;17096019;182903981;300000 -51241;17093734;182906266;300000 -51242;17091448;182908552;300000 -51243;17089163;182910837;300000 -51244;17086878;182913122;300000 -51245;17084594;182915406;300000 -51246;17082309;182917691;300000 -51247;17080024;182919976;300000 -51248;17077740;182922260;300000 -51249;17075455;182924545;300000 -51250;17073171;182926829;300000 -51251;17070886;182929114;300000 -51252;17068602;182931398;300000 -51253;17066318;182933682;300000 -51254;17064034;182935966;300000 -51255;17061750;182938250;300000 -51256;17059466;182940534;300000 -51257;17057182;182942818;300000 -51258;17054899;182945101;300000 -51259;17052615;182947385;300000 -51260;17050332;182949668;300000 -51261;17048048;182951952;300000 -51262;17045765;182954235;300000 -51263;17043482;182956518;300000 -51264;17041199;182958801;300000 -51265;17038915;182961085;300000 -51266;17036632;182963368;300000 -51267;17034350;182965650;300000 -51268;17032067;182967933;300000 -51269;17029784;182970216;300000 -51270;17027501;182972499;300000 -51271;17025219;182974781;300000 -51272;17022936;182977064;300000 -51273;17020654;182979346;300000 -51274;17018372;182981628;300000 -51275;17016090;182983910;300000 -51276;17013808;182986192;300000 -51277;17011526;182988474;300000 -51278;17009244;182990756;300000 -51279;17006962;182993038;300000 -51280;17004680;182995320;300000 -51281;17002399;182997601;300000 -51282;17000117;182999883;300000 -51283;16997836;183002164;300000 -51284;16995554;183004446;300000 -51285;16993273;183006727;300000 -51286;16990992;183009008;300000 -51287;16988711;183011289;300000 -51288;16986430;183013570;300000 -51289;16984149;183015851;300000 -51290;16981868;183018132;300000 -51291;16979587;183020413;300000 -51292;16977306;183022694;300000 -51293;16975026;183024974;300000 -51294;16972745;183027255;300000 -51295;16970465;183029535;300000 -51296;16968185;183031815;300000 -51297;16965904;183034096;300000 -51298;16963624;183036376;300000 -51299;16961344;183038656;300000 -51300;16959064;183040936;300000 -51301;16956784;183043216;300000 -51302;16954505;183045495;300000 -51303;16952225;183047775;300000 -51304;16949945;183050055;300000 -51305;16947666;183052334;300000 -51306;16945387;183054613;300000 -51307;16943107;183056893;300000 -51308;16940828;183059172;300000 -51309;16938549;183061451;300000 -51310;16936270;183063730;300000 -51311;16933991;183066009;300000 -51312;16931712;183068288;300000 -51313;16929433;183070567;300000 -51314;16927154;183072846;300000 -51315;16924876;183075124;300000 -51316;16922597;183077403;300000 -51317;16920319;183079681;300000 -51318;16918040;183081960;300000 -51319;16915762;183084238;300000 -51320;16913484;183086516;300000 -51321;16911206;183088794;300000 -51322;16908928;183091072;300000 -51323;16906650;183093350;300000 -51324;16904372;183095628;300000 -51325;16902094;183097906;300000 -51326;16899817;183100183;300000 -51327;16897539;183102461;300000 -51328;16895262;183104738;300000 -51329;16892984;183107016;300000 -51330;16890707;183109293;300000 -51331;16888430;183111570;300000 -51332;16886153;183113847;300000 -51333;16883876;183116124;300000 -51334;16881599;183118401;300000 -51335;16879322;183120678;300000 -51336;16877045;183122955;300000 -51337;16874769;183125231;300000 -51338;16872492;183127508;300000 -51339;16870216;183129784;300000 -51340;16867939;183132061;300000 -51341;16865663;183134337;300000 -51342;16863387;183136613;300000 -51343;16861111;183138889;300000 -51344;16858835;183141165;300000 -51345;16856559;183143441;300000 -51346;16854283;183145717;300000 -51347;16852007;183147993;300000 -51348;16849731;183150269;300000 -51349;16847456;183152544;300000 -51350;16845180;183154820;300000 -51351;16842905;183157095;300000 -51352;16840629;183159371;300000 -51353;16838354;183161646;300000 -51354;16836079;183163921;300000 -51355;16833804;183166196;300000 -51356;16831529;183168471;300000 -51357;16829254;183170746;300000 -51358;16826979;183173021;300000 -51359;16824705;183175295;300000 -51360;16822430;183177570;300000 -51361;16820155;183179845;300000 -51362;16817881;183182119;300000 -51363;16815607;183184393;300000 -51364;16813332;183186668;300000 -51365;16811058;183188942;300000 -51366;16808784;183191216;300000 -51367;16806510;183193490;300000 -51368;16804236;183195764;300000 -51369;16801962;183198038;300000 -51370;16799689;183200311;300000 -51371;16797415;183202585;300000 -51372;16795141;183204859;300000 -51373;16792868;183207132;300000 -51374;16790594;183209406;300000 -51375;16788321;183211679;300000 -51376;16786048;183213952;300000 -51377;16783775;183216225;300000 -51378;16781502;183218498;300000 -51379;16779229;183220771;300000 -51380;16776956;183223044;300000 -51381;16774683;183225317;300000 -51382;16772411;183227589;300000 -51383;16770138;183229862;300000 -51384;16767865;183232135;300000 -51385;16765593;183234407;300000 -51386;16763321;183236679;300000 -51387;16761049;183238951;300000 -51388;16758776;183241224;300000 -51389;16756504;183243496;300000 -51390;16754232;183245768;300000 -51391;16751960;183248040;300000 -51392;16749689;183250311;300000 -51393;16747417;183252583;300000 -51394;16745145;183254855;300000 -51395;16742874;183257126;300000 -51396;16740602;183259398;300000 -51397;16738331;183261669;300000 -51398;16736060;183263940;300000 -51399;16733789;183266211;300000 -51400;16731518;183268482;300000 -51401;16729247;183270753;300000 -51402;16726976;183273024;300000 -51403;16724705;183275295;300000 -51404;16722434;183277566;300000 -51405;16720163;183279837;300000 -51406;16717893;183282107;300000 -51407;16715622;183284378;300000 -51408;16713352;183286648;300000 -51409;16711082;183288918;300000 -51410;16708812;183291188;300000 -51411;16706541;183293459;300000 -51412;16704271;183295729;300000 -51413;16702001;183297999;300000 -51414;16699732;183300268;300000 -51415;16697462;183302538;300000 -51416;16695192;183304808;300000 -51417;16692923;183307077;300000 -51418;16690653;183309347;300000 -51419;16688384;183311616;300000 -51420;16686114;183313886;300000 -51421;16683845;183316155;300000 -51422;16681576;183318424;300000 -51423;16679307;183320693;300000 -51424;16677038;183322962;300000 -51425;16674769;183325231;300000 -51426;16672500;183327500;300000 -51427;16670232;183329768;300000 -51428;16667963;183332037;300000 -51429;16665694;183334306;300000 -51430;16663426;183336574;300000 -51431;16661158;183338842;300000 -51432;16658889;183341111;300000 -51433;16656621;183343379;300000 -51434;16654353;183345647;300000 -51435;16652085;183347915;300000 -51436;16649817;183350183;300000 -51437;16647549;183352451;300000 -51438;16645282;183354718;300000 -51439;16643014;183356986;300000 -51440;16640747;183359253;300000 -51441;16638479;183361521;300000 -51442;16636212;183363788;300000 -51443;16633944;183366056;300000 -51444;16631677;183368323;300000 -51445;16629410;183370590;300000 -51446;16627143;183372857;300000 -51447;16624876;183375124;300000 -51448;16622609;183377391;300000 -51449;16620342;183379658;300000 -51450;16618076;183381924;300000 -51451;16615809;183384191;300000 -51452;16613543;183386457;300000 -51453;16611276;183388724;300000 -51454;16609010;183390990;300000 -51455;16606744;183393256;300000 -51456;16604478;183395522;300000 -51457;16602212;183397788;300000 -51458;16599946;183400054;300000 -51459;16597680;183402320;300000 -51460;16595414;183404586;300000 -51461;16593148;183406852;300000 -51462;16590883;183409117;300000 -51463;16588617;183411383;300000 -51464;16586352;183413648;300000 -51465;16584086;183415914;300000 -51466;16581821;183418179;300000 -51467;16579556;183420444;300000 -51468;16577291;183422709;300000 -51469;16575026;183424974;300000 -51470;16572761;183427239;300000 -51471;16570496;183429504;300000 -51472;16568231;183431769;300000 -51473;16565967;183434033;300000 -51474;16563702;183436298;300000 -51475;16561438;183438562;300000 -51476;16559173;183440827;300000 -51477;16556909;183443091;300000 -51478;16554645;183445355;300000 -51479;16552381;183447619;300000 -51480;16550117;183449883;300000 -51481;16547853;183452147;300000 -51482;16545589;183454411;300000 -51483;16543325;183456675;300000 -51484;16541061;183458939;300000 -51485;16538798;183461202;300000 -51486;16536534;183463466;300000 -51487;16534271;183465729;300000 -51488;16532007;183467993;300000 -51489;16529744;183470256;300000 -51490;16527481;183472519;300000 -51491;16525218;183474782;300000 -51492;16522955;183477045;300000 -51493;16520692;183479308;300000 -51494;16518429;183481571;300000 -51495;16516167;183483833;300000 -51496;16513904;183486096;300000 -51497;16511641;183488359;300000 -51498;16509379;183490621;300000 -51499;16507117;183492883;300000 -51500;16504854;183495146;300000 -51501;16502592;183497408;300000 -51502;16500330;183499670;300000 -51503;16498068;183501932;300000 -51504;16495806;183504194;300000 -51505;16493544;183506456;300000 -51506;16491283;183508717;300000 -51507;16489021;183510979;300000 -51508;16486759;183513241;300000 -51509;16484498;183515502;300000 -51510;16482236;183517764;300000 -51511;16479975;183520025;300000 -51512;16477714;183522286;300000 -51513;16475453;183524547;300000 -51514;16473192;183526808;300000 -51515;16470931;183529069;300000 -51516;16468670;183531330;300000 -51517;16466409;183533591;300000 -51518;16464148;183535852;300000 -51519;16461888;183538112;300000 -51520;16459627;183540373;300000 -51521;16457367;183542633;300000 -51522;16455107;183544893;300000 -51523;16452846;183547154;300000 -51524;16450586;183549414;300000 -51525;16448326;183551674;300000 -51526;16446066;183553934;300000 -51527;16443806;183556194;300000 -51528;16441546;183558454;300000 -51529;16439287;183560713;300000 -51530;16437027;183562973;300000 -51531;16434767;183565233;300000 -51532;16432508;183567492;300000 -51533;16430249;183569751;300000 -51534;16427989;183572011;300000 -51535;16425730;183574270;300000 -51536;16423471;183576529;300000 -51537;16421212;183578788;300000 -51538;16418953;183581047;300000 -51539;16416694;183583306;300000 -51540;16414435;183585565;300000 -51541;16412177;183587823;300000 -51542;16409918;183590082;300000 -51543;16407660;183592340;300000 -51544;16405401;183594599;300000 -51545;16403143;183596857;300000 -51546;16400885;183599115;300000 -51547;16398626;183601374;300000 -51548;16396368;183603632;300000 -51549;16394110;183605890;300000 -51550;16391853;183608147;300000 -51551;16389595;183610405;300000 -51552;16387337;183612663;300000 -51553;16385079;183614921;300000 -51554;16382822;183617178;300000 -51555;16380564;183619436;300000 -51556;16378307;183621693;300000 -51557;16376050;183623950;300000 -51558;16373793;183626207;300000 -51559;16371536;183628464;300000 -51560;16369279;183630721;300000 -51561;16367022;183632978;300000 -51562;16364765;183635235;300000 -51563;16362508;183637492;300000 -51564;16360251;183639749;300000 -51565;16357995;183642005;300000 -51566;16355738;183644262;300000 -51567;16353482;183646518;300000 -51568;16351226;183648774;300000 -51569;16348969;183651031;300000 -51570;16346713;183653287;300000 -51571;16344457;183655543;300000 -51572;16342201;183657799;300000 -51573;16339945;183660055;300000 -51574;16337690;183662310;300000 -51575;16335434;183664566;300000 -51576;16333178;183666822;300000 -51577;16330923;183669077;300000 -51578;16328667;183671333;300000 -51579;16326412;183673588;300000 -51580;16324157;183675843;300000 -51581;16321901;183678099;300000 -51582;16319646;183680354;300000 -51583;16317391;183682609;300000 -51584;16315136;183684864;300000 -51585;16312882;183687118;300000 -51586;16310627;183689373;300000 -51587;16308372;183691628;300000 -51588;16306118;183693882;300000 -51589;16303863;183696137;300000 -51590;16301609;183698391;300000 -51591;16299355;183700645;300000 -51592;16297100;183702900;300000 -51593;16294846;183705154;300000 -51594;16292592;183707408;300000 -51595;16290338;183709662;300000 -51596;16288084;183711916;300000 -51597;16285831;183714169;300000 -51598;16283577;183716423;300000 -51599;16281323;183718677;300000 -51600;16279070;183720930;300000 -51601;16276816;183723184;300000 -51602;16274563;183725437;300000 -51603;16272310;183727690;300000 -51604;16270057;183729943;300000 -51605;16267804;183732196;300000 -51606;16265551;183734449;300000 -51607;16263298;183736702;300000 -51608;16261045;183738955;300000 -51609;16258792;183741208;300000 -51610;16256539;183743461;300000 -51611;16254287;183745713;300000 -51612;16252034;183747966;300000 -51613;16249782;183750218;300000 -51614;16247530;183752470;300000 -51615;16245278;183754722;300000 -51616;16243025;183756975;300000 -51617;16240773;183759227;300000 -51618;16238521;183761479;300000 -51619;16236270;183763730;300000 -51620;16234018;183765982;300000 -51621;16231766;183768234;300000 -51622;16229515;183770485;300000 -51623;16227263;183772737;300000 -51624;16225012;183774988;300000 -51625;16222760;183777240;300000 -51626;16220509;183779491;300000 -51627;16218258;183781742;300000 -51628;16216007;183783993;300000 -51629;16213756;183786244;300000 -51630;16211505;183788495;300000 -51631;16209254;183790746;300000 -51632;16207003;183792997;300000 -51633;16204753;183795247;300000 -51634;16202502;183797498;300000 -51635;16200252;183799748;300000 -51636;16198001;183801999;300000 -51637;16195751;183804249;300000 -51638;16193501;183806499;300000 -51639;16191251;183808749;300000 -51640;16189001;183810999;300000 -51641;16186751;183813249;300000 -51642;16184501;183815499;300000 -51643;16182251;183817749;300000 -51644;16180002;183819998;300000 -51645;16177752;183822248;300000 -51646;16175502;183824498;300000 -51647;16173253;183826747;300000 -51648;16171004;183828996;300000 -51649;16168754;183831246;300000 -51650;16166505;183833495;300000 -51651;16164256;183835744;300000 -51652;16162007;183837993;300000 -51653;16159758;183840242;300000 -51654;16157510;183842490;300000 -51655;16155261;183844739;300000 -51656;16153012;183846988;300000 -51657;16150764;183849236;300000 -51658;16148515;183851485;300000 -51659;16146267;183853733;300000 -51660;16144019;183855981;300000 -51661;16141770;183858230;300000 -51662;16139522;183860478;300000 -51663;16137274;183862726;300000 -51664;16135026;183864974;300000 -51665;16132778;183867222;300000 -51666;16130531;183869469;300000 -51667;16128283;183871717;300000 -51668;16126035;183873965;300000 -51669;16123788;183876212;300000 -51670;16121541;183878459;300000 -51671;16119293;183880707;300000 -51672;16117046;183882954;300000 -51673;16114799;183885201;300000 -51674;16112552;183887448;300000 -51675;16110305;183889695;300000 -51676;16108058;183891942;300000 -51677;16105811;183894189;300000 -51678;16103564;183896436;300000 -51679;16101318;183898682;300000 -51680;16099071;183900929;300000 -51681;16096825;183903175;300000 -51682;16094578;183905422;300000 -51683;16092332;183907668;300000 -51684;16090086;183909914;300000 -51685;16087840;183912160;300000 -51686;16085594;183914406;300000 -51687;16083348;183916652;300000 -51688;16081102;183918898;300000 -51689;16078856;183921144;300000 -51690;16076611;183923389;300000 -51691;16074365;183925635;300000 -51692;16072119;183927881;300000 -51693;16069874;183930126;300000 -51694;16067629;183932371;300000 -51695;16065383;183934617;300000 -51696;16063138;183936862;300000 -51697;16060893;183939107;300000 -51698;16058648;183941352;300000 -51699;16056403;183943597;300000 -51700;16054159;183945841;300000 -51701;16051914;183948086;300000 -51702;16049669;183950331;300000 -51703;16047425;183952575;300000 -51704;16045180;183954820;300000 -51705;16042936;183957064;300000 -51706;16040692;183959308;300000 -51707;16038447;183961553;300000 -51708;16036203;183963797;300000 -51709;16033959;183966041;300000 -51710;16031715;183968285;300000 -51711;16029471;183970529;300000 -51712;16027228;183972772;300000 -51713;16024984;183975016;300000 -51714;16022740;183977260;300000 -51715;16020497;183979503;300000 -51716;16018254;183981746;300000 -51717;16016010;183983990;300000 -51718;16013767;183986233;300000 -51719;16011524;183988476;300000 -51720;16009281;183990719;300000 -51721;16007038;183992962;300000 -51722;16004795;183995205;300000 -51723;16002552;183997448;300000 -51724;16000309;183999691;300000 -51725;15998067;184001933;300000 -51726;15995824;184004176;300000 -51727;15993582;184006418;300000 -51728;15991339;184008661;300000 -51729;15989097;184010903;300000 -51730;15986855;184013145;300000 -51731;15984613;184015387;300000 -51732;15982371;184017629;300000 -51733;15980129;184019871;300000 -51734;15977887;184022113;300000 -51735;15975645;184024355;300000 -51736;15973403;184026597;300000 -51737;15971162;184028838;300000 -51738;15968920;184031080;300000 -51739;15966679;184033321;300000 -51740;15964438;184035562;300000 -51741;15962196;184037804;300000 -51742;15959955;184040045;300000 -51743;15957714;184042286;300000 -51744;15955473;184044527;300000 -51745;15953232;184046768;300000 -51746;15950991;184049009;300000 -51747;15948751;184051249;300000 -51748;15946510;184053490;300000 -51749;15944269;184055731;300000 -51750;15942029;184057971;300000 -51751;15939789;184060211;300000 -51752;15937548;184062452;300000 -51753;15935308;184064692;300000 -51754;15933068;184066932;300000 -51755;15930828;184069172;300000 -51756;15928588;184071412;300000 -51757;15926348;184073652;300000 -51758;15924108;184075892;300000 -51759;15921869;184078131;300000 -51760;15919629;184080371;300000 -51761;15917390;184082610;300000 -51762;15915150;184084850;300000 -51763;15912911;184087089;300000 -51764;15910672;184089328;300000 -51765;15908432;184091568;300000 -51766;15906193;184093807;300000 -51767;15903954;184096046;300000 -51768;15901715;184098285;300000 -51769;15899477;184100523;300000 -51770;15897238;184102762;300000 -51771;15894999;184105001;300000 -51772;15892761;184107239;300000 -51773;15890522;184109478;300000 -51774;15888284;184111716;300000 -51775;15886045;184113955;300000 -51776;15883807;184116193;300000 -51777;15881569;184118431;300000 -51778;15879331;184120669;300000 -51779;15877093;184122907;300000 -51780;15874855;184125145;300000 -51781;15872617;184127383;300000 -51782;15870380;184129620;300000 -51783;15868142;184131858;300000 -51784;15865905;184134095;300000 -51785;15863667;184136333;300000 -51786;15861430;184138570;300000 -51787;15859192;184140808;300000 -51788;15856955;184143045;300000 -51789;15854718;184145282;300000 -51790;15852481;184147519;300000 -51791;15850244;184149756;300000 -51792;15848007;184151993;300000 -51793;15845771;184154229;300000 -51794;15843534;184156466;300000 -51795;15841297;184158703;300000 -51796;15839061;184160939;300000 -51797;15836825;184163175;300000 -51798;15834588;184165412;300000 -51799;15832352;184167648;300000 -51800;15830116;184169884;300000 -51801;15827880;184172120;300000 -51802;15825644;184174356;300000 -51803;15823408;184176592;300000 -51804;15821172;184178828;300000 -51805;15818936;184181064;300000 -51806;15816701;184183299;300000 -51807;15814465;184185535;300000 -51808;15812230;184187770;300000 -51809;15809994;184190006;300000 -51810;15807759;184192241;300000 -51811;15805524;184194476;300000 -51812;15803289;184196711;300000 -51813;15801054;184198946;300000 -51814;15798819;184201181;300000 -51815;15796584;184203416;300000 -51816;15794349;184205651;300000 -51817;15792115;184207885;300000 -51818;15789880;184210120;300000 -51819;15787645;184212355;300000 -51820;15785411;184214589;300000 -51821;15783177;184216823;300000 -51822;15780942;184219058;300000 -51823;15778708;184221292;300000 -51824;15776474;184223526;300000 -51825;15774240;184225760;300000 -51826;15772006;184227994;300000 -51827;15769773;184230227;300000 -51828;15767539;184232461;300000 -51829;15765305;184234695;300000 -51830;15763072;184236928;300000 -51831;15760838;184239162;300000 -51832;15758605;184241395;300000 -51833;15756371;184243629;300000 -51834;15754138;184245862;300000 -51835;15751905;184248095;300000 -51836;15749672;184250328;300000 -51837;15747439;184252561;300000 -51838;15745206;184254794;300000 -51839;15742973;184257027;300000 -51840;15740741;184259259;300000 -51841;15738508;184261492;300000 -51842;15736276;184263724;300000 -51843;15734043;184265957;300000 -51844;15731811;184268189;300000 -51845;15729579;184270421;300000 -51846;15727346;184272654;300000 -51847;15725114;184274886;300000 -51848;15722882;184277118;300000 -51849;15720650;184279350;300000 -51850;15718419;184281581;300000 -51851;15716187;184283813;300000 -51852;15713955;184286045;300000 -51853;15711724;184288276;300000 -51854;15709492;184290508;300000 -51855;15707261;184292739;300000 -51856;15705029;184294971;300000 -51857;15702798;184297202;300000 -51858;15700567;184299433;300000 -51859;15698336;184301664;300000 -51860;15696105;184303895;300000 -51861;15693874;184306126;300000 -51862;15691643;184308357;300000 -51863;15689412;184310588;300000 -51864;15687182;184312818;300000 -51865;15684951;184315049;300000 -51866;15682721;184317279;300000 -51867;15680490;184319510;300000 -51868;15678260;184321740;300000 -51869;15676030;184323970;300000 -51870;15673800;184326200;300000 -51871;15671570;184328430;300000 -51872;15669340;184330660;300000 -51873;15667110;184332890;300000 -51874;15664880;184335120;300000 -51875;15662651;184337349;300000 -51876;15660421;184339579;300000 -51877;15658191;184341809;300000 -51878;15655962;184344038;300000 -51879;15653733;184346267;300000 -51880;15651503;184348497;300000 -51881;15649274;184350726;300000 -51882;15647045;184352955;300000 -51883;15644816;184355184;300000 -51884;15642587;184357413;300000 -51885;15640358;184359642;300000 -51886;15638130;184361870;300000 -51887;15635901;184364099;300000 -51888;15633673;184366327;300000 -51889;15631444;184368556;300000 -51890;15629216;184370784;300000 -51891;15626987;184373013;300000 -51892;15624759;184375241;300000 -51893;15622531;184377469;300000 -51894;15620303;184379697;300000 -51895;15618075;184381925;300000 -51896;15615847;184384153;300000 -51897;15613619;184386381;300000 -51898;15611392;184388608;300000 -51899;15609164;184390836;300000 -51900;15606936;184393064;300000 -51901;15604709;184395291;300000 -51902;15602482;184397518;300000 -51903;15600254;184399746;300000 -51904;15598027;184401973;300000 -51905;15595800;184404200;300000 -51906;15593573;184406427;300000 -51907;15591346;184408654;300000 -51908;15589119;184410881;300000 -51909;15586892;184413108;300000 -51910;15584666;184415334;300000 -51911;15582439;184417561;300000 -51912;15580213;184419787;300000 -51913;15577986;184422014;300000 -51914;15575760;184424240;300000 -51915;15573534;184426466;300000 -51916;15571307;184428693;300000 -51917;15569081;184430919;300000 -51918;15566855;184433145;300000 -51919;15564630;184435370;300000 -51920;15562404;184437596;300000 -51921;15560178;184439822;300000 -51922;15557952;184442048;300000 -51923;15555727;184444273;300000 -51924;15553501;184446499;300000 -51925;15551276;184448724;300000 -51926;15549051;184450949;300000 -51927;15546825;184453175;300000 -51928;15544600;184455400;300000 -51929;15542375;184457625;300000 -51930;15540150;184459850;300000 -51931;15537925;184462075;300000 -51932;15535701;184464299;300000 -51933;15533476;184466524;300000 -51934;15531251;184468749;300000 -51935;15529027;184470973;300000 -51936;15526802;184473198;300000 -51937;15524578;184475422;300000 -51938;15522354;184477646;300000 -51939;15520129;184479871;300000 -51940;15517905;184482095;300000 -51941;15515681;184484319;300000 -51942;15513457;184486543;300000 -51943;15511233;184488767;300000 -51944;15509010;184490990;300000 -51945;15506786;184493214;300000 -51946;15504562;184495438;300000 -51947;15502339;184497661;300000 -51948;15500116;184499884;300000 -51949;15497892;184502108;300000 -51950;15495669;184504331;300000 -51951;15493446;184506554;300000 -51952;15491223;184508777;300000 -51953;15489000;184511000;300000 -51954;15486777;184513223;300000 -51955;15484554;184515446;300000 -51956;15482331;184517669;300000 -51957;15480109;184519891;300000 -51958;15477886;184522114;300000 -51959;15475664;184524336;300000 -51960;15473441;184526559;300000 -51961;15471219;184528781;300000 -51962;15468997;184531003;300000 -51963;15466774;184533226;300000 -51964;15464552;184535448;300000 -51965;15462330;184537670;300000 -51966;15460109;184539891;300000 -51967;15457887;184542113;300000 -51968;15455665;184544335;300000 -51969;15453443;184546557;300000 -51970;15451222;184548778;300000 -51971;15449000;184551000;300000 -51972;15446779;184553221;300000 -51973;15444558;184555442;300000 -51974;15442337;184557663;300000 -51975;15440115;184559885;300000 -51976;15437894;184562106;300000 -51977;15435673;184564327;300000 -51978;15433453;184566547;300000 -51979;15431232;184568768;300000 -51980;15429011;184570989;300000 -51981;15426791;184573209;300000 -51982;15424570;184575430;300000 -51983;15422350;184577650;300000 -51984;15420129;184579871;300000 -51985;15417909;184582091;300000 -51986;15415689;184584311;300000 -51987;15413469;184586531;300000 -51988;15411249;184588751;300000 -51989;15409029;184590971;300000 -51990;15406809;184593191;300000 -51991;15404589;184595411;300000 -51992;15402370;184597630;300000 -51993;15400150;184599850;300000 -51994;15397931;184602069;300000 -51995;15395711;184604289;300000 -51996;15393492;184606508;300000 -51997;15391273;184608727;300000 -51998;15389053;184610947;300000 -51999;15386834;184613166;300000 -52000;15384615;184615385;300000 -52001;15382396;184617604;300000 -52002;15380178;184619822;300000 -52003;15377959;184622041;300000 -52004;15375740;184624260;300000 -52005;15373522;184626478;300000 -52006;15371303;184628697;300000 -52007;15369085;184630915;300000 -52008;15366867;184633133;300000 -52009;15364648;184635352;300000 -52010;15362430;184637570;300000 -52011;15360212;184639788;300000 -52012;15357994;184642006;300000 -52013;15355776;184644224;300000 -52014;15353559;184646441;300000 -52015;15351341;184648659;300000 -52016;15349123;184650877;300000 -52017;15346906;184653094;300000 -52018;15344688;184655312;300000 -52019;15342471;184657529;300000 -52020;15340254;184659746;300000 -52021;15338037;184661963;300000 -52022;15335819;184664181;300000 -52023;15333602;184666398;300000 -52024;15331386;184668614;300000 -52025;15329169;184670831;300000 -52026;15326952;184673048;300000 -52027;15324735;184675265;300000 -52028;15322519;184677481;300000 -52029;15320302;184679698;300000 -52030;15318086;184681914;300000 -52031;15315869;184684131;300000 -52032;15313653;184686347;300000 -52033;15311437;184688563;300000 -52034;15309221;184690779;300000 -52035;15307005;184692995;300000 -52036;15304789;184695211;300000 -52037;15302573;184697427;300000 -52038;15300357;184699643;300000 -52039;15298142;184701858;300000 -52040;15295926;184704074;300000 -52041;15293711;184706289;300000 -52042;15291495;184708505;300000 -52043;15289280;184710720;300000 -52044;15287065;184712935;300000 -52045;15284850;184715150;300000 -52046;15282635;184717365;300000 -52047;15280420;184719580;300000 -52048;15278205;184721795;300000 -52049;15275990;184724010;300000 -52050;15273775;184726225;300000 -52051;15271561;184728439;300000 -52052;15269346;184730654;300000 -52053;15267132;184732868;300000 -52054;15264917;184735083;300000 -52055;15262703;184737297;300000 -52056;15260489;184739511;300000 -52057;15258275;184741725;300000 -52058;15256061;184743939;300000 -52059;15253847;184746153;300000 -52060;15251633;184748367;300000 -52061;15249419;184750581;300000 -52062;15247205;184752795;300000 -52063;15244992;184755008;300000 -52064;15242778;184757222;300000 -52065;15240565;184759435;300000 -52066;15238351;184761649;300000 -52067;15236138;184763862;300000 -52068;15233925;184766075;300000 -52069;15231712;184768288;300000 -52070;15229499;184770501;300000 -52071;15227286;184772714;300000 -52072;15225073;184774927;300000 -52073;15222860;184777140;300000 -52074;15220648;184779352;300000 -52075;15218435;184781565;300000 -52076;15216222;184783778;300000 -52077;15214010;184785990;300000 -52078;15211798;184788202;300000 -52079;15209585;184790415;300000 -52080;15207373;184792627;300000 -52081;15205161;184794839;300000 -52082;15202949;184797051;300000 -52083;15200737;184799263;300000 -52084;15198525;184801475;300000 -52085;15196314;184803686;300000 -52086;15194102;184805898;300000 -52087;15191890;184808110;300000 -52088;15189679;184810321;300000 -52089;15187468;184812532;300000 -52090;15185256;184814744;300000 -52091;15183045;184816955;300000 -52092;15180834;184819166;300000 -52093;15178623;184821377;300000 -52094;15176412;184823588;300000 -52095;15174201;184825799;300000 -52096;15171990;184828010;300000 -52097;15169779;184830221;300000 -52098;15167569;184832431;300000 -52099;15165358;184834642;300000 -52100;15163148;184836852;300000 -52101;15160937;184839063;300000 -52102;15158727;184841273;300000 -52103;15156517;184843483;300000 -52104;15154307;184845693;300000 -52105;15152097;184847903;300000 -52106;15149887;184850113;300000 -52107;15147677;184852323;300000 -52108;15145467;184854533;300000 -52109;15143257;184856743;300000 -52110;15141048;184858952;300000 -52111;15138838;184861162;300000 -52112;15136629;184863371;300000 -52113;15134419;184865581;300000 -52114;15132210;184867790;300000 -52115;15130001;184869999;300000 -52116;15127792;184872208;300000 -52117;15125583;184874417;300000 -52118;15123374;184876626;300000 -52119;15121165;184878835;300000 -52120;15118956;184881044;300000 -52121;15116748;184883252;300000 -52122;15114539;184885461;300000 -52123;15112330;184887670;300000 -52124;15110122;184889878;300000 -52125;15107914;184892086;300000 -52126;15105705;184894295;300000 -52127;15103497;184896503;300000 -52128;15101289;184898711;300000 -52129;15099081;184900919;300000 -52130;15096873;184903127;300000 -52131;15094665;184905335;300000 -52132;15092458;184907542;300000 -52133;15090250;184909750;300000 -52134;15088042;184911958;300000 -52135;15085835;184914165;300000 -52136;15083627;184916373;300000 -52137;15081420;184918580;300000 -52138;15079213;184920787;300000 -52139;15077006;184922994;300000 -52140;15074799;184925201;300000 -52141;15072592;184927408;300000 -52142;15070385;184929615;300000 -52143;15068178;184931822;300000 -52144;15065971;184934029;300000 -52145;15063765;184936235;300000 -52146;15061558;184938442;300000 -52147;15059351;184940649;300000 -52148;15057145;184942855;300000 -52149;15054939;184945061;300000 -52150;15052733;184947267;300000 -52151;15050526;184949474;300000 -52152;15048320;184951680;300000 -52153;15046114;184953886;300000 -52154;15043908;184956092;300000 -52155;15041703;184958297;300000 -52156;15039497;184960503;300000 -52157;15037291;184962709;300000 -52158;15035086;184964914;300000 -52159;15032880;184967120;300000 -52160;15030675;184969325;300000 -52161;15028470;184971530;300000 -52162;15026264;184973736;300000 -52163;15024059;184975941;300000 -52164;15021854;184978146;300000 -52165;15019649;184980351;300000 -52166;15017444;184982556;300000 -52167;15015240;184984760;300000 -52168;15013035;184986965;300000 -52169;15010830;184989170;300000 -52170;15008626;184991374;300000 -52171;15006421;184993579;300000 -52172;15004217;184995783;300000 -52173;15002013;184997987;300000 -52174;14999808;185000192;300000 -52175;14997604;185002396;300000 -52176;14995400;185004600;300000 -52177;14993196;185006804;300000 -52178;14990992;185009008;300000 -52179;14988789;185011211;300000 -52180;14986585;185013415;300000 -52181;14984381;185015619;300000 -52182;14982178;185017822;300000 -52183;14979974;185020026;300000 -52184;14977771;185022229;300000 -52185;14975568;185024432;300000 -52186;14973365;185026635;300000 -52187;14971161;185028839;300000 -52188;14968958;185031042;300000 -52189;14966755;185033245;300000 -52190;14964553;185035447;300000 -52191;14962350;185037650;300000 -52192;14960147;185039853;300000 -52193;14957945;185042055;300000 -52194;14955742;185044258;300000 -52195;14953540;185046460;300000 -52196;14951337;185048663;300000 -52197;14949135;185050865;300000 -52198;14946933;185053067;300000 -52199;14944731;185055269;300000 -52200;14942529;185057471;300000 -52201;14940327;185059673;300000 -52202;14938125;185061875;300000 -52203;14935923;185064077;300000 -52204;14933722;185066278;300000 -52205;14931520;185068480;300000 -52206;14929318;185070682;300000 -52207;14927117;185072883;300000 -52208;14924916;185075084;300000 -52209;14922714;185077286;300000 -52210;14920513;185079487;300000 -52211;14918312;185081688;300000 -52212;14916111;185083889;300000 -52213;14913910;185086090;300000 -52214;14911710;185088290;300000 -52215;14909509;185090491;300000 -52216;14907308;185092692;300000 -52217;14905108;185094892;300000 -52218;14902907;185097093;300000 -52219;14900707;185099293;300000 -52220;14898506;185101494;300000 -52221;14896306;185103694;300000 -52222;14894106;185105894;300000 -52223;14891906;185108094;300000 -52224;14889706;185110294;300000 -52225;14887506;185112494;300000 -52226;14885306;185114694;300000 -52227;14883106;185116894;300000 -52228;14880907;185119093;300000 -52229;14878707;185121293;300000 -52230;14876508;185123492;300000 -52231;14874308;185125692;300000 -52232;14872109;185127891;300000 -52233;14869910;185130090;300000 -52234;14867711;185132289;300000 -52235;14865512;185134488;300000 -52236;14863313;185136687;300000 -52237;14861114;185138886;300000 -52238;14858915;185141085;300000 -52239;14856716;185143284;300000 -52240;14854518;185145482;300000 -52241;14852319;185147681;300000 -52242;14850121;185149879;300000 -52243;14847922;185152078;300000 -52244;14845724;185154276;300000 -52245;14843526;185156474;300000 -52246;14841328;185158672;300000 -52247;14839130;185160870;300000 -52248;14836932;185163068;300000 -52249;14834734;185165266;300000 -52250;14832536;185167464;300000 -52251;14830338;185169662;300000 -52252;14828141;185171859;300000 -52253;14825943;185174057;300000 -52254;14823746;185176254;300000 -52255;14821548;185178452;300000 -52256;14819351;185180649;300000 -52257;14817154;185182846;300000 -52258;14814957;185185043;300000 -52259;14812760;185187240;300000 -52260;14810563;185189437;300000 -52261;14808366;185191634;300000 -52262;14806169;185193831;300000 -52263;14803972;185196028;300000 -52264;14801776;185198224;300000 -52265;14799579;185200421;300000 -52266;14797383;185202617;300000 -52267;14795186;185204814;300000 -52268;14792990;185207010;300000 -52269;14790794;185209206;300000 -52270;14788598;185211402;300000 -52271;14786402;185213598;300000 -52272;14784206;185215794;300000 -52273;14782010;185217990;300000 -52274;14779814;185220186;300000 -52275;14777618;185222382;300000 -52276;14775423;185224577;300000 -52277;14773227;185226773;300000 -52278;14771032;185228968;300000 -52279;14768836;185231164;300000 -52280;14766641;185233359;300000 -52281;14764446;185235554;300000 -52282;14762251;185237749;300000 -52283;14760056;185239944;300000 -52284;14757861;185242139;300000 -52285;14755666;185244334;300000 -52286;14753471;185246529;300000 -52287;14751277;185248723;300000 -52288;14749082;185250918;300000 -52289;14746887;185253113;300000 -52290;14744693;185255307;300000 -52291;14742499;185257501;300000 -52292;14740304;185259696;300000 -52293;14738110;185261890;300000 -52294;14735916;185264084;300000 -52295;14733722;185266278;300000 -52296;14731528;185268472;300000 -52297;14729334;185270666;300000 -52298;14727141;185272859;300000 -52299;14724947;185275053;300000 -52300;14722753;185277247;300000 -52301;14720560;185279440;300000 -52302;14718366;185281634;300000 -52303;14716173;185283827;300000 -52304;14713980;185286020;300000 -52305;14711787;185288213;300000 -52306;14709594;185290406;300000 -52307;14707401;185292599;300000 -52308;14705208;185294792;300000 -52309;14703015;185296985;300000 -52310;14700822;185299178;300000 -52311;14698629;185301371;300000 -52312;14696437;185303563;300000 -52313;14694244;185305756;300000 -52314;14692052;185307948;300000 -52315;14689860;185310140;300000 -52316;14687667;185312333;300000 -52317;14685475;185314525;300000 -52318;14683283;185316717;300000 -52319;14681091;185318909;300000 -52320;14678899;185321101;300000 -52321;14676707;185323293;300000 -52322;14674516;185325484;300000 -52323;14672324;185327676;300000 -52324;14670132;185329868;300000 -52325;14667941;185332059;300000 -52326;14665749;185334251;300000 -52327;14663558;185336442;300000 -52328;14661367;185338633;300000 -52329;14659176;185340824;300000 -52330;14656985;185343015;300000 -52331;14654794;185345206;300000 -52332;14652603;185347397;300000 -52333;14650412;185349588;300000 -52334;14648221;185351779;300000 -52335;14646030;185353970;300000 -52336;14643840;185356160;300000 -52337;14641649;185358351;300000 -52338;14639459;185360541;300000 -52339;14637269;185362731;300000 -52340;14635078;185364922;300000 -52341;14632888;185367112;300000 -52342;14630698;185369302;300000 -52343;14628508;185371492;300000 -52344;14626318;185373682;300000 -52345;14624128;185375872;300000 -52346;14621939;185378061;300000 -52347;14619749;185380251;300000 -52348;14617559;185382441;300000 -52349;14615370;185384630;300000 -52350;14613181;185386819;300000 -52351;14610991;185389009;300000 -52352;14608802;185391198;300000 -52353;14606613;185393387;300000 -52354;14604424;185395576;300000 -52355;14602235;185397765;300000 -52356;14600046;185399954;300000 -52357;14597857;185402143;300000 -52358;14595668;185404332;300000 -52359;14593480;185406520;300000 -52360;14591291;185408709;300000 -52361;14589103;185410897;300000 -52362;14586914;185413086;300000 -52363;14584726;185415274;300000 -52364;14582538;185417462;300000 -52365;14580349;185419651;300000 -52366;14578161;185421839;300000 -52367;14575973;185424027;300000 -52368;14573786;185426214;300000 -52369;14571598;185428402;300000 -52370;14569410;185430590;300000 -52371;14567222;185432778;300000 -52372;14565035;185434965;300000 -52373;14562847;185437153;300000 -52374;14560660;185439340;300000 -52375;14558473;185441527;300000 -52376;14556285;185443715;300000 -52377;14554098;185445902;300000 -52378;14551911;185448089;300000 -52379;14549724;185450276;300000 -52380;14547537;185452463;300000 -52381;14545350;185454650;300000 -52382;14543164;185456836;300000 -52383;14540977;185459023;300000 -52384;14538790;185461210;300000 -52385;14536604;185463396;300000 -52386;14534418;185465582;300000 -52387;14532231;185467769;300000 -52388;14530045;185469955;300000 -52389;14527859;185472141;300000 -52390;14525673;185474327;300000 -52391;14523487;185476513;300000 -52392;14521301;185478699;300000 -52393;14519115;185480885;300000 -52394;14516929;185483071;300000 -52395;14514744;185485256;300000 -52396;14512558;185487442;300000 -52397;14510373;185489627;300000 -52398;14508187;185491813;300000 -52399;14506002;185493998;300000 -52400;14503817;185496183;300000 -52401;14501632;185498368;300000 -52402;14499447;185500553;300000 -52403;14497262;185502738;300000 -52404;14495077;185504923;300000 -52405;14492892;185507108;300000 -52406;14490707;185509293;300000 -52407;14488523;185511477;300000 -52408;14486338;185513662;300000 -52409;14484153;185515847;300000 -52410;14481969;185518031;300000 -52411;14479785;185520215;300000 -52412;14477601;185522399;300000 -52413;14475416;185524584;300000 -52414;14473232;185526768;300000 -52415;14471048;185528952;300000 -52416;14468864;185531136;300000 -52417;14466681;185533319;300000 -52418;14464497;185535503;300000 -52419;14462313;185537687;300000 -52420;14460130;185539870;300000 -52421;14457946;185542054;300000 -52422;14455763;185544237;300000 -52423;14453580;185546420;300000 -52424;14451396;185548604;300000 -52425;14449213;185550787;300000 -52426;14447030;185552970;300000 -52427;14444847;185555153;300000 -52428;14442664;185557336;300000 -52429;14440481;185559519;300000 -52430;14438299;185561701;300000 -52431;14436116;185563884;300000 -52432;14433933;185566067;300000 -52433;14431751;185568249;300000 -52434;14429569;185570431;300000 -52435;14427386;185572614;300000 -52436;14425204;185574796;300000 -52437;14423022;185576978;300000 -52438;14420840;185579160;300000 -52439;14418658;185581342;300000 -52440;14416476;185583524;300000 -52441;14414294;185585706;300000 -52442;14412112;185587888;300000 -52443;14409931;185590069;300000 -52444;14407749;185592251;300000 -52445;14405568;185594432;300000 -52446;14403386;185596614;300000 -52447;14401205;185598795;300000 -52448;14399024;185600976;300000 -52449;14396843;185603157;300000 -52450;14394662;185605338;300000 -52451;14392481;185607519;300000 -52452;14390300;185609700;300000 -52453;14388119;185611881;300000 -52454;14385938;185614062;300000 -52455;14383758;185616242;300000 -52456;14381577;185618423;300000 -52457;14379396;185620604;300000 -52458;14377216;185622784;300000 -52459;14375036;185624964;300000 -52460;14372856;185627144;300000 -52461;14370675;185629325;300000 -52462;14368495;185631505;300000 -52463;14366315;185633685;300000 -52464;14364135;185635865;300000 -52465;14361956;185638044;300000 -52466;14359776;185640224;300000 -52467;14357596;185642404;300000 -52468;14355417;185644583;300000 -52469;14353237;185646763;300000 -52470;14351058;185648942;300000 -52471;14348878;185651122;300000 -52472;14346699;185653301;300000 -52473;14344520;185655480;300000 -52474;14342341;185657659;300000 -52475;14340162;185659838;300000 -52476;14337983;185662017;300000 -52477;14335804;185664196;300000 -52478;14333626;185666374;300000 -52479;14331447;185668553;300000 -52480;14329268;185670732;300000 -52481;14327090;185672910;300000 -52482;14324911;185675089;300000 -52483;14322733;185677267;300000 -52484;14320555;185679445;300000 -52485;14318377;185681623;300000 -52486;14316199;185683801;300000 -52487;14314021;185685979;300000 -52488;14311843;185688157;300000 -52489;14309665;185690335;300000 -52490;14307487;185692513;300000 -52491;14305309;185694691;300000 -52492;14303132;185696868;300000 -52493;14300954;185699046;300000 -52494;14298777;185701223;300000 -52495;14296600;185703400;300000 -52496;14294422;185705578;300000 -52497;14292245;185707755;300000 -52498;14290068;185709932;300000 -52499;14287891;185712109;300000 -52500;14285714;185714286;300000 -52501;14283537;185716463;300000 -52502;14281361;185718639;300000 -52503;14279184;185720816;300000 -52504;14277007;185722993;300000 -52505;14274831;185725169;300000 -52506;14272655;185727345;300000 -52507;14270478;185729522;300000 -52508;14268302;185731698;300000 -52509;14266126;185733874;300000 -52510;14263950;185736050;300000 -52511;14261774;185738226;300000 -52512;14259598;185740402;300000 -52513;14257422;185742578;300000 -52514;14255246;185744754;300000 -52515;14253071;185746929;300000 -52516;14250895;185749105;300000 -52517;14248719;185751281;300000 -52518;14246544;185753456;300000 -52519;14244369;185755631;300000 -52520;14242193;185757807;300000 -52521;14240018;185759982;300000 -52522;14237843;185762157;300000 -52523;14235668;185764332;300000 -52524;14233493;185766507;300000 -52525;14231318;185768682;300000 -52526;14229144;185770856;300000 -52527;14226969;185773031;300000 -52528;14224794;185775206;300000 -52529;14222620;185777380;300000 -52530;14220445;185779555;300000 -52531;14218271;185781729;300000 -52532;14216097;185783903;300000 -52533;14213923;185786077;300000 -52534;14211749;185788251;300000 -52535;14209575;185790425;300000 -52536;14207401;185792599;300000 -52537;14205227;185794773;300000 -52538;14203053;185796947;300000 -52539;14200879;185799121;300000 -52540;14198706;185801294;300000 -52541;14196532;185803468;300000 -52542;14194359;185805641;300000 -52543;14192185;185807815;300000 -52544;14190012;185809988;300000 -52545;14187839;185812161;300000 -52546;14185666;185814334;300000 -52547;14183493;185816507;300000 -52548;14181320;185818680;300000 -52549;14179147;185820853;300000 -52550;14176974;185823026;300000 -52551;14174802;185825198;300000 -52552;14172629;185827371;300000 -52553;14170456;185829544;300000 -52554;14168284;185831716;300000 -52555;14166112;185833888;300000 -52556;14163939;185836061;300000 -52557;14161767;185838233;300000 -52558;14159595;185840405;300000 -52559;14157423;185842577;300000 -52560;14155251;185844749;300000 -52561;14153079;185846921;300000 -52562;14150907;185849093;300000 -52563;14148736;185851264;300000 -52564;14146564;185853436;300000 -52565;14144393;185855607;300000 -52566;14142221;185857779;300000 -52567;14140050;185859950;300000 -52568;14137879;185862121;300000 -52569;14135707;185864293;300000 -52570;14133536;185866464;300000 -52571;14131365;185868635;300000 -52572;14129194;185870806;300000 -52573;14127023;185872977;300000 -52574;14124853;185875147;300000 -52575;14122682;185877318;300000 -52576;14120511;185879489;300000 -52577;14118341;185881659;300000 -52578;14116170;185883830;300000 -52579;14114000;185886000;300000 -52580;14111830;185888170;300000 -52581;14109659;185890341;300000 -52582;14107489;185892511;300000 -52583;14105319;185894681;300000 -52584;14103149;185896851;300000 -52585;14100979;185899021;300000 -52586;14098810;185901190;300000 -52587;14096640;185903360;300000 -52588;14094470;185905530;300000 -52589;14092301;185907699;300000 -52590;14090131;185909869;300000 -52591;14087962;185912038;300000 -52592;14085793;185914207;300000 -52593;14083623;185916377;300000 -52594;14081454;185918546;300000 -52595;14079285;185920715;300000 -52596;14077116;185922884;300000 -52597;14074947;185925053;300000 -52598;14072778;185927222;300000 -52599;14070610;185929390;300000 -52600;14068441;185931559;300000 -52601;14066273;185933727;300000 -52602;14064104;185935896;300000 -52603;14061936;185938064;300000 -52604;14059767;185940233;300000 -52605;14057599;185942401;300000 -52606;14055431;185944569;300000 -52607;14053263;185946737;300000 -52608;14051095;185948905;300000 -52609;14048927;185951073;300000 -52610;14046759;185953241;300000 -52611;14044591;185955409;300000 -52612;14042424;185957576;300000 -52613;14040256;185959744;300000 -52614;14038089;185961911;300000 -52615;14035921;185964079;300000 -52616;14033754;185966246;300000 -52617;14031587;185968413;300000 -52618;14029420;185970580;300000 -52619;14027253;185972747;300000 -52620;14025086;185974914;300000 -52621;14022919;185977081;300000 -52622;14020752;185979248;300000 -52623;14018585;185981415;300000 -52624;14016418;185983582;300000 -52625;14014252;185985748;300000 -52626;14012085;185987915;300000 -52627;14009919;185990081;300000 -52628;14007753;185992247;300000 -52629;14005586;185994414;300000 -52630;14003420;185996580;300000 -52631;14001254;185998746;300000 -52632;13999088;186000912;300000 -52633;13996922;186003078;300000 -52634;13994756;186005244;300000 -52635;13992590;186007410;300000 -52636;13990425;186009575;300000 -52637;13988259;186011741;300000 -52638;13986094;186013906;300000 -52639;13983928;186016072;300000 -52640;13981763;186018237;300000 -52641;13979598;186020402;300000 -52642;13977432;186022568;300000 -52643;13975267;186024733;300000 -52644;13973102;186026898;300000 -52645;13970937;186029063;300000 -52646;13968773;186031227;300000 -52647;13966608;186033392;300000 -52648;13964443;186035557;300000 -52649;13962278;186037722;300000 -52650;13960114;186039886;300000 -52651;13957950;186042050;300000 -52652;13955785;186044215;300000 -52653;13953621;186046379;300000 -52654;13951457;186048543;300000 -52655;13949293;186050707;300000 -52656;13947129;186052871;300000 -52657;13944965;186055035;300000 -52658;13942801;186057199;300000 -52659;13940637;186059363;300000 -52660;13938473;186061527;300000 -52661;13936310;186063690;300000 -52662;13934146;186065854;300000 -52663;13931983;186068017;300000 -52664;13929819;186070181;300000 -52665;13927656;186072344;300000 -52666;13925493;186074507;300000 -52667;13923330;186076670;300000 -52668;13921167;186078833;300000 -52669;13919004;186080996;300000 -52670;13916841;186083159;300000 -52671;13914678;186085322;300000 -52672;13912515;186087485;300000 -52673;13910353;186089647;300000 -52674;13908190;186091810;300000 -52675;13906028;186093972;300000 -52676;13903865;186096135;300000 -52677;13901703;186098297;300000 -52678;13899541;186100459;300000 -52679;13897378;186102622;300000 -52680;13895216;186104784;300000 -52681;13893054;186106946;300000 -52682;13890893;186109107;300000 -52683;13888731;186111269;300000 -52684;13886569;186113431;300000 -52685;13884407;186115593;300000 -52686;13882246;186117754;300000 -52687;13880084;186119916;300000 -52688;13877923;186122077;300000 -52689;13875762;186124238;300000 -52690;13873600;186126400;300000 -52691;13871439;186128561;300000 -52692;13869278;186130722;300000 -52693;13867117;186132883;300000 -52694;13864956;186135044;300000 -52695;13862795;186137205;300000 -52696;13860635;186139365;300000 -52697;13858474;186141526;300000 -52698;13856313;186143687;300000 -52699;13854153;186145847;300000 -52700;13851992;186148008;300000 -52701;13849832;186150168;300000 -52702;13847672;186152328;300000 -52703;13845512;186154488;300000 -52704;13843352;186156648;300000 -52705;13841192;186158808;300000 -52706;13839032;186160968;300000 -52707;13836872;186163128;300000 -52708;13834712;186165288;300000 -52709;13832552;186167448;300000 -52710;13830393;186169607;300000 -52711;13828233;186171767;300000 -52712;13826074;186173926;300000 -52713;13823914;186176086;300000 -52714;13821755;186178245;300000 -52715;13819596;186180404;300000 -52716;13817437;186182563;300000 -52717;13815278;186184722;300000 -52718;13813119;186186881;300000 -52719;13810960;186189040;300000 -52720;13808801;186191199;300000 -52721;13806643;186193357;300000 -52722;13804484;186195516;300000 -52723;13802325;186197675;300000 -52724;13800167;186199833;300000 -52725;13798009;186201991;300000 -52726;13795850;186204150;300000 -52727;13793692;186206308;300000 -52728;13791534;186208466;300000 -52729;13789376;186210624;300000 -52730;13787218;186212782;300000 -52731;13785060;186214940;300000 -52732;13782902;186217098;300000 -52733;13780745;186219255;300000 -52734;13778587;186221413;300000 -52735;13776429;186223571;300000 -52736;13774272;186225728;300000 -52737;13772114;186227886;300000 -52738;13769957;186230043;300000 -52739;13767800;186232200;300000 -52740;13765643;186234357;300000 -52741;13763486;186236514;300000 -52742;13761329;186238671;300000 -52743;13759172;186240828;300000 -52744;13757015;186242985;300000 -52745;13754858;186245142;300000 -52746;13752702;186247298;300000 -52747;13750545;186249455;300000 -52748;13748389;186251611;300000 -52749;13746232;186253768;300000 -52750;13744076;186255924;300000 -52751;13741920;186258080;300000 -52752;13739763;186260237;300000 -52753;13737607;186262393;300000 -52754;13735451;186264549;300000 -52755;13733295;186266705;300000 -52756;13731140;186268860;300000 -52757;13728984;186271016;300000 -52758;13726828;186273172;300000 -52759;13724673;186275327;300000 -52760;13722517;186277483;300000 -52761;13720362;186279638;300000 -52762;13718206;186281794;300000 -52763;13716051;186283949;300000 -52764;13713896;186286104;300000 -52765;13711741;186288259;300000 -52766;13709586;186290414;300000 -52767;13707431;186292569;300000 -52768;13705276;186294724;300000 -52769;13703121;186296879;300000 -52770;13700966;186299034;300000 -52771;13698812;186301188;300000 -52772;13696657;186303343;300000 -52773;13694503;186305497;300000 -52774;13692349;186307651;300000 -52775;13690194;186309806;300000 -52776;13688040;186311960;300000 -52777;13685886;186314114;300000 -52778;13683732;186316268;300000 -52779;13681578;186318422;300000 -52780;13679424;186320576;300000 -52781;13677270;186322730;300000 -52782;13675117;186324883;300000 -52783;13672963;186327037;300000 -52784;13670809;186329191;300000 -52785;13668656;186331344;300000 -52786;13666502;186333498;300000 -52787;13664349;186335651;300000 -52788;13662196;186337804;300000 -52789;13660043;186339957;300000 -52790;13657890;186342110;300000 -52791;13655737;186344263;300000 -52792;13653584;186346416;300000 -52793;13651431;186348569;300000 -52794;13649278;186350722;300000 -52795;13647126;186352874;300000 -52796;13644973;186355027;300000 -52797;13642821;186357179;300000 -52798;13640668;186359332;300000 -52799;13638516;186361484;300000 -52800;13636364;186363636;300000 -52801;13634211;186365789;300000 -52802;13632059;186367941;300000 -52803;13629907;186370093;300000 -52804;13627755;186372245;300000 -52805;13625604;186374396;300000 -52806;13623452;186376548;300000 -52807;13621300;186378700;300000 -52808;13619149;186380851;300000 -52809;13616997;186383003;300000 -52810;13614846;186385154;300000 -52811;13612694;186387306;300000 -52812;13610543;186389457;300000 -52813;13608392;186391608;300000 -52814;13606241;186393759;300000 -52815;13604090;186395910;300000 -52816;13601939;186398061;300000 -52817;13599788;186400212;300000 -52818;13597637;186402363;300000 -52819;13595486;186404514;300000 -52820;13593336;186406664;300000 -52821;13591185;186408815;300000 -52822;13589035;186410965;300000 -52823;13586885;186413115;300000 -52824;13584734;186415266;300000 -52825;13582584;186417416;300000 -52826;13580434;186419566;300000 -52827;13578284;186421716;300000 -52828;13576134;186423866;300000 -52829;13573984;186426016;300000 -52830;13571834;186428166;300000 -52831;13569684;186430316;300000 -52832;13567535;186432465;300000 -52833;13565385;186434615;300000 -52834;13563236;186436764;300000 -52835;13561086;186438914;300000 -52836;13558937;186441063;300000 -52837;13556788;186443212;300000 -52838;13554639;186445361;300000 -52839;13552490;186447510;300000 -52840;13550341;186449659;300000 -52841;13548192;186451808;300000 -52842;13546043;186453957;300000 -52843;13543894;186456106;300000 -52844;13541746;186458254;300000 -52845;13539597;186460403;300000 -52846;13537448;186462552;300000 -52847;13535300;186464700;300000 -52848;13533152;186466848;300000 -52849;13531003;186468997;300000 -52850;13528855;186471145;300000 -52851;13526707;186473293;300000 -52852;13524559;186475441;300000 -52853;13522411;186477589;300000 -52854;13520263;186479737;300000 -52855;13518116;186481884;300000 -52856;13515968;186484032;300000 -52857;13513820;186486180;300000 -52858;13511673;186488327;300000 -52859;13509525;186490475;300000 -52860;13507378;186492622;300000 -52861;13505231;186494769;300000 -52862;13503084;186496916;300000 -52863;13500936;186499064;300000 -52864;13498789;186501211;300000 -52865;13496642;186503358;300000 -52866;13494496;186505504;300000 -52867;13492349;186507651;300000 -52868;13490202;186509798;300000 -52869;13488055;186511945;300000 -52870;13485909;186514091;300000 -52871;13483762;186516238;300000 -52872;13481616;186518384;300000 -52873;13479470;186520530;300000 -52874;13477323;186522677;300000 -52875;13475177;186524823;300000 -52876;13473031;186526969;300000 -52877;13470885;186529115;300000 -52878;13468739;186531261;300000 -52879;13466594;186533406;300000 -52880;13464448;186535552;300000 -52881;13462302;186537698;300000 -52882;13460157;186539843;300000 -52883;13458011;186541989;300000 -52884;13455866;186544134;300000 -52885;13453720;186546280;300000 -52886;13451575;186548425;300000 -52887;13449430;186550570;300000 -52888;13447285;186552715;300000 -52889;13445140;186554860;300000 -52890;13442995;186557005;300000 -52891;13440850;186559150;300000 -52892;13438705;186561295;300000 -52893;13436561;186563439;300000 -52894;13434416;186565584;300000 -52895;13432271;186567729;300000 -52896;13430127;186569873;300000 -52897;13427983;186572017;300000 -52898;13425838;186574162;300000 -52899;13423694;186576306;300000 -52900;13421550;186578450;300000 -52901;13419406;186580594;300000 -52902;13417262;186582738;300000 -52903;13415118;186584882;300000 -52904;13412974;186587026;300000 -52905;13410831;186589169;300000 -52906;13408687;186591313;300000 -52907;13406544;186593456;300000 -52908;13404400;186595600;300000 -52909;13402257;186597743;300000 -52910;13400113;186599887;300000 -52911;13397970;186602030;300000 -52912;13395827;186604173;300000 -52913;13393684;186606316;300000 -52914;13391541;186608459;300000 -52915;13389398;186610602;300000 -52916;13387255;186612745;300000 -52917;13385113;186614887;300000 -52918;13382970;186617030;300000 -52919;13380827;186619173;300000 -52920;13378685;186621315;300000 -52921;13376542;186623458;300000 -52922;13374400;186625600;300000 -52923;13372258;186627742;300000 -52924;13370116;186629884;300000 -52925;13367974;186632026;300000 -52926;13365832;186634168;300000 -52927;13363690;186636310;300000 -52928;13361548;186638452;300000 -52929;13359406;186640594;300000 -52930;13357264;186642736;300000 -52931;13355123;186644877;300000 -52932;13352981;186647019;300000 -52933;13350840;186649160;300000 -52934;13348698;186651302;300000 -52935;13346557;186653443;300000 -52936;13344416;186655584;300000 -52937;13342275;186657725;300000 -52938;13340134;186659866;300000 -52939;13337993;186662007;300000 -52940;13335852;186664148;300000 -52941;13333711;186666289;300000 -52942;13331570;186668430;300000 -52943;13329430;186670570;300000 -52944;13327289;186672711;300000 -52945;13325149;186674851;300000 -52946;13323008;186676992;300000 -52947;13320868;186679132;300000 -52948;13318728;186681272;300000 -52949;13316588;186683412;300000 -52950;13314448;186685552;300000 -52951;13312308;186687692;300000 -52952;13310168;186689832;300000 -52953;13308028;186691972;300000 -52954;13305888;186694112;300000 -52955;13303748;186696252;300000 -52956;13301609;186698391;300000 -52957;13299469;186700531;300000 -52958;13297330;186702670;300000 -52959;13295191;186704809;300000 -52960;13293051;186706949;300000 -52961;13290912;186709088;300000 -52962;13288773;186711227;300000 -52963;13286634;186713366;300000 -52964;13284495;186715505;300000 -52965;13282356;186717644;300000 -52966;13280217;186719783;300000 -52967;13278079;186721921;300000 -52968;13275940;186724060;300000 -52969;13273802;186726198;300000 -52970;13271663;186728337;300000 -52971;13269525;186730475;300000 -52972;13267387;186732613;300000 -52973;13265248;186734752;300000 -52974;13263110;186736890;300000 -52975;13260972;186739028;300000 -52976;13258834;186741166;300000 -52977;13256696;186743304;300000 -52978;13254558;186745442;300000 -52979;13252421;186747579;300000 -52980;13250283;186749717;300000 -52981;13248146;186751854;300000 -52982;13246008;186753992;300000 -52983;13243871;186756129;300000 -52984;13241733;186758267;300000 -52985;13239596;186760404;300000 -52986;13237459;186762541;300000 -52987;13235322;186764678;300000 -52988;13233185;186766815;300000 -52989;13231048;186768952;300000 -52990;13228911;186771089;300000 -52991;13226774;186773226;300000 -52992;13224638;186775362;300000 -52993;13222501;186777499;300000 -52994;13220365;186779635;300000 -52995;13218228;186781772;300000 -52996;13216092;186783908;300000 -52997;13213956;186786044;300000 -52998;13211819;186788181;300000 -52999;13209683;186790317;300000 -53000;13207547;186792453;300000 -53001;13205411;186794589;300000 -53002;13203275;186796725;300000 -53003;13201140;186798860;300000 -53004;13199004;186800996;300000 -53005;13196868;186803132;300000 -53006;13194733;186805267;300000 -53007;13192597;186807403;300000 -53008;13190462;186809538;300000 -53009;13188327;186811673;300000 -53010;13186191;186813809;300000 -53011;13184056;186815944;300000 -53012;13181921;186818079;300000 -53013;13179786;186820214;300000 -53014;13177651;186822349;300000 -53015;13175516;186824484;300000 -53016;13173382;186826618;300000 -53017;13171247;186828753;300000 -53018;13169112;186830888;300000 -53019;13166978;186833022;300000 -53020;13164843;186835157;300000 -53021;13162709;186837291;300000 -53022;13160575;186839425;300000 -53023;13158441;186841559;300000 -53024;13156307;186843693;300000 -53025;13154173;186845827;300000 -53026;13152039;186847961;300000 -53027;13149905;186850095;300000 -53028;13147771;186852229;300000 -53029;13145637;186854363;300000 -53030;13143504;186856496;300000 -53031;13141370;186858630;300000 -53032;13139237;186860763;300000 -53033;13137103;186862897;300000 -53034;13134970;186865030;300000 -53035;13132837;186867163;300000 -53036;13130704;186869296;300000 -53037;13128571;186871429;300000 -53038;13126438;186873562;300000 -53039;13124305;186875695;300000 -53040;13122172;186877828;300000 -53041;13120039;186879961;300000 -53042;13117907;186882093;300000 -53043;13115774;186884226;300000 -53044;13113642;186886358;300000 -53045;13111509;186888491;300000 -53046;13109377;186890623;300000 -53047;13107245;186892755;300000 -53048;13105112;186894888;300000 -53049;13102980;186897020;300000 -53050;13100848;186899152;300000 -53051;13098716;186901284;300000 -53052;13096584;186903416;300000 -53053;13094453;186905547;300000 -53054;13092321;186907679;300000 -53055;13090189;186909811;300000 -53056;13088058;186911942;300000 -53057;13085926;186914074;300000 -53058;13083795;186916205;300000 -53059;13081664;186918336;300000 -53060;13079533;186920467;300000 -53061;13077401;186922599;300000 -53062;13075270;186924730;300000 -53063;13073139;186926861;300000 -53064;13071009;186928991;300000 -53065;13068878;186931122;300000 -53066;13066747;186933253;300000 -53067;13064616;186935384;300000 -53068;13062486;186937514;300000 -53069;13060355;186939645;300000 -53070;13058225;186941775;300000 -53071;13056095;186943905;300000 -53072;13053964;186946036;300000 -53073;13051834;186948166;300000 -53074;13049704;186950296;300000 -53075;13047574;186952426;300000 -53076;13045444;186954556;300000 -53077;13043314;186956686;300000 -53078;13041185;186958815;300000 -53079;13039055;186960945;300000 -53080;13036925;186963075;300000 -53081;13034796;186965204;300000 -53082;13032666;186967334;300000 -53083;13030537;186969463;300000 -53084;13028408;186971592;300000 -53085;13026279;186973721;300000 -53086;13024149;186975851;300000 -53087;13022020;186977980;300000 -53088;13019892;186980108;300000 -53089;13017763;186982237;300000 -53090;13015634;186984366;300000 -53091;13013505;186986495;300000 -53092;13011376;186988624;300000 -53093;13009248;186990752;300000 -53094;13007119;186992881;300000 -53095;13004991;186995009;300000 -53096;13002863;186997137;300000 -53097;13000735;186999265;300000 -53098;12998606;187001394;300000 -53099;12996478;187003522;300000 -53100;12994350;187005650;300000 -53101;12992222;187007778;300000 -53102;12990095;187009905;300000 -53103;12987967;187012033;300000 -53104;12985839;187014161;300000 -53105;12983712;187016288;300000 -53106;12981584;187018416;300000 -53107;12979457;187020543;300000 -53108;12977329;187022671;300000 -53109;12975202;187024798;300000 -53110;12973075;187026925;300000 -53111;12970948;187029052;300000 -53112;12968821;187031179;300000 -53113;12966694;187033306;300000 -53114;12964567;187035433;300000 -53115;12962440;187037560;300000 -53116;12960313;187039687;300000 -53117;12958187;187041813;300000 -53118;12956060;187043940;300000 -53119;12953934;187046066;300000 -53120;12951807;187048193;300000 -53121;12949681;187050319;300000 -53122;12947555;187052445;300000 -53123;12945429;187054571;300000 -53124;12943302;187056698;300000 -53125;12941176;187058824;300000 -53126;12939051;187060949;300000 -53127;12936925;187063075;300000 -53128;12934799;187065201;300000 -53129;12932673;187067327;300000 -53130;12930548;187069452;300000 -53131;12928422;187071578;300000 -53132;12926297;187073703;300000 -53133;12924171;187075829;300000 -53134;12922046;187077954;300000 -53135;12919921;187080079;300000 -53136;12917796;187082204;300000 -53137;12915671;187084329;300000 -53138;12913546;187086454;300000 -53139;12911421;187088579;300000 -53140;12909296;187090704;300000 -53141;12907171;187092829;300000 -53142;12905047;187094953;300000 -53143;12902922;187097078;300000 -53144;12900798;187099202;300000 -53145;12898673;187101327;300000 -53146;12896549;187103451;300000 -53147;12894425;187105575;300000 -53148;12892301;187107699;300000 -53149;12890177;187109823;300000 -53150;12888053;187111947;300000 -53151;12885929;187114071;300000 -53152;12883805;187116195;300000 -53153;12881681;187118319;300000 -53154;12879558;187120442;300000 -53155;12877434;187122566;300000 -53156;12875310;187124690;300000 -53157;12873187;187126813;300000 -53158;12871064;187128936;300000 -53159;12868940;187131060;300000 -53160;12866817;187133183;300000 -53161;12864694;187135306;300000 -53162;12862571;187137429;300000 -53163;12860448;187139552;300000 -53164;12858325;187141675;300000 -53165;12856202;187143798;300000 -53166;12854080;187145920;300000 -53167;12851957;187148043;300000 -53168;12849834;187150166;300000 -53169;12847712;187152288;300000 -53170;12845590;187154410;300000 -53171;12843467;187156533;300000 -53172;12841345;187158655;300000 -53173;12839223;187160777;300000 -53174;12837101;187162899;300000 -53175;12834979;187165021;300000 -53176;12832857;187167143;300000 -53177;12830735;187169265;300000 -53178;12828613;187171387;300000 -53179;12826492;187173508;300000 -53180;12824370;187175630;300000 -53181;12822249;187177751;300000 -53182;12820127;187179873;300000 -53183;12818006;187181994;300000 -53184;12815884;187184116;300000 -53185;12813763;187186237;300000 -53186;12811642;187188358;300000 -53187;12809521;187190479;300000 -53188;12807400;187192600;300000 -53189;12805279;187194721;300000 -53190;12803158;187196842;300000 -53191;12801038;187198962;300000 -53192;12798917;187201083;300000 -53193;12796797;187203203;300000 -53194;12794676;187205324;300000 -53195;12792556;187207444;300000 -53196;12790435;187209565;300000 -53197;12788315;187211685;300000 -53198;12786195;187213805;300000 -53199;12784075;187215925;300000 -53200;12781955;187218045;300000 -53201;12779835;187220165;300000 -53202;12777715;187222285;300000 -53203;12775595;187224405;300000 -53204;12773476;187226524;300000 -53205;12771356;187228644;300000 -53206;12769237;187230763;300000 -53207;12767117;187232883;300000 -53208;12764998;187235002;300000 -53209;12762878;187237122;300000 -53210;12760759;187239241;300000 -53211;12758640;187241360;300000 -53212;12756521;187243479;300000 -53213;12754402;187245598;300000 -53214;12752283;187247717;300000 -53215;12750164;187249836;300000 -53216;12748046;187251954;300000 -53217;12745927;187254073;300000 -53218;12743808;187256192;300000 -53219;12741690;187258310;300000 -53220;12739572;187260428;300000 -53221;12737453;187262547;300000 -53222;12735335;187264665;300000 -53223;12733217;187266783;300000 -53224;12731099;187268901;300000 -53225;12728981;187271019;300000 -53226;12726863;187273137;300000 -53227;12724745;187275255;300000 -53228;12722627;187277373;300000 -53229;12720509;187279491;300000 -53230;12718392;187281608;300000 -53231;12716274;187283726;300000 -53232;12714157;187285843;300000 -53233;12712040;187287960;300000 -53234;12709922;187290078;300000 -53235;12707805;187292195;300000 -53236;12705688;187294312;300000 -53237;12703571;187296429;300000 -53238;12701454;187298546;300000 -53239;12699337;187300663;300000 -53240;12697220;187302780;300000 -53241;12695103;187304897;300000 -53242;12692987;187307013;300000 -53243;12690870;187309130;300000 -53244;12688754;187311246;300000 -53245;12686637;187313363;300000 -53246;12684521;187315479;300000 -53247;12682405;187317595;300000 -53248;12680288;187319712;300000 -53249;12678172;187321828;300000 -53250;12676056;187323944;300000 -53251;12673940;187326060;300000 -53252;12671825;187328175;300000 -53253;12669709;187330291;300000 -53254;12667593;187332407;300000 -53255;12665477;187334523;300000 -53256;12663362;187336638;300000 -53257;12661246;187338754;300000 -53258;12659131;187340869;300000 -53259;12657016;187342984;300000 -53260;12654900;187345100;300000 -53261;12652785;187347215;300000 -53262;12650670;187349330;300000 -53263;12648555;187351445;300000 -53264;12646440;187353560;300000 -53265;12644326;187355674;300000 -53266;12642211;187357789;300000 -53267;12640096;187359904;300000 -53268;12637982;187362018;300000 -53269;12635867;187364133;300000 -53270;12633753;187366247;300000 -53271;12631638;187368362;300000 -53272;12629524;187370476;300000 -53273;12627410;187372590;300000 -53274;12625296;187374704;300000 -53275;12623182;187376818;300000 -53276;12621068;187378932;300000 -53277;12618954;187381046;300000 -53278;12616840;187383160;300000 -53279;12614726;187385274;300000 -53280;12612613;187387387;300000 -53281;12610499;187389501;300000 -53282;12608386;187391614;300000 -53283;12606272;187393728;300000 -53284;12604159;187395841;300000 -53285;12602046;187397954;300000 -53286;12599932;187400068;300000 -53287;12597819;187402181;300000 -53288;12595706;187404294;300000 -53289;12593593;187406407;300000 -53290;12591481;187408519;300000 -53291;12589368;187410632;300000 -53292;12587255;187412745;300000 -53293;12585143;187414857;300000 -53294;12583030;187416970;300000 -53295;12580918;187419082;300000 -53296;12578805;187421195;300000 -53297;12576693;187423307;300000 -53298;12574581;187425419;300000 -53299;12572469;187427531;300000 -53300;12570356;187429644;300000 -53301;12568244;187431756;300000 -53302;12566133;187433867;300000 -53303;12564021;187435979;300000 -53304;12561909;187438091;300000 -53305;12559797;187440203;300000 -53306;12557686;187442314;300000 -53307;12555574;187444426;300000 -53308;12553463;187446537;300000 -53309;12551352;187448648;300000 -53310;12549240;187450760;300000 -53311;12547129;187452871;300000 -53312;12545018;187454982;300000 -53313;12542907;187457093;300000 -53314;12540796;187459204;300000 -53315;12538685;187461315;300000 -53316;12536574;187463426;300000 -53317;12534464;187465536;300000 -53318;12532353;187467647;300000 -53319;12530243;187469757;300000 -53320;12528132;187471868;300000 -53321;12526022;187473978;300000 -53322;12523911;187476089;300000 -53323;12521801;187478199;300000 -53324;12519691;187480309;300000 -53325;12517581;187482419;300000 -53326;12515471;187484529;300000 -53327;12513361;187486639;300000 -53328;12511251;187488749;300000 -53329;12509141;187490859;300000 -53330;12507032;187492968;300000 -53331;12504922;187495078;300000 -53332;12502813;187497187;300000 -53333;12500703;187499297;300000 -53334;12498594;187501406;300000 -53335;12496484;187503516;300000 -53336;12494375;187505625;300000 -53337;12492266;187507734;300000 -53338;12490157;187509843;300000 -53339;12488048;187511952;300000 -53340;12485939;187514061;300000 -53341;12483830;187516170;300000 -53342;12481722;187518278;300000 -53343;12479613;187520387;300000 -53344;12477504;187522496;300000 -53345;12475396;187524604;300000 -53346;12473288;187526712;300000 -53347;12471179;187528821;300000 -53348;12469071;187530929;300000 -53349;12466963;187533037;300000 -53350;12464855;187535145;300000 -53351;12462747;187537253;300000 -53352;12460639;187539361;300000 -53353;12458531;187541469;300000 -53354;12456423;187543577;300000 -53355;12454315;187545685;300000 -53356;12452208;187547792;300000 -53357;12450100;187549900;300000 -53358;12447993;187552007;300000 -53359;12445885;187554115;300000 -53360;12443778;187556222;300000 -53361;12441671;187558329;300000 -53362;12439564;187560436;300000 -53363;12437457;187562543;300000 -53364;12435350;187564650;300000 -53365;12433243;187566757;300000 -53366;12431136;187568864;300000 -53367;12429029;187570971;300000 -53368;12426923;187573077;300000 -53369;12424816;187575184;300000 -53370;12422709;187577291;300000 -53371;12420603;187579397;300000 -53372;12418497;187581503;300000 -53373;12416390;187583610;300000 -53374;12414284;187585716;300000 -53375;12412178;187587822;300000 -53376;12410072;187589928;300000 -53377;12407966;187592034;300000 -53378;12405860;187594140;300000 -53379;12403754;187596246;300000 -53380;12401649;187598351;300000 -53381;12399543;187600457;300000 -53382;12397437;187602563;300000 -53383;12395332;187604668;300000 -53384;12393226;187606774;300000 -53385;12391121;187608879;300000 -53386;12389016;187610984;300000 -53387;12386911;187613089;300000 -53388;12384806;187615194;300000 -53389;12382701;187617299;300000 -53390;12380596;187619404;300000 -53391;12378491;187621509;300000 -53392;12376386;187623614;300000 -53393;12374281;187625719;300000 -53394;12372177;187627823;300000 -53395;12370072;187629928;300000 -53396;12367968;187632032;300000 -53397;12365863;187634137;300000 -53398;12363759;187636241;300000 -53399;12361655;187638345;300000 -53400;12359551;187640449;300000 -53401;12357446;187642554;300000 -53402;12355342;187644658;300000 -53403;12353239;187646761;300000 -53404;12351135;187648865;300000 -53405;12349031;187650969;300000 -53406;12346927;187653073;300000 -53407;12344824;187655176;300000 -53408;12342720;187657280;300000 -53409;12340617;187659383;300000 -53410;12338513;187661487;300000 -53411;12336410;187663590;300000 -53412;12334307;187665693;300000 -53413;12332204;187667796;300000 -53414;12330101;187669899;300000 -53415;12327998;187672002;300000 -53416;12325895;187674105;300000 -53417;12323792;187676208;300000 -53418;12321689;187678311;300000 -53419;12319587;187680413;300000 -53420;12317484;187682516;300000 -53421;12315382;187684618;300000 -53422;12313279;187686721;300000 -53423;12311177;187688823;300000 -53424;12309075;187690925;300000 -53425;12306972;187693028;300000 -53426;12304870;187695130;300000 -53427;12302768;187697232;300000 -53428;12300666;187699334;300000 -53429;12298564;187701436;300000 -53430;12296463;187703537;300000 -53431;12294361;187705639;300000 -53432;12292259;187707741;300000 -53433;12290158;187709842;300000 -53434;12288056;187711944;300000 -53435;12285955;187714045;300000 -53436;12283854;187716146;300000 -53437;12281752;187718248;300000 -53438;12279651;187720349;300000 -53439;12277550;187722450;300000 -53440;12275449;187724551;300000 -53441;12273348;187726652;300000 -53442;12271247;187728753;300000 -53443;12269147;187730853;300000 -53444;12267046;187732954;300000 -53445;12264945;187735055;300000 -53446;12262845;187737155;300000 -53447;12260744;187739256;300000 -53448;12258644;187741356;300000 -53449;12256544;187743456;300000 -53450;12254443;187745557;300000 -53451;12252343;187747657;300000 -53452;12250243;187749757;300000 -53453;12248143;187751857;300000 -53454;12246043;187753957;300000 -53455;12243944;187756056;300000 -53456;12241844;187758156;300000 -53457;12239744;187760256;300000 -53458;12237645;187762355;300000 -53459;12235545;187764455;300000 -53460;12233446;187766554;300000 -53461;12231346;187768654;300000 -53462;12229247;187770753;300000 -53463;12227148;187772852;300000 -53464;12225049;187774951;300000 -53465;12222950;187777050;300000 -53466;12220851;187779149;300000 -53467;12218752;187781248;300000 -53468;12216653;187783347;300000 -53469;12214554;187785446;300000 -53470;12212456;187787544;300000 -53471;12210357;187789643;300000 -53472;12208259;187791741;300000 -53473;12206160;187793840;300000 -53474;12204062;187795938;300000 -53475;12201964;187798036;300000 -53476;12199865;187800135;300000 -53477;12197767;187802233;300000 -53478;12195669;187804331;300000 -53479;12193571;187806429;300000 -53480;12191473;187808527;300000 -53481;12189376;187810624;300000 -53482;12187278;187812722;300000 -53483;12185180;187814820;300000 -53484;12183083;187816917;300000 -53485;12180985;187819015;300000 -53486;12178888;187821112;300000 -53487;12176791;187823209;300000 -53488;12174693;187825307;300000 -53489;12172596;187827404;300000 -53490;12170499;187829501;300000 -53491;12168402;187831598;300000 -53492;12166305;187833695;300000 -53493;12164208;187835792;300000 -53494;12162112;187837888;300000 -53495;12160015;187839985;300000 -53496;12157918;187842082;300000 -53497;12155822;187844178;300000 -53498;12153725;187846275;300000 -53499;12151629;187848371;300000 -53500;12149533;187850467;300000 -53501;12147436;187852564;300000 -53502;12145340;187854660;300000 -53503;12143244;187856756;300000 -53504;12141148;187858852;300000 -53505;12139052;187860948;300000 -53506;12136957;187863043;300000 -53507;12134861;187865139;300000 -53508;12132765;187867235;300000 -53509;12130670;187869330;300000 -53510;12128574;187871426;300000 -53511;12126479;187873521;300000 -53512;12124383;187875617;300000 -53513;12122288;187877712;300000 -53514;12120193;187879807;300000 -53515;12118098;187881902;300000 -53516;12116003;187883997;300000 -53517;12113908;187886092;300000 -53518;12111813;187888187;300000 -53519;12109718;187890282;300000 -53520;12107623;187892377;300000 -53521;12105529;187894471;300000 -53522;12103434;187896566;300000 -53523;12101340;187898660;300000 -53524;12099245;187900755;300000 -53525;12097151;187902849;300000 -53526;12095057;187904943;300000 -53527;12092962;187907038;300000 -53528;12090868;187909132;300000 -53529;12088774;187911226;300000 -53530;12086680;187913320;300000 -53531;12084587;187915413;300000 -53532;12082493;187917507;300000 -53533;12080399;187919601;300000 -53534;12078305;187921695;300000 -53535;12076212;187923788;300000 -53536;12074118;187925882;300000 -53537;12072025;187927975;300000 -53538;12069932;187930068;300000 -53539;12067838;187932162;300000 -53540;12065745;187934255;300000 -53541;12063652;187936348;300000 -53542;12061559;187938441;300000 -53543;12059466;187940534;300000 -53544;12057373;187942627;300000 -53545;12055281;187944719;300000 -53546;12053188;187946812;300000 -53547;12051095;187948905;300000 -53548;12049003;187950997;300000 -53549;12046910;187953090;300000 -53550;12044818;187955182;300000 -53551;12042726;187957274;300000 -53552;12040633;187959367;300000 -53553;12038541;187961459;300000 -53554;12036449;187963551;300000 -53555;12034357;187965643;300000 -53556;12032265;187967735;300000 -53557;12030173;187969827;300000 -53558;12028082;187971918;300000 -53559;12025990;187974010;300000 -53560;12023898;187976102;300000 -53561;12021807;187978193;300000 -53562;12019715;187980285;300000 -53563;12017624;187982376;300000 -53564;12015533;187984467;300000 -53565;12013442;187986558;300000 -53566;12011350;187988650;300000 -53567;12009259;187990741;300000 -53568;12007168;187992832;300000 -53569;12005078;187994922;300000 -53570;12002987;187997013;300000 -53571;12000896;187999104;300000 -53572;11998805;188001195;300000 -53573;11996715;188003285;300000 -53574;11994624;188005376;300000 -53575;11992534;188007466;300000 -53576;11990443;188009557;300000 -53577;11988353;188011647;300000 -53578;11986263;188013737;300000 -53579;11984173;188015827;300000 -53580;11982083;188017917;300000 -53581;11979993;188020007;300000 -53582;11977903;188022097;300000 -53583;11975813;188024187;300000 -53584;11973723;188026277;300000 -53585;11971634;188028366;300000 -53586;11969544;188030456;300000 -53587;11967455;188032545;300000 -53588;11965365;188034635;300000 -53589;11963276;188036724;300000 -53590;11961187;188038813;300000 -53591;11959098;188040902;300000 -53592;11957009;188042991;300000 -53593;11954919;188045081;300000 -53594;11952831;188047169;300000 -53595;11950742;188049258;300000 -53596;11948653;188051347;300000 -53597;11946564;188053436;300000 -53598;11944476;188055524;300000 -53599;11942387;188057613;300000 -53600;11940299;188059701;300000 -53601;11938210;188061790;300000 -53602;11936122;188063878;300000 -53603;11934034;188065966;300000 -53604;11931945;188068055;300000 -53605;11929857;188070143;300000 -53606;11927769;188072231;300000 -53607;11925681;188074319;300000 -53608;11923593;188076407;300000 -53609;11921506;188078494;300000 -53610;11919418;188080582;300000 -53611;11917330;188082670;300000 -53612;11915243;188084757;300000 -53613;11913155;188086845;300000 -53614;11911068;188088932;300000 -53615;11908981;188091019;300000 -53616;11906893;188093107;300000 -53617;11904806;188095194;300000 -53618;11902719;188097281;300000 -53619;11900632;188099368;300000 -53620;11898545;188101455;300000 -53621;11896458;188103542;300000 -53622;11894372;188105628;300000 -53623;11892285;188107715;300000 -53624;11890198;188109802;300000 -53625;11888112;188111888;300000 -53626;11886025;188113975;300000 -53627;11883939;188116061;300000 -53628;11881853;188118147;300000 -53629;11879767;188120233;300000 -53630;11877680;188122320;300000 -53631;11875594;188124406;300000 -53632;11873508;188126492;300000 -53633;11871422;188128578;300000 -53634;11869337;188130663;300000 -53635;11867251;188132749;300000 -53636;11865165;188134835;300000 -53637;11863080;188136920;300000 -53638;11860994;188139006;300000 -53639;11858909;188141091;300000 -53640;11856823;188143177;300000 -53641;11854738;188145262;300000 -53642;11852653;188147347;300000 -53643;11850568;188149432;300000 -53644;11848483;188151517;300000 -53645;11846398;188153602;300000 -53646;11844313;188155687;300000 -53647;11842228;188157772;300000 -53648;11840143;188159857;300000 -53649;11838058;188161942;300000 -53650;11835974;188164026;300000 -53651;11833889;188166111;300000 -53652;11831805;188168195;300000 -53653;11829721;188170279;300000 -53654;11827636;188172364;300000 -53655;11825552;188174448;300000 -53656;11823468;188176532;300000 -53657;11821384;188178616;300000 -53658;11819300;188180700;300000 -53659;11817216;188182784;300000 -53660;11815132;188184868;300000 -53661;11813049;188186951;300000 -53662;11810965;188189035;300000 -53663;11808881;188191119;300000 -53664;11806798;188193202;300000 -53665;11804714;188195286;300000 -53666;11802631;188197369;300000 -53667;11800548;188199452;300000 -53668;11798465;188201535;300000 -53669;11796382;188203618;300000 -53670;11794298;188205702;300000 -53671;11792216;188207784;300000 -53672;11790133;188209867;300000 -53673;11788050;188211950;300000 -53674;11785967;188214033;300000 -53675;11783884;188216116;300000 -53676;11781802;188218198;300000 -53677;11779719;188220281;300000 -53678;11777637;188222363;300000 -53679;11775555;188224445;300000 -53680;11773472;188226528;300000 -53681;11771390;188228610;300000 -53682;11769308;188230692;300000 -53683;11767226;188232774;300000 -53684;11765144;188234856;300000 -53685;11763062;188236938;300000 -53686;11760981;188239019;300000 -53687;11758899;188241101;300000 -53688;11756817;188243183;300000 -53689;11754736;188245264;300000 -53690;11752654;188247346;300000 -53691;11750573;188249427;300000 -53692;11748491;188251509;300000 -53693;11746410;188253590;300000 -53694;11744329;188255671;300000 -53695;11742248;188257752;300000 -53696;11740167;188259833;300000 -53697;11738086;188261914;300000 -53698;11736005;188263995;300000 -53699;11733924;188266076;300000 -53700;11731844;188268156;300000 -53701;11729763;188270237;300000 -53702;11727682;188272318;300000 -53703;11725602;188274398;300000 -53704;11723522;188276478;300000 -53705;11721441;188278559;300000 -53706;11719361;188280639;300000 -53707;11717281;188282719;300000 -53708;11715201;188284799;300000 -53709;11713121;188286879;300000 -53710;11711041;188288959;300000 -53711;11708961;188291039;300000 -53712;11706881;188293119;300000 -53713;11704801;188295199;300000 -53714;11702722;188297278;300000 -53715;11700642;188299358;300000 -53716;11698563;188301437;300000 -53717;11696483;188303517;300000 -53718;11694404;188305596;300000 -53719;11692325;188307675;300000 -53720;11690246;188309754;300000 -53721;11688167;188311833;300000 -53722;11686088;188313912;300000 -53723;11684009;188315991;300000 -53724;11681930;188318070;300000 -53725;11679851;188320149;300000 -53726;11677772;188322228;300000 -53727;11675694;188324306;300000 -53728;11673615;188326385;300000 -53729;11671537;188328463;300000 -53730;11669458;188330542;300000 -53731;11667380;188332620;300000 -53732;11665302;188334698;300000 -53733;11663224;188336776;300000 -53734;11661146;188338854;300000 -53735;11659068;188340932;300000 -53736;11656990;188343010;300000 -53737;11654912;188345088;300000 -53738;11652834;188347166;300000 -53739;11650756;188349244;300000 -53740;11648679;188351321;300000 -53741;11646601;188353399;300000 -53742;11644524;188355476;300000 -53743;11642446;188357554;300000 -53744;11640369;188359631;300000 -53745;11638292;188361708;300000 -53746;11636215;188363785;300000 -53747;11634138;188365862;300000 -53748;11632061;188367939;300000 -53749;11629984;188370016;300000 -53750;11627907;188372093;300000 -53751;11625830;188374170;300000 -53752;11623754;188376246;300000 -53753;11621677;188378323;300000 -53754;11619600;188380400;300000 -53755;11617524;188382476;300000 -53756;11615448;188384552;300000 -53757;11613371;188386629;300000 -53758;11611295;188388705;300000 -53759;11609219;188390781;300000 -53760;11607143;188392857;300000 -53761;11605067;188394933;300000 -53762;11602991;188397009;300000 -53763;11600915;188399085;300000 -53764;11598839;188401161;300000 -53765;11596764;188403236;300000 -53766;11594688;188405312;300000 -53767;11592613;188407387;300000 -53768;11590537;188409463;300000 -53769;11588462;188411538;300000 -53770;11586386;188413614;300000 -53771;11584311;188415689;300000 -53772;11582236;188417764;300000 -53773;11580161;188419839;300000 -53774;11578086;188421914;300000 -53775;11576011;188423989;300000 -53776;11573936;188426064;300000 -53777;11571862;188428138;300000 -53778;11569787;188430213;300000 -53779;11567712;188432288;300000 -53780;11565638;188434362;300000 -53781;11563563;188436437;300000 -53782;11561489;188438511;300000 -53783;11559415;188440585;300000 -53784;11557340;188442660;300000 -53785;11555266;188444734;300000 -53786;11553192;188446808;300000 -53787;11551118;188448882;300000 -53788;11549044;188450956;300000 -53789;11546971;188453029;300000 -53790;11544897;188455103;300000 -53791;11542823;188457177;300000 -53792;11540750;188459250;300000 -53793;11538676;188461324;300000 -53794;11536603;188463397;300000 -53795;11534529;188465471;300000 -53796;11532456;188467544;300000 -53797;11530383;188469617;300000 -53798;11528310;188471690;300000 -53799;11526237;188473763;300000 -53800;11524164;188475836;300000 -53801;11522091;188477909;300000 -53802;11520018;188479982;300000 -53803;11517945;188482055;300000 -53804;11515872;188484128;300000 -53805;11513800;188486200;300000 -53806;11511727;188488273;300000 -53807;11509655;188490345;300000 -53808;11507583;188492417;300000 -53809;11505510;188494490;300000 -53810;11503438;188496562;300000 -53811;11501366;188498634;300000 -53812;11499294;188500706;300000 -53813;11497222;188502778;300000 -53814;11495150;188504850;300000 -53815;11493078;188506922;300000 -53816;11491006;188508994;300000 -53817;11488935;188511065;300000 -53818;11486863;188513137;300000 -53819;11484792;188515208;300000 -53820;11482720;188517280;300000 -53821;11480649;188519351;300000 -53822;11478578;188521422;300000 -53823;11476506;188523494;300000 -53824;11474435;188525565;300000 -53825;11472364;188527636;300000 -53826;11470293;188529707;300000 -53827;11468222;188531778;300000 -53828;11466151;188533849;300000 -53829;11464081;188535919;300000 -53830;11462010;188537990;300000 -53831;11459939;188540061;300000 -53832;11457869;188542131;300000 -53833;11455798;188544202;300000 -53834;11453728;188546272;300000 -53835;11451658;188548342;300000 -53836;11449588;188550412;300000 -53837;11447518;188552482;300000 -53838;11445447;188554553;300000 -53839;11443377;188556623;300000 -53840;11441308;188558692;300000 -53841;11439238;188560762;300000 -53842;11437168;188562832;300000 -53843;11435098;188564902;300000 -53844;11433029;188566971;300000 -53845;11430959;188569041;300000 -53846;11428890;188571110;300000 -53847;11426820;188573180;300000 -53848;11424751;188575249;300000 -53849;11422682;188577318;300000 -53850;11420613;188579387;300000 -53851;11418544;188581456;300000 -53852;11416475;188583525;300000 -53853;11414406;188585594;300000 -53854;11412337;188587663;300000 -53855;11410268;188589732;300000 -53856;11408200;188591800;300000 -53857;11406131;188593869;300000 -53858;11404063;188595937;300000 -53859;11401994;188598006;300000 -53860;11399926;188600074;300000 -53861;11397857;188602143;300000 -53862;11395789;188604211;300000 -53863;11393721;188606279;300000 -53864;11391653;188608347;300000 -53865;11389585;188610415;300000 -53866;11387517;188612483;300000 -53867;11385449;188614551;300000 -53868;11383382;188616618;300000 -53869;11381314;188618686;300000 -53870;11379246;188620754;300000 -53871;11377179;188622821;300000 -53872;11375111;188624889;300000 -53873;11373044;188626956;300000 -53874;11370977;188629023;300000 -53875;11368910;188631090;300000 -53876;11366842;188633158;300000 -53877;11364775;188635225;300000 -53878;11362708;188637292;300000 -53879;11360641;188639359;300000 -53880;11358575;188641425;300000 -53881;11356508;188643492;300000 -53882;11354441;188645559;300000 -53883;11352375;188647625;300000 -53884;11350308;188649692;300000 -53885;11348242;188651758;300000 -53886;11346175;188653825;300000 -53887;11344109;188655891;300000 -53888;11342043;188657957;300000 -53889;11339977;188660023;300000 -53890;11337911;188662089;300000 -53891;11335845;188664155;300000 -53892;11333779;188666221;300000 -53893;11331713;188668287;300000 -53894;11329647;188670353;300000 -53895;11327581;188672419;300000 -53896;11325516;188674484;300000 -53897;11323450;188676550;300000 -53898;11321385;188678615;300000 -53899;11319319;188680681;300000 -53900;11317254;188682746;300000 -53901;11315189;188684811;300000 -53902;11313124;188686876;300000 -53903;11311059;188688941;300000 -53904;11308994;188691006;300000 -53905;11306929;188693071;300000 -53906;11304864;188695136;300000 -53907;11302799;188697201;300000 -53908;11300735;188699265;300000 -53909;11298670;188701330;300000 -53910;11296605;188703395;300000 -53911;11294541;188705459;300000 -53912;11292477;188707523;300000 -53913;11290412;188709588;300000 -53914;11288348;188711652;300000 -53915;11286284;188713716;300000 -53916;11284220;188715780;300000 -53917;11282156;188717844;300000 -53918;11280092;188719908;300000 -53919;11278028;188721972;300000 -53920;11275964;188724036;300000 -53921;11273901;188726099;300000 -53922;11271837;188728163;300000 -53923;11269774;188730226;300000 -53924;11267710;188732290;300000 -53925;11265647;188734353;300000 -53926;11263583;188736417;300000 -53927;11261520;188738480;300000 -53928;11259457;188740543;300000 -53929;11257394;188742606;300000 -53930;11255331;188744669;300000 -53931;11253268;188746732;300000 -53932;11251205;188748795;300000 -53933;11249142;188750858;300000 -53934;11247080;188752920;300000 -53935;11245017;188754983;300000 -53936;11242955;188757045;300000 -53937;11240892;188759108;300000 -53938;11238830;188761170;300000 -53939;11236767;188763233;300000 -53940;11234705;188765295;300000 -53941;11232643;188767357;300000 -53942;11230581;188769419;300000 -53943;11228519;188771481;300000 -53944;11226457;188773543;300000 -53945;11224395;188775605;300000 -53946;11222333;188777667;300000 -53947;11220272;188779728;300000 -53948;11218210;188781790;300000 -53949;11216149;188783851;300000 -53950;11214087;188785913;300000 -53951;11212026;188787974;300000 -53952;11209964;188790036;300000 -53953;11207903;188792097;300000 -53954;11205842;188794158;300000 -53955;11203781;188796219;300000 -53956;11201720;188798280;300000 -53957;11199659;188800341;300000 -53958;11197598;188802402;300000 -53959;11195537;188804463;300000 -53960;11193477;188806523;300000 -53961;11191416;188808584;300000 -53962;11189355;188810645;300000 -53963;11187295;188812705;300000 -53964;11185235;188814765;300000 -53965;11183174;188816826;300000 -53966;11181114;188818886;300000 -53967;11179054;188820946;300000 -53968;11176994;188823006;300000 -53969;11174934;188825066;300000 -53970;11172874;188827126;300000 -53971;11170814;188829186;300000 -53972;11168754;188831246;300000 -53973;11166694;188833306;300000 -53974;11164635;188835365;300000 -53975;11162575;188837425;300000 -53976;11160516;188839484;300000 -53977;11158456;188841544;300000 -53978;11156397;188843603;300000 -53979;11154338;188845662;300000 -53980;11152279;188847721;300000 -53981;11150220;188849780;300000 -53982;11148160;188851840;300000 -53983;11146102;188853898;300000 -53984;11144043;188855957;300000 -53985;11141984;188858016;300000 -53986;11139925;188860075;300000 -53987;11137867;188862133;300000 -53988;11135808;188864192;300000 -53989;11133749;188866251;300000 -53990;11131691;188868309;300000 -53991;11129633;188870367;300000 -53992;11127574;188872426;300000 -53993;11125516;188874484;300000 -53994;11123458;188876542;300000 -53995;11121400;188878600;300000 -53996;11119342;188880658;300000 -53997;11117284;188882716;300000 -53998;11115226;188884774;300000 -53999;11113169;188886831;300000 -54000;11111111;188888889;300000 -54001;11109054;188890946;300000 -54002;11106996;188893004;300000 -54003;11104939;188895061;300000 -54004;11102881;188897119;300000 -54005;11100824;188899176;300000 -54006;11098767;188901233;300000 -54007;11096710;188903290;300000 -54008;11094653;188905347;300000 -54009;11092596;188907404;300000 -54010;11090539;188909461;300000 -54011;11088482;188911518;300000 -54012;11086425;188913575;300000 -54013;11084369;188915631;300000 -54014;11082312;188917688;300000 -54015;11080255;188919745;300000 -54016;11078199;188921801;300000 -54017;11076143;188923857;300000 -54018;11074086;188925914;300000 -54019;11072030;188927970;300000 -54020;11069974;188930026;300000 -54021;11067918;188932082;300000 -54022;11065862;188934138;300000 -54023;11063806;188936194;300000 -54024;11061750;188938250;300000 -54025;11059695;188940305;300000 -54026;11057639;188942361;300000 -54027;11055583;188944417;300000 -54028;11053528;188946472;300000 -54029;11051472;188948528;300000 -54030;11049417;188950583;300000 -54031;11047362;188952638;300000 -54032;11045306;188954694;300000 -54033;11043251;188956749;300000 -54034;11041196;188958804;300000 -54035;11039141;188960859;300000 -54036;11037086;188962914;300000 -54037;11035032;188964968;300000 -54038;11032977;188967023;300000 -54039;11030922;188969078;300000 -54040;11028868;188971132;300000 -54041;11026813;188973187;300000 -54042;11024759;188975241;300000 -54043;11022704;188977296;300000 -54044;11020650;188979350;300000 -54045;11018596;188981404;300000 -54046;11016541;188983459;300000 -54047;11014487;188985513;300000 -54048;11012433;188987567;300000 -54049;11010379;188989621;300000 -54050;11008326;188991674;300000 -54051;11006272;188993728;300000 -54052;11004218;188995782;300000 -54053;11002165;188997835;300000 -54054;11000111;188999889;300000 -54055;10998058;189001942;300000 -54056;10996004;189003996;300000 -54057;10993951;189006049;300000 -54058;10991898;189008102;300000 -54059;10989844;189010156;300000 -54060;10987791;189012209;300000 -54061;10985738;189014262;300000 -54062;10983685;189016315;300000 -54063;10981633;189018367;300000 -54064;10979580;189020420;300000 -54065;10977527;189022473;300000 -54066;10975474;189024526;300000 -54067;10973422;189026578;300000 -54068;10971369;189028631;300000 -54069;10969317;189030683;300000 -54070;10967265;189032735;300000 -54071;10965212;189034788;300000 -54072;10963160;189036840;300000 -54073;10961108;189038892;300000 -54074;10959056;189040944;300000 -54075;10957004;189042996;300000 -54076;10954952;189045048;300000 -54077;10952900;189047100;300000 -54078;10950849;189049151;300000 -54079;10948797;189051203;300000 -54080;10946746;189053254;300000 -54081;10944694;189055306;300000 -54082;10942643;189057357;300000 -54083;10940591;189059409;300000 -54084;10938540;189061460;300000 -54085;10936489;189063511;300000 -54086;10934438;189065562;300000 -54087;10932387;189067613;300000 -54088;10930336;189069664;300000 -54089;10928285;189071715;300000 -54090;10926234;189073766;300000 -54091;10924183;189075817;300000 -54092;10922133;189077867;300000 -54093;10920082;189079918;300000 -54094;10918032;189081968;300000 -54095;10915981;189084019;300000 -54096;10913931;189086069;300000 -54097;10911881;189088119;300000 -54098;10909830;189090170;300000 -54099;10907780;189092220;300000 -54100;10905730;189094270;300000 -54101;10903680;189096320;300000 -54102;10901630;189098370;300000 -54103;10899580;189100420;300000 -54104;10897531;189102469;300000 -54105;10895481;189104519;300000 -54106;10893431;189106569;300000 -54107;10891382;189108618;300000 -54108;10889332;189110668;300000 -54109;10887283;189112717;300000 -54110;10885234;189114766;300000 -54111;10883185;189116815;300000 -54112;10881135;189118865;300000 -54113;10879086;189120914;300000 -54114;10877037;189122963;300000 -54115;10874988;189125012;300000 -54116;10872940;189127060;300000 -54117;10870891;189129109;300000 -54118;10868842;189131158;300000 -54119;10866794;189133206;300000 -54120;10864745;189135255;300000 -54121;10862697;189137303;300000 -54122;10860648;189139352;300000 -54123;10858600;189141400;300000 -54124;10856552;189143448;300000 -54125;10854503;189145497;300000 -54126;10852455;189147545;300000 -54127;10850407;189149593;300000 -54128;10848359;189151641;300000 -54129;10846312;189153688;300000 -54130;10844264;189155736;300000 -54131;10842216;189157784;300000 -54132;10840168;189159832;300000 -54133;10838121;189161879;300000 -54134;10836073;189163927;300000 -54135;10834026;189165974;300000 -54136;10831979;189168021;300000 -54137;10829931;189170069;300000 -54138;10827884;189172116;300000 -54139;10825837;189174163;300000 -54140;10823790;189176210;300000 -54141;10821743;189178257;300000 -54142;10819696;189180304;300000 -54143;10817650;189182350;300000 -54144;10815603;189184397;300000 -54145;10813556;189186444;300000 -54146;10811510;189188490;300000 -54147;10809463;189190537;300000 -54148;10807417;189192583;300000 -54149;10805370;189194630;300000 -54150;10803324;189196676;300000 -54151;10801278;189198722;300000 -54152;10799232;189200768;300000 -54153;10797186;189202814;300000 -54154;10795140;189204860;300000 -54155;10793094;189206906;300000 -54156;10791048;189208952;300000 -54157;10789002;189210998;300000 -54158;10786957;189213043;300000 -54159;10784911;189215089;300000 -54160;10782866;189217134;300000 -54161;10780820;189219180;300000 -54162;10778775;189221225;300000 -54163;10776730;189223270;300000 -54164;10774684;189225316;300000 -54165;10772639;189227361;300000 -54166;10770594;189229406;300000 -54167;10768549;189231451;300000 -54168;10766504;189233496;300000 -54169;10764459;189235541;300000 -54170;10762415;189237585;300000 -54171;10760370;189239630;300000 -54172;10758325;189241675;300000 -54173;10756281;189243719;300000 -54174;10754236;189245764;300000 -54175;10752192;189247808;300000 -54176;10750148;189249852;300000 -54177;10748103;189251897;300000 -54178;10746059;189253941;300000 -54179;10744015;189255985;300000 -54180;10741971;189258029;300000 -54181;10739927;189260073;300000 -54182;10737883;189262117;300000 -54183;10735840;189264160;300000 -54184;10733796;189266204;300000 -54185;10731752;189268248;300000 -54186;10729709;189270291;300000 -54187;10727665;189272335;300000 -54188;10725622;189274378;300000 -54189;10723579;189276421;300000 -54190;10721535;189278465;300000 -54191;10719492;189280508;300000 -54192;10717449;189282551;300000 -54193;10715406;189284594;300000 -54194;10713363;189286637;300000 -54195;10711320;189288680;300000 -54196;10709277;189290723;300000 -54197;10707235;189292765;300000 -54198;10705192;189294808;300000 -54199;10703150;189296850;300000 -54200;10701107;189298893;300000 -54201;10699065;189300935;300000 -54202;10697022;189302978;300000 -54203;10694980;189305020;300000 -54204;10692938;189307062;300000 -54205;10690896;189309104;300000 -54206;10688854;189311146;300000 -54207;10686812;189313188;300000 -54208;10684770;189315230;300000 -54209;10682728;189317272;300000 -54210;10680686;189319314;300000 -54211;10678645;189321355;300000 -54212;10676603;189323397;300000 -54213;10674561;189325439;300000 -54214;10672520;189327480;300000 -54215;10670479;189329521;300000 -54216;10668437;189331563;300000 -54217;10666396;189333604;300000 -54218;10664355;189335645;300000 -54219;10662314;189337686;300000 -54220;10660273;189339727;300000 -54221;10658232;189341768;300000 -54222;10656191;189343809;300000 -54223;10654150;189345850;300000 -54224;10652110;189347890;300000 -54225;10650069;189349931;300000 -54226;10648029;189351971;300000 -54227;10645988;189354012;300000 -54228;10643948;189356052;300000 -54229;10641907;189358093;300000 -54230;10639867;189360133;300000 -54231;10637827;189362173;300000 -54232;10635787;189364213;300000 -54233;10633747;189366253;300000 -54234;10631707;189368293;300000 -54235;10629667;189370333;300000 -54236;10627627;189372373;300000 -54237;10625588;189374412;300000 -54238;10623548;189376452;300000 -54239;10621509;189378491;300000 -54240;10619469;189380531;300000 -54241;10617430;189382570;300000 -54242;10615390;189384610;300000 -54243;10613351;189386649;300000 -54244;10611312;189388688;300000 -54245;10609273;189390727;300000 -54246;10607234;189392766;300000 -54247;10605195;189394805;300000 -54248;10603156;189396844;300000 -54249;10601117;189398883;300000 -54250;10599078;189400922;300000 -54251;10597040;189402960;300000 -54252;10595001;189404999;300000 -54253;10592963;189407037;300000 -54254;10590924;189409076;300000 -54255;10588886;189411114;300000 -54256;10586848;189413152;300000 -54257;10584809;189415191;300000 -54258;10582771;189417229;300000 -54259;10580733;189419267;300000 -54260;10578695;189421305;300000 -54261;10576657;189423343;300000 -54262;10574619;189425381;300000 -54263;10572582;189427418;300000 -54264;10570544;189429456;300000 -54265;10568506;189431494;300000 -54266;10566469;189433531;300000 -54267;10564431;189435569;300000 -54268;10562394;189437606;300000 -54269;10560357;189439643;300000 -54270;10558320;189441680;300000 -54271;10556282;189443718;300000 -54272;10554245;189445755;300000 -54273;10552208;189447792;300000 -54274;10550171;189449829;300000 -54275;10548135;189451865;300000 -54276;10546098;189453902;300000 -54277;10544061;189455939;300000 -54278;10542024;189457976;300000 -54279;10539988;189460012;300000 -54280;10537951;189462049;300000 -54281;10535915;189464085;300000 -54282;10533879;189466121;300000 -54283;10531842;189468158;300000 -54284;10529806;189470194;300000 -54285;10527770;189472230;300000 -54286;10525734;189474266;300000 -54287;10523698;189476302;300000 -54288;10521662;189478338;300000 -54289;10519626;189480374;300000 -54290;10517591;189482409;300000 -54291;10515555;189484445;300000 -54292;10513519;189486481;300000 -54293;10511484;189488516;300000 -54294;10509449;189490551;300000 -54295;10507413;189492587;300000 -54296;10505378;189494622;300000 -54297;10503343;189496657;300000 -54298;10501308;189498692;300000 -54299;10499273;189500727;300000 -54300;10497238;189502762;300000 -54301;10495203;189504797;300000 -54302;10493168;189506832;300000 -54303;10491133;189508867;300000 -54304;10489098;189510902;300000 -54305;10487064;189512936;300000 -54306;10485029;189514971;300000 -54307;10482995;189517005;300000 -54308;10480960;189519040;300000 -54309;10478926;189521074;300000 -54310;10476892;189523108;300000 -54311;10474858;189525142;300000 -54312;10472824;189527176;300000 -54313;10470790;189529210;300000 -54314;10468756;189531244;300000 -54315;10466722;189533278;300000 -54316;10464688;189535312;300000 -54317;10462654;189537346;300000 -54318;10460621;189539379;300000 -54319;10458587;189541413;300000 -54320;10456554;189543446;300000 -54321;10454520;189545480;300000 -54322;10452487;189547513;300000 -54323;10450454;189549546;300000 -54324;10448421;189551579;300000 -54325;10446387;189553613;300000 -54326;10444354;189555646;300000 -54327;10442321;189557679;300000 -54328;10440289;189559711;300000 -54329;10438256;189561744;300000 -54330;10436223;189563777;300000 -54331;10434190;189565810;300000 -54332;10432158;189567842;300000 -54333;10430125;189569875;300000 -54334;10428093;189571907;300000 -54335;10426061;189573939;300000 -54336;10424028;189575972;300000 -54337;10421996;189578004;300000 -54338;10419964;189580036;300000 -54339;10417932;189582068;300000 -54340;10415900;189584100;300000 -54341;10413868;189586132;300000 -54342;10411836;189588164;300000 -54343;10409804;189590196;300000 -54344;10407773;189592227;300000 -54345;10405741;189594259;300000 -54346;10403710;189596290;300000 -54347;10401678;189598322;300000 -54348;10399647;189600353;300000 -54349;10397615;189602385;300000 -54350;10395584;189604416;300000 -54351;10393553;189606447;300000 -54352;10391522;189608478;300000 -54353;10389491;189610509;300000 -54354;10387460;189612540;300000 -54355;10385429;189614571;300000 -54356;10383398;189616602;300000 -54357;10381368;189618632;300000 -54358;10379337;189620663;300000 -54359;10377306;189622694;300000 -54360;10375276;189624724;300000 -54361;10373246;189626754;300000 -54362;10371215;189628785;300000 -54363;10369185;189630815;300000 -54364;10367155;189632845;300000 -54365;10365125;189634875;300000 -54366;10363095;189636905;300000 -54367;10361065;189638935;300000 -54368;10359035;189640965;300000 -54369;10357005;189642995;300000 -54370;10354975;189645025;300000 -54371;10352946;189647054;300000 -54372;10350916;189649084;300000 -54373;10348886;189651114;300000 -54374;10346857;189653143;300000 -54375;10344828;189655172;300000 -54376;10342798;189657202;300000 -54377;10340769;189659231;300000 -54378;10338740;189661260;300000 -54379;10336711;189663289;300000 -54380;10334682;189665318;300000 -54381;10332653;189667347;300000 -54382;10330624;189669376;300000 -54383;10328595;189671405;300000 -54384;10326567;189673433;300000 -54385;10324538;189675462;300000 -54386;10322509;189677491;300000 -54387;10320481;189679519;300000 -54388;10318453;189681547;300000 -54389;10316424;189683576;300000 -54390;10314396;189685604;300000 -54391;10312368;189687632;300000 -54392;10310340;189689660;300000 -54393;10308312;189691688;300000 -54394;10306284;189693716;300000 -54395;10304256;189695744;300000 -54396;10302228;189697772;300000 -54397;10300200;189699800;300000 -54398;10298173;189701827;300000 -54399;10296145;189703855;300000 -54400;10294118;189705882;300000 -54401;10292090;189707910;300000 -54402;10290063;189709937;300000 -54403;10288036;189711964;300000 -54404;10286008;189713992;300000 -54405;10283981;189716019;300000 -54406;10281954;189718046;300000 -54407;10279927;189720073;300000 -54408;10277900;189722100;300000 -54409;10275873;189724127;300000 -54410;10273847;189726153;300000 -54411;10271820;189728180;300000 -54412;10269793;189730207;300000 -54413;10267767;189732233;300000 -54414;10265740;189734260;300000 -54415;10263714;189736286;300000 -54416;10261688;189738312;300000 -54417;10259662;189740338;300000 -54418;10257635;189742365;300000 -54419;10255609;189744391;300000 -54420;10253583;189746417;300000 -54421;10251557;189748443;300000 -54422;10249531;189750469;300000 -54423;10247506;189752494;300000 -54424;10245480;189754520;300000 -54425;10243454;189756546;300000 -54426;10241429;189758571;300000 -54427;10239403;189760597;300000 -54428;10237378;189762622;300000 -54429;10235352;189764648;300000 -54430;10233327;189766673;300000 -54431;10231302;189768698;300000 -54432;10229277;189770723;300000 -54433;10227252;189772748;300000 -54434;10225227;189774773;300000 -54435;10223202;189776798;300000 -54436;10221177;189778823;300000 -54437;10219152;189780848;300000 -54438;10217128;189782872;300000 -54439;10215103;189784897;300000 -54440;10213079;189786921;300000 -54441;10211054;189788946;300000 -54442;10209030;189790970;300000 -54443;10207005;189792995;300000 -54444;10204981;189795019;300000 -54445;10202957;189797043;300000 -54446;10200933;189799067;300000 -54447;10198909;189801091;300000 -54448;10196885;189803115;300000 -54449;10194861;189805139;300000 -54450;10192837;189807163;300000 -54451;10190814;189809186;300000 -54452;10188790;189811210;300000 -54453;10186767;189813233;300000 -54454;10184743;189815257;300000 -54455;10182720;189817280;300000 -54456;10180696;189819304;300000 -54457;10178673;189821327;300000 -54458;10176650;189823350;300000 -54459;10174627;189825373;300000 -54460;10172604;189827396;300000 -54461;10170581;189829419;300000 -54462;10168558;189831442;300000 -54463;10166535;189833465;300000 -54464;10164512;189835488;300000 -54465;10162490;189837510;300000 -54466;10160467;189839533;300000 -54467;10158445;189841555;300000 -54468;10156422;189843578;300000 -54469;10154400;189845600;300000 -54470;10152377;189847623;300000 -54471;10150355;189849645;300000 -54472;10148333;189851667;300000 -54473;10146311;189853689;300000 -54474;10144289;189855711;300000 -54475;10142267;189857733;300000 -54476;10140245;189859755;300000 -54477;10138223;189861777;300000 -54478;10136202;189863798;300000 -54479;10134180;189865820;300000 -54480;10132159;189867841;300000 -54481;10130137;189869863;300000 -54482;10128116;189871884;300000 -54483;10126094;189873906;300000 -54484;10124073;189875927;300000 -54485;10122052;189877948;300000 -54486;10120031;189879969;300000 -54487;10118010;189881990;300000 -54488;10115989;189884011;300000 -54489;10113968;189886032;300000 -54490;10111947;189888053;300000 -54491;10109926;189890074;300000 -54492;10107906;189892094;300000 -54493;10105885;189894115;300000 -54494;10103865;189896135;300000 -54495;10101844;189898156;300000 -54496;10099824;189900176;300000 -54497;10097804;189902196;300000 -54498;10095783;189904217;300000 -54499;10093763;189906237;300000 -54500;10091743;189908257;300000 -54501;10089723;189910277;300000 -54502;10087703;189912297;300000 -54503;10085683;189914317;300000 -54504;10083664;189916336;300000 -54505;10081644;189918356;300000 -54506;10079624;189920376;300000 -54507;10077605;189922395;300000 -54508;10075585;189924415;300000 -54509;10073566;189926434;300000 -54510;10071547;189928453;300000 -54511;10069527;189930473;300000 -54512;10067508;189932492;300000 -54513;10065489;189934511;300000 -54514;10063470;189936530;300000 -54515;10061451;189938549;300000 -54516;10059432;189940568;300000 -54517;10057413;189942587;300000 -54518;10055395;189944605;300000 -54519;10053376;189946624;300000 -54520;10051357;189948643;300000 -54521;10049339;189950661;300000 -54522;10047320;189952680;300000 -54523;10045302;189954698;300000 -54524;10043284;189956716;300000 -54525;10041265;189958735;300000 -54526;10039247;189960753;300000 -54527;10037229;189962771;300000 -54528;10035211;189964789;300000 -54529;10033193;189966807;300000 -54530;10031175;189968825;300000 -54531;10029158;189970842;300000 -54532;10027140;189972860;300000 -54533;10025122;189974878;300000 -54534;10023105;189976895;300000 -54535;10021087;189978913;300000 -54536;10019070;189980930;300000 -54537;10017053;189982947;300000 -54538;10015035;189984965;300000 -54539;10013018;189986982;300000 -54540;10011001;189988999;300000 -54541;10008984;189991016;300000 -54542;10006967;189993033;300000 -54543;10004950;189995050;300000 -54544;10002933;189997067;300000 -54545;10000917;189999083;300000 -54546;9998900;190001100;300000 -54547;9996883;190003117;300000 -54548;9994867;190005133;300000 -54549;9992850;190007150;300000 -54550;9990834;190009166;300000 -54551;9988818;190011182;300000 -54552;9986802;190013198;300000 -54553;9984785;190015215;300000 -54554;9982769;190017231;300000 -54555;9980753;190019247;300000 -54556;9978737;190021263;300000 -54557;9976722;190023278;300000 -54558;9974706;190025294;300000 -54559;9972690;190027310;300000 -54560;9970674;190029326;300000 -54561;9968659;190031341;300000 -54562;9966643;190033357;300000 -54563;9964628;190035372;300000 -54564;9962613;190037387;300000 -54565;9960597;190039403;300000 -54566;9958582;190041418;300000 -54567;9956567;190043433;300000 -54568;9954552;190045448;300000 -54569;9952537;190047463;300000 -54570;9950522;190049478;300000 -54571;9948507;190051493;300000 -54572;9946493;190053507;300000 -54573;9944478;190055522;300000 -54574;9942463;190057537;300000 -54575;9940449;190059551;300000 -54576;9938434;190061566;300000 -54577;9936420;190063580;300000 -54578;9934406;190065594;300000 -54579;9932392;190067608;300000 -54580;9930377;190069623;300000 -54581;9928363;190071637;300000 -54582;9926349;190073651;300000 -54583;9924335;190075665;300000 -54584;9922322;190077678;300000 -54585;9920308;190079692;300000 -54586;9918294;190081706;300000 -54587;9916280;190083720;300000 -54588;9914267;190085733;300000 -54589;9912253;190087747;300000 -54590;9910240;190089760;300000 -54591;9908227;190091773;300000 -54592;9906213;190093787;300000 -54593;9904200;190095800;300000 -54594;9902187;190097813;300000 -54595;9900174;190099826;300000 -54596;9898161;190101839;300000 -54597;9896148;190103852;300000 -54598;9894135;190105865;300000 -54599;9892123;190107877;300000 -54600;9890110;190109890;300000 -54601;9888097;190111903;300000 -54602;9886085;190113915;300000 -54603;9884072;190115928;300000 -54604;9882060;190117940;300000 -54605;9880048;190119952;300000 -54606;9878035;190121965;300000 -54607;9876023;190123977;300000 -54608;9874011;190125989;300000 -54609;9871999;190128001;300000 -54610;9869987;190130013;300000 -54611;9867975;190132025;300000 -54612;9865964;190134036;300000 -54613;9863952;190136048;300000 -54614;9861940;190138060;300000 -54615;9859929;190140071;300000 -54616;9857917;190142083;300000 -54617;9855906;190144094;300000 -54618;9853894;190146106;300000 -54619;9851883;190148117;300000 -54620;9849872;190150128;300000 -54621;9847861;190152139;300000 -54622;9845850;190154150;300000 -54623;9843839;190156161;300000 -54624;9841828;190158172;300000 -54625;9839817;190160183;300000 -54626;9837806;190162194;300000 -54627;9835795;190164205;300000 -54628;9833785;190166215;300000 -54629;9831774;190168226;300000 -54630;9829764;190170236;300000 -54631;9827753;190172247;300000 -54632;9825743;190174257;300000 -54633;9823733;190176267;300000 -54634;9821723;190178277;300000 -54635;9819713;190180287;300000 -54636;9817703;190182297;300000 -54637;9815693;190184307;300000 -54638;9813683;190186317;300000 -54639;9811673;190188327;300000 -54640;9809663;190190337;300000 -54641;9807654;190192346;300000 -54642;9805644;190194356;300000 -54643;9803635;190196365;300000 -54644;9801625;190198375;300000 -54645;9799616;190200384;300000 -54646;9797606;190202394;300000 -54647;9795597;190204403;300000 -54648;9793588;190206412;300000 -54649;9791579;190208421;300000 -54650;9789570;190210430;300000 -54651;9787561;190212439;300000 -54652;9785552;190214448;300000 -54653;9783543;190216457;300000 -54654;9781535;190218465;300000 -54655;9779526;190220474;300000 -54656;9777518;190222482;300000 -54657;9775509;190224491;300000 -54658;9773501;190226499;300000 -54659;9771492;190228508;300000 -54660;9769484;190230516;300000 -54661;9767476;190232524;300000 -54662;9765468;190234532;300000 -54663;9763460;190236540;300000 -54664;9761452;190238548;300000 -54665;9759444;190240556;300000 -54666;9757436;190242564;300000 -54667;9755428;190244572;300000 -54668;9753421;190246579;300000 -54669;9751413;190248587;300000 -54670;9749406;190250594;300000 -54671;9747398;190252602;300000 -54672;9745391;190254609;300000 -54673;9743383;190256617;300000 -54674;9741376;190258624;300000 -54675;9739369;190260631;300000 -54676;9737362;190262638;300000 -54677;9735355;190264645;300000 -54678;9733348;190266652;300000 -54679;9731341;190268659;300000 -54680;9729334;190270666;300000 -54681;9727328;190272672;300000 -54682;9725321;190274679;300000 -54683;9723314;190276686;300000 -54684;9721308;190278692;300000 -54685;9719301;190280699;300000 -54686;9717295;190282705;300000 -54687;9715289;190284711;300000 -54688;9713283;190286717;300000 -54689;9711276;190288724;300000 -54690;9709270;190290730;300000 -54691;9707264;190292736;300000 -54692;9705259;190294741;300000 -54693;9703253;190296747;300000 -54694;9701247;190298753;300000 -54695;9699241;190300759;300000 -54696;9697236;190302764;300000 -54697;9695230;190304770;300000 -54698;9693225;190306775;300000 -54699;9691219;190308781;300000 -54700;9689214;190310786;300000 -54701;9687209;190312791;300000 -54702;9685203;190314797;300000 -54703;9683198;190316802;300000 -54704;9681193;190318807;300000 -54705;9679188;190320812;300000 -54706;9677183;190322817;300000 -54707;9675179;190324821;300000 -54708;9673174;190326826;300000 -54709;9671169;190328831;300000 -54710;9669165;190330835;300000 -54711;9667160;190332840;300000 -54712;9665156;190334844;300000 -54713;9663151;190336849;300000 -54714;9661147;190338853;300000 -54715;9659143;190340857;300000 -54716;9657139;190342861;300000 -54717;9655135;190344865;300000 -54718;9653131;190346869;300000 -54719;9651127;190348873;300000 -54720;9649123;190350877;300000 -54721;9647119;190352881;300000 -54722;9645115;190354885;300000 -54723;9643112;190356888;300000 -54724;9641108;190358892;300000 -54725;9639105;190360895;300000 -54726;9637101;190362899;300000 -54727;9635098;190364902;300000 -54728;9633095;190366905;300000 -54729;9631091;190368909;300000 -54730;9629088;190370912;300000 -54731;9627085;190372915;300000 -54732;9625082;190374918;300000 -54733;9623079;190376921;300000 -54734;9621076;190378924;300000 -54735;9619074;190380926;300000 -54736;9617071;190382929;300000 -54737;9615068;190384932;300000 -54738;9613066;190386934;300000 -54739;9611063;190388937;300000 -54740;9609061;190390939;300000 -54741;9607059;190392941;300000 -54742;9605056;190394944;300000 -54743;9603054;190396946;300000 -54744;9601052;190398948;300000 -54745;9599050;190400950;300000 -54746;9597048;190402952;300000 -54747;9595046;190404954;300000 -54748;9593044;190406956;300000 -54749;9591043;190408957;300000 -54750;9589041;190410959;300000 -54751;9587040;190412960;300000 -54752;9585038;190414962;300000 -54753;9583037;190416963;300000 -54754;9581035;190418965;300000 -54755;9579034;190420966;300000 -54756;9577033;190422967;300000 -54757;9575032;190424968;300000 -54758;9573030;190426970;300000 -54759;9571029;190428971;300000 -54760;9569028;190430972;300000 -54761;9567028;190432972;300000 -54762;9565027;190434973;300000 -54763;9563026;190436974;300000 -54764;9561025;190438975;300000 -54765;9559025;190440975;300000 -54766;9557024;190442976;300000 -54767;9555024;190444976;300000 -54768;9553024;190446976;300000 -54769;9551023;190448977;300000 -54770;9549023;190450977;300000 -54771;9547023;190452977;300000 -54772;9545023;190454977;300000 -54773;9543023;190456977;300000 -54774;9541023;190458977;300000 -54775;9539023;190460977;300000 -54776;9537024;190462976;300000 -54777;9535024;190464976;300000 -54778;9533024;190466976;300000 -54779;9531025;190468975;300000 -54780;9529025;190470975;300000 -54781;9527026;190472974;300000 -54782;9525026;190474974;300000 -54783;9523027;190476973;300000 -54784;9521028;190478972;300000 -54785;9519029;190480971;300000 -54786;9517030;190482970;300000 -54787;9515031;190484969;300000 -54788;9513032;190486968;300000 -54789;9511033;190488967;300000 -54790;9509034;190490966;300000 -54791;9507036;190492964;300000 -54792;9505037;190494963;300000 -54793;9503039;190496961;300000 -54794;9501040;190498960;300000 -54795;9499042;190500958;300000 -54796;9497044;190502956;300000 -54797;9495045;190504955;300000 -54798;9493047;190506953;300000 -54799;9491049;190508951;300000 -54800;9489051;190510949;300000 -54801;9487053;190512947;300000 -54802;9485055;190514945;300000 -54803;9483057;190516943;300000 -54804;9481060;190518940;300000 -54805;9479062;190520938;300000 -54806;9477065;190522935;300000 -54807;9475067;190524933;300000 -54808;9473070;190526930;300000 -54809;9471072;190528928;300000 -54810;9469075;190530925;300000 -54811;9467078;190532922;300000 -54812;9465081;190534919;300000 -54813;9463084;190536916;300000 -54814;9461087;190538913;300000 -54815;9459090;190540910;300000 -54816;9457093;190542907;300000 -54817;9455096;190544904;300000 -54818;9453099;190546901;300000 -54819;9451103;190548897;300000 -54820;9449106;190550894;300000 -54821;9447110;190552890;300000 -54822;9445113;190554887;300000 -54823;9443117;190556883;300000 -54824;9441121;190558879;300000 -54825;9439124;190560876;300000 -54826;9437128;190562872;300000 -54827;9435132;190564868;300000 -54828;9433136;190566864;300000 -54829;9431140;190568860;300000 -54830;9429145;190570855;300000 -54831;9427149;190572851;300000 -54832;9425153;190574847;300000 -54833;9423158;190576842;300000 -54834;9421162;190578838;300000 -54835;9419167;190580833;300000 -54836;9417171;190582829;300000 -54837;9415176;190584824;300000 -54838;9413181;190586819;300000 -54839;9411185;190588815;300000 -54840;9409190;190590810;300000 -54841;9407195;190592805;300000 -54842;9405200;190594800;300000 -54843;9403206;190596794;300000 -54844;9401211;190598789;300000 -54845;9399216;190600784;300000 -54846;9397221;190602779;300000 -54847;9395227;190604773;300000 -54848;9393232;190606768;300000 -54849;9391238;190608762;300000 -54850;9389243;190610757;300000 -54851;9387249;190612751;300000 -54852;9385255;190614745;300000 -54853;9383261;190616739;300000 -54854;9381267;190618733;300000 -54855;9379273;190620727;300000 -54856;9377279;190622721;300000 -54857;9375285;190624715;300000 -54858;9373291;190626709;300000 -54859;9371297;190628703;300000 -54860;9369304;190630696;300000 -54861;9367310;190632690;300000 -54862;9365317;190634683;300000 -54863;9363323;190636677;300000 -54864;9361330;190638670;300000 -54865;9359337;190640663;300000 -54866;9357343;190642657;300000 -54867;9355350;190644650;300000 -54868;9353357;190646643;300000 -54869;9351364;190648636;300000 -54870;9349371;190650629;300000 -54871;9347378;190652622;300000 -54872;9345386;190654614;300000 -54873;9343393;190656607;300000 -54874;9341400;190658600;300000 -54875;9339408;190660592;300000 -54876;9337415;190662585;300000 -54877;9335423;190664577;300000 -54878;9333431;190666569;300000 -54879;9331438;190668562;300000 -54880;9329446;190670554;300000 -54881;9327454;190672546;300000 -54882;9325462;190674538;300000 -54883;9323470;190676530;300000 -54884;9321478;190678522;300000 -54885;9319486;190680514;300000 -54886;9317494;190682506;300000 -54887;9315503;190684497;300000 -54888;9313511;190686489;300000 -54889;9311520;190688480;300000 -54890;9309528;190690472;300000 -54891;9307537;190692463;300000 -54892;9305545;190694455;300000 -54893;9303554;190696446;300000 -54894;9301563;190698437;300000 -54895;9299572;190700428;300000 -54896;9297581;190702419;300000 -54897;9295590;190704410;300000 -54898;9293599;190706401;300000 -54899;9291608;190708392;300000 -54900;9289617;190710383;300000 -54901;9287627;190712373;300000 -54902;9285636;190714364;300000 -54903;9283646;190716354;300000 -54904;9281655;190718345;300000 -54905;9279665;190720335;300000 -54906;9277675;190722325;300000 -54907;9275684;190724316;300000 -54908;9273694;190726306;300000 -54909;9271704;190728296;300000 -54910;9269714;190730286;300000 -54911;9267724;190732276;300000 -54912;9265734;190734266;300000 -54913;9263744;190736256;300000 -54914;9261755;190738245;300000 -54915;9259765;190740235;300000 -54916;9257776;190742224;300000 -54917;9255786;190744214;300000 -54918;9253797;190746203;300000 -54919;9251807;190748193;300000 -54920;9249818;190750182;300000 -54921;9247829;190752171;300000 -54922;9245840;190754160;300000 -54923;9243850;190756150;300000 -54924;9241861;190758139;300000 -54925;9239873;190760127;300000 -54926;9237884;190762116;300000 -54927;9235895;190764105;300000 -54928;9233906;190766094;300000 -54929;9231918;190768082;300000 -54930;9229929;190770071;300000 -54931;9227941;190772059;300000 -54932;9225952;190774048;300000 -54933;9223964;190776036;300000 -54934;9221975;190778025;300000 -54935;9219987;190780013;300000 -54936;9217999;190782001;300000 -54937;9216011;190783989;300000 -54938;9214023;190785977;300000 -54939;9212035;190787965;300000 -54940;9210047;190789953;300000 -54941;9208060;190791940;300000 -54942;9206072;190793928;300000 -54943;9204084;190795916;300000 -54944;9202097;190797903;300000 -54945;9200109;190799891;300000 -54946;9198122;190801878;300000 -54947;9196134;190803866;300000 -54948;9194147;190805853;300000 -54949;9192160;190807840;300000 -54950;9190173;190809827;300000 -54951;9188186;190811814;300000 -54952;9186199;190813801;300000 -54953;9184212;190815788;300000 -54954;9182225;190817775;300000 -54955;9180238;190819762;300000 -54956;9178252;190821748;300000 -54957;9176265;190823735;300000 -54958;9174279;190825721;300000 -54959;9172292;190827708;300000 -54960;9170306;190829694;300000 -54961;9168319;190831681;300000 -54962;9166333;190833667;300000 -54963;9164347;190835653;300000 -54964;9162361;190837639;300000 -54965;9160375;190839625;300000 -54966;9158389;190841611;300000 -54967;9156403;190843597;300000 -54968;9154417;190845583;300000 -54969;9152431;190847569;300000 -54970;9150446;190849554;300000 -54971;9148460;190851540;300000 -54972;9146475;190853525;300000 -54973;9144489;190855511;300000 -54974;9142504;190857496;300000 -54975;9140518;190859482;300000 -54976;9138533;190861467;300000 -54977;9136548;190863452;300000 -54978;9134563;190865437;300000 -54979;9132578;190867422;300000 -54980;9130593;190869407;300000 -54981;9128608;190871392;300000 -54982;9126623;190873377;300000 -54983;9124639;190875361;300000 -54984;9122654;190877346;300000 -54985;9120669;190879331;300000 -54986;9118685;190881315;300000 -54987;9116700;190883300;300000 -54988;9114716;190885284;300000 -54989;9112732;190887268;300000 -54990;9110747;190889253;300000 -54991;9108763;190891237;300000 -54992;9106779;190893221;300000 -54993;9104795;190895205;300000 -54994;9102811;190897189;300000 -54995;9100827;190899173;300000 -54996;9098844;190901156;300000 -54997;9096860;190903140;300000 -54998;9094876;190905124;300000 -54999;9092893;190907107;300000 -55000;9090909;190909091;300000 -55001;9088926;190911074;300000 -55002;9086942;190913058;300000 -55003;9084959;190915041;300000 -55004;9082976;190917024;300000 -55005;9080993;190919007;300000 -55006;9079010;190920990;300000 -55007;9077027;190922973;300000 -55008;9075044;190924956;300000 -55009;9073061;190926939;300000 -55010;9071078;190928922;300000 -55011;9069095;190930905;300000 -55012;9067113;190932887;300000 -55013;9065130;190934870;300000 -55014;9063148;190936852;300000 -55015;9061165;190938835;300000 -55016;9059183;190940817;300000 -55017;9057201;190942799;300000 -55018;9055218;190944782;300000 -55019;9053236;190946764;300000 -55020;9051254;190948746;300000 -55021;9049272;190950728;300000 -55022;9047290;190952710;300000 -55023;9045308;190954692;300000 -55024;9043327;190956673;300000 -55025;9041345;190958655;300000 -55026;9039363;190960637;300000 -55027;9037382;190962618;300000 -55028;9035400;190964600;300000 -55029;9033419;190966581;300000 -55030;9031437;190968563;300000 -55031;9029456;190970544;300000 -55032;9027475;190972525;300000 -55033;9025494;190974506;300000 -55034;9023513;190976487;300000 -55035;9021532;190978468;300000 -55036;9019551;190980449;300000 -55037;9017570;190982430;300000 -55038;9015589;190984411;300000 -55039;9013609;190986391;300000 -55040;9011628;190988372;300000 -55041;9009647;190990353;300000 -55042;9007667;190992333;300000 -55043;9005686;190994314;300000 -55044;9003706;190996294;300000 -55045;9001726;190998274;300000 -55046;8999746;191000254;300000 -55047;8997766;191002234;300000 -55048;8995785;191004215;300000 -55049;8993806;191006194;300000 -55050;8991826;191008174;300000 -55051;8989846;191010154;300000 -55052;8987866;191012134;300000 -55053;8985886;191014114;300000 -55054;8983907;191016093;300000 -55055;8981927;191018073;300000 -55056;8979948;191020052;300000 -55057;8977968;191022032;300000 -55058;8975989;191024011;300000 -55059;8974010;191025990;300000 -55060;8972031;191027969;300000 -55061;8970051;191029949;300000 -55062;8968072;191031928;300000 -55063;8966093;191033907;300000 -55064;8964114;191035886;300000 -55065;8962136;191037864;300000 -55066;8960157;191039843;300000 -55067;8958178;191041822;300000 -55068;8956200;191043800;300000 -55069;8954221;191045779;300000 -55070;8952243;191047757;300000 -55071;8950264;191049736;300000 -55072;8948286;191051714;300000 -55073;8946308;191053692;300000 -55074;8944329;191055671;300000 -55075;8942351;191057649;300000 -55076;8940373;191059627;300000 -55077;8938395;191061605;300000 -55078;8936417;191063583;300000 -55079;8934440;191065560;300000 -55080;8932462;191067538;300000 -55081;8930484;191069516;300000 -55082;8928507;191071493;300000 -55083;8926529;191073471;300000 -55084;8924552;191075448;300000 -55085;8922574;191077426;300000 -55086;8920597;191079403;300000 -55087;8918620;191081380;300000 -55088;8916642;191083358;300000 -55089;8914665;191085335;300000 -55090;8912688;191087312;300000 -55091;8910711;191089289;300000 -55092;8908734;191091266;300000 -55093;8906758;191093242;300000 -55094;8904781;191095219;300000 -55095;8902804;191097196;300000 -55096;8900828;191099172;300000 -55097;8898851;191101149;300000 -55098;8896875;191103125;300000 -55099;8894898;191105102;300000 -55100;8892922;191107078;300000 -55101;8890946;191109054;300000 -55102;8888970;191111030;300000 -55103;8886993;191113007;300000 -55104;8885017;191114983;300000 -55105;8883041;191116959;300000 -55106;8881066;191118934;300000 -55107;8879090;191120910;300000 -55108;8877114;191122886;300000 -55109;8875138;191124862;300000 -55110;8873163;191126837;300000 -55111;8871187;191128813;300000 -55112;8869212;191130788;300000 -55113;8867236;191132764;300000 -55114;8865261;191134739;300000 -55115;8863286;191136714;300000 -55116;8861311;191138689;300000 -55117;8859336;191140664;300000 -55118;8857361;191142639;300000 -55119;8855386;191144614;300000 -55120;8853411;191146589;300000 -55121;8851436;191148564;300000 -55122;8849461;191150539;300000 -55123;8847487;191152513;300000 -55124;8845512;191154488;300000 -55125;8843537;191156463;300000 -55126;8841563;191158437;300000 -55127;8839589;191160411;300000 -55128;8837614;191162386;300000 -55129;8835640;191164360;300000 -55130;8833666;191166334;300000 -55131;8831692;191168308;300000 -55132;8829718;191170282;300000 -55133;8827744;191172256;300000 -55134;8825770;191174230;300000 -55135;8823796;191176204;300000 -55136;8821822;191178178;300000 -55137;8819849;191180151;300000 -55138;8817875;191182125;300000 -55139;8815902;191184098;300000 -55140;8813928;191186072;300000 -55141;8811955;191188045;300000 -55142;8809982;191190018;300000 -55143;8808008;191191992;300000 -55144;8806035;191193965;300000 -55145;8804062;191195938;300000 -55146;8802089;191197911;300000 -55147;8800116;191199884;300000 -55148;8798143;191201857;300000 -55149;8796170;191203830;300000 -55150;8794198;191205802;300000 -55151;8792225;191207775;300000 -55152;8790252;191209748;300000 -55153;8788280;191211720;300000 -55154;8786307;191213693;300000 -55155;8784335;191215665;300000 -55156;8782363;191217637;300000 -55157;8780391;191219609;300000 -55158;8778418;191221582;300000 -55159;8776446;191223554;300000 -55160;8774474;191225526;300000 -55161;8772502;191227498;300000 -55162;8770530;191229470;300000 -55163;8768559;191231441;300000 -55164;8766587;191233413;300000 -55165;8764615;191235385;300000 -55166;8762644;191237356;300000 -55167;8760672;191239328;300000 -55168;8758701;191241299;300000 -55169;8756729;191243271;300000 -55170;8754758;191245242;300000 -55171;8752787;191247213;300000 -55172;8750816;191249184;300000 -55173;8748845;191251155;300000 -55174;8746874;191253126;300000 -55175;8744903;191255097;300000 -55176;8742932;191257068;300000 -55177;8740961;191259039;300000 -55178;8738990;191261010;300000 -55179;8737020;191262980;300000 -55180;8735049;191264951;300000 -55181;8733078;191266922;300000 -55182;8731108;191268892;300000 -55183;8729138;191270862;300000 -55184;8727167;191272833;300000 -55185;8725197;191274803;300000 -55186;8723227;191276773;300000 -55187;8721257;191278743;300000 -55188;8719287;191280713;300000 -55189;8717317;191282683;300000 -55190;8715347;191284653;300000 -55191;8713377;191286623;300000 -55192;8711407;191288593;300000 -55193;8709438;191290562;300000 -55194;8707468;191292532;300000 -55195;8705499;191294501;300000 -55196;8703529;191296471;300000 -55197;8701560;191298440;300000 -55198;8699591;191300409;300000 -55199;8697621;191302379;300000 -55200;8695652;191304348;300000 -55201;8693683;191306317;300000 -55202;8691714;191308286;300000 -55203;8689745;191310255;300000 -55204;8687776;191312224;300000 -55205;8685807;191314193;300000 -55206;8683839;191316161;300000 -55207;8681870;191318130;300000 -55208;8679901;191320099;300000 -55209;8677933;191322067;300000 -55210;8675964;191324036;300000 -55211;8673996;191326004;300000 -55212;8672028;191327972;300000 -55213;8670060;191329940;300000 -55214;8668091;191331909;300000 -55215;8666123;191333877;300000 -55216;8664155;191335845;300000 -55217;8662187;191337813;300000 -55218;8660219;191339781;300000 -55219;8658252;191341748;300000 -55220;8656284;191343716;300000 -55221;8654316;191345684;300000 -55222;8652349;191347651;300000 -55223;8650381;191349619;300000 -55224;8648414;191351586;300000 -55225;8646446;191353554;300000 -55226;8644479;191355521;300000 -55227;8642512;191357488;300000 -55228;8640545;191359455;300000 -55229;8638578;191361422;300000 -55230;8636611;191363389;300000 -55231;8634644;191365356;300000 -55232;8632677;191367323;300000 -55233;8630710;191369290;300000 -55234;8628743;191371257;300000 -55235;8626777;191373223;300000 -55236;8624810;191375190;300000 -55237;8622843;191377157;300000 -55238;8620877;191379123;300000 -55239;8618911;191381089;300000 -55240;8616944;191383056;300000 -55241;8614978;191385022;300000 -55242;8613012;191386988;300000 -55243;8611046;191388954;300000 -55244;8609080;191390920;300000 -55245;8607114;191392886;300000 -55246;8605148;191394852;300000 -55247;8603182;191396818;300000 -55248;8601216;191398784;300000 -55249;8599251;191400749;300000 -55250;8597285;191402715;300000 -55251;8595320;191404680;300000 -55252;8593354;191406646;300000 -55253;8591389;191408611;300000 -55254;8589423;191410577;300000 -55255;8587458;191412542;300000 -55256;8585493;191414507;300000 -55257;8583528;191416472;300000 -55258;8581563;191418437;300000 -55259;8579598;191420402;300000 -55260;8577633;191422367;300000 -55261;8575668;191424332;300000 -55262;8573703;191426297;300000 -55263;8571739;191428261;300000 -55264;8569774;191430226;300000 -55265;8567810;191432190;300000 -55266;8565845;191434155;300000 -55267;8563881;191436119;300000 -55268;8561916;191438084;300000 -55269;8559952;191440048;300000 -55270;8557988;191442012;300000 -55271;8556024;191443976;300000 -55272;8554060;191445940;300000 -55273;8552096;191447904;300000 -55274;8550132;191449868;300000 -55275;8548168;191451832;300000 -55276;8546205;191453795;300000 -55277;8544241;191455759;300000 -55278;8542277;191457723;300000 -55279;8540314;191459686;300000 -55280;8538350;191461650;300000 -55281;8536387;191463613;300000 -55282;8534424;191465576;300000 -55283;8532460;191467540;300000 -55284;8530497;191469503;300000 -55285;8528534;191471466;300000 -55286;8526571;191473429;300000 -55287;8524608;191475392;300000 -55288;8522645;191477355;300000 -55289;8520682;191479318;300000 -55290;8518719;191481281;300000 -55291;8516757;191483243;300000 -55292;8514794;191485206;300000 -55293;8512832;191487168;300000 -55294;8510869;191489131;300000 -55295;8508907;191491093;300000 -55296;8506944;191493056;300000 -55297;8504982;191495018;300000 -55298;8503020;191496980;300000 -55299;8501058;191498942;300000 -55300;8499096;191500904;300000 -55301;8497134;191502866;300000 -55302;8495172;191504828;300000 -55303;8493210;191506790;300000 -55304;8491248;191508752;300000 -55305;8489287;191510713;300000 -55306;8487325;191512675;300000 -55307;8485364;191514636;300000 -55308;8483402;191516598;300000 -55309;8481441;191518559;300000 -55310;8479479;191520521;300000 -55311;8477518;191522482;300000 -55312;8475557;191524443;300000 -55313;8473596;191526404;300000 -55314;8471635;191528365;300000 -55315;8469674;191530326;300000 -55316;8467713;191532287;300000 -55317;8465752;191534248;300000 -55318;8463791;191536209;300000 -55319;8461830;191538170;300000 -55320;8459870;191540130;300000 -55321;8457909;191542091;300000 -55322;8455949;191544051;300000 -55323;8453988;191546012;300000 -55324;8452028;191547972;300000 -55325;8450068;191549932;300000 -55326;8448108;191551892;300000 -55327;8446147;191553853;300000 -55328;8444187;191555813;300000 -55329;8442227;191557773;300000 -55330;8440267;191559733;300000 -55331;8438308;191561692;300000 -55332;8436348;191563652;300000 -55333;8434388;191565612;300000 -55334;8432429;191567571;300000 -55335;8430469;191569531;300000 -55336;8428509;191571491;300000 -55337;8426550;191573450;300000 -55338;8424591;191575409;300000 -55339;8422631;191577369;300000 -55340;8420672;191579328;300000 -55341;8418713;191581287;300000 -55342;8416754;191583246;300000 -55343;8414795;191585205;300000 -55344;8412836;191587164;300000 -55345;8410877;191589123;300000 -55346;8408918;191591082;300000 -55347;8406960;191593040;300000 -55348;8405001;191594999;300000 -55349;8403043;191596957;300000 -55350;8401084;191598916;300000 -55351;8399126;191600874;300000 -55352;8397167;191602833;300000 -55353;8395209;191604791;300000 -55354;8393251;191606749;300000 -55355;8391293;191608707;300000 -55356;8389334;191610666;300000 -55357;8387376;191612624;300000 -55358;8385419;191614581;300000 -55359;8383461;191616539;300000 -55360;8381503;191618497;300000 -55361;8379545;191620455;300000 -55362;8377588;191622412;300000 -55363;8375630;191624370;300000 -55364;8373672;191626328;300000 -55365;8371715;191628285;300000 -55366;8369758;191630242;300000 -55367;8367800;191632200;300000 -55368;8365843;191634157;300000 -55369;8363886;191636114;300000 -55370;8361929;191638071;300000 -55371;8359972;191640028;300000 -55372;8358015;191641985;300000 -55373;8356058;191643942;300000 -55374;8354101;191645899;300000 -55375;8352144;191647856;300000 -55376;8350188;191649812;300000 -55377;8348231;191651769;300000 -55378;8346275;191653725;300000 -55379;8344318;191655682;300000 -55380;8342362;191657638;300000 -55381;8340406;191659594;300000 -55382;8338449;191661551;300000 -55383;8336493;191663507;300000 -55384;8334537;191665463;300000 -55385;8332581;191667419;300000 -55386;8330625;191669375;300000 -55387;8328669;191671331;300000 -55388;8326713;191673287;300000 -55389;8324758;191675242;300000 -55390;8322802;191677198;300000 -55391;8320846;191679154;300000 -55392;8318891;191681109;300000 -55393;8316935;191683065;300000 -55394;8314980;191685020;300000 -55395;8313025;191686975;300000 -55396;8311069;191688931;300000 -55397;8309114;191690886;300000 -55398;8307159;191692841;300000 -55399;8305204;191694796;300000 -55400;8303249;191696751;300000 -55401;8301294;191698706;300000 -55402;8299339;191700661;300000 -55403;8297385;191702615;300000 -55404;8295430;191704570;300000 -55405;8293475;191706525;300000 -55406;8291521;191708479;300000 -55407;8289566;191710434;300000 -55408;8287612;191712388;300000 -55409;8285658;191714342;300000 -55410;8283703;191716297;300000 -55411;8281749;191718251;300000 -55412;8279795;191720205;300000 -55413;8277841;191722159;300000 -55414;8275887;191724113;300000 -55415;8273933;191726067;300000 -55416;8271979;191728021;300000 -55417;8270025;191729975;300000 -55418;8268072;191731928;300000 -55419;8266118;191733882;300000 -55420;8264165;191735835;300000 -55421;8262211;191737789;300000 -55422;8260258;191739742;300000 -55423;8258304;191741696;300000 -55424;8256351;191743649;300000 -55425;8254398;191745602;300000 -55426;8252445;191747555;300000 -55427;8250492;191749508;300000 -55428;8248539;191751461;300000 -55429;8246586;191753414;300000 -55430;8244633;191755367;300000 -55431;8242680;191757320;300000 -55432;8240727;191759273;300000 -55433;8238775;191761225;300000 -55434;8236822;191763178;300000 -55435;8234870;191765130;300000 -55436;8232917;191767083;300000 -55437;8230965;191769035;300000 -55438;8229013;191770987;300000 -55439;8227060;191772940;300000 -55440;8225108;191774892;300000 -55441;8223156;191776844;300000 -55442;8221204;191778796;300000 -55443;8219252;191780748;300000 -55444;8217300;191782700;300000 -55445;8215349;191784651;300000 -55446;8213397;191786603;300000 -55447;8211445;191788555;300000 -55448;8209494;191790506;300000 -55449;8207542;191792458;300000 -55450;8205591;191794409;300000 -55451;8203639;191796361;300000 -55452;8201688;191798312;300000 -55453;8199737;191800263;300000 -55454;8197786;191802214;300000 -55455;8195834;191804166;300000 -55456;8193883;191806117;300000 -55457;8191932;191808068;300000 -55458;8189982;191810018;300000 -55459;8188031;191811969;300000 -55460;8186080;191813920;300000 -55461;8184129;191815871;300000 -55462;8182179;191817821;300000 -55463;8180228;191819772;300000 -55464;8178278;191821722;300000 -55465;8176327;191823673;300000 -55466;8174377;191825623;300000 -55467;8172427;191827573;300000 -55468;8170477;191829523;300000 -55469;8168527;191831473;300000 -55470;8166577;191833423;300000 -55471;8164627;191835373;300000 -55472;8162677;191837323;300000 -55473;8160727;191839273;300000 -55474;8158777;191841223;300000 -55475;8156827;191843173;300000 -55476;8154878;191845122;300000 -55477;8152928;191847072;300000 -55478;8150979;191849021;300000 -55479;8149029;191850971;300000 -55480;8147080;191852920;300000 -55481;8145131;191854869;300000 -55482;8143182;191856818;300000 -55483;8141232;191858768;300000 -55484;8139283;191860717;300000 -55485;8137334;191862666;300000 -55486;8135386;191864614;300000 -55487;8133437;191866563;300000 -55488;8131488;191868512;300000 -55489;8129539;191870461;300000 -55490;8127591;191872409;300000 -55491;8125642;191874358;300000 -55492;8123694;191876306;300000 -55493;8121745;191878255;300000 -55494;8119797;191880203;300000 -55495;8117848;191882152;300000 -55496;8115900;191884100;300000 -55497;8113952;191886048;300000 -55498;8112004;191887996;300000 -55499;8110056;191889944;300000 -55500;8108108;191891892;300000 -55501;8106160;191893840;300000 -55502;8104212;191895788;300000 -55503;8102265;191897735;300000 -55504;8100317;191899683;300000 -55505;8098370;191901630;300000 -55506;8096422;191903578;300000 -55507;8094475;191905525;300000 -55508;8092527;191907473;300000 -55509;8090580;191909420;300000 -55510;8088633;191911367;300000 -55511;8086686;191913314;300000 -55512;8084738;191915262;300000 -55513;8082791;191917209;300000 -55514;8080844;191919156;300000 -55515;8078898;191921102;300000 -55516;8076951;191923049;300000 -55517;8075004;191924996;300000 -55518;8073057;191926943;300000 -55519;8071111;191928889;300000 -55520;8069164;191930836;300000 -55521;8067218;191932782;300000 -55522;8065271;191934729;300000 -55523;8063325;191936675;300000 -55524;8061379;191938621;300000 -55525;8059433;191940567;300000 -55526;8057487;191942513;300000 -55527;8055541;191944459;300000 -55528;8053595;191946405;300000 -55529;8051649;191948351;300000 -55530;8049703;191950297;300000 -55531;8047757;191952243;300000 -55532;8045811;191954189;300000 -55533;8043866;191956134;300000 -55534;8041920;191958080;300000 -55535;8039975;191960025;300000 -55536;8038029;191961971;300000 -55537;8036084;191963916;300000 -55538;8034139;191965861;300000 -55539;8032194;191967806;300000 -55540;8030248;191969752;300000 -55541;8028303;191971697;300000 -55542;8026358;191973642;300000 -55543;8024414;191975586;300000 -55544;8022469;191977531;300000 -55545;8020524;191979476;300000 -55546;8018579;191981421;300000 -55547;8016635;191983365;300000 -55548;8014690;191985310;300000 -55549;8012746;191987254;300000 -55550;8010801;191989199;300000 -55551;8008857;191991143;300000 -55552;8006912;191993088;300000 -55553;8004968;191995032;300000 -55554;8003024;191996976;300000 -55555;8001080;191998920;300000 -55556;7999136;192000864;300000 -55557;7997192;192002808;300000 -55558;7995248;192004752;300000 -55559;7993304;192006696;300000 -55560;7991361;192008639;300000 -55561;7989417;192010583;300000 -55562;7987473;192012527;300000 -55563;7985530;192014470;300000 -55564;7983586;192016414;300000 -55565;7981643;192018357;300000 -55566;7979700;192020300;300000 -55567;7977757;192022243;300000 -55568;7975813;192024187;300000 -55569;7973870;192026130;300000 -55570;7971927;192028073;300000 -55571;7969984;192030016;300000 -55572;7968041;192031959;300000 -55573;7966099;192033901;300000 -55574;7964156;192035844;300000 -55575;7962213;192037787;300000 -55576;7960271;192039729;300000 -55577;7958328;192041672;300000 -55578;7956386;192043614;300000 -55579;7954443;192045557;300000 -55580;7952501;192047499;300000 -55581;7950559;192049441;300000 -55582;7948616;192051384;300000 -55583;7946674;192053326;300000 -55584;7944732;192055268;300000 -55585;7942790;192057210;300000 -55586;7940848;192059152;300000 -55587;7938907;192061093;300000 -55588;7936965;192063035;300000 -55589;7935023;192064977;300000 -55590;7933081;192066919;300000 -55591;7931140;192068860;300000 -55592;7929198;192070802;300000 -55593;7927257;192072743;300000 -55594;7925316;192074684;300000 -55595;7923374;192076626;300000 -55596;7921433;192078567;300000 -55597;7919492;192080508;300000 -55598;7917551;192082449;300000 -55599;7915610;192084390;300000 -55600;7913669;192086331;300000 -55601;7911728;192088272;300000 -55602;7909787;192090213;300000 -55603;7907847;192092153;300000 -55604;7905906;192094094;300000 -55605;7903965;192096035;300000 -55606;7902025;192097975;300000 -55607;7900085;192099915;300000 -55608;7898144;192101856;300000 -55609;7896204;192103796;300000 -55610;7894264;192105736;300000 -55611;7892323;192107677;300000 -55612;7890383;192109617;300000 -55613;7888443;192111557;300000 -55614;7886503;192113497;300000 -55615;7884564;192115436;300000 -55616;7882624;192117376;300000 -55617;7880684;192119316;300000 -55618;7878744;192121256;300000 -55619;7876805;192123195;300000 -55620;7874865;192125135;300000 -55621;7872926;192127074;300000 -55622;7870986;192129014;300000 -55623;7869047;192130953;300000 -55624;7867108;192132892;300000 -55625;7865169;192134831;300000 -55626;7863229;192136771;300000 -55627;7861290;192138710;300000 -55628;7859351;192140649;300000 -55629;7857413;192142587;300000 -55630;7855474;192144526;300000 -55631;7853535;192146465;300000 -55632;7851596;192148404;300000 -55633;7849658;192150342;300000 -55634;7847719;192152281;300000 -55635;7845781;192154219;300000 -55636;7843842;192156158;300000 -55637;7841904;192158096;300000 -55638;7839965;192160035;300000 -55639;7838027;192161973;300000 -55640;7836089;192163911;300000 -55641;7834151;192165849;300000 -55642;7832213;192167787;300000 -55643;7830275;192169725;300000 -55644;7828337;192171663;300000 -55645;7826399;192173601;300000 -55646;7824462;192175538;300000 -55647;7822524;192177476;300000 -55648;7820587;192179413;300000 -55649;7818649;192181351;300000 -55650;7816712;192183288;300000 -55651;7814774;192185226;300000 -55652;7812837;192187163;300000 -55653;7810900;192189100;300000 -55654;7808963;192191037;300000 -55655;7807025;192192975;300000 -55656;7805088;192194912;300000 -55657;7803151;192196849;300000 -55658;7801215;192198785;300000 -55659;7799278;192200722;300000 -55660;7797341;192202659;300000 -55661;7795404;192204596;300000 -55662;7793468;192206532;300000 -55663;7791531;192208469;300000 -55664;7789595;192210405;300000 -55665;7787658;192212342;300000 -55666;7785722;192214278;300000 -55667;7783786;192216214;300000 -55668;7781850;192218150;300000 -55669;7779913;192220087;300000 -55670;7777977;192222023;300000 -55671;7776041;192223959;300000 -55672;7774105;192225895;300000 -55673;7772170;192227830;300000 -55674;7770234;192229766;300000 -55675;7768298;192231702;300000 -55676;7766363;192233637;300000 -55677;7764427;192235573;300000 -55678;7762491;192237509;300000 -55679;7760556;192239444;300000 -55680;7758621;192241379;300000 -55681;7756685;192243315;300000 -55682;7754750;192245250;300000 -55683;7752815;192247185;300000 -55684;7750880;192249120;300000 -55685;7748945;192251055;300000 -55686;7747010;192252990;300000 -55687;7745075;192254925;300000 -55688;7743140;192256860;300000 -55689;7741206;192258794;300000 -55690;7739271;192260729;300000 -55691;7737336;192262664;300000 -55692;7735402;192264598;300000 -55693;7733467;192266533;300000 -55694;7731533;192268467;300000 -55695;7729599;192270401;300000 -55696;7727664;192272336;300000 -55697;7725730;192274270;300000 -55698;7723796;192276204;300000 -55699;7721862;192278138;300000 -55700;7719928;192280072;300000 -55701;7717994;192282006;300000 -55702;7716060;192283940;300000 -55703;7714127;192285873;300000 -55704;7712193;192287807;300000 -55705;7710259;192289741;300000 -55706;7708326;192291674;300000 -55707;7706392;192293608;300000 -55708;7704459;192295541;300000 -55709;7702526;192297474;300000 -55710;7700592;192299408;300000 -55711;7698659;192301341;300000 -55712;7696726;192303274;300000 -55713;7694793;192305207;300000 -55714;7692860;192307140;300000 -55715;7690927;192309073;300000 -55716;7688994;192311006;300000 -55717;7687061;192312939;300000 -55718;7685129;192314871;300000 -55719;7683196;192316804;300000 -55720;7681263;192318737;300000 -55721;7679331;192320669;300000 -55722;7677399;192322601;300000 -55723;7675466;192324534;300000 -55724;7673534;192326466;300000 -55725;7671602;192328398;300000 -55726;7669669;192330331;300000 -55727;7667737;192332263;300000 -55728;7665805;192334195;300000 -55729;7663873;192336127;300000 -55730;7661942;192338058;300000 -55731;7660010;192339990;300000 -55732;7658078;192341922;300000 -55733;7656146;192343854;300000 -55734;7654215;192345785;300000 -55735;7652283;192347717;300000 -55736;7650352;192349648;300000 -55737;7648420;192351580;300000 -55738;7646489;192353511;300000 -55739;7644558;192355442;300000 -55740;7642626;192357374;300000 -55741;7640695;192359305;300000 -55742;7638764;192361236;300000 -55743;7636833;192363167;300000 -55744;7634902;192365098;300000 -55745;7632972;192367028;300000 -55746;7631041;192368959;300000 -55747;7629110;192370890;300000 -55748;7627179;192372821;300000 -55749;7625249;192374751;300000 -55750;7623318;192376682;300000 -55751;7621388;192378612;300000 -55752;7619458;192380542;300000 -55753;7617527;192382473;300000 -55754;7615597;192384403;300000 -55755;7613667;192386333;300000 -55756;7611737;192388263;300000 -55757;7609807;192390193;300000 -55758;7607877;192392123;300000 -55759;7605947;192394053;300000 -55760;7604017;192395983;300000 -55761;7602087;192397913;300000 -55762;7600158;192399842;300000 -55763;7598228;192401772;300000 -55764;7596299;192403701;300000 -55765;7594369;192405631;300000 -55766;7592440;192407560;300000 -55767;7590511;192409489;300000 -55768;7588581;192411419;300000 -55769;7586652;192413348;300000 -55770;7584723;192415277;300000 -55771;7582794;192417206;300000 -55772;7580865;192419135;300000 -55773;7578936;192421064;300000 -55774;7577007;192422993;300000 -55775;7575078;192424922;300000 -55776;7573150;192426850;300000 -55777;7571221;192428779;300000 -55778;7569293;192430707;300000 -55779;7567364;192432636;300000 -55780;7565436;192434564;300000 -55781;7563507;192436493;300000 -55782;7561579;192438421;300000 -55783;7559651;192440349;300000 -55784;7557723;192442277;300000 -55785;7555795;192444205;300000 -55786;7553867;192446133;300000 -55787;7551939;192448061;300000 -55788;7550011;192449989;300000 -55789;7548083;192451917;300000 -55790;7546155;192453845;300000 -55791;7544228;192455772;300000 -55792;7542300;192457700;300000 -55793;7540372;192459628;300000 -55794;7538445;192461555;300000 -55795;7536518;192463482;300000 -55796;7534590;192465410;300000 -55797;7532663;192467337;300000 -55798;7530736;192469264;300000 -55799;7528809;192471191;300000 -55800;7526882;192473118;300000 -55801;7524955;192475045;300000 -55802;7523028;192476972;300000 -55803;7521101;192478899;300000 -55804;7519174;192480826;300000 -55805;7517248;192482752;300000 -55806;7515321;192484679;300000 -55807;7513394;192486606;300000 -55808;7511468;192488532;300000 -55809;7509541;192490459;300000 -55810;7507615;192492385;300000 -55811;7505689;192494311;300000 -55812;7503763;192496237;300000 -55813;7501836;192498164;300000 -55814;7499910;192500090;300000 -55815;7497984;192502016;300000 -55816;7496058;192503942;300000 -55817;7494133;192505867;300000 -55818;7492207;192507793;300000 -55819;7490281;192509719;300000 -55820;7488355;192511645;300000 -55821;7486430;192513570;300000 -55822;7484504;192515496;300000 -55823;7482579;192517421;300000 -55824;7480653;192519347;300000 -55825;7478728;192521272;300000 -55826;7476803;192523197;300000 -55827;7474878;192525122;300000 -55828;7472953;192527047;300000 -55829;7471028;192528972;300000 -55830;7469103;192530897;300000 -55831;7467178;192532822;300000 -55832;7465253;192534747;300000 -55833;7463328;192536672;300000 -55834;7461403;192538597;300000 -55835;7459479;192540521;300000 -55836;7457554;192542446;300000 -55837;7455630;192544370;300000 -55838;7453705;192546295;300000 -55839;7451781;192548219;300000 -55840;7449857;192550143;300000 -55841;7447933;192552067;300000 -55842;7446008;192553992;300000 -55843;7444084;192555916;300000 -55844;7442160;192557840;300000 -55845;7440236;192559764;300000 -55846;7438313;192561687;300000 -55847;7436389;192563611;300000 -55848;7434465;192565535;300000 -55849;7432541;192567459;300000 -55850;7430618;192569382;300000 -55851;7428694;192571306;300000 -55852;7426771;192573229;300000 -55853;7424847;192575153;300000 -55854;7422924;192577076;300000 -55855;7421001;192578999;300000 -55856;7419078;192580922;300000 -55857;7417155;192582845;300000 -55858;7415231;192584769;300000 -55859;7413309;192586691;300000 -55860;7411386;192588614;300000 -55861;7409463;192590537;300000 -55862;7407540;192592460;300000 -55863;7405617;192594383;300000 -55864;7403695;192596305;300000 -55865;7401772;192598228;300000 -55866;7399850;192600150;300000 -55867;7397927;192602073;300000 -55868;7396005;192603995;300000 -55869;7394083;192605917;300000 -55870;7392160;192607840;300000 -55871;7390238;192609762;300000 -55872;7388316;192611684;300000 -55873;7386394;192613606;300000 -55874;7384472;192615528;300000 -55875;7382550;192617450;300000 -55876;7380629;192619371;300000 -55877;7378707;192621293;300000 -55878;7376785;192623215;300000 -55879;7374864;192625136;300000 -55880;7372942;192627058;300000 -55881;7371021;192628979;300000 -55882;7369099;192630901;300000 -55883;7367178;192632822;300000 -55884;7365257;192634743;300000 -55885;7363335;192636665;300000 -55886;7361414;192638586;300000 -55887;7359493;192640507;300000 -55888;7357572;192642428;300000 -55889;7355651;192644349;300000 -55890;7353731;192646269;300000 -55891;7351810;192648190;300000 -55892;7349889;192650111;300000 -55893;7347968;192652032;300000 -55894;7346048;192653952;300000 -55895;7344127;192655873;300000 -55896;7342207;192657793;300000 -55897;7340287;192659713;300000 -55898;7338366;192661634;300000 -55899;7336446;192663554;300000 -55900;7334526;192665474;300000 -55901;7332606;192667394;300000 -55902;7330686;192669314;300000 -55903;7328766;192671234;300000 -55904;7326846;192673154;300000 -55905;7324926;192675074;300000 -55906;7323006;192676994;300000 -55907;7321087;192678913;300000 -55908;7319167;192680833;300000 -55909;7317248;192682752;300000 -55910;7315328;192684672;300000 -55911;7313409;192686591;300000 -55912;7311489;192688511;300000 -55913;7309570;192690430;300000 -55914;7307651;192692349;300000 -55915;7305732;192694268;300000 -55916;7303813;192696187;300000 -55917;7301894;192698106;300000 -55918;7299975;192700025;300000 -55919;7298056;192701944;300000 -55920;7296137;192703863;300000 -55921;7294219;192705781;300000 -55922;7292300;192707700;300000 -55923;7290381;192709619;300000 -55924;7288463;192711537;300000 -55925;7286544;192713456;300000 -55926;7284626;192715374;300000 -55927;7282708;192717292;300000 -55928;7280790;192719210;300000 -55929;7278871;192721129;300000 -55930;7276953;192723047;300000 -55931;7275035;192724965;300000 -55932;7273117;192726883;300000 -55933;7271199;192728801;300000 -55934;7269282;192730718;300000 -55935;7267364;192732636;300000 -55936;7265446;192734554;300000 -55937;7263529;192736471;300000 -55938;7261611;192738389;300000 -55939;7259694;192740306;300000 -55940;7257776;192742224;300000 -55941;7255859;192744141;300000 -55942;7253942;192746058;300000 -55943;7252024;192747976;300000 -55944;7250107;192749893;300000 -55945;7248190;192751810;300000 -55946;7246273;192753727;300000 -55947;7244356;192755644;300000 -55948;7242439;192757561;300000 -55949;7240523;192759477;300000 -55950;7238606;192761394;300000 -55951;7236689;192763311;300000 -55952;7234773;192765227;300000 -55953;7232856;192767144;300000 -55954;7230940;192769060;300000 -55955;7229023;192770977;300000 -55956;7227107;192772893;300000 -55957;7225191;192774809;300000 -55958;7223275;192776725;300000 -55959;7221358;192778642;300000 -55960;7219442;192780558;300000 -55961;7217526;192782474;300000 -55962;7215611;192784389;300000 -55963;7213695;192786305;300000 -55964;7211779;192788221;300000 -55965;7209863;192790137;300000 -55966;7207948;192792052;300000 -55967;7206032;192793968;300000 -55968;7204117;192795883;300000 -55969;7202201;192797799;300000 -55970;7200286;192799714;300000 -55971;7198371;192801629;300000 -55972;7196455;192803545;300000 -55973;7194540;192805460;300000 -55974;7192625;192807375;300000 -55975;7190710;192809290;300000 -55976;7188795;192811205;300000 -55977;7186880;192813120;300000 -55978;7184966;192815034;300000 -55979;7183051;192816949;300000 -55980;7181136;192818864;300000 -55981;7179222;192820778;300000 -55982;7177307;192822693;300000 -55983;7175393;192824607;300000 -55984;7173478;192826522;300000 -55985;7171564;192828436;300000 -55986;7169650;192830350;300000 -55987;7167735;192832265;300000 -55988;7165821;192834179;300000 -55989;7163907;192836093;300000 -55990;7161993;192838007;300000 -55991;7160079;192839921;300000 -55992;7158165;192841835;300000 -55993;7156252;192843748;300000 -55994;7154338;192845662;300000 -55995;7152424;192847576;300000 -55996;7150511;192849489;300000 -55997;7148597;192851403;300000 -55998;7146684;192853316;300000 -55999;7144770;192855230;300000 -56000;7142857;192857143;300000 -56001;7140944;192859056;300000 -56002;7139031;192860969;300000 -56003;7137118;192862882;300000 -56004;7135205;192864795;300000 -56005;7133292;192866708;300000 -56006;7131379;192868621;300000 -56007;7129466;192870534;300000 -56008;7127553;192872447;300000 -56009;7125641;192874359;300000 -56010;7123728;192876272;300000 -56011;7121815;192878185;300000 -56012;7119903;192880097;300000 -56013;7117990;192882010;300000 -56014;7116078;192883922;300000 -56015;7114166;192885834;300000 -56016;7112254;192887746;300000 -56017;7110342;192889658;300000 -56018;7108429;192891571;300000 -56019;7106517;192893483;300000 -56020;7104605;192895395;300000 -56021;7102694;192897306;300000 -56022;7100782;192899218;300000 -56023;7098870;192901130;300000 -56024;7096958;192903042;300000 -56025;7095047;192904953;300000 -56026;7093135;192906865;300000 -56027;7091224;192908776;300000 -56028;7089312;192910688;300000 -56029;7087401;192912599;300000 -56030;7085490;192914510;300000 -56031;7083579;192916421;300000 -56032;7081668;192918332;300000 -56033;7079757;192920243;300000 -56034;7077846;192922154;300000 -56035;7075935;192924065;300000 -56036;7074024;192925976;300000 -56037;7072113;192927887;300000 -56038;7070202;192929798;300000 -56039;7068292;192931708;300000 -56040;7066381;192933619;300000 -56041;7064471;192935529;300000 -56042;7062560;192937440;300000 -56043;7060650;192939350;300000 -56044;7058740;192941260;300000 -56045;7056829;192943171;300000 -56046;7054919;192945081;300000 -56047;7053009;192946991;300000 -56048;7051099;192948901;300000 -56049;7049189;192950811;300000 -56050;7047279;192952721;300000 -56051;7045369;192954631;300000 -56052;7043460;192956540;300000 -56053;7041550;192958450;300000 -56054;7039640;192960360;300000 -56055;7037731;192962269;300000 -56056;7035821;192964179;300000 -56057;7033912;192966088;300000 -56058;7032003;192967997;300000 -56059;7030093;192969907;300000 -56060;7028184;192971816;300000 -56061;7026275;192973725;300000 -56062;7024366;192975634;300000 -56063;7022457;192977543;300000 -56064;7020548;192979452;300000 -56065;7018639;192981361;300000 -56066;7016730;192983270;300000 -56067;7014822;192985178;300000 -56068;7012913;192987087;300000 -56069;7011004;192988996;300000 -56070;7009096;192990904;300000 -56071;7007187;192992813;300000 -56072;7005279;192994721;300000 -56073;7003371;192996629;300000 -56074;7001462;192998538;300000 -56075;6999554;193000446;300000 -56076;6997646;193002354;300000 -56077;6995738;193004262;300000 -56078;6993830;193006170;300000 -56079;6991922;193008078;300000 -56080;6990014;193009986;300000 -56081;6988106;193011894;300000 -56082;6986199;193013801;300000 -56083;6984291;193015709;300000 -56084;6982384;193017616;300000 -56085;6980476;193019524;300000 -56086;6978569;193021431;300000 -56087;6976661;193023339;300000 -56088;6974754;193025246;300000 -56089;6972847;193027153;300000 -56090;6970940;193029060;300000 -56091;6969032;193030968;300000 -56092;6967125;193032875;300000 -56093;6965218;193034782;300000 -56094;6963312;193036688;300000 -56095;6961405;193038595;300000 -56096;6959498;193040502;300000 -56097;6957591;193042409;300000 -56098;6955685;193044315;300000 -56099;6953778;193046222;300000 -56100;6951872;193048128;300000 -56101;6949965;193050035;300000 -56102;6948059;193051941;300000 -56103;6946153;193053847;300000 -56104;6944246;193055754;300000 -56105;6942340;193057660;300000 -56106;6940434;193059566;300000 -56107;6938528;193061472;300000 -56108;6936622;193063378;300000 -56109;6934716;193065284;300000 -56110;6932811;193067189;300000 -56111;6930905;193069095;300000 -56112;6928999;193071001;300000 -56113;6927094;193072906;300000 -56114;6925188;193074812;300000 -56115;6923283;193076717;300000 -56116;6921377;193078623;300000 -56117;6919472;193080528;300000 -56118;6917567;193082433;300000 -56119;6915661;193084339;300000 -56120;6913756;193086244;300000 -56121;6911851;193088149;300000 -56122;6909946;193090054;300000 -56123;6908041;193091959;300000 -56124;6906136;193093864;300000 -56125;6904232;193095768;300000 -56126;6902327;193097673;300000 -56127;6900422;193099578;300000 -56128;6898518;193101482;300000 -56129;6896613;193103387;300000 -56130;6894709;193105291;300000 -56131;6892804;193107196;300000 -56132;6890900;193109100;300000 -56133;6888996;193111004;300000 -56134;6887092;193112908;300000 -56135;6885187;193114813;300000 -56136;6883283;193116717;300000 -56137;6881379;193118621;300000 -56138;6879476;193120524;300000 -56139;6877572;193122428;300000 -56140;6875668;193124332;300000 -56141;6873764;193126236;300000 -56142;6871861;193128139;300000 -56143;6869957;193130043;300000 -56144;6868054;193131946;300000 -56145;6866150;193133850;300000 -56146;6864247;193135753;300000 -56147;6862343;193137657;300000 -56148;6860440;193139560;300000 -56149;6858537;193141463;300000 -56150;6856634;193143366;300000 -56151;6854731;193145269;300000 -56152;6852828;193147172;300000 -56153;6850925;193149075;300000 -56154;6849022;193150978;300000 -56155;6847120;193152880;300000 -56156;6845217;193154783;300000 -56157;6843314;193156686;300000 -56158;6841412;193158588;300000 -56159;6839509;193160491;300000 -56160;6837607;193162393;300000 -56161;6835704;193164296;300000 -56162;6833802;193166198;300000 -56163;6831900;193168100;300000 -56164;6829998;193170002;300000 -56165;6828096;193171904;300000 -56166;6826194;193173806;300000 -56167;6824292;193175708;300000 -56168;6822390;193177610;300000 -56169;6820488;193179512;300000 -56170;6818586;193181414;300000 -56171;6816685;193183315;300000 -56172;6814783;193185217;300000 -56173;6812882;193187118;300000 -56174;6810980;193189020;300000 -56175;6809079;193190921;300000 -56176;6807177;193192823;300000 -56177;6805276;193194724;300000 -56178;6803375;193196625;300000 -56179;6801474;193198526;300000 -56180;6799573;193200427;300000 -56181;6797672;193202328;300000 -56182;6795771;193204229;300000 -56183;6793870;193206130;300000 -56184;6791969;193208031;300000 -56185;6790069;193209931;300000 -56186;6788168;193211832;300000 -56187;6786267;193213733;300000 -56188;6784367;193215633;300000 -56189;6782466;193217534;300000 -56190;6780566;193219434;300000 -56191;6778666;193221334;300000 -56192;6776765;193223235;300000 -56193;6774865;193225135;300000 -56194;6772965;193227035;300000 -56195;6771065;193228935;300000 -56196;6769165;193230835;300000 -56197;6767265;193232735;300000 -56198;6765365;193234635;300000 -56199;6763466;193236534;300000 -56200;6761566;193238434;300000 -56201;6759666;193240334;300000 -56202;6757767;193242233;300000 -56203;6755867;193244133;300000 -56204;6753968;193246032;300000 -56205;6752068;193247932;300000 -56206;6750169;193249831;300000 -56207;6748270;193251730;300000 -56208;6746371;193253629;300000 -56209;6744472;193255528;300000 -56210;6742572;193257428;300000 -56211;6740674;193259326;300000 -56212;6738775;193261225;300000 -56213;6736876;193263124;300000 -56214;6734977;193265023;300000 -56215;6733078;193266922;300000 -56216;6731180;193268820;300000 -56217;6729281;193270719;300000 -56218;6727383;193272617;300000 -56219;6725484;193274516;300000 -56220;6723586;193276414;300000 -56221;6721688;193278312;300000 -56222;6719789;193280211;300000 -56223;6717891;193282109;300000 -56224;6715993;193284007;300000 -56225;6714095;193285905;300000 -56226;6712197;193287803;300000 -56227;6710299;193289701;300000 -56228;6708402;193291598;300000 -56229;6706504;193293496;300000 -56230;6704606;193295394;300000 -56231;6702708;193297292;300000 -56232;6700811;193299189;300000 -56233;6698913;193301087;300000 -56234;6697016;193302984;300000 -56235;6695119;193304881;300000 -56236;6693221;193306779;300000 -56237;6691324;193308676;300000 -56238;6689427;193310573;300000 -56239;6687530;193312470;300000 -56240;6685633;193314367;300000 -56241;6683736;193316264;300000 -56242;6681839;193318161;300000 -56243;6679942;193320058;300000 -56244;6678046;193321954;300000 -56245;6676149;193323851;300000 -56246;6674252;193325748;300000 -56247;6672356;193327644;300000 -56248;6670459;193329541;300000 -56249;6668563;193331437;300000 -56250;6666667;193333333;300000 -56251;6664770;193335230;300000 -56252;6662874;193337126;300000 -56253;6660978;193339022;300000 -56254;6659082;193340918;300000 -56255;6657186;193342814;300000 -56256;6655290;193344710;300000 -56257;6653394;193346606;300000 -56258;6651498;193348502;300000 -56259;6649603;193350397;300000 -56260;6647707;193352293;300000 -56261;6645811;193354189;300000 -56262;6643916;193356084;300000 -56263;6642021;193357979;300000 -56264;6640125;193359875;300000 -56265;6638230;193361770;300000 -56266;6636335;193363665;300000 -56267;6634439;193365561;300000 -56268;6632544;193367456;300000 -56269;6630649;193369351;300000 -56270;6628754;193371246;300000 -56271;6626859;193373141;300000 -56272;6624964;193375036;300000 -56273;6623070;193376930;300000 -56274;6621175;193378825;300000 -56275;6619280;193380720;300000 -56276;6617386;193382614;300000 -56277;6615491;193384509;300000 -56278;6613597;193386403;300000 -56279;6611702;193388298;300000 -56280;6609808;193390192;300000 -56281;6607914;193392086;300000 -56282;6606020;193393980;300000 -56283;6604126;193395874;300000 -56284;6602232;193397768;300000 -56285;6600338;193399662;300000 -56286;6598444;193401556;300000 -56287;6596550;193403450;300000 -56288;6594656;193405344;300000 -56289;6592762;193407238;300000 -56290;6590869;193409131;300000 -56291;6588975;193411025;300000 -56292;6587082;193412918;300000 -56293;6585188;193414812;300000 -56294;6583295;193416705;300000 -56295;6581402;193418598;300000 -56296;6579508;193420492;300000 -56297;6577615;193422385;300000 -56298;6575722;193424278;300000 -56299;6573829;193426171;300000 -56300;6571936;193428064;300000 -56301;6570043;193429957;300000 -56302;6568150;193431850;300000 -56303;6566258;193433742;300000 -56304;6564365;193435635;300000 -56305;6562472;193437528;300000 -56306;6560580;193439420;300000 -56307;6558687;193441313;300000 -56308;6556795;193443205;300000 -56309;6554902;193445098;300000 -56310;6553010;193446990;300000 -56311;6551118;193448882;300000 -56312;6549226;193450774;300000 -56313;6547334;193452666;300000 -56314;6545442;193454558;300000 -56315;6543550;193456450;300000 -56316;6541658;193458342;300000 -56317;6539766;193460234;300000 -56318;6537874;193462126;300000 -56319;6535983;193464017;300000 -56320;6534091;193465909;300000 -56321;6532199;193467801;300000 -56322;6530308;193469692;300000 -56323;6528416;193471584;300000 -56324;6526525;193473475;300000 -56325;6524634;193475366;300000 -56326;6522743;193477257;300000 -56327;6520851;193479149;300000 -56328;6518960;193481040;300000 -56329;6517069;193482931;300000 -56330;6515178;193484822;300000 -56331;6513288;193486712;300000 -56332;6511397;193488603;300000 -56333;6509506;193490494;300000 -56334;6507615;193492385;300000 -56335;6505725;193494275;300000 -56336;6503834;193496166;300000 -56337;6501944;193498056;300000 -56338;6500053;193499947;300000 -56339;6498163;193501837;300000 -56340;6496273;193503727;300000 -56341;6494382;193505618;300000 -56342;6492492;193507508;300000 -56343;6490602;193509398;300000 -56344;6488712;193511288;300000 -56345;6486822;193513178;300000 -56346;6484932;193515068;300000 -56347;6483043;193516957;300000 -56348;6481153;193518847;300000 -56349;6479263;193520737;300000 -56350;6477374;193522626;300000 -56351;6475484;193524516;300000 -56352;6473595;193526405;300000 -56353;6471705;193528295;300000 -56354;6469816;193530184;300000 -56355;6467927;193532073;300000 -56356;6466037;193533963;300000 -56357;6464148;193535852;300000 -56358;6462259;193537741;300000 -56359;6460370;193539630;300000 -56360;6458481;193541519;300000 -56361;6456592;193543408;300000 -56362;6454704;193545296;300000 -56363;6452815;193547185;300000 -56364;6450926;193549074;300000 -56365;6449038;193550962;300000 -56366;6447149;193552851;300000 -56367;6445261;193554739;300000 -56368;6443372;193556628;300000 -56369;6441484;193558516;300000 -56370;6439596;193560404;300000 -56371;6437707;193562293;300000 -56372;6435819;193564181;300000 -56373;6433931;193566069;300000 -56374;6432043;193567957;300000 -56375;6430155;193569845;300000 -56376;6428267;193571733;300000 -56377;6426380;193573620;300000 -56378;6424492;193575508;300000 -56379;6422604;193577396;300000 -56380;6420717;193579283;300000 -56381;6418829;193581171;300000 -56382;6416942;193583058;300000 -56383;6415054;193584946;300000 -56384;6413167;193586833;300000 -56385;6411280;193588720;300000 -56386;6409392;193590608;300000 -56387;6407505;193592495;300000 -56388;6405618;193594382;300000 -56389;6403731;193596269;300000 -56390;6401844;193598156;300000 -56391;6399957;193600043;300000 -56392;6398071;193601929;300000 -56393;6396184;193603816;300000 -56394;6394297;193605703;300000 -56395;6392411;193607589;300000 -56396;6390524;193609476;300000 -56397;6388638;193611362;300000 -56398;6386751;193613249;300000 -56399;6384865;193615135;300000 -56400;6382979;193617021;300000 -56401;6381093;193618907;300000 -56402;6379206;193620794;300000 -56403;6377320;193622680;300000 -56404;6375434;193624566;300000 -56405;6373548;193626452;300000 -56406;6371663;193628337;300000 -56407;6369777;193630223;300000 -56408;6367891;193632109;300000 -56409;6366005;193633995;300000 -56410;6364120;193635880;300000 -56411;6362234;193637766;300000 -56412;6360349;193639651;300000 -56413;6358463;193641537;300000 -56414;6356578;193643422;300000 -56415;6354693;193645307;300000 -56416;6352808;193647192;300000 -56417;6350923;193649077;300000 -56418;6349038;193650962;300000 -56419;6347153;193652847;300000 -56420;6345268;193654732;300000 -56421;6343383;193656617;300000 -56422;6341498;193658502;300000 -56423;6339613;193660387;300000 -56424;6337729;193662271;300000 -56425;6335844;193664156;300000 -56426;6333960;193666040;300000 -56427;6332075;193667925;300000 -56428;6330191;193669809;300000 -56429;6328306;193671694;300000 -56430;6326422;193673578;300000 -56431;6324538;193675462;300000 -56432;6322654;193677346;300000 -56433;6320770;193679230;300000 -56434;6318886;193681114;300000 -56435;6317002;193682998;300000 -56436;6315118;193684882;300000 -56437;6313234;193686766;300000 -56438;6311351;193688649;300000 -56439;6309467;193690533;300000 -56440;6307583;193692417;300000 -56441;6305700;193694300;300000 -56442;6303816;193696184;300000 -56443;6301933;193698067;300000 -56444;6300050;193699950;300000 -56445;6298166;193701834;300000 -56446;6296283;193703717;300000 -56447;6294400;193705600;300000 -56448;6292517;193707483;300000 -56449;6290634;193709366;300000 -56450;6288751;193711249;300000 -56451;6286868;193713132;300000 -56452;6284985;193715015;300000 -56453;6283103;193716897;300000 -56454;6281220;193718780;300000 -56455;6279338;193720662;300000 -56456;6277455;193722545;300000 -56457;6275573;193724427;300000 -56458;6273690;193726310;300000 -56459;6271808;193728192;300000 -56460;6269926;193730074;300000 -56461;6268043;193731957;300000 -56462;6266161;193733839;300000 -56463;6264279;193735721;300000 -56464;6262397;193737603;300000 -56465;6260515;193739485;300000 -56466;6258634;193741366;300000 -56467;6256752;193743248;300000 -56468;6254870;193745130;300000 -56469;6252988;193747012;300000 -56470;6251107;193748893;300000 -56471;6249225;193750775;300000 -56472;6247344;193752656;300000 -56473;6245462;193754538;300000 -56474;6243581;193756419;300000 -56475;6241700;193758300;300000 -56476;6239819;193760181;300000 -56477;6237938;193762062;300000 -56478;6236057;193763943;300000 -56479;6234176;193765824;300000 -56480;6232295;193767705;300000 -56481;6230414;193769586;300000 -56482;6228533;193771467;300000 -56483;6226652;193773348;300000 -56484;6224772;193775228;300000 -56485;6222891;193777109;300000 -56486;6221011;193778989;300000 -56487;6219130;193780870;300000 -56488;6217250;193782750;300000 -56489;6215369;193784631;300000 -56490;6213489;193786511;300000 -56491;6211609;193788391;300000 -56492;6209729;193790271;300000 -56493;6207849;193792151;300000 -56494;6205969;193794031;300000 -56495;6204089;193795911;300000 -56496;6202209;193797791;300000 -56497;6200329;193799671;300000 -56498;6198450;193801550;300000 -56499;6196570;193803430;300000 -56500;6194690;193805310;300000 -56501;6192811;193807189;300000 -56502;6190931;193809069;300000 -56503;6189052;193810948;300000 -56504;6187173;193812827;300000 -56505;6185293;193814707;300000 -56506;6183414;193816586;300000 -56507;6181535;193818465;300000 -56508;6179656;193820344;300000 -56509;6177777;193822223;300000 -56510;6175898;193824102;300000 -56511;6174019;193825981;300000 -56512;6172140;193827860;300000 -56513;6170262;193829738;300000 -56514;6168383;193831617;300000 -56515;6166504;193833496;300000 -56516;6164626;193835374;300000 -56517;6162747;193837253;300000 -56518;6160869;193839131;300000 -56519;6158991;193841009;300000 -56520;6157113;193842887;300000 -56521;6155234;193844766;300000 -56522;6153356;193846644;300000 -56523;6151478;193848522;300000 -56524;6149600;193850400;300000 -56525;6147722;193852278;300000 -56526;6145844;193854156;300000 -56527;6143967;193856033;300000 -56528;6142089;193857911;300000 -56529;6140211;193859789;300000 -56530;6138334;193861666;300000 -56531;6136456;193863544;300000 -56532;6134579;193865421;300000 -56533;6132701;193867299;300000 -56534;6130824;193869176;300000 -56535;6128947;193871053;300000 -56536;6127069;193872931;300000 -56537;6125192;193874808;300000 -56538;6123315;193876685;300000 -56539;6121438;193878562;300000 -56540;6119561;193880439;300000 -56541;6117685;193882315;300000 -56542;6115808;193884192;300000 -56543;6113931;193886069;300000 -56544;6112054;193887946;300000 -56545;6110178;193889822;300000 -56546;6108301;193891699;300000 -56547;6106425;193893575;300000 -56548;6104548;193895452;300000 -56549;6102672;193897328;300000 -56550;6100796;193899204;300000 -56551;6098920;193901080;300000 -56552;6097043;193902957;300000 -56553;6095167;193904833;300000 -56554;6093291;193906709;300000 -56555;6091415;193908585;300000 -56556;6089540;193910460;300000 -56557;6087664;193912336;300000 -56558;6085788;193914212;300000 -56559;6083912;193916088;300000 -56560;6082037;193917963;300000 -56561;6080161;193919839;300000 -56562;6078286;193921714;300000 -56563;6076410;193923590;300000 -56564;6074535;193925465;300000 -56565;6072660;193927340;300000 -56566;6070785;193929215;300000 -56567;6068909;193931091;300000 -56568;6067034;193932966;300000 -56569;6065159;193934841;300000 -56570;6063284;193936716;300000 -56571;6061410;193938590;300000 -56572;6059535;193940465;300000 -56573;6057660;193942340;300000 -56574;6055785;193944215;300000 -56575;6053911;193946089;300000 -56576;6052036;193947964;300000 -56577;6050162;193949838;300000 -56578;6048287;193951713;300000 -56579;6046413;193953587;300000 -56580;6044539;193955461;300000 -56581;6042664;193957336;300000 -56582;6040790;193959210;300000 -56583;6038916;193961084;300000 -56584;6037042;193962958;300000 -56585;6035168;193964832;300000 -56586;6033294;193966706;300000 -56587;6031421;193968579;300000 -56588;6029547;193970453;300000 -56589;6027673;193972327;300000 -56590;6025800;193974200;300000 -56591;6023926;193976074;300000 -56592;6022053;193977947;300000 -56593;6020179;193979821;300000 -56594;6018306;193981694;300000 -56595;6016433;193983567;300000 -56596;6014559;193985441;300000 -56597;6012686;193987314;300000 -56598;6010813;193989187;300000 -56599;6008940;193991060;300000 -56600;6007067;193992933;300000 -56601;6005194;193994806;300000 -56602;6003321;193996679;300000 -56603;6001449;193998551;300000 -56604;5999576;194000424;300000 -56605;5997703;194002297;300000 -56606;5995831;194004169;300000 -56607;5993958;194006042;300000 -56608;5992086;194007914;300000 -56609;5990214;194009786;300000 -56610;5988341;194011659;300000 -56611;5986469;194013531;300000 -56612;5984597;194015403;300000 -56613;5982725;194017275;300000 -56614;5980853;194019147;300000 -56615;5978981;194021019;300000 -56616;5977109;194022891;300000 -56617;5975237;194024763;300000 -56618;5973365;194026635;300000 -56619;5971494;194028506;300000 -56620;5969622;194030378;300000 -56621;5967750;194032250;300000 -56622;5965879;194034121;300000 -56623;5964008;194035992;300000 -56624;5962136;194037864;300000 -56625;5960265;194039735;300000 -56626;5958394;194041606;300000 -56627;5956523;194043477;300000 -56628;5954651;194045349;300000 -56629;5952780;194047220;300000 -56630;5950909;194049091;300000 -56631;5949039;194050961;300000 -56632;5947168;194052832;300000 -56633;5945297;194054703;300000 -56634;5943426;194056574;300000 -56635;5941556;194058444;300000 -56636;5939685;194060315;300000 -56637;5937815;194062185;300000 -56638;5935944;194064056;300000 -56639;5934074;194065926;300000 -56640;5932203;194067797;300000 -56641;5930333;194069667;300000 -56642;5928463;194071537;300000 -56643;5926593;194073407;300000 -56644;5924723;194075277;300000 -56645;5922853;194077147;300000 -56646;5920983;194079017;300000 -56647;5919113;194080887;300000 -56648;5917243;194082757;300000 -56649;5915374;194084626;300000 -56650;5913504;194086496;300000 -56651;5911634;194088366;300000 -56652;5909765;194090235;300000 -56653;5907895;194092105;300000 -56654;5906026;194093974;300000 -56655;5904157;194095843;300000 -56656;5902287;194097713;300000 -56657;5900418;194099582;300000 -56658;5898549;194101451;300000 -56659;5896680;194103320;300000 -56660;5894811;194105189;300000 -56661;5892942;194107058;300000 -56662;5891073;194108927;300000 -56663;5889205;194110795;300000 -56664;5887336;194112664;300000 -56665;5885467;194114533;300000 -56666;5883599;194116401;300000 -56667;5881730;194118270;300000 -56668;5879862;194120138;300000 -56669;5877993;194122007;300000 -56670;5876125;194123875;300000 -56671;5874257;194125743;300000 -56672;5872388;194127612;300000 -56673;5870520;194129480;300000 -56674;5868652;194131348;300000 -56675;5866784;194133216;300000 -56676;5864916;194135084;300000 -56677;5863049;194136951;300000 -56678;5861181;194138819;300000 -56679;5859313;194140687;300000 -56680;5857445;194142555;300000 -56681;5855578;194144422;300000 -56682;5853710;194146290;300000 -56683;5851843;194148157;300000 -56684;5849975;194150025;300000 -56685;5848108;194151892;300000 -56686;5846241;194153759;300000 -56687;5844373;194155627;300000 -56688;5842506;194157494;300000 -56689;5840639;194159361;300000 -56690;5838772;194161228;300000 -56691;5836905;194163095;300000 -56692;5835038;194164962;300000 -56693;5833172;194166828;300000 -56694;5831305;194168695;300000 -56695;5829438;194170562;300000 -56696;5827572;194172428;300000 -56697;5825705;194174295;300000 -56698;5823839;194176161;300000 -56699;5821972;194178028;300000 -56700;5820106;194179894;300000 -56701;5818240;194181760;300000 -56702;5816373;194183627;300000 -56703;5814507;194185493;300000 -56704;5812641;194187359;300000 -56705;5810775;194189225;300000 -56706;5808909;194191091;300000 -56707;5807043;194192957;300000 -56708;5805177;194194823;300000 -56709;5803312;194196688;300000 -56710;5801446;194198554;300000 -56711;5799580;194200420;300000 -56712;5797715;194202285;300000 -56713;5795849;194204151;300000 -56714;5793984;194206016;300000 -56715;5792118;194207882;300000 -56716;5790253;194209747;300000 -56717;5788388;194211612;300000 -56718;5786523;194213477;300000 -56719;5784658;194215342;300000 -56720;5782793;194217207;300000 -56721;5780928;194219072;300000 -56722;5779063;194220937;300000 -56723;5777198;194222802;300000 -56724;5775333;194224667;300000 -56725;5773468;194226532;300000 -56726;5771604;194228396;300000 -56727;5769739;194230261;300000 -56728;5767875;194232125;300000 -56729;5766010;194233990;300000 -56730;5764146;194235854;300000 -56731;5762282;194237718;300000 -56732;5760417;194239583;300000 -56733;5758553;194241447;300000 -56734;5756689;194243311;300000 -56735;5754825;194245175;300000 -56736;5752961;194247039;300000 -56737;5751097;194248903;300000 -56738;5749233;194250767;300000 -56739;5747370;194252630;300000 -56740;5745506;194254494;300000 -56741;5743642;194256358;300000 -56742;5741779;194258221;300000 -56743;5739915;194260085;300000 -56744;5738052;194261948;300000 -56745;5736188;194263812;300000 -56746;5734325;194265675;300000 -56747;5732462;194267538;300000 -56748;5730598;194269402;300000 -56749;5728735;194271265;300000 -56750;5726872;194273128;300000 -56751;5725009;194274991;300000 -56752;5723146;194276854;300000 -56753;5721283;194278717;300000 -56754;5719421;194280579;300000 -56755;5717558;194282442;300000 -56756;5715695;194284305;300000 -56757;5713833;194286167;300000 -56758;5711970;194288030;300000 -56759;5710108;194289892;300000 -56760;5708245;194291755;300000 -56761;5706383;194293617;300000 -56762;5704521;194295479;300000 -56763;5702658;194297342;300000 -56764;5700796;194299204;300000 -56765;5698934;194301066;300000 -56766;5697072;194302928;300000 -56767;5695210;194304790;300000 -56768;5693348;194306652;300000 -56769;5691487;194308513;300000 -56770;5689625;194310375;300000 -56771;5687763;194312237;300000 -56772;5685902;194314098;300000 -56773;5684040;194315960;300000 -56774;5682178;194317822;300000 -56775;5680317;194319683;300000 -56776;5678456;194321544;300000 -56777;5676594;194323406;300000 -56778;5674733;194325267;300000 -56779;5672872;194327128;300000 -56780;5671011;194328989;300000 -56781;5669150;194330850;300000 -56782;5667289;194332711;300000 -56783;5665428;194334572;300000 -56784;5663567;194336433;300000 -56785;5661706;194338294;300000 -56786;5659846;194340154;300000 -56787;5657985;194342015;300000 -56788;5656125;194343875;300000 -56789;5654264;194345736;300000 -56790;5652404;194347596;300000 -56791;5650543;194349457;300000 -56792;5648683;194351317;300000 -56793;5646823;194353177;300000 -56794;5644962;194355038;300000 -56795;5643102;194356898;300000 -56796;5641242;194358758;300000 -56797;5639382;194360618;300000 -56798;5637522;194362478;300000 -56799;5635663;194364337;300000 -56800;5633803;194366197;300000 -56801;5631943;194368057;300000 -56802;5630083;194369917;300000 -56803;5628224;194371776;300000 -56804;5626364;194373636;300000 -56805;5624505;194375495;300000 -56806;5622645;194377355;300000 -56807;5620786;194379214;300000 -56808;5618927;194381073;300000 -56809;5617068;194382932;300000 -56810;5615209;194384791;300000 -56811;5613350;194386650;300000 -56812;5611491;194388509;300000 -56813;5609632;194390368;300000 -56814;5607773;194392227;300000 -56815;5605914;194394086;300000 -56816;5604055;194395945;300000 -56817;5602197;194397803;300000 -56818;5600338;194399662;300000 -56819;5598479;194401521;300000 -56820;5596621;194403379;300000 -56821;5594762;194405238;300000 -56822;5592904;194407096;300000 -56823;5591046;194408954;300000 -56824;5589188;194410812;300000 -56825;5587330;194412670;300000 -56826;5585471;194414529;300000 -56827;5583613;194416387;300000 -56828;5581755;194418245;300000 -56829;5579898;194420102;300000 -56830;5578040;194421960;300000 -56831;5576182;194423818;300000 -56832;5574324;194425676;300000 -56833;5572467;194427533;300000 -56834;5570609;194429391;300000 -56835;5568752;194431248;300000 -56836;5566894;194433106;300000 -56837;5565037;194434963;300000 -56838;5563180;194436820;300000 -56839;5561322;194438678;300000 -56840;5559465;194440535;300000 -56841;5557608;194442392;300000 -56842;5555751;194444249;300000 -56843;5553894;194446106;300000 -56844;5552037;194447963;300000 -56845;5550180;194449820;300000 -56846;5548324;194451676;300000 -56847;5546467;194453533;300000 -56848;5544610;194455390;300000 -56849;5542754;194457246;300000 -56850;5540897;194459103;300000 -56851;5539041;194460959;300000 -56852;5537184;194462816;300000 -56853;5535328;194464672;300000 -56854;5533472;194466528;300000 -56855;5531616;194468384;300000 -56856;5529759;194470241;300000 -56857;5527903;194472097;300000 -56858;5526047;194473953;300000 -56859;5524191;194475809;300000 -56860;5522336;194477664;300000 -56861;5520480;194479520;300000 -56862;5518624;194481376;300000 -56863;5516768;194483232;300000 -56864;5514913;194485087;300000 -56865;5513057;194486943;300000 -56866;5511202;194488798;300000 -56867;5509346;194490654;300000 -56868;5507491;194492509;300000 -56869;5505636;194494364;300000 -56870;5503781;194496219;300000 -56871;5501925;194498075;300000 -56872;5500070;194499930;300000 -56873;5498215;194501785;300000 -56874;5496360;194503640;300000 -56875;5494505;194505495;300000 -56876;5492651;194507349;300000 -56877;5490796;194509204;300000 -56878;5488941;194511059;300000 -56879;5487087;194512913;300000 -56880;5485232;194514768;300000 -56881;5483378;194516622;300000 -56882;5481523;194518477;300000 -56883;5479669;194520331;300000 -56884;5477814;194522186;300000 -56885;5475960;194524040;300000 -56886;5474106;194525894;300000 -56887;5472252;194527748;300000 -56888;5470398;194529602;300000 -56889;5468544;194531456;300000 -56890;5466690;194533310;300000 -56891;5464836;194535164;300000 -56892;5462982;194537018;300000 -56893;5461129;194538871;300000 -56894;5459275;194540725;300000 -56895;5457422;194542578;300000 -56896;5455568;194544432;300000 -56897;5453715;194546285;300000 -56898;5451861;194548139;300000 -56899;5450008;194549992;300000 -56900;5448155;194551845;300000 -56901;5446301;194553699;300000 -56902;5444448;194555552;300000 -56903;5442595;194557405;300000 -56904;5440742;194559258;300000 -56905;5438889;194561111;300000 -56906;5437037;194562963;300000 -56907;5435184;194564816;300000 -56908;5433331;194566669;300000 -56909;5431478;194568522;300000 -56910;5429626;194570374;300000 -56911;5427773;194572227;300000 -56912;5425921;194574079;300000 -56913;5424068;194575932;300000 -56914;5422216;194577784;300000 -56915;5420364;194579636;300000 -56916;5418511;194581489;300000 -56917;5416659;194583341;300000 -56918;5414807;194585193;300000 -56919;5412955;194587045;300000 -56920;5411103;194588897;300000 -56921;5409251;194590749;300000 -56922;5407400;194592600;300000 -56923;5405548;194594452;300000 -56924;5403696;194596304;300000 -56925;5401845;194598155;300000 -56926;5399993;194600007;300000 -56927;5398141;194601859;300000 -56928;5396290;194603710;300000 -56929;5394439;194605561;300000 -56930;5392587;194607413;300000 -56931;5390736;194609264;300000 -56932;5388885;194611115;300000 -56933;5387034;194612966;300000 -56934;5385183;194614817;300000 -56935;5383332;194616668;300000 -56936;5381481;194618519;300000 -56937;5379630;194620370;300000 -56938;5377779;194622221;300000 -56939;5375929;194624071;300000 -56940;5374078;194625922;300000 -56941;5372227;194627773;300000 -56942;5370377;194629623;300000 -56943;5368526;194631474;300000 -56944;5366676;194633324;300000 -56945;5364826;194635174;300000 -56946;5362975;194637025;300000 -56947;5361125;194638875;300000 -56948;5359275;194640725;300000 -56949;5357425;194642575;300000 -56950;5355575;194644425;300000 -56951;5353725;194646275;300000 -56952;5351875;194648125;300000 -56953;5350025;194649975;300000 -56954;5348176;194651824;300000 -56955;5346326;194653674;300000 -56956;5344476;194655524;300000 -56957;5342627;194657373;300000 -56958;5340777;194659223;300000 -56959;5338928;194661072;300000 -56960;5337079;194662921;300000 -56961;5335229;194664771;300000 -56962;5333380;194666620;300000 -56963;5331531;194668469;300000 -56964;5329682;194670318;300000 -56965;5327833;194672167;300000 -56966;5325984;194674016;300000 -56967;5324135;194675865;300000 -56968;5322286;194677714;300000 -56969;5320437;194679563;300000 -56970;5318589;194681411;300000 -56971;5316740;194683260;300000 -56972;5314892;194685108;300000 -56973;5313043;194686957;300000 -56974;5311195;194688805;300000 -56975;5309346;194690654;300000 -56976;5307498;194692502;300000 -56977;5305650;194694350;300000 -56978;5303801;194696199;300000 -56979;5301953;194698047;300000 -56980;5300105;194699895;300000 -56981;5298257;194701743;300000 -56982;5296409;194703591;300000 -56983;5294562;194705438;300000 -56984;5292714;194707286;300000 -56985;5290866;194709134;300000 -56986;5289018;194710982;300000 -56987;5287171;194712829;300000 -56988;5285323;194714677;300000 -56989;5283476;194716524;300000 -56990;5281628;194718372;300000 -56991;5279781;194720219;300000 -56992;5277934;194722066;300000 -56993;5276087;194723913;300000 -56994;5274239;194725761;300000 -56995;5272392;194727608;300000 -56996;5270545;194729455;300000 -56997;5268698;194731302;300000 -56998;5266851;194733149;300000 -56999;5265005;194734995;300000 -57000;5263158;194736842;300000 -57001;5261311;194738689;300000 -57002;5259465;194740535;300000 -57003;5257618;194742382;300000 -57004;5255772;194744228;300000 -57005;5253925;194746075;300000 -57006;5252079;194747921;300000 -57007;5250232;194749768;300000 -57008;5248386;194751614;300000 -57009;5246540;194753460;300000 -57010;5244694;194755306;300000 -57011;5242848;194757152;300000 -57012;5241002;194758998;300000 -57013;5239156;194760844;300000 -57014;5237310;194762690;300000 -57015;5235464;194764536;300000 -57016;5233619;194766381;300000 -57017;5231773;194768227;300000 -57018;5229927;194770073;300000 -57019;5228082;194771918;300000 -57020;5226236;194773764;300000 -57021;5224391;194775609;300000 -57022;5222546;194777454;300000 -57023;5220700;194779300;300000 -57024;5218855;194781145;300000 -57025;5217010;194782990;300000 -57026;5215165;194784835;300000 -57027;5213320;194786680;300000 -57028;5211475;194788525;300000 -57029;5209630;194790370;300000 -57030;5207785;194792215;300000 -57031;5205941;194794059;300000 -57032;5204096;194795904;300000 -57033;5202251;194797749;300000 -57034;5200407;194799593;300000 -57035;5198562;194801438;300000 -57036;5196718;194803282;300000 -57037;5194874;194805126;300000 -57038;5193029;194806971;300000 -57039;5191185;194808815;300000 -57040;5189341;194810659;300000 -57041;5187497;194812503;300000 -57042;5185653;194814347;300000 -57043;5183809;194816191;300000 -57044;5181965;194818035;300000 -57045;5180121;194819879;300000 -57046;5178277;194821723;300000 -57047;5176433;194823567;300000 -57048;5174590;194825410;300000 -57049;5172746;194827254;300000 -57050;5170903;194829097;300000 -57051;5169059;194830941;300000 -57052;5167216;194832784;300000 -57053;5165373;194834627;300000 -57054;5163529;194836471;300000 -57055;5161686;194838314;300000 -57056;5159843;194840157;300000 -57057;5158000;194842000;300000 -57058;5156157;194843843;300000 -57059;5154314;194845686;300000 -57060;5152471;194847529;300000 -57061;5150628;194849372;300000 -57062;5148786;194851214;300000 -57063;5146943;194853057;300000 -57064;5145100;194854900;300000 -57065;5143258;194856742;300000 -57066;5141415;194858585;300000 -57067;5139573;194860427;300000 -57068;5137730;194862270;300000 -57069;5135888;194864112;300000 -57070;5134046;194865954;300000 -57071;5132204;194867796;300000 -57072;5130362;194869638;300000 -57073;5128520;194871480;300000 -57074;5126678;194873322;300000 -57075;5124836;194875164;300000 -57076;5122994;194877006;300000 -57077;5121152;194878848;300000 -57078;5119310;194880690;300000 -57079;5117469;194882531;300000 -57080;5115627;194884373;300000 -57081;5113786;194886214;300000 -57082;5111944;194888056;300000 -57083;5110103;194889897;300000 -57084;5108262;194891738;300000 -57085;5106420;194893580;300000 -57086;5104579;194895421;300000 -57087;5102738;194897262;300000 -57088;5100897;194899103;300000 -57089;5099056;194900944;300000 -57090;5097215;194902785;300000 -57091;5095374;194904626;300000 -57092;5093533;194906467;300000 -57093;5091693;194908307;300000 -57094;5089852;194910148;300000 -57095;5088011;194911989;300000 -57096;5086171;194913829;300000 -57097;5084330;194915670;300000 -57098;5082490;194917510;300000 -57099;5080649;194919351;300000 -57100;5078809;194921191;300000 -57101;5076969;194923031;300000 -57102;5075129;194924871;300000 -57103;5073289;194926711;300000 -57104;5071449;194928551;300000 -57105;5069609;194930391;300000 -57106;5067769;194932231;300000 -57107;5065929;194934071;300000 -57108;5064089;194935911;300000 -57109;5062249;194937751;300000 -57110;5060410;194939590;300000 -57111;5058570;194941430;300000 -57112;5056731;194943269;300000 -57113;5054891;194945109;300000 -57114;5053052;194946948;300000 -57115;5051212;194948788;300000 -57116;5049373;194950627;300000 -57117;5047534;194952466;300000 -57118;5045695;194954305;300000 -57119;5043856;194956144;300000 -57120;5042017;194957983;300000 -57121;5040178;194959822;300000 -57122;5038339;194961661;300000 -57123;5036500;194963500;300000 -57124;5034661;194965339;300000 -57125;5032823;194967177;300000 -57126;5030984;194969016;300000 -57127;5029146;194970854;300000 -57128;5027307;194972693;300000 -57129;5025469;194974531;300000 -57130;5023630;194976370;300000 -57131;5021792;194978208;300000 -57132;5019954;194980046;300000 -57133;5018116;194981884;300000 -57134;5016278;194983722;300000 -57135;5014439;194985561;300000 -57136;5012602;194987398;300000 -57137;5010764;194989236;300000 -57138;5008926;194991074;300000 -57139;5007088;194992912;300000 -57140;5005250;194994750;300000 -57141;5003413;194996587;300000 -57142;5001575;194998425;300000 -57143;4999738;195000262;300000 -57144;4997900;195002100;300000 -57145;4996063;195003937;300000 -57146;4994225;195005775;300000 -57147;4992388;195007612;300000 -57148;4990551;195009449;300000 -57149;4988714;195011286;300000 -57150;4986877;195013123;300000 -57151;4985040;195014960;300000 -57152;4983203;195016797;300000 -57153;4981366;195018634;300000 -57154;4979529;195020471;300000 -57155;4977692;195022308;300000 -57156;4975856;195024144;300000 -57157;4974019;195025981;300000 -57158;4972182;195027818;300000 -57159;4970346;195029654;300000 -57160;4968509;195031491;300000 -57161;4966673;195033327;300000 -57162;4964837;195035163;300000 -57163;4963001;195036999;300000 -57164;4961164;195038836;300000 -57165;4959328;195040672;300000 -57166;4957492;195042508;300000 -57167;4955656;195044344;300000 -57168;4953820;195046180;300000 -57169;4951984;195048016;300000 -57170;4950149;195049851;300000 -57171;4948313;195051687;300000 -57172;4946477;195053523;300000 -57173;4944642;195055358;300000 -57174;4942806;195057194;300000 -57175;4940971;195059029;300000 -57176;4939135;195060865;300000 -57177;4937300;195062700;300000 -57178;4935465;195064535;300000 -57179;4933629;195066371;300000 -57180;4931794;195068206;300000 -57181;4929959;195070041;300000 -57182;4928124;195071876;300000 -57183;4926289;195073711;300000 -57184;4924454;195075546;300000 -57185;4922620;195077380;300000 -57186;4920785;195079215;300000 -57187;4918950;195081050;300000 -57188;4917115;195082885;300000 -57189;4915281;195084719;300000 -57190;4913446;195086554;300000 -57191;4911612;195088388;300000 -57192;4909778;195090222;300000 -57193;4907943;195092057;300000 -57194;4906109;195093891;300000 -57195;4904275;195095725;300000 -57196;4902441;195097559;300000 -57197;4900607;195099393;300000 -57198;4898773;195101227;300000 -57199;4896939;195103061;300000 -57200;4895105;195104895;300000 -57201;4893271;195106729;300000 -57202;4891437;195108563;300000 -57203;4889604;195110396;300000 -57204;4887770;195112230;300000 -57205;4885937;195114063;300000 -57206;4884103;195115897;300000 -57207;4882270;195117730;300000 -57208;4880436;195119564;300000 -57209;4878603;195121397;300000 -57210;4876770;195123230;300000 -57211;4874937;195125063;300000 -57212;4873104;195126896;300000 -57213;4871271;195128729;300000 -57214;4869438;195130562;300000 -57215;4867605;195132395;300000 -57216;4865772;195134228;300000 -57217;4863939;195136061;300000 -57218;4862106;195137894;300000 -57219;4860274;195139726;300000 -57220;4858441;195141559;300000 -57221;4856609;195143391;300000 -57222;4854776;195145224;300000 -57223;4852944;195147056;300000 -57224;4851111;195148889;300000 -57225;4849279;195150721;300000 -57226;4847447;195152553;300000 -57227;4845615;195154385;300000 -57228;4843783;195156217;300000 -57229;4841951;195158049;300000 -57230;4840119;195159881;300000 -57231;4838287;195161713;300000 -57232;4836455;195163545;300000 -57233;4834623;195165377;300000 -57234;4832792;195167208;300000 -57235;4830960;195169040;300000 -57236;4829129;195170871;300000 -57237;4827297;195172703;300000 -57238;4825466;195174534;300000 -57239;4823634;195176366;300000 -57240;4821803;195178197;300000 -57241;4819972;195180028;300000 -57242;4818141;195181859;300000 -57243;4816309;195183691;300000 -57244;4814478;195185522;300000 -57245;4812647;195187353;300000 -57246;4810816;195189184;300000 -57247;4808986;195191014;300000 -57248;4807155;195192845;300000 -57249;4805324;195194676;300000 -57250;4803493;195196507;300000 -57251;4801663;195198337;300000 -57252;4799832;195200168;300000 -57253;4798002;195201998;300000 -57254;4796171;195203829;300000 -57255;4794341;195205659;300000 -57256;4792511;195207489;300000 -57257;4790681;195209319;300000 -57258;4788850;195211150;300000 -57259;4787020;195212980;300000 -57260;4785190;195214810;300000 -57261;4783360;195216640;300000 -57262;4781531;195218469;300000 -57263;4779701;195220299;300000 -57264;4777871;195222129;300000 -57265;4776041;195223959;300000 -57266;4774212;195225788;300000 -57267;4772382;195227618;300000 -57268;4770552;195229448;300000 -57269;4768723;195231277;300000 -57270;4766894;195233106;300000 -57271;4765064;195234936;300000 -57272;4763235;195236765;300000 -57273;4761406;195238594;300000 -57274;4759577;195240423;300000 -57275;4757748;195242252;300000 -57276;4755919;195244081;300000 -57277;4754090;195245910;300000 -57278;4752261;195247739;300000 -57279;4750432;195249568;300000 -57280;4748603;195251397;300000 -57281;4746775;195253225;300000 -57282;4744946;195255054;300000 -57283;4743118;195256882;300000 -57284;4741289;195258711;300000 -57285;4739461;195260539;300000 -57286;4737632;195262368;300000 -57287;4735804;195264196;300000 -57288;4733976;195266024;300000 -57289;4732148;195267852;300000 -57290;4730319;195269681;300000 -57291;4728491;195271509;300000 -57292;4726663;195273337;300000 -57293;4724835;195275165;300000 -57294;4723008;195276992;300000 -57295;4721180;195278820;300000 -57296;4719352;195280648;300000 -57297;4717524;195282476;300000 -57298;4715697;195284303;300000 -57299;4713869;195286131;300000 -57300;4712042;195287958;300000 -57301;4710214;195289786;300000 -57302;4708387;195291613;300000 -57303;4706560;195293440;300000 -57304;4704733;195295267;300000 -57305;4702906;195297094;300000 -57306;4701078;195298922;300000 -57307;4699251;195300749;300000 -57308;4697424;195302576;300000 -57309;4695598;195304402;300000 -57310;4693771;195306229;300000 -57311;4691944;195308056;300000 -57312;4690117;195309883;300000 -57313;4688291;195311709;300000 -57314;4686464;195313536;300000 -57315;4684638;195315362;300000 -57316;4682811;195317189;300000 -57317;4680985;195319015;300000 -57318;4679158;195320842;300000 -57319;4677332;195322668;300000 -57320;4675506;195324494;300000 -57321;4673680;195326320;300000 -57322;4671854;195328146;300000 -57323;4670028;195329972;300000 -57324;4668202;195331798;300000 -57325;4666376;195333624;300000 -57326;4664550;195335450;300000 -57327;4662724;195337276;300000 -57328;4660899;195339101;300000 -57329;4659073;195340927;300000 -57330;4657248;195342752;300000 -57331;4655422;195344578;300000 -57332;4653597;195346403;300000 -57333;4651771;195348229;300000 -57334;4649946;195350054;300000 -57335;4648121;195351879;300000 -57336;4646296;195353704;300000 -57337;4644470;195355530;300000 -57338;4642645;195357355;300000 -57339;4640820;195359180;300000 -57340;4638995;195361005;300000 -57341;4637171;195362829;300000 -57342;4635346;195364654;300000 -57343;4633521;195366479;300000 -57344;4631696;195368304;300000 -57345;4629872;195370128;300000 -57346;4628047;195371953;300000 -57347;4626223;195373777;300000 -57348;4624398;195375602;300000 -57349;4622574;195377426;300000 -57350;4620750;195379250;300000 -57351;4618926;195381074;300000 -57352;4617101;195382899;300000 -57353;4615277;195384723;300000 -57354;4613453;195386547;300000 -57355;4611629;195388371;300000 -57356;4609805;195390195;300000 -57357;4607982;195392018;300000 -57358;4606158;195393842;300000 -57359;4604334;195395666;300000 -57360;4602510;195397490;300000 -57361;4600687;195399313;300000 -57362;4598863;195401137;300000 -57363;4597040;195402960;300000 -57364;4595217;195404783;300000 -57365;4593393;195406607;300000 -57366;4591570;195408430;300000 -57367;4589747;195410253;300000 -57368;4587924;195412076;300000 -57369;4586101;195413899;300000 -57370;4584277;195415723;300000 -57371;4582455;195417545;300000 -57372;4580632;195419368;300000 -57373;4578809;195421191;300000 -57374;4576986;195423014;300000 -57375;4575163;195424837;300000 -57376;4573341;195426659;300000 -57377;4571518;195428482;300000 -57378;4569696;195430304;300000 -57379;4567873;195432127;300000 -57380;4566051;195433949;300000 -57381;4564229;195435771;300000 -57382;4562406;195437594;300000 -57383;4560584;195439416;300000 -57384;4558762;195441238;300000 -57385;4556940;195443060;300000 -57386;4555118;195444882;300000 -57387;4553296;195446704;300000 -57388;4551474;195448526;300000 -57389;4549652;195450348;300000 -57390;4547831;195452169;300000 -57391;4546009;195453991;300000 -57392;4544187;195455813;300000 -57393;4542366;195457634;300000 -57394;4540544;195459456;300000 -57395;4538723;195461277;300000 -57396;4536902;195463098;300000 -57397;4535080;195464920;300000 -57398;4533259;195466741;300000 -57399;4531438;195468562;300000 -57400;4529617;195470383;300000 -57401;4527796;195472204;300000 -57402;4525975;195474025;300000 -57403;4524154;195475846;300000 -57404;4522333;195477667;300000 -57405;4520512;195479488;300000 -57406;4518691;195481309;300000 -57407;4516871;195483129;300000 -57408;4515050;195484950;300000 -57409;4513230;195486770;300000 -57410;4511409;195488591;300000 -57411;4509589;195490411;300000 -57412;4507768;195492232;300000 -57413;4505948;195494052;300000 -57414;4504128;195495872;300000 -57415;4502308;195497692;300000 -57416;4500488;195499512;300000 -57417;4498668;195501332;300000 -57418;4496848;195503152;300000 -57419;4495028;195504972;300000 -57420;4493208;195506792;300000 -57421;4491388;195508612;300000 -57422;4489568;195510432;300000 -57423;4487749;195512251;300000 -57424;4485929;195514071;300000 -57425;4484110;195515890;300000 -57426;4482290;195517710;300000 -57427;4480471;195519529;300000 -57428;4478652;195521348;300000 -57429;4476832;195523168;300000 -57430;4475013;195524987;300000 -57431;4473194;195526806;300000 -57432;4471375;195528625;300000 -57433;4469556;195530444;300000 -57434;4467737;195532263;300000 -57435;4465918;195534082;300000 -57436;4464099;195535901;300000 -57437;4462280;195537720;300000 -57438;4460462;195539538;300000 -57439;4458643;195541357;300000 -57440;4456825;195543175;300000 -57441;4455006;195544994;300000 -57442;4453188;195546812;300000 -57443;4451369;195548631;300000 -57444;4449551;195550449;300000 -57445;4447733;195552267;300000 -57446;4445914;195554086;300000 -57447;4444096;195555904;300000 -57448;4442278;195557722;300000 -57449;4440460;195559540;300000 -57450;4438642;195561358;300000 -57451;4436824;195563176;300000 -57452;4435007;195564993;300000 -57453;4433189;195566811;300000 -57454;4431371;195568629;300000 -57455;4429554;195570446;300000 -57456;4427736;195572264;300000 -57457;4425919;195574081;300000 -57458;4424101;195575899;300000 -57459;4422284;195577716;300000 -57460;4420466;195579534;300000 -57461;4418649;195581351;300000 -57462;4416832;195583168;300000 -57463;4415015;195584985;300000 -57464;4413198;195586802;300000 -57465;4411381;195588619;300000 -57466;4409564;195590436;300000 -57467;4407747;195592253;300000 -57468;4405930;195594070;300000 -57469;4404114;195595886;300000 -57470;4402297;195597703;300000 -57471;4400480;195599520;300000 -57472;4398664;195601336;300000 -57473;4396847;195603153;300000 -57474;4395031;195604969;300000 -57475;4393214;195606786;300000 -57476;4391398;195608602;300000 -57477;4389582;195610418;300000 -57478;4387766;195612234;300000 -57479;4385950;195614050;300000 -57480;4384134;195615866;300000 -57481;4382318;195617682;300000 -57482;4380502;195619498;300000 -57483;4378686;195621314;300000 -57484;4376870;195623130;300000 -57485;4375054;195624946;300000 -57486;4373239;195626761;300000 -57487;4371423;195628577;300000 -57488;4369608;195630392;300000 -57489;4367792;195632208;300000 -57490;4365977;195634023;300000 -57491;4364161;195635839;300000 -57492;4362346;195637654;300000 -57493;4360531;195639469;300000 -57494;4358716;195641284;300000 -57495;4356901;195643099;300000 -57496;4355086;195644914;300000 -57497;4353271;195646729;300000 -57498;4351456;195648544;300000 -57499;4349641;195650359;300000 -57500;4347826;195652174;300000 -57501;4346011;195653989;300000 -57502;4344197;195655803;300000 -57503;4342382;195657618;300000 -57504;4340568;195659432;300000 -57505;4338753;195661247;300000 -57506;4336939;195663061;300000 -57507;4335124;195664876;300000 -57508;4333310;195666690;300000 -57509;4331496;195668504;300000 -57510;4329682;195670318;300000 -57511;4327868;195672132;300000 -57512;4326054;195673946;300000 -57513;4324240;195675760;300000 -57514;4322426;195677574;300000 -57515;4320612;195679388;300000 -57516;4318798;195681202;300000 -57517;4316985;195683015;300000 -57518;4315171;195684829;300000 -57519;4313357;195686643;300000 -57520;4311544;195688456;300000 -57521;4309730;195690270;300000 -57522;4307917;195692083;300000 -57523;4306104;195693896;300000 -57524;4304290;195695710;300000 -57525;4302477;195697523;300000 -57526;4300664;195699336;300000 -57527;4298851;195701149;300000 -57528;4297038;195702962;300000 -57529;4295225;195704775;300000 -57530;4293412;195706588;300000 -57531;4291599;195708401;300000 -57532;4289787;195710213;300000 -57533;4287974;195712026;300000 -57534;4286161;195713839;300000 -57535;4284349;195715651;300000 -57536;4282536;195717464;300000 -57537;4280724;195719276;300000 -57538;4278911;195721089;300000 -57539;4277099;195722901;300000 -57540;4275287;195724713;300000 -57541;4273475;195726525;300000 -57542;4271662;195728338;300000 -57543;4269850;195730150;300000 -57544;4268038;195731962;300000 -57545;4266226;195733774;300000 -57546;4264415;195735585;300000 -57547;4262603;195737397;300000 -57548;4260791;195739209;300000 -57549;4258979;195741021;300000 -57550;4257168;195742832;300000 -57551;4255356;195744644;300000 -57552;4253545;195746455;300000 -57553;4251733;195748267;300000 -57554;4249922;195750078;300000 -57555;4248111;195751889;300000 -57556;4246299;195753701;300000 -57557;4244488;195755512;300000 -57558;4242677;195757323;300000 -57559;4240866;195759134;300000 -57560;4239055;195760945;300000 -57561;4237244;195762756;300000 -57562;4235433;195764567;300000 -57563;4233622;195766378;300000 -57564;4231812;195768188;300000 -57565;4230001;195769999;300000 -57566;4228190;195771810;300000 -57567;4226380;195773620;300000 -57568;4224569;195775431;300000 -57569;4222759;195777241;300000 -57570;4220948;195779052;300000 -57571;4219138;195780862;300000 -57572;4217328;195782672;300000 -57573;4215518;195784482;300000 -57574;4213708;195786292;300000 -57575;4211898;195788102;300000 -57576;4210088;195789912;300000 -57577;4208278;195791722;300000 -57578;4206468;195793532;300000 -57579;4204658;195795342;300000 -57580;4202848;195797152;300000 -57581;4201039;195798961;300000 -57582;4199229;195800771;300000 -57583;4197419;195802581;300000 -57584;4195610;195804390;300000 -57585;4193800;195806200;300000 -57586;4191991;195808009;300000 -57587;4190182;195809818;300000 -57588;4188373;195811627;300000 -57589;4186563;195813437;300000 -57590;4184754;195815246;300000 -57591;4182945;195817055;300000 -57592;4181136;195818864;300000 -57593;4179327;195820673;300000 -57594;4177518;195822482;300000 -57595;4175710;195824290;300000 -57596;4173901;195826099;300000 -57597;4172092;195827908;300000 -57598;4170284;195829716;300000 -57599;4168475;195831525;300000 -57600;4166667;195833333;300000 -57601;4164858;195835142;300000 -57602;4163050;195836950;300000 -57603;4161242;195838758;300000 -57604;4159433;195840567;300000 -57605;4157625;195842375;300000 -57606;4155817;195844183;300000 -57607;4154009;195845991;300000 -57608;4152201;195847799;300000 -57609;4150393;195849607;300000 -57610;4148585;195851415;300000 -57611;4146778;195853222;300000 -57612;4144970;195855030;300000 -57613;4143162;195856838;300000 -57614;4141355;195858645;300000 -57615;4139547;195860453;300000 -57616;4137740;195862260;300000 -57617;4135932;195864068;300000 -57618;4134125;195865875;300000 -57619;4132317;195867683;300000 -57620;4130510;195869490;300000 -57621;4128703;195871297;300000 -57622;4126896;195873104;300000 -57623;4125089;195874911;300000 -57624;4123282;195876718;300000 -57625;4121475;195878525;300000 -57626;4119668;195880332;300000 -57627;4117861;195882139;300000 -57628;4116055;195883945;300000 -57629;4114248;195885752;300000 -57630;4112441;195887559;300000 -57631;4110635;195889365;300000 -57632;4108828;195891172;300000 -57633;4107022;195892978;300000 -57634;4105216;195894784;300000 -57635;4103409;195896591;300000 -57636;4101603;195898397;300000 -57637;4099797;195900203;300000 -57638;4097991;195902009;300000 -57639;4096185;195903815;300000 -57640;4094379;195905621;300000 -57641;4092573;195907427;300000 -57642;4090767;195909233;300000 -57643;4088961;195911039;300000 -57644;4087156;195912844;300000 -57645;4085350;195914650;300000 -57646;4083544;195916456;300000 -57647;4081739;195918261;300000 -57648;4079933;195920067;300000 -57649;4078128;195921872;300000 -57650;4076323;195923677;300000 -57651;4074517;195925483;300000 -57652;4072712;195927288;300000 -57653;4070907;195929093;300000 -57654;4069102;195930898;300000 -57655;4067297;195932703;300000 -57656;4065492;195934508;300000 -57657;4063687;195936313;300000 -57658;4061882;195938118;300000 -57659;4060077;195939923;300000 -57660;4058273;195941727;300000 -57661;4056468;195943532;300000 -57662;4054663;195945337;300000 -57663;4052859;195947141;300000 -57664;4051054;195948946;300000 -57665;4049250;195950750;300000 -57666;4047446;195952554;300000 -57667;4045641;195954359;300000 -57668;4043837;195956163;300000 -57669;4042033;195957967;300000 -57670;4040229;195959771;300000 -57671;4038425;195961575;300000 -57672;4036621;195963379;300000 -57673;4034817;195965183;300000 -57674;4033013;195966987;300000 -57675;4031209;195968791;300000 -57676;4029406;195970594;300000 -57677;4027602;195972398;300000 -57678;4025798;195974202;300000 -57679;4023995;195976005;300000 -57680;4022191;195977809;300000 -57681;4020388;195979612;300000 -57682;4018585;195981415;300000 -57683;4016781;195983219;300000 -57684;4014978;195985022;300000 -57685;4013175;195986825;300000 -57686;4011372;195988628;300000 -57687;4009569;195990431;300000 -57688;4007766;195992234;300000 -57689;4005963;195994037;300000 -57690;4004160;195995840;300000 -57691;4002357;195997643;300000 -57692;4000555;195999445;300000 -57693;3998752;196001248;300000 -57694;3996949;196003051;300000 -57695;3995147;196004853;300000 -57696;3993344;196006656;300000 -57697;3991542;196008458;300000 -57698;3989740;196010260;300000 -57699;3987937;196012063;300000 -57700;3986135;196013865;300000 -57701;3984333;196015667;300000 -57702;3982531;196017469;300000 -57703;3980729;196019271;300000 -57704;3978927;196021073;300000 -57705;3977125;196022875;300000 -57706;3975323;196024677;300000 -57707;3973521;196026479;300000 -57708;3971720;196028280;300000 -57709;3969918;196030082;300000 -57710;3968116;196031884;300000 -57711;3966315;196033685;300000 -57712;3964513;196035487;300000 -57713;3962712;196037288;300000 -57714;3960911;196039089;300000 -57715;3959109;196040891;300000 -57716;3957308;196042692;300000 -57717;3955507;196044493;300000 -57718;3953706;196046294;300000 -57719;3951905;196048095;300000 -57720;3950104;196049896;300000 -57721;3948303;196051697;300000 -57722;3946502;196053498;300000 -57723;3944701;196055299;300000 -57724;3942901;196057099;300000 -57725;3941100;196058900;300000 -57726;3939299;196060701;300000 -57727;3937499;196062501;300000 -57728;3935698;196064302;300000 -57729;3933898;196066102;300000 -57730;3932098;196067902;300000 -57731;3930297;196069703;300000 -57732;3928497;196071503;300000 -57733;3926697;196073303;300000 -57734;3924897;196075103;300000 -57735;3923097;196076903;300000 -57736;3921297;196078703;300000 -57737;3919497;196080503;300000 -57738;3917697;196082303;300000 -57739;3915897;196084103;300000 -57740;3914098;196085902;300000 -57741;3912298;196087702;300000 -57742;3910498;196089502;300000 -57743;3908699;196091301;300000 -57744;3906899;196093101;300000 -57745;3905100;196094900;300000 -57746;3903301;196096699;300000 -57747;3901501;196098499;300000 -57748;3899702;196100298;300000 -57749;3897903;196102097;300000 -57750;3896104;196103896;300000 -57751;3894305;196105695;300000 -57752;3892506;196107494;300000 -57753;3890707;196109293;300000 -57754;3888908;196111092;300000 -57755;3887109;196112891;300000 -57756;3885311;196114689;300000 -57757;3883512;196116488;300000 -57758;3881713;196118287;300000 -57759;3879915;196120085;300000 -57760;3878116;196121884;300000 -57761;3876318;196123682;300000 -57762;3874520;196125480;300000 -57763;3872721;196127279;300000 -57764;3870923;196129077;300000 -57765;3869125;196130875;300000 -57766;3867327;196132673;300000 -57767;3865529;196134471;300000 -57768;3863731;196136269;300000 -57769;3861933;196138067;300000 -57770;3860135;196139865;300000 -57771;3858337;196141663;300000 -57772;3856540;196143460;300000 -57773;3854742;196145258;300000 -57774;3852944;196147056;300000 -57775;3851147;196148853;300000 -57776;3849349;196150651;300000 -57777;3847552;196152448;300000 -57778;3845754;196154246;300000 -57779;3843957;196156043;300000 -57780;3842160;196157840;300000 -57781;3840363;196159637;300000 -57782;3838566;196161434;300000 -57783;3836769;196163231;300000 -57784;3834972;196165028;300000 -57785;3833175;196166825;300000 -57786;3831378;196168622;300000 -57787;3829581;196170419;300000 -57788;3827784;196172216;300000 -57789;3825988;196174012;300000 -57790;3824191;196175809;300000 -57791;3822394;196177606;300000 -57792;3820598;196179402;300000 -57793;3818802;196181198;300000 -57794;3817005;196182995;300000 -57795;3815209;196184791;300000 -57796;3813413;196186587;300000 -57797;3811617;196188383;300000 -57798;3809820;196190180;300000 -57799;3808024;196191976;300000 -57800;3806228;196193772;300000 -57801;3804432;196195568;300000 -57802;3802637;196197363;300000 -57803;3800841;196199159;300000 -57804;3799045;196200955;300000 -57805;3797249;196202751;300000 -57806;3795454;196204546;300000 -57807;3793658;196206342;300000 -57808;3791863;196208137;300000 -57809;3790067;196209933;300000 -57810;3788272;196211728;300000 -57811;3786477;196213523;300000 -57812;3784681;196215319;300000 -57813;3782886;196217114;300000 -57814;3781091;196218909;300000 -57815;3779296;196220704;300000 -57816;3777501;196222499;300000 -57817;3775706;196224294;300000 -57818;3773911;196226089;300000 -57819;3772116;196227884;300000 -57820;3770322;196229678;300000 -57821;3768527;196231473;300000 -57822;3766732;196233268;300000 -57823;3764938;196235062;300000 -57824;3763143;196236857;300000 -57825;3761349;196238651;300000 -57826;3759555;196240445;300000 -57827;3757760;196242240;300000 -57828;3755966;196244034;300000 -57829;3754172;196245828;300000 -57830;3752378;196247622;300000 -57831;3750584;196249416;300000 -57832;3748790;196251210;300000 -57833;3746996;196253004;300000 -57834;3745202;196254798;300000 -57835;3743408;196256592;300000 -57836;3741614;196258386;300000 -57837;3739821;196260179;300000 -57838;3738027;196261973;300000 -57839;3736233;196263767;300000 -57840;3734440;196265560;300000 -57841;3732646;196267354;300000 -57842;3730853;196269147;300000 -57843;3729060;196270940;300000 -57844;3727266;196272734;300000 -57845;3725473;196274527;300000 -57846;3723680;196276320;300000 -57847;3721887;196278113;300000 -57848;3720094;196279906;300000 -57849;3718301;196281699;300000 -57850;3716508;196283492;300000 -57851;3714715;196285285;300000 -57852;3712923;196287077;300000 -57853;3711130;196288870;300000 -57854;3709337;196290663;300000 -57855;3707545;196292455;300000 -57856;3705752;196294248;300000 -57857;3703960;196296040;300000 -57858;3702167;196297833;300000 -57859;3700375;196299625;300000 -57860;3698583;196301417;300000 -57861;3696791;196303209;300000 -57862;3694998;196305002;300000 -57863;3693206;196306794;300000 -57864;3691414;196308586;300000 -57865;3689622;196310378;300000 -57866;3687831;196312169;300000 -57867;3686039;196313961;300000 -57868;3684247;196315753;300000 -57869;3682455;196317545;300000 -57870;3680664;196319336;300000 -57871;3678872;196321128;300000 -57872;3677080;196322920;300000 -57873;3675289;196324711;300000 -57874;3673498;196326502;300000 -57875;3671706;196328294;300000 -57876;3669915;196330085;300000 -57877;3668124;196331876;300000 -57878;3666333;196333667;300000 -57879;3664542;196335458;300000 -57880;3662751;196337249;300000 -57881;3660960;196339040;300000 -57882;3659169;196340831;300000 -57883;3657378;196342622;300000 -57884;3655587;196344413;300000 -57885;3653796;196346204;300000 -57886;3652006;196347994;300000 -57887;3650215;196349785;300000 -57888;3648425;196351575;300000 -57889;3646634;196353366;300000 -57890;3644844;196355156;300000 -57891;3643053;196356947;300000 -57892;3641263;196358737;300000 -57893;3639473;196360527;300000 -57894;3637683;196362317;300000 -57895;3635893;196364107;300000 -57896;3634103;196365897;300000 -57897;3632313;196367687;300000 -57898;3630523;196369477;300000 -57899;3628733;196371267;300000 -57900;3626943;196373057;300000 -57901;3625153;196374847;300000 -57902;3623364;196376636;300000 -57903;3621574;196378426;300000 -57904;3619784;196380216;300000 -57905;3617995;196382005;300000 -57906;3616206;196383794;300000 -57907;3614416;196385584;300000 -57908;3612627;196387373;300000 -57909;3610838;196389162;300000 -57910;3609049;196390951;300000 -57911;3607259;196392741;300000 -57912;3605470;196394530;300000 -57913;3603681;196396319;300000 -57914;3601892;196398108;300000 -57915;3600104;196399896;300000 -57916;3598315;196401685;300000 -57917;3596526;196403474;300000 -57918;3594737;196405263;300000 -57919;3592949;196407051;300000 -57920;3591160;196408840;300000 -57921;3589372;196410628;300000 -57922;3587583;196412417;300000 -57923;3585795;196414205;300000 -57924;3584007;196415993;300000 -57925;3582218;196417782;300000 -57926;3580430;196419570;300000 -57927;3578642;196421358;300000 -57928;3576854;196423146;300000 -57929;3575066;196424934;300000 -57930;3573278;196426722;300000 -57931;3571490;196428510;300000 -57932;3569702;196430298;300000 -57933;3567915;196432085;300000 -57934;3566127;196433873;300000 -57935;3564339;196435661;300000 -57936;3562552;196437448;300000 -57937;3560764;196439236;300000 -57938;3558977;196441023;300000 -57939;3557189;196442811;300000 -57940;3555402;196444598;300000 -57941;3553615;196446385;300000 -57942;3551828;196448172;300000 -57943;3550041;196449959;300000 -57944;3548253;196451747;300000 -57945;3546466;196453534;300000 -57946;3544680;196455320;300000 -57947;3542893;196457107;300000 -57948;3541106;196458894;300000 -57949;3539319;196460681;300000 -57950;3537532;196462468;300000 -57951;3535746;196464254;300000 -57952;3533959;196466041;300000 -57953;3532173;196467827;300000 -57954;3530386;196469614;300000 -57955;3528600;196471400;300000 -57956;3526813;196473187;300000 -57957;3525027;196474973;300000 -57958;3523241;196476759;300000 -57959;3521455;196478545;300000 -57960;3519669;196480331;300000 -57961;3517883;196482117;300000 -57962;3516097;196483903;300000 -57963;3514311;196485689;300000 -57964;3512525;196487475;300000 -57965;3510739;196489261;300000 -57966;3508954;196491046;300000 -57967;3507168;196492832;300000 -57968;3505382;196494618;300000 -57969;3503597;196496403;300000 -57970;3501811;196498189;300000 -57971;3500026;196499974;300000 -57972;3498241;196501759;300000 -57973;3496455;196503545;300000 -57974;3494670;196505330;300000 -57975;3492885;196507115;300000 -57976;3491100;196508900;300000 -57977;3489315;196510685;300000 -57978;3487530;196512470;300000 -57979;3485745;196514255;300000 -57980;3483960;196516040;300000 -57981;3482175;196517825;300000 -57982;3480390;196519610;300000 -57983;3478606;196521394;300000 -57984;3476821;196523179;300000 -57985;3475037;196524963;300000 -57986;3473252;196526748;300000 -57987;3471468;196528532;300000 -57988;3469683;196530317;300000 -57989;3467899;196532101;300000 -57990;3466115;196533885;300000 -57991;3464331;196535669;300000 -57992;3462547;196537453;300000 -57993;3460763;196539237;300000 -57994;3458979;196541021;300000 -57995;3457195;196542805;300000 -57996;3455411;196544589;300000 -57997;3453627;196546373;300000 -57998;3451843;196548157;300000 -57999;3450059;196549941;300000 -58000;3448276;196551724;300000 -58001;3446492;196553508;300000 -58002;3444709;196555291;300000 -58003;3442925;196557075;300000 -58004;3441142;196558858;300000 -58005;3439359;196560641;300000 -58006;3437575;196562425;300000 -58007;3435792;196564208;300000 -58008;3434009;196565991;300000 -58009;3432226;196567774;300000 -58010;3430443;196569557;300000 -58011;3428660;196571340;300000 -58012;3426877;196573123;300000 -58013;3425094;196574906;300000 -58014;3423312;196576688;300000 -58015;3421529;196578471;300000 -58016;3419746;196580254;300000 -58017;3417964;196582036;300000 -58018;3416181;196583819;300000 -58019;3414399;196585601;300000 -58020;3412616;196587384;300000 -58021;3410834;196589166;300000 -58022;3409052;196590948;300000 -58023;3407270;196592730;300000 -58024;3405487;196594513;300000 -58025;3403705;196596295;300000 -58026;3401923;196598077;300000 -58027;3400141;196599859;300000 -58028;3398359;196601641;300000 -58029;3396578;196603422;300000 -58030;3394796;196605204;300000 -58031;3393014;196606986;300000 -58032;3391232;196608768;300000 -58033;3389451;196610549;300000 -58034;3387669;196612331;300000 -58035;3385888;196614112;300000 -58036;3384106;196615894;300000 -58037;3382325;196617675;300000 -58038;3380544;196619456;300000 -58039;3378763;196621237;300000 -58040;3376981;196623019;300000 -58041;3375200;196624800;300000 -58042;3373419;196626581;300000 -58043;3371638;196628362;300000 -58044;3369857;196630143;300000 -58045;3368076;196631924;300000 -58046;3366296;196633704;300000 -58047;3364515;196635485;300000 -58048;3362734;196637266;300000 -58049;3360954;196639046;300000 -58050;3359173;196640827;300000 -58051;3357393;196642607;300000 -58052;3355612;196644388;300000 -58053;3353832;196646168;300000 -58054;3352052;196647948;300000 -58055;3350271;196649729;300000 -58056;3348491;196651509;300000 -58057;3346711;196653289;300000 -58058;3344931;196655069;300000 -58059;3343151;196656849;300000 -58060;3341371;196658629;300000 -58061;3339591;196660409;300000 -58062;3337811;196662189;300000 -58063;3336032;196663968;300000 -58064;3334252;196665748;300000 -58065;3332472;196667528;300000 -58066;3330693;196669307;300000 -58067;3328913;196671087;300000 -58068;3327134;196672866;300000 -58069;3325354;196674646;300000 -58070;3323575;196676425;300000 -58071;3321796;196678204;300000 -58072;3320017;196679983;300000 -58073;3318237;196681763;300000 -58074;3316458;196683542;300000 -58075;3314679;196685321;300000 -58076;3312900;196687100;300000 -58077;3311121;196688879;300000 -58078;3309343;196690657;300000 -58079;3307564;196692436;300000 -58080;3305785;196694215;300000 -58081;3304006;196695994;300000 -58082;3302228;196697772;300000 -58083;3300449;196699551;300000 -58084;3298671;196701329;300000 -58085;3296892;196703108;300000 -58086;3295114;196704886;300000 -58087;3293336;196706664;300000 -58088;3291558;196708442;300000 -58089;3289779;196710221;300000 -58090;3288001;196711999;300000 -58091;3286223;196713777;300000 -58092;3284445;196715555;300000 -58093;3282667;196717333;300000 -58094;3280890;196719110;300000 -58095;3279112;196720888;300000 -58096;3277334;196722666;300000 -58097;3275556;196724444;300000 -58098;3273779;196726221;300000 -58099;3272001;196727999;300000 -58100;3270224;196729776;300000 -58101;3268446;196731554;300000 -58102;3266669;196733331;300000 -58103;3264892;196735108;300000 -58104;3263114;196736886;300000 -58105;3261337;196738663;300000 -58106;3259560;196740440;300000 -58107;3257783;196742217;300000 -58108;3256006;196743994;300000 -58109;3254229;196745771;300000 -58110;3252452;196747548;300000 -58111;3250675;196749325;300000 -58112;3248899;196751101;300000 -58113;3247122;196752878;300000 -58114;3245345;196754655;300000 -58115;3243569;196756431;300000 -58116;3241792;196758208;300000 -58117;3240016;196759984;300000 -58118;3238239;196761761;300000 -58119;3236463;196763537;300000 -58120;3234687;196765313;300000 -58121;3232911;196767089;300000 -58122;3231135;196768865;300000 -58123;3229358;196770642;300000 -58124;3227582;196772418;300000 -58125;3225806;196774194;300000 -58126;3224031;196775969;300000 -58127;3222255;196777745;300000 -58128;3220479;196779521;300000 -58129;3218703;196781297;300000 -58130;3216928;196783072;300000 -58131;3215152;196784848;300000 -58132;3213376;196786624;300000 -58133;3211601;196788399;300000 -58134;3209826;196790174;300000 -58135;3208050;196791950;300000 -58136;3206275;196793725;300000 -58137;3204500;196795500;300000 -58138;3202725;196797275;300000 -58139;3200949;196799051;300000 -58140;3199174;196800826;300000 -58141;3197399;196802601;300000 -58142;3195625;196804375;300000 -58143;3193850;196806150;300000 -58144;3192075;196807925;300000 -58145;3190300;196809700;300000 -58146;3188525;196811475;300000 -58147;3186751;196813249;300000 -58148;3184976;196815024;300000 -58149;3183202;196816798;300000 -58150;3181427;196818573;300000 -58151;3179653;196820347;300000 -58152;3177879;196822121;300000 -58153;3176104;196823896;300000 -58154;3174330;196825670;300000 -58155;3172556;196827444;300000 -58156;3170782;196829218;300000 -58157;3169008;196830992;300000 -58158;3167234;196832766;300000 -58159;3165460;196834540;300000 -58160;3163686;196836314;300000 -58161;3161913;196838087;300000 -58162;3160139;196839861;300000 -58163;3158365;196841635;300000 -58164;3156592;196843408;300000 -58165;3154818;196845182;300000 -58166;3153045;196846955;300000 -58167;3151271;196848729;300000 -58168;3149498;196850502;300000 -58169;3147725;196852275;300000 -58170;3145952;196854048;300000 -58171;3144178;196855822;300000 -58172;3142405;196857595;300000 -58173;3140632;196859368;300000 -58174;3138859;196861141;300000 -58175;3137086;196862914;300000 -58176;3135314;196864686;300000 -58177;3133541;196866459;300000 -58178;3131768;196868232;300000 -58179;3129995;196870005;300000 -58180;3128223;196871777;300000 -58181;3126450;196873550;300000 -58182;3124678;196875322;300000 -58183;3122905;196877095;300000 -58184;3121133;196878867;300000 -58185;3119361;196880639;300000 -58186;3117588;196882412;300000 -58187;3115816;196884184;300000 -58188;3114044;196885956;300000 -58189;3112272;196887728;300000 -58190;3110500;196889500;300000 -58191;3108728;196891272;300000 -58192;3106956;196893044;300000 -58193;3105184;196894816;300000 -58194;3103413;196896587;300000 -58195;3101641;196898359;300000 -58196;3099869;196900131;300000 -58197;3098098;196901902;300000 -58198;3096326;196903674;300000 -58199;3094555;196905445;300000 -58200;3092784;196907216;300000 -58201;3091012;196908988;300000 -58202;3089241;196910759;300000 -58203;3087470;196912530;300000 -58204;3085699;196914301;300000 -58205;3083927;196916073;300000 -58206;3082156;196917844;300000 -58207;3080386;196919614;300000 -58208;3078615;196921385;300000 -58209;3076844;196923156;300000 -58210;3075073;196924927;300000 -58211;3073302;196926698;300000 -58212;3071532;196928468;300000 -58213;3069761;196930239;300000 -58214;3067991;196932009;300000 -58215;3066220;196933780;300000 -58216;3064450;196935550;300000 -58217;3062679;196937321;300000 -58218;3060909;196939091;300000 -58219;3059139;196940861;300000 -58220;3057369;196942631;300000 -58221;3055598;196944402;300000 -58222;3053828;196946172;300000 -58223;3052058;196947942;300000 -58224;3050289;196949711;300000 -58225;3048519;196951481;300000 -58226;3046749;196953251;300000 -58227;3044979;196955021;300000 -58228;3043209;196956791;300000 -58229;3041440;196958560;300000 -58230;3039670;196960330;300000 -58231;3037901;196962099;300000 -58232;3036131;196963869;300000 -58233;3034362;196965638;300000 -58234;3032593;196967407;300000 -58235;3030823;196969177;300000 -58236;3029054;196970946;300000 -58237;3027285;196972715;300000 -58238;3025516;196974484;300000 -58239;3023747;196976253;300000 -58240;3021978;196978022;300000 -58241;3020209;196979791;300000 -58242;3018440;196981560;300000 -58243;3016672;196983328;300000 -58244;3014903;196985097;300000 -58245;3013134;196986866;300000 -58246;3011366;196988634;300000 -58247;3009597;196990403;300000 -58248;3007829;196992171;300000 -58249;3006060;196993940;300000 -58250;3004292;196995708;300000 -58251;3002524;196997476;300000 -58252;300000755;196999245;300000 -58253;2998987;197001013;300000 -58254;2997219;197002781;300000 -58255;2995451;197004549;300000 -58256;2993683;197006317;300000 -58257;2991915;197008085;300000 -58258;2990147;197009853;300000 -58259;2988379;197011621;300000 -58260;2986612;197013388;300000 -58261;2984844;197015156;300000 -58262;2983076;197016924;300000 -58263;2981309;197018691;300000 -58264;2979541;197020459;300000 -58265;2977774;197022226;300000 -58266;2976007;197023993;300000 -58267;2974239;197025761;300000 -58268;2972472;197027528;300000 -58269;2970705;197029295;300000 -58270;2968938;197031062;300000 -58271;2967171;197032829;300000 -58272;2965404;197034596;300000 -58273;2963637;197036363;300000 -58274;2961870;197038130;300000 -58275;2960103;197039897;300000 -58276;2958336;197041664;300000 -58277;2956569;197043431;300000 -58278;2954803;197045197;300000 -58279;2953036;197046964;300000 -58280;2951270;197048730;300000 -58281;2949503;197050497;300000 -58282;2947737;197052263;300000 -58283;2945971;197054029;300000 -58284;2944204;197055796;300000 -58285;2942438;197057562;300000 -58286;2940672;197059328;300000 -58287;2938906;197061094;300000 -58288;2937140;197062860;300000 -58289;2935374;197064626;300000 -58290;2933608;197066392;300000 -58291;2931842;197068158;300000 -58292;2930076;197069924;300000 -58293;2928310;197071690;300000 -58294;2926545;197073455;300000 -58295;2924779;197075221;300000 -58296;2923014;197076986;300000 -58297;2921248;197078752;300000 -58298;2919483;197080517;300000 -58299;2917717;197082283;300000 -58300;2915952;197084048;300000 -58301;2914187;197085813;300000 -58302;2912422;197087578;300000 -58303;2910656;197089344;300000 -58304;2908891;197091109;300000 -58305;2907126;197092874;300000 -58306;2905361;197094639;300000 -58307;2903596;197096404;300000 -58308;2901832;197098168;300000 -58309;2900067;197099933;300000 -58310;2898302;197101698;300000 -58311;2896538;197103462;300000 -58312;2894773;197105227;300000 -58313;2893008;197106992;300000 -58314;2891244;197108756;300000 -58315;2889480;197110520;300000 -58316;2887715;197112285;300000 -58317;2885951;197114049;300000 -58318;2884187;197115813;300000 -58319;2882423;197117577;300000 -58320;2880658;197119342;300000 -58321;2878894;197121106;300000 -58322;2877130;197122870;300000 -58323;2875366;197124634;300000 -58324;2873603;197126397;300000 -58325;2871839;197128161;300000 -58326;2870075;197129925;300000 -58327;2868311;197131689;300000 -58328;2866548;197133452;300000 -58329;2864784;197135216;300000 -58330;2863021;197136979;300000 -58331;2861257;197138743;300000 -58332;2859494;197140506;300000 -58333;2857731;197142269;300000 -58334;2855967;197144033;300000 -58335;2854204;197145796;300000 -58336;2852441;197147559;300000 -58337;2850678;197149322;300000 -58338;2848915;197151085;300000 -58339;2847152;197152848;300000 -58340;2845389;197154611;300000 -58341;2843626;197156374;300000 -58342;2841863;197158137;300000 -58343;2840101;197159899;300000 -58344;2838338;197161662;300000 -58345;2836576;197163424;300000 -58346;2834813;197165187;300000 -58347;2833051;197166949;300000 -58348;2831288;197168712;300000 -58349;2829526;197170474;300000 -58350;2827763;197172237;300000 -58351;2826001;197173999;300000 -58352;2824239;197175761;300000 -58353;2822477;197177523;300000 -58354;2820715;197179285;300000 -58355;2818953;197181047;300000 -58356;2817191;197182809;300000 -58357;2815429;197184571;300000 -58358;2813667;197186333;300000 -58359;2811906;197188094;300000 -58360;2810144;197189856;300000 -58361;2808382;197191618;300000 -58362;2806621;197193379;300000 -58363;2804859;197195141;300000 -58364;2803098;197196902;300000 -58365;2801336;197198664;300000 -58366;2799575;197200425;300000 -58367;2797814;197202186;300000 -58368;2796053;197203947;300000 -58369;2794291;197205709;300000 -58370;2792530;197207470;300000 -58371;2790769;197209231;300000 -58372;2789008;197210992;300000 -58373;2787248;197212752;300000 -58374;2785487;197214513;300000 -58375;2783726;197216274;300000 -58376;2781965;197218035;300000 -58377;2780205;197219795;300000 -58378;2778444;197221556;300000 -58379;2776683;197223317;300000 -58380;2774923;197225077;300000 -58381;2773163;197226837;300000 -58382;2771402;197228598;300000 -58383;2769642;197230358;300000 -58384;2767882;197232118;300000 -58385;2766121;197233879;300000 -58386;2764361;197235639;300000 -58387;2762601;197237399;300000 -58388;2760841;197239159;300000 -58389;2759081;197240919;300000 -58390;2757321;197242679;300000 -58391;2755562;197244438;300000 -58392;2753802;197246198;300000 -58393;2752042;197247958;300000 -58394;2750283;197249717;300000 -58395;2748523;197251477;300000 -58396;2746763;197253237;300000 -58397;2745004;197254996;300000 -58398;2743245;197256755;300000 -58399;2741485;197258515;300000 -58400;2739726;197260274;300000 -58401;2737967;197262033;300000 -58402;2736208;197263792;300000 -58403;2734449;197265551;300000 -58404;2732690;197267310;300000 -58405;2730931;197269069;300000 -58406;2729172;197270828;300000 -58407;2727413;197272587;300000 -58408;2725654;197274346;300000 -58409;2723895;197276105;300000 -58410;2722137;197277863;300000 -58411;2720378;197279622;300000 -58412;2718619;197281381;300000 -58413;2716861;197283139;300000 -58414;2715103;197284897;300000 -58415;2713344;197286656;300000 -58416;2711586;197288414;300000 -58417;2709828;197290172;300000 -58418;2708069;197291931;300000 -58419;2706311;197293689;300000 -58420;2704553;197295447;300000 -58421;2702795;197297205;300000 -58422;2701037;197298963;300000 -58423;2699279;197300721;300000 -58424;2697522;197302478;300000 -58425;2695764;197304236;300000 -58426;2694006;197305994;300000 -58427;2692248;197307752;300000 -58428;2690491;197309509;300000 -58429;2688733;197311267;300000 -58430;2686976;197313024;300000 -58431;2685218;197314782;300000 -58432;2683461;197316539;300000 -58433;2681704;197318296;300000 -58434;2679947;197320053;300000 -58435;2678189;197321811;300000 -58436;2676432;197323568;300000 -58437;2674675;197325325;300000 -58438;2672918;197327082;300000 -58439;2671161;197328839;300000 -58440;2669405;197330595;300000 -58441;2667648;197332352;300000 -58442;2665891;197334109;300000 -58443;2664134;197335866;300000 -58444;2662378;197337622;300000 -58445;2660621;197339379;300000 -58446;2658865;197341135;300000 -58447;2657108;197342892;300000 -58448;2655352;197344648;300000 -58449;2653595;197346405;300000 -58450;2651839;197348161;300000 -58451;2650083;197349917;300000 -58452;2648327;197351673;300000 -58453;2646571;197353429;300000 -58454;2644815;197355185;300000 -58455;2643059;197356941;300000 -58456;2641303;197358697;300000 -58457;2639547;197360453;300000 -58458;2637791;197362209;300000 -58459;2636036;197363964;300000 -58460;2634280;197365720;300000 -58461;2632524;197367476;300000 -58462;2630769;197369231;300000 -58463;2629013;197370987;300000 -58464;2627258;197372742;300000 -58465;2625502;197374498;300000 -58466;2623747;197376253;300000 -58467;2621992;197378008;300000 -58468;2620237;197379763;300000 -58469;2618482;197381518;300000 -58470;2616727;197383273;300000 -58471;2614972;197385028;300000 -58472;2613217;197386783;300000 -58473;2611462;197388538;300000 -58474;2609707;197390293;300000 -58475;2607952;197392048;300000 -58476;2606197;197393803;300000 -58477;2604443;197395557;300000 -58478;2602688;197397312;300000 -58479;2600934;197399066;300000 -58480;2599179;197400821;300000 -58481;2597425;197402575;300000 -58482;2595670;197404330;300000 -58483;2593916;197406084;300000 -58484;2592162;197407838;300000 -58485;2590408;197409592;300000 -58486;2588654;197411346;300000 -58487;2586900;197413100;300000 -58488;2585146;197414854;300000 -58489;2583392;197416608;300000 -58490;2581638;197418362;300000 -58491;2579884;197420116;300000 -58492;2578130;197421870;300000 -58493;2576377;197423623;300000 -58494;2574623;197425377;300000 -58495;2572869;197427131;300000 -58496;2571116;197428884;300000 -58497;2569363;197430637;300000 -58498;2567609;197432391;300000 -58499;2565856;197434144;300000 -58500;2564103;197435897;300000 -58501;2562349;197437651;300000 -58502;2560596;197439404;300000 -58503;2558843;197441157;300000 -58504;2557090;197442910;300000 -58505;2555337;197444663;300000 -58506;2553584;197446416;300000 -58507;2551831;197448169;300000 -58508;2550079;197449921;300000 -58509;2548326;197451674;300000 -58510;2546573;197453427;300000 -58511;2544821;197455179;300000 -58512;2543068;197456932;300000 -58513;2541316;197458684;300000 -58514;2539563;197460437;300000 -58515;2537811;197462189;300000 -58516;2536059;197463941;300000 -58517;2534306;197465694;300000 -58518;2532554;197467446;300000 -58519;2530802;197469198;300000 -58520;2529050;197470950;300000 -58521;2527298;197472702;300000 -58522;2525546;197474454;300000 -58523;2523794;197476206;300000 -58524;2522042;197477958;300000 -58525;2520290;197479710;300000 -58526;2518539;197481461;300000 -58527;2516787;197483213;300000 -58528;2515036;197484964;300000 -58529;2513284;197486716;300000 -58530;2511533;197488467;300000 -58531;2509781;197490219;300000 -58532;2508030;197491970;300000 -58533;2506279;197493721;300000 -58534;2504527;197495473;300000 -58535;2502776;197497224;300000 -58536;2501025;197498975;300000 -58537;2499274;197500726;300000 -58538;2497523;197502477;300000 -58539;2495772;197504228;300000 -58540;2494021;197505979;300000 -58541;2492270;197507730;300000 -58542;2490520;197509480;300000 -58543;2488769;197511231;300000 -58544;2487018;197512982;300000 -58545;2485268;197514732;300000 -58546;2483517;197516483;300000 -58547;2481767;197518233;300000 -58548;2480016;197519984;300000 -58549;2478266;197521734;300000 -58550;2476516;197523484;300000 -58551;2474766;197525234;300000 -58552;2473015;197526985;300000 -58553;2471265;197528735;300000 -58554;2469515;197530485;300000 -58555;2467765;197532235;300000 -58556;2466015;197533985;300000 -58557;2464266;197535734;300000 -58558;2462516;197537484;300000 -58559;2460766;197539234;300000 -58560;2459016;197540984;300000 -58561;2457267;197542733;300000 -58562;2455517;197544483;300000 -58563;2453768;197546232;300000 -58564;2452018;197547982;300000 -58565;2450269;197549731;300000 -58566;2448520;197551480;300000 -58567;2446770;197553230;300000 -58568;2445021;197554979;300000 -58569;2443272;197556728;300000 -58570;2441523;197558477;300000 -58571;2439774;197560226;300000 -58572;2438025;197561975;300000 -58573;2436276;197563724;300000 -58574;2434527;197565473;300000 -58575;2432778;197567222;300000 -58576;2431030;197568970;300000 -58577;2429281;197570719;300000 -58578;2427533;197572467;300000 -58579;2425784;197574216;300000 -58580;2424036;197575964;300000 -58581;2422287;197577713;300000 -58582;2420539;197579461;300000 -58583;2418790;197581210;300000 -58584;2417042;197582958;300000 -58585;2415294;197584706;300000 -58586;2413546;197586454;300000 -58587;2411798;197588202;300000 -58588;2410050;197589950;300000 -58589;2408302;197591698;300000 -58590;2406554;197593446;300000 -58591;2404806;197595194;300000 -58592;2403058;197596942;300000 -58593;2401311;197598689;300000 -58594;2399563;197600437;300000 -58595;2397816;197602184;300000 -58596;2396068;197603932;300000 -58597;2394321;197605679;300000 -58598;2392573;197607427;300000 -58599;2390826;197609174;300000 -58600;2389078;197610922;300000 -58601;2387331;197612669;300000 -58602;2385584;197614416;300000 -58603;2383837;197616163;300000 -58604;2382090;197617910;300000 -58605;2380343;197619657;300000 -58606;2378596;197621404;300000 -58607;2376849;197623151;300000 -58608;2375102;197624898;300000 -58609;2373356;197626644;300000 -58610;2371609;197628391;300000 -58611;2369862;197630138;300000 -58612;2368116;197631884;300000 -58613;2366369;197633631;300000 -58614;2364623;197635377;300000 -58615;2362876;197637124;300000 -58616;2361130;197638870;300000 -58617;2359384;197640616;300000 -58618;2357638;197642362;300000 -58619;2355891;197644109;300000 -58620;2354145;197645855;300000 -58621;2352399;197647601;300000 -58622;2350653;197649347;300000 -58623;2348907;197651093;300000 -58624;2347162;197652838;300000 -58625;2345416;197654584;300000 -58626;2343670;197656330;300000 -58627;2341924;197658076;300000 -58628;2340179;197659821;300000 -58629;2338433;197661567;300000 -58630;2336688;197663312;300000 -58631;2334942;197665058;300000 -58632;2333197;197666803;300000 -58633;2331452;197668548;300000 -58634;2329706;197670294;300000 -58635;2327961;197672039;300000 -58636;2326216;197673784;300000 -58637;2324471;197675529;300000 -58638;2322726;197677274;300000 -58639;2320981;197679019;300000 -58640;2319236;197680764;300000 -58641;2317491;197682509;300000 -58642;2315746;197684254;300000 -58643;2314002;197685998;300000 -58644;2312257;197687743;300000 -58645;2310512;197689488;300000 -58646;2308768;197691232;300000 -58647;2307023;197692977;300000 -58648;2305279;197694721;300000 -58649;2303535;197696465;300000 -58650;2301790;197698210;300000 -58651;2300046;197699954;300000 -58652;2298302;197701698;300000 -58653;2296558;197703442;300000 -58654;2294814;197705186;300000 -58655;2293070;197706930;300000 -58656;2291326;197708674;300000 -58657;2289582;197710418;300000 -58658;2287838;197712162;300000 -58659;2286094;197713906;300000 -58660;2284350;197715650;300000 -58661;2282607;197717393;300000 -58662;2280863;197719137;300000 -58663;2279120;197720880;300000 -58664;2277376;197722624;300000 -58665;2275633;197724367;300000 -58666;2273889;197726111;300000 -58667;2272146;197727854;300000 -58668;2270403;197729597;300000 -58669;2268660;197731340;300000 -58670;2266917;197733083;300000 -58671;2265174;197734826;300000 -58672;2263431;197736569;300000 -58673;2261688;197738312;300000 -58674;2259945;197740055;300000 -58675;2258202;197741798;300000 -58676;2256459;197743541;300000 -58677;2254716;197745284;300000 -58678;2252974;197747026;300000 -58679;2251231;197748769;300000 -58680;2249489;197750511;300000 -58681;2247746;197752254;300000 -58682;2246004;197753996;300000 -58683;2244262;197755738;300000 -58684;2242519;197757481;300000 -58685;2240777;197759223;300000 -58686;2239035;197760965;300000 -58687;2237293;197762707;300000 -58688;2235551;197764449;300000 -58689;2233809;197766191;300000 -58690;2232067;197767933;300000 -58691;2230325;197769675;300000 -58692;2228583;197771417;300000 -58693;2226841;197773159;300000 -58694;2225100;197774900;300000 -58695;2223358;197776642;300000 -58696;2221616;197778384;300000 -58697;2219875;197780125;300000 -58698;2218133;197781867;300000 -58699;2216392;197783608;300000 -58700;2214651;197785349;300000 -58701;2212909;197787091;300000 -58702;2211168;197788832;300000 -58703;2209427;197790573;300000 -58704;2207686;197792314;300000 -58705;2205945;197794055;300000 -58706;2204204;197795796;300000 -58707;2202463;197797537;300000 -58708;2200722;197799278;300000 -58709;2198981;197801019;300000 -58710;2197241;197802759;300000 -58711;2195500;197804500;300000 -58712;2193759;197806241;300000 -58713;2192019;197807981;300000 -58714;2190278;197809722;300000 -58715;2188538;197811462;300000 -58716;2186797;197813203;300000 -58717;2185057;197814943;300000 -58718;2183317;197816683;300000 -58719;2181577;197818423;300000 -58720;2179837;197820163;300000 -58721;2178096;197821904;300000 -58722;2176356;197823644;300000 -58723;2174616;197825384;300000 -58724;2172877;197827123;300000 -58725;2171137;197828863;300000 -58726;2169397;197830603;300000 -58727;2167657;197832343;300000 -58728;2165917;197834083;300000 -58729;2164178;197835822;300000 -58730;2162438;197837562;300000 -58731;2160699;197839301;300000 -58732;2158959;197841041;300000 -58733;2157220;197842780;300000 -58734;2155481;197844519;300000 -58735;2153741;197846259;300000 -58736;2152002;197847998;300000 -58737;2150263;197849737;300000 -58738;2148524;197851476;300000 -58739;2146785;197853215;300000 -58740;2145046;197854954;300000 -58741;2143307;197856693;300000 -58742;2141568;197858432;300000 -58743;2139829;197860171;300000 -58744;2138091;197861909;300000 -58745;2136352;197863648;300000 -58746;2134613;197865387;300000 -58747;2132875;197867125;300000 -58748;2131136;197868864;300000 -58749;2129398;197870602;300000 -58750;2127660;197872340;300000 -58751;2125921;197874079;300000 -58752;2124183;197875817;300000 -58753;2122445;197877555;300000 -58754;2120707;197879293;300000 -58755;2118969;197881031;300000 -58756;2117231;197882769;300000 -58757;2115493;197884507;300000 -58758;2113755;197886245;300000 -58759;2112017;197887983;300000 -58760;2110279;197889721;300000 -58761;2108541;197891459;300000 -58762;2106804;197893196;300000 -58763;2105066;197894934;300000 -58764;2103329;197896671;300000 -58765;2101591;197898409;300000 -58766;2099854;197900146;300000 -58767;2098116;197901884;300000 -58768;2096379;197903621;300000 -58769;2094642;197905358;300000 -58770;2092905;197907095;300000 -58771;2091167;197908833;300000 -58772;2089430;197910570;300000 -58773;2087693;197912307;300000 -58774;2085956;197914044;300000 -58775;2084219;197915781;300000 -58776;2082483;197917517;300000 -58777;2080746;197919254;300000 -58778;2079009;197920991;300000 -58779;2077272;197922728;300000 -58780;2075536;197924464;300000 -58781;2073799;197926201;300000 -58782;2072063;197927937;300000 -58783;2070326;197929674;300000 -58784;2068590;197931410;300000 -58785;2066854;197933146;300000 -58786;2065118;197934882;300000 -58787;2063381;197936619;300000 -58788;2061645;197938355;300000 -58789;2059909;197940091;300000 -58790;2058173;197941827;300000 -58791;2056437;197943563;300000 -58792;2054701;197945299;300000 -58793;2052965;197947035;300000 -58794;2051230;197948770;300000 -58795;2049494;197950506;300000 -58796;2047758;197952242;300000 -58797;2046023;197953977;300000 -58798;2044287;197955713;300000 -58799;2042552;197957448;300000 -58800;2040816;197959184;300000 -58801;2039081;197960919;300000 -58802;2037346;197962654;300000 -58803;2035610;197964390;300000 -58804;2033875;197966125;300000 -58805;2032140;197967860;300000 -58806;2030405;197969595;300000 -58807;2028670;197971330;300000 -58808;2026935;197973065;300000 -58809;2025200;197974800;300000 -58810;2023465;197976535;300000 -58811;2021731;197978269;300000 -58812;2019996;197980004;300000 -58813;2018261;197981739;300000 -58814;2016527;197983473;300000 -58815;2014792;197985208;300000 -58816;2013058;197986942;300000 -58817;2011323;197988677;300000 -58818;2009589;197990411;300000 -58819;2007855;197992145;300000 -58820;2006120;197993880;300000 -58821;2004386;197995614;300000 -58822;2002652;197997348;300000 -58823;2000918;197999082;300000 -58824;1999184;198000816;300000 -58825;1997450;198002550;300000 -58826;1995716;198004284;300000 -58827;1993982;198006018;300000 -58828;1992249;198007751;300000 -58829;1990515;198009485;300000 -58830;1988781;198011219;300000 -58831;1987048;198012952;300000 -58832;1985314;198014686;300000 -58833;1983581;198016419;300000 -58834;1981847;198018153;300000 -58835;1980114;198019886;300000 -58836;1978381;198021619;300000 -58837;1976647;198023353;300000 -58838;1974914;198025086;300000 -58839;1973181;198026819;300000 -58840;1971448;198028552;300000 -58841;1969715;198030285;300000 -58842;1967982;198032018;300000 -58843;1966249;198033751;300000 -58844;1964516;198035484;300000 -58845;1962784;198037216;300000 -58846;1961051;198038949;300000 -58847;1959318;198040682;300000 -58848;1957586;198042414;300000 -58849;1955853;198044147;300000 -58850;1954121;198045879;300000 -58851;1952388;198047612;300000 -58852;1950656;198049344;300000 -58853;1948924;198051076;300000 -58854;1947191;198052809;300000 -58855;1945459;198054541;300000 -58856;1943727;198056273;300000 -58857;1941995;198058005;300000 -58858;1940263;198059737;300000 -58859;1938531;198061469;300000 -58860;1936799;198063201;300000 -58861;1935067;198064933;300000 -58862;1933336;198066664;300000 -58863;1931604;198068396;300000 -58864;1929872;198070128;300000 -58865;1928141;198071859;300000 -58866;1926409;198073591;300000 -58867;1924678;198075322;300000 -58868;1922946;198077054;300000 -58869;1921215;198078785;300000 -58870;1919484;198080516;300000 -58871;1917752;198082248;300000 -58872;1916021;198083979;300000 -58873;1914290;198085710;300000 -58874;1912559;198087441;300000 -58875;1910828;198089172;300000 -58876;1909097;198090903;300000 -58877;1907366;198092634;300000 -58878;1905635;198094365;300000 -58879;1903905;198096095;300000 -58880;1902174;198097826;300000 -58881;1900443;198099557;300000 -58882;1898713;198101287;300000 -58883;1896982;198103018;300000 -58884;1895252;198104748;300000 -58885;1893521;198106479;300000 -58886;1891791;198108209;300000 -58887;1890061;198109939;300000 -58888;1888330;198111670;300000 -58889;1886600;198113400;300000 -58890;1884870;198115130;300000 -58891;1883140;198116860;300000 -58892;1881410;198118590;300000 -58893;1879680;198120320;300000 -58894;1877950;198122050;300000 -58895;1876220;198123780;300000 -58896;1874491;198125509;300000 -58897;1872761;198127239;300000 -58898;1871031;198128969;300000 -58899;1869302;198130698;300000 -58900;1867572;198132428;300000 -58901;1865843;198134157;300000 -58902;1864113;198135887;300000 -58903;1862384;198137616;300000 -58904;1860655;198139345;300000 -58905;1858925;198141075;300000 -58906;1857196;198142804;300000 -58907;1855467;198144533;300000 -58908;1853738;198146262;300000 -58909;1852009;198147991;300000 -58910;1850280;198149720;300000 -58911;1848551;198151449;300000 -58912;1846822;198153178;300000 -58913;1845094;198154906;300000 -58914;1843365;198156635;300000 -58915;1841636;198158364;300000 -58916;1839908;198160092;300000 -58917;1838179;198161821;300000 -58918;1836451;198163549;300000 -58919;1834722;198165278;300000 -58920;1832994;198167006;300000 -58921;1831266;198168734;300000 -58922;1829537;198170463;300000 -58923;1827809;198172191;300000 -58924;1826081;198173919;300000 -58925;1824353;198175647;300000 -58926;1822625;198177375;300000 -58927;1820897;198179103;300000 -58928;1819169;198180831;300000 -58929;1817441;198182559;300000 -58930;1815714;198184286;300000 -58931;1813986;198186014;300000 -58932;1812258;198187742;300000 -58933;1810531;198189469;300000 -58934;1808803;198191197;300000 -58935;1807076;198192924;300000 -58936;1805348;198194652;300000 -58937;1803621;198196379;300000 -58938;1801894;198198106;300000 -58939;1800166;198199834;300000 -58940;1798439;198201561;300000 -58941;1796712;198203288;300000 -58942;1794985;198205015;300000 -58943;1793258;198206742;300000 -58944;1791531;198208469;300000 -58945;1789804;198210196;300000 -58946;1788077;198211923;300000 -58947;1786350;198213650;300000 -58948;1784624;198215376;300000 -58949;1782897;198217103;300000 -58950;1781170;198218830;300000 -58951;1779444;198220556;300000 -58952;1777717;198222283;300000 -58953;1775991;198224009;300000 -58954;1774265;198225735;300000 -58955;1772538;198227462;300000 -58956;1770812;198229188;300000 -58957;1769086;198230914;300000 -58958;1767360;198232640;300000 -58959;1765634;198234366;300000 -58960;1763908;198236092;300000 -58961;1762182;198237818;300000 -58962;1760456;198239544;300000 -58963;1758730;198241270;300000 -58964;1757004;198242996;300000 -58965;1755279;198244721;300000 -58966;1753553;198246447;300000 -58967;1751827;198248173;300000 -58968;1750102;198249898;300000 -58969;1748376;198251624;300000 -58970;1746651;198253349;300000 -58971;1744925;198255075;300000 -58972;1743200;198256800;300000 -58973;1741475;198258525;300000 -58974;1739750;198260250;300000 -58975;1738025;198261975;300000 -58976;1736300;198263700;300000 -58977;1734574;198265426;300000 -58978;1732850;198267150;300000 -58979;1731125;198268875;300000 -58980;1729400;198270600;300000 -58981;1727675;198272325;300000 -58982;1725950;198274050;300000 -58983;1724226;198275774;300000 -58984;1722501;198277499;300000 -58985;1720776;198279224;300000 -58986;1719052;198280948;300000 -58987;1717328;198282672;300000 -58988;1715603;198284397;300000 -58989;1713879;198286121;300000 -58990;1712155;198287845;300000 -58991;1710430;198289570;300000 -58992;1708706;198291294;300000 -58993;1706982;198293018;300000 -58994;1705258;198294742;300000 -58995;1703534;198296466;300000 -58996;1701810;198298190;300000 -58997;1700086;198299914;300000 -58998;1698363;198301637;300000 -58999;1696639;198303361;300000 -59000;1694915;198305085;300000 -59001;1693192;198306808;300000 -59002;1691468;198308532;300000 -59003;1689745;198310255;300000 -59004;1688021;198311979;300000 -59005;1686298;198313702;300000 -59006;1684574;198315426;300000 -59007;1682851;198317149;300000 -59008;1681128;198318872;300000 -59009;1679405;198320595;300000 -59010;1677682;198322318;300000 -59011;1675959;198324041;300000 -59012;1674236;198325764;300000 -59013;1672513;198327487;300000 -59014;1670790;198329210;300000 -59015;1669067;198330933;300000 -59016;1667344;198332656;300000 -59017;1665622;198334378;300000 -59018;1663899;198336101;300000 -59019;1662177;198337823;300000 -59020;1660454;198339546;300000 -59021;1658732;198341268;300000 -59022;1657009;198342991;300000 -59023;1655287;198344713;300000 -59024;1653565;198346435;300000 -59025;1651842;198348158;300000 -59026;1650120;198349880;300000 -59027;1648398;198351602;300000 -59028;1646676;198353324;300000 -59029;1644954;198355046;300000 -59030;1643232;198356768;300000 -59031;1641510;198358490;300000 -59032;1639789;198360211;300000 -59033;1638067;198361933;300000 -59034;1636345;198363655;300000 -59035;1634624;198365376;300000 -59036;1632902;198367098;300000 -59037;1631180;198368820;300000 -59038;1629459;198370541;300000 -59039;1627738;198372262;300000 -59040;1626016;198373984;300000 -59041;1624295;198375705;300000 -59042;1622574;198377426;300000 -59043;1620853;198379147;300000 -59044;1619131;198380869;300000 -59045;1617410;198382590;300000 -59046;1615689;198384311;300000 -59047;1613969;198386031;300000 -59048;1612248;198387752;300000 -59049;1610527;198389473;300000 -59050;1608806;198391194;300000 -59051;1607085;198392915;300000 -59052;1605365;198394635;300000 -59053;1603644;198396356;300000 -59054;1601924;198398076;300000 -59055;1600203;198399797;300000 -59056;1598483;198401517;300000 -59057;1596762;198403238;300000 -59058;1595042;198404958;300000 -59059;1593322;198406678;300000 -59060;1591602;198408398;300000 -59061;1589882;198410118;300000 -59062;1588162;198411838;300000 -59063;1586442;198413558;300000 -59064;1584722;198415278;300000 -59065;1583002;198416998;300000 -59066;1581282;198418718;300000 -59067;1579562;198420438;300000 -59068;1577842;198422158;300000 -59069;1576123;198423877;300000 -59070;1574403;198425597;300000 -59071;1572684;198427316;300000 -59072;1570964;198429036;300000 -59073;1569245;198430755;300000 -59074;1567525;198432475;300000 -59075;1565806;198434194;300000 -59076;1564087;198435913;300000 -59077;1562368;198437632;300000 -59078;1560649;198439351;300000 -59079;1558930;198441070;300000 -59080;1557211;198442789;300000 -59081;1555492;198444508;300000 -59082;1553773;198446227;300000 -59083;1552054;198447946;300000 -59084;1550335;198449665;300000 -59085;1548616;198451384;300000 -59086;1546898;198453102;300000 -59087;1545179;198454821;300000 -59088;1543461;198456539;300000 -59089;1541742;198458258;300000 -59090;1540024;198459976;300000 -59091;1538305;198461695;300000 -59092;1536587;198463413;300000 -59093;1534869;198465131;300000 -59094;1533151;198466849;300000 -59095;1531432;198468568;300000 -59096;1529714;198470286;300000 -59097;1527996;198472004;300000 -59098;1526278;198473722;300000 -59099;1524560;198475440;300000 -59100;1522843;198477157;300000 -59101;1521125;198478875;300000 -59102;1519407;198480593;300000 -59103;1517689;198482311;300000 -59104;1515972;198484028;300000 -59105;1514254;198485746;300000 -59106;1512537;198487463;300000 -59107;1510819;198489181;300000 -59108;1509102;198490898;300000 -59109;1507385;198492615;300000 -59110;1505667;198494333;300000 -59111;1503950;198496050;300000 -59112;1502233;198497767;300000 -59113;1500516;198499484;300000 -59114;1498799;198501201;300000 -59115;1497082;198502918;300000 -59116;1495365;198504635;300000 -59117;1493648;198506352;300000 -59118;1491931;198508069;300000 -59119;1490215;198509785;300000 -59120;1488498;198511502;300000 -59121;1486781;198513219;300000 -59122;1485065;198514935;300000 -59123;1483348;198516652;300000 -59124;1481632;198518368;300000 -59125;1479915;198520085;300000 -59126;1478199;198521801;300000 -59127;1476483;198523517;300000 -59128;1474767;198525233;300000 -59129;1473050;198526950;300000 -59130;1471334;198528666;300000 -59131;1469618;198530382;300000 -59132;1467902;198532098;300000 -59133;1466186;198533814;300000 -59134;1464471;198535529;300000 -59135;1462755;198537245;300000 -59136;1461039;198538961;300000 -59137;1459323;198540677;300000 -59138;1457608;198542392;300000 -59139;1455892;198544108;300000 -59140;1454177;198545823;300000 -59141;1452461;198547539;300000 -59142;1450746;198549254;300000 -59143;1449030;198550970;300000 -59144;1447315;198552685;300000 -59145;1445600;198554400;300000 -59146;1443885;198556115;300000 -59147;1442170;198557830;300000 -59148;1440454;198559546;300000 -59149;1438739;198561261;300000 -59150;1437025;198562975;300000 -59151;1435310;198564690;300000 -59152;1433595;198566405;300000 -59153;1431880;198568120;300000 -59154;1430165;198569835;300000 -59155;1428451;198571549;300000 -59156;1426736;198573264;300000 -59157;1425022;198574978;300000 -59158;1423307;198576693;300000 -59159;1421593;198578407;300000 -59160;1419878;198580122;300000 -59161;1418164;198581836;300000 -59162;1416450;198583550;300000 -59163;1414736;198585264;300000 -59164;1413021;198586979;300000 -59165;1411307;198588693;300000 -59166;1409593;198590407;300000 -59167;1407879;198592121;300000 -59168;1406165;198593835;300000 -59169;1404452;198595548;300000 -59170;1402738;198597262;300000 -59171;1401024;198598976;300000 -59172;1399310;198600690;300000 -59173;1397597;198602403;300000 -59174;1395883;198604117;300000 -59175;1394170;198605830;300000 -59176;1392456;198607544;300000 -59177;1390743;198609257;300000 -59178;1389030;198610970;300000 -59179;1387316;198612684;300000 -59180;1385603;198614397;300000 -59181;1383890;198616110;300000 -59182;1382177;198617823;300000 -59183;1380464;198619536;300000 -59184;1378751;198621249;300000 -59185;1377038;198622962;300000 -59186;1375325;198624675;300000 -59187;1373612;198626388;300000 -59188;1371900;198628100;300000 -59189;1370187;198629813;300000 -59190;1368474;198631526;300000 -59191;1366762;198633238;300000 -59192;1365049;198634951;300000 -59193;1363337;198636663;300000 -59194;1361624;198638376;300000 -59195;1359912;198640088;300000 -59196;1358200;198641800;300000 -59197;1356488;198643512;300000 -59198;1354775;198645225;300000 -59199;1353063;198646937;300000 -59200;1351351;198648649;300000 -59201;1349639;198650361;300000 -59202;1347927;198652073;300000 -59203;1346216;198653784;300000 -59204;1344504;198655496;300000 -59205;1342792;198657208;300000 -59206;1341080;198658920;300000 -59207;1339369;198660631;300000 -59208;1337657;198662343;300000 -59209;1335946;198664054;300000 -59210;1334234;198665766;300000 -59211;1332523;198667477;300000 -59212;1330811;198669189;300000 -59213;1329100;198670900;300000 -59214;1327389;198672611;300000 -59215;1325678;198674322;300000 -59216;1323966;198676034;300000 -59217;1322255;198677745;300000 -59218;1320544;198679456;300000 -59219;1318833;198681167;300000 -59220;1317123;198682877;300000 -59221;1315412;198684588;300000 -59222;1313701;198686299;300000 -59223;1311990;198688010;300000 -59224;1310280;198689720;300000 -59225;1308569;198691431;300000 -59226;1306858;198693142;300000 -59227;1305148;198694852;300000 -59228;1303438;198696562;300000 -59229;1301727;198698273;300000 -59230;1300017;198699983;300000 -59231;1298307;198701693;300000 -59232;1296596;198703404;300000 -59233;1294886;198705114;300000 -59234;1293176;198706824;300000 -59235;1291466;198708534;300000 -59236;1289756;198710244;300000 -59237;1288046;198711954;300000 -59238;1286336;198713664;300000 -59239;1284627;198715373;300000 -59240;1282917;198717083;300000 -59241;1281207;198718793;300000 -59242;1279498;198720502;300000 -59243;1277788;198722212;300000 -59244;1276079;198723921;300000 -59245;1274369;198725631;300000 -59246;1272660;198727340;300000 -59247;1270950;198729050;300000 -59248;1269241;198730759;300000 -59249;1267532;198732468;300000 -59250;1265823;198734177;300000 -59251;1264114;198735886;300000 -59252;1262405;198737595;300000 -59253;1260696;198739304;300000 -59254;1258987;198741013;300000 -59255;1257278;198742722;300000 -59256;1255569;198744431;300000 -59257;1253860;198746140;300000 -59258;1252152;198747848;300000 -59259;1250443;198749557;300000 -59260;1248734;198751266;300000 -59261;1247026;198752974;300000 -59262;1245317;198754683;300000 -59263;1243609;198756391;300000 -59264;1241901;198758099;300000 -59265;1240192;198759808;300000 -59266;1238484;198761516;300000 -59267;1236776;198763224;300000 -59268;1235068;198764932;300000 -59269;1233360;198766640;300000 -59270;1231652;198768348;300000 -59271;1229944;198770056;300000 -59272;1228236;198771764;300000 -59273;1226528;198773472;300000 -59274;1224820;198775180;300000 -59275;1223113;198776887;300000 -59276;1221405;198778595;300000 -59277;1219697;198780303;300000 -59278;1217990;198782010;300000 -59279;1216282;198783718;300000 -59280;1214575;198785425;300000 -59281;1212868;198787132;300000 -59282;1211160;198788840;300000 -59283;1209453;198790547;300000 -59284;1207746;198792254;300000 -59285;1206039;198793961;300000 -59286;1204332;198795668;300000 -59287;1202625;198797375;300000 -59288;1200918;198799082;300000 -59289;1199211;198800789;300000 -59290;1197504;198802496;300000 -59291;1195797;198804203;300000 -59292;1194090;198805910;300000 -59293;1192384;198807616;300000 -59294;1190677;198809323;300000 -59295;1188970;198811030;300000 -59296;1187264;198812736;300000 -59297;1185557;198814443;300000 -59298;1183851;198816149;300000 -59299;1182145;198817855;300000 -59300;1180438;198819562;300000 -59301;1178732;198821268;300000 -59302;1177026;198822974;300000 -59303;1175320;198824680;300000 -59304;1173614;198826386;300000 -59305;1171908;198828092;300000 -59306;1170202;198829798;300000 -59307;1168496;198831504;300000 -59308;1166790;198833210;300000 -59309;1165085;198834915;300000 -59310;1163379;198836621;300000 -59311;1161673;198838327;300000 -59312;1159968;198840032;300000 -59313;1158262;198841738;300000 -59314;1156557;198843443;300000 -59315;1154851;198845149;300000 -59316;1153146;198846854;300000 -59317;1151441;198848559;300000 -59318;1149735;198850265;300000 -59319;1148030;198851970;300000 -59320;1146325;198853675;300000 -59321;1144620;198855380;300000 -59322;1142915;198857085;300000 -59323;1141210;198858790;300000 -59324;1139505;198860495;300000 -59325;1137800;198862200;300000 -59326;1136095;198863905;300000 -59327;1134391;198865609;300000 -59328;1132686;198867314;300000 -59329;1130981;198869019;300000 -59330;1129277;198870723;300000 -59331;1127572;198872428;300000 -59332;1125868;198874132;300000 -59333;1124164;198875836;300000 -59334;1122459;198877541;300000 -59335;1120755;198879245;300000 -59336;1119051;198880949;300000 -59337;1117347;198882653;300000 -59338;1115643;198884357;300000 -59339;1113939;198886061;300000 -59340;1112235;198887765;300000 -59341;1110531;198889469;300000 -59342;1108827;198891173;300000 -59343;1107123;198892877;300000 -59344;1105419;198894581;300000 -59345;1103716;198896284;300000 -59346;1102012;198897988;300000 -59347;1100308;198899692;300000 -59348;1098605;198901395;300000 -59349;1096901;198903099;300000 -59350;1095198;198904802;300000 -59351;1093495;198906505;300000 -59352;1091791;198908209;300000 -59353;1090088;198909912;300000 -59354;1088385;198911615;300000 -59355;1086682;198913318;300000 -59356;1084979;198915021;300000 -59357;1083276;198916724;300000 -59358;1081573;198918427;300000 -59359;1079870;198920130;300000 -59360;1078167;198921833;300000 -59361;1076464;198923536;300000 -59362;1074762;198925238;300000 -59363;1073059;198926941;300000 -59364;1071356;198928644;300000 -59365;1069654;198930346;300000 -59366;1067951;198932049;300000 -59367;1066249;198933751;300000 -59368;1064547;198935453;300000 -59369;1062844;198937156;300000 -59370;1061142;198938858;300000 -59371;1059440;198940560;300000 -59372;1057738;198942262;300000 -59373;1056036;198943964;300000 -59374;1054334;198945666;300000 -59375;1052632;198947368;300000 -59376;1050930;198949070;300000 -59377;1049228;198950772;300000 -59378;1047526;198952474;300000 -59379;1045824;198954176;300000 -59380;1044123;198955877;300000 -59381;1042421;198957579;300000 -59382;1040719;198959281;300000 -59383;1039018;198960982;300000 -59384;1037316;198962684;300000 -59385;1035615;198964385;300000 -59386;1033914;198966086;300000 -59387;1032212;198967788;300000 -59388;1030511;198969489;300000 -59389;1028810;198971190;300000 -59390;1027109;198972891;300000 -59391;1025408;198974592;300000 -59392;1023707;198976293;300000 -59393;1022006;198977994;300000 -59394;1020305;198979695;300000 -59395;1018604;198981396;300000 -59396;1016903;198983097;300000 -59397;1015203;198984797;300000 -59398;1013502;198986498;300000 -59399;1011802;198988198;300000 -59400;1010101;198989899;300000 -59401;1008401;198991599;300000 -59402;1006700;198993300;300000 -59403;1005000;198995000;300000 -59404;1003299;198996701;300000 -59405;1001599;198998401;300000 -59406;999899;199000101;300000 -59407;998199;199001801;300000 -59408;996499;199003501;300000 -59409;994799;199005201;300000 -59410;993099;199006901;300000 -59411;991399;199008601;300000 -59412;989699;199010301;300000 -59413;987999;199012001;300000 -59414;986300;199013700;300000 -59415;984600;199015400;300000 -59416;982900;199017100;300000 -59417;981201;199018799;300000 -59418;979501;199020499;300000 -59419;977802;199022198;300000 -59420;976102;199023898;300000 -59421;974403;199025597;300000 -59422;972704;199027296;300000 -59423;971004;199028996;300000 -59424;969305;199030695;300000 -59425;967606;199032394;300000 -59426;965907;199034093;300000 -59427;964208;199035792;300000 -59428;962509;199037491;300000 -59429;960810;199039190;300000 -59430;959112;199040888;300000 -59431;957413;199042587;300000 -59432;955714;199044286;300000 -59433;954015;199045985;300000 -59434;952317;199047683;300000 -59435;950618;199049382;300000 -59436;948920;199051080;300000 -59437;947221;199052779;300000 -59438;945523;199054477;300000 -59439;943825;199056175;300000 -59440;942127;199057873;300000 -59441;940428;199059572;300000 -59442;938730;199061270;300000 -59443;937032;199062968;300000 -59444;935334;199064666;300000 -59445;933636;199066364;300000 -59446;931938;199068062;300000 -59447;930240;199069760;300000 -59448;928543;199071457;300000 -59449;926845;199073155;300000 -59450;925147;199074853;300000 -59451;923450;199076550;300000 -59452;921752;199078248;300000 -59453;920054;199079946;300000 -59454;918357;199081643;300000 -59455;916660;199083340;300000 -59456;914962;199085038;300000 -59457;913265;199086735;300000 -59458;911568;199088432;300000 -59459;909871;199090129;300000 -59460;908174;199091826;300000 -59461;906477;199093523;300000 -59462;904780;199095220;300000 -59463;903083;199096917;300000 -59464;901386;199098614;300000 -59465;899689;199100311;300000 -59466;897992;199102008;300000 -59467;896295;199103705;300000 -59468;894599;199105401;300000 -59469;892902;199107098;300000 -59470;891206;199108794;300000 -59471;889509;199110491;300000 -59472;887813;199112187;300000 -59473;886116;199113884;300000 -59474;884420;199115580;300000 -59475;882724;199117276;300000 -59476;881028;199118972;300000 -59477;879332;199120668;300000 -59478;877635;199122365;300000 -59479;875939;199124061;300000 -59480;874243;199125757;300000 -59481;872548;199127452;300000 -59482;870852;199129148;300000 -59483;869156;199130844;300000 -59484;867460;199132540;300000 -59485;865764;199134236;300000 -59486;864069;199135931;300000 -59487;862373;199137627;300000 -59488;860678;199139322;300000 -59489;858982;199141018;300000 -59490;857287;199142713;300000 -59491;855592;199144408;300000 -59492;853896;199146104;300000 -59493;852201;199147799;300000 -59494;850506;199149494;300000 -59495;848811;199151189;300000 -59496;847116;199152884;300000 -59497;845421;199154579;300000 -59498;843726;199156274;300000 -59499;842031;199157969;300000 -59500;840336;199159664;300000 -59501;838641;199161359;300000 -59502;836947;199163053;300000 -59503;835252;199164748;300000 -59504;833557;199166443;300000 -59505;831863;199168137;300000 -59506;830168;199169832;300000 -59507;828474;199171526;300000 -59508;826780;199173220;300000 -59509;825085;199174915;300000 -59510;823391;199176609;300000 -59511;821697;199178303;300000 -59512;820003;199179997;300000 -59513;818309;199181691;300000 -59514;816615;199183385;300000 -59515;814921;199185079;300000 -59516;813227;199186773;300000 -59517;811533;199188467;300000 -59518;809839;199190161;300000 -59519;808145;199191855;300000 -59520;806452;199193548;300000 -59521;804758;199195242;300000 -59522;803064;199196936;300000 -59523;801371;199198629;300000 -59524;799677;199200323;300000 -59525;797984;199202016;300000 -59526;796291;199203709;300000 -59527;794597;199205403;300000 -59528;792904;199207096;300000 -59529;791211;199208789;300000 -59530;789518;199210482;300000 -59531;787825;199212175;300000 -59532;786132;199213868;300000 -59533;784439;199215561;300000 -59534;782746;199217254;300000 -59535;781053;199218947;300000 -59536;779360;199220640;300000 -59537;777668;199222332;300000 -59538;775975;199224025;300000 -59539;774282;199225718;300000 -59540;772590;199227410;300000 -59541;770897;199229103;300000 -59542;769205;199230795;300000 -59543;767513;199232487;300000 -59544;765820;199234180;300000 -59545;764128;199235872;300000 -59546;762436;199237564;300000 -59547;760744;199239256;300000 -59548;759052;199240948;300000 -59549;757359;199242641;300000 -59550;755668;199244332;300000 -59551;753976;199246024;300000 -59552;752284;199247716;300000 -59553;750592;199249408;300000 -59554;748900;199251100;300000 -59555;747208;199252792;300000 -59556;745517;199254483;300000 -59557;743825;199256175;300000 -59558;742134;199257866;300000 -59559;740442;199259558;300000 -59560;738751;199261249;300000 -59561;737059;199262941;300000 -59562;735368;199264632;300000 -59563;733677;199266323;300000 -59564;731986;199268014;300000 -59565;730295;199269705;300000 -59566;728604;199271396;300000 -59567;726913;199273087;300000 -59568;725222;199274778;300000 -59569;723531;199276469;300000 -59570;721840;199278160;300000 -59571;720149;199279851;300000 -59572;718458;199281542;300000 -59573;716768;199283232;300000 -59574;715077;199284923;300000 -59575;713386;199286614;300000 -59576;711696;199288304;300000 -59577;710006;199289994;300000 -59578;708315;199291685;300000 -59579;706625;199293375;300000 -59580;704935;199295065;300000 -59581;703244;199296756;300000 -59582;701554;199298446;300000 -59583;699864;199300136;300000 -59584;698174;199301826;300000 -59585;696484;199303516;300000 -59586;694794;199305206;300000 -59587;693104;199306896;300000 -59588;691414;199308586;300000 -59589;689725;199310275;300000 -59590;688035;199311965;300000 -59591;686345;199313655;300000 -59592;684656;199315344;300000 -59593;682966;199317034;300000 -59594;681277;199318723;300000 -59595;679587;199320413;300000 -59596;677898;199322102;300000 -59597;676209;199323791;300000 -59598;674519;199325481;300000 -59599;672830;199327170;300000 -59600;671141;199328859;300000 -59601;669452;199330548;300000 -59602;667763;199332237;300000 -59603;666074;199333926;300000 -59604;664385;199335615;300000 -59605;662696;199337304;300000 -59606;661007;199338993;300000 -59607;659319;199340681;300000 -59608;657630;199342370;300000 -59609;655941;199344059;300000 -59610;654253;199345747;300000 -59611;652564;199347436;300000 -59612;650876;199349124;300000 -59613;649187;199350813;300000 -59614;647499;199352501;300000 -59615;645811;199354189;300000 -59616;644122;199355878;300000 -59617;642434;199357566;300000 -59618;640746;199359254;300000 -59619;639058;199360942;300000 -59620;637370;199362630;300000 -59621;635682;199364318;300000 -59622;633994;199366006;300000 -59623;632306;199367694;300000 -59624;630619;199369381;300000 -59625;628931;199371069;300000 -59626;627243;199372757;300000 -59627;625556;199374444;300000 -59628;623868;199376132;300000 -59629;622180;199377820;300000 -59630;620493;199379507;300000 -59631;618806;199381194;300000 -59632;617118;199382882;300000 -59633;615431;199384569;300000 -59634;613744;199386256;300000 -59635;612057;199387943;300000 -59636;610370;199389630;300000 -59637;608683;199391317;300000 -59638;606996;199393004;300000 -59639;605309;199394691;300000 -59640;603622;199396378;300000 -59641;601935;199398065;300000 -59642;600248;199399752;300000 -59643;598561;199401439;300000 -59644;596875;199403125;300000 -59645;595188;199404812;300000 -59646;593502;199406498;300000 -59647;591815;199408185;300000 -59648;590129;199409871;300000 -59649;588442;199411558;300000 -59650;586756;199413244;300000 -59651;585070;199414930;300000 -59652;583384;199416616;300000 -59653;581697;199418303;300000 -59654;580011;199419989;300000 -59655;578325;199421675;300000 -59656;576639;199423361;300000 -59657;574953;199425047;300000 -59658;573268;199426732;300000 -59659;571582;199428418;300000 -59660;569896;199430104;300000 -59661;568210;199431790;300000 -59662;566525;199433475;300000 -59663;564839;199435161;300000 -59664;563154;199436846;300000 -59665;561468;199438532;300000 -59666;559783;199440217;300000 -59667;558097;199441903;300000 -59668;556412;199443588;300000 -59669;554727;199445273;300000 -59670;553042;199446958;300000 -59671;551357;199448643;300000 -59672;549672;199450328;300000 -59673;547987;199452013;300000 -59674;546302;199453698;300000 -59675;544617;199455383;300000 -59676;542932;199457068;300000 -59677;541247;199458753;300000 -59678;539562;199460438;300000 -59679;537878;199462122;300000 -59680;536193;199463807;300000 -59681;534508;199465492;300000 -59682;532824;199467176;300000 -59683;531140;199468860;300000 -59684;529455;199470545;300000 -59685;527771;199472229;300000 -59686;526087;199473913;300000 -59687;524402;199475598;300000 -59688;522718;199477282;300000 -59689;521034;199478966;300000 -59690;519350;199480650;300000 -59691;517666;199482334;300000 -59692;515982;199484018;300000 -59693;514298;199485702;300000 -59694;512614;199487386;300000 -59695;510931;199489069;300000 -59696;509247;199490753;300000 -59697;507563;199492437;300000 -59698;505880;199494120;300000 -59699;504196;199495804;300000 -59700;502513;199497487;300000 -59701;500829;199499171;300000 -59702;499146;199500854;300000 -59703;497462;199502538;300000 -59704;495779;199504221;300000 -59705;494096;199505904;300000 -59706;492413;199507587;300000 -59707;490730;199509270;300000 -59708;489047;199510953;300000 -59709;487364;199512636;300000 -59710;485681;199514319;300000 -59711;483998;199516002;300000 -59712;482315;199517685;300000 -59713;480632;199519368;300000 -59714;478950;199521050;300000 -59715;477267;199522733;300000 -59716;475584;199524416;300000 -59717;473902;199526098;300000 -59718;472219;199527781;300000 -59719;470537;199529463;300000 -59720;468855;199531145;300000 -59721;467172;199532828;300000 -59722;465490;199534510;300000 -59723;463808;199536192;300000 -59724;462126;199537874;300000 -59725;460444;199539556;300000 -59726;458762;199541238;300000 -59727;457080;199542920;300000 -59728;455398;199544602;300000 -59729;453716;199546284;300000 -59730;452034;199547966;300000 -59731;450352;199549648;300000 -59732;448671;199551329;300000 -59733;446989;199553011;300000 -59734;445308;199554692;300000 -59735;443626;199556374;300000 -59736;441945;199558055;300000 -59737;440263;199559737;300000 -59738;438582;199561418;300000 -59739;436901;199563099;300000 -59740;435219;199564781;300000 -59741;433538;199566462;300000 -59742;431857;199568143;300000 -59743;430176;199569824;300000 -59744;428495;199571505;300000 -59745;426814;199573186;300000 -59746;425133;199574867;300000 -59747;423452;199576548;300000 -59748;421771;199578229;300000 -59749;420091;199579909;300000 -59750;418410;199581590;300000 -59751;416729;199583271;300000 -59752;415049;199584951;300000 -59753;413368;199586632;300000 -59754;411688;199588312;300000 -59755;410008;199589992;300000 -59756;408327;199591673;300000 -59757;406647;199593353;300000 -59758;404967;199595033;300000 -59759;403287;199596713;300000 -59760;401606;199598394;300000 -59761;399926;199600074;300000 -59762;398246;199601754;300000 -59763;396566;199603434;300000 -59764;394887;199605113;300000 -59765;393207;199606793;300000 -59766;391527;199608473;300000 -59767;389847;199610153;300000 -59768;388168;199611832;300000 -59769;386488;199613512;300000 -59770;384808;199615192;300000 -59771;383129;199616871;300000 -59772;381450;199618550;300000 -59773;379770;199620230;300000 -59774;378091;199621909;300000 -59775;376412;199623588;300000 -59776;374732;199625268;300000 -59777;373053;199626947;300000 -59778;371374;199628626;300000 -59779;369695;199630305;300000 -59780;368016;199631984;300000 -59781;366337;199633663;300000 -59782;364658;199635342;300000 -59783;362979;199637021;300000 -59784;361301;199638699;300000 -59785;359622;199640378;300000 -59786;357943;199642057;300000 -59787;356265;199643735;300000 -59788;354586;199645414;300000 -59789;352908;199647092;300000 -59790;351229;199648771;300000 -59791;349551;199650449;300000 -59792;347873;199652127;300000 -59793;346194;199653806;300000 -59794;344516;199655484;300000 -59795;342838;199657162;300000 -59796;341160;199658840;300000 -59797;339482;199660518;300000 -59798;337804;199662196;300000 -59799;336126;199663874;300000 -59800;334448;199665552;300000 -59801;332770;199667230;300000 -59802;331093;199668907;300000 -59803;329415;199670585;300000 -59804;327737;199672263;300000 -59805;326060;199673940;300000 -59806;324382;199675618;300000 -59807;322705;199677295;300000 -59808;321027;199678973;300000 -59809;319350;199680650;300000 -59810;317673;199682327;300000 -59811;315995;199684005;300000 -59812;314318;199685682;300000 -59813;312641;199687359;300000 -59814;310964;199689036;300000 -59815;309287;199690713;300000 -59816;307610;199692390;300000 -59817;305933;199694067;300000 -59818;304256;199695744;300000 -59819;302579;199697421;300000 -59820;300903;199699097;300000 -59821;299226;199700774;300000 -59822;297549;199702451;300000 -59823;295873;199704127;300000 -59824;294196;199705804;300000 -59825;292520;199707480;300000 -59826;290843;199709157;300000 -59827;289167;199710833;300000 -59828;287491;199712509;300000 -59829;285815;199714185;300000 -59830;284138;199715862;300000 -59831;282462;199717538;300000 -59832;280786;199719214;300000 -59833;279110;199720890;300000 -59834;277434;199722566;300000 -59835;275758;199724242;300000 -59836;274082;199725918;300000 -59837;272407;199727593;300000 -59838;270731;199729269;300000 -59839;269055;199730945;300000 -59840;267380;199732620;300000 -59841;265704;199734296;300000 -59842;264029;199735971;300000 -59843;262353;199737647;300000 -59844;260678;199739322;300000 -59845;259002;199740998;300000 -59846;257327;199742673;300000 -59847;255652;199744348;300000 -59848;253977;199746023;300000 -59849;252302;199747698;300000 -59850;250627;199749373;300000 -59851;248952;199751048;300000 -59852;247277;199752723;300000 -59853;245602;199754398;300000 -59854;243927;199756073;300000 -59855;242252;199757748;300000 -59856;240577;199759423;300000 -59857;238903;199761097;300000 -59858;237228;199762772;300000 -59859;235554;199764446;300000 -59860;233879;199766121;300000 -59861;232205;199767795;300000 -59862;230530;199769470;300000 -59863;228856;199771144;300000 -59864;227182;199772818;300000 -59865;225507;199774493;300000 -59866;223833;199776167;300000 -59867;222159;199777841;300000 -59868;220485;199779515;300000 -59869;218811;199781189;300000 -59870;217137;199782863;300000 -59871;215463;199784537;300000 -59872;213789;199786211;300000 -59873;212116;199787884;300000 -59874;210442;199789558;300000 -59875;208768;199791232;300000 -59876;207095;199792905;300000 -59877;205421;199794579;300000 -59878;203748;199796252;300000 -59879;202074;199797926;300000 -59880;200401;199799599;300000 -59881;198727;199801273;300000 -59882;197054;199802946;300000 -59883;195381;199804619;300000 -59884;193708;199806292;300000 -59885;192035;199807965;300000 -59886;190362;199809638;300000 -59887;188689;199811311;300000 -59888;187016;199812984;300000 -59889;185343;199814657;300000 -59890;183670;199816330;300000 -59891;181997;199818003;300000 -59892;180325;199819675;300000 -59893;178652;199821348;300000 -59894;176979;199823021;300000 -59895;175307;199824693;300000 -59896;173634;199826366;300000 -59897;171962;199828038;300000 -59898;170289;199829711;300000 -59899;168617;199831383;300000 -59900;166945;199833055;300000 -59901;165273;199834727;300000 -59902;163601;199836399;300000 -59903;161928;199838072;300000 -59904;160256;199839744;300000 -59905;158584;199841416;300000 -59906;156912;199843088;300000 -59907;155241;199844759;300000 -59908;153569;199846431;300000 -59909;151897;199848103;300000 -59910;150225;199849775;300000 -59911;148554;199851446;300000 -59912;146882;199853118;300000 -59913;145211;199854789;300000 -59914;143539;199856461;300000 -59915;141868;199858132;300000 -59916;140196;199859804;300000 -59917;138525;199861475;300000 -59918;136854;199863146;300000 -59919;135182;199864818;300000 -59920;133511;199866489;300000 -59921;131840;199868160;300000 -59922;130169;199869831;300000 -59923;128498;199871502;300000 -59924;126827;199873173;300000 -59925;125156;199874844;300000 -59926;123486;199876514;300000 -59927;121815;199878185;300000 -59928;120144;199879856;300000 -59929;118474;199881526;300000 -59930;116803;199883197;300000 -59931;115132;199884868;300000 -59932;113462;199886538;300000 -59933;111792;199888208;300000 -59934;110121;199889879;300000 -59935;108451;199891549;300000 -59936;106781;199893219;300000 -59937;105110;199894890;300000 -59938;103440;199896560;300000 -59939;101770;199898230;300000 -59940;100100;199899900;300000 -59941;98430;199901570;300000 -59942;96760;199903240;300000 -59943;95090;199904910;300000 -59944;93421;199906579;300000 -59945;91751;199908249;300000 -59946;90081;199909919;300000 -59947;88411;199911589;300000 -59948;86742;199913258;300000 -59949;85072;199914928;300000 -59950;83403;199916597;300000 -59951;81733;199918267;300000 -59952;80064;199919936;300000 -59953;78395;199921605;300000 -59954;76725;199923275;300000 -59955;75056;199924944;300000 -59956;73387;199926613;300000 -59957;71718;199928282;300000 -59958;70049;199929951;300000 -59959;68380;199931620;300000 -59960;66711;199933289;300000 -59961;65042;199934958;300000 -59962;63373;199936627;300000 -59963;61705;199938295;300000 -59964;60036;199939964;300000 -59965;58367;199941633;300000 -59966;56699;199943301;300000 -59967;55030;199944970;300000 -59968;53362;199946638;300000 -59969;51693;199948307;300000 -59970;50025;199949975;300000 -59971;48357;199951643;300000 -59972;46688;199953312;300000 -59973;45020;199954980;300000 -59974;43352;199956648;300000 -59975;41684;199958316;300000 -59976;40016;199959984;300000 -59977;38348;199961652;300000 -59978;36680;199963320;300000 -59979;35012;199964988;300000 -59980;33344;199966656;300000 -59981;31677;199968323;300000 -59982;3000009;199969991;300000 -59983;28341;199971659;300000 -59984;26674;199973326;300000 -59985;25006;199974994;300000 -59986;23339;199976661;300000 -59987;21671;199978329;300000 -59988;20004;199979996;300000 -59989;18337;199981663;300000 -59990;16669;199983331;300000 -59991;15002;199984998;300000 -59992;13335;199986665;300000 -59993;11668;199988332;300000 -59994;10001;199989999;300000 -59995;8334;199991666;300000 -59996;6667;199993333;300000 -59997;5000;199995000;300000 -59998;3333;199996667;300000 -59999;1667;199998333;300000 -60000;0;200000000;300000 -60000;0;200000000;300000 -100000;0;200000000;300000 \ No newline at end of file diff --git a/crates/payout_curve/src/snapshots/payout_curve__tests__payout_function_snapshot.snap.new b/crates/payout_curve/src/snapshots/payout_curve__tests__payout_function_snapshot.snap.new new file mode 100644 index 000000000..46e0ff697 --- /dev/null +++ b/crates/payout_curve/src/snapshots/payout_curve__tests__payout_function_snapshot.snap.new @@ -0,0 +1,4843 @@ +--- +source: crates/payout_curve/src/lib.rs +assertion_line: 611 +expression: payout_function +--- +[ + ( + PayoutPoint { + event_outcome: 0, + outcome_payout: 200300000, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 19999, + outcome_payout: 200300000, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 19999, + outcome_payout: 200300000, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20000, + outcome_payout: 198807463, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20000, + outcome_payout: 198807463, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20199, + outcome_payout: 198807463, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20199, + outcome_payout: 198807463, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20200, + outcome_payout: 195866502, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20200, + outcome_payout: 195866502, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20399, + outcome_payout: 195866502, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20399, + outcome_payout: 195866502, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20400, + outcome_payout: 192982927, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20400, + outcome_payout: 192982927, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20599, + outcome_payout: 192982927, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20599, + outcome_payout: 192982927, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20600, + outcome_payout: 190155072, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20600, + outcome_payout: 190155072, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20799, + outcome_payout: 190155072, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20799, + outcome_payout: 190155072, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20800, + outcome_payout: 187381340, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20800, + outcome_payout: 187381340, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 20999, + outcome_payout: 187381340, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 20999, + outcome_payout: 187381340, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21000, + outcome_payout: 184660190, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21000, + outcome_payout: 184660190, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21199, + outcome_payout: 184660190, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21199, + outcome_payout: 184660190, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21200, + outcome_payout: 181990141, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21200, + outcome_payout: 181990141, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21399, + outcome_payout: 181990141, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21399, + outcome_payout: 181990141, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21400, + outcome_payout: 179369767, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21400, + outcome_payout: 179369767, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21599, + outcome_payout: 179369767, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21599, + outcome_payout: 179369767, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21600, + outcome_payout: 176797696, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21600, + outcome_payout: 176797696, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21799, + outcome_payout: 176797696, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21799, + outcome_payout: 176797696, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21800, + outcome_payout: 174272603, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21800, + outcome_payout: 174272603, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 21999, + outcome_payout: 174272603, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 21999, + outcome_payout: 174272603, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22000, + outcome_payout: 171793213, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22000, + outcome_payout: 171793213, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22199, + outcome_payout: 171793213, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22199, + outcome_payout: 171793213, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22200, + outcome_payout: 169358296, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22200, + outcome_payout: 169358296, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22399, + outcome_payout: 169358296, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22399, + outcome_payout: 169358296, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22400, + outcome_payout: 166966667, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22400, + outcome_payout: 166966667, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22599, + outcome_payout: 166966667, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22599, + outcome_payout: 166966667, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22600, + outcome_payout: 164617181, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22600, + outcome_payout: 164617181, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22799, + outcome_payout: 164617181, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22799, + outcome_payout: 164617181, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22800, + outcome_payout: 162308734, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22800, + outcome_payout: 162308734, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 22999, + outcome_payout: 162308734, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 22999, + outcome_payout: 162308734, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23000, + outcome_payout: 160040260, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23000, + outcome_payout: 160040260, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23199, + outcome_payout: 160040260, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23199, + outcome_payout: 160040260, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23200, + outcome_payout: 157810730, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23200, + outcome_payout: 157810730, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23399, + outcome_payout: 157810730, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23399, + outcome_payout: 157810730, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23400, + outcome_payout: 155619149, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23400, + outcome_payout: 155619149, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23599, + outcome_payout: 155619149, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23599, + outcome_payout: 155619149, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23600, + outcome_payout: 153464557, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23600, + outcome_payout: 153464557, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23799, + outcome_payout: 153464557, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23799, + outcome_payout: 153464557, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23800, + outcome_payout: 151346025, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23800, + outcome_payout: 151346025, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 23999, + outcome_payout: 151346025, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 23999, + outcome_payout: 151346025, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24000, + outcome_payout: 149262656, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24000, + outcome_payout: 149262656, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24199, + outcome_payout: 149262656, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24199, + outcome_payout: 149262656, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24200, + outcome_payout: 147213580, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24200, + outcome_payout: 147213580, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24399, + outcome_payout: 147213580, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24399, + outcome_payout: 147213580, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24400, + outcome_payout: 145197959, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24400, + outcome_payout: 145197959, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24599, + outcome_payout: 145197959, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24599, + outcome_payout: 145197959, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24600, + outcome_payout: 143214980, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24600, + outcome_payout: 143214980, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24799, + outcome_payout: 143214980, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24799, + outcome_payout: 143214980, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24800, + outcome_payout: 141263855, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24800, + outcome_payout: 141263855, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 24999, + outcome_payout: 141263855, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 24999, + outcome_payout: 141263855, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25000, + outcome_payout: 139343825, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25000, + outcome_payout: 139343825, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25199, + outcome_payout: 139343825, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25199, + outcome_payout: 139343825, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25200, + outcome_payout: 137454150, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25200, + outcome_payout: 137454150, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25399, + outcome_payout: 137454150, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25399, + outcome_payout: 137454150, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25400, + outcome_payout: 135594118, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25400, + outcome_payout: 135594118, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25599, + outcome_payout: 135594118, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25599, + outcome_payout: 135594118, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25600, + outcome_payout: 133763035, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25600, + outcome_payout: 133763035, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25799, + outcome_payout: 133763035, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25799, + outcome_payout: 133763035, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25800, + outcome_payout: 131960232, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25800, + outcome_payout: 131960232, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 25999, + outcome_payout: 131960232, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 25999, + outcome_payout: 131960232, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26000, + outcome_payout: 130185057, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26000, + outcome_payout: 130185057, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26199, + outcome_payout: 130185057, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26199, + outcome_payout: 130185057, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26200, + outcome_payout: 128436882, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26200, + outcome_payout: 128436882, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26399, + outcome_payout: 128436882, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26399, + outcome_payout: 128436882, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26400, + outcome_payout: 126715094, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26400, + outcome_payout: 126715094, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26599, + outcome_payout: 126715094, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26599, + outcome_payout: 126715094, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26600, + outcome_payout: 125019101, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26600, + outcome_payout: 125019101, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26799, + outcome_payout: 125019101, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26799, + outcome_payout: 125019101, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26800, + outcome_payout: 123348327, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26800, + outcome_payout: 123348327, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 26999, + outcome_payout: 123348327, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 26999, + outcome_payout: 123348327, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27000, + outcome_payout: 121702214, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27000, + outcome_payout: 121702214, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27199, + outcome_payout: 121702214, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27199, + outcome_payout: 121702214, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27200, + outcome_payout: 120080220, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27200, + outcome_payout: 120080220, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27399, + outcome_payout: 120080220, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27399, + outcome_payout: 120080220, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27400, + outcome_payout: 118481818, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27400, + outcome_payout: 118481818, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27599, + outcome_payout: 118481818, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27599, + outcome_payout: 118481818, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27600, + outcome_payout: 116906498, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27600, + outcome_payout: 116906498, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27799, + outcome_payout: 116906498, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27799, + outcome_payout: 116906498, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27800, + outcome_payout: 115353763, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27800, + outcome_payout: 115353763, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 27999, + outcome_payout: 115353763, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 27999, + outcome_payout: 115353763, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28000, + outcome_payout: 113823132, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28000, + outcome_payout: 113823132, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28199, + outcome_payout: 113823132, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28199, + outcome_payout: 113823132, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28200, + outcome_payout: 112314134, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28200, + outcome_payout: 112314134, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28399, + outcome_payout: 112314134, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28399, + outcome_payout: 112314134, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28400, + outcome_payout: 110826316, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28400, + outcome_payout: 110826316, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28599, + outcome_payout: 110826316, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28599, + outcome_payout: 110826316, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28600, + outcome_payout: 109359233, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28600, + outcome_payout: 109359233, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28799, + outcome_payout: 109359233, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28799, + outcome_payout: 109359233, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28800, + outcome_payout: 107912457, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28800, + outcome_payout: 107912457, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 28999, + outcome_payout: 107912457, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 28999, + outcome_payout: 107912457, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29000, + outcome_payout: 106485567, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29000, + outcome_payout: 106485567, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29199, + outcome_payout: 106485567, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29199, + outcome_payout: 106485567, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29200, + outcome_payout: 105078157, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29200, + outcome_payout: 105078157, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29399, + outcome_payout: 105078157, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29399, + outcome_payout: 105078157, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29400, + outcome_payout: 103689831, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29400, + outcome_payout: 103689831, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29599, + outcome_payout: 103689831, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29599, + outcome_payout: 103689831, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29600, + outcome_payout: 102320202, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29600, + outcome_payout: 102320202, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29799, + outcome_payout: 102320202, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29799, + outcome_payout: 102320202, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29800, + outcome_payout: 100968896, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29800, + outcome_payout: 100968896, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 29999, + outcome_payout: 100968896, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 29999, + outcome_payout: 100968896, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30000, + outcome_payout: 99635548, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30000, + outcome_payout: 99635548, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30199, + outcome_payout: 99635548, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30199, + outcome_payout: 99635548, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30200, + outcome_payout: 98319802, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30200, + outcome_payout: 98319802, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30399, + outcome_payout: 98319802, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30399, + outcome_payout: 98319802, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30400, + outcome_payout: 97021311, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30400, + outcome_payout: 97021311, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30599, + outcome_payout: 97021311, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30599, + outcome_payout: 97021311, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30600, + outcome_payout: 95739739, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30600, + outcome_payout: 95739739, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30799, + outcome_payout: 95739739, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30799, + outcome_payout: 95739739, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30800, + outcome_payout: 94474757, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30800, + outcome_payout: 94474757, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 30999, + outcome_payout: 94474757, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 30999, + outcome_payout: 94474757, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31000, + outcome_payout: 93226045, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31000, + outcome_payout: 93226045, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31199, + outcome_payout: 93226045, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31199, + outcome_payout: 93226045, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31200, + outcome_payout: 91993291, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31200, + outcome_payout: 91993291, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31399, + outcome_payout: 91993291, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31399, + outcome_payout: 91993291, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31400, + outcome_payout: 90776190, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31400, + outcome_payout: 90776190, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31599, + outcome_payout: 90776190, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31599, + outcome_payout: 90776190, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31600, + outcome_payout: 89574448, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31600, + outcome_payout: 89574448, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31799, + outcome_payout: 89574448, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31799, + outcome_payout: 89574448, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31800, + outcome_payout: 88387774, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31800, + outcome_payout: 88387774, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 31999, + outcome_payout: 88387774, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 31999, + outcome_payout: 88387774, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32000, + outcome_payout: 87215888, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32000, + outcome_payout: 87215888, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32199, + outcome_payout: 87215888, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32199, + outcome_payout: 87215888, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32200, + outcome_payout: 86058514, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32200, + outcome_payout: 86058514, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32399, + outcome_payout: 86058514, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32399, + outcome_payout: 86058514, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32400, + outcome_payout: 84915385, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32400, + outcome_payout: 84915385, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32599, + outcome_payout: 84915385, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32599, + outcome_payout: 84915385, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32600, + outcome_payout: 83786239, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32600, + outcome_payout: 83786239, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32799, + outcome_payout: 83786239, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32799, + outcome_payout: 83786239, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32800, + outcome_payout: 82670821, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32800, + outcome_payout: 82670821, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 32999, + outcome_payout: 82670821, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 32999, + outcome_payout: 82670821, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33000, + outcome_payout: 81568882, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33000, + outcome_payout: 81568882, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33199, + outcome_payout: 81568882, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33199, + outcome_payout: 81568882, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33200, + outcome_payout: 80480180, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33200, + outcome_payout: 80480180, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33399, + outcome_payout: 80480180, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33399, + outcome_payout: 80480180, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33400, + outcome_payout: 79404478, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33400, + outcome_payout: 79404478, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33599, + outcome_payout: 79404478, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33599, + outcome_payout: 79404478, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33600, + outcome_payout: 78341543, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33600, + outcome_payout: 78341543, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33799, + outcome_payout: 78341543, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33799, + outcome_payout: 78341543, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33800, + outcome_payout: 77291150, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33800, + outcome_payout: 77291150, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 33999, + outcome_payout: 77291150, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 33999, + outcome_payout: 77291150, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34000, + outcome_payout: 76253079, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34000, + outcome_payout: 76253079, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34199, + outcome_payout: 76253079, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34199, + outcome_payout: 76253079, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34200, + outcome_payout: 75227114, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34200, + outcome_payout: 75227114, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34399, + outcome_payout: 75227114, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34399, + outcome_payout: 75227114, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34400, + outcome_payout: 74213043, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34400, + outcome_payout: 74213043, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34599, + outcome_payout: 74213043, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34599, + outcome_payout: 74213043, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34600, + outcome_payout: 73210663, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34600, + outcome_payout: 73210663, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34799, + outcome_payout: 73210663, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34799, + outcome_payout: 73210663, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34800, + outcome_payout: 72219771, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34800, + outcome_payout: 72219771, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 34999, + outcome_payout: 72219771, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 34999, + outcome_payout: 72219771, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35000, + outcome_payout: 71240171, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35000, + outcome_payout: 71240171, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35199, + outcome_payout: 71240171, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35199, + outcome_payout: 71240171, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35200, + outcome_payout: 70271671, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35200, + outcome_payout: 70271671, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35399, + outcome_payout: 70271671, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35399, + outcome_payout: 70271671, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35400, + outcome_payout: 69314085, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35400, + outcome_payout: 69314085, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35599, + outcome_payout: 69314085, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35599, + outcome_payout: 69314085, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35600, + outcome_payout: 68367227, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35600, + outcome_payout: 68367227, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35799, + outcome_payout: 68367227, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35799, + outcome_payout: 68367227, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35800, + outcome_payout: 67430919, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35800, + outcome_payout: 67430919, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 35999, + outcome_payout: 67430919, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 35999, + outcome_payout: 67430919, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36000, + outcome_payout: 66504986, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36000, + outcome_payout: 66504986, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36199, + outcome_payout: 66504986, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36199, + outcome_payout: 66504986, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36200, + outcome_payout: 65589256, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36200, + outcome_payout: 65589256, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36399, + outcome_payout: 65589256, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36399, + outcome_payout: 65589256, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36400, + outcome_payout: 64683562, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36400, + outcome_payout: 64683562, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36599, + outcome_payout: 64683562, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36599, + outcome_payout: 64683562, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36600, + outcome_payout: 63787738, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36600, + outcome_payout: 63787738, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36799, + outcome_payout: 63787738, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36799, + outcome_payout: 63787738, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36800, + outcome_payout: 62901626, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36800, + outcome_payout: 62901626, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 36999, + outcome_payout: 62901626, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 36999, + outcome_payout: 62901626, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37000, + outcome_payout: 62025067, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37000, + outcome_payout: 62025067, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37199, + outcome_payout: 62025067, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37199, + outcome_payout: 62025067, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37200, + outcome_payout: 61157909, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37200, + outcome_payout: 61157909, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37399, + outcome_payout: 61157909, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37399, + outcome_payout: 61157909, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37400, + outcome_payout: 60300000, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37400, + outcome_payout: 60300000, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37599, + outcome_payout: 60300000, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37599, + outcome_payout: 60300000, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37600, + outcome_payout: 59451194, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37600, + outcome_payout: 59451194, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37799, + outcome_payout: 59451194, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37799, + outcome_payout: 59451194, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37800, + outcome_payout: 58611346, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37800, + outcome_payout: 58611346, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 37999, + outcome_payout: 58611346, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 37999, + outcome_payout: 58611346, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38000, + outcome_payout: 57780315, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38000, + outcome_payout: 57780315, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38199, + outcome_payout: 57780315, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38199, + outcome_payout: 57780315, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38200, + outcome_payout: 56957963, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38200, + outcome_payout: 56957963, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38399, + outcome_payout: 56957963, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38399, + outcome_payout: 56957963, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38400, + outcome_payout: 56144156, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38400, + outcome_payout: 56144156, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38599, + outcome_payout: 56144156, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38599, + outcome_payout: 56144156, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38600, + outcome_payout: 55338760, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38600, + outcome_payout: 55338760, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38799, + outcome_payout: 55338760, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38799, + outcome_payout: 55338760, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38800, + outcome_payout: 54541645, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38800, + outcome_payout: 54541645, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 38999, + outcome_payout: 54541645, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 38999, + outcome_payout: 54541645, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39000, + outcome_payout: 53752685, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39000, + outcome_payout: 53752685, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39199, + outcome_payout: 53752685, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39199, + outcome_payout: 53752685, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39200, + outcome_payout: 52971756, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39200, + outcome_payout: 52971756, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39399, + outcome_payout: 52971756, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39399, + outcome_payout: 52971756, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39400, + outcome_payout: 52198734, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39400, + outcome_payout: 52198734, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39599, + outcome_payout: 52198734, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39599, + outcome_payout: 52198734, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39600, + outcome_payout: 51433501, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39600, + outcome_payout: 51433501, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39799, + outcome_payout: 51433501, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39799, + outcome_payout: 51433501, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39800, + outcome_payout: 50675940, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39800, + outcome_payout: 50675940, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 39999, + outcome_payout: 50675940, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 39999, + outcome_payout: 50675940, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40000, + outcome_payout: 49925935, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40000, + outcome_payout: 49925935, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40199, + outcome_payout: 49925935, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40199, + outcome_payout: 49925935, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40200, + outcome_payout: 49183375, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40200, + outcome_payout: 49183375, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40399, + outcome_payout: 49183375, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40399, + outcome_payout: 49183375, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40400, + outcome_payout: 48448148, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40400, + outcome_payout: 48448148, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40599, + outcome_payout: 48448148, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40599, + outcome_payout: 48448148, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40600, + outcome_payout: 47720147, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40600, + outcome_payout: 47720147, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40799, + outcome_payout: 47720147, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40799, + outcome_payout: 47720147, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40800, + outcome_payout: 46999267, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40800, + outcome_payout: 46999267, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 40999, + outcome_payout: 46999267, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 40999, + outcome_payout: 46999267, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41000, + outcome_payout: 46285401, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41000, + outcome_payout: 46285401, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41199, + outcome_payout: 46285401, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41199, + outcome_payout: 46285401, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41200, + outcome_payout: 45578450, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41200, + outcome_payout: 45578450, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41399, + outcome_payout: 45578450, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41399, + outcome_payout: 45578450, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41400, + outcome_payout: 44878313, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41400, + outcome_payout: 44878313, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41599, + outcome_payout: 44878313, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41599, + outcome_payout: 44878313, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41600, + outcome_payout: 44184892, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41600, + outcome_payout: 44184892, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41799, + outcome_payout: 44184892, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41799, + outcome_payout: 44184892, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41800, + outcome_payout: 43498091, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41800, + outcome_payout: 43498091, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 41999, + outcome_payout: 43498091, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 41999, + outcome_payout: 43498091, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42000, + outcome_payout: 42817815, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42000, + outcome_payout: 42817815, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42199, + outcome_payout: 42817815, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42199, + outcome_payout: 42817815, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42200, + outcome_payout: 42143972, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42200, + outcome_payout: 42143972, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42399, + outcome_payout: 42143972, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42399, + outcome_payout: 42143972, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42400, + outcome_payout: 41476471, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42400, + outcome_payout: 41476471, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42599, + outcome_payout: 41476471, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42599, + outcome_payout: 41476471, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42600, + outcome_payout: 40815222, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42600, + outcome_payout: 40815222, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42799, + outcome_payout: 40815222, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42799, + outcome_payout: 40815222, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42800, + outcome_payout: 40160140, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42800, + outcome_payout: 40160140, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 42999, + outcome_payout: 40160140, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 42999, + outcome_payout: 40160140, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43000, + outcome_payout: 39511137, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43000, + outcome_payout: 39511137, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43199, + outcome_payout: 39511137, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43199, + outcome_payout: 39511137, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43200, + outcome_payout: 38868129, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43200, + outcome_payout: 38868129, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43399, + outcome_payout: 38868129, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43399, + outcome_payout: 38868129, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43400, + outcome_payout: 38231034, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43400, + outcome_payout: 38231034, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43599, + outcome_payout: 38231034, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43599, + outcome_payout: 38231034, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43600, + outcome_payout: 37599771, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43600, + outcome_payout: 37599771, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43799, + outcome_payout: 37599771, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43799, + outcome_payout: 37599771, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43800, + outcome_payout: 36974260, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43800, + outcome_payout: 36974260, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 43999, + outcome_payout: 36974260, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 43999, + outcome_payout: 36974260, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44000, + outcome_payout: 36354422, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44000, + outcome_payout: 36354422, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44199, + outcome_payout: 36354422, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44199, + outcome_payout: 36354422, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44200, + outcome_payout: 35740181, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44200, + outcome_payout: 35740181, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44399, + outcome_payout: 35740181, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44399, + outcome_payout: 35740181, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44400, + outcome_payout: 35131461, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44400, + outcome_payout: 35131461, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44599, + outcome_payout: 35131461, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44599, + outcome_payout: 35131461, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44600, + outcome_payout: 34528188, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44600, + outcome_payout: 34528188, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44799, + outcome_payout: 34528188, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44799, + outcome_payout: 34528188, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44800, + outcome_payout: 33930290, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44800, + outcome_payout: 33930290, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 44999, + outcome_payout: 33930290, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 44999, + outcome_payout: 33930290, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45000, + outcome_payout: 33337694, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45000, + outcome_payout: 33337694, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45199, + outcome_payout: 33337694, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45199, + outcome_payout: 33337694, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45200, + outcome_payout: 32750331, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45200, + outcome_payout: 32750331, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45399, + outcome_payout: 32750331, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45399, + outcome_payout: 32750331, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45400, + outcome_payout: 32168132, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45400, + outcome_payout: 32168132, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45599, + outcome_payout: 32168132, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45599, + outcome_payout: 32168132, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45600, + outcome_payout: 31591028, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45600, + outcome_payout: 31591028, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45799, + outcome_payout: 31591028, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45799, + outcome_payout: 31591028, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45800, + outcome_payout: 31018954, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45800, + outcome_payout: 31018954, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 45999, + outcome_payout: 31018954, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 45999, + outcome_payout: 31018954, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46000, + outcome_payout: 30451844, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46000, + outcome_payout: 30451844, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46199, + outcome_payout: 30451844, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46199, + outcome_payout: 30451844, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46200, + outcome_payout: 29889633, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46200, + outcome_payout: 29889633, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46399, + outcome_payout: 29889633, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46399, + outcome_payout: 29889633, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46400, + outcome_payout: 29332258, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46400, + outcome_payout: 29332258, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46599, + outcome_payout: 29332258, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46599, + outcome_payout: 29332258, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46600, + outcome_payout: 28779657, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46600, + outcome_payout: 28779657, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46799, + outcome_payout: 28779657, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46799, + outcome_payout: 28779657, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46800, + outcome_payout: 28231770, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46800, + outcome_payout: 28231770, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 46999, + outcome_payout: 28231770, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 46999, + outcome_payout: 28231770, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47000, + outcome_payout: 27688535, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47000, + outcome_payout: 27688535, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47199, + outcome_payout: 27688535, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47199, + outcome_payout: 27688535, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47200, + outcome_payout: 27149894, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47200, + outcome_payout: 27149894, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47399, + outcome_payout: 27149894, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47399, + outcome_payout: 27149894, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47400, + outcome_payout: 26615789, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47400, + outcome_payout: 26615789, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47599, + outcome_payout: 26615789, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47599, + outcome_payout: 26615789, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47600, + outcome_payout: 26086164, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47600, + outcome_payout: 26086164, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47799, + outcome_payout: 26086164, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47799, + outcome_payout: 26086164, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47800, + outcome_payout: 25560960, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47800, + outcome_payout: 25560960, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 47999, + outcome_payout: 25560960, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 47999, + outcome_payout: 25560960, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48000, + outcome_payout: 25040125, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48000, + outcome_payout: 25040125, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48199, + outcome_payout: 25040125, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48199, + outcome_payout: 25040125, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48200, + outcome_payout: 24523602, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48200, + outcome_payout: 24523602, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48399, + outcome_payout: 24523602, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48399, + outcome_payout: 24523602, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48400, + outcome_payout: 24011340, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48400, + outcome_payout: 24011340, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48599, + outcome_payout: 24011340, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48599, + outcome_payout: 24011340, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48600, + outcome_payout: 23503285, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48600, + outcome_payout: 23503285, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48799, + outcome_payout: 23503285, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48799, + outcome_payout: 23503285, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48800, + outcome_payout: 22999387, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48800, + outcome_payout: 22999387, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 48999, + outcome_payout: 22999387, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 48999, + outcome_payout: 22999387, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49000, + outcome_payout: 22499593, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49000, + outcome_payout: 22499593, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49199, + outcome_payout: 22499593, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49199, + outcome_payout: 22499593, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49200, + outcome_payout: 22003854, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49200, + outcome_payout: 22003854, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49399, + outcome_payout: 22003854, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49399, + outcome_payout: 22003854, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49400, + outcome_payout: 21512121, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49400, + outcome_payout: 21512121, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49599, + outcome_payout: 21512121, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49599, + outcome_payout: 21512121, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49600, + outcome_payout: 21024346, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49600, + outcome_payout: 21024346, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49799, + outcome_payout: 21024346, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49799, + outcome_payout: 21024346, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49800, + outcome_payout: 20540481, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49800, + outcome_payout: 20540481, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 49999, + outcome_payout: 20540481, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 49999, + outcome_payout: 20540481, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50000, + outcome_payout: 20060479, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50000, + outcome_payout: 20060479, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50199, + outcome_payout: 20060479, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50199, + outcome_payout: 20060479, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50200, + outcome_payout: 19584294, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50200, + outcome_payout: 19584294, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50399, + outcome_payout: 19584294, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50399, + outcome_payout: 19584294, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50400, + outcome_payout: 19111881, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50400, + outcome_payout: 19111881, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50599, + outcome_payout: 19111881, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50599, + outcome_payout: 19111881, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50600, + outcome_payout: 18643195, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50600, + outcome_payout: 18643195, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50799, + outcome_payout: 18643195, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50799, + outcome_payout: 18643195, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50800, + outcome_payout: 18178193, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50800, + outcome_payout: 18178193, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 50999, + outcome_payout: 18178193, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 50999, + outcome_payout: 18178193, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51000, + outcome_payout: 17716830, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51000, + outcome_payout: 17716830, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51199, + outcome_payout: 17716830, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51199, + outcome_payout: 17716830, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51200, + outcome_payout: 17259064, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51200, + outcome_payout: 17259064, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51399, + outcome_payout: 17259064, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51399, + outcome_payout: 17259064, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51400, + outcome_payout: 16804854, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51400, + outcome_payout: 16804854, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51599, + outcome_payout: 16804854, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51599, + outcome_payout: 16804854, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51600, + outcome_payout: 16354159, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51600, + outcome_payout: 16354159, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51799, + outcome_payout: 16354159, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51799, + outcome_payout: 16354159, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51800, + outcome_payout: 15906936, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51800, + outcome_payout: 15906936, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 51999, + outcome_payout: 15906936, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 51999, + outcome_payout: 15906936, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52000, + outcome_payout: 15463148, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52000, + outcome_payout: 15463148, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52199, + outcome_payout: 15463148, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52199, + outcome_payout: 15463148, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52200, + outcome_payout: 15022753, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52200, + outcome_payout: 15022753, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52399, + outcome_payout: 15022753, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52399, + outcome_payout: 15022753, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52400, + outcome_payout: 14585714, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52400, + outcome_payout: 14585714, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52599, + outcome_payout: 14585714, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52599, + outcome_payout: 14585714, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52600, + outcome_payout: 14151992, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52600, + outcome_payout: 14151992, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52799, + outcome_payout: 14151992, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52799, + outcome_payout: 14151992, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52800, + outcome_payout: 13721550, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52800, + outcome_payout: 13721550, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 52999, + outcome_payout: 13721550, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 52999, + outcome_payout: 13721550, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53000, + outcome_payout: 13294350, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53000, + outcome_payout: 13294350, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53199, + outcome_payout: 13294350, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53199, + outcome_payout: 13294350, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53200, + outcome_payout: 12870356, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53200, + outcome_payout: 12870356, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53399, + outcome_payout: 12870356, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53399, + outcome_payout: 12870356, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53400, + outcome_payout: 12449533, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53400, + outcome_payout: 12449533, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53599, + outcome_payout: 12449533, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53599, + outcome_payout: 12449533, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53600, + outcome_payout: 12031844, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53600, + outcome_payout: 12031844, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53799, + outcome_payout: 12031844, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53799, + outcome_payout: 12031844, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53800, + outcome_payout: 11617254, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53800, + outcome_payout: 11617254, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 53999, + outcome_payout: 11617254, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 53999, + outcome_payout: 11617254, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54000, + outcome_payout: 11205730, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54000, + outcome_payout: 11205730, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54199, + outcome_payout: 11205730, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54199, + outcome_payout: 11205730, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54200, + outcome_payout: 10797238, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54200, + outcome_payout: 10797238, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54399, + outcome_payout: 10797238, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54399, + outcome_payout: 10797238, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54400, + outcome_payout: 10391743, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54400, + outcome_payout: 10391743, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54599, + outcome_payout: 10391743, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54599, + outcome_payout: 10391743, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54600, + outcome_payout: 9989214, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54600, + outcome_payout: 9989214, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54799, + outcome_payout: 9989214, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54799, + outcome_payout: 9989214, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54800, + outcome_payout: 9589617, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54800, + outcome_payout: 9589617, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 54999, + outcome_payout: 9589617, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 54999, + outcome_payout: 9589617, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55000, + outcome_payout: 9192922, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55000, + outcome_payout: 9192922, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55199, + outcome_payout: 9192922, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55199, + outcome_payout: 9192922, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55200, + outcome_payout: 8799096, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55200, + outcome_payout: 8799096, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55399, + outcome_payout: 8799096, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55399, + outcome_payout: 8799096, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55400, + outcome_payout: 8408108, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55400, + outcome_payout: 8408108, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55599, + outcome_payout: 8408108, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55599, + outcome_payout: 8408108, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55600, + outcome_payout: 8019928, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55600, + outcome_payout: 8019928, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55799, + outcome_payout: 8019928, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55799, + outcome_payout: 8019928, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55800, + outcome_payout: 7634526, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55800, + outcome_payout: 7634526, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 55999, + outcome_payout: 7634526, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 55999, + outcome_payout: 7634526, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56000, + outcome_payout: 7251872, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56000, + outcome_payout: 7251872, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56199, + outcome_payout: 7251872, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56199, + outcome_payout: 7251872, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56200, + outcome_payout: 6871936, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56200, + outcome_payout: 6871936, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56399, + outcome_payout: 6871936, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56399, + outcome_payout: 6871936, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56400, + outcome_payout: 6494690, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56400, + outcome_payout: 6494690, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56599, + outcome_payout: 6494690, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56599, + outcome_payout: 6494690, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56600, + outcome_payout: 6120106, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56600, + outcome_payout: 6120106, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56799, + outcome_payout: 6120106, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56799, + outcome_payout: 6120106, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56800, + outcome_payout: 5748155, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56800, + outcome_payout: 5748155, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 56999, + outcome_payout: 5748155, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 56999, + outcome_payout: 5748155, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57000, + outcome_payout: 5378809, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57000, + outcome_payout: 5378809, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57199, + outcome_payout: 5378809, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57199, + outcome_payout: 5378809, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57200, + outcome_payout: 5012042, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57200, + outcome_payout: 5012042, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57399, + outcome_payout: 5012042, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57399, + outcome_payout: 5012042, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57400, + outcome_payout: 4647826, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57400, + outcome_payout: 4647826, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57599, + outcome_payout: 4647826, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57599, + outcome_payout: 4647826, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57600, + outcome_payout: 4286135, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57600, + outcome_payout: 4286135, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57799, + outcome_payout: 4286135, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57799, + outcome_payout: 4286135, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57800, + outcome_payout: 3926943, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57800, + outcome_payout: 3926943, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 57999, + outcome_payout: 3926943, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 57999, + outcome_payout: 3926943, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58000, + outcome_payout: 3570224, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58000, + outcome_payout: 3570224, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58199, + outcome_payout: 3570224, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58199, + outcome_payout: 3570224, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58200, + outcome_payout: 3215952, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58200, + outcome_payout: 3215952, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58399, + outcome_payout: 3215952, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58399, + outcome_payout: 3215952, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58400, + outcome_payout: 2864103, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58400, + outcome_payout: 2864103, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58599, + outcome_payout: 2864103, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58599, + outcome_payout: 2864103, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58600, + outcome_payout: 2514651, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58600, + outcome_payout: 2514651, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58799, + outcome_payout: 2514651, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58799, + outcome_payout: 2514651, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58800, + outcome_payout: 2167572, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58800, + outcome_payout: 2167572, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 58999, + outcome_payout: 2167572, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 58999, + outcome_payout: 2167572, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59000, + outcome_payout: 1822843, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59000, + outcome_payout: 1822843, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59199, + outcome_payout: 1822843, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59199, + outcome_payout: 1822843, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59200, + outcome_payout: 1480438, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59200, + outcome_payout: 1480438, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59399, + outcome_payout: 1480438, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59399, + outcome_payout: 1480438, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59400, + outcome_payout: 1140336, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59400, + outcome_payout: 1140336, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59599, + outcome_payout: 1140336, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59599, + outcome_payout: 1140336, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59600, + outcome_payout: 802513, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59600, + outcome_payout: 802513, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59799, + outcome_payout: 802513, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59799, + outcome_payout: 802513, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59800, + outcome_payout: 466945, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59800, + outcome_payout: 466945, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 59999, + outcome_payout: 466945, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 59999, + outcome_payout: 466945, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 60000, + outcome_payout: 300000, + extra_precision: 0, + }, + ), + ( + PayoutPoint { + event_outcome: 60000, + outcome_payout: 300000, + extra_precision: 0, + }, + PayoutPoint { + event_outcome: 1048575, + outcome_payout: 300000, + extra_precision: 0, + }, + ), +] diff --git a/crates/payout_curve/tests/integration_proptests.rs b/crates/payout_curve/tests/integration_proptests.rs index b86040830..1d42b1d5d 100644 --- a/crates/payout_curve/tests/integration_proptests.rs +++ b/crates/payout_curve/tests/integration_proptests.rs @@ -11,10 +11,8 @@ use dlc_manager::payout_curve::RoundingIntervals; use payout_curve::build_inverse_payout_function; use payout_curve::PartyParams; use payout_curve::PriceParams; -use payout_curve::ROUNDING_PERCENT; use proptest::prelude::*; use rust_decimal::prelude::FromPrimitive; -use rust_decimal::prelude::ToPrimitive; use rust_decimal::Decimal; use rust_decimal_macros::dec; use std::fs::File; @@ -300,24 +298,13 @@ fn computed_payout_curve( let total_collateral = party_params_coordinator.total_collateral() + party_params_trader.total_collateral(); - let total_margin = party_params_coordinator.margin() + party_params_trader.margin(); let _ = payout_function.to_range_payouts( total_collateral, &RoundingIntervals { - intervals: vec![ - RoundingInterval { - begin_interval: 0, - rounding_mod: 1, - }, - RoundingInterval { - begin_interval: long_liquidation_price.to_u64().unwrap(), - rounding_mod: (total_margin as f32 * ROUNDING_PERCENT) as u64, - }, - RoundingInterval { - begin_interval: short_liquidation_price.to_u64().unwrap(), - rounding_mod: 1, - }, - ], + intervals: vec![RoundingInterval { + begin_interval: 0, + rounding_mod: 1, + }], }, )?;