diff --git a/CMakeLists.txt b/CMakeLists.txt index ad4b6fa..22d5307 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,6 +76,9 @@ add_library(example_gpt2 STATIC ) target_link_libraries(example_gpt2 infini_train) +add_executable(train_experiment example/gpt2/train_experiment.cc) +target_link_libraries(train_experiment example_gpt2 infini_train) + function(build_test files) # Non-recursive glob for skip failed tests file(GLOB TEST_SOURCES ${files}) @@ -102,4 +105,4 @@ if(BUILD_TEST) build_test(test/optimizer/test_adam_cuda.cc) endif() endif() -endif() \ No newline at end of file +endif() diff --git a/Makefile b/Makefile index c5a12a8..6f6c3cc 100644 --- a/Makefile +++ b/Makefile @@ -16,3 +16,6 @@ clean: test-cpp: @echo cd build/$(TYPE) && make test + +train-experiment: build + ./build/$(TYPE)/train_experiment $(ARGS) diff --git a/README.md b/README.md index fc57b11..2ce5445 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,11 @@ [训练营作业介绍文档](docs/训练营作业介绍.md) -[训练营作业报告模版](docs/TinyInfiniTrain%20作业报告.md) \ No newline at end of file +[训练营作业报告模版](docs/TinyInfiniTrain%20作业报告.md) + +## 作业交付 + +- 六项作业实现及原有 8 个公开测试均已完成,测试文件未修改。 +- [完整作业报告](docs/TinyInfiniTrain%20作业报告.md) +- [A100 完整训练指标](docs/experiments/a100-full-seed1337/summary.json) +- [A100 学习率对比](docs/experiments/a100-lr-sweep-seed1337/comparison.csv) diff --git "a/docs/TinyInfiniTrain \344\275\234\344\270\232\346\212\245\345\221\212.md" "b/docs/TinyInfiniTrain \344\275\234\344\270\232\346\212\245\345\221\212.md" index bc23852..50fc981 100644 --- "a/docs/TinyInfiniTrain \344\275\234\344\270\232\346\212\245\345\221\212.md" +++ "b/docs/TinyInfiniTrain \344\275\234\344\270\232\346\212\245\345\221\212.md" @@ -1,312 +1,372 @@ -# TinyInfiniTrain 作业报告 - -## 一、test 通过截图 - -## 二、作业步骤 - -> 将代码填入下面代码块中指定位置,并详细描述完成该作业的解决思路和遇到的问题。 - -### 作业一:autograd机制调用Neg kernel的实现 - -难度:⭐ - -对应测例:`TEST(ElementwiseTest, NegForward)`,`TEST(ElementwiseTest, NegBackward)` - -需要实现的代码块位置:`infini_train/src/autograd/elementwise.cc` - -```c++ -std::vector> Neg::Forward(const std::vector> &input_tensors) { - // =================================== 作业 =================================== - // TODO:通过Dispatcher获取设备专属kernel,对输入张量进行取反操作 - // HINT: 依赖test_dispatcher,kernel实现已给出 - // =================================== 作业 =================================== -} - -std::vector> Neg::Backward(const std::vector> &grad_outputs) { - // =================================== 作业 =================================== - // TODO:通过Dispatcher获取设备专属的反向传播kernel,计算梯度 - // HINT: 依赖test_dispatcher,kernel实现已给出 - // =================================== 作业 =================================== -} -``` - -#### 解决思路 - - - -#### 遇到问题 - - - -### 作业二:实现矩阵乘法 - -难度:⭐⭐ - -#### CPU实现 - -对应测例:`TEST(MatmulTest, BasicMatrixMultiply)`,`TEST(MatmulTest, BatchedMatrixMultiply)`, `TEST(MatmulTest, BackwardPass)` - -需要实现的代码块位置:`infini_train/src/kernels/cpu/linear.cc` - -```c++ - std::shared_ptr MatmulForward(const std::shared_ptr &input, const std::shared_ptr &other) { - // =================================== 作业 =================================== - // TODO:实现CPU上的矩阵乘法前向计算 - // REF: - // =================================== 作业 =================================== - } - - std::tuple, std::shared_ptr> - MatmulBackward(const std::shared_ptr &input, const std::shared_ptr &other, - const std::shared_ptr &grad_output) { - // =================================== 作业 =================================== - // TODO:实现CPU上的矩阵乘法反向传播 - // REF: - // =================================== 作业 =================================== - } -``` - -#### CUDA实现 - -对应测例:`TEST(MatmulTest, BasicMatrixMultiplyCuda)`,`TEST(MatmulTest, BatchedMatrixMultiplyCuda)`,`TEST(MatmulTest, BackwardPassCuda)` - -需要实现的代码块位置:`infini_train/src/kernels/cuda/linear.cu` - -```c++ - std::shared_ptr MatmulForward(const std::shared_ptr &input, const std::shared_ptr &other) { - // =================================== 作业 =================================== - // TODO:实现CUDA上的矩阵乘法前向计算 - // REF: - // =================================== 作业 =================================== - } - - std::tuple, std::shared_ptr> - MatmulBackward(const std::shared_ptr &input, const std::shared_ptr &other, - const std::shared_ptr &grad_output) { - // =================================== 作业 =================================== - // TODO:实现CUDA上的矩阵乘法反向传播 - // REF: - // =================================== 作业 =================================== - } -``` - -#### 解决思路 - - - -#### 遇到问题 - - - -### 作业三:实现Adam优化器 - -难度:⭐ - -#### CPU实现 - -对应测例:`TEST(AdamOptimizerTest, BasicParameterUpdate)`,`TEST(AdamOptimizerTest, MomentumAccumulation)` - -代码位置:infini_train/src/kernels/cpu/accumulate_grad.cc - -```c++ -void AdamAccumulateGrad(const std::shared_ptr &grad, const std::shared_ptr ¶m, - const std::shared_ptr &m, const std::shared_ptr &v, float learning_rate, - float beta1, float beta2, float eps, int64_t t) { - // =================================== 作业 =================================== - // TODO:实现Adam优化器的梯度累积和参数更新 - // REF: - // =================================== 作业 =================================== -} -``` - -#### CUDA实现 - -对应测例:`TEST(AdamOptimizerTest, BasicParameterUpdateCuda)`,`TEST(AdamOptimizerTest, MomentumAccumulationCuda)` - -代码位置:infini_train/src/kernels/cuda/accumulate_grad.cu - -```c++ -void AdamAccumulateGrad(const std::shared_ptr &grad, const std::shared_ptr ¶m, - const std::shared_ptr &m, const std::shared_ptr &v, float learning_rate, - float beta1, float beta2, float eps, int64_t t) { - // =================================== 作业 =================================== - // TODO:实现Adam优化器的梯度累积和参数更新 - // REF: - // =================================== 作业 =================================== -} -``` - -#### 解决思路 - - - -#### 遇到问题 - - - -### 作业四:实现Tensor基础操作 - -#### 实现Tensor的Flatten操作 - -难度:⭐ - -对应测例:`TEST(TensorTransformTest, Flatten2DTo1D)`,`TEST(TensorTransformTest, FlattenWithRange) `,`TEST(TensorTransformTest, FlattenNonContiguous)` - -代码位置:infini_train/src/tensor.cc - -```c++ -std::shared_ptr Tensor::Flatten(int64_t start, int64_t end) { - // =================================== 作业 =================================== - // TODO:实现张量扁平化操作,将指定维度范围[start, end]内的所有维度合并为一个维度 - // HINT: - // =================================== 作业 =================================== -} -``` - -#### 实现Tensor的反向传播机制 - -难度:⭐ - -对应测例:`TEST(TensorAutogradTest, BackwardComputesGradient)`,`TEST(TensorAutogradTest, BackwardWithMultipleOutputs)` - -代码位置:infini_train/src/tensor.cc - -```c++ -void Tensor::Backward(std::shared_ptr gradient, bool retain_graph, bool create_graph) const { - // =================================== 作业 =================================== - // TODO:实现自动微分反向传播 - // 功能描述:1. 计算当前张量对叶子节点的梯度 2. 支持多输出场景的梯度累加 - // HINT: - // =================================== 作业 =================================== -} -``` - -#### 解决思路 - - - -#### 遇到问题 - - - -### 作业五 注册算子kernel的实现 - -难度:⭐⭐⭐ - -对应测例:`TEST(DispatcherTest, RegisterAndGetKernel)`,`TEST(DispatcherTest, DuplicateRegistration)`,`TEST(DispatcherTest, GetNonexistentKernel)` - -代码位置:infini_train/include/dispatcher.h - -```c++ -template RetT Call(ArgsT... args) const { - // =================================== 作业 =================================== - // TODO:实现通用kernel调用接口 - // 功能描述:将存储的函数指针转换为指定类型并调用 - // HINT: - // =================================== 作业 =================================== -} - -template void Register(const KeyT &key, FuncT &&kernel) { - // =================================== 作业 =================================== - // TODO:实现kernel注册机制 - // 功能描述:将kernel函数与设备类型、名称绑定 - // =================================== 作业 =================================== -} - -#define REGISTER_KERNEL(device, kernel_name, kernel_func) \ - // =================================== 作业 =================================== - // TODO:实现自动注册宏 - // 功能描述:在全局静态区注册kernel,避免显式初始化代码 - // =================================== 作业 =================================== -``` - -#### 解决思路 - - - -#### 遇到问题 - - - -### 作业六:实现GPT-2整体训练 - -难度:⭐⭐⭐⭐ - -对应测例:`TEST_F(GPT2TrainingTest, LogitsConsistency)` - -#### 训练过程logits对比 - -完成以上所有作业,补齐训练框架的所有实现,理论上`TEST_F(GPT2TrainingTest, LogitsConsistency)`可以通过,在用例中判断比较预置的值和单步正向传播计算结果是否在误差允许范围内相等。 - -#### 数据读取实现 - -代码位置:example/common/tiny_shakespeare_dataset.cc - -```c++ -TinyShakespeareFile ReadTinyShakespeareFile(const std::string &path, size_t sequence_length) { - /* =================================== 作业 =================================== - TODO:实现二进制数据集文件解析 - 文件格式说明: - ---------------------------------------------------------------------------------- - | HEADER (1024 bytes) | DATA (tokens) | - | magic(4B) | version(4B) | num_toks(4B) | reserved(1012B) | token数据 | - ---------------------------------------------------------------------------------- - =================================== 作业 =================================== */ -} - -TinyShakespeareDataset::TinyShakespeareDataset(const std::string &filepath, size_t sequence_length) { - // =================================== 作业 =================================== - // TODO:初始化数据集实例 - // HINT: 调用ReadTinyShakespeareFile加载数据文件 - // =================================== 作业 =================================== -} -``` - -#### Tokenizer功能实现 - -代码位置:example/common/tokenizer.cc - -```c++ -Tokenizer::Tokenizer(const std::string &filepath) { - /* ===================================== 作业 ===================================== - TODO:实现Tokenizer二进制文件加载 - - 文件格式说明: - ---------------------------------------------------------------------------------- - | HEADER (1024 bytes) | VOCAB TABLE | - | magic(4B) | version(4B) | vocab_size(4B) | reserved(1012B) | token词表数据 | - ---------------------------------------------------------------------------------- - ===================================== 作业 ===================================== */ -} -``` - -```c++ -std::string Tokenizer::Decode(uint32_t token_id) const { - /* ===================================== 作业 ===================================== - TODO:实现token_id到文本的转换 - 功能描述:根据token_id返回对应的文本片段 - ===================================== 作业 ===================================== */ -} -``` - -```c++ -void Tokenizer::GenerateText(infini_train::nn::Module &model, uint32_t batch_size, uint32_t sequence_length, - uint32_t text_length, Device device) const { - /* ...原代码... */ - LOG(INFO) << "start generate text:"; - for (int t = prompt_len; t < text_length; t++) { - /* ===================================== 作业 ===================================== - TODO:实现单步文本生成逻辑 - HINT:调用model.Forward推理获取logits,根据推理结果进行随机采样,调用Decode获取文本结果 - ===================================== 作业 ===================================== */ - } - std::cout << std::endl; -} -``` - -#### 解决思路 - - - -#### 遇到问题 - +# TinyInfiniTrain 作业报告 + +## 提交说明 + +训练营提交页面只需要填写个人 fork 仓库地址和完成分支的最新 commit 链接,PR 与附件均留空。本仓库交付内容包括六项作业实现、未修改测试文件的公开测试结果、A100 完整数据训练实验,以及 loss、perplexity、生成文本、吞吐和显存指标。训练 checkpoint 体积较大,不纳入 Git 提交;仓库内保留足以复核结论的 CSV、JSON、曲线和固定 prompt 生成文本。 + +## 一、提交与测试验证 + +本次作业在提交分支的最新 commit 上完成最终验收。测试文件未作任何修改,以下结果均来自原有公开测试。 + +| 项目 | 验证环境 / 结果 | +| --- | --- | +| 编译器与 CUDA | GCC 13.4 / CUDA 12.6 | +| GPU | NVIDIA A100-SXM4-40GB | +| 构建 | complete | +| 7 个定向测例 | 7/7,100%,6.32 s | +| GPT-2 端到端测例 | `test_gpt2` 1/1,52.51 s | +| 全部公开测试 | 8/8 通过 | + +### GPT-2 直接运行证据 + +为保留 `ctest` 汇总之外的端到端证据,在 NVIDIA A100-SXM4-40GB 上直接运行了 +`test_gpt2`。输出包含固定随机种子的生成文本、100 个采样 logits 校验通过、GoogleTest PASS 和退出码 0。 + +本次直接运行耗时 52.611 s,生成文本开头为: + +```text +The meaning of life is that it is continuous and play that might last. +Too little quickening. Art and tragedy and psychedelia, especially what I +call herws, don't emit a kind of absolutism and admiration for those lives. +``` + +数值验收输出为 `Logits validation passed with 100 samples`。测试中的比较阈值为绝对误差 +`1e-3`;这证明当前短程训练轨迹与预置参考 logits 一致,但不等价于完整数据集收敛实验。 + +终端验收摘要如下(不以虚构截图代替日志): + +```text +revision: submission branch latest commit +environment: GCC 13.4, CUDA 12.6, NVIDIA A100-SXM4-40GB +build: complete +directed tests: 7/7 passed (100%), 6.32 s +test_gpt2: 1/1 passed, 52.51 s +public tests: 8/8 passed +``` + +### 评审快速索引 + +| 作业 | 主要实现文件 | 对应公开测例 | 验收状态 | +| --- | --- | --- | --- | +| Neg autograd | `infini_train/src/autograd/elementwise.cc` | `NegForward`、`NegBackward` | 通过 | +| CPU/CUDA MatMul | `infini_train/src/kernels/{cpu,cuda}/linear.*` | CPU/CUDA basic、batched、backward | 通过 | +| CPU/CUDA Adam | `infini_train/src/kernels/{cpu,cuda}/accumulate_grad.*` | CPU/CUDA update、momentum | 通过 | +| Tensor Flatten/Backward | `infini_train/src/tensor.cc` | 3 个 Flatten、2 个 Backward | 通过 | +| Kernel Dispatcher | `infini_train/include/dispatcher.h` | register、duplicate、missing | 通过 | +| GPT-2 数据与生成 | `example/common/{tiny_shakespeare_dataset,tokenizer}.cc` | `LogitsConsistency` | 通过 | + +测试文件与 `.github` 工作流相对官方基线均无改动。报告中的“通过”指原测试目标返回成功;额外的完整训练实验单列在第四节,不把 11-step 的 `test_gpt2` 误写为模型收敛。 + +## 二、六项作业实现 + +### 1. 自动微分 Neg 算子 + +**实现位置**:`infini_train/src/autograd/elementwise.cc` + +**对应测例**:`ElementwiseTest.NegForward`、`ElementwiseTest.NegBackward` + +**核心思路**:`Neg::Forward` 与 `Neg::Backward` 均通过统一 Dispatcher 按 Tensor 所在设备选择 CPU/CUDA kernel,避免在自动微分层直接分支实现设备逻辑。前向计算 `y=-x`,反向传播 `dx=-dy`。 + +**关键代码/公式**: + +```text +y = -x +dx = dy * dy/dx = -dy +``` + +前向调用注册名 `NegForward`,反向调用 `NegBackward`,并以类型安全的 `Call` 接口传入 Tensor 参数。 + +**边界校验**:前向严格要求一个输入,反向严格要求一个输出梯度;设备类型来自实际 Tensor,由 Dispatcher 负责匹配已注册 kernel,缺失注册时直接报错而非静默回退。 + +**执行流程**:`Tensor::Neg()` 创建 `autograd::Neg`,`Function::Apply` 调用 `Forward` 建图;`Forward` 只负责按设备找到 `NegForward`,数学计算留在 CPU/CUDA kernel。反向阶段直接按 `grad_output` 的设备调用 `NegBackward`。由于 `d(-x)/dx=-1` 与前向输入值无关,Neg 不需要把输入保存到 context。 + +**实现中解决的问题**:不能在 `Forward` 内再次调用 `Apply`,否则会形成 `Apply -> Forward -> Apply` 的递归。反向也不能照搬 `Reciprocal` 去读取 `saved_tensors_`,因为 Neg 的测例允许独立调用 `Backward`,而且该导数本来不依赖输入。因此最终实现保持 autograd 层只做路由,不重复 kernel 数学。 + +**验证结论**:前向验证逐元素符号取反;反向验证任意上游梯度再次取反。两个公开测例均通过,并且同一调用路径可依据 Tensor 设备选择已注册实现。 + +### 2. CPU/CUDA MatMul 及反向传播 + +**实现位置**: + +- `infini_train/src/kernels/cpu/linear.cc` +- `infini_train/src/kernels/cuda/linear.cu` + +**对应测例**:CPU 的 `BasicMatrixMultiply`、`BatchedMatrixMultiply`、`BackwardPass`;CUDA 的 `BasicMatrixMultiplyCuda`、`BatchedMatrixMultiplyCuda`、`BackwardPassCuda` + +**核心思路**:CPU 使用 Eigen 的行主序矩阵映射并逐 batch 计算;CUDA 使用 `cublasSgemmStridedBatched` 完成批量矩阵乘法。输入形状为 `[..., M, K]` 和 `[..., K, N]`,输出为 `[..., M, N]`。 + +**关键代码/公式**: + +```text +C = A B +dA = dC B^T +dB = A^T dC +``` + +cuBLAS 按列主序解释内存,而框架 Tensor 为行主序,因此实现利用转置等价关系调整操作数顺序: + +```text +C^T = B^T A^T +dA^T = B dC^T +dB^T = dC^T A +``` + +**边界校验**:检查非空指针、FP32、CPU/CUDA 设备一致、rank 至少为 2、两侧 batch 维完全相等、内积维 `K` 相等;反向还检查 `grad_output` 的设备、类型与完整输出形状。CUDA 对零 batch 或 `M/N/K` 为零的情况直接返回正确形状的零 Tensor,避免非法 cuBLAS 调用。本实现不承诺 batch broadcasting,batch 前缀必须精确相同。 + +**CPU 实现细节**:框架 Tensor 按行主序存储。实现先把所有 batch 前缀维相乘得到 `batch_count`,再为每个 batch 建立三个 Eigen `Map`:`A[M,K]`、`B[K,N]` 和 `C[M,N]`。前向用 `noalias()` 避免无必要临时量;反向分别映射 `dC`,计算 `dA=dC*B^T` 和 `dB=A^T*dC`。 + +**CUDA 实现细节**:一次创建 cuBLAS handle,并将所有 batch 交给 `cublasSgemmStridedBatched`。行主序矩阵传给列主序 API 时不做显式转置拷贝,而是交换操作数并选择正确的 transpose flag、leading dimension 和 stride。反向的两个 GEMM 分别单独校对维度,避免只凭公式直觉填写参数。 + +**实现中解决的问题**:最容易出错的是“数学转置”和“内存解释转置”叠加。若直接按 `A*B` 的书写顺序传给 cuBLAS,会得到形状正确但数值错误的结果。最终以 `C^T=B^T*A^T` 为起点逐项推导 `m/n/k`、`lda/ldb/ldc` 和 stride,并用 CPU/CUDA 的 basic、batched、backward 六个测例共同验证。另一个取舍是明确拒绝 batch broadcasting:官方题目只要求相同 batch 前缀,静默实现不完整广播比显式报错更危险。 + +**验证结论**:二维前向、批量前向以及两侧梯度在 CPU/CUDA 上全部通过;测试同时验证输出形状和数值,而不只是程序未崩溃。 + +### 3. CPU/CUDA Adam 参数更新 + +**实现位置**: + +- `infini_train/src/kernels/cpu/accumulate_grad.cc` +- `infini_train/src/kernels/cuda/accumulate_grad.cu` + +**对应测例**:CPU 的 `BasicParameterUpdate`、`MomentumAccumulation`;CUDA 的 `BasicParameterUpdateCuda`、`MomentumAccumulationCuda` + +**核心思路**:按调用合同原地更新一阶矩 `m`、二阶矩 `v` 与参数 `theta`;CPU 顺序遍历元素,CUDA 每个线程处理一个元素,线程块大小为 256。 + +**关键代码/公式**: + +```text +m_t = beta1 * m_(t-1) + (1 - beta1) * g +v_t = beta2 * v_(t-1) + (1 - beta2) * g^2 +m_hat = m_t / (1 - beta1^t) +v_hat = v_t / (1 - beta2^t) +theta_t = theta_(t-1) - lr * m_hat / (sqrt(v_hat) + eps) +``` + +**边界校验**:参数、梯度、`m`、`v` 必须非空、均为 FP32、位于期望且相同的设备,四者形状必须完全一致,并要求时间步 `t > 0`,保证偏置修正分母有定义。CUDA 对零元素 Tensor 提前返回,不启动空 kernel。 + +**执行流程**:`Adam::Step` 先递增全局时间步,再为每个参数取得梯度与对应的 `m/v`,通过 Dispatcher 调用设备专属 `AdamAccumulateGrad`。kernel 对三份状态做原地更新,因此下一 step 会继承此前的动量,而不是每步重新初始化。 + +**实现中解决的问题**:偏置修正必须使用更新后的 `m_t/v_t` 和从 1 开始的 `t`。若使用 `t=0`,分母为零;若把 `eps` 加到平方根内部,则与题目参考公式不一致。CUDA 版本将与元素无关的 `1-beta1^t`、`1-beta2^t` 在 host 端只计算一次,再传给每个线程,保持 CPU/CUDA 公式一致并减少重复运算。 + +**验证结论**:Basic 测例覆盖首步参数更新,Momentum 测例覆盖连续 step 的状态累积;CPU/CUDA 四个测例全部通过。完整训练实验进一步实际使用 Adam 完成 9,540/11,925-step 训练和 checkpoint 恢复,说明该实现不只通过单步算例。 + +### 4. Tensor Flatten、Backward 与子视图偏移 + +**实现位置**:`infini_train/src/tensor.cc` + +**对应测例**:`BackwardComputesGradient`、`BackwardWithMultipleOutputs`、`Flatten2DTo1D`、`FlattenWithRange`、`FlattenNonContiguous` + +**核心思路**:`Flatten` 规范化负维度,将 `[start_dim, end_dim]` 内各维相乘后构造新形状,再通过连续化与 `View` 返回结果。`Backward` 分别处理隐式梯度、显式梯度、叶子 Tensor 梯度累积和带 `grad_fn` 的链式反传。最终提交同时修正子 Tensor 的 offset:新视图 offset 相对父 Tensor 累加,同设备 `To` 不再重复累计已有 offset。 + +**关键代码/规则**: + +```text +flattened_dim = product(dims[start_dim : end_dim + 1]) +scalar Flatten -> shape [1] +scalar implicit backward seed -> 1 +child absolute offset = parent offset + child relative offset +``` + +**边界校验**:检查 `start_dim/end_dim` 经负数归一化后均合法且 `start_dim <= end_dim`;`Backward` 要求 Tensor 开启梯度,非标量不得省略初始梯度,显式梯度必须与目标 Tensor 的形状、dtype、设备完全一致。当前实现明确拒绝 `retain_graph=true` 与 `create_graph=true`。 + +**Flatten 执行流程**:先处理标量和负维度,再保留区间前后的维度,只把指定闭区间内的维度乘成一个维度。调用 `Contiguous()` 后再 `View(new_shape)`,因此对转置等非连续 Tensor 也能得到按逻辑顺序排列的结果,而不是错误地只改 metadata。 + +**Backward 执行流程**:标量且未给初始梯度时创建值为 1 的 seed;非标量要求调用者明确给梯度。存在 `grad_fn` 时交给 `BackwardPartial` 沿图传播;叶子 Tensor 则直接调用 `AccumulateGrad` 累加到自身 `grad_`。这样既支持普通链式求导,也支持多个输出分别反传后汇聚到同一叶子梯度。 + +**实现中解决的问题**:子 Tensor 构造函数收到的 offset 是相对父视图的,若忽略父 Tensor 已有 offset,嵌套 view 会读到错误位置;同设备 `To` 若再把 offset 叠加一次,则会发生双重偏移。最终统一使用绝对 offset,并用 offset view、nested view 和同设备 `To` 的 smoke 验证。对于 `retain_graph/create_graph`,本次没有做“参数存在但实际忽略”的假支持,而是显式拒绝未实现语义。 + +**验证结论**:三个 Flatten 场景和两个 autograd 场景均通过;额外 smoke 覆盖了公开测例没有覆盖的嵌套视图偏移。 + +### 5. 类型安全的 Kernel Dispatcher + +**实现位置**:`infini_train/include/dispatcher.h` + +**对应测例**:`RegisterAndGetKernel`、`DuplicateRegistration`、`GetNonexistentKernel` + +**核心思路**:以 `(DeviceType, kernel_name)` 为键保存 kernel。注册时只接受函数指针,并保存参数与返回值类型信息;调用时校验返回类型、参数数量、参数类型及左值/右值/const 语义,再通过 `std::invoke` 执行,避免将任意函数指针直接强转后调用造成未定义行为。 + +**关键代码/机制**:注册宏使用 `__COUNTER__` 生成唯一静态变量,并通过静态初始化 lambda 完成注册;同时将 kernel 标识符字符串化,保证调用名与注册名一致。`Call` 同时覆盖 `void` 与非 `void` 返回值。 + +**边界校验**:重复注册同一设备与名称、查找不存在的 kernel、实参与签名不一致、返回类型不一致时均立即失败;不会覆盖已有注册或进行隐式危险转换。 + +**执行流程**:`REGISTER_KERNEL` 在静态初始化阶段调用 `Dispatcher::Register`;注册时 `TypedInvoker` 保存原始函数指针和签名元信息。调用时先擦除每个实参的地址与 cv/ref 属性,核对返回类型、参数个数和基础类型,再由保存真实 `ParamsT...` 的 invoker 恢复引用语义并 `std::invoke`。类型擦除只发生在存储边界,真正调用仍使用原始函数指针类型。 + +**实现中解决的问题**:题目最直接的写法是把函数指针转成 `void*`,调用时再依据调用点推导的 `ArgsT...` 强转回来。但真实 kernel 大量使用 `const std::shared_ptr&`,调用点若推导为按值 `std::shared_ptr`,两种函数类型不兼容;即使某个 ABI 下测试恰好通过,标准 C++ 仍不保证行为。本实现为消除该未定义行为引入 typed invoker,同时专门验证临时值、const 引用、普通值、`void` 返回以及现有 kernel 风格。 + +**宏实现细节**:宏必须同时能在命名空间作用域和测试函数内部展开,所以使用一条静态变量声明触发 lambda;同一作用域可能注册多次,因此用两层拼接宏让 `__COUNTER__` 先展开,避免变量重名。 + +**验证结论**:三个官方 Dispatcher 测例通过;此外 43 个 CPU 源文件均用新 header 完成编译 smoke,降低共享基础设施修改带来的回归风险。 + +### 6. Tiny Shakespeare 数据集、Tokenizer 与文本生成 + +**实现位置**: + +- `example/common/tiny_shakespeare_dataset.cc` +- `example/common/tokenizer.cc` + +**对应测例**:`GPT2TrainingTest.LogitsConsistency`;该端到端测例会实际读取预训练权重、训练数据和 tokenizer,执行短程训练、文本生成并抽样校验 logits + +**核心思路**:数据集读取器严格解析 1024 B header,支持磁盘上的 uint16 GPT-2 token 与 uint32 LLaMA-3 token,并统一转换为模型需要的连续 INT64 Tensor。Tokenizer 解析词表 header 与逐 token 的长度前缀字节串。`GenerateText` 每一步从 logits `[B,T,V]` 中取 batch 0、位置 `t-1` 的词表向量,做 softmax 后复制到 CPU,使用固定 RNG 采样,将结果写回输入并同步到模型设备。 + +**关键代码/公式**: + +```text +num_samples = floor((num_tokens - 1) / sequence_length) +x offset = sample_index * sequence_length * sizeof(int64_t) +y offset = x offset + sizeof(int64_t) +next-token logits = logits[0, t - 1, :] +``` + +生成过程保留确定性 RNG(初始状态 1337),并修复 RNG 状态变量自遮蔽。为避免多次只前向生成时保存无用 autograd 图,生成前暂时关闭模型参数的 `requires_grad`,由作用域保护对象在正常返回或异常退出时恢复原状态。 + +**边界校验**: + +- 数据文件必须为普通文件,header 必须完整且 magic/version 合法,文件总长度必须严格等于 `1024 + num_tokens * token_width`,短读与尾随数据均拒绝;样本数必须大于零,最后一个 y view 不得越界。 +- Tokenizer 检查文件最小长度、magic、版本、词表大小、EOT token 范围,并对每个 uint8 长度前缀和 token 字节做剩余长度检查;词表解析结束后不允许额外字节,越界 Decode 返回空字符串。 +- 文本生成检查 batch/sequence 长度及 logits 的 `[B,T,V]` 形状,始终从 batch 0 的正确时间位置采样;每次写回后重新同步到目标设备。 + +**数据集实现细节**:磁盘 token 宽度与模型索引 dtype 不同。GPT-2 文件使用 uint16,LLaMA-3 文件使用 uint32,但 Embedding 需要 INT64,因此加载时先按 header 指定宽度读取,再逐项扩展成 INT64。样本采用相邻 token 右移构造:每个 `x` 长度为 `T`,`y` 从同一底层 token 缓冲区后移一个元素;因此可用样本数必须是 `floor((num_tokens-1)/T)`,否则最后一个标签会越界。 + +**Tokenizer/生成实现细节**:v1 的 EOT 来自 magic 映射,v2 从 header 读取。词表项是“1 字节长度 + 原始字节”,不能使用以 `\0` 结尾的文本读取方式。生成时只截取 `[0,t-1,:]`,softmax 后用固定 seed 的 xorshift RNG 做多项式采样;新 token 写回 batch 0。生成前先统一快照全部参数的梯度状态,再暂时关闭梯度,结束时由 RAII guard 按快照恢复;即使 embedding/lm-head 共享底层权重,也不会因逐项关闭和恢复的顺序改变原状态。 + +**实现中解决的问题**:原始生成代码中的局部 RNG 状态与常量同名,形成自初始化和不可复现行为;现改为显式 seed。另一个问题是连续生成会为每个 token 构建无用 autograd 图,既增加显存又可能改变共享参数梯度状态,现用作用域 guard 关闭并准确恢复。文件解析则补齐短读、尾随字节、非法版本和 EOT 越界检查,避免损坏输入被静默接受。 + +**验证结论**:`test_gpt2` 在 A100 上完成固定 seed 生成、100 个参考 logits 抽样点校验并以退出码 0 结束;第四节的完整训练 runner 又使用同一数据和 tokenizer 跑完全部 train/validation split。 + +## 三、范围说明与已知限制 + +1. 本次提交没有修改测试文件,最终结论以 A100 环境中原有 8 个公开测试全部通过为准。 +2. 当前 autograd 引擎未承诺共享中间分支的完整梯度汇聚、真实多输出算子的通用反传,也不支持 `retain_graph` 或 `create_graph`;这些属于本次作业范围外能力。 +3. MatMul 支持相同 batch 前缀上的批量计算,但未承诺 batch broadcasting;需要广播的输入应由上层先显式展开为兼容形状。 + +## 四、完整数据集训练与收敛实验 + +本节与第一节的公开测试验收严格分开:公开 `test_gpt2` 证明实现与参考短程轨迹一致;本节则使用专用 runner 在完整 Tiny Shakespeare train/validation split 上训练、验证、保存 checkpoint,并按预注册的 early-stopping 规则结束。 + +### 1. 实验配置与算力 + +| 项目 | 配置 / 实测 | +| --- | --- | +| 代码版本 | 提交分支最新 commit | +| GPU | 单卡 NVIDIA A100-SXM4-40GB | +| 软件环境 | GCC 13.4、CUDA 12.6 | +| 模型 | GPT-2 124M,FP32,预训练权重起点 | +| 序列 / batch | sequence length 64,batch size 2 | +| 优化器 | 基线实验为 Adam,lr `1e-4`,betas `(0.9, 0.999)`,epsilon `1e-8` | +| early stop | `min_delta=0.005`,`patience=3`,`max_epochs=30` | +| 随机种子 | 1337;训练数据顺序固定,生成采样也使用该种子 | +| 完整 train split | 305,260 raw tokens;4,769 samples;每 epoch 305,216 target tokens,43 transitions dropped | +| 完整 validation split | 32,768 raw tokens;511 samples;每次验证 32,704 target tokens,63 transitions dropped | +| 实际总量 | 9,540 Adam steps;1,220,864 train tokens;130,816 validation tokens | +| 算力用量 | 单卡 A100,分 4 段运行并从 checkpoint 连续恢复;实际合计约 25.4 GPU-min(0.423 GPU-h) | + +每段运行都从 `latest.ckpt` 恢复完整模型、Adam `t/m/v`、训练 phase、epoch、batch cursor、累计指标、early-stop 状态和 RNG。第二段新增记录严格从 global step `2802` 承接 `2801`;最终 `steps.csv` 中重复 global step 数为 0。checkpoint v2 对完整 body 使用 trailer checksum,并绑定输入文件身份、配置和 CUDA backend,损坏或跨 backend 恢复会直接拒绝。 + +### 2. 指标口径 + +- `train_mean_loss` 与 `validation_mean_loss` 均为 token 加权的交叉熵均值,不是把不同 batch 的均值再次做不加权平均;最后一个不足 batch 的样本也按实际 target token 数计入。 +- `validation_perplexity = exp(validation_mean_loss)`。runner 同时记录 overflow 标志,避免极端 loss 被静默写成一个看似有效的有限数;本次三组实验均未溢出。 +- `train_tokens_per_second` 的分子是实际参与 loss 的 target tokens,分母只累计训练 forward/backward/optimizer 的计算时间;验证、生成文本和 checkpoint I/O 不混入训练吞吐。 +- `cuda_async_pool_peak_bytes` 是 CUDA async default memory pool 的 high-water mark,只表示该内存池观测到的峰值,不包括所有 CUDA context、cuBLAS 或驱动分配,因此报告中不将它表述为整卡峰值显存。 +- `best` 由 validation loss 按 `min_delta=0.005` 判定;`final` 是 early stop 时的最后状态。两者语义不同,最终推荐模型以 `best` 为准。 + +### 3. Loss、perplexity 与 early stopping + +![完整训练 loss 与 perplexity 曲线](assets/full_training_curves_seed1337.svg) + +| 完成 epoch | Global step | Train mean loss | Validation mean loss | Validation PPL | 是否刷新 best | +| ---: | ---: | ---: | ---: | ---: | :---: | +| 1 | 2,385 | 3.6451 | **3.9249** | **50.65** | 是 | +| 2 | 4,770 | 2.9450 | 3.9433 | 51.59 | 否 | +| 3 | 7,155 | 2.1730 | 4.4714 | 87.48 | 否 | +| 4 | 9,540 | **1.4092** | 5.4255 | 227.13 | 否,触发 early stop | + +训练 loss 从第一个完整 epoch 的 3.6451 降至 1.4092,下降 61.34%,因此“loss 曲线下降”在 train split 上成立。但 validation loss 在第一个完整 epoch 达到最优后连续三次未改善,并在后期快速上升;这不是继续训练会改善的收敛形态,而是明确的过拟合。实验按预注册规则在第 4 个完整 epoch 后终止,没有为了得到更低 train loss 而跑满 30 epoch。 + +必须区分两个最终数值: + +- **最佳泛化 checkpoint**:完成 epoch 1,validation loss `3.9249058558`,perplexity `50.6483`。 +- **early-stop 时最后 checkpoint**:完成 epoch 4,train loss `1.4091759598`,validation loss `5.4255262690`,perplexity `227.1308`。 + +提交或下游推理应选择 `best.ckpt`,不能用过拟合后的 `final.ckpt` 冒充最佳模型。 + +### 4. 生成文本质量 + +三次生成使用同一 prompt `The meaning of life is`、同一 seed 和同一采样实现,只改变 checkpoint: + +**训练前 baseline**: + +```text +The meaning of life is that's what matters us. It's about everything that +actually matters to you. It means you are prepared to do anything and +everything to live a fulfilling, happy life. +``` + +**best checkpoint**: + +```text +The meaning of life is of this country now +And not on this island. + +<|endoftext|>SEBASTIAN: +Come, o' theel. +``` + +**early-stop final checkpoint**: + +```text +The meaning of life is of very few words; +But most of all these say nothing. + +<|endoftext|>NATHANIEL: +Then what is most concerning you, my friend and the duke, +``` + +微调后的文本明显获得 Tiny Shakespeare 的人物名、换行、戏剧对白和古风措辞,但 best 文本仍有畸形词,final 文本虽风格更强,validation PPL 却恶化到 227.13。因此这里只能声称“风格迁移可见”,不能仅凭三个样本声称通用生成质量提高;定量泛化结论仍以 validation loss/PPL 为准。 + +### 5. 吞吐、显存与产物 + +- 全程累计训练吞吐:`1,179.25 target tokens/s`;各完整 epoch 为 1,155.80、1,179.45、1,190.87、1,191.59 tokens/s。 +- CUDA async default memory pool high-water:`3,008,656,476 B`,约 `2.80 GiB`。该指标只覆盖框架使用的 CUDA async pool,不等价于 `nvidia-smi` 的整卡峰值显存。 +- 单个完整 Adam checkpoint:`1,493,932,197 B`,约 1.39 GiB。远端 `final.ckpt` 与 `latest.ckpt` 为同 inode 硬链接,best 为独立 checkpoint;最终目录实际占用约 2.8 GiB。 +- 所有四段运行均 `runner_exit_code=0`;最后 summary 为 `status=complete`、`run_state=complete`。 + +可复现实验入口:`example/gpt2/train_experiment.cc`。静态曲线生成命令: + +```bash +python3 scripts/plot_full_experiment.py \ + docs/experiments/a100-full-seed1337 \ + docs/assets/full_training_curves_seed1337.svg +``` + +原始、未人工改写的指标与证据保存在 `docs/experiments/a100-full-seed1337/`: + +- `steps.csv`:9,540 条逐 step loss、计算时间、吞吐与显存记录; +- `epochs.csv`:4 条完整 train/validation epoch 记录; +- `summary.json`:最终配置、数据覆盖、best/final 数值与 artifact 状态; +- `baseline.txt`、`best.txt`、`final.txt`:固定 prompt 生成文本。 + +本实验为单 seed、固定顺序的确定性训练,因此不报告伪造的多 seed 均值或方差。结论边界是:**完整数据覆盖、checkpoint 续跑、early-stop 收敛和单 seed 指标均已完成;跨 seed 稳健性未评估。** + +### 6. 并行学习率 sweep 与推荐配置 + +为判断第 4 个 epoch 后停止是否只是学习率过大导致,本实验在独立 A100 上并行比较三档学习率。`1e-4` 直接复用前述完整实验;`5e-5` 与 `2e-5` 从同一个未微调 GPT-2 checkpoint 独立启动,固定 seed、数据顺序、batch、序列长度、验证集和 early-stopping 规则,只改变学习率。两个新实验分别使用独立输出目录和 checkpoint,不能相互续跑。 + +| 学习率 | Early-stop epoch | Best epoch | Best validation loss | Best validation PPL | Final train loss | Final validation loss | +| ---: | ---: | ---: | ---: | ---: | ---: | ---: | +| `1e-4` | 4 | 1 | 3.9249 | 50.65 | 1.4092 | 5.4255 | +| `5e-5` | 5 | 2 | 3.8118 | 45.23 | 1.3116 | 5.5715 | +| **`2e-5`** | **5** | **2** | **3.7102** | **40.86** | 2.2658 | 4.3182 | + +在本次单 seed 对照中,`2e-5` 相对原 `1e-4` 将最佳 validation loss 降低约 5.47%,将 PPL 从 50.65 降到 40.86,降低约 19.32%。三档学习率后期都出现 train loss 继续下降、validation loss 上升,说明学习率调低能延缓并减轻过拟合,但不能消除小数据集上的过拟合。 + +因此 runner 默认值更新为: + +- `learning_rate=2e-5`; +- `max_epochs=8`; +- `early_stopping_patience=3`; +- `min_delta=0.005`。 + +`max_epochs=8` 是保护上限,不代表必须跑满;`2e-5` 实际在完成 epoch 5 后 early-stop,应该使用 epoch 2 的 `best.ckpt`。两条新配置均通过 checkpoint 跨运行分段精确续跑,最终各有 11,925 个唯一、连续的 global step。四段有效训练实际合计约 64.3 GPU-min。 + +学习率 sweep 的原始证据位于 `docs/experiments/a100-lr-sweep-seed1337/`,包括每档的 `steps.csv`、`epochs.csv`、`summary.json` 和固定 prompt 文本。该比较仍是单 seed 选择实验,只能支持本作业配置推荐,不能声称具有跨 seed 的统计显著性。 diff --git a/docs/assets/full_training_curves_seed1337.svg b/docs/assets/full_training_curves_seed1337.svg new file mode 100644 index 0000000..7017429 --- /dev/null +++ b/docs/assets/full_training_curves_seed1337.svg @@ -0,0 +1,85 @@ + + + +TinyInfiniTrain GPT-2 124M — A100 full-data run +Step loss (200-step moving mean) + + +1 + +2 + +3 + +4 +1 +2500 +5000 +7500 +9540 +Global optimizer step +Cross-entropy loss + + +Train +Full-epoch mean loss + + +1 + +2 + +3 + +4 + +5 + +6 +1 +2 +3 +4 +Completed epoch +Cross-entropy loss + + + + + + +Train + + + + + + +Validation +Validation perplexity + + +50 + +100 + +150 + +200 + +250 +1 +2 +3 +4 +Completed epoch +Perplexity + + + + + + +PPL +best val 3.925 + diff --git a/docs/experiments/a100-full-seed1337/baseline.txt b/docs/experiments/a100-full-seed1337/baseline.txt new file mode 100644 index 0000000..06bec4d --- /dev/null +++ b/docs/experiments/a100-full-seed1337/baseline.txt @@ -0,0 +1,5 @@ +The meaning of life is that's what matters us. It's about everything that actually matters to you. + +It means you are prepared to do anything and everything to live a fulfilling, happy life. + +For many North Koreans, living a fulfilling life means living a full life, coping with hunger, and taking diff --git a/docs/experiments/a100-full-seed1337/best.txt b/docs/experiments/a100-full-seed1337/best.txt new file mode 100644 index 0000000..daa1e35 --- /dev/null +++ b/docs/experiments/a100-full-seed1337/best.txt @@ -0,0 +1,10 @@ +The meaning of life is of this country now +And not on this island. + +<|endoftext|>SEBASTIAN: +Come, o' theel. + +<|endoftext|>ERDINAND: +Why, +I'll try 'tis no hill, nor no hill; +But bases saddle with shame to a dead diff --git a/docs/experiments/a100-full-seed1337/epochs.csv b/docs/experiments/a100-full-seed1337/epochs.csv new file mode 100644 index 0000000..ea2b26f --- /dev/null +++ b/docs/experiments/a100-full-seed1337/epochs.csv @@ -0,0 +1,5 @@ +epoch,global_step,train_tokens,val_tokens,train_mean_loss,val_mean_loss,val_perplexity,val_perplexity_overflow,train_tokens_per_second,cuda_async_pool_peak_bytes,improved +0,2385,305216,32704,3.64506949127,3.92490585583,50.6483095912,0,1155.80477532,3008656476,1 +1,4770,305216,32704,2.94504374092,3.94334604222,51.5909382741,0,1179.45276725,3008656476,0 +2,7155,305216,32704,2.17299642006,4.47142050364,87.480901734,0,1190.87167072,3008656476,0 +3,9540,305216,32704,1.40917595977,5.42552626903,227.130846798,0,1191.58853932,3008656476,0 diff --git a/docs/experiments/a100-full-seed1337/final.txt b/docs/experiments/a100-full-seed1337/final.txt new file mode 100644 index 0000000..e02bffb --- /dev/null +++ b/docs/experiments/a100-full-seed1337/final.txt @@ -0,0 +1,8 @@ +The meaning of life is of very few words; +But most of all these say nothing. + +<|endoftext|>NATHANIEL: +Then what is most concerning you, my friend and the duke, +Shall thusothe your honour with the utmost care +Which you would neglect, mine being nothing: +You diff --git a/docs/experiments/a100-full-seed1337/steps.csv b/docs/experiments/a100-full-seed1337/steps.csv new file mode 100644 index 0000000..0efb7cb --- /dev/null +++ b/docs/experiments/a100-full-seed1337/steps.csv @@ -0,0 +1,9541 @@ +epoch,global_step,batch_index,tokens,loss,compute_seconds,tokens_per_second,cuda_async_pool_peak_bytes +0,1,0,128,5.43915796,0.107490584,1190.80198,3008656476 +0,2,1,128,4.54869509,0.123180227,1039.12781,3008656476 +0,3,2,128,3.80050826,0.109473834,1169.22917,3008656476 +0,4,3,128,4.23888826,0.109794978,1165.80924,3008656476 +0,5,4,128,4.28325462,0.10957485,1168.15127,3008656476 +0,6,5,128,4.93928385,0.118436887,1080.74438,3008656476 +0,7,6,128,4.20393848,0.109299663,1171.09236,3008656476 +0,8,7,128,4.77386284,0.109416957,1169.83696,3008656476 +0,9,8,128,4.76449823,0.109354314,1170.50709,3008656476 +0,10,9,128,4.46780825,0.109311832,1170.96199,3008656476 +0,11,10,128,3.96698618,0.109346333,1170.59252,3008656476 +0,12,11,128,4.2320199,0.109341551,1170.64372,3008656476 +0,13,12,128,3.89026117,0.109424719,1169.75397,3008656476 +0,14,13,128,3.34789658,0.109363161,1170.4124,3008656476 +0,15,14,128,3.25984693,0.121425922,1054.14065,3008656476 +0,16,15,128,3.67321014,0.109348407,1170.57032,3008656476 +0,17,16,128,4.22383118,0.109486333,1169.09569,3008656476 +0,18,17,128,4.06212234,0.109323011,1170.84225,3008656476 +0,19,18,128,3.76918364,0.109266368,1171.44921,3008656476 +0,20,19,128,4.42522955,0.109361029,1170.43522,3008656476 +0,21,20,128,3.8728714,0.109373328,1170.3036,3008656476 +0,22,21,128,4.6004777,0.109519212,1168.74471,3008656476 +0,23,22,128,3.98085308,0.109608906,1167.78832,3008656476 +0,24,23,128,3.04818773,0.109473265,1169.23525,3008656476 +0,25,24,128,3.37979102,0.120621114,1061.17408,3008656476 +0,26,25,128,3.95402718,0.109294577,1171.14685,3008656476 +0,27,26,128,4.06344318,0.109429069,1169.70748,3008656476 +0,28,27,128,4.14731884,0.109486924,1169.08938,3008656476 +0,29,28,128,3.7525723,0.109343356,1170.6244,3008656476 +0,30,29,128,3.81141472,0.109357621,1170.47169,3008656476 +0,31,30,128,3.50093675,0.109274592,1171.36104,3008656476 +0,32,31,128,3.80310798,0.109511467,1168.82737,3008656476 +0,33,32,128,4.17956257,0.109351567,1170.5365,3008656476 +0,34,33,128,3.99983168,0.12341671,1037.13671,3008656476 +0,35,34,128,3.93146443,0.10945565,1169.42341,3008656476 +0,36,35,128,3.88956165,0.109245286,1171.67527,3008656476 +0,37,36,128,3.9837513,0.109308478,1170.99792,3008656476 +0,38,37,128,3.71550751,0.109314145,1170.93721,3008656476 +0,39,38,128,3.41583681,0.109342926,1170.629,3008656476 +0,40,39,128,3.08539295,0.109195461,1172.2099,3008656476 +0,41,40,128,3.85518265,0.109427522,1169.72401,3008656476 +0,42,41,128,4.01448631,0.109316372,1170.91336,3008656476 +0,43,42,128,4.16958094,0.109260498,1171.51214,3008656476 +0,44,43,128,4.2785511,0.12396397,1032.55809,3008656476 +0,45,44,128,4.52633762,0.109398515,1170.03416,3008656476 +0,46,45,128,4.36791515,0.10932101,1170.86368,3008656476 +0,47,46,128,3.4575386,0.109283308,1171.26762,3008656476 +0,48,47,128,3.91224051,0.109255668,1171.56393,3008656476 +0,49,48,128,3.5566895,0.109372571,1170.3117,3008656476 +0,50,49,128,3.78524852,0.109263275,1171.48237,3008656476 +0,51,50,128,3.09670329,0.109345891,1170.59726,3008656476 +0,52,51,128,4.31425238,0.109234897,1171.7867,3008656476 +0,53,52,128,2.99464154,0.12129198,1055.30473,3008656476 +0,54,53,128,4.07885742,0.109365541,1170.38693,3008656476 +0,55,54,128,3.17657351,0.109423691,1169.76496,3008656476 +0,56,55,128,3.49154234,0.10940859,1169.92642,3008656476 +0,57,56,128,4.58459091,0.109395007,1170.07168,3008656476 +0,58,57,128,3.87730384,0.109315984,1170.91751,3008656476 +0,59,58,128,3.68125272,0.109364908,1170.39371,3008656476 +0,60,59,128,3.76682115,0.109233592,1171.8007,3008656476 +0,61,60,128,3.34590936,0.109299488,1171.09423,3008656476 +0,62,61,128,4.57329893,0.109312516,1170.95466,3008656476 +0,63,62,128,3.53182745,0.122115077,1048.19162,3008656476 +0,64,63,128,4.69048309,0.109335608,1170.70735,3008656476 +0,65,64,128,3.00803995,0.109327624,1170.79285,3008656476 +0,66,65,128,3.96801615,0.109327857,1170.79035,3008656476 +0,67,66,128,3.79424357,0.109393677,1170.08591,3008656476 +0,68,67,128,4.85379839,0.109453241,1169.44915,3008656476 +0,69,68,128,4.9875598,0.109425973,1169.74057,3008656476 +0,70,69,128,4.03717422,0.109277611,1171.32868,3008656476 +0,71,70,128,4.41023827,0.109303001,1171.05659,3008656476 +0,72,71,128,4.38990498,0.123933618,1032.81097,3008656476 +0,73,72,128,4.24036455,0.109425031,1169.75064,3008656476 +0,74,73,128,3.82918596,0.10936568,1170.38544,3008656476 +0,75,74,128,3.64481235,0.109526355,1168.66849,3008656476 +0,76,75,128,3.63177347,0.109334601,1170.71813,3008656476 +0,77,76,128,4.77452803,0.109281526,1171.28672,3008656476 +0,78,77,128,4.45531559,0.109391169,1170.11274,3008656476 +0,79,78,128,3.93417001,0.10929268,1171.16718,3008656476 +0,80,79,128,3.82415867,0.10940791,1169.93369,3008656476 +0,81,80,128,4.38826132,0.109248731,1171.63832,3008656476 +0,82,81,128,4.246346,0.123000153,1040.64911,3008656476 +0,83,82,128,4.28767872,0.109935018,1164.32418,3008656476 +0,84,83,128,4.3776474,0.109278731,1171.31668,3008656476 +0,85,84,128,3.59749985,0.109339501,1170.66567,3008656476 +0,86,85,128,3.51931167,0.109421573,1169.78761,3008656476 +0,87,86,128,3.52902055,0.10932124,1170.86122,3008656476 +0,88,87,128,3.42992854,0.109312648,1170.95325,3008656476 +0,89,88,128,3.46781158,0.109406788,1169.94569,3008656476 +0,90,89,128,4.16175795,0.109541667,1168.50513,3008656476 +0,91,90,128,3.56000113,0.121316668,1055.08997,3008656476 +0,92,91,128,3.79901719,0.109321261,1170.86099,3008656476 +0,93,92,128,4.27479076,0.109353054,1170.52058,3008656476 +0,94,93,128,3.64384937,0.109309384,1170.98821,3008656476 +0,95,94,128,3.38610673,0.109267335,1171.43884,3008656476 +0,96,95,128,4.13534641,0.109289897,1171.197,3008656476 +0,97,96,128,3.53875828,0.10914283,1172.77516,3008656476 +0,98,97,128,4.11927176,0.109443507,1169.55316,3008656476 +0,99,98,128,4.18856812,0.109244409,1171.68468,3008656476 +0,100,99,128,3.90144134,0.109243886,1171.69029,3008656476 +0,101,100,128,3.87544227,0.122071821,1048.56304,3008656476 +0,102,101,128,3.54663515,0.109449555,1169.48854,3008656476 +0,103,102,128,3.76285553,0.109334895,1170.71499,3008656476 +0,104,103,128,4.11064863,0.109339786,1170.66262,3008656476 +0,105,104,128,3.0855031,0.109220117,1171.94527,3008656476 +0,106,105,128,4.05953884,0.10932438,1170.82759,3008656476 +0,107,106,128,3.85413742,0.109405634,1169.95803,3008656476 +0,108,107,128,3.48613787,0.109356022,1170.48881,3008656476 +0,109,108,128,4.15952778,0.109183595,1172.33729,3008656476 +0,110,109,128,2.90601015,0.123421241,1037.09863,3008656476 +0,111,110,128,3.61605763,0.109327191,1170.79748,3008656476 +0,112,111,128,3.70784116,0.109334673,1170.71736,3008656476 +0,113,112,128,4.43002987,0.109472957,1169.23854,3008656476 +0,114,113,128,5.0828743,0.109466334,1169.30928,3008656476 +0,115,114,128,4.70395899,0.109423327,1169.76886,3008656476 +0,116,115,128,4.9302187,0.109449099,1169.49341,3008656476 +0,117,116,128,3.92669368,0.109444366,1169.54399,3008656476 +0,118,117,128,4.37596035,0.10949268,1169.02792,3008656476 +0,119,118,128,4.03568554,0.109416214,1169.8449,3008656476 +0,120,119,128,4.34208012,0.122385584,1045.87481,3008656476 +0,121,120,128,4.4204936,0.10933859,1170.67542,3008656476 +0,122,121,128,3.94379115,0.109104462,1173.18758,3008656476 +0,123,122,128,3.25424838,0.10932986,1170.7689,3008656476 +0,124,123,128,3.42749095,0.109070922,1173.54834,3008656476 +0,125,124,128,3.5810616,0.109230964,1171.8289,3008656476 +0,126,125,128,3.32152009,0.109304157,1171.04421,3008656476 +0,127,126,128,3.39634418,0.109194156,1172.22391,3008656476 +0,128,127,128,4.42159033,0.109266394,1171.44893,3008656476 +0,129,128,128,4.330338,0.121169088,1056.37504,3008656476 +0,130,129,128,4.41599703,0.10930391,1171.04685,3008656476 +0,131,130,128,4.54239798,0.109286121,1171.23747,3008656476 +0,132,131,128,3.81926298,0.109297639,1171.11404,3008656476 +0,133,132,128,3.4122963,0.109240077,1171.73114,3008656476 +0,134,133,128,3.88176751,0.109183216,1172.34136,3008656476 +0,135,134,128,4.51163721,0.109385722,1170.171,3008656476 +0,136,135,128,3.86048007,0.109388502,1170.14126,3008656476 +0,137,136,128,3.34136438,0.109173874,1172.44168,3008656476 +0,138,137,128,3.40333414,0.109334064,1170.72388,3008656476 +0,139,138,128,2.70627761,0.121661146,1052.10253,3008656476 +0,140,139,128,3.41616106,0.109279186,1171.3118,3008656476 +0,141,140,128,2.55764365,0.109335906,1170.70416,3008656476 +0,142,141,128,2.63156295,0.109263377,1171.48127,3008656476 +0,143,142,128,3.51369333,0.109318485,1170.89072,3008656476 +0,144,143,128,3.03150344,0.109271455,1171.39467,3008656476 +0,145,144,128,2.29367757,0.109361296,1170.43236,3008656476 +0,146,145,128,2.10667825,0.109232926,1171.80785,3008656476 +0,147,146,128,3.50145864,0.109365599,1170.38631,3008656476 +0,148,147,128,4.633636,0.12431072,1029.67789,3008656476 +0,149,148,128,4.56299925,0.109312752,1170.95213,3008656476 +0,150,149,128,3.53986335,0.10934437,1170.61354,3008656476 +0,151,150,128,2.69291258,0.109287659,1171.22099,3008656476 +0,152,151,128,2.12589288,0.109181627,1172.35842,3008656476 +0,153,152,128,3.02284193,0.109204471,1172.11318,3008656476 +0,154,153,128,3.96796465,0.109292552,1171.16855,3008656476 +0,155,154,128,3.06490541,0.109368243,1170.35802,3008656476 +0,156,155,128,4.13171721,0.109349579,1170.55778,3008656476 +0,157,156,128,4.63453388,0.109240378,1171.72791,3008656476 +0,158,157,128,4.28649044,0.122900716,1041.49108,3008656476 +0,159,158,128,3.71296573,0.109352625,1170.52517,3008656476 +0,160,159,128,3.53189731,0.109403216,1169.98389,3008656476 +0,161,160,128,4.00328875,0.109344306,1170.61422,3008656476 +0,162,161,128,3.7807374,0.109517633,1168.76156,3008656476 +0,163,162,128,3.35206676,0.109398453,1170.03483,3008656476 +0,164,163,128,4.25138521,0.109250742,1171.61676,3008656476 +0,165,164,128,4.24640226,0.109386904,1170.15836,3008656476 +0,166,165,128,3.7842772,0.109419693,1169.80771,3008656476 +0,167,166,128,4.0320425,0.121175525,1056.31892,3008656476 +0,168,167,128,3.61954331,0.109626891,1167.59674,3008656476 +0,169,168,128,3.49240828,0.109342506,1170.6335,3008656476 +0,170,169,128,3.8640697,0.109384976,1170.17898,3008656476 +0,171,170,128,3.76483178,0.109422601,1169.77662,3008656476 +0,172,171,128,3.50876832,0.10923369,1171.79965,3008656476 +0,173,172,128,3.79796147,0.109288595,1171.21096,3008656476 +0,174,173,128,3.53272319,0.109306499,1171.01912,3008656476 +0,175,174,128,3.18037415,0.109355918,1170.48992,3008656476 +0,176,175,128,3.97689223,0.109469836,1169.27187,3008656476 +0,177,176,128,3.23678732,0.122049892,1048.75144,3008656476 +0,178,177,128,4.32358313,0.109371522,1170.32293,3008656476 +0,179,178,128,3.26185226,0.10928411,1171.25902,3008656476 +0,180,179,128,4.39975166,0.10960387,1167.84197,3008656476 +0,181,180,128,3.85841656,0.109303048,1171.05609,3008656476 +0,182,181,128,3.66291451,0.109363276,1170.41117,3008656476 +0,183,182,128,4.53865957,0.109377886,1170.25484,3008656476 +0,184,183,128,2.83505678,0.109364394,1170.39921,3008656476 +0,185,184,128,3.06146431,0.109286023,1171.23852,3008656476 +0,186,185,128,3.96451426,0.122653187,1043.59294,3008656476 +0,187,186,128,3.35258579,0.109397892,1170.04083,3008656476 +0,188,187,128,3.08235645,0.109347767,1170.57717,3008656476 +0,189,188,128,3.92177296,0.109473577,1169.23191,3008656476 +0,190,189,128,3.67201352,0.109442299,1169.56607,3008656476 +0,191,190,128,3.75083232,0.109286748,1171.23075,3008656476 +0,192,191,128,3.08942533,0.109467734,1169.29432,3008656476 +0,193,192,128,3.01141858,0.10931856,1170.88992,3008656476 +0,194,193,128,3.73238635,0.109383242,1170.19753,3008656476 +0,195,194,128,3.44302726,0.109252803,1171.59465,3008656476 +0,196,195,128,4.37530327,0.123397175,1037.30089,3008656476 +0,197,196,128,3.73264933,0.109260649,1171.51052,3008656476 +0,198,197,128,3.508605,0.109224313,1171.90025,3008656476 +0,199,198,128,3.57569766,0.109370646,1170.3323,3008656476 +0,200,199,128,4.50626326,0.109372182,1170.31587,3008656476 +0,201,200,128,4.20934677,0.109369298,1170.34673,3008656476 +0,202,201,128,3.51977181,0.109501519,1168.93356,3008656476 +0,203,202,128,4.6732049,0.109269973,1171.41056,3008656476 +0,204,203,128,4.09031487,0.109454614,1169.43448,3008656476 +0,205,204,128,3.40457058,0.121429997,1054.10527,3008656476 +0,206,205,128,4.03045702,0.109419086,1169.81419,3008656476 +0,207,206,128,3.00442362,0.109366743,1170.37407,3008656476 +0,208,207,128,3.34452391,0.109277122,1171.33392,3008656476 +0,209,208,128,3.29249644,0.109371461,1170.32358,3008656476 +0,210,209,128,3.19056463,0.109350648,1170.54633,3008656476 +0,211,210,128,2.90573907,0.109227542,1171.86561,3008656476 +0,212,211,128,4.11210632,0.109308751,1170.99499,3008656476 +0,213,212,128,3.68510914,0.109339423,1170.6665,3008656476 +0,214,213,128,3.33679152,0.109301448,1171.07323,3008656476 +0,215,214,128,2.66994333,0.121671367,1052.01415,3008656476 +0,216,215,128,2.9814558,0.109364964,1170.39311,3008656476 +0,217,216,128,4.25093365,0.109242099,1171.70945,3008656476 +0,218,217,128,3.60667539,0.109393049,1170.09263,3008656476 +0,219,218,128,3.35896635,0.109300828,1171.07988,3008656476 +0,220,219,128,3.99152493,0.109315573,1170.92191,3008656476 +0,221,220,128,3.08449697,0.109322124,1170.85175,3008656476 +0,222,221,128,2.9305048,0.109644136,1167.41309,3008656476 +0,223,222,128,3.43402743,0.109380234,1170.22971,3008656476 +0,224,223,128,3.09961104,0.122156903,1047.83272,3008656476 +0,225,224,128,3.38944697,0.109764846,1166.12927,3008656476 +0,226,225,128,3.31876445,0.109291758,1171.17706,3008656476 +0,227,226,128,3.42859101,0.109193179,1172.23439,3008656476 +0,228,227,128,4.14138794,0.109414572,1169.86246,3008656476 +0,229,228,128,3.79065847,0.10934318,1170.62628,3008656476 +0,230,229,128,3.5719409,0.109329126,1170.77676,3008656476 +0,231,230,128,4.01577854,0.109314682,1170.93146,3008656476 +0,232,231,128,3.96010947,0.109113016,1173.09561,3008656476 +0,233,232,128,3.68707561,0.109340004,1170.66028,3008656476 +0,234,233,128,3.9871068,0.123723138,1034.568,3008656476 +0,235,234,128,3.96517038,0.109188565,1172.28393,3008656476 +0,236,235,128,3.0816679,0.109386429,1170.16344,3008656476 +0,237,236,128,4.03816891,0.109293684,1171.15642,3008656476 +0,238,237,128,3.25607371,0.109339037,1170.67064,3008656476 +0,239,238,128,3.65033531,0.109197913,1172.18357,3008656476 +0,240,239,128,4.14807558,0.109238928,1171.74346,3008656476 +0,241,240,128,3.76951218,0.109354373,1170.50646,3008656476 +0,242,241,128,3.48162031,0.109977466,1163.87479,3008656476 +0,243,242,128,3.67763257,0.120920291,1058.54856,3008656476 +0,244,243,128,3.93171406,0.109398026,1170.03939,3008656476 +0,245,244,128,4.01691055,0.109380845,1170.22318,3008656476 +0,246,245,128,2.97408366,0.109233994,1171.79639,3008656476 +0,247,246,128,3.78381443,0.109347867,1170.5761,3008656476 +0,248,247,128,3.90391374,0.109334524,1170.71896,3008656476 +0,249,248,128,4.06533432,0.109271964,1171.38921,3008656476 +0,250,249,128,2.18919277,0.109344774,1170.60921,3008656476 +0,251,250,128,3.29289794,0.109240484,1171.72677,3008656476 +0,252,251,128,4.23517561,0.109235002,1171.78558,3008656476 +0,253,252,128,3.89358377,0.121944002,1049.66212,3008656476 +0,254,253,128,3.64205456,0.10943575,1169.63606,3008656476 +0,255,254,128,4.05524921,0.109412493,1169.88469,3008656476 +0,256,255,128,3.82562375,0.109412499,1169.88462,3008656476 +0,257,256,128,3.20258451,0.109343624,1170.62153,3008656476 +0,258,257,128,3.92838407,0.109429819,1169.69946,3008656476 +0,259,258,128,3.34674668,0.109407152,1169.9418,3008656476 +0,260,259,128,3.84221959,0.109373066,1170.30641,3008656476 +0,261,260,128,4.06180477,0.109335688,1170.70649,3008656476 +0,262,261,128,3.62679124,0.120651513,1060.90671,3008656476 +0,263,262,128,3.97535658,0.107276504,1193.17833,3008656476 +0,264,263,128,2.99661183,0.109371022,1170.32828,3008656476 +0,265,264,128,3.52254343,0.109296748,1171.12359,3008656476 +0,266,265,128,3.20951462,0.10927223,1171.38636,3008656476 +0,267,266,128,3.40860915,0.109328904,1170.77914,3008656476 +0,268,267,128,2.5619421,0.109366566,1170.37596,3008656476 +0,269,268,128,2.74753737,0.109463986,1169.33436,3008656476 +0,270,269,128,3.50657606,0.109310524,1170.976,3008656476 +0,271,270,128,4.19037008,0.109430285,1169.69448,3008656476 +0,272,271,128,2.86452746,0.123211901,1038.86069,3008656476 +0,273,272,128,3.49113202,0.10933386,1170.72607,3008656476 +0,274,273,128,4.16384935,0.109361526,1170.4299,3008656476 +0,275,274,128,3.30933142,0.109360694,1170.43881,3008656476 +0,276,275,128,3.61988759,0.109343918,1170.61838,3008656476 +0,277,276,128,3.8810904,0.109245787,1171.6699,3008656476 +0,278,277,128,4.50172472,0.109333522,1170.72969,3008656476 +0,279,278,128,3.1651454,0.10942252,1169.77748,3008656476 +0,280,279,128,3.33449459,0.109303632,1171.04983,3008656476 +0,281,280,128,3.35220194,0.109244662,1171.68196,3008656476 +0,282,281,128,3.26155853,0.111487692,1148.1088,3008656476 +0,283,282,128,2.64615917,0.109350616,1170.54668,3008656476 +0,284,283,128,2.87535167,0.109341671,1170.64244,3008656476 +0,285,284,128,2.67160654,0.109320374,1170.87049,3008656476 +0,286,285,128,2.7759409,0.109308943,1170.99294,3008656476 +0,287,286,128,3.26365542,0.109505744,1168.88846,3008656476 +0,288,287,128,2.8492167,0.109270806,1171.40163,3008656476 +0,289,288,128,2.57557559,0.10914245,1172.77924,3008656476 +0,290,289,128,3.82223606,0.109404086,1169.97458,3008656476 +0,291,290,128,3.14685178,0.122223566,1047.26121,3008656476 +0,292,291,128,3.98531008,0.109483774,1169.12302,3008656476 +0,293,292,128,3.67154193,0.109396886,1170.05159,3008656476 +0,294,293,128,3.0362308,0.109373625,1170.30043,3008656476 +0,295,294,128,3.1340344,0.109347518,1170.57984,3008656476 +0,296,295,128,3.60963631,0.109568689,1168.21695,3008656476 +0,297,296,128,4.09746313,0.109494085,1169.01292,3008656476 +0,298,297,128,3.48879337,0.109539693,1168.52619,3008656476 +0,299,298,128,3.42406535,0.109454371,1169.43708,3008656476 +0,300,299,128,3.70440221,0.109661751,1167.22557,3008656476 +0,301,300,128,3.04708099,0.120358114,1063.4929,3008656476 +0,302,301,128,3.53683949,0.109401101,1170.00651,3008656476 +0,303,302,128,3.37871957,0.109402113,1169.99568,3008656476 +0,304,303,128,3.85683036,0.109345631,1170.60004,3008656476 +0,305,304,128,3.24634576,0.109320491,1170.86924,3008656476 +0,306,305,128,3.37482786,0.10938627,1170.16514,3008656476 +0,307,306,128,3.11563492,0.10936861,1170.35409,3008656476 +0,308,307,128,2.74336123,0.109325736,1170.81306,3008656476 +0,309,308,128,4.3163991,0.109170467,1172.47827,3008656476 +0,310,309,128,3.90897799,0.122261895,1046.9329,3008656476 +0,311,310,128,3.21994638,0.109313379,1170.94542,3008656476 +0,312,311,128,2.92250085,0.109387511,1170.15186,3008656476 +0,313,312,128,3.07792401,0.109370851,1170.33011,3008656476 +0,314,313,128,3.28541565,0.10931908,1170.88435,3008656476 +0,315,314,128,2.56220531,0.10932531,1170.81763,3008656476 +0,316,315,128,3.36972308,0.109365294,1170.38958,3008656476 +0,317,316,128,3.66004753,0.109357656,1170.47132,3008656476 +0,318,317,128,3.17780662,0.109412597,1169.88357,3008656476 +0,319,318,128,3.60921788,0.109306652,1171.01748,3008656476 +0,320,319,128,3.96036744,0.123778076,1034.10882,3008656476 +0,321,320,128,4.24217176,0.109337586,1170.68617,3008656476 +0,322,321,128,3.52117372,0.109340439,1170.65563,3008656476 +0,323,322,128,3.51886249,0.109508384,1168.86028,3008656476 +0,324,323,128,3.68947029,0.109384696,1170.18198,3008656476 +0,325,324,128,2.70134258,0.109190597,1172.26211,3008656476 +0,326,325,128,4.17023897,0.109337305,1170.68918,3008656476 +0,327,326,128,3.78022742,0.109253258,1171.58978,3008656476 +0,328,327,128,3.94292498,0.109349912,1170.55421,3008656476 +0,329,328,128,3.88467717,0.122161173,1047.79609,3008656476 +0,330,329,128,3.71665978,0.109431107,1169.68569,3008656476 +0,331,330,128,4.70204401,0.109582332,1168.07151,3008656476 +0,332,331,128,3.91279602,0.109289855,1171.19745,3008656476 +0,333,332,128,3.62644076,0.109367231,1170.36885,3008656476 +0,334,333,128,4.12498474,0.109358586,1170.46137,3008656476 +0,335,334,128,3.6257751,0.109356045,1170.48856,3008656476 +0,336,335,128,4.14145851,0.109441824,1169.57115,3008656476 +0,337,336,128,3.92007208,0.109357205,1170.47615,3008656476 +0,338,337,128,4.13241339,0.109311807,1170.96225,3008656476 +0,339,338,128,3.67562962,0.121382929,1054.51402,3008656476 +0,340,339,128,3.80436397,0.109339489,1170.6658,3008656476 +0,341,340,128,3.32494736,0.10940215,1169.99529,3008656476 +0,342,341,128,3.3804028,0.109374583,1170.29018,3008656476 +0,343,342,128,3.84207034,0.109329007,1170.77804,3008656476 +0,344,343,128,3.27504301,0.109372743,1170.30986,3008656476 +0,345,344,128,4.09520292,0.1093139,1170.93983,3008656476 +0,346,345,128,3.02845907,0.109360822,1170.43744,3008656476 +0,347,346,128,3.37553501,0.109338792,1170.67326,3008656476 +0,348,347,128,4.60308647,0.122881047,1041.65779,3008656476 +0,349,348,128,3.83737826,0.109323536,1170.83663,3008656476 +0,350,349,128,4.14622641,0.109573563,1168.16499,3008656476 +0,351,350,128,4.17414904,0.109362087,1170.4239,3008656476 +0,352,351,128,3.84703994,0.109292261,1171.17167,3008656476 +0,353,352,128,4.85595179,0.109368147,1170.35904,3008656476 +0,354,353,128,4.10719776,0.109300439,1171.08404,3008656476 +0,355,354,128,3.23033977,0.109344098,1170.61645,3008656476 +0,356,355,128,3.63509417,0.109274258,1171.36462,3008656476 +0,357,356,128,3.98181772,0.109199258,1172.16914,3008656476 +0,358,357,128,3.42247844,0.123661105,1035.08698,3008656476 +0,359,358,128,2.35815048,0.109460118,1169.37568,3008656476 +0,360,359,128,3.30554795,0.109320397,1170.87024,3008656476 +0,361,360,128,3.27897024,0.109342837,1170.62995,3008656476 +0,362,361,128,3.07247829,0.109506192,1168.88367,3008656476 +0,363,362,128,3.25123024,0.109364205,1170.40123,3008656476 +0,364,363,128,3.80132794,0.109257935,1171.53962,3008656476 +0,365,364,128,3.71214247,0.109355182,1170.4978,3008656476 +0,366,365,128,3.96052837,0.109241212,1171.71897,3008656476 +0,367,366,128,3.77577734,0.121443401,1053.98893,3008656476 +0,368,367,128,4.03727293,0.109420795,1169.79592,3008656476 +0,369,368,128,3.11158657,0.109245755,1171.67024,3008656476 +0,370,369,128,3.722651,0.109271005,1171.39949,3008656476 +0,371,370,128,3.75825334,0.109339698,1170.66356,3008656476 +0,372,371,128,3.19868231,0.109310868,1170.97231,3008656476 +0,373,372,128,3.60064721,0.109257579,1171.54344,3008656476 +0,374,373,128,4.13946676,0.109296023,1171.13136,3008656476 +0,375,374,128,3.84254622,0.109336774,1170.69487,3008656476 +0,376,375,128,3.25355363,0.109289136,1171.20516,3008656476 +0,377,376,128,4.17724943,0.121875195,1050.25473,3008656476 +0,378,377,128,3.04159689,0.109306268,1171.02159,3008656476 +0,379,378,128,3.62325287,0.109433264,1169.66264,3008656476 +0,380,379,128,2.41049123,0.109351536,1170.53683,3008656476 +0,381,380,128,3.18740749,0.109330751,1170.75936,3008656476 +0,382,381,128,2.91170788,0.109430844,1169.6885,3008656476 +0,383,382,128,2.49593449,0.109215594,1171.99381,3008656476 +0,384,383,128,2.91795063,0.109344997,1170.60683,3008656476 +0,385,384,128,4.50919104,0.109291326,1171.18169,3008656476 +0,386,385,128,4.87198544,0.122799066,1042.3532,3008656476 +0,387,386,128,3.41738272,0.109292767,1171.16625,3008656476 +0,388,387,128,2.84905815,0.109261494,1171.50146,3008656476 +0,389,388,128,3.81016064,0.109519217,1168.74466,3008656476 +0,390,389,128,4.60192633,0.109555173,1168.36108,3008656476 +0,391,390,128,3.8853054,0.109506305,1168.88247,3008656476 +0,392,391,128,4.15303183,0.109616443,1167.70802,3008656476 +0,393,392,128,2.99762583,0.109484662,1169.11353,3008656476 +0,394,393,128,4.09864569,0.109539304,1168.53034,3008656476 +0,395,394,128,3.47991967,0.109553184,1168.38229,3008656476 +0,396,395,128,3.94125724,0.123311494,1038.02165,3008656476 +0,397,396,128,3.64280796,0.109320376,1170.87047,3008656476 +0,398,397,128,4.26706839,0.109304308,1171.04259,3008656476 +0,399,398,128,3.70560169,0.109275562,1171.35064,3008656476 +0,400,399,128,4.26347494,0.109310092,1170.98063,3008656476 +0,401,400,128,3.86290526,0.109371308,1170.32522,3008656476 +0,402,401,128,3.98975587,0.109257742,1171.54169,3008656476 +0,403,402,128,3.50371909,0.109268072,1171.43094,3008656476 +0,404,403,128,3.36459231,0.109157474,1172.61783,3008656476 +0,405,404,128,3.43684769,0.122953337,1041.04535,3008656476 +0,406,405,128,3.2855587,0.109125303,1172.96352,3008656476 +0,407,406,128,3.35902548,0.109306705,1171.01691,3008656476 +0,408,407,128,2.23443437,0.109319915,1170.87541,3008656476 +0,409,408,128,3.20631886,0.109246813,1171.65889,3008656476 +0,410,409,128,4.08122969,0.109370571,1170.33311,3008656476 +0,411,410,128,2.60529709,0.109299536,1171.09372,3008656476 +0,412,411,128,4.02371836,0.109345703,1170.59927,3008656476 +0,413,412,128,2.91481662,0.109204864,1172.10896,3008656476 +0,414,413,128,3.12006426,0.109339926,1170.66112,3008656476 +0,415,414,128,3.00613189,0.12162939,1052.37723,3008656476 +0,416,415,128,4.19196224,0.109297439,1171.11619,3008656476 +0,417,416,128,3.49009824,0.109314268,1170.93589,3008656476 +0,418,417,128,2.63973427,0.109314086,1170.93784,3008656476 +0,419,418,128,3.19804144,0.109332157,1170.7443,3008656476 +0,420,419,128,2.27180982,0.109245031,1171.67801,3008656476 +0,421,420,128,1.90400255,0.109193592,1172.22996,3008656476 +0,422,421,128,3.84010434,0.109315835,1170.91911,3008656476 +0,423,422,128,2.86826921,0.108783664,1176.64726,3008656476 +0,424,423,128,3.55182648,0.120944382,1058.33771,3008656476 +0,425,424,128,4.16138887,0.109580617,1168.08979,3008656476 +0,426,425,128,4.52328682,0.109186146,1172.3099,3008656476 +0,427,426,128,4.94542599,0.109294332,1171.14948,3008656476 +0,428,427,128,3.45993757,0.109348481,1170.56953,3008656476 +0,429,428,128,2.26396179,0.109310149,1170.98002,3008656476 +0,430,429,128,2.41126895,0.109247791,1171.6484,3008656476 +0,431,430,128,2.58918834,0.109297829,1171.11201,3008656476 +0,432,431,128,2.54921126,0.109307922,1171.00387,3008656476 +0,433,432,128,2.97071481,0.10935959,1170.45062,3008656476 +0,434,433,128,2.66062069,0.124346747,1029.37956,3008656476 +0,435,434,128,3.63648796,0.109286533,1171.23306,3008656476 +0,436,435,128,4.1003685,0.109351046,1170.54207,3008656476 +0,437,436,128,4.50403118,0.109222714,1171.91741,3008656476 +0,438,437,128,2.92468548,0.109183566,1172.3376,3008656476 +0,439,438,128,2.57873726,0.109907065,1164.62031,3008656476 +0,440,439,128,3.74152541,0.109224387,1171.89946,3008656476 +0,441,440,128,3.57688498,0.10947413,1169.22601,3008656476 +0,442,441,128,2.96038675,0.109129291,1172.92066,3008656476 +0,443,442,128,2.9908967,0.122358507,1046.10626,3008656476 +0,444,443,128,3.1595645,0.109704977,1166.76566,3008656476 +0,445,444,128,3.09351373,0.109346545,1170.59026,3008656476 +0,446,445,128,3.10781145,0.109301744,1171.07006,3008656476 +0,447,446,128,3.2000494,0.10927485,1171.35828,3008656476 +0,448,447,128,4.12945175,0.109231577,1171.82232,3008656476 +0,449,448,128,3.73952961,0.109358553,1170.46172,3008656476 +0,450,449,128,3.78559375,0.109292789,1171.16601,3008656476 +0,451,450,128,3.50010681,0.109296339,1171.12797,3008656476 +0,452,451,128,4.17688179,0.10922324,1171.91177,3008656476 +0,453,452,128,3.90454364,0.138826714,922.012747,3008656476 +0,454,453,128,3.2768712,0.150014728,853.249556,3008656476 +0,455,454,128,3.94504976,0.109272003,1171.3888,3008656476 +0,456,455,128,4.29214668,0.109204848,1172.10914,3008656476 +0,457,456,128,4.06329966,0.109274734,1171.35952,3008656476 +0,458,457,128,4.40462923,0.109209797,1172.05602,3008656476 +0,459,458,128,3.98525095,0.109257106,1171.54851,3008656476 +0,460,459,128,2.94954467,0.109171142,1172.47102,3008656476 +0,461,460,128,4.02807045,0.109346697,1170.58863,3008656476 +0,462,461,128,4.0085187,0.121612996,1052.51909,3008656476 +0,463,462,128,3.78282237,0.109259793,1171.5197,3008656476 +0,464,463,128,3.03828335,0.109263058,1171.48469,3008656476 +0,465,464,128,2.98508358,0.109205359,1172.10365,3008656476 +0,466,465,128,3.09851408,0.109199775,1172.16359,3008656476 +0,467,466,128,3.06788921,0.10933585,1170.70476,3008656476 +0,468,467,128,3.20632887,0.109122189,1172.997,3008656476 +0,469,468,128,4.50243235,0.109285881,1171.24004,3008656476 +0,470,469,128,4.05694532,0.109137155,1172.83614,3008656476 +0,471,470,128,4.14926004,0.123942327,1032.7384,3008656476 +0,472,471,128,3.02409363,0.109580863,1168.08717,3008656476 +0,473,472,128,4.38885593,0.109248608,1171.63964,3008656476 +0,474,473,128,3.99548388,0.109237349,1171.7604,3008656476 +0,475,474,128,3.3630681,0.10918502,1172.32199,3008656476 +0,476,475,128,2.56073117,0.109176956,1172.40858,3008656476 +0,477,476,128,3.56806588,0.10926727,1171.43954,3008656476 +0,478,477,128,3.46010804,0.109380299,1170.22902,3008656476 +0,479,478,128,3.82249475,0.109354367,1170.50652,3008656476 +0,480,479,128,4.20365381,0.109474289,1169.22431,3008656476 +0,481,480,128,3.69775438,0.121855611,1050.42352,3008656476 +0,482,481,128,3.24901867,0.109288868,1171.20803,3008656476 +0,483,482,128,3.14308953,0.109178087,1172.39644,3008656476 +0,484,483,128,3.77199149,0.109180639,1172.36903,3008656476 +0,485,484,128,3.95082998,0.109285511,1171.24401,3008656476 +0,486,485,128,3.36921501,0.109345667,1170.59965,3008656476 +0,487,486,128,2.83687615,0.10922059,1171.9402,3008656476 +0,488,487,128,3.63475513,0.109277165,1171.33346,3008656476 +0,489,488,128,3.18962359,0.109293986,1171.15319,3008656476 +0,490,489,128,4.26119852,0.121501993,1053.48066,3008656476 +0,491,490,128,4.44815826,0.109613071,1167.74395,3008656476 +0,492,491,128,4.32284212,0.109170918,1172.47342,3008656476 +0,493,492,128,3.7645247,0.109259225,1171.52579,3008656476 +0,494,493,128,4.31811237,0.1092686,1171.42528,3008656476 +0,495,494,128,3.91514206,0.10933299,1170.73538,3008656476 +0,496,495,128,3.90686631,0.109400132,1170.01687,3008656476 +0,497,496,128,4.25978184,0.109226779,1171.87379,3008656476 +0,498,497,128,4.44239235,0.109251913,1171.6042,3008656476 +0,499,498,128,4.2389698,0.109241281,1171.71823,3008656476 +0,500,499,128,3.64157939,0.123087525,1039.91042,3008656476 +0,501,500,128,4.25640678,0.109277511,1171.32975,3008656476 +0,502,501,128,4.48069763,0.109285795,1171.24097,3008656476 +0,503,502,128,3.32953548,0.109290192,1171.19384,3008656476 +0,504,503,128,4.09162569,0.109307407,1171.00939,3008656476 +0,505,504,128,4.22941732,0.109255053,1171.57053,3008656476 +0,506,505,128,4.19415379,0.109343005,1170.62815,3008656476 +0,507,506,128,4.44664097,0.109238201,1171.75126,3008656476 +0,508,507,128,3.40238762,0.10941762,1169.82987,3008656476 +0,509,508,128,4.05259609,0.123247055,1038.56437,3008656476 +0,510,509,128,4.1110754,0.109601824,1167.86378,3008656476 +0,511,510,128,4.08429861,0.109272496,1171.38351,3008656476 +0,512,511,128,4.03571987,0.109255202,1171.56893,3008656476 +0,513,512,128,4.18402433,0.109178152,1172.39574,3008656476 +0,514,513,128,4.32758904,0.109303065,1171.05591,3008656476 +0,515,514,128,3.91691089,0.10936274,1170.41691,3008656476 +0,516,515,128,4.17715549,0.109237048,1171.76363,3008656476 +0,517,516,128,3.55392361,0.109351171,1170.54073,3008656476 +0,518,517,128,4.06541729,0.109322869,1170.84377,3008656476 +0,519,518,128,4.46876335,0.122847442,1041.94274,3008656476 +0,520,519,128,4.19538069,0.109281384,1171.28824,3008656476 +0,521,520,128,3.67996693,0.109126065,1172.95533,3008656476 +0,522,521,128,3.64082956,0.109231957,1171.81824,3008656476 +0,523,522,128,3.40164924,0.109120652,1173.01352,3008656476 +0,524,523,128,3.84298635,0.109313117,1170.94822,3008656476 +0,525,524,128,3.20005918,0.109357301,1170.47512,3008656476 +0,526,525,128,3.50037193,0.109183994,1172.33301,3008656476 +0,527,526,128,4.30880976,0.109260409,1171.5131,3008656476 +0,528,527,128,3.71623945,0.121214258,1055.98138,3008656476 +0,529,528,128,4.18840361,0.109502734,1168.92059,3008656476 +0,530,529,128,3.2733109,0.109221094,1171.93479,3008656476 +0,531,530,128,3.26152682,0.109097511,1173.26233,3008656476 +0,532,531,128,4.04679298,0.109323883,1170.83291,3008656476 +0,533,532,128,4.6287446,0.109169944,1172.48388,3008656476 +0,534,533,128,4.24435186,0.109262733,1171.48818,3008656476 +0,535,534,128,3.95953989,0.109230612,1171.83267,3008656476 +0,536,535,128,4.23140383,0.109230666,1171.83209,3008656476 +0,537,536,128,3.76272511,0.109116543,1173.05769,3008656476 +0,538,537,128,4.17902327,0.123195752,1038.99686,3008656476 +0,539,538,128,2.8406477,0.109358119,1170.46636,3008656476 +0,540,539,128,3.39710069,0.109239253,1171.73998,3008656476 +0,541,540,128,3.66091442,0.109241852,1171.7121,3008656476 +0,542,541,128,4.03742504,0.109709879,1166.71353,3008656476 +0,543,542,128,3.64938521,0.10928807,1171.21658,3008656476 +0,544,543,128,4.26354885,0.109365823,1170.38391,3008656476 +0,545,544,128,3.0607233,0.109208989,1172.06469,3008656476 +0,546,545,128,2.75027084,0.109371012,1170.32839,3008656476 +0,547,546,128,3.36413884,0.122542,1044.53983,3008656476 +0,548,547,128,4.09875345,0.1078606,1186.71693,3008656476 +0,549,548,128,4.3321867,0.109139316,1172.81292,3008656476 +0,550,549,128,4.09136105,0.109237114,1171.76292,3008656476 +0,551,550,128,3.43715358,0.109119957,1173.02099,3008656476 +0,552,551,128,2.99429274,0.109232365,1171.81387,3008656476 +0,553,552,128,3.55848646,0.109213501,1172.01627,3008656476 +0,554,553,128,4.20490789,0.109281629,1171.28561,3008656476 +0,555,554,128,4.69579124,0.109153804,1172.65725,3008656476 +0,556,555,128,4.29676008,0.109194262,1172.22277,3008656476 +0,557,556,128,3.60759401,0.124202288,1030.57683,3008656476 +0,558,557,128,3.62003088,0.109342725,1170.63115,3008656476 +0,559,558,128,4.82413006,0.109191844,1172.24873,3008656476 +0,560,559,128,4.7772336,0.109266197,1171.45104,3008656476 +0,561,560,128,4.60429955,0.109099741,1173.23835,3008656476 +0,562,561,128,4.13171196,0.10914919,1172.70682,3008656476 +0,563,562,128,4.45370626,0.109223291,1171.91122,3008656476 +0,564,563,128,4.59592438,0.109197016,1172.1932,3008656476 +0,565,564,128,4.07934523,0.109065123,1173.61074,3008656476 +0,566,565,128,3.43124795,0.109239447,1171.7379,3008656476 +0,567,566,128,2.80810213,0.111961873,1143.24633,3008656476 +0,568,567,128,4.3394804,0.1093341,1170.7235,3008656476 +0,569,568,128,4.12946415,0.109407699,1169.93595,3008656476 +0,570,569,128,4.21662045,0.109426402,1169.73598,3008656476 +0,571,570,128,4.74603128,0.109367615,1170.36474,3008656476 +0,572,571,128,3.24139333,0.109508323,1168.86093,3008656476 +0,573,572,128,3.24911094,0.10950638,1168.88167,3008656476 +0,574,573,128,4.18600941,0.109502816,1168.91971,3008656476 +0,575,574,128,3.86827183,0.109320584,1170.86824,3008656476 +0,576,575,128,3.72908926,0.121632254,1052.35245,3008656476 +0,577,576,128,3.36618948,0.10929463,1171.14629,3008656476 +0,578,577,128,4.58002996,0.109262719,1171.48833,3008656476 +0,579,578,128,3.45446801,0.109352621,1170.52521,3008656476 +0,580,579,128,3.78119874,0.109189703,1172.27171,3008656476 +0,581,580,128,3.37066817,0.10929946,1171.09453,3008656476 +0,582,581,128,3.76392627,0.109194021,1172.22535,3008656476 +0,583,582,128,3.99387527,0.109328035,1170.78844,3008656476 +0,584,583,128,3.74233174,0.109207775,1172.07772,3008656476 +0,585,584,128,3.75093603,0.109295811,1171.13363,3008656476 +0,586,585,128,3.29832363,0.11962094,1070.04677,3008656476 +0,587,586,128,4.75068283,0.109336444,1170.6984,3008656476 +0,588,587,128,4.16648054,0.109321463,1170.85883,3008656476 +0,589,588,128,3.80064535,0.109321254,1170.86107,3008656476 +0,590,589,128,4.654387,0.10932162,1170.85715,3008656476 +0,591,590,128,4.04281664,0.109131618,1172.89565,3008656476 +0,592,591,128,3.92082763,0.10939477,1170.07422,3008656476 +0,593,592,128,3.77763128,0.109291637,1171.17836,3008656476 +0,594,593,128,3.58706284,0.109216832,1171.98052,3008656476 +0,595,594,128,3.43027878,0.123579837,1035.76767,3008656476 +0,596,595,128,3.55082393,0.109326539,1170.80446,3008656476 +0,597,596,128,3.70439219,0.109288372,1171.21335,3008656476 +0,598,597,128,3.44503617,0.109357896,1170.46875,3008656476 +0,599,598,128,3.48054385,0.109293338,1171.16013,3008656476 +0,600,599,128,4.02256155,0.109318839,1170.88693,3008656476 +0,601,600,128,3.84095192,0.109192663,1172.23993,3008656476 +0,602,601,128,3.41884065,0.109194141,1172.22407,3008656476 +0,603,602,128,4.05476999,0.109366602,1170.37558,3008656476 +0,604,603,128,3.05204034,0.109327329,1170.796,3008656476 +0,605,604,128,4.18951893,0.1240845,1031.55511,3008656476 +0,606,605,128,2.98151064,0.109316419,1170.91285,3008656476 +0,607,606,128,3.05474567,0.109320202,1170.87233,3008656476 +0,608,607,128,2.73877931,0.109251209,1171.61175,3008656476 +0,609,608,128,3.81570697,0.109289331,1171.20307,3008656476 +0,610,609,128,3.26333714,0.109211228,1172.04066,3008656476 +0,611,610,128,3.30473948,0.109311697,1170.96343,3008656476 +0,612,611,128,2.74569082,0.109234046,1171.79583,3008656476 +0,613,612,128,3.39305282,0.109349577,1170.5578,3008656476 +0,614,613,128,3.94249201,0.122965945,1040.93861,3008656476 +0,615,614,128,4.03088856,0.109249943,1171.62533,3008656476 +0,616,615,128,2.9783299,0.109228835,1171.85174,3008656476 +0,617,616,128,3.73493481,0.109384058,1170.1888,3008656476 +0,618,617,128,3.89687562,0.109253792,1171.58405,3008656476 +0,619,618,128,3.29374719,0.109246862,1171.65837,3008656476 +0,620,619,128,3.54859424,0.10915759,1172.61658,3008656476 +0,621,620,128,3.40204883,0.109242971,1171.7001,3008656476 +0,622,621,128,3.31679249,0.109271297,1171.39636,3008656476 +0,623,622,128,4.12472248,0.10927133,1171.39601,3008656476 +0,624,623,128,4.23032713,0.121711376,1051.66833,3008656476 +0,625,624,128,3.92319751,0.109154959,1172.64485,3008656476 +0,626,625,128,4.17126513,0.109304388,1171.04173,3008656476 +0,627,626,128,4.00873327,0.109266284,1171.45011,3008656476 +0,628,627,128,3.06481457,0.109333399,1170.731,3008656476 +0,629,628,128,3.8699441,0.10930627,1171.02157,3008656476 +0,630,629,128,4.53908968,0.109286805,1171.23014,3008656476 +0,631,630,128,4.35146904,0.109310603,1170.97515,3008656476 +0,632,631,128,3.4526093,0.109204873,1172.10887,3008656476 +0,633,632,128,4.8093667,0.121117895,1056.82154,3008656476 +0,634,633,128,4.03984165,0.10914944,1172.70414,3008656476 +0,635,634,128,4.16034412,0.109301594,1171.07167,3008656476 +0,636,635,128,3.23039246,0.109319656,1170.87818,3008656476 +0,637,636,128,3.59467435,0.109404005,1169.97545,3008656476 +0,638,637,128,3.88345027,0.109312662,1170.9531,3008656476 +0,639,638,128,3.83634782,0.109328415,1170.78437,3008656476 +0,640,639,128,4.64600945,0.109357255,1170.47561,3008656476 +0,641,640,128,3.89579582,0.109300562,1171.08273,3008656476 +0,642,641,128,4.13691425,0.109281646,1171.28543,3008656476 +0,643,642,128,3.31258273,0.124810945,1025.55108,3008656476 +0,644,643,128,3.87763214,0.109195365,1172.21093,3008656476 +0,645,644,128,4.25781059,0.10923129,1171.8254,3008656476 +0,646,645,128,4.84637117,0.109242162,1171.70878,3008656476 +0,647,646,128,3.72106266,0.109212212,1172.0301,3008656476 +0,648,647,128,3.6286974,0.109185884,1172.31271,3008656476 +0,649,648,128,4.0407505,0.109172542,1172.45598,3008656476 +0,650,649,128,3.56108594,0.109260784,1171.50908,3008656476 +0,651,650,128,3.2760427,0.109235045,1171.78512,3008656476 +0,652,651,128,3.40404367,0.12285728,1041.8593,3008656476 +0,653,652,128,2.72492051,0.109244377,1171.68502,3008656476 +0,654,653,128,3.09677768,0.109102347,1173.21033,3008656476 +0,655,654,128,4.45668411,0.109293766,1171.15554,3008656476 +0,656,655,128,4.40859747,0.109173919,1172.44119,3008656476 +0,657,656,128,4.0834465,0.109234661,1171.78924,3008656476 +0,658,657,128,3.65651011,0.109438166,1169.61024,3008656476 +0,659,658,128,3.99562883,0.109327892,1170.78998,3008656476 +0,660,659,128,4.50536728,0.109189935,1172.26922,3008656476 +0,661,660,128,3.8841157,0.109264846,1171.46552,3008656476 +0,662,661,128,3.84468317,0.12148406,1053.63617,3008656476 +0,663,662,128,3.70818543,0.10931446,1170.93384,3008656476 +0,664,663,128,3.43796301,0.109503503,1168.91238,3008656476 +0,665,664,128,3.11158419,0.109516297,1168.77582,3008656476 +0,666,665,128,4.40865707,0.10939209,1170.10288,3008656476 +0,667,666,128,4.17406797,0.109480714,1169.15569,3008656476 +0,668,667,128,3.7104156,0.109500345,1168.94609,3008656476 +0,669,668,128,3.02292991,0.109419889,1169.80561,3008656476 +0,670,669,128,2.92935181,0.109634316,1167.51766,3008656476 +0,671,670,128,3.47459912,0.121608329,1052.55948,3008656476 +0,672,671,128,2.85796309,0.109185988,1172.3116,3008656476 +0,673,672,128,3.38260651,0.109237658,1171.75709,3008656476 +0,674,673,128,3.38873243,0.109243156,1171.69812,3008656476 +0,675,674,128,4.31038046,0.109259522,1171.52261,3008656476 +0,676,675,128,4.14252853,0.109219561,1171.95124,3008656476 +0,677,676,128,3.78337073,0.109194517,1172.22003,3008656476 +0,678,677,128,4.40445375,0.109314761,1170.93061,3008656476 +0,679,678,128,3.78286242,0.109234936,1171.78629,3008656476 +0,680,679,128,3.91121554,0.109373274,1170.30418,3008656476 +0,681,680,128,3.86974239,0.123030347,1040.39372,3008656476 +0,682,681,128,4.04578114,0.109188756,1172.28188,3008656476 +0,683,682,128,3.62119102,0.109253693,1171.58511,3008656476 +0,684,683,128,3.44895291,0.109212944,1172.02225,3008656476 +0,685,684,128,3.55161858,0.109329062,1170.77745,3008656476 +0,686,685,128,3.27679205,0.109259787,1171.51977,3008656476 +0,687,686,128,3.44748139,0.109227196,1171.86932,3008656476 +0,688,687,128,3.04549742,0.109201297,1172.14725,3008656476 +0,689,688,128,4.05407143,0.109278611,1171.31796,3008656476 +0,690,689,128,3.18129206,0.122879441,1041.67141,3008656476 +0,691,690,128,3.65172386,0.109319984,1170.87467,3008656476 +0,692,691,128,3.70400643,0.109196632,1172.19733,3008656476 +0,693,692,128,3.74390197,0.109258939,1171.52886,3008656476 +0,694,693,128,3.29246116,0.109410568,1169.90527,3008656476 +0,695,694,128,4.01879501,0.109894077,1164.75795,3008656476 +0,696,695,128,3.89903212,0.109271326,1171.39605,3008656476 +0,697,696,128,4.44600344,0.109298745,1171.10219,3008656476 +0,698,697,128,4.23091269,0.109453562,1169.44572,3008656476 +0,699,698,128,3.51306844,0.109425443,1169.74624,3008656476 +0,700,699,128,3.41618395,0.121727884,1051.52571,3008656476 +0,701,700,128,4.30436754,0.109286329,1171.23524,3008656476 +0,702,701,128,3.53295279,0.109331254,1170.75397,3008656476 +0,703,702,128,3.53690147,0.109295616,1171.13572,3008656476 +0,704,703,128,2.83205795,0.109179731,1172.37878,3008656476 +0,705,704,128,3.79707098,0.109179843,1172.37758,3008656476 +0,706,705,128,4.18659878,0.109263783,1171.47692,3008656476 +0,707,706,128,3.79410815,0.109230378,1171.83518,3008656476 +0,708,707,128,3.74821234,0.109213855,1172.01247,3008656476 +0,709,708,128,3.11663127,0.121032387,1057.56817,3008656476 +0,710,709,128,4.13360453,0.109548446,1168.43282,3008656476 +0,711,710,128,2.63646364,0.109310288,1170.97853,3008656476 +0,712,711,128,3.93734932,0.109287492,1171.22278,3008656476 +0,713,712,128,3.67802382,0.10928398,1171.26042,3008656476 +0,714,713,128,3.96253228,0.109177232,1172.40562,3008656476 +0,715,714,128,2.57162499,0.109247933,1171.64688,3008656476 +0,716,715,128,2.08286047,0.109341371,1170.64565,3008656476 +0,717,716,128,3.01478934,0.109228634,1171.85389,3008656476 +0,718,717,128,3.86040688,0.109316361,1170.91347,3008656476 +0,719,718,128,4.38952684,0.124142304,1031.07479,3008656476 +0,720,719,128,4.33629704,0.109368313,1170.35727,3008656476 +0,721,720,128,4.16994476,0.109346889,1170.58657,3008656476 +0,722,721,128,4.21719742,0.109366918,1170.3722,3008656476 +0,723,722,128,3.33434224,0.109258914,1171.52913,3008656476 +0,724,723,128,4.33286619,0.109184839,1172.32393,3008656476 +0,725,724,128,3.43286848,0.109229516,1171.84443,3008656476 +0,726,725,128,3.76612735,0.109393655,1170.08614,3008656476 +0,727,726,128,3.40297937,0.109161844,1172.57088,3008656476 +0,728,727,128,3.8273201,0.123564634,1035.89511,3008656476 +0,729,728,128,3.58665323,0.109515668,1168.78253,3008656476 +0,730,729,128,4.07115746,0.109492222,1169.03281,3008656476 +0,731,730,128,3.83568954,0.10937167,1170.32135,3008656476 +0,732,731,128,4.39991808,0.10920205,1172.13917,3008656476 +0,733,732,128,3.63210893,0.109305664,1171.02806,3008656476 +0,734,733,128,3.31095934,0.109317644,1170.89973,3008656476 +0,735,734,128,2.39614153,0.109143526,1172.76768,3008656476 +0,736,735,128,2.4794209,0.109237746,1171.75614,3008656476 +0,737,736,128,2.51786184,0.109111497,1173.11194,3008656476 +0,738,737,128,2.40301919,0.121586943,1052.74462,3008656476 +0,739,738,128,2.50548339,0.109253373,1171.58854,3008656476 +0,740,739,128,3.29198194,0.109289185,1171.20463,3008656476 +0,741,740,128,2.86393499,0.109253776,1171.58422,3008656476 +0,742,741,128,3.13669825,0.109313046,1170.94898,3008656476 +0,743,742,128,3.31445718,0.109207898,1172.0764,3008656476 +0,744,743,128,3.63393188,0.109265509,1171.45842,3008656476 +0,745,744,128,3.21213245,0.109228912,1171.85091,3008656476 +0,746,745,128,2.69831657,0.10930374,1171.04868,3008656476 +0,747,746,128,2.54109478,0.1208491,1059.17214,3008656476 +0,748,747,128,2.54543042,0.109310693,1170.97419,3008656476 +0,749,748,128,3.56233764,0.109321262,1170.86098,3008656476 +0,750,749,128,4.66707993,0.109381276,1170.21857,3008656476 +0,751,750,128,3.02464676,0.109288959,1171.20706,3008656476 +0,752,751,128,3.98503375,0.109283765,1171.26272,3008656476 +0,753,752,128,2.91719913,0.109287932,1171.21806,3008656476 +0,754,753,128,3.35983801,0.109402062,1169.99623,3008656476 +0,755,754,128,3.58050704,0.10936263,1170.41809,3008656476 +0,756,755,128,3.49970412,0.10925783,1171.54075,3008656476 +0,757,756,128,3.93243647,0.126306137,1013.41077,3008656476 +0,758,757,128,2.58867025,0.109252757,1171.59515,3008656476 +0,759,758,128,3.36706424,0.109294045,1171.15255,3008656476 +0,760,759,128,3.26754332,0.109326097,1170.8092,3008656476 +0,761,760,128,3.59757948,0.109294047,1171.15253,3008656476 +0,762,761,128,4.24990797,0.109275824,1171.34784,3008656476 +0,763,762,128,4.56809521,0.109336638,1170.69632,3008656476 +0,764,763,128,4.10939741,0.109323267,1170.83951,3008656476 +0,765,764,128,4.43754387,0.109325405,1170.81661,3008656476 +0,766,765,128,4.39660692,0.123154469,1039.34515,3008656476 +0,767,766,128,3.92102814,0.109549576,1168.42077,3008656476 +0,768,767,128,4.4328804,0.109394795,1170.07395,3008656476 +0,769,768,128,3.6263752,0.1092268,1171.87357,3008656476 +0,770,769,128,3.67021918,0.109371325,1170.32504,3008656476 +0,771,770,128,3.22672772,0.109345185,1170.60481,3008656476 +0,772,771,128,4.38037062,0.109286947,1171.22862,3008656476 +0,773,772,128,3.34713006,0.109285767,1171.24127,3008656476 +0,774,773,128,3.75354958,0.109297026,1171.12061,3008656476 +0,775,774,128,3.33360934,0.109205459,1172.10258,3008656476 +0,776,775,128,3.88709617,0.12211726,1048.17288,3008656476 +0,777,776,128,3.84788322,0.109336659,1170.6961,3008656476 +0,778,777,128,4.12530851,0.109226955,1171.87191,3008656476 +0,779,778,128,3.73796844,0.109345318,1170.60339,3008656476 +0,780,779,128,3.83658814,0.109313465,1170.94449,3008656476 +0,781,780,128,3.40040112,0.10931916,1170.88349,3008656476 +0,782,781,128,3.4075563,0.109333949,1170.72511,3008656476 +0,783,782,128,2.61426711,0.109244712,1171.68143,3008656476 +0,784,783,128,2.45556879,0.109311936,1170.96087,3008656476 +0,785,784,128,3.64794493,0.121075891,1057.18817,3008656476 +0,786,785,128,3.8653903,0.109553528,1168.37862,3008656476 +0,787,786,128,4.12543297,0.109260905,1171.50778,3008656476 +0,788,787,128,4.56158924,0.109309955,1170.98209,3008656476 +0,789,788,128,4.26231337,0.109227896,1171.86181,3008656476 +0,790,789,128,4.41884661,0.109286607,1171.23226,3008656476 +0,791,790,128,4.21282625,0.10930202,1171.0671,3008656476 +0,792,791,128,4.75174284,0.109294921,1171.14317,3008656476 +0,793,792,128,3.67073226,0.109141574,1172.78866,3008656476 +0,794,793,128,3.99004054,0.109254977,1171.57134,3008656476 +0,795,794,128,3.32318544,0.121629099,1052.37974,3008656476 +0,796,795,128,3.41788316,0.109312274,1170.95725,3008656476 +0,797,796,128,4.29940748,0.109255608,1171.56458,3008656476 +0,798,797,128,3.78660154,0.109294716,1171.14536,3008656476 +0,799,798,128,3.53637218,0.109251456,1171.6091,3008656476 +0,800,799,128,3.41878843,0.109282164,1171.27988,3008656476 +0,801,800,128,4.37133598,0.109178125,1172.39603,3008656476 +0,802,801,128,3.86406994,0.109308701,1170.99553,3008656476 +0,803,802,128,4.28056479,0.109281239,1171.28979,3008656476 +0,804,803,128,3.56729388,0.12241145,1045.65382,3008656476 +0,805,804,128,3.89037418,0.107269207,1193.2595,3008656476 +0,806,805,128,4.9930768,0.10938807,1170.14589,3008656476 +0,807,806,128,4.56232786,0.109302891,1171.05777,3008656476 +0,808,807,128,4.47920227,0.109214981,1172.00039,3008656476 +0,809,808,128,3.38931847,0.109290283,1171.19287,3008656476 +0,810,809,128,3.7182169,0.109317073,1170.90585,3008656476 +0,811,810,128,3.93002844,0.109366174,1170.38016,3008656476 +0,812,811,128,3.81852174,0.109223522,1171.90874,3008656476 +0,813,812,128,4.30241108,0.109374872,1170.28708,3008656476 +0,814,813,128,3.87718272,0.12329364,1038.17196,3008656476 +0,815,814,128,3.22073078,0.109375221,1170.28335,3008656476 +0,816,815,128,3.52837324,0.109281778,1171.28402,3008656476 +0,817,816,128,4.35373068,0.109322532,1170.84738,3008656476 +0,818,817,128,4.14371538,0.109244154,1171.68741,3008656476 +0,819,818,128,4.0387578,0.109333866,1170.726,3008656476 +0,820,819,128,3.70961452,0.10925554,1171.5653,3008656476 +0,821,820,128,3.64674187,0.109273063,1171.37743,3008656476 +0,822,821,128,3.63539267,0.109310014,1170.98146,3008656476 +0,823,822,128,3.33588624,0.109173867,1172.44175,3008656476 +0,824,823,128,4.74978065,0.111329799,1149.7371,3008656476 +0,825,824,128,3.85520577,0.109172834,1172.45285,3008656476 +0,826,825,128,3.58315945,0.109303995,1171.04594,3008656476 +0,827,826,128,4.15013695,0.109532642,1168.60141,3008656476 +0,828,827,128,4.10670948,0.10935181,1170.53389,3008656476 +0,829,828,128,3.97430682,0.109458463,1169.39336,3008656476 +0,830,829,128,3.7931931,0.109427994,1169.71897,3008656476 +0,831,830,128,3.84431815,0.10947001,1169.27001,3008656476 +0,832,831,128,2.85316515,0.109440123,1169.58933,3008656476 +0,833,832,128,4.45462561,0.121342082,1054.86899,3008656476 +0,834,833,128,4.85678101,0.109322682,1170.84577,3008656476 +0,835,834,128,4.96782112,0.109348579,1170.56848,3008656476 +0,836,835,128,4.26313782,0.10929961,1171.09293,3008656476 +0,837,836,128,3.62564182,0.109354147,1170.50888,3008656476 +0,838,837,128,4.24786043,0.10927552,1171.35109,3008656476 +0,839,838,128,4.33551931,0.10934839,1170.5705,3008656476 +0,840,839,128,4.05913639,0.109356173,1170.48719,3008656476 +0,841,840,128,3.83870506,0.109410229,1169.90889,3008656476 +0,842,841,128,3.67247295,0.109337132,1170.69103,3008656476 +0,843,842,128,3.21002412,0.118896821,1076.56369,3008656476 +0,844,843,128,4.36801815,0.10923156,1171.8225,3008656476 +0,845,844,128,3.29019213,0.109418499,1169.82047,3008656476 +0,846,845,128,3.9088192,0.109541576,1168.5061,3008656476 +0,847,846,128,3.421386,0.109444151,1169.54628,3008656476 +0,848,847,128,4.49096537,0.1095951,1167.93543,3008656476 +0,849,848,128,3.64099717,0.109522705,1168.70744,3008656476 +0,850,849,128,3.30151176,0.10954666,1168.45187,3008656476 +0,851,850,128,3.13973451,0.10941602,1169.84697,3008656476 +0,852,851,128,3.43407035,0.123588145,1035.69804,3008656476 +0,853,852,128,2.77087593,0.109401754,1169.99952,3008656476 +0,854,853,128,3.38199902,0.10930921,1170.99007,3008656476 +0,855,854,128,4.549757,0.109271715,1171.39188,3008656476 +0,856,855,128,3.60342503,0.10933288,1170.73656,3008656476 +0,857,856,128,4.51049232,0.109386646,1170.16112,3008656476 +0,858,857,128,3.79412127,0.109403696,1169.97875,3008656476 +0,859,858,128,3.89259219,0.109264457,1171.46969,3008656476 +0,860,859,128,3.76844645,0.10912814,1172.93303,3008656476 +0,861,860,128,3.951051,0.10929894,1171.1001,3008656476 +0,862,861,128,4.14755297,0.125831383,1017.23431,3008656476 +0,863,862,128,3.41228056,0.109291716,1171.17751,3008656476 +0,864,863,128,3.13357878,0.109233152,1171.80542,3008656476 +0,865,864,128,3.78170323,0.109347923,1170.5755,3008656476 +0,866,865,128,3.12505817,0.109449008,1169.49438,3008656476 +0,867,866,128,3.53335595,0.109313891,1170.93993,3008656476 +0,868,867,128,3.51004434,0.10924629,1171.6645,3008656476 +0,869,868,128,3.83748341,0.109316051,1170.91679,3008656476 +0,870,869,128,3.7227087,0.109213863,1172.01238,3008656476 +0,871,870,128,4.06458902,0.121989505,1049.27059,3008656476 +0,872,871,128,3.14606285,0.109153108,1172.66473,3008656476 +0,873,872,128,3.42487502,0.109347319,1170.58197,3008656476 +0,874,873,128,2.97898102,0.109330117,1170.76615,3008656476 +0,875,874,128,3.60932565,0.109280673,1171.29586,3008656476 +0,876,875,128,2.97161317,0.109242478,1171.70539,3008656476 +0,877,876,128,3.93479633,0.109333659,1170.72822,3008656476 +0,878,877,128,2.80987644,0.109294762,1171.14487,3008656476 +0,879,878,128,3.07962132,0.109261481,1171.5016,3008656476 +0,880,879,128,3.74795175,0.10925997,1171.5178,3008656476 +0,881,880,128,4.63205719,0.122045727,1048.78723,3008656476 +0,882,881,128,4.49669838,0.109323856,1170.8332,3008656476 +0,883,882,128,5.36261749,0.10922846,1171.85576,3008656476 +0,884,883,128,4.64128304,0.109293734,1171.15589,3008656476 +0,885,884,128,3.33973384,0.109219043,1171.9568,3008656476 +0,886,885,128,4.257864,0.109333399,1170.731,3008656476 +0,887,886,128,3.90187073,0.109301121,1171.07674,3008656476 +0,888,887,128,4.34291029,0.109260354,1171.51369,3008656476 +0,889,888,128,3.31162,0.109305852,1171.02605,3008656476 +0,890,889,128,3.79315352,0.122334905,1046.30808,3008656476 +0,891,890,128,3.03397775,0.109270803,1171.40166,3008656476 +0,892,891,128,3.31013846,0.109265282,1171.46085,3008656476 +0,893,892,128,4.30101252,0.109322641,1170.84621,3008656476 +0,894,893,128,4.5192337,0.109128333,1172.93096,3008656476 +0,895,894,128,4.42367172,0.109323477,1170.83726,3008656476 +0,896,895,128,4.13418245,0.109293821,1171.15495,3008656476 +0,897,896,128,2.84893823,0.10939413,1170.08106,3008656476 +0,898,897,128,3.62735248,0.109303914,1171.04681,3008656476 +0,899,898,128,2.98583055,0.109369397,1170.34567,3008656476 +0,900,899,128,3.69577837,0.123805037,1033.88362,3008656476 +0,901,900,128,3.04151678,0.109257429,1171.54505,3008656476 +0,902,901,128,3.02394009,0.109233391,1171.80286,3008656476 +0,903,902,128,3.20585489,0.109272875,1171.37945,3008656476 +0,904,903,128,3.46635652,0.109250677,1171.61745,3008656476 +0,905,904,128,2.83733988,0.109301686,1171.07068,3008656476 +0,906,905,128,3.22666144,0.109310078,1170.98078,3008656476 +0,907,906,128,4.09974861,0.109293208,1171.16152,3008656476 +0,908,907,128,4.10739756,0.109293552,1171.15784,3008656476 +0,909,908,128,3.94902205,0.12260791,1043.97832,3008656476 +0,910,909,128,3.40726066,0.109230804,1171.83061,3008656476 +0,911,910,128,3.74977684,0.109327597,1170.79313,3008656476 +0,912,911,128,3.37907171,0.109316917,1170.90752,3008656476 +0,913,912,128,4.34617567,0.109137045,1172.83733,3008656476 +0,914,913,128,3.34162498,0.109245513,1171.67284,3008656476 +0,915,914,128,4.63681555,0.109356183,1170.48709,3008656476 +0,916,915,128,3.87026238,0.109244752,1171.681,3008656476 +0,917,916,128,3.43834829,0.109283948,1171.26076,3008656476 +0,918,917,128,3.04512477,0.109225775,1171.88457,3008656476 +0,919,918,128,3.53888392,0.121538136,1053.16738,3008656476 +0,920,919,128,3.35778427,0.109352798,1170.52332,3008656476 +0,921,920,128,3.56808329,0.109324544,1170.82583,3008656476 +0,922,921,128,3.43536282,0.109318977,1170.88545,3008656476 +0,923,922,128,3.79819608,0.109219911,1171.94748,3008656476 +0,924,923,128,4.4471612,0.109356668,1170.4819,3008656476 +0,925,924,128,3.17181373,0.109320775,1170.8662,3008656476 +0,926,925,128,4.25908804,0.10926592,1171.45401,3008656476 +0,927,926,128,3.28197932,0.109341934,1170.63962,3008656476 +0,928,927,128,3.41559124,0.122700607,1043.18962,3008656476 +0,929,928,128,4.19332218,0.109307642,1171.00687,3008656476 +0,930,929,128,4.02562428,0.109232039,1171.81736,3008656476 +0,931,930,128,2.90849805,0.109296441,1171.12688,3008656476 +0,932,931,128,3.53185892,0.109252279,1171.60027,3008656476 +0,933,932,128,3.249825,0.109251319,1171.61057,3008656476 +0,934,933,128,3.39449191,0.109334046,1170.72408,3008656476 +0,935,934,128,3.55116773,0.1093441,1170.61643,3008656476 +0,936,935,128,3.5404582,0.109272586,1171.38255,3008656476 +0,937,936,128,3.40812516,0.109292293,1171.17133,3008656476 +0,938,937,128,3.81989264,0.123474465,1036.65159,3008656476 +0,939,938,128,3.83003736,0.109325923,1170.81106,3008656476 +0,940,939,128,3.99242067,0.109477027,1169.19507,3008656476 +0,941,940,128,3.56212449,0.109423152,1169.77073,3008656476 +0,942,941,128,3.00633955,0.109357346,1170.47464,3008656476 +0,943,942,128,3.33702445,0.109498461,1168.9662,3008656476 +0,944,943,128,3.27760744,0.109617705,1167.69458,3008656476 +0,945,944,128,4.78020144,0.109534637,1168.58013,3008656476 +0,946,945,128,4.36171198,0.109475917,1169.20692,3008656476 +0,947,946,128,3.31321025,0.12131395,1055.11361,3008656476 +0,948,947,128,4.2090888,0.109181727,1172.35735,3008656476 +0,949,948,128,4.5589366,0.1093487,1170.56719,3008656476 +0,950,949,128,4.67965174,0.109295522,1171.13673,3008656476 +0,951,950,128,3.63740706,0.109269311,1171.41765,3008656476 +0,952,951,128,3.33287501,0.109283473,1171.26585,3008656476 +0,953,952,128,2.93890643,0.109259518,1171.52265,3008656476 +0,954,953,128,3.7567296,0.10929327,1171.16086,3008656476 +0,955,954,128,3.75335932,0.109254087,1171.58089,3008656476 +0,956,955,128,2.9200995,0.10934728,1170.58239,3008656476 +0,957,956,128,4.2485342,0.120994435,1057.89989,3008656476 +0,958,957,128,3.95585155,0.109344016,1170.61733,3008656476 +0,959,958,128,3.6459918,0.109256263,1171.55755,3008656476 +0,960,959,128,3.71504831,0.109535238,1168.57372,3008656476 +0,961,960,128,3.94895172,0.109341692,1170.64221,3008656476 +0,962,961,128,3.46794033,0.109371518,1170.32297,3008656476 +0,963,962,128,3.68201637,0.109407319,1169.94001,3008656476 +0,964,963,128,3.2844429,0.10925296,1171.59297,3008656476 +0,965,964,128,2.97628403,0.109381012,1170.22139,3008656476 +0,966,965,128,3.41940641,0.122738688,1042.86596,3008656476 +0,967,966,128,3.57039213,0.109302485,1171.06212,3008656476 +0,968,967,128,4.51204348,0.109354437,1170.50577,3008656476 +0,969,968,128,3.89798498,0.109209679,1172.05729,3008656476 +0,970,969,128,3.45962811,0.109350057,1170.55266,3008656476 +0,971,970,128,3.195822,0.10931047,1170.97658,3008656476 +0,972,971,128,3.54983354,0.10944352,1169.55303,3008656476 +0,973,972,128,2.76511788,0.109313784,1170.94108,3008656476 +0,974,973,128,3.20600438,0.109363625,1170.40744,3008656476 +0,975,974,128,3.67986989,0.109247484,1171.6517,3008656476 +0,976,975,128,4.02728748,0.123275324,1038.32621,3008656476 +0,977,976,128,3.84098077,0.109327097,1170.79849,3008656476 +0,978,977,128,4.11526823,0.109384443,1170.18469,3008656476 +0,979,978,128,3.93947554,0.109411267,1169.89779,3008656476 +0,980,979,128,3.94929886,0.109300913,1171.07896,3008656476 +0,981,980,128,3.37399507,0.109386844,1170.159,3008656476 +0,982,981,128,3.73744035,0.109726196,1166.54003,3008656476 +0,983,982,128,3.34959817,0.109295773,1171.13404,3008656476 +0,984,983,128,3.38954735,0.10926607,1171.4524,3008656476 +0,985,984,128,3.62131166,0.122426082,1045.52884,3008656476 +0,986,985,128,3.54260826,0.109517359,1168.76449,3008656476 +0,987,986,128,3.61307049,0.109299126,1171.09811,3008656476 +0,988,987,128,3.27219296,0.109182651,1172.34743,3008656476 +0,989,988,128,3.61677384,0.109265027,1171.46358,3008656476 +0,990,989,128,3.96536517,0.109371466,1170.32353,3008656476 +0,991,990,128,2.7619307,0.109218145,1171.96643,3008656476 +0,992,991,128,3.12930155,0.10930544,1171.03046,3008656476 +0,993,992,128,3.55188036,0.172416479,742.388435,3008656476 +0,994,993,128,2.50231147,0.121120263,1056.80088,3008656476 +0,995,994,128,2.98267913,0.109358165,1170.46587,3008656476 +0,996,995,128,2.58335257,0.109423463,1169.7674,3008656476 +0,997,996,128,3.48397827,0.10933645,1170.69834,3008656476 +0,998,997,128,3.39401555,0.109389993,1170.12531,3008656476 +0,999,998,128,3.21632552,0.109310714,1170.97396,3008656476 +0,1000,999,128,3.36262512,0.109319505,1170.8798,3008656476 +0,1001,1000,128,3.98672128,0.109267318,1171.43902,3008656476 +0,1002,1001,128,3.26607919,0.109426063,1169.73961,3008656476 +0,1003,1002,128,3.71143866,0.109249454,1171.63057,3008656476 +0,1004,1003,128,3.56155968,0.122943704,1041.12692,3008656476 +0,1005,1004,128,3.85894012,0.109247449,1171.65207,3008656476 +0,1006,1005,128,3.37112379,0.109404309,1169.9722,3008656476 +0,1007,1006,128,3.94254494,0.109317576,1170.90046,3008656476 +0,1008,1007,128,3.86050463,0.10931437,1170.9348,3008656476 +0,1009,1008,128,3.21959209,0.109359305,1170.45367,3008656476 +0,1010,1009,128,3.2161026,0.10939425,1170.07978,3008656476 +0,1011,1010,128,3.70053124,0.109303439,1171.0519,3008656476 +0,1012,1011,128,2.80700588,0.109392292,1170.10072,3008656476 +0,1013,1012,128,3.70917773,0.123335675,1037.81813,3008656476 +0,1014,1013,128,3.07254171,0.10883943,1176.04438,3008656476 +0,1015,1014,128,3.37477016,0.109300781,1171.08038,3008656476 +0,1016,1015,128,2.3091948,0.109262543,1171.49022,3008656476 +0,1017,1016,128,2.79196095,0.109419266,1169.81227,3008656476 +0,1018,1017,128,2.95749378,0.109398471,1170.03463,3008656476 +0,1019,1018,128,3.30278134,0.109357135,1170.4769,3008656476 +0,1020,1019,128,3.93251967,0.109431036,1169.68645,3008656476 +0,1021,1020,128,4.10789871,0.10932178,1170.85543,3008656476 +0,1022,1021,128,3.77503181,0.109212698,1172.02489,3008656476 +0,1023,1022,128,3.54618239,0.121209676,1056.0213,3008656476 +0,1024,1023,128,4.742733,0.109260857,1171.50829,3008656476 +0,1025,1024,128,4.20883369,0.109280803,1171.29447,3008656476 +0,1026,1025,128,3.68915081,0.109359586,1170.45066,3008656476 +0,1027,1026,128,3.31088161,0.109270513,1171.40477,3008656476 +0,1028,1027,128,3.21121693,0.110046317,1163.1466,3008656476 +0,1029,1028,128,3.24132681,0.109319003,1170.88518,3008656476 +0,1030,1029,128,3.48468137,0.109421492,1169.78847,3008656476 +0,1031,1030,128,2.92739367,0.109395809,1170.06311,3008656476 +0,1032,1031,128,3.61904788,0.121423778,1054.15926,3008656476 +0,1033,1032,128,3.06689095,0.109188207,1172.28777,3008656476 +0,1034,1033,128,3.30827427,0.109485121,1169.10863,3008656476 +0,1035,1034,128,3.77828717,0.109206481,1172.09161,3008656476 +0,1036,1035,128,3.99071407,0.109392475,1170.09877,3008656476 +0,1037,1036,128,3.94825411,0.109216962,1171.97913,3008656476 +0,1038,1037,128,3.58107066,0.109340821,1170.65154,3008656476 +0,1039,1038,128,3.51258564,0.109297164,1171.11913,3008656476 +0,1040,1039,128,3.18104219,0.109379622,1170.23626,3008656476 +0,1041,1040,128,3.71916318,0.109223009,1171.91424,3008656476 +0,1042,1041,128,3.77712679,0.123469111,1036.69654,3008656476 +0,1043,1042,128,3.34607053,0.109317378,1170.90258,3008656476 +0,1044,1043,128,2.38466287,0.109224527,1171.89796,3008656476 +0,1045,1044,128,2.79261279,0.109295479,1171.13719,3008656476 +0,1046,1045,128,3.30584311,0.109290358,1171.19206,3008656476 +0,1047,1046,128,3.31352568,0.109212515,1172.02685,3008656476 +0,1048,1047,128,3.27500868,0.109252167,1171.60147,3008656476 +0,1049,1048,128,3.93745136,0.109415221,1169.85552,3008656476 +0,1050,1049,128,3.94485283,0.109290418,1171.19142,3008656476 +0,1051,1050,128,4.23585939,0.122885293,1041.6218,3008656476 +0,1052,1051,128,3.66692638,0.109576675,1168.13181,3008656476 +0,1053,1052,128,3.723526,0.109364613,1170.39686,3008656476 +0,1054,1053,128,3.40852213,0.109562791,1168.27984,3008656476 +0,1055,1054,128,4.49523067,0.109206332,1172.09321,3008656476 +0,1056,1055,128,3.70428109,0.109334226,1170.72215,3008656476 +0,1057,1056,128,4.00793409,0.109270422,1171.40574,3008656476 +0,1058,1057,128,4.13178158,0.109387547,1170.15148,3008656476 +0,1059,1058,128,3.81639147,0.109308616,1170.99644,3008656476 +0,1060,1059,128,3.2116282,0.109401185,1170.00561,3008656476 +0,1061,1060,128,4.34107733,0.121452874,1053.90672,3008656476 +0,1062,1061,128,4.69248819,0.109299472,1171.0944,3008656476 +0,1063,1062,128,4.22027779,0.109402468,1169.99189,3008656476 +0,1064,1063,128,3.90066099,0.109332714,1170.73834,3008656476 +0,1065,1064,128,3.37136197,0.109297478,1171.11577,3008656476 +0,1066,1065,128,3.62680864,0.109271426,1171.39498,3008656476 +0,1067,1066,128,3.5838263,0.109425377,1169.74694,3008656476 +0,1068,1067,128,3.70645189,0.10922736,1171.86756,3008656476 +0,1069,1068,128,3.87499094,0.109251177,1171.61209,3008656476 +0,1070,1069,128,4.17415285,0.121709515,1051.68441,3008656476 +0,1071,1070,128,4.03426075,0.109451385,1169.46898,3008656476 +0,1072,1071,128,4.24601984,0.109420438,1169.79974,3008656476 +0,1073,1072,128,3.19824076,0.109269552,1171.41507,3008656476 +0,1074,1073,128,4.03736305,0.109281863,1171.28311,3008656476 +0,1075,1074,128,3.51730061,0.109190461,1172.26357,3008656476 +0,1076,1075,128,3.52599525,0.109246586,1171.66133,3008656476 +0,1077,1076,128,4.1672821,0.10938413,1170.18803,3008656476 +0,1078,1077,128,3.78105664,0.10930461,1171.03936,3008656476 +0,1079,1078,128,4.24729633,0.10917502,1172.42937,3008656476 +0,1080,1079,128,4.6112318,0.123008434,1040.57905,3008656476 +0,1081,1080,128,3.49419785,0.109308103,1171.00193,3008656476 +0,1082,1081,128,2.24841022,0.109220403,1171.94221,3008656476 +0,1083,1082,128,3.26370597,0.109211585,1172.03683,3008656476 +0,1084,1083,128,3.62212348,0.109309095,1170.99131,3008656476 +0,1085,1084,128,3.68086362,0.109072071,1173.53598,3008656476 +0,1086,1085,128,3.7541852,0.109247286,1171.65382,3008656476 +0,1087,1086,128,3.78830695,0.109340453,1170.65548,3008656476 +0,1088,1087,128,3.29957938,0.109457282,1169.40598,3008656476 +0,1089,1088,128,3.30713582,0.122349337,1046.18466,3008656476 +0,1090,1089,128,3.32718849,0.10971423,1166.66726,3008656476 +0,1091,1090,128,3.43246746,0.109327159,1170.79783,3008656476 +0,1092,1091,128,3.74697137,0.109387323,1170.15388,3008656476 +0,1093,1092,128,3.11706901,0.109437603,1169.61626,3008656476 +0,1094,1093,128,4.14523411,0.109488368,1169.07396,3008656476 +0,1095,1094,128,3.99323893,0.109197364,1172.18947,3008656476 +0,1096,1095,128,3.64630604,0.109292576,1171.1683,3008656476 +0,1097,1096,128,3.17753935,0.109369407,1170.34556,3008656476 +0,1098,1097,128,3.35833526,0.109343954,1170.61799,3008656476 +0,1099,1098,128,3.64197373,0.121468652,1053.76982,3008656476 +0,1100,1099,128,4.06986094,0.109286634,1171.23197,3008656476 +0,1101,1100,128,4.14918566,0.109360279,1170.44325,3008656476 +0,1102,1101,128,3.75692129,0.109319134,1170.88377,3008656476 +0,1103,1102,128,3.92614055,0.109404719,1169.96781,3008656476 +0,1104,1103,128,3.80900168,0.109296542,1171.1258,3008656476 +0,1105,1104,128,3.58964944,0.109280502,1171.29769,3008656476 +0,1106,1105,128,4.4487114,0.109392383,1170.09975,3008656476 +0,1107,1106,128,3.67897177,0.109282376,1171.27761,3008656476 +0,1108,1107,128,3.58760619,0.120897284,1058.75,3008656476 +0,1109,1108,128,3.3747654,0.109798578,1165.77102,3008656476 +0,1110,1109,128,2.84521174,0.109249148,1171.63385,3008656476 +0,1111,1110,128,3.40096831,0.109231931,1171.81852,3008656476 +0,1112,1111,128,3.30240655,0.109265041,1171.46343,3008656476 +0,1113,1112,128,3.27160907,0.109276582,1171.33971,3008656476 +0,1114,1113,128,3.11946058,0.109329247,1170.77547,3008656476 +0,1115,1114,128,3.97986341,0.109374691,1170.28902,3008656476 +0,1116,1115,128,2.69482183,0.109211026,1172.04283,3008656476 +0,1117,1116,128,2.95148396,0.109338248,1170.67908,3008656476 +0,1118,1117,128,2.8453455,0.123971904,1032.49201,3008656476 +0,1119,1118,128,3.43626094,0.109259808,1171.51954,3008656476 +0,1120,1119,128,3.06805205,0.109225542,1171.88707,3008656476 +0,1121,1120,128,2.34299588,0.109431384,1169.68273,3008656476 +0,1122,1121,128,3.24079061,0.109297987,1171.11032,3008656476 +0,1123,1122,128,3.27741003,0.109502106,1168.92729,3008656476 +0,1124,1123,128,2.60403681,0.109479634,1169.16723,3008656476 +0,1125,1124,128,2.18278146,0.109477405,1169.19103,3008656476 +0,1126,1125,128,3.8373518,0.109629346,1167.57059,3008656476 +0,1127,1126,128,2.88827848,0.122509029,1044.82095,3008656476 +0,1128,1127,128,4.49743223,0.109278154,1171.32286,3008656476 +0,1129,1128,128,3.95685577,0.109431751,1169.67881,3008656476 +0,1130,1129,128,2.36204934,0.109269169,1171.41918,3008656476 +0,1131,1130,128,3.54665875,0.109266217,1171.45082,3008656476 +0,1132,1131,128,3.08781981,0.109418115,1169.82458,3008656476 +0,1133,1132,128,3.00207233,0.109319863,1170.87596,3008656476 +0,1134,1133,128,3.00493097,0.109453323,1169.44828,3008656476 +0,1135,1134,128,4.10744858,0.109262004,1171.49599,3008656476 +0,1136,1135,128,3.86659884,0.109364328,1170.39991,3008656476 +0,1137,1136,128,3.43216014,0.121542608,1053.12863,3008656476 +0,1138,1137,128,3.80083966,0.109359701,1170.44943,3008656476 +0,1139,1138,128,3.33567357,0.109277063,1171.33456,3008656476 +0,1140,1139,128,3.44764447,0.109388239,1170.14408,3008656476 +0,1141,1140,128,3.4298377,0.109276299,1171.34274,3008656476 +0,1142,1141,128,3.48756218,0.10946731,1169.29885,3008656476 +0,1143,1142,128,3.51455116,0.109325926,1170.81103,3008656476 +0,1144,1143,128,3.11290741,0.109224251,1171.90092,3008656476 +0,1145,1144,128,3.6386447,0.10922346,1171.9094,3008656476 +0,1146,1145,128,4.22929716,0.120833709,1059.30705,3008656476 +0,1147,1146,128,4.36343956,0.109699549,1166.82339,3008656476 +0,1148,1147,128,3.77546525,0.109254475,1171.57672,3008656476 +0,1149,1148,128,4.22590828,0.109283624,1171.26423,3008656476 +0,1150,1149,128,3.57675934,0.10930997,1170.98193,3008656476 +0,1151,1150,128,3.82835913,0.109188364,1172.28609,3008656476 +0,1152,1151,128,3.71296191,0.109368988,1170.35004,3008656476 +0,1153,1152,128,4.12551308,0.109291328,1171.18167,3008656476 +0,1154,1153,128,3.67636895,0.109181678,1172.35787,3008656476 +0,1155,1154,128,3.58888888,0.109349624,1170.55729,3008656476 +0,1156,1155,128,3.68136096,0.124071108,1031.66645,3008656476 +0,1157,1156,128,3.76955962,0.109340417,1170.65586,3008656476 +0,1158,1157,128,4.42852068,0.109317011,1170.90651,3008656476 +0,1159,1158,128,3.80989361,0.109383523,1170.19453,3008656476 +0,1160,1159,128,3.95665693,0.109485479,1169.10481,3008656476 +0,1161,1160,128,3.95121121,0.109383752,1170.19208,3008656476 +0,1162,1161,128,3.8118906,0.109311891,1170.96135,3008656476 +0,1163,1162,128,3.0799799,0.109359789,1170.44849,3008656476 +0,1164,1163,128,3.43865204,0.109396834,1170.05214,3008656476 +0,1165,1164,128,3.59991693,0.12229916,1046.61389,3008656476 +0,1166,1165,128,4.12544012,0.10766369,1188.88736,3008656476 +0,1167,1166,128,3.76718426,0.109222554,1171.91913,3008656476 +0,1168,1167,128,4.05067921,0.109250311,1171.62138,3008656476 +0,1169,1168,128,3.47153282,0.109200822,1172.15235,3008656476 +0,1170,1169,128,4.19910574,0.109216217,1171.98712,3008656476 +0,1171,1170,128,3.55812907,0.109261135,1171.50531,3008656476 +0,1172,1171,128,4.09049702,0.109184143,1172.33141,3008656476 +0,1173,1172,128,3.51182604,0.109339061,1170.67038,3008656476 +0,1174,1173,128,3.71807957,0.109404167,1169.97372,3008656476 +0,1175,1174,128,4.26553488,0.121143301,1056.5999,3008656476 +0,1176,1175,128,4.35017872,0.109368619,1170.35399,3008656476 +0,1177,1176,128,4.09982634,0.109332907,1170.73627,3008656476 +0,1178,1177,128,3.48156333,0.109348965,1170.56435,3008656476 +0,1179,1178,128,3.57578468,0.109383334,1170.19655,3008656476 +0,1180,1179,128,3.86421514,0.109273037,1171.37771,3008656476 +0,1181,1180,128,4.10672188,0.109302342,1171.06365,3008656476 +0,1182,1181,128,3.88695312,0.10931364,1170.94262,3008656476 +0,1183,1182,128,4.08205128,0.109216976,1171.97898,3008656476 +0,1184,1183,128,2.98635936,0.109258875,1171.52954,3008656476 +0,1185,1184,128,3.27206087,0.111413584,1148.87248,3008656476 +0,1186,1185,128,4.30180264,0.109298501,1171.10481,3008656476 +0,1187,1186,128,4.0739994,0.109444129,1169.54652,3008656476 +0,1188,1187,128,4.1539464,0.109281114,1171.29113,3008656476 +0,1189,1188,128,3.98534417,0.109383581,1170.19391,3008656476 +0,1190,1189,128,3.60286736,0.109308974,1170.9926,3008656476 +0,1191,1190,128,3.3386054,0.109332277,1170.74302,3008656476 +0,1192,1191,128,2.74997783,0.10922478,1171.89524,3008656476 +0,1193,1192,128,3.59727836,0.109291422,1171.18066,3008656476 +0,1194,1193,128,3.08073926,0.12095059,1058.28339,3008656476 +0,1195,1194,128,2.4675281,0.109312244,1170.95757,3008656476 +0,1196,1195,128,2.86684179,0.109420724,1169.79668,3008656476 +0,1197,1196,128,2.59467936,0.109276744,1171.33797,3008656476 +0,1198,1197,128,3.30059767,0.10909991,1173.23653,3008656476 +0,1199,1198,128,2.97018099,0.109398638,1170.03285,3008656476 +0,1200,1199,128,4.43906403,0.109172433,1172.45715,3008656476 +0,1201,1200,128,3.59600663,0.109365913,1170.38295,3008656476 +0,1202,1201,128,4.17152309,0.109274485,1171.36219,3008656476 +0,1203,1202,128,3.56069946,0.109355798,1170.49121,3008656476 +0,1204,1203,128,3.73208308,0.122173391,1047.69131,3008656476 +0,1205,1204,128,3.73886943,0.109277978,1171.32475,3008656476 +0,1206,1205,128,4.03760242,0.109248887,1171.63665,3008656476 +0,1207,1206,128,3.76304269,0.109341288,1170.64654,3008656476 +0,1208,1207,128,3.58773279,0.109332317,1170.74259,3008656476 +0,1209,1208,128,3.7662251,0.109260084,1171.51658,3008656476 +0,1210,1209,128,3.29934645,0.109283897,1171.26131,3008656476 +0,1211,1210,128,3.8180716,0.109393281,1170.09014,3008656476 +0,1212,1211,128,4.09765244,0.109378418,1170.24914,3008656476 +0,1213,1212,128,3.86643076,0.123492508,1036.50013,3008656476 +0,1214,1213,128,3.68993092,0.109319793,1170.87671,3008656476 +0,1215,1214,128,4.45541334,0.109465647,1169.31662,3008656476 +0,1216,1215,128,4.17369223,0.109416158,1169.8455,3008656476 +0,1217,1216,128,3.46934891,0.109533176,1168.59571,3008656476 +0,1218,1217,128,3.79927683,0.109483216,1169.12897,3008656476 +0,1219,1218,128,3.5203054,0.109443446,1169.55382,3008656476 +0,1220,1219,128,4.1021452,0.109409834,1169.91312,3008656476 +0,1221,1220,128,3.05783987,0.109422187,1169.78104,3008656476 +0,1222,1221,128,3.61265039,0.109449857,1169.48531,3008656476 +0,1223,1222,128,3.55026364,0.121452033,1053.91402,3008656476 +0,1224,1223,128,3.40027094,0.109414891,1169.85905,3008656476 +0,1225,1224,128,4.30548143,0.109337265,1170.68961,3008656476 +0,1226,1225,128,4.30697823,0.109287559,1171.22206,3008656476 +0,1227,1226,128,3.66109371,0.109296656,1171.12458,3008656476 +0,1228,1227,128,4.07550144,0.109385442,1170.174,3008656476 +0,1229,1228,128,3.94702196,0.109302303,1171.06407,3008656476 +0,1230,1229,128,3.72552252,0.109361226,1170.43311,3008656476 +0,1231,1230,128,3.50097823,0.109349712,1170.55635,3008656476 +0,1232,1231,128,3.11038232,0.121301255,1055.22404,3008656476 +0,1233,1232,128,4.09533596,0.10929242,1171.16997,3008656476 +0,1234,1233,128,4.09310865,0.109414874,1169.85923,3008656476 +0,1235,1234,128,3.16826987,0.109351171,1170.54073,3008656476 +0,1236,1235,128,3.85583782,0.109230082,1171.83836,3008656476 +0,1237,1236,128,3.5996213,0.109467033,1169.30181,3008656476 +0,1238,1237,128,3.87976074,0.109390307,1170.12196,3008656476 +0,1239,1238,128,3.45782113,0.109197598,1172.18696,3008656476 +0,1240,1239,128,3.88805413,0.109448831,1169.49627,3008656476 +0,1241,1240,128,3.98288608,0.10941809,1169.82484,3008656476 +0,1242,1241,128,2.48540831,0.123438484,1036.95376,3008656476 +0,1243,1242,128,3.4999814,0.109282957,1171.27138,3008656476 +0,1244,1243,128,2.60438013,0.109386547,1170.16218,3008656476 +0,1245,1244,128,3.74245548,0.109254247,1171.57917,3008656476 +0,1246,1245,128,2.93396664,0.109346547,1170.59023,3008656476 +0,1247,1246,128,3.4106791,0.109293804,1171.15514,3008656476 +0,1248,1247,128,3.09574461,0.109312526,1170.95455,3008656476 +0,1249,1248,128,2.536901,0.109258652,1171.53194,3008656476 +0,1250,1249,128,2.478302,0.109305149,1171.03358,3008656476 +0,1251,1250,128,2.64302063,0.123575448,1035.80446,3008656476 +0,1252,1251,128,2.19691658,0.109318752,1170.88786,3008656476 +0,1253,1252,128,2.66173959,0.109234417,1171.79185,3008656476 +0,1254,1253,128,2.84617043,0.109271341,1171.39589,3008656476 +0,1255,1254,128,2.70570087,0.109439319,1169.59792,3008656476 +0,1256,1255,128,2.30873632,0.109353816,1170.51242,3008656476 +0,1257,1256,128,2.57748437,0.109384427,1170.18486,3008656476 +0,1258,1257,128,2.86312437,0.109422284,1169.78001,3008656476 +0,1259,1258,128,2.29812336,0.109284337,1171.25659,3008656476 +0,1260,1259,128,3.5142684,0.109272831,1171.37992,3008656476 +0,1261,1260,128,4.13216972,0.122149446,1047.89669,3008656476 +0,1262,1261,128,3.95460963,0.109342032,1170.63857,3008656476 +0,1263,1262,128,4.26884651,0.109241405,1171.7169,3008656476 +0,1264,1263,128,4.22357368,0.109342081,1170.63805,3008656476 +0,1265,1264,128,3.89808893,0.10925863,1171.53217,3008656476 +0,1266,1265,128,3.85230875,0.109448926,1169.49526,3008656476 +0,1267,1266,128,3.74862909,0.109401105,1170.00646,3008656476 +0,1268,1267,128,3.97303247,0.109283597,1171.26452,3008656476 +0,1269,1268,128,3.80068207,0.109241262,1171.71843,3008656476 +0,1270,1269,128,3.79542279,0.121352134,1054.78162,3008656476 +0,1271,1270,128,2.940521,0.109311757,1170.96279,3008656476 +0,1272,1271,128,3.2732358,0.109288899,1171.2077,3008656476 +0,1273,1272,128,3.14308786,0.109402644,1169.99,3008656476 +0,1274,1273,128,4.60326672,0.109397714,1170.04273,3008656476 +0,1275,1274,128,3.25045609,0.109305126,1171.03383,3008656476 +0,1276,1275,128,4.21874285,0.109339833,1170.66211,3008656476 +0,1277,1276,128,4.11082268,0.109481416,1169.1482,3008656476 +0,1278,1277,128,3.06978226,0.109332388,1170.74183,3008656476 +0,1279,1278,128,3.45887113,0.109311428,1170.96631,3008656476 +0,1280,1279,128,3.92916822,0.122256108,1046.98245,3008656476 +0,1281,1280,128,3.44845748,0.109335249,1170.71119,3008656476 +0,1282,1281,128,3.91004801,0.109540356,1168.51912,3008656476 +0,1283,1282,128,3.85532975,0.10933774,1170.68452,3008656476 +0,1284,1283,128,2.87306428,0.109339961,1170.66074,3008656476 +0,1285,1284,128,3.49226904,0.109291462,1171.18023,3008656476 +0,1286,1285,128,3.8160758,0.109450437,1169.47911,3008656476 +0,1287,1286,128,3.42572522,0.109328655,1170.7818,3008656476 +0,1288,1287,128,3.74916887,0.109332879,1170.73657,3008656476 +0,1289,1288,128,2.86667848,0.12335371,1037.6664,3008656476 +0,1290,1289,128,3.53881407,0.109402015,1169.99673,3008656476 +0,1291,1290,128,3.56420565,0.109429214,1169.70593,3008656476 +0,1292,1291,128,3.32710576,0.10927462,1171.36074,3008656476 +0,1293,1292,128,3.831393,0.109173497,1172.44573,3008656476 +0,1294,1293,128,3.10020971,0.10942262,1169.77641,3008656476 +0,1295,1294,128,3.06638193,0.109350105,1170.55215,3008656476 +0,1296,1295,128,3.07053709,0.109229935,1171.83994,3008656476 +0,1297,1296,128,3.34868097,0.109256534,1171.55465,3008656476 +0,1298,1297,128,3.83598614,0.109249579,1171.62923,3008656476 +0,1299,1298,128,3.52661991,0.122304337,1046.56959,3008656476 +0,1300,1299,128,3.82560897,0.109305076,1171.03436,3008656476 +0,1301,1300,128,3.4906044,0.109306258,1171.0217,3008656476 +0,1302,1301,128,3.42552257,0.109336106,1170.70202,3008656476 +0,1303,1302,128,3.15224004,0.109423241,1169.76977,3008656476 +0,1304,1303,128,3.41102266,0.109373883,1170.29767,3008656476 +0,1305,1304,128,3.45310116,0.109192978,1172.23655,3008656476 +0,1306,1305,128,3.82929659,0.109395312,1170.06842,3008656476 +0,1307,1306,128,3.46242809,0.109462288,1169.3525,3008656476 +0,1308,1307,128,3.65787411,0.121237919,1055.7753,3008656476 +0,1309,1308,128,2.77966714,0.109287173,1171.2262,3008656476 +0,1310,1309,128,3.67163277,0.109262572,1171.4899,3008656476 +0,1311,1310,128,4.51663685,0.109348972,1170.56427,3008656476 +0,1312,1311,128,3.34043455,0.109267267,1171.43957,3008656476 +0,1313,1312,128,3.12208009,0.109127206,1172.94307,3008656476 +0,1314,1313,128,3.68227863,0.109401514,1170.00209,3008656476 +0,1315,1314,128,3.07066846,0.109342866,1170.62964,3008656476 +0,1316,1315,128,3.28395939,0.10936772,1170.36361,3008656476 +0,1317,1316,128,3.52140665,0.109392783,1170.09547,3008656476 +0,1318,1317,128,3.32358503,0.122584371,1044.17879,3008656476 +0,1319,1318,128,2.49641991,0.109339878,1170.66163,3008656476 +0,1320,1319,128,3.48411655,0.109329533,1170.7724,3008656476 +0,1321,1320,128,3.92761397,0.109594149,1167.94556,3008656476 +0,1322,1321,128,3.39251256,0.10939884,1170.03069,3008656476 +0,1323,1322,128,3.90974283,0.109290814,1171.18718,3008656476 +0,1324,1323,128,3.35427809,0.109356794,1170.48055,3008656476 +0,1325,1324,128,2.35438371,0.109380213,1170.22994,3008656476 +0,1326,1325,128,3.08272099,0.109340235,1170.65781,3008656476 +0,1327,1326,128,4.22349167,0.123465774,1036.72456,3008656476 +0,1328,1327,128,3.81412745,0.109337761,1170.6843,3008656476 +0,1329,1328,128,3.80166125,0.109318818,1170.88716,3008656476 +0,1330,1329,128,3.25369596,0.109130751,1172.90497,3008656476 +0,1331,1330,128,3.52343726,0.109368735,1170.35275,3008656476 +0,1332,1331,128,3.00102544,0.109328061,1170.78817,3008656476 +0,1333,1332,128,3.57001162,0.10929705,1171.12036,3008656476 +0,1334,1333,128,3.15910983,0.109292242,1171.17188,3008656476 +0,1335,1334,128,4.02049351,0.109297313,1171.11754,3008656476 +0,1336,1335,128,3.11575341,0.109319112,1170.88401,3008656476 +0,1337,1336,128,3.83137655,0.122883916,1041.63347,3008656476 +0,1338,1337,128,2.85931087,0.109305144,1171.03363,3008656476 +0,1339,1338,128,3.17875767,0.109217241,1171.97614,3008656476 +0,1340,1339,128,3.06436563,0.109237635,1171.75733,3008656476 +0,1341,1340,128,3.06357741,0.109253156,1171.59087,3008656476 +0,1342,1341,128,3.15110517,0.109369808,1170.34127,3008656476 +0,1343,1342,128,3.31975675,0.109227556,1171.86546,3008656476 +0,1344,1343,128,3.14971471,0.109392946,1170.09373,3008656476 +0,1345,1344,128,3.76245594,0.109332155,1170.74432,3008656476 +0,1346,1345,128,3.36563444,0.121101033,1056.96869,3008656476 +0,1347,1346,128,3.83453679,0.10941723,1169.83404,3008656476 +0,1348,1347,128,3.07106495,0.109356626,1170.48234,3008656476 +0,1349,1348,128,2.61053181,0.10929041,1171.19151,3008656476 +0,1350,1349,128,3.7500453,0.1092622,1171.49389,3008656476 +0,1351,1350,128,3.63912344,0.109196157,1172.20242,3008656476 +0,1352,1351,128,4.17782402,0.10933271,1170.73838,3008656476 +0,1353,1352,128,3.21374083,0.109304316,1171.0425,3008656476 +0,1354,1353,128,2.9483943,0.109298429,1171.10558,3008656476 +0,1355,1354,128,3.65764022,0.109313819,1170.9407,3008656476 +0,1356,1355,128,2.86044478,0.121414103,1054.24326,3008656476 +0,1357,1356,128,3.08581996,0.109328586,1170.78254,3008656476 +0,1358,1357,128,3.15104437,0.109339012,1170.6709,3008656476 +0,1359,1358,128,3.88326931,0.109305957,1171.02492,3008656476 +0,1360,1359,128,2.93152094,0.109368908,1170.3509,3008656476 +0,1361,1360,128,2.94061065,0.109309555,1170.98638,3008656476 +0,1362,1361,128,3.83274269,0.109310809,1170.97295,3008656476 +0,1363,1362,128,3.94430733,0.109359603,1170.45048,3008656476 +0,1364,1363,128,2.9686842,0.10930034,1171.0851,3008656476 +0,1365,1364,128,2.88592362,0.12379847,1033.93846,3008656476 +0,1366,1365,128,3.33159876,0.109683762,1166.99134,3008656476 +0,1367,1366,128,4.10623264,0.109217038,1171.97831,3008656476 +0,1368,1367,128,3.9249475,0.109437401,1169.61842,3008656476 +0,1369,1368,128,3.38100934,0.109307221,1171.01138,3008656476 +0,1370,1369,128,3.28439879,0.109360206,1170.44403,3008656476 +0,1371,1370,128,3.22323823,0.109270484,1171.40508,3008656476 +0,1372,1371,128,3.82203603,0.109345703,1170.59927,3008656476 +0,1373,1372,128,3.31816912,0.109305757,1171.02707,3008656476 +0,1374,1373,128,4.33900499,0.109391259,1170.11177,3008656476 +0,1375,1374,128,4.36521578,0.123517459,1036.29075,3008656476 +0,1376,1375,128,4.21263695,0.109173358,1172.44722,3008656476 +0,1377,1376,128,4.17816019,0.109222432,1171.92043,3008656476 +0,1378,1377,128,3.72222614,0.109291585,1171.17892,3008656476 +0,1379,1378,128,2.8877883,0.109249523,1171.62983,3008656476 +0,1380,1379,128,3.31042886,0.109339125,1170.66969,3008656476 +0,1381,1380,128,3.64431596,0.109353618,1170.51454,3008656476 +0,1382,1381,128,3.03355598,0.109185959,1172.31191,3008656476 +0,1383,1382,128,3.41600156,0.109312116,1170.95894,3008656476 +0,1384,1383,128,3.26264739,0.121290178,1055.32041,3008656476 +0,1385,1384,128,2.86172104,0.109733719,1166.46006,3008656476 +0,1386,1385,128,3.46348095,0.109313499,1170.94413,3008656476 +0,1387,1386,128,2.30300331,0.109233033,1171.8067,3008656476 +0,1388,1387,128,3.11484313,0.109415067,1169.85716,3008656476 +0,1389,1388,128,3.66128802,0.109267982,1171.4319,3008656476 +0,1390,1389,128,3.05350947,0.109340573,1170.65419,3008656476 +0,1391,1390,128,2.89543152,0.1092112,1172.04096,3008656476 +0,1392,1391,128,2.84944844,0.109385412,1170.17432,3008656476 +0,1393,1392,128,3.05930257,0.109306876,1171.01508,3008656476 +0,1394,1393,128,3.44262886,0.121310751,1055.14144,3008656476 +0,1395,1394,128,3.98424768,0.109248951,1171.63596,3008656476 +0,1396,1395,128,3.3619678,0.109470162,1169.26839,3008656476 +0,1397,1396,128,3.27595425,0.109330392,1170.7632,3008656476 +0,1398,1397,128,4.35811424,0.109574443,1168.15561,3008656476 +0,1399,1398,128,3.21648908,0.109520037,1168.73591,3008656476 +0,1400,1399,128,3.75579572,0.109480372,1169.15934,3008656476 +0,1401,1400,128,3.96280646,0.109411532,1169.89496,3008656476 +0,1402,1401,128,3.99277925,0.109488885,1169.06844,3008656476 +0,1403,1402,128,3.73689651,0.122199919,1047.46387,3008656476 +0,1404,1403,128,3.85118008,0.109739079,1166.40308,3008656476 +0,1405,1404,128,2.69830966,0.109201456,1172.14554,3008656476 +0,1406,1405,128,3.39369202,0.109348179,1170.57276,3008656476 +0,1407,1406,128,4.71667099,0.109375929,1170.27577,3008656476 +0,1408,1407,128,4.33351851,0.109327455,1170.79466,3008656476 +0,1409,1408,128,4.68775749,0.109270973,1171.39984,3008656476 +0,1410,1409,128,4.59637117,0.109245969,1171.66795,3008656476 +0,1411,1410,128,3.87613368,0.109352631,1170.52511,3008656476 +0,1412,1411,128,4.8882184,0.109361193,1170.43346,3008656476 +0,1413,1412,128,4.42087698,0.124802761,1025.61834,3008656476 +0,1414,1413,128,4.50026751,0.110050635,1163.10097,3008656476 +0,1415,1414,128,4.14845753,0.109287495,1171.22275,3008656476 +0,1416,1415,128,4.1888442,0.109444039,1169.54748,3008656476 +0,1417,1416,128,4.00882626,0.109222552,1171.91915,3008656476 +0,1418,1417,128,4.17240763,0.10913846,1172.82212,3008656476 +0,1419,1418,128,4.06095409,0.109194367,1172.22164,3008656476 +0,1420,1419,128,4.3794632,0.109130519,1172.90746,3008656476 +0,1421,1420,128,4.11499119,0.109319182,1170.88326,3008656476 +0,1422,1421,128,3.75864482,0.12280733,1042.28306,3008656476 +0,1423,1422,128,4.52555084,0.109367869,1170.36202,3008656476 +0,1424,1423,128,3.83583474,0.109302908,1171.05759,3008656476 +0,1425,1424,128,4.23411512,0.109255326,1171.5676,3008656476 +0,1426,1425,128,5.01933384,0.109374416,1170.29196,3008656476 +0,1427,1426,128,3.80580044,0.109825361,1165.48672,3008656476 +0,1428,1427,128,4.15118694,0.109421707,1169.78617,3008656476 +0,1429,1428,128,3.72966242,0.109368653,1170.35363,3008656476 +0,1430,1429,128,4.58054018,0.109442791,1169.56082,3008656476 +0,1431,1430,128,4.1022296,0.109299275,1171.09651,3008656476 +0,1432,1431,128,4.30184412,0.121866949,1050.32579,3008656476 +0,1433,1432,128,4.65328979,0.109333175,1170.7334,3008656476 +0,1434,1433,128,3.55258417,0.109373814,1170.2984,3008656476 +0,1435,1434,128,3.73491645,0.109311236,1170.96837,3008656476 +0,1436,1435,128,4.28194141,0.109345047,1170.60629,3008656476 +0,1437,1436,128,3.16313696,0.109268179,1171.42979,3008656476 +0,1438,1437,128,4.26057959,0.109347461,1170.58045,3008656476 +0,1439,1438,128,3.95447803,0.109319624,1170.87852,3008656476 +0,1440,1439,128,3.87864804,0.109247818,1171.64811,3008656476 +0,1441,1440,128,4.61960411,0.121182195,1056.26078,3008656476 +0,1442,1441,128,4.53467035,0.109513404,1168.8067,3008656476 +0,1443,1442,128,4.52760649,0.109339506,1170.66561,3008656476 +0,1444,1443,128,3.33902955,0.109330842,1170.75838,3008656476 +0,1445,1444,128,4.46497059,0.109234161,1171.7946,3008656476 +0,1446,1445,128,4.13994837,0.109327736,1170.79165,3008656476 +0,1447,1446,128,4.33134842,0.109400625,1170.0116,3008656476 +0,1448,1447,128,3.83838725,0.109412306,1169.88669,3008656476 +0,1449,1448,128,3.3302021,0.109273475,1171.37302,3008656476 +0,1450,1449,128,4.67238426,0.109343715,1170.62055,3008656476 +0,1451,1450,128,3.36278367,0.123464671,1036.73382,3008656476 +0,1452,1451,128,3.8052454,0.10931425,1170.93609,3008656476 +0,1453,1452,128,3.78347993,0.109320635,1170.8677,3008656476 +0,1454,1453,128,4.10007429,0.109404689,1169.96814,3008656476 +0,1455,1454,128,3.72720027,0.109378295,1170.25046,3008656476 +0,1456,1455,128,2.79451275,0.109245068,1171.67761,3008656476 +0,1457,1456,128,4.30120802,0.109333295,1170.73212,3008656476 +0,1458,1457,128,4.18331909,0.109224168,1171.90181,3008656476 +0,1459,1458,128,4.22630262,0.109253497,1171.58721,3008656476 +0,1460,1459,128,4.14026976,0.120988201,1057.9544,3008656476 +0,1461,1460,128,3.5963006,0.107594347,1189.65358,3008656476 +0,1462,1461,128,2.61412621,0.10934733,1170.58185,3008656476 +0,1463,1462,128,3.15213776,0.109299744,1171.09149,3008656476 +0,1464,1463,128,3.84960151,0.109282695,1171.27419,3008656476 +0,1465,1464,128,2.67422938,0.109343079,1170.62736,3008656476 +0,1466,1465,128,3.63784862,0.109276021,1171.34572,3008656476 +0,1467,1466,128,4.53441238,0.109414282,1169.86556,3008656476 +0,1468,1467,128,3.85114646,0.109328326,1170.78533,3008656476 +0,1469,1468,128,3.35715175,0.109332006,1170.74592,3008656476 +0,1470,1469,128,4.58368969,0.12291894,1041.33667,3008656476 +0,1471,1470,128,3.44027519,0.109382732,1170.20299,3008656476 +0,1472,1471,128,4.6139307,0.109340873,1170.65098,3008656476 +0,1473,1472,128,3.98489571,0.109403134,1169.98476,3008656476 +0,1474,1473,128,4.40275097,0.109357544,1170.47252,3008656476 +0,1475,1474,128,3.52302098,0.109320203,1170.87232,3008656476 +0,1476,1475,128,3.47065353,0.10926943,1171.41638,3008656476 +0,1477,1476,128,3.6416409,0.109374707,1170.28885,3008656476 +0,1478,1477,128,4.11222124,0.109497376,1168.97778,3008656476 +0,1479,1478,128,3.96844792,0.109332062,1170.74532,3008656476 +0,1480,1479,128,4.24463797,0.111853891,1144.35,3008656476 +0,1481,1480,128,3.88112807,0.10929762,1171.11425,3008656476 +0,1482,1481,128,4.4405818,0.109350574,1170.54712,3008656476 +0,1483,1482,128,3.6551373,0.10941472,1169.86087,3008656476 +0,1484,1483,128,3.53413916,0.109410932,1169.90138,3008656476 +0,1485,1484,128,3.85976553,0.10935652,1170.48348,3008656476 +0,1486,1485,128,4.14060068,0.109264283,1171.47156,3008656476 +0,1487,1486,128,4.17531157,0.109268985,1171.42115,3008656476 +0,1488,1487,128,4.24707794,0.109415356,1169.85407,3008656476 +0,1489,1488,128,3.65133953,0.121421892,1054.17563,3008656476 +0,1490,1489,128,3.38694549,0.109302739,1171.0594,3008656476 +0,1491,1490,128,3.75632763,0.109297244,1171.11828,3008656476 +0,1492,1491,128,3.81934071,0.109291127,1171.18382,3008656476 +0,1493,1492,128,3.85082531,0.109256399,1171.55609,3008656476 +0,1494,1493,128,3.72982049,0.109374735,1170.28855,3008656476 +0,1495,1494,128,2.77465463,0.109353372,1170.51717,3008656476 +0,1496,1495,128,3.38683558,0.109189058,1172.27864,3008656476 +0,1497,1496,128,3.54731131,0.109349704,1170.55644,3008656476 +0,1498,1497,128,3.60504985,0.109318467,1170.89092,3008656476 +0,1499,1498,128,3.82570481,0.120090554,1065.86235,3008656476 +0,1500,1499,128,3.35234118,0.109344375,1170.61349,3008656476 +0,1501,1500,128,3.95281529,0.109346082,1170.59521,3008656476 +0,1502,1501,128,4.37537575,0.109282107,1171.28049,3008656476 +0,1503,1502,128,3.34338284,0.109474033,1169.22704,3008656476 +0,1504,1503,128,3.7968235,0.109279154,1171.31214,3008656476 +0,1505,1504,128,3.5197885,0.109262062,1171.49537,3008656476 +0,1506,1505,128,3.90924597,0.109477999,1169.18469,3008656476 +0,1507,1506,128,3.24524307,0.109279165,1171.31202,3008656476 +0,1508,1507,128,3.82378507,0.124752581,1026.03088,3008656476 +0,1509,1508,128,3.44876432,0.109279775,1171.30549,3008656476 +0,1510,1509,128,4.21921444,0.109388093,1170.14564,3008656476 +0,1511,1510,128,4.57894135,0.109416621,1169.84055,3008656476 +0,1512,1511,128,3.59840465,0.109345077,1170.60597,3008656476 +0,1513,1512,128,4.1131506,0.109329045,1170.77763,3008656476 +0,1514,1513,128,4.26740599,0.109300051,1171.0882,3008656476 +0,1515,1514,128,4.67977285,0.109434247,1169.65213,3008656476 +0,1516,1515,128,3.68342113,0.10941791,1169.82677,3008656476 +0,1517,1516,128,4.31786108,0.109413801,1169.8707,3008656476 +0,1518,1517,128,4.2715292,0.120912906,1058.61321,3008656476 +0,1519,1518,128,4.29902792,0.109474563,1169.22138,3008656476 +0,1520,1519,128,3.35329103,0.109278092,1171.32353,3008656476 +0,1521,1520,128,4.01773643,0.109263307,1171.48202,3008656476 +0,1522,1521,128,3.30464268,0.109266099,1171.45209,3008656476 +0,1523,1522,128,4.30641651,0.109270981,1171.39975,3008656476 +0,1524,1523,128,4.56564713,0.109297067,1171.12017,3008656476 +0,1525,1524,128,4.32934809,0.109177017,1172.40793,3008656476 +0,1526,1525,128,3.6393981,0.109325027,1170.82066,3008656476 +0,1527,1526,128,3.09419227,0.121299042,1055.24329,3008656476 +0,1528,1527,128,2.68274856,0.109337206,1170.69024,3008656476 +0,1529,1528,128,3.63893056,0.109298151,1171.10856,3008656476 +0,1530,1529,128,4.47747707,0.109325707,1170.81338,3008656476 +0,1531,1530,128,4.41336632,0.109413458,1169.87437,3008656476 +0,1532,1531,128,5.04836226,0.165070536,775.426088,3008656476 +0,1533,1532,128,4.78978777,0.109478992,1169.17408,3008656476 +0,1534,1533,128,3.9397583,0.109134346,1172.86633,3008656476 +0,1535,1534,128,4.07771397,0.108970991,1174.62454,3008656476 +0,1536,1535,128,3.29503036,0.123397468,1037.29843,3008656476 +0,1537,1536,128,3.6792593,0.108953318,1174.81507,3008656476 +0,1538,1537,128,3.8699739,0.108983252,1174.49239,3008656476 +0,1539,1538,128,4.07507515,0.108977698,1174.55225,3008656476 +0,1540,1539,128,3.55532718,0.109016325,1174.13608,3008656476 +0,1541,1540,128,4.57149553,0.109015406,1174.14597,3008656476 +0,1542,1541,128,4.55731392,0.109071281,1173.54448,3008656476 +0,1543,1542,128,4.43666553,0.108938657,1174.97318,3008656476 +0,1544,1543,128,4.26098871,0.109031902,1173.96833,3008656476 +0,1545,1544,128,5.0628376,0.109016747,1174.13153,3008656476 +0,1546,1545,128,4.39192295,0.122390477,1045.833,3008656476 +0,1547,1546,128,3.65424013,0.109016466,1174.13456,3008656476 +0,1548,1547,128,4.32752275,0.108997827,1174.33534,3008656476 +0,1549,1548,128,4.19388151,0.108998477,1174.32833,3008656476 +0,1550,1549,128,4.43162537,0.108899885,1175.39151,3008656476 +0,1551,1550,128,4.02848005,0.109001638,1174.29428,3008656476 +0,1552,1551,128,3.74950624,0.109150423,1172.69358,3008656476 +0,1553,1552,128,4.40008831,0.108957605,1174.76885,3008656476 +0,1554,1553,128,4.99739504,0.109150807,1172.68945,3008656476 +0,1555,1554,128,4.89474487,0.120887701,1058.83393,3008656476 +0,1556,1555,128,3.77085662,0.108962926,1174.71148,3008656476 +0,1557,1556,128,4.23368931,0.109020433,1174.09183,3008656476 +0,1558,1557,128,4.58779812,0.108987406,1174.44762,3008656476 +0,1559,1558,128,4.11190748,0.109036434,1173.91954,3008656476 +0,1560,1559,128,3.74847388,0.108925012,1175.12037,3008656476 +0,1561,1560,128,3.84527731,0.109078134,1173.47075,3008656476 +0,1562,1561,128,4.48521185,0.109038468,1173.89764,3008656476 +0,1563,1562,128,4.74197626,0.109064344,1173.61913,3008656476 +0,1564,1563,128,5.07120132,0.109044685,1173.83071,3008656476 +0,1565,1564,128,4.54246235,0.123673178,1034.98594,3008656476 +0,1566,1565,128,4.38658142,0.109079265,1173.45859,3008656476 +0,1567,1566,128,3.52834511,0.109050824,1173.76463,3008656476 +0,1568,1567,128,3.17027617,0.108992117,1174.39686,3008656476 +0,1569,1568,128,2.53090286,0.108911906,1175.26178,3008656476 +0,1570,1569,128,3.58996797,0.10911608,1173.06267,3008656476 +0,1571,1570,128,3.97539616,0.10891584,1175.21933,3008656476 +0,1572,1571,128,4.13167715,0.10900545,1174.25321,3008656476 +0,1573,1572,128,3.03993106,0.108856954,1175.85506,3008656476 +0,1574,1573,128,3.78293276,0.122585879,1044.16594,3008656476 +0,1575,1574,128,4.6493454,0.109217923,1171.96882,3008656476 +0,1576,1575,128,4.6010704,0.108919094,1175.18422,3008656476 +0,1577,1576,128,4.19122458,0.108961026,1174.73196,3008656476 +0,1578,1577,128,4.34942961,0.10889974,1175.39307,3008656476 +0,1579,1578,128,3.60393214,0.108913028,1175.24967,3008656476 +0,1580,1579,128,4.10164595,0.108821589,1176.23719,3008656476 +0,1581,1580,128,4.304533,0.10897366,1174.59577,3008656476 +0,1582,1581,128,3.85917687,0.109187356,1172.29691,3008656476 +0,1583,1582,128,4.05441141,0.109160906,1172.58096,3008656476 +0,1584,1583,128,4.01226568,0.121478088,1053.68797,3008656476 +0,1585,1584,128,4.30777788,0.109054404,1173.7261,3008656476 +0,1586,1585,128,4.30242634,0.109080326,1173.44717,3008656476 +0,1587,1586,128,4.67810059,0.10888772,1175.52282,3008656476 +0,1588,1587,128,3.65610099,0.10896845,1174.65193,3008656476 +0,1589,1588,128,3.79287505,0.108957274,1174.77242,3008656476 +0,1590,1589,128,4.02482224,0.109029583,1173.9933,3008656476 +0,1591,1590,128,3.610955,0.10900235,1174.28661,3008656476 +0,1592,1591,128,3.49509454,0.108892832,1175.46764,3008656476 +0,1593,1592,128,3.83311605,0.120813787,1059.48173,3008656476 +0,1594,1593,128,4.60085249,0.109125288,1172.96369,3008656476 +0,1595,1594,128,4.64627934,0.108913326,1175.24645,3008656476 +0,1596,1595,128,4.20604229,0.108845709,1175.97654,3008656476 +0,1597,1596,128,3.70163393,0.108943428,1174.92172,3008656476 +0,1598,1597,128,4.34158754,0.108904904,1175.33734,3008656476 +0,1599,1598,128,3.73890162,0.108935585,1175.00631,3008656476 +0,1600,1599,128,4.08390903,0.108993513,1174.38182,3008656476 +0,1601,1600,128,3.24654579,0.108919568,1175.1791,3008656476 +0,1602,1601,128,3.48913312,0.108911988,1175.26089,3008656476 +0,1603,1602,128,3.6984148,0.123194675,1039.00595,3008656476 +0,1604,1603,128,3.63669634,0.10894866,1174.8653,3008656476 +0,1605,1604,128,3.17414379,0.108968064,1174.65609,3008656476 +0,1606,1605,128,2.73328805,0.109016243,1174.13696,3008656476 +0,1607,1606,128,2.59715056,0.10889332,1175.46237,3008656476 +0,1608,1607,128,4.12955761,0.108977916,1174.5499,3008656476 +0,1609,1608,128,3.99975514,0.108976436,1174.56585,3008656476 +0,1610,1609,128,3.84301043,0.108990536,1174.4139,3008656476 +0,1611,1610,128,3.71847057,0.108980104,1174.52632,3008656476 +0,1612,1611,128,4.29277754,0.125376389,1020.92588,3008656476 +0,1613,1612,128,4.19052172,0.099530671,1286.03574,3008656476 +0,1614,1613,128,3.57061458,0.108833397,1176.10957,3008656476 +0,1615,1614,128,3.32820296,0.108846686,1175.96598,3008656476 +0,1616,1615,128,3.27985573,0.108827971,1176.16821,3008656476 +0,1617,1616,128,3.66100335,0.109060278,1173.66288,3008656476 +0,1618,1617,128,3.76649547,0.108957746,1174.76733,3008656476 +0,1619,1618,128,2.54861164,0.108919873,1175.17581,3008656476 +0,1620,1619,128,3.98197603,0.108900495,1175.38492,3008656476 +0,1621,1620,128,4.58492279,0.108931515,1175.05021,3008656476 +0,1622,1621,128,4.37284613,0.122185996,1047.58323,3008656476 +0,1623,1622,128,3.61584878,0.108856824,1175.85646,3008656476 +0,1624,1623,128,4.14307499,0.108837065,1176.06994,3008656476 +0,1625,1624,128,3.73976207,0.109006943,1174.23713,3008656476 +0,1626,1625,128,3.42748928,0.108872633,1175.68572,3008656476 +0,1627,1626,128,4.10237408,0.108717573,1177.36256,3008656476 +0,1628,1627,128,4.00478458,0.108977815,1174.55099,3008656476 +0,1629,1628,128,3.78790021,0.109117257,1173.05002,3008656476 +0,1630,1629,128,3.41229939,0.108949234,1174.85911,3008656476 +0,1631,1630,128,3.94977212,0.108947152,1174.88156,3008656476 +0,1632,1631,128,3.66595316,0.11825177,1082.43623,3008656476 +0,1633,1632,128,4.05917501,0.108909454,1175.28824,3008656476 +0,1634,1633,128,3.70304632,0.108888532,1175.51406,3008656476 +0,1635,1634,128,3.75178409,0.108916543,1175.21174,3008656476 +0,1636,1635,128,3.64325261,0.108930505,1175.06111,3008656476 +0,1637,1636,128,3.4031446,0.1090236,1174.05773,3008656476 +0,1638,1637,128,3.66202259,0.108883055,1175.57319,3008656476 +0,1639,1638,128,4.84065104,0.108970984,1174.62461,3008656476 +0,1640,1639,128,4.80511379,0.108971667,1174.61725,3008656476 +0,1641,1640,128,3.8651495,0.123216548,1038.82151,3008656476 +0,1642,1641,128,2.71805692,0.109031451,1173.97319,3008656476 +0,1643,1642,128,4.05742741,0.109313626,1170.94277,3008656476 +0,1644,1643,128,3.23864245,0.109906628,1164.62494,3008656476 +0,1645,1644,128,3.3372674,0.109219843,1171.94821,3008656476 +0,1646,1645,128,2.52091217,0.109426595,1169.73392,3008656476 +0,1647,1646,128,4.52609444,0.109479536,1169.16827,3008656476 +0,1648,1647,128,3.80637288,0.10956345,1168.27281,3008656476 +0,1649,1648,128,3.37296534,0.109434367,1169.65085,3008656476 +0,1650,1649,128,3.12468529,0.109463219,1169.34255,3008656476 +0,1651,1650,128,3.40478373,0.124698683,1026.47435,3008656476 +0,1652,1651,128,3.73922205,0.109246916,1171.65779,3008656476 +0,1653,1652,128,4.17110443,0.109142655,1172.77704,3008656476 +0,1654,1653,128,3.11260772,0.109327029,1170.79922,3008656476 +0,1655,1654,128,3.41207767,0.109377006,1170.26425,3008656476 +0,1656,1655,128,3.29519677,0.109311613,1170.96433,3008656476 +0,1657,1656,128,4.06674671,0.109084268,1173.40477,3008656476 +0,1658,1657,128,4.08736372,0.109322368,1170.84913,3008656476 +0,1659,1658,128,4.37673521,0.109217873,1171.96935,3008656476 +0,1660,1659,128,4.16273737,0.122931432,1041.23085,3008656476 +0,1661,1660,128,2.82345605,0.109163845,1172.54939,3008656476 +0,1662,1661,128,3.11265421,0.109594394,1167.94295,3008656476 +0,1663,1662,128,3.52784085,0.109247078,1171.65605,3008656476 +0,1664,1663,128,4.14107656,0.109286346,1171.23506,3008656476 +0,1665,1664,128,4.11770439,0.109199665,1172.16477,3008656476 +0,1666,1665,128,3.72953248,0.109251254,1171.61127,3008656476 +0,1667,1666,128,4.00320578,0.10934052,1170.65476,3008656476 +0,1668,1667,128,4.17879438,0.109213448,1172.01684,3008656476 +0,1669,1668,128,4.25560713,0.109104996,1173.18184,3008656476 +0,1670,1669,128,3.90060902,0.121457966,1053.86254,3008656476 +0,1671,1670,128,4.07579947,0.109234159,1171.79462,3008656476 +0,1672,1671,128,2.94101286,0.109203945,1172.11883,3008656476 +0,1673,1672,128,3.54790592,0.109295039,1171.1419,3008656476 +0,1674,1673,128,3.68148565,0.109413739,1169.87136,3008656476 +0,1675,1674,128,4.10233212,0.109357823,1170.46953,3008656476 +0,1676,1675,128,3.7175765,0.109411449,1169.89585,3008656476 +0,1677,1676,128,3.58832455,0.109536488,1168.56038,3008656476 +0,1678,1677,128,4.32825947,0.109349505,1170.55857,3008656476 +0,1679,1678,128,4.18143702,0.121875632,1050.25096,3008656476 +0,1680,1679,128,4.2253561,0.109603561,1167.84527,3008656476 +0,1681,1680,128,3.95771337,0.109187478,1172.2956,3008656476 +0,1682,1681,128,4.41207027,0.109151861,1172.67813,3008656476 +0,1683,1682,128,4.0409441,0.10926057,1171.51137,3008656476 +0,1684,1683,128,3.96169066,0.109225642,1171.88599,3008656476 +0,1685,1684,128,3.67426324,0.109196448,1172.1993,3008656476 +0,1686,1685,128,2.93020868,0.109181569,1172.35905,3008656476 +0,1687,1686,128,4.05035925,0.109227363,1171.86753,3008656476 +0,1688,1687,128,3.46278715,0.109257381,1171.54556,3008656476 +0,1689,1688,128,3.55540085,0.123388058,1037.37754,3008656476 +0,1690,1689,128,4.09223127,0.109258154,1171.53727,3008656476 +0,1691,1690,128,4.29531956,0.109329597,1170.77172,3008656476 +0,1692,1691,128,4.18595648,0.109251582,1171.60775,3008656476 +0,1693,1692,128,3.99543667,0.109268046,1171.43122,3008656476 +0,1694,1693,128,4.44980717,0.109169402,1172.48971,3008656476 +0,1695,1694,128,4.4003706,0.109241446,1171.71646,3008656476 +0,1696,1695,128,4.19922686,0.109355284,1170.49671,3008656476 +0,1697,1696,128,4.21872997,0.109271456,1171.39466,3008656476 +0,1698,1697,128,4.23085499,0.121617955,1052.47617,3008656476 +0,1699,1698,128,4.70372391,0.10919117,1172.25596,3008656476 +0,1700,1699,128,4.27356482,0.109193867,1172.22701,3008656476 +0,1701,1700,128,4.24554539,0.109171836,1172.46356,3008656476 +0,1702,1701,128,4.02365112,0.109319519,1170.87965,3008656476 +0,1703,1702,128,2.82470274,0.109198895,1172.17303,3008656476 +0,1704,1703,128,3.03525472,0.109283104,1171.26981,3008656476 +0,1705,1704,128,2.82015848,0.109328481,1170.78367,3008656476 +0,1706,1705,128,3.17760205,0.109349495,1170.55868,3008656476 +0,1707,1706,128,3.61519933,0.109250352,1171.62094,3008656476 +0,1708,1707,128,3.62844563,0.121688476,1051.86624,3008656476 +0,1709,1708,128,4.53019285,0.109138898,1172.81741,3008656476 +0,1710,1709,128,3.63494229,0.109294572,1171.14691,3008656476 +0,1711,1710,128,4.23458099,0.109229082,1171.84909,3008656476 +0,1712,1711,128,3.77599597,0.109261798,1171.4982,3008656476 +0,1713,1712,128,3.23378491,0.109339011,1170.67091,3008656476 +0,1714,1713,128,3.59089947,0.109182886,1172.3449,3008656476 +0,1715,1714,128,3.8806808,0.109369488,1170.34469,3008656476 +0,1716,1715,128,3.43548751,0.109639093,1167.46679,3008656476 +0,1717,1716,128,3.55021048,0.124192957,1030.65426,3008656476 +0,1718,1717,128,4.39196157,0.108914669,1175.23196,3008656476 +0,1719,1718,128,3.14361644,0.109153468,1172.66086,3008656476 +0,1720,1719,128,3.89160228,0.109231546,1171.82265,3008656476 +0,1721,1720,128,4.50813675,0.109254021,1171.58159,3008656476 +0,1722,1721,128,3.67654037,0.109146875,1172.7317,3008656476 +0,1723,1722,128,4.07415342,0.109218538,1171.96222,3008656476 +0,1724,1723,128,4.24566746,0.109279918,1171.30395,3008656476 +0,1725,1724,128,4.59190035,0.109215552,1171.99426,3008656476 +0,1726,1725,128,3.99739075,0.109316851,1170.90823,3008656476 +0,1727,1726,128,4.73643017,0.123486361,1036.55172,3008656476 +0,1728,1727,128,4.1195426,0.109163967,1172.54808,3008656476 +0,1729,1728,128,3.88555264,0.109121942,1172.99965,3008656476 +0,1730,1729,128,4.11523151,0.109176036,1172.41846,3008656476 +0,1731,1730,128,3.23707724,0.10919069,1172.26111,3008656476 +0,1732,1731,128,3.68567252,0.10921054,1172.04805,3008656476 +0,1733,1732,128,3.89501309,0.109213535,1172.0159,3008656476 +0,1734,1733,128,3.41889739,0.109660147,1167.24264,3008656476 +0,1735,1734,128,4.16692877,0.109151493,1172.68208,3008656476 +0,1736,1735,128,3.07412744,0.12120991,1056.01926,3008656476 +0,1737,1736,128,4.06511307,0.109337902,1170.68279,3008656476 +0,1738,1737,128,3.02425694,0.109183829,1172.33478,3008656476 +0,1739,1738,128,3.42478848,0.108251386,1182.4329,3008656476 +0,1740,1739,128,3.00856352,0.109428112,1169.7177,3008656476 +0,1741,1740,128,3.14704013,0.10937963,1170.23618,3008656476 +0,1742,1741,128,3.39228368,0.10942116,1169.79202,3008656476 +0,1743,1742,128,3.76053715,0.10942556,1169.74498,3008656476 +0,1744,1743,128,3.85874367,0.109576768,1168.13082,3008656476 +0,1745,1744,128,4.50294065,0.109527155,1168.65995,3008656476 +0,1746,1745,128,2.80338383,0.121114704,1056.84938,3008656476 +0,1747,1746,128,4.38532162,0.109320017,1170.87431,3008656476 +0,1748,1747,128,4.66381121,0.109512417,1168.81723,3008656476 +0,1749,1748,128,3.71386933,0.109196834,1172.19516,3008656476 +0,1750,1749,128,4.3319459,0.10930499,1171.03528,3008656476 +0,1751,1750,128,3.49507618,0.109165633,1172.53019,3008656476 +0,1752,1751,128,4.30355549,0.109154089,1172.65419,3008656476 +0,1753,1752,128,3.62325311,0.109223589,1171.90802,3008656476 +0,1754,1753,128,4.48894405,0.109224222,1171.90123,3008656476 +0,1755,1754,128,4.12680578,0.123357626,1037.63346,3008656476 +0,1756,1755,128,4.52362347,0.109627555,1167.58966,3008656476 +0,1757,1756,128,4.02487707,0.109155096,1172.64337,3008656476 +0,1758,1757,128,3.42620277,0.109219617,1171.95064,3008656476 +0,1759,1758,128,3.43331122,0.10918622,1172.30911,3008656476 +0,1760,1759,128,3.91972899,0.109180185,1172.37391,3008656476 +0,1761,1760,128,4.36055231,0.109243423,1171.69525,3008656476 +0,1762,1761,128,3.282511,0.109296893,1171.12204,3008656476 +0,1763,1762,128,4.69691944,0.109250064,1171.62403,3008656476 +0,1764,1763,128,3.57273364,0.109307854,1171.0046,3008656476 +0,1765,1764,128,3.55554938,0.123225915,1038.74254,3008656476 +0,1766,1765,128,2.79133058,0.109258677,1171.53167,3008656476 +0,1767,1766,128,3.98589063,0.10923613,1171.77348,3008656476 +0,1768,1767,128,4.23345566,0.10922718,1171.86949,3008656476 +0,1769,1768,128,3.66404772,0.109294324,1171.14956,3008656476 +0,1770,1769,128,3.46141148,0.109303756,1171.0485,3008656476 +0,1771,1770,128,3.82430959,0.10915273,1172.66879,3008656476 +0,1772,1771,128,3.55045843,0.109177769,1172.39985,3008656476 +0,1773,1772,128,3.03723574,0.109215592,1171.99383,3008656476 +0,1774,1773,128,3.26168466,0.120788462,1059.70386,3008656476 +0,1775,1774,128,3.01858354,0.109390359,1170.1214,3008656476 +0,1776,1775,128,3.75697827,0.109149436,1172.70418,3008656476 +0,1777,1776,128,3.75818658,0.109247538,1171.65112,3008656476 +0,1778,1777,128,3.41665983,0.109268368,1171.42776,3008656476 +0,1779,1778,128,2.9337256,0.109204862,1172.10899,3008656476 +0,1780,1779,128,3.81729054,0.109232597,1171.81138,3008656476 +0,1781,1780,128,3.1118443,0.109192436,1172.24237,3008656476 +0,1782,1781,128,2.29721928,0.109162238,1172.56665,3008656476 +0,1783,1782,128,2.52024412,0.109173754,1172.44297,3008656476 +0,1784,1783,128,2.9980886,0.121617209,1052.48263,3008656476 +0,1785,1784,128,3.51509786,0.109270984,1171.39972,3008656476 +0,1786,1785,128,3.54831481,0.109332118,1170.74472,3008656476 +0,1787,1786,128,2.72239614,0.109188471,1172.28494,3008656476 +0,1788,1787,128,3.13209796,0.109531354,1168.61515,3008656476 +0,1789,1788,128,2.75071335,0.109199979,1172.1614,3008656476 +0,1790,1789,128,3.19637418,0.109042445,1173.85482,3008656476 +0,1791,1790,128,2.62595844,0.109193834,1172.22736,3008656476 +0,1792,1791,128,3.9414537,0.109186532,1172.30576,3008656476 +0,1793,1792,128,3.66716194,0.12191793,1049.88659,3008656476 +0,1794,1793,128,3.20318866,0.109519026,1168.7467,3008656476 +0,1795,1794,128,3.42105722,0.109080783,1173.44226,3008656476 +0,1796,1795,128,2.2883606,0.109148215,1172.7173,3008656476 +0,1797,1796,128,3.52808499,0.109096711,1173.27093,3008656476 +0,1798,1797,128,3.88322496,0.109088272,1173.3617,3008656476 +0,1799,1798,128,3.56649065,0.109146652,1172.73409,3008656476 +0,1800,1799,128,3.02436066,0.109102982,1173.2035,3008656476 +0,1801,1800,128,2.94042826,0.109189029,1172.27895,3008656476 +0,1802,1801,128,3.31706476,0.109272889,1171.3793,3008656476 +0,1803,1802,128,2.67429304,0.123242406,1038.60355,3008656476 +0,1804,1803,128,3.68549824,0.109116649,1173.05655,3008656476 +0,1805,1804,128,2.91776061,0.109218128,1171.96662,3008656476 +0,1806,1805,128,3.88108563,0.10922114,1171.9343,3008656476 +0,1807,1806,128,3.42578602,0.109125814,1172.95803,3008656476 +0,1808,1807,128,3.84452105,0.109197059,1172.19274,3008656476 +0,1809,1808,128,3.51981688,0.109160777,1172.58235,3008656476 +0,1810,1809,128,4.87158966,0.109209488,1172.05934,3008656476 +0,1811,1810,128,3.45472121,0.109070714,1173.55058,3008656476 +0,1812,1811,128,3.22530985,0.119405219,1071.97994,3008656476 +0,1813,1812,128,2.92049551,0.107786146,1187.53666,3008656476 +0,1814,1813,128,2.78508162,0.109158714,1172.60451,3008656476 +0,1815,1814,128,3.97039127,0.109146789,1172.73262,3008656476 +0,1816,1815,128,4.09549093,0.109192689,1172.23965,3008656476 +0,1817,1816,128,3.39009285,0.109154133,1172.65372,3008656476 +0,1818,1817,128,3.69267249,0.109245725,1171.67056,3008656476 +0,1819,1818,128,2.41833925,0.10920185,1172.14131,3008656476 +0,1820,1819,128,2.42437744,0.109266621,1171.44649,3008656476 +0,1821,1820,128,3.09739923,0.109235636,1171.77878,3008656476 +0,1822,1821,128,3.73067546,0.121091555,1057.05142,3008656476 +0,1823,1822,128,4.75575066,0.10926484,1171.46559,3008656476 +0,1824,1823,128,4.10639,0.109366649,1170.37507,3008656476 +0,1825,1824,128,3.32282329,0.109272762,1171.38066,3008656476 +0,1826,1825,128,2.912606,0.109191133,1172.25636,3008656476 +0,1827,1826,128,4.00242043,0.109140762,1172.79738,3008656476 +0,1828,1827,128,3.03842187,0.109204538,1172.11246,3008656476 +0,1829,1828,128,3.11002398,0.109190775,1172.2602,3008656476 +0,1830,1829,128,3.4387455,0.109215119,1171.99891,3008656476 +0,1831,1830,128,3.34191465,0.109118452,1173.03717,3008656476 +0,1832,1831,128,4.00069046,0.112090151,1141.93797,3008656476 +0,1833,1832,128,3.27723718,0.109179332,1172.38307,3008656476 +0,1834,1833,128,3.41293025,0.109221226,1171.93337,3008656476 +0,1835,1834,128,4.05392265,0.109232134,1171.81634,3008656476 +0,1836,1835,128,3.53993511,0.109367555,1170.36538,3008656476 +0,1837,1836,128,2.59331179,0.109236298,1171.77168,3008656476 +0,1838,1837,128,4.0088563,0.109202741,1172.13175,3008656476 +0,1839,1838,128,4.25447798,0.109361718,1170.42785,3008656476 +0,1840,1839,128,4.00635576,0.109232448,1171.81298,3008656476 +0,1841,1840,128,3.95938015,0.124448618,1028.53693,3008656476 +0,1842,1841,128,4.05208969,0.109320326,1170.87101,3008656476 +0,1843,1842,128,3.97272444,0.109158847,1172.60308,3008656476 +0,1844,1843,128,4.30122042,0.109211818,1172.03433,3008656476 +0,1845,1844,128,4.03588581,0.109172679,1172.45451,3008656476 +0,1846,1845,128,2.81036186,0.109174078,1172.43949,3008656476 +0,1847,1846,128,3.17786455,0.109214306,1172.00763,3008656476 +0,1848,1847,128,2.73947215,0.10932292,1170.84322,3008656476 +0,1849,1848,128,3.46224332,0.109171805,1172.4639,3008656476 +0,1850,1849,128,3.85264802,0.109231897,1171.81889,3008656476 +0,1851,1850,128,4.39302397,0.122885943,1041.61629,3008656476 +0,1852,1851,128,3.35156918,0.10920232,1172.13627,3008656476 +0,1853,1852,128,2.93618703,0.109250177,1171.62282,3008656476 +0,1854,1853,128,3.51919031,0.10930212,1171.06603,3008656476 +0,1855,1854,128,4.36428547,0.109223278,1171.91136,3008656476 +0,1856,1855,128,3.72829056,0.10932033,1170.87096,3008656476 +0,1857,1856,128,3.19599414,0.109286031,1171.23844,3008656476 +0,1858,1857,128,2.65174794,0.109498926,1168.96124,3008656476 +0,1859,1858,128,4.16631031,0.109532322,1168.60483,3008656476 +0,1860,1859,128,3.01620173,0.121994767,1049.22533,3008656476 +0,1861,1860,128,3.88821769,0.109110246,1173.12539,3008656476 +0,1862,1861,128,3.95426202,0.109144342,1172.75891,3008656476 +0,1863,1862,128,3.88030624,0.109165936,1172.52693,3008656476 +0,1864,1863,128,4.0469017,0.109187866,1172.29143,3008656476 +0,1865,1864,128,4.24534273,0.109149249,1172.70619,3008656476 +0,1866,1865,128,3.83831978,0.109128545,1172.92868,3008656476 +0,1867,1866,128,3.8013947,0.109157736,1172.61501,3008656476 +0,1868,1867,128,4.62160587,0.109190332,1172.26496,3008656476 +0,1869,1868,128,3.70543098,0.109167174,1172.51363,3008656476 +0,1870,1869,128,3.43270278,0.121764239,1051.21176,3008656476 +0,1871,1870,128,4.02788305,0.109249796,1171.6269,3008656476 +0,1872,1871,128,3.16618824,0.109154538,1172.64937,3008656476 +0,1873,1872,128,3.8923471,0.109239855,1171.73352,3008656476 +0,1874,1873,128,3.59372592,0.109143778,1172.76497,3008656476 +0,1875,1874,128,4.13707447,0.10924877,1171.6379,3008656476 +0,1876,1875,128,3.50350904,0.109066757,1173.59316,3008656476 +0,1877,1876,128,3.15636277,0.10922731,1171.8681,3008656476 +0,1878,1877,128,3.12056899,0.109095661,1173.28223,3008656476 +0,1879,1878,128,2.99367118,0.122477108,1045.09326,3008656476 +0,1880,1879,128,2.43289375,0.109256469,1171.55534,3008656476 +0,1881,1880,128,3.11142898,0.109422309,1169.77974,3008656476 +0,1882,1881,128,3.63840008,0.109156928,1172.62369,3008656476 +0,1883,1882,128,3.56734467,0.109190984,1172.25796,3008656476 +0,1884,1883,128,2.87369967,0.109201614,1172.14385,3008656476 +0,1885,1884,128,3.22587562,0.109164481,1172.54256,3008656476 +0,1886,1885,128,3.17973685,0.109133356,1172.87697,3008656476 +0,1887,1886,128,3.69128489,0.109178476,1172.39226,3008656476 +0,1888,1887,128,2.7036624,0.109130732,1172.90517,3008656476 +0,1889,1888,128,2.89561605,0.123001358,1040.63892,3008656476 +0,1890,1889,128,4.13714361,0.109177663,1172.40099,3008656476 +0,1891,1890,128,4.04363251,0.109200589,1172.15485,3008656476 +0,1892,1891,128,3.55420327,0.109186684,1172.30412,3008656476 +0,1893,1892,128,3.6326766,0.109189293,1172.27611,3008656476 +0,1894,1893,128,3.01107407,0.109175306,1172.4263,3008656476 +0,1895,1894,128,3.35857558,0.109687541,1166.95113,3008656476 +0,1896,1895,128,3.66957021,0.109177448,1172.4033,3008656476 +0,1897,1896,128,4.00822163,0.109220913,1171.93673,3008656476 +0,1898,1897,128,3.80152345,0.121060412,1057.32335,3008656476 +0,1899,1898,128,4.04294395,0.109203391,1172.12477,3008656476 +0,1900,1899,128,5.51035929,0.109202565,1172.13364,3008656476 +0,1901,1900,128,4.04576063,0.10926441,1171.4702,3008656476 +0,1902,1901,128,3.2540431,0.109129309,1172.92047,3008656476 +0,1903,1902,128,3.62587547,0.10923301,1171.80695,3008656476 +0,1904,1903,128,3.99551964,0.109218599,1171.96156,3008656476 +0,1905,1904,128,2.50551963,0.109216804,1171.98082,3008656476 +0,1906,1905,128,4.00928545,0.109207989,1172.07542,3008656476 +0,1907,1906,128,2.76101089,0.109145409,1172.74745,3008656476 +0,1908,1907,128,3.19453263,0.121600479,1052.62743,3008656476 +0,1909,1908,128,3.66467261,0.109178977,1172.38688,3008656476 +0,1910,1909,128,3.3771441,0.109285741,1171.24154,3008656476 +0,1911,1910,128,3.55790663,0.109217831,1171.9698,3008656476 +0,1912,1911,128,3.44947195,0.109535654,1168.56928,3008656476 +0,1913,1912,128,3.4881165,0.109673082,1167.10498,3008656476 +0,1914,1913,128,3.41647196,0.109334847,1170.7155,3008656476 +0,1915,1914,128,3.60298204,0.109268532,1171.42601,3008656476 +0,1916,1915,128,2.65815473,0.109193108,1172.23516,3008656476 +0,1917,1916,128,3.79535913,0.122596041,1044.07939,3008656476 +0,1918,1917,128,3.20689607,0.108887582,1175.52431,3008656476 +0,1919,1918,128,3.13743258,0.109296709,1171.12401,3008656476 +0,1920,1919,128,2.97578335,0.109163313,1172.55511,3008656476 +0,1921,1920,128,3.33245444,0.109237653,1171.75714,3008656476 +0,1922,1921,128,3.68622255,0.109336075,1170.70235,3008656476 +0,1923,1922,128,3.67956996,0.109310173,1170.97976,3008656476 +0,1924,1923,128,3.55394149,0.109274488,1171.36216,3008656476 +0,1925,1924,128,3.35719252,0.109152192,1172.67457,3008656476 +0,1926,1925,128,2.80337644,0.109265997,1171.45318,3008656476 +0,1927,1926,128,3.46080208,0.124200917,1030.5882,3008656476 +0,1928,1927,128,3.58148646,0.109216477,1171.98433,3008656476 +0,1929,1928,128,4.00346804,0.109345364,1170.6029,3008656476 +0,1930,1929,128,5.25594854,0.109235927,1171.77566,3008656476 +0,1931,1930,128,4.39448929,0.109185141,1172.32069,3008656476 +0,1932,1931,128,2.63800168,0.1092629,1171.48639,3008656476 +0,1933,1932,128,2.4548285,0.109232089,1171.81683,3008656476 +0,1934,1933,128,3.07128239,0.109329437,1170.77343,3008656476 +0,1935,1934,128,3.03009582,0.109241276,1171.71828,3008656476 +0,1936,1935,128,2.54522634,0.1211244,1056.76478,3008656476 +0,1937,1936,128,3.93805432,0.109494805,1169.00523,3008656476 +0,1938,1937,128,3.51280856,0.109264419,1171.4701,3008656476 +0,1939,1938,128,3.716609,0.109206751,1172.08871,3008656476 +0,1940,1939,128,3.06107545,0.109322104,1170.85196,3008656476 +0,1941,1940,128,2.88589478,0.109209049,1172.06405,3008656476 +0,1942,1941,128,2.24599099,0.109207151,1172.08442,3008656476 +0,1943,1942,128,4.10907412,0.109213922,1172.01175,3008656476 +0,1944,1943,128,3.18303823,0.109282859,1171.27243,3008656476 +0,1945,1944,128,3.60756922,0.109289191,1171.20457,3008656476 +0,1946,1945,128,3.92840695,0.121195803,1056.14218,3008656476 +0,1947,1946,128,2.41889572,0.109259959,1171.51792,3008656476 +0,1948,1947,128,2.94343066,0.109169518,1172.48846,3008656476 +0,1949,1948,128,4.05141783,0.109713969,1166.67003,3008656476 +0,1950,1949,128,3.65015411,0.109500485,1168.94459,3008656476 +0,1951,1950,128,4.18715048,0.10942052,1169.79886,3008656476 +0,1952,1951,128,4.17127562,0.109502905,1168.91876,3008656476 +0,1953,1952,128,3.48227286,0.109432286,1169.67309,3008656476 +0,1954,1953,128,3.29323387,0.109518286,1168.7546,3008656476 +0,1955,1954,128,3.48819113,0.124521631,1027.93385,3008656476 +0,1956,1955,128,3.39291263,0.109410167,1169.90956,3008656476 +0,1957,1956,128,3.99690485,0.109235698,1171.77811,3008656476 +0,1958,1957,128,3.4878087,0.109221889,1171.92626,3008656476 +0,1959,1958,128,3.20799971,0.109266919,1171.4433,3008656476 +0,1960,1959,128,2.69462347,0.109290226,1171.19348,3008656476 +0,1961,1960,128,3.62719226,0.109313014,1170.94933,3008656476 +0,1962,1961,128,3.44944429,0.109192591,1172.24071,3008656476 +0,1963,1962,128,3.42403293,0.109284477,1171.25509,3008656476 +0,1964,1963,128,2.54830432,0.109260592,1171.51113,3008656476 +0,1965,1964,128,2.60114813,0.124224467,1030.39283,3008656476 +0,1966,1965,128,3.0402956,0.109235861,1171.77636,3008656476 +0,1967,1966,128,3.64316034,0.109621293,1167.65636,3008656476 +0,1968,1967,128,3.82293653,0.109142554,1172.77813,3008656476 +0,1969,1968,128,4.01237392,0.109138538,1172.82128,3008656476 +0,1970,1969,128,3.30739641,0.109265802,1171.45527,3008656476 +0,1971,1970,128,3.28218412,0.10918512,1172.32092,3008656476 +0,1972,1971,128,3.50284076,0.109210695,1172.04638,3008656476 +0,1973,1972,128,4.05534172,0.109358236,1170.46511,3008656476 +0,1974,1973,128,3.39359188,0.12351156,1036.34024,3008656476 +0,1975,1974,128,1.70859575,0.109629754,1167.56624,3008656476 +0,1976,1975,128,2.72453642,0.10929269,1171.16707,3008656476 +0,1977,1976,128,2.84697294,0.109356215,1170.48674,3008656476 +0,1978,1977,128,2.87895942,0.109290528,1171.19024,3008656476 +0,1979,1978,128,3.36504722,0.109313418,1170.945,3008656476 +0,1980,1979,128,3.49608159,0.109244675,1171.68182,3008656476 +0,1981,1980,128,3.96788955,0.109213896,1172.01203,3008656476 +0,1982,1981,128,3.97873259,0.109147661,1172.72325,3008656476 +0,1983,1982,128,3.2781322,0.10917481,1172.43163,3008656476 +0,1984,1983,128,4.09388876,0.121600096,1052.63075,3008656476 +0,1985,1984,128,2.77627373,0.109548924,1168.42772,3008656476 +0,1986,1985,128,2.61052632,0.109193041,1172.23588,3008656476 +0,1987,1986,128,2.54182363,0.109198507,1172.1772,3008656476 +0,1988,1987,128,3.39206481,0.109255522,1171.5655,3008656476 +0,1989,1988,128,3.65683079,0.109135945,1172.84915,3008656476 +0,1990,1989,128,4.12194633,0.109180598,1172.36947,3008656476 +0,1991,1990,128,2.83786893,0.109298742,1171.10223,3008656476 +0,1992,1991,128,2.5018537,0.109316785,1170.90893,3008656476 +0,1993,1992,128,2.85538316,0.120971082,1058.10412,3008656476 +0,1994,1993,128,3.56118011,0.109660777,1167.23594,3008656476 +0,1995,1994,128,3.2132473,0.109202845,1172.13063,3008656476 +0,1996,1995,128,3.1639781,0.109287802,1171.21946,3008656476 +0,1997,1996,128,3.12453675,0.109238233,1171.75092,3008656476 +0,1998,1997,128,3.62594771,0.109288541,1171.21154,3008656476 +0,1999,1998,128,3.60070419,0.10927734,1171.33159,3008656476 +0,2000,1999,128,4.66513157,0.109388703,1170.13911,3008656476 +0,2001,2000,128,3.28988218,0.109272171,1171.38699,3008656476 +0,2002,2001,128,2.55739045,0.109200564,1172.15512,3008656476 +0,2003,2002,128,3.57541871,0.123894824,1033.13436,3008656476 +0,2004,2003,128,3.31742978,0.10934944,1170.55926,3008656476 +0,2005,2004,128,3.14675856,0.109299548,1171.09359,3008656476 +0,2006,2005,128,2.93791771,0.109101965,1173.21443,3008656476 +0,2007,2006,128,3.04584169,0.109213675,1172.0144,3008656476 +0,2008,2007,128,2.98436856,0.109141313,1172.79146,3008656476 +0,2009,2008,128,3.20181322,0.109168064,1172.50408,3008656476 +0,2010,2009,128,3.13568044,0.109254623,1171.57514,3008656476 +0,2011,2010,128,3.21193528,0.109191618,1172.25115,3008656476 +0,2012,2011,128,3.93926764,0.123529643,1036.18854,3008656476 +0,2013,2012,128,4.60775328,0.107214263,1193.87101,3008656476 +0,2014,2013,128,4.03231144,0.109154978,1172.64464,3008656476 +0,2015,2014,128,4.50721264,0.10934137,1170.64566,3008656476 +0,2016,2015,128,3.64837098,0.109198967,1172.17226,3008656476 +0,2017,2016,128,3.91503406,0.109336207,1170.70094,3008656476 +0,2018,2017,128,4.55078459,0.109238208,1171.75119,3008656476 +0,2019,2018,128,4.04591417,0.109235905,1171.77589,3008656476 +0,2020,2019,128,3.83060861,0.109200061,1172.16052,3008656476 +0,2021,2020,128,3.31251359,0.109604403,1167.8363,3008656476 +0,2022,2021,128,4.09453726,0.123160186,1039.2969,3008656476 +0,2023,2022,128,4.17526054,0.109150713,1172.69046,3008656476 +0,2024,2023,128,4.22627211,0.109163005,1172.55841,3008656476 +0,2025,2024,128,4.50864744,0.109379018,1170.24272,3008656476 +0,2026,2025,128,4.072752,0.109306823,1171.01565,3008656476 +0,2027,2026,128,3.98962784,0.109302329,1171.06379,3008656476 +0,2028,2027,128,4.47919178,0.10925393,1171.58257,3008656476 +0,2029,2028,128,4.21718407,0.109204847,1172.10915,3008656476 +0,2030,2029,128,4.46232224,0.10922706,1171.87078,3008656476 +0,2031,2030,128,4.44088364,0.109331542,1170.75089,3008656476 +0,2032,2031,128,4.11204243,0.112152291,1141.30526,3008656476 +0,2033,2032,128,3.36474657,0.109385341,1170.17508,3008656476 +0,2034,2033,128,3.53901291,0.109160476,1172.58558,3008656476 +0,2035,2034,128,3.49942088,0.109390671,1170.11806,3008656476 +0,2036,2035,128,4.35296392,0.109334952,1170.71438,3008656476 +0,2037,2036,128,2.89301682,0.109528367,1168.64702,3008656476 +0,2038,2037,128,3.33949924,0.10941361,1169.87274,3008656476 +0,2039,2038,128,3.65623116,0.109792271,1165.83799,3008656476 +0,2040,2039,128,4.09059477,0.109415505,1169.85248,3008656476 +0,2041,2040,128,3.72171807,0.121543843,1053.11793,3008656476 +0,2042,2041,128,5.18788719,0.109258309,1171.53561,3008656476 +0,2043,2042,128,4.79499149,0.109227144,1171.86988,3008656476 +0,2044,2043,128,4.99816418,0.109163382,1172.55436,3008656476 +0,2045,2044,128,4.17900324,0.109300908,1171.07902,3008656476 +0,2046,2045,128,3.98583555,0.10925135,1171.61024,3008656476 +0,2047,2046,128,3.89295316,0.109375957,1170.27547,3008656476 +0,2048,2047,128,3.93484664,0.109360056,1170.44563,3008656476 +0,2049,2048,128,4.07352161,0.109294787,1171.1446,3008656476 +0,2050,2049,128,3.98445129,0.109239432,1171.73806,3008656476 +0,2051,2050,128,4.00426388,0.121636861,1052.31259,3008656476 +0,2052,2051,128,4.21217775,0.109214582,1172.00467,3008656476 +0,2053,2052,128,3.4262166,0.109297737,1171.11299,3008656476 +0,2054,2053,128,4.00042057,0.109274263,1171.36457,3008656476 +0,2055,2054,128,4.47078991,0.10922186,1171.92657,3008656476 +0,2056,2055,128,3.58142567,0.10923689,1171.76533,3008656476 +0,2057,2056,128,3.67193365,0.109695577,1166.86564,3008656476 +0,2058,2057,128,4.03782368,0.109257499,1171.5443,3008656476 +0,2059,2058,128,3.75893784,0.109188854,1172.28083,3008656476 +0,2060,2059,128,3.71009374,0.123279392,1038.29195,3008656476 +0,2061,2060,128,2.80252194,0.109190527,1172.26286,3008656476 +0,2062,2061,128,4.31354427,0.109193428,1172.23172,3008656476 +0,2063,2062,128,3.84631491,0.109171872,1172.46318,3008656476 +0,2064,2063,128,3.40672708,0.109162214,1172.56691,3008656476 +0,2065,2064,128,3.51089954,0.109164086,1172.5468,3008656476 +0,2066,2065,128,3.34416747,0.109213212,1172.01937,3008656476 +0,2067,2066,128,3.41617608,0.109130723,1172.90527,3008656476 +0,2068,2067,128,3.42360353,0.109159557,1172.59545,3008656476 +0,2069,2068,128,3.58073592,0.109173607,1172.44455,3008656476 +0,2070,2069,128,3.4655478,0.121609554,1052.54888,3008656476 +0,2071,2070,128,4.1745863,0.109193232,1172.23382,3008656476 +0,2072,2071,128,4.24032259,0.17123096,747.528368,3008656476 +0,2073,2072,128,3.48029709,0.109178517,1172.39182,3008656476 +0,2074,2073,128,3.98483491,0.109284001,1171.26019,3008656476 +0,2075,2074,128,3.2790041,0.109279723,1171.30604,3008656476 +0,2076,2075,128,4.5423193,0.109317714,1170.89898,3008656476 +0,2077,2076,128,4.00065422,0.109210868,1172.04453,3008656476 +0,2078,2077,128,3.61812878,0.109370014,1170.33907,3008656476 +0,2079,2078,128,3.22907972,0.121095123,1057.02027,3008656476 +0,2080,2079,128,4.13954735,0.10929695,1171.12143,3008656476 +0,2081,2080,128,3.83589363,0.109259062,1171.52754,3008656476 +0,2082,2081,128,3.70448327,0.109157606,1172.61641,3008656476 +0,2083,2082,128,3.39843726,0.109211197,1172.041,3008656476 +0,2084,2083,128,3.87189507,0.109241587,1171.71494,3008656476 +0,2085,2084,128,2.91767716,0.10941606,1169.84655,3008656476 +0,2086,2085,128,3.84911561,0.109326151,1170.80862,3008656476 +0,2087,2086,128,3.69676614,0.109240454,1171.7271,3008656476 +0,2088,2087,128,3.02331495,0.122724987,1042.98239,3008656476 +0,2089,2088,128,3.1207273,0.109373812,1170.29843,3008656476 +0,2090,2089,128,4.14907122,0.109294219,1171.15069,3008656476 +0,2091,2090,128,3.34195471,0.109465024,1169.32327,3008656476 +0,2092,2091,128,2.66241622,0.109562641,1168.28144,3008656476 +0,2093,2092,128,2.53125954,0.109394393,1170.07825,3008656476 +0,2094,2093,128,2.4683044,0.109282269,1171.27876,3008656476 +0,2095,2094,128,3.81238103,0.10920014,1172.15967,3008656476 +0,2096,2095,128,2.69044876,0.109202925,1172.12978,3008656476 +0,2097,2096,128,3.51515651,0.109133073,1172.88001,3008656476 +0,2098,2097,128,3.7003212,0.123760259,1034.25769,3008656476 +0,2099,2098,128,3.52337432,0.109176357,1172.41501,3008656476 +0,2100,2099,128,3.59883213,0.109232798,1171.80922,3008656476 +0,2101,2100,128,3.24153757,0.109240299,1171.72876,3008656476 +0,2102,2101,128,3.56022692,0.109169394,1172.48979,3008656476 +0,2103,2102,128,3.17921591,0.109203778,1172.12062,3008656476 +0,2104,2103,128,2.30614996,0.109229915,1171.84015,3008656476 +0,2105,2104,128,3.33115315,0.109246355,1171.66381,3008656476 +0,2106,2105,128,2.95556498,0.109101901,1173.21512,3008656476 +0,2107,2106,128,2.79436898,0.12123141,1055.83198,3008656476 +0,2108,2107,128,3.89307857,0.109142942,1172.77396,3008656476 +0,2109,2108,128,3.20210505,0.109166558,1172.52025,3008656476 +0,2110,2109,128,3.66166949,0.109602795,1167.85343,3008656476 +0,2111,2110,128,3.54069018,0.109196323,1172.20064,3008656476 +0,2112,2111,128,3.26799607,0.109210237,1172.0513,3008656476 +0,2113,2112,128,3.38578534,0.109134809,1172.86136,3008656476 +0,2114,2113,128,3.54196215,0.109487508,1169.08314,3008656476 +0,2115,2114,128,2.44362497,0.10926204,1171.49561,3008656476 +0,2116,2115,128,4.08784533,0.109078715,1173.4645,3008656476 +0,2117,2116,128,3.01091599,0.121460461,1053.84089,3008656476 +0,2118,2117,128,3.54893994,0.109254573,1171.57567,3008656476 +0,2119,2118,128,3.45024157,0.109213532,1172.01594,3008656476 +0,2120,2119,128,4.42146683,0.109215608,1171.99366,3008656476 +0,2121,2120,128,2.23691416,0.109355753,1170.49169,3008656476 +0,2122,2121,128,2.73923588,0.109248771,1171.63789,3008656476 +0,2123,2122,128,2.98637152,0.109236617,1171.76825,3008656476 +0,2124,2123,128,2.27760434,0.109217949,1171.96854,3008656476 +0,2125,2124,128,2.90240288,0.10916951,1172.48855,3008656476 +0,2126,2125,128,1.85324824,0.123911517,1032.99518,3008656476 +0,2127,2126,128,2.21956587,0.109234538,1171.79056,3008656476 +0,2128,2127,128,4.24010992,0.109524544,1168.68781,3008656476 +0,2129,2128,128,3.67828631,0.109245979,1171.66784,3008656476 +0,2130,2129,128,2.65960598,0.109249166,1171.63366,3008656476 +0,2131,2130,128,3.91635752,0.10919078,1172.26015,3008656476 +0,2132,2131,128,2.89308643,0.109283216,1171.26861,3008656476 +0,2133,2132,128,3.80887485,0.109399366,1170.02506,3008656476 +0,2134,2133,128,3.05115771,0.1096543,1167.30488,3008656476 +0,2135,2134,128,3.96427131,0.109436917,1169.62359,3008656476 +0,2136,2135,128,3.1055851,0.122932523,1041.22161,3008656476 +0,2137,2136,128,3.74718952,0.109183504,1172.33827,3008656476 +0,2138,2137,128,3.38886571,0.109186635,1172.30465,3008656476 +0,2139,2138,128,3.54258609,0.10924695,1171.65742,3008656476 +0,2140,2139,128,5.02831841,0.109368094,1170.35961,3008656476 +0,2141,2140,128,3.85209346,0.109303624,1171.04992,3008656476 +0,2142,2141,128,3.37354517,0.109158662,1172.60507,3008656476 +0,2143,2142,128,3.29230118,0.109231116,1171.82727,3008656476 +0,2144,2143,128,3.11129928,0.109247903,1171.6472,3008656476 +0,2145,2144,128,3.69553661,0.121272494,1055.47429,3008656476 +0,2146,2145,128,4.06105328,0.109564935,1168.25698,3008656476 +0,2147,2146,128,3.77257967,0.109257764,1171.54146,3008656476 +0,2148,2147,128,3.63710642,0.109188389,1172.28582,3008656476 +0,2149,2148,128,3.91550207,0.109218103,1171.96689,3008656476 +0,2150,2149,128,4.29824591,0.109352739,1170.52395,3008656476 +0,2151,2150,128,4.21233654,0.109096027,1173.27829,3008656476 +0,2152,2151,128,3.47791266,0.109165817,1172.52821,3008656476 +0,2153,2152,128,3.44919753,0.109159566,1172.59535,3008656476 +0,2154,2153,128,3.29464388,0.109185521,1172.31661,3008656476 +0,2155,2154,128,2.87262559,0.121755344,1051.28856,3008656476 +0,2156,2155,128,3.95969105,0.109183405,1172.33933,3008656476 +0,2157,2156,128,3.78374434,0.109265879,1171.45445,3008656476 +0,2158,2157,128,3.22583556,0.109226919,1171.87229,3008656476 +0,2159,2158,128,2.01057959,0.109287282,1171.22503,3008656476 +0,2160,2159,128,4.38521719,0.109258587,1171.53263,3008656476 +0,2161,2160,128,5.36830664,0.109343728,1170.62041,3008656476 +0,2162,2161,128,4.2626977,0.10930083,1171.07985,3008656476 +0,2163,2162,128,3.07561898,0.109208413,1172.07087,3008656476 +0,2164,2163,128,2.44663191,0.1230989,1039.81433,3008656476 +0,2165,2164,128,2.71242404,0.109303458,1171.0517,3008656476 +0,2166,2165,128,3.82219577,0.109188119,1172.28872,3008656476 +0,2167,2166,128,3.53724718,0.109304761,1171.03774,3008656476 +0,2168,2167,128,3.22258496,0.10920068,1172.15387,3008656476 +0,2169,2168,128,3.37352586,0.109244104,1171.68795,3008656476 +0,2170,2169,128,3.70295072,0.109360706,1170.43868,3008656476 +0,2171,2170,128,3.05018592,0.109306776,1171.01615,3008656476 +0,2172,2171,128,3.0237627,0.109336103,1170.70205,3008656476 +0,2173,2172,128,3.77088666,0.10928749,1171.2228,3008656476 +0,2174,2173,128,4.30956411,0.123386804,1037.38808,3008656476 +0,2175,2174,128,3.62519956,0.109217101,1171.97764,3008656476 +0,2176,2175,128,3.13502383,0.109311139,1170.96941,3008656476 +0,2177,2176,128,1.71040356,0.109223475,1171.90924,3008656476 +0,2178,2177,128,2.64333177,0.109247849,1171.64778,3008656476 +0,2179,2178,128,2.7852459,0.109245854,1171.66918,3008656476 +0,2180,2179,128,3.79999208,0.109305617,1171.02857,3008656476 +0,2181,2180,128,3.8968854,0.109258851,1171.5298,3008656476 +0,2182,2181,128,2.61639237,0.109749393,1166.29347,3008656476 +0,2183,2182,128,3.43710732,0.121099512,1056.98196,3008656476 +0,2184,2183,128,4.06932163,0.109596845,1167.91683,3008656476 +0,2185,2184,128,4.01773596,0.109219172,1171.95541,3008656476 +0,2186,2185,128,3.82642198,0.109282805,1171.27301,3008656476 +0,2187,2186,128,3.85032558,0.109269067,1171.42027,3008656476 +0,2188,2187,128,4.00442696,0.109305996,1171.02451,3008656476 +0,2189,2188,128,3.36092329,0.109315946,1170.91792,3008656476 +0,2190,2189,128,3.32580495,0.109109147,1173.13721,3008656476 +0,2191,2190,128,3.25362515,0.109219655,1171.95023,3008656476 +0,2192,2191,128,4.01667166,0.109176055,1172.41826,3008656476 +0,2193,2192,128,3.30660057,0.121870328,1050.29667,3008656476 +0,2194,2193,128,2.61156511,0.109132081,1172.89067,3008656476 +0,2195,2194,128,3.67974186,0.109163748,1172.55043,3008656476 +0,2196,2195,128,3.22631764,0.109164798,1172.53915,3008656476 +0,2197,2196,128,3.93909407,0.109344446,1170.61273,3008656476 +0,2198,2197,128,3.76273155,0.10916103,1172.57963,3008656476 +0,2199,2198,128,3.93714929,0.109140727,1172.79776,3008656476 +0,2200,2199,128,2.84997749,0.109637945,1167.47901,3008656476 +0,2201,2200,128,3.55978584,0.109215817,1171.99142,3008656476 +0,2202,2201,128,3.69712591,0.122322632,1046.41306,3008656476 +0,2203,2202,128,3.32272053,0.109589966,1167.99014,3008656476 +0,2204,2203,128,3.93519664,0.109208826,1172.06644,3008656476 +0,2205,2204,128,4.17707682,0.109296383,1171.1275,3008656476 +0,2206,2205,128,3.01976037,0.109199475,1172.16681,3008656476 +0,2207,2206,128,3.29503298,0.109288692,1171.20992,3008656476 +0,2208,2207,128,3.2140789,0.109080135,1173.44923,3008656476 +0,2209,2208,128,3.26931167,0.109168813,1172.49603,3008656476 +0,2210,2209,128,3.38120151,0.109324178,1170.82975,3008656476 +0,2211,2210,128,3.01408982,0.109394291,1170.07934,3008656476 +0,2212,2211,128,2.63358903,0.123461141,1036.76346,3008656476 +0,2213,2212,128,3.01997042,0.10926117,1171.50494,3008656476 +0,2214,2213,128,3.19620228,0.109319457,1170.88031,3008656476 +0,2215,2214,128,3.14522362,0.109284319,1171.25678,3008656476 +0,2216,2215,128,3.60481191,0.109231684,1171.82117,3008656476 +0,2217,2216,128,2.73529267,0.109157936,1172.61286,3008656476 +0,2218,2217,128,3.65149117,0.109607684,1167.80134,3008656476 +0,2219,2218,128,3.14145684,0.109290657,1171.18886,3008656476 +0,2220,2219,128,4.01259947,0.109318636,1170.88911,3008656476 +0,2221,2220,128,3.20661187,0.1210373,1057.52524,3008656476 +0,2222,2221,128,2.44171667,0.109466118,1169.31159,3008656476 +0,2223,2222,128,3.17315102,0.109296686,1171.12426,3008656476 +0,2224,2223,128,3.14073014,0.109509272,1168.8508,3008656476 +0,2225,2224,128,3.02650046,0.10950114,1168.9376,3008656476 +0,2226,2225,128,2.90869308,0.109478041,1169.18424,3008656476 +0,2227,2226,128,3.59513378,0.109391171,1170.11271,3008656476 +0,2228,2227,128,3.30450535,0.109418419,1169.82133,3008656476 +0,2229,2228,128,3.32163382,0.109440393,1169.58644,3008656476 +0,2230,2229,128,3.08188391,0.109472474,1169.24369,3008656476 +0,2231,2230,128,4.21729136,0.121819643,1050.73367,3008656476 +0,2232,2231,128,2.48465133,0.109357674,1170.47113,3008656476 +0,2233,2232,128,3.57483363,0.109336711,1170.69554,3008656476 +0,2234,2233,128,2.93571544,0.109143101,1172.77225,3008656476 +0,2235,2234,128,3.22523189,0.109329566,1170.77205,3008656476 +0,2236,2235,128,2.36578465,0.109637904,1167.47945,3008656476 +0,2237,2236,128,3.03487372,0.109259374,1171.52419,3008656476 +0,2238,2237,128,4.27949142,0.10924224,1171.70794,3008656476 +0,2239,2238,128,3.22575259,0.109217777,1171.97038,3008656476 +0,2240,2239,128,3.00359821,0.123855928,1033.45881,3008656476 +0,2241,2240,128,3.0123198,0.109529579,1168.63409,3008656476 +0,2242,2241,128,3.01853752,0.109277313,1171.33188,3008656476 +0,2243,2242,128,4.01466894,0.109233644,1171.80015,3008656476 +0,2244,2243,128,3.40236139,0.109214642,1172.00402,3008656476 +0,2245,2244,128,3.56056118,0.109244259,1171.68629,3008656476 +0,2246,2245,128,3.79222775,0.109288707,1171.20976,3008656476 +0,2247,2246,128,2.50919271,0.109291108,1171.18403,3008656476 +0,2248,2247,128,2.76741385,0.109235873,1171.77624,3008656476 +0,2249,2248,128,3.18516564,0.109290763,1171.18772,3008656476 +0,2250,2249,128,3.52149081,0.122672507,1043.42858,3008656476 +0,2251,2250,128,3.36366487,0.110124451,1162.32134,3008656476 +0,2252,2251,128,2.50394368,0.109178095,1172.39635,3008656476 +0,2253,2252,128,2.30459547,0.109443207,1169.55637,3008656476 +0,2254,2253,128,3.18301058,0.109665265,1167.18817,3008656476 +0,2255,2254,128,3.81401062,0.109512375,1168.81768,3008656476 +0,2256,2255,128,3.27868199,0.10932645,1170.80542,3008656476 +0,2257,2256,128,3.5217967,0.109362308,1170.42153,3008656476 +0,2258,2257,128,3.14929867,0.109295022,1171.14209,3008656476 +0,2259,2258,128,3.55587125,0.119238478,1073.47898,3008656476 +0,2260,2259,128,3.01882768,0.107570605,1189.91615,3008656476 +0,2261,2260,128,3.0172081,0.109232152,1171.81615,3008656476 +0,2262,2261,128,3.0806551,0.109215192,1171.99812,3008656476 +0,2263,2262,128,2.74979019,0.109299418,1171.09498,3008656476 +0,2264,2263,128,3.25626612,0.109064583,1173.61655,3008656476 +0,2265,2264,128,2.59605122,0.109268033,1171.43136,3008656476 +0,2266,2265,128,2.75844502,0.109126491,1172.95075,3008656476 +0,2267,2266,128,3.49551153,0.109158349,1172.60843,3008656476 +0,2268,2267,128,2.83249712,0.109097086,1173.2669,3008656476 +0,2269,2268,128,3.26006317,0.122651882,1043.60404,3008656476 +0,2270,2269,128,2.32287407,0.109216411,1171.98504,3008656476 +0,2271,2270,128,2.83673453,0.109281706,1171.28479,3008656476 +0,2272,2271,128,2.99784708,0.109107576,1173.1541,3008656476 +0,2273,2272,128,3.31021476,0.109318059,1170.89529,3008656476 +0,2274,2273,128,2.60597658,0.10909439,1173.2959,3008656476 +0,2275,2274,128,2.56922412,0.109327676,1170.79229,3008656476 +0,2276,2275,128,2.92251945,0.109213372,1172.01765,3008656476 +0,2277,2276,128,3.450526,0.109233947,1171.7969,3008656476 +0,2278,2277,128,2.58343768,0.109282857,1171.27245,3008656476 +0,2279,2278,128,2.75743628,0.113005544,1132.68779,3008656476 +0,2280,2279,128,2.81793642,0.109253312,1171.5892,3008656476 +0,2281,2280,128,2.56348848,0.109220849,1171.93742,3008656476 +0,2282,2281,128,3.11388063,0.109307082,1171.01287,3008656476 +0,2283,2282,128,3.49783421,0.109250928,1171.61476,3008656476 +0,2284,2283,128,2.66190743,0.109130879,1172.90359,3008656476 +0,2285,2284,128,2.84605122,0.109202473,1172.13463,3008656476 +0,2286,2285,128,2.23725677,0.109253305,1171.58927,3008656476 +0,2287,2286,128,2.51578879,0.109231071,1171.82775,3008656476 +0,2288,2287,128,2.49016738,0.122655791,1043.57078,3008656476 +0,2289,2288,128,2.34653902,0.10936163,1170.42879,3008656476 +0,2290,2289,128,2.51419806,0.109495717,1168.9955,3008656476 +0,2291,2290,128,3.27471256,0.109316761,1170.90919,3008656476 +0,2292,2291,128,3.70868516,0.109212839,1172.02337,3008656476 +0,2293,2292,128,2.66908002,0.109214489,1172.00567,3008656476 +0,2294,2293,128,3.69960141,0.109123656,1172.98123,3008656476 +0,2295,2294,128,4.13383532,0.109269496,1171.41567,3008656476 +0,2296,2295,128,4.05274439,0.109100865,1173.22626,3008656476 +0,2297,2296,128,4.22100973,0.109090922,1173.33319,3008656476 +0,2298,2297,128,2.9914887,0.122845396,1041.96009,3008656476 +0,2299,2298,128,2.96816564,0.109205547,1172.10163,3008656476 +0,2300,2299,128,4.45354462,0.109230955,1171.82899,3008656476 +0,2301,2300,128,3.72987843,0.109249297,1171.63225,3008656476 +0,2302,2301,128,4.03546524,0.1091827,1172.3469,3008656476 +0,2303,2302,128,4.60345411,0.10904653,1173.81085,3008656476 +0,2304,2303,128,3.84959006,0.109147879,1172.72091,3008656476 +0,2305,2304,128,3.38707066,0.109210338,1172.05021,3008656476 +0,2306,2305,128,3.79851723,0.109228826,1171.85183,3008656476 +0,2307,2306,128,4.46283054,0.121154858,1056.49911,3008656476 +0,2308,2307,128,3.88889456,0.109579042,1168.10658,3008656476 +0,2309,2308,128,3.86415935,0.109161808,1172.57127,3008656476 +0,2310,2309,128,4.31580591,0.109224115,1171.90238,3008656476 +0,2311,2310,128,3.67068529,0.109286889,1171.22924,3008656476 +0,2312,2311,128,3.4452312,0.109221571,1171.92967,3008656476 +0,2313,2312,128,3.2655108,0.109205951,1172.0973,3008656476 +0,2314,2313,128,3.74464917,0.109156258,1172.63089,3008656476 +0,2315,2314,128,4.51558495,0.109267264,1171.4396,3008656476 +0,2316,2315,128,4.1162672,0.109261138,1171.50528,3008656476 +0,2317,2316,128,4.64395523,0.121097616,1056.99851,3008656476 +0,2318,2317,128,4.10994625,0.109220631,1171.93976,3008656476 +0,2319,2318,128,4.333323,0.109180358,1172.37205,3008656476 +0,2320,2319,128,4.25596666,0.109264821,1171.46579,3008656476 +0,2321,2320,128,4.12135458,0.109227037,1171.87103,3008656476 +0,2322,2321,128,4.35983276,0.10916283,1172.56029,3008656476 +0,2323,2322,128,4.06116867,0.109299945,1171.08934,3008656476 +0,2324,2323,128,4.10663414,0.109089334,1173.35027,3008656476 +0,2325,2324,128,3.6408174,0.109231832,1171.81958,3008656476 +0,2326,2325,128,4.41650057,0.12347965,1036.60806,3008656476 +0,2327,2326,128,4.03466558,0.109280732,1171.29523,3008656476 +0,2328,2327,128,4.66810703,0.109237744,1171.75617,3008656476 +0,2329,2328,128,4.18040371,0.109205533,1172.10178,3008656476 +0,2330,2329,128,3.6775229,0.109289021,1171.20639,3008656476 +0,2331,2330,128,4.20345926,0.109324432,1170.82703,3008656476 +0,2332,2331,128,3.99087238,0.10925217,1171.60144,3008656476 +0,2333,2332,128,3.32706833,0.109309673,1170.98511,3008656476 +0,2334,2333,128,3.30594516,0.109212977,1172.02189,3008656476 +0,2335,2334,128,3.05226159,0.109177754,1172.40001,3008656476 +0,2336,2335,128,3.8915,0.121283526,1055.37829,3008656476 +0,2337,2336,128,4.47794056,0.109269964,1171.41065,3008656476 +0,2338,2337,128,4.20598745,0.109152414,1172.67219,3008656476 +0,2339,2338,128,3.51301265,0.109222028,1171.92477,3008656476 +0,2340,2339,128,3.4762845,0.109293346,1171.16004,3008656476 +0,2341,2340,128,3.23672962,0.109230756,1171.83113,3008656476 +0,2342,2341,128,4.17426205,0.109229331,1171.84642,3008656476 +0,2343,2342,128,4.01932526,0.109264441,1171.46987,3008656476 +0,2344,2343,128,4.14930296,0.109198762,1172.17446,3008656476 +0,2345,2344,128,3.71627998,0.121369487,1054.63081,3008656476 +0,2346,2345,128,4.32905006,0.109279745,1171.30581,3008656476 +0,2347,2346,128,4.14294672,0.109402891,1169.98736,3008656476 +0,2348,2347,128,4.09823799,0.109267764,1171.43424,3008656476 +0,2349,2348,128,4.23386049,0.109299995,1171.0888,3008656476 +0,2350,2349,128,4.46585989,0.109252136,1171.60181,3008656476 +0,2351,2350,128,3.6156292,0.109262557,1171.49006,3008656476 +0,2352,2351,128,3.85498405,0.109273995,1171.36744,3008656476 +0,2353,2352,128,3.24717188,0.109412889,1169.88045,3008656476 +0,2354,2353,128,3.23184705,0.109189582,1172.27301,3008656476 +0,2355,2354,128,3.94248104,0.123414265,1037.15725,3008656476 +0,2356,2355,128,3.57993221,0.109232254,1171.81506,3008656476 +0,2357,2356,128,3.83758688,0.10936741,1170.36693,3008656476 +0,2358,2357,128,3.12742305,0.109235898,1171.77597,3008656476 +0,2359,2358,128,3.28124189,0.109170178,1172.48137,3008656476 +0,2360,2359,128,3.51011181,0.109143445,1172.76855,3008656476 +0,2361,2360,128,3.61545849,0.109236893,1171.76529,3008656476 +0,2362,2361,128,3.05125999,0.109573021,1168.17077,3008656476 +0,2363,2362,128,3.09610939,0.109218634,1171.96119,3008656476 +0,2364,2363,128,2.70549941,0.12357448,1035.81257,3008656476 +0,2365,2364,128,2.66512346,0.109367906,1170.36162,3008656476 +0,2366,2365,128,3.15833282,0.109157651,1172.61593,3008656476 +0,2367,2366,128,2.8191123,0.109208745,1172.06731,3008656476 +0,2368,2367,128,3.84516978,0.109243324,1171.69631,3008656476 +0,2369,2368,128,3.52973461,0.10919106,1172.25714,3008656476 +0,2370,2369,128,3.14806962,0.10925913,1171.52681,3008656476 +0,2371,2370,128,3.01585078,0.109188832,1172.28106,3008656476 +0,2372,2371,128,2.97933817,0.109118678,1173.03474,3008656476 +0,2373,2372,128,4.17842484,0.109153733,1172.65802,3008656476 +0,2374,2373,128,3.9765687,0.121051062,1057.40501,3008656476 +0,2375,2374,128,4.00226498,0.109349517,1170.55844,3008656476 +0,2376,2375,128,2.8606863,0.109174927,1172.43037,3008656476 +0,2377,2376,128,3.03302264,0.109302137,1171.06585,3008656476 +0,2378,2377,128,4.00036669,0.109167143,1172.51397,3008656476 +0,2379,2378,128,3.68679976,0.1091745,1172.43496,3008656476 +0,2380,2379,128,2.80590248,0.109319584,1170.87895,3008656476 +0,2381,2380,128,3.34060025,0.109256692,1171.55295,3008656476 +0,2382,2381,128,2.84739017,0.10914265,1172.77709,3008656476 +0,2383,2382,128,3.21305084,0.121386798,1054.48041,3008656476 +0,2384,2383,128,3.54972649,0.10959174,1167.97124,3008656476 +0,2385,2384,64,3.15004182,0.105371227,607.376433,3008656476 +1,2386,0,128,2.22350407,0.094175999,1359.15734,3008656476 +1,2387,1,128,3.09509921,0.107544817,1190.20148,3008656476 +1,2388,2,128,2.62947702,0.121158192,1056.47004,3008656476 +1,2389,3,128,3.21486139,0.123232069,1038.69067,3008656476 +1,2390,4,128,3.63090968,0.108352303,1181.3316,3008656476 +1,2391,5,128,3.92745399,0.108181376,1183.19811,3008656476 +1,2392,6,128,3.576756,0.1082485,1182.46442,3008656476 +1,2393,7,128,3.9119072,0.10819639,1183.03393,3008656476 +1,2394,8,128,3.97367263,0.108459189,1180.16741,3008656476 +1,2395,9,128,3.67565036,0.108318236,1181.70314,3008656476 +1,2396,10,128,3.1543448,0.108206104,1182.92772,3008656476 +1,2397,11,128,3.4622972,0.108138568,1183.6665,3008656476 +1,2398,12,128,3.00370455,0.142086163,900.861824,3008656476 +1,2399,13,128,2.56217265,0.106148401,1205.85896,3008656476 +1,2400,14,128,2.59284687,0.108013374,1185.03844,3008656476 +1,2401,15,128,2.80523014,0.108108968,1183.99058,3008656476 +1,2402,16,128,3.35882258,0.108108061,1184.00052,3008656476 +1,2403,17,128,3.40761352,0.107963621,1185.58454,3008656476 +1,2404,18,128,3.21315384,0.108123662,1183.82968,3008656476 +1,2405,19,128,3.4862926,0.108286954,1182.04451,3008656476 +1,2406,20,128,3.19698262,0.108223308,1182.73967,3008656476 +1,2407,21,128,3.73839712,0.121964681,1049.48415,3008656476 +1,2408,22,128,3.04943657,0.130909065,977.777971,3008656476 +1,2409,23,128,2.29118586,0.108460374,1180.15451,3008656476 +1,2410,24,128,2.64528751,0.108749163,1177.02055,3008656476 +1,2411,25,128,3.29223013,0.108449858,1180.26895,3008656476 +1,2412,26,128,3.16944742,0.108618822,1178.43296,3008656476 +1,2413,27,128,3.43080759,0.108280974,1182.1098,3008656476 +1,2414,28,128,3.01675463,0.108624755,1178.3686,3008656476 +1,2415,29,128,2.9166224,0.108043879,1184.70386,3008656476 +1,2416,30,128,2.8257947,0.108413468,1180.66512,3008656476 +1,2417,31,128,3.02435851,0.100121516,1278.44648,3008656476 +1,2418,32,128,3.45582986,0.116540184,1098.3336,3008656476 +1,2419,33,128,3.32394457,0.108500074,1179.7227,3008656476 +1,2420,34,128,3.30253458,0.108374362,1181.09115,3008656476 +1,2421,35,128,3.28455186,0.108471077,1180.03807,3008656476 +1,2422,36,128,3.31390142,0.108316515,1181.72192,3008656476 +1,2423,37,128,2.87093735,0.108102441,1184.06207,3008656476 +1,2424,38,128,2.88501167,0.10862008,1178.41931,3008656476 +1,2425,39,128,2.39186549,0.108173846,1183.28048,3008656476 +1,2426,40,128,3.22286534,0.120342267,1063.63295,3008656476 +1,2427,41,128,3.17801785,0.129897995,985.388574,3008656476 +1,2428,42,128,3.35650992,0.108234787,1182.61424,3008656476 +1,2429,43,128,3.6182158,0.108247834,1182.4717,3008656476 +1,2430,44,128,3.84325886,0.108236391,1182.59671,3008656476 +1,2431,45,128,3.58484745,0.108434324,1180.43803,3008656476 +1,2432,46,128,2.83730793,0.108333438,1181.53732,3008656476 +1,2433,47,128,3.3421433,0.108112727,1183.94942,3008656476 +1,2434,48,128,3.0492928,0.108323374,1181.64709,3008656476 +1,2435,49,128,3.23807693,0.10838141,1181.01435,3008656476 +1,2436,50,128,2.69188523,0.115161005,1111.48735,3008656476 +1,2437,51,128,3.64173126,0.131143997,976.026375,3008656476 +1,2438,52,128,2.66285133,0.108942118,1174.93585,3008656476 +1,2439,53,128,3.58488631,0.108460906,1180.14873,3008656476 +1,2440,54,128,2.62614989,0.107849353,1186.84069,3008656476 +1,2441,55,128,2.93808484,0.108746398,1177.05048,3008656476 +1,2442,56,128,3.7452445,0.108428595,1180.5004,3008656476 +1,2443,57,128,3.11782861,0.108161299,1183.41774,3008656476 +1,2444,58,128,3.05620527,0.108407722,1180.7277,3008656476 +1,2445,59,128,3.07975459,0.124181651,1030.74809,3008656476 +1,2446,60,128,2.93790841,0.130135276,983.591874,3008656476 +1,2447,61,128,3.7933569,0.108121582,1183.85245,3008656476 +1,2448,62,128,2.86291075,0.107866331,1186.65388,3008656476 +1,2449,63,128,3.71286702,0.10814694,1183.57487,3008656476 +1,2450,64,128,2.4591825,0.108376567,1181.06712,3008656476 +1,2451,65,128,3.43439913,0.108286928,1182.0448,3008656476 +1,2452,66,128,3.20766997,0.108003671,1185.1449,3008656476 +1,2453,67,128,3.80147457,0.108642934,1178.17142,3008656476 +1,2454,68,128,4.12397861,0.121707491,1051.7019,3008656476 +1,2455,69,128,3.29309344,0.107161323,1194.4608,3008656476 +1,2456,70,128,3.77864194,0.126126501,1014.85413,3008656476 +1,2457,71,128,3.55546141,0.10812526,1183.81218,3008656476 +1,2458,72,128,3.27247143,0.108217034,1182.80824,3008656476 +1,2459,73,128,3.19846034,0.108393077,1180.88723,3008656476 +1,2460,74,128,3.01081467,0.108331013,1181.56377,3008656476 +1,2461,75,128,2.87462354,0.108501617,1179.70592,3008656476 +1,2462,76,128,4.05979824,0.10820598,1182.92908,3008656476 +1,2463,77,128,3.67156219,0.108156361,1183.47177,3008656476 +1,2464,78,128,3.30447626,0.121438156,1054.03445,3008656476 +1,2465,79,128,3.25580239,0.127861077,1001.08652,3008656476 +1,2466,80,128,3.72669172,0.108185706,1183.15076,3008656476 +1,2467,81,128,3.54041553,0.10810588,1184.0244,3008656476 +1,2468,82,128,3.66546345,0.10825628,1182.37944,3008656476 +1,2469,83,128,3.72487545,0.108190399,1183.09944,3008656476 +1,2470,84,128,3.12615681,0.108497163,1179.75435,3008656476 +1,2471,85,128,2.88614559,0.108319096,1181.69376,3008656476 +1,2472,86,128,2.98919868,0.108433297,1180.44921,3008656476 +1,2473,87,128,2.738518,0.119946283,1067.14436,3008656476 +1,2474,88,128,2.68134737,0.108676029,1177.81263,3008656476 +1,2475,89,128,3.26350069,0.12821836,998.296968,3008656476 +1,2476,90,128,2.87290454,0.108311384,1181.7779,3008656476 +1,2477,91,128,3.11672139,0.108334718,1181.52336,3008656476 +1,2478,92,128,3.18446088,0.108434146,1180.43997,3008656476 +1,2479,93,128,3.06881475,0.108268044,1182.25097,3008656476 +1,2480,94,128,2.72799301,0.108405656,1180.7502,3008656476 +1,2481,95,128,3.10588646,0.108405481,1180.75211,3008656476 +1,2482,96,128,2.77834654,0.108346005,1181.40027,3008656476 +1,2483,97,128,3.25398922,0.122288892,1046.70177,3008656476 +1,2484,98,128,3.34506059,0.130496956,980.865791,3008656476 +1,2485,99,128,3.20537472,0.107979964,1185.4051,3008656476 +1,2486,100,128,3.39605379,0.108068808,1184.43057,3008656476 +1,2487,101,128,2.88651013,0.107910308,1186.17028,3008656476 +1,2488,102,128,3.14067411,0.108108112,1183.99996,3008656476 +1,2489,103,128,3.28684926,0.107928658,1185.96861,3008656476 +1,2490,104,128,2.4600687,0.10817449,1183.27343,3008656476 +1,2491,105,128,3.44063139,0.108084957,1184.25361,3008656476 +1,2492,106,128,3.19970131,0.121965897,1049.47369,3008656476 +1,2493,107,128,2.97023654,0.107965063,1185.56871,3008656476 +1,2494,108,128,3.3693409,0.126390116,1012.73742,3008656476 +1,2495,109,128,2.37590289,0.108381825,1181.00982,3008656476 +1,2496,110,128,3.02993989,0.108338599,1181.48103,3008656476 +1,2497,111,128,3.10144258,0.108154082,1183.49671,3008656476 +1,2498,112,128,3.6236217,0.108398743,1180.8255,3008656476 +1,2499,113,128,4.0248394,0.108156398,1183.47137,3008656476 +1,2500,114,128,3.80603385,0.108156742,1183.4676,3008656476 +1,2501,115,128,3.86818957,0.108106498,1184.01763,3008656476 +1,2502,116,128,2.85433412,0.120919458,1058.55585,3008656476 +1,2503,117,128,3.38445449,0.127641308,1002.81016,3008656476 +1,2504,118,128,3.2027266,0.107946937,1185.76778,3008656476 +1,2505,119,128,3.65386963,0.108022508,1184.93824,3008656476 +1,2506,120,128,3.23875856,0.102786259,1245.30264,3008656476 +1,2507,121,128,3.0690167,0.108411594,1180.68553,3008656476 +1,2508,122,128,2.48432636,0.108396732,1180.84741,3008656476 +1,2509,123,128,2.84704781,0.108256279,1182.37945,3008656476 +1,2510,124,128,2.68072534,0.108454593,1180.21742,3008656476 +1,2511,125,128,2.58318734,0.120328618,1063.7536,3008656476 +1,2512,126,128,2.69943333,0.108079782,1184.31031,3008656476 +1,2513,127,128,3.49623561,0.126717975,1010.11715,3008656476 +1,2514,128,128,3.68751383,0.108313084,1181.75935,3008656476 +1,2515,129,128,3.34463978,0.10817485,1183.26949,3008656476 +1,2516,130,128,3.37389231,0.108534884,1179.34433,3008656476 +1,2517,131,128,3.15789628,0.108141731,1183.63188,3008656476 +1,2518,132,128,2.6902163,0.108280679,1182.11302,3008656476 +1,2519,133,128,3.07958484,0.10824281,1182.52658,3008656476 +1,2520,134,128,3.30767441,0.108131523,1183.74362,3008656476 +1,2521,135,128,3.01608443,0.114467787,1118.21853,3008656476 +1,2522,136,128,2.64325285,0.129595479,987.688776,3008656476 +1,2523,137,128,2.6508224,0.108051405,1184.62134,3008656476 +1,2524,138,128,2.24033523,0.108316182,1181.72555,3008656476 +1,2525,139,128,2.63649654,0.10810099,1184.07796,3008656476 +1,2526,140,128,2.21132731,0.108572637,1178.93425,3008656476 +1,2527,141,128,2.13211966,0.108539671,1179.29232,3008656476 +1,2528,142,128,2.80350661,0.108210266,1182.88222,3008656476 +1,2529,143,128,2.49221039,0.108627161,1178.3425,3008656476 +1,2530,144,128,1.72752118,0.122669561,1043.45364,3008656476 +1,2531,145,128,1.6255846,0.108407578,1180.72927,3008656476 +1,2532,146,128,2.63611031,0.130943893,977.517905,3008656476 +1,2533,147,128,3.56302881,0.108172312,1183.29726,3008656476 +1,2534,148,128,3.64619803,0.108375867,1181.07475,3008656476 +1,2535,149,128,2.79807591,0.108128596,1183.77566,3008656476 +1,2536,150,128,2.1442852,0.108132045,1183.7379,3008656476 +1,2537,151,128,1.73099124,0.108081994,1184.28607,3008656476 +1,2538,152,128,2.59552336,0.108280811,1182.11157,3008656476 +1,2539,153,128,3.15800047,0.121843797,1050.52537,3008656476 +1,2540,154,128,2.26666522,0.104644047,1223.19428,3008656476 +1,2541,155,128,3.49816418,0.128166493,998.700963,3008656476 +1,2542,156,128,3.8048358,0.108057185,1184.55797,3008656476 +1,2543,157,128,3.51225352,0.108311745,1181.77396,3008656476 +1,2544,158,128,2.94286013,0.108274305,1182.18261,3008656476 +1,2545,159,128,2.64948249,0.108024952,1184.91143,3008656476 +1,2546,160,128,3.02356887,0.108141629,1183.63299,3008656476 +1,2547,161,128,3.06379437,0.107987653,1185.3207,3008656476 +1,2548,162,128,2.65370536,0.10824574,1182.49457,3008656476 +1,2549,163,128,3.68230963,0.120744315,1060.09132,3008656476 +1,2550,164,128,3.48062921,0.107926298,1185.99454,3008656476 +1,2551,165,128,3.00373769,0.129160653,991.013881,3008656476 +1,2552,166,128,3.59537625,0.108067007,1184.45031,3008656476 +1,2553,167,128,2.93966913,0.108175895,1183.25806,3008656476 +1,2554,168,128,2.92767429,0.108380347,1181.02593,3008656476 +1,2555,169,128,2.99682117,0.108309162,1181.80215,3008656476 +1,2556,170,128,2.99935627,0.108238342,1182.57539,3008656476 +1,2557,171,128,2.85942411,0.10840924,1180.71116,3008656476 +1,2558,172,128,2.94468236,0.120044866,1066.26801,3008656476 +1,2559,173,128,2.88764262,0.108393657,1180.88091,3008656476 +1,2560,174,128,2.62624168,0.129093049,991.532859,3008656476 +1,2561,175,128,3.10066295,0.108189631,1183.10783,3008656476 +1,2562,176,128,2.44964814,0.108287548,1182.03803,3008656476 +1,2563,177,128,3.52149439,0.108435609,1180.42404,3008656476 +1,2564,178,128,2.51717043,0.108103364,1184.05196,3008656476 +1,2565,179,128,3.60635614,0.108208663,1182.89975,3008656476 +1,2566,180,128,3.09468532,0.108101296,1184.07461,3008656476 +1,2567,181,128,3.00599027,0.108062546,1184.49921,3008656476 +1,2568,182,128,3.67733622,0.122984833,1040.77874,3008656476 +1,2569,183,128,2.15532756,0.108482077,1179.91841,3008656476 +1,2570,184,128,2.44149685,0.130027265,984.408924,3008656476 +1,2571,185,128,3.06052542,0.108173778,1183.28122,3008656476 +1,2572,186,128,2.58456659,0.108042697,1184.71682,3008656476 +1,2573,187,128,2.51726222,0.108085805,1184.24431,3008656476 +1,2574,188,128,3.19787836,0.108353723,1181.31612,3008656476 +1,2575,189,128,3.041785,0.108234845,1182.6136,3008656476 +1,2576,190,128,2.9953084,0.108008975,1185.0867,3008656476 +1,2577,191,128,2.45369077,0.121708784,1051.69073,3008656476 +1,2578,192,128,2.32594967,0.108089563,1184.20314,3008656476 +1,2579,193,128,3.07962251,0.130379014,981.753091,3008656476 +1,2580,194,128,2.73093104,0.1083755,1181.07875,3008656476 +1,2581,195,128,3.27411366,0.108540949,1179.27843,3008656476 +1,2582,196,128,2.92628026,0.108043193,1184.71138,3008656476 +1,2583,197,128,2.74905562,0.10847936,1179.94796,3008656476 +1,2584,198,128,2.70035791,0.108537315,1179.31791,3008656476 +1,2585,199,128,3.38133979,0.108891996,1175.47666,3008656476 +1,2586,200,128,3.06447411,0.10810842,1183.99658,3008656476 +1,2587,201,128,2.81200385,0.114827228,1114.71819,3008656476 +1,2588,202,128,3.87255716,0.107869781,1186.61593,3008656476 +1,2589,203,128,3.0457809,0.12865648,994.89742,3008656476 +1,2590,204,128,2.97519636,0.108244258,1182.51076,3008656476 +1,2591,205,128,3.1095643,0.108185572,1183.15222,3008656476 +1,2592,206,128,2.40455556,0.108130447,1183.75539,3008656476 +1,2593,207,128,2.56928587,0.108456601,1180.19557,3008656476 +1,2594,208,128,2.38244247,0.108186083,1183.14663,3008656476 +1,2595,209,128,2.49072766,0.094693976,1351.72273,3008656476 +1,2596,210,128,2.26832438,0.12023584,1064.57442,3008656476 +1,2597,211,128,3.06702447,0.108155355,1183.48278,3008656476 +1,2598,212,128,2.84728312,0.127782668,1001.70079,3008656476 +1,2599,213,128,2.6352396,0.108167762,1183.34703,3008656476 +1,2600,214,128,2.10290313,0.108260463,1182.33376,3008656476 +1,2601,215,128,2.47620726,0.108082313,1184.28258,3008656476 +1,2602,216,128,3.23870611,0.108211108,1182.87302,3008656476 +1,2603,217,128,3.03306222,0.10830675,1181.82846,3008656476 +1,2604,218,128,2.62494302,0.10801252,1185.04781,3008656476 +1,2605,219,128,3.25197005,0.108385936,1180.96503,3008656476 +1,2606,220,128,2.61018038,0.112002032,1142.83641,3008656476 +1,2607,221,128,2.41544437,0.108429612,1180.48933,3008656476 +1,2608,222,128,2.82304406,0.129048286,991.876793,3008656476 +1,2609,223,128,2.49144793,0.108335611,1181.51362,3008656476 +1,2610,224,128,2.74623823,0.108324464,1181.6352,3008656476 +1,2611,225,128,2.86532259,0.108375869,1181.07473,3008656476 +1,2612,226,128,2.78974366,0.108426593,1180.5222,3008656476 +1,2613,227,128,3.29293513,0.10886455,1175.77301,3008656476 +1,2614,228,128,2.87765098,0.108363319,1181.21151,3008656476 +1,2615,229,128,2.732059,0.122559275,1044.3926,3008656476 +1,2616,230,128,3.15360045,0.108233081,1182.63288,3008656476 +1,2617,231,128,3.38703752,0.128615464,995.214697,3008656476 +1,2618,232,128,2.84687757,0.10824043,1182.55258,3008656476 +1,2619,233,128,3.28694749,0.108178765,1183.22667,3008656476 +1,2620,234,128,3.17560863,0.108351668,1181.33853,3008656476 +1,2621,235,128,2.45850849,0.108449344,1180.27454,3008656476 +1,2622,236,128,3.39948082,0.108134443,1183.71165,3008656476 +1,2623,237,128,2.58071804,0.108155153,1183.48499,3008656476 +1,2624,238,128,3.19147253,0.124120296,1031.25761,3008656476 +1,2625,239,128,3.44585657,0.095551481,1339.592,3008656476 +1,2626,240,128,3.23938203,0.10888087,1175.59678,3008656476 +1,2627,241,128,2.57809615,0.130366018,981.850961,3008656476 +1,2628,242,128,2.87852049,0.108690188,1177.6592,3008656476 +1,2629,243,128,2.98114681,0.108278005,1182.14221,3008656476 +1,2630,244,128,3.26421404,0.108150612,1183.53468,3008656476 +1,2631,245,128,2.41663313,0.108107583,1184.00575,3008656476 +1,2632,246,128,3.09589934,0.108172798,1183.29194,3008656476 +1,2633,247,128,3.11049461,0.108382637,1181.00098,3008656476 +1,2634,248,128,3.30481267,0.122013311,1049.06587,3008656476 +1,2635,249,128,1.77631831,0.108823748,1176.21385,3008656476 +1,2636,250,128,2.49237537,0.127370493,1004.94233,3008656476 +1,2637,251,128,3.49824786,0.10889466,1175.44791,3008656476 +1,2638,252,128,3.06167245,0.108486533,1179.86995,3008656476 +1,2639,253,128,2.77783632,0.108621331,1178.40574,3008656476 +1,2640,254,128,3.30093694,0.108597479,1178.66456,3008656476 +1,2641,255,128,3.22009611,0.108877228,1175.6361,3008656476 +1,2642,256,128,2.68854666,0.108771487,1176.77898,3008656476 +1,2643,257,128,3.17799544,0.120948104,1058.30514,3008656476 +1,2644,258,128,2.685853,0.104803564,1221.33251,3008656476 +1,2645,259,128,2.98656654,0.10823013,1182.66512,3008656476 +1,2646,260,128,3.32170558,0.129452226,988.781761,3008656476 +1,2647,261,128,2.9102416,0.108907981,1175.30413,3008656476 +1,2648,262,128,3.3032012,0.108202116,1182.97132,3008656476 +1,2649,263,128,2.33072519,0.108235041,1182.61146,3008656476 +1,2650,264,128,2.73435712,0.108094197,1184.15237,3008656476 +1,2651,265,128,2.6324656,0.108176004,1183.25687,3008656476 +1,2652,266,128,2.63791656,0.108370422,1181.13409,3008656476 +1,2653,267,128,2.00316072,0.120553642,1061.76801,3008656476 +1,2654,268,128,2.00523615,0.108021691,1184.9472,3008656476 +1,2655,269,128,2.96815538,0.127601558,1003.12255,3008656476 +1,2656,270,128,3.39310265,0.108630834,1178.30265,3008656476 +1,2657,271,128,2.35207176,0.108023353,1184.92897,3008656476 +1,2658,272,128,2.82115531,0.108220337,1182.77214,3008656476 +1,2659,273,128,3.36399341,0.108065375,1184.4682,3008656476 +1,2660,274,128,2.47103667,0.108074391,1184.36938,3008656476 +1,2661,275,128,2.80298948,0.108185395,1183.15416,3008656476 +1,2662,276,128,3.02340841,0.119658451,1069.71132,3008656476 +1,2663,277,128,3.6113565,0.108451795,1180.24787,3008656476 +1,2664,278,128,2.55120635,0.108196799,1183.02945,3008656476 +1,2665,279,128,2.57832623,0.127993461,1000.05109,3008656476 +1,2666,280,128,2.7293365,0.108221626,1182.75806,3008656476 +1,2667,281,128,2.59564686,0.108501945,1179.70235,3008656476 +1,2668,282,128,1.99608588,0.107997968,1185.20748,3008656476 +1,2669,283,128,2.32554317,0.108071099,1184.40546,3008656476 +1,2670,284,128,2.15009165,0.108232693,1182.63712,3008656476 +1,2671,285,128,2.24186158,0.108230551,1182.66052,3008656476 +1,2672,286,128,2.66966629,0.122927835,1041.26132,3008656476 +1,2673,287,128,2.23754692,0.108226873,1182.70071,3008656476 +1,2674,288,128,2.13833284,0.129676917,987.0685,3008656476 +1,2675,289,128,2.91774869,0.108702692,1177.52374,3008656476 +1,2676,290,128,2.51198649,0.108049723,1184.63978,3008656476 +1,2677,291,128,3.25967908,0.108063531,1184.48841,3008656476 +1,2678,292,128,2.78854156,0.108651634,1178.07708,3008656476 +1,2679,293,128,2.36727214,0.108613694,1178.4886,3008656476 +1,2680,294,128,2.35832953,0.10833296,1181.54253,3008656476 +1,2681,295,128,2.84108591,0.12189641,1050.07194,3008656476 +1,2682,296,128,3.44261575,0.10850088,1179.71393,3008656476 +1,2683,297,128,2.6913774,0.108106059,1184.02244,3008656476 +1,2684,298,128,2.88829374,0.128608995,995.264756,3008656476 +1,2685,299,128,2.97426033,0.108554338,1179.13298,3008656476 +1,2686,300,128,2.5708077,0.10845496,1180.21343,3008656476 +1,2687,301,128,2.88544941,0.108861449,1175.80651,3008656476 +1,2688,302,128,2.74668813,0.108782572,1176.65907,3008656476 +1,2689,303,128,2.98594832,0.108760283,1176.90021,3008656476 +1,2690,304,128,2.48287725,0.108806294,1176.40253,3008656476 +1,2691,305,128,2.78236866,0.118802796,1077.41572,3008656476 +1,2692,306,128,2.53452229,0.108986627,1174.45602,3008656476 +1,2693,307,128,2.19587851,0.129805595,986.090006,3008656476 +1,2694,308,128,3.43169641,0.108553384,1179.14334,3008656476 +1,2695,309,128,3.23820329,0.108911179,1175.26962,3008656476 +1,2696,310,128,2.59607506,0.108925645,1175.11354,3008656476 +1,2697,311,128,2.44824815,0.108799297,1176.47819,3008656476 +1,2698,312,128,2.5016048,0.108227444,1182.69447,3008656476 +1,2699,313,128,2.74905705,0.108220285,1182.77271,3008656476 +1,2700,314,128,1.95772922,0.120370151,1063.38655,3008656476 +1,2701,315,128,2.67458606,0.108136068,1183.69386,3008656476 +1,2702,316,128,2.8152349,0.108137241,1183.68102,3008656476 +1,2703,317,128,2.67412591,0.129000449,992.244608,3008656476 +1,2704,318,128,3.03948665,0.108144751,1183.59882,3008656476 +1,2705,319,128,3.0584259,0.108109997,1183.97931,3008656476 +1,2706,320,128,3.3628602,0.107998383,1185.20293,3008656476 +1,2707,321,128,2.77146363,0.108024809,1184.913,3008656476 +1,2708,322,128,2.90196204,0.108126804,1183.79528,3008656476 +1,2709,323,128,2.99670267,0.108200422,1182.98984,3008656476 +1,2710,324,128,2.16252041,0.110037346,1163.24143,3008656476 +1,2711,325,128,3.29346371,0.108053096,1184.6028,3008656476 +1,2712,326,128,3.04948115,0.127698836,1002.35839,3008656476 +1,2713,327,128,3.11814451,0.108440332,1180.37263,3008656476 +1,2714,328,128,3.14691997,0.108091913,1184.1774,3008656476 +1,2715,329,128,2.92563057,0.108049473,1184.64252,3008656476 +1,2716,330,128,3.95022058,0.108209083,1182.89515,3008656476 +1,2717,331,128,3.13099217,0.108140147,1183.64921,3008656476 +1,2718,332,128,2.60532975,0.108585532,1178.79424,3008656476 +1,2719,333,128,3.34322929,0.122082768,1048.46902,3008656476 +1,2720,334,128,2.91470885,0.108163311,1183.39573,3008656476 +1,2721,335,128,3.19736266,0.108219861,1182.77735,3008656476 +1,2722,336,128,3.09792948,0.131468495,973.617291,3008656476 +1,2723,337,128,3.29598451,0.108064931,1184.47306,3008656476 +1,2724,338,128,2.76686954,0.108146607,1183.57851,3008656476 +1,2725,339,128,3.15943527,0.107966925,1185.54826,3008656476 +1,2726,340,128,2.80705881,0.108432164,1180.46155,3008656476 +1,2727,341,128,2.80291319,0.108693959,1177.61834,3008656476 +1,2728,342,128,2.99580264,0.122773291,1042.57204,3008656476 +1,2729,343,128,2.70995474,0.106356528,1203.49923,3008656476 +1,2730,344,128,3.29033351,0.108141476,1183.63467,3008656476 +1,2731,345,128,2.44078732,0.127319348,1005.34602,3008656476 +1,2732,346,128,2.63081169,0.108551239,1179.16664,3008656476 +1,2733,347,128,3.646106,0.108169386,1183.32926,3008656476 +1,2734,348,128,3.07376003,0.108406544,1180.74053,3008656476 +1,2735,349,128,3.39758706,0.171272478,747.34716,3008656476 +1,2736,350,128,3.50076365,0.108046357,1184.67668,3008656476 +1,2737,351,128,3.21430802,0.122166286,1047.75224,3008656476 +1,2738,352,128,3.69208264,0.10834741,1181.38495,3008656476 +1,2739,353,128,3.31396294,0.108102487,1184.06157,3008656476 +1,2740,354,128,2.627985,0.128815861,993.666455,3008656476 +1,2741,355,128,2.92598009,0.108157338,1183.46108,3008656476 +1,2742,356,128,3.18538666,0.108449039,1180.27786,3008656476 +1,2743,357,128,2.78408217,0.107987318,1185.32437,3008656476 +1,2744,358,128,1.88441598,0.108074167,1184.37184,3008656476 +1,2745,359,128,2.48962712,0.108168135,1183.34295,3008656476 +1,2746,360,128,2.68253398,0.108194609,1183.0534,3008656476 +1,2747,361,128,2.60888267,0.12128433,1055.37129,3008656476 +1,2748,362,128,2.71010494,0.107951439,1185.71833,3008656476 +1,2749,363,128,2.83523011,0.108379874,1181.03108,3008656476 +1,2750,364,128,2.99612021,0.128841549,993.468341,3008656476 +1,2751,365,128,3.15001869,0.108132079,1183.73753,3008656476 +1,2752,366,128,3.1770916,0.107966984,1185.54761,3008656476 +1,2753,367,128,3.34650135,0.108232034,1182.64432,3008656476 +1,2754,368,128,2.49233413,0.108275095,1182.17398,3008656476 +1,2755,369,128,3.03913689,0.108297261,1181.93202,3008656476 +1,2756,370,128,2.85872006,0.120501192,1062.23016,3008656476 +1,2757,371,128,2.54549432,0.108179684,1183.21662,3008656476 +1,2758,372,128,2.97328448,0.10828149,1182.10416,3008656476 +1,2759,373,128,3.35222459,0.128459992,996.419181,3008656476 +1,2760,374,128,3.17242551,0.108577386,1178.88268,3008656476 +1,2761,375,128,2.47167087,0.108819634,1176.25832,3008656476 +1,2762,376,128,3.57352972,0.108285319,1182.06236,3008656476 +1,2763,377,128,2.30160165,0.108670991,1177.86724,3008656476 +1,2764,378,128,2.85496521,0.108329681,1181.5783,3008656476 +1,2765,379,128,1.95974958,0.108197222,1183.02483,3008656476 +1,2766,380,128,2.57452607,0.118541032,1079.79488,3008656476 +1,2767,381,128,2.38924885,0.10845043,1180.26272,3008656476 +1,2768,382,128,2.06099963,0.108448078,1180.28832,3008656476 +1,2769,383,128,2.23300934,0.131797462,971.187139,3008656476 +1,2770,384,128,3.66780043,0.108433195,1180.45032,3008656476 +1,2771,385,128,3.79525089,0.108557862,1179.0947,3008656476 +1,2772,386,128,2.79136586,0.108180729,1183.20519,3008656476 +1,2773,387,128,2.33130431,0.108674375,1177.83056,3008656476 +1,2774,388,128,3.09582663,0.108183336,1183.17668,3008656476 +1,2775,389,128,3.64902782,0.122039504,1048.84071,3008656476 +1,2776,390,128,3.08916545,0.108500789,1179.71492,3008656476 +1,2777,391,128,3.35723066,0.108407018,1180.73537,3008656476 +1,2778,392,128,2.48407698,0.127909442,1000.70799,3008656476 +1,2779,393,128,3.25332999,0.10859028,1178.7427,3008656476 +1,2780,394,128,2.69195127,0.108233303,1182.63045,3008656476 +1,2781,395,128,3.11222315,0.108555189,1179.12374,3008656476 +1,2782,396,128,3.00000143,0.108325214,1181.62702,3008656476 +1,2783,397,128,3.51206541,0.108351434,1181.34108,3008656476 +1,2784,398,128,2.89501166,0.108090253,1184.19558,3008656476 +1,2785,399,128,3.52719951,0.110434538,1159.05769,3008656476 +1,2786,400,128,3.00859523,0.108391996,1180.899,3008656476 +1,2787,401,128,3.20443106,0.108539386,1179.29541,3008656476 +1,2788,402,128,2.90541577,0.129355767,989.519083,3008656476 +1,2789,403,128,2.63479924,0.108544443,1179.24047,3008656476 +1,2790,404,128,2.86853361,0.108125836,1183.80588,3008656476 +1,2791,405,128,2.68915319,0.108558676,1179.08586,3008656476 +1,2792,406,128,2.72736526,0.108636794,1178.23801,3008656476 +1,2793,407,128,1.93131971,0.108686918,1177.69463,3008656476 +1,2794,408,128,2.52024388,0.120166499,1065.18873,3008656476 +1,2795,409,128,3.17644763,0.108449018,1180.27809,3008656476 +1,2796,410,128,2.12034345,0.108629912,1178.31265,3008656476 +1,2797,411,128,3.24239945,0.128110022,999.141191,3008656476 +1,2798,412,128,2.25065899,0.108509878,1179.61611,3008656476 +1,2799,413,128,2.47255325,0.108661106,1177.97439,3008656476 +1,2800,414,128,2.46177077,0.108287211,1182.04171,3008656476 +1,2801,415,128,3.49633503,0.108264437,1182.29036,3008656476 +1,2802,416,128,2.77788162,0.429189404,298.236627,3008656476 +1,2803,417,128,2.22996163,0.114136322,1121.46596,3008656476 +1,2804,418,128,2.66407466,0.106623993,1200.48027,3008656476 +1,2805,419,128,1.83574843,0.106783975,1198.68173,3008656476 +1,2806,420,128,1.6682657,0.117421731,1090.08783,3008656476 +1,2807,421,128,2.96569586,0.105153731,1217.26541,3008656476 +1,2808,422,128,2.46326423,0.106640812,1200.29094,3008656476 +1,2809,423,128,2.9508214,0.106634159,1200.36582,3008656476 +1,2810,424,128,3.51482153,0.106548309,1201.333,3008656476 +1,2811,425,128,3.60760498,0.106672503,1199.93434,3008656476 +1,2812,426,128,4.04698658,0.106526939,1201.574,3008656476 +1,2813,427,128,2.73566198,0.106618917,1200.53742,3008656476 +1,2814,428,128,1.92481387,0.106790144,1198.61249,3008656476 +1,2815,429,128,1.91895092,0.106605594,1200.68746,3008656476 +1,2816,430,128,2.08478189,0.119753983,1068.85798,3008656476 +1,2817,431,128,2.0259037,0.106542095,1201.40307,3008656476 +1,2818,432,128,2.31172323,0.106587703,1200.889,3008656476 +1,2819,433,128,1.98685217,0.106597629,1200.77718,3008656476 +1,2820,434,128,3.04149008,0.106590395,1200.85867,3008656476 +1,2821,435,128,3.21603942,0.106487029,1202.02433,3008656476 +1,2822,436,128,3.5713315,0.106607507,1200.66592,3008656476 +1,2823,437,128,2.37185693,0.106675084,1199.90531,3008656476 +1,2824,438,128,2.21423101,0.10663624,1200.3424,3008656476 +1,2825,439,128,2.90831065,0.106660576,1200.06852,3008656476 +1,2826,440,128,2.85495496,0.121218364,1055.94562,3008656476 +1,2827,441,128,2.47333121,0.106711744,1199.49309,3008656476 +1,2828,442,128,2.4983182,0.106666947,1199.99685,3008656476 +1,2829,443,128,2.45257092,0.106569162,1201.09793,3008656476 +1,2830,444,128,2.32271695,0.106577989,1200.99845,3008656476 +1,2831,445,128,2.46368599,0.106473371,1202.17852,3008656476 +1,2832,446,128,2.67570353,0.106674305,1199.91407,3008656476 +1,2833,447,128,3.31479645,0.106522387,1201.62534,3008656476 +1,2834,448,128,2.95271039,0.106602012,1200.72781,3008656476 +1,2835,449,128,3.06150579,0.106602476,1200.72258,3008656476 +1,2836,450,128,2.80785322,0.11865205,1078.78456,3008656476 +1,2837,451,128,3.44286966,0.10652707,1201.57252,3008656476 +1,2838,452,128,2.84651256,0.106445112,1202.49768,3008656476 +1,2839,453,128,2.59505081,0.106444545,1202.50408,3008656476 +1,2840,454,128,3.27212048,0.106525899,1201.58573,3008656476 +1,2841,455,128,3.40671921,0.106511864,1201.74406,3008656476 +1,2842,456,128,3.17728972,0.106445965,1202.48804,3008656476 +1,2843,457,128,3.35645556,0.106691407,1199.72174,3008656476 +1,2844,458,128,3.19461918,0.106755114,1199.00579,3008656476 +1,2845,459,128,2.3159256,0.106604291,1200.70214,3008656476 +1,2846,460,128,3.18123007,0.108223597,1182.73652,3008656476 +1,2847,461,128,3.03328133,0.106759378,1198.9579,3008656476 +1,2848,462,128,2.99306774,0.106691894,1199.71626,3008656476 +1,2849,463,128,2.28609467,0.106709432,1199.51908,3008656476 +1,2850,464,128,2.23652554,0.106602147,1200.72629,3008656476 +1,2851,465,128,2.31248474,0.106683952,1199.80557,3008656476 +1,2852,466,128,2.28592229,0.10672783,1199.31231,3008656476 +1,2853,467,128,2.5818367,0.106673229,1199.92618,3008656476 +1,2854,468,128,3.50874496,0.106589826,1200.86508,3008656476 +1,2855,469,128,3.29509473,0.120282227,1064.16387,3008656476 +1,2856,470,128,3.3008275,0.106970747,1196.58882,3008656476 +1,2857,471,128,2.16569591,0.106612955,1200.60456,3008656476 +1,2858,472,128,3.6533618,0.106568858,1201.10136,3008656476 +1,2859,473,128,3.15891457,0.106522376,1201.62547,3008656476 +1,2860,474,128,2.6745944,0.10659786,1200.77457,3008656476 +1,2861,475,128,1.99233663,0.106631987,1200.39027,3008656476 +1,2862,476,128,2.64380527,0.106470483,1202.21113,3008656476 +1,2863,477,128,2.81856751,0.106550684,1201.30623,3008656476 +1,2864,478,128,2.98699737,0.106573313,1201.05115,3008656476 +1,2865,479,128,3.45654202,0.120995424,1057.89125,3008656476 +1,2866,480,128,2.98559093,0.106413003,1202.86052,3008656476 +1,2867,481,128,2.46892023,0.106543452,1201.38777,3008656476 +1,2868,482,128,2.33092904,0.106597718,1200.77617,3008656476 +1,2869,483,128,3.07020617,0.106540366,1201.42257,3008656476 +1,2870,484,128,3.08736968,0.106510747,1201.75666,3008656476 +1,2871,485,128,2.61684585,0.106593481,1200.8239,3008656476 +1,2872,486,128,2.19365644,0.170553386,750.498146,3008656476 +1,2873,487,128,3.08723164,0.106611891,1200.61654,3008656476 +1,2874,488,128,2.51765156,0.120556524,1061.74262,3008656476 +1,2875,489,128,3.48668814,0.106643578,1200.2598,3008656476 +1,2876,490,128,3.62347031,0.106572772,1201.05725,3008656476 +1,2877,491,128,3.59923315,0.106640112,1200.29881,3008656476 +1,2878,492,128,2.79123187,0.106524433,1201.60227,3008656476 +1,2879,493,128,3.18976378,0.106785342,1198.66639,3008656476 +1,2880,494,128,3.06603026,0.106658615,1200.09059,3008656476 +1,2881,495,128,3.14841223,0.106657632,1200.10165,3008656476 +1,2882,496,128,3.54240918,0.106577793,1201.00066,3008656476 +1,2883,497,128,3.55766964,0.106589092,1200.87335,3008656476 +1,2884,498,128,3.45627046,0.119486573,1071.25007,3008656476 +1,2885,499,128,3.18413258,0.106578201,1200.99606,3008656476 +1,2886,500,128,3.58984709,0.106642527,1200.27163,3008656476 +1,2887,501,128,3.56251645,0.106599233,1200.75911,3008656476 +1,2888,502,128,2.81640744,0.106524638,1201.59995,3008656476 +1,2889,503,128,3.29055572,0.10662628,1200.45452,3008656476 +1,2890,504,128,3.56882691,0.106687793,1199.76238,3008656476 +1,2891,505,128,3.41247058,0.10666152,1200.0579,3008656476 +1,2892,506,128,3.59541392,0.106676639,1199.88782,3008656476 +1,2893,507,128,2.77539754,0.10668787,1199.76151,3008656476 +1,2894,508,128,3.29806614,0.119161728,1074.17039,3008656476 +1,2895,509,128,3.32428575,0.10659829,1200.76973,3008656476 +1,2896,510,128,3.20342636,0.106652303,1200.16161,3008656476 +1,2897,511,128,3.31577086,0.106577463,1201.00438,3008656476 +1,2898,512,128,3.44238162,0.106555883,1201.24761,3008656476 +1,2899,513,128,3.33761835,0.106616306,1200.56683,3008656476 +1,2900,514,128,3.20722771,0.106557826,1201.22571,3008656476 +1,2901,515,128,3.55674958,0.106491616,1201.97256,3008656476 +1,2902,516,128,3.00429368,0.106540266,1201.42369,3008656476 +1,2903,517,128,3.33365154,0.106490855,1201.98115,3008656476 +1,2904,518,128,3.56338501,0.109235817,1171.77684,3008656476 +1,2905,519,128,3.2235508,0.106497429,1201.90695,3008656476 +1,2906,520,128,2.81667972,0.106725308,1199.34065,3008656476 +1,2907,521,128,2.96306181,0.10669004,1199.73711,3008656476 +1,2908,522,128,2.58940482,0.106740914,1199.1653,3008656476 +1,2909,523,128,3.07661223,0.106619446,1200.53147,3008656476 +1,2910,524,128,2.44573474,0.106609842,1200.63962,3008656476 +1,2911,525,128,2.85545635,0.106578458,1200.99317,3008656476 +1,2912,526,128,3.40271854,0.106628566,1200.42879,3008656476 +1,2913,527,128,2.95352435,0.120264529,1064.32047,3008656476 +1,2914,528,128,3.43642521,0.106803092,1198.46718,3008656476 +1,2915,529,128,2.57657719,0.106371016,1203.33531,3008656476 +1,2916,530,128,2.25192499,0.106614325,1200.58913,3008656476 +1,2917,531,128,3.3464222,0.106730979,1199.27692,3008656476 +1,2918,532,128,3.79037523,0.106527533,1201.5673,3008656476 +1,2919,533,128,3.33816195,0.106436296,1202.59728,3008656476 +1,2920,534,128,3.22133255,0.106521949,1201.63029,3008656476 +1,2921,535,128,3.24194407,0.106481254,1202.08952,3008656476 +1,2922,536,128,3.08913994,0.106484011,1202.0584,3008656476 +1,2923,537,128,3.24836636,0.11853369,1079.86177,3008656476 +1,2924,538,128,2.30371833,0.10667446,1199.91233,3008656476 +1,2925,539,128,2.75785279,0.10660798,1200.66059,3008656476 +1,2926,540,128,2.90919185,0.106598983,1200.76192,3008656476 +1,2927,541,128,3.10651612,0.106616582,1200.56372,3008656476 +1,2928,542,128,3.09511304,0.106542968,1201.39323,3008656476 +1,2929,543,128,3.50934935,0.106654678,1200.13489,3008656476 +1,2930,544,128,2.72340035,0.106573796,1201.04571,3008656476 +1,2931,545,128,2.26159668,0.106486956,1202.02516,3008656476 +1,2932,546,128,2.63956118,0.1066689,1199.97488,3008656476 +1,2933,547,128,3.44141293,0.119003766,1075.59621,3008656476 +1,2934,548,128,3.39530158,0.106612899,1200.60519,3008656476 +1,2935,549,128,3.26516986,0.106517404,1201.68156,3008656476 +1,2936,550,128,2.88081241,0.106548915,1201.32617,3008656476 +1,2937,551,128,2.45018625,0.106521792,1201.63206,3008656476 +1,2938,552,128,2.88042402,0.106622668,1200.49519,3008656476 +1,2939,553,128,3.24751949,0.10694016,1196.93107,3008656476 +1,2940,554,128,3.77465892,0.106647938,1200.21073,3008656476 +1,2941,555,128,3.54294276,0.106588258,1200.88275,3008656476 +1,2942,556,128,2.55566406,0.106644661,1200.24761,3008656476 +1,2943,557,128,2.93563056,0.118537179,1079.82998,3008656476 +1,2944,558,128,3.842731,0.106500497,1201.87233,3008656476 +1,2945,559,128,3.8728466,0.106535875,1201.47321,3008656476 +1,2946,560,128,3.67135143,0.106550977,1201.30292,3008656476 +1,2947,561,128,3.19940424,0.106518855,1201.66519,3008656476 +1,2948,562,128,3.56320453,0.106598339,1200.76918,3008656476 +1,2949,563,128,3.78105783,0.106548981,1201.32543,3008656476 +1,2950,564,128,3.24160194,0.106681114,1199.83749,3008656476 +1,2951,565,128,2.94548202,0.106588778,1200.87689,3008656476 +1,2952,566,128,2.28762197,0.119260101,1073.28435,3008656476 +1,2953,567,128,3.54358196,0.106864624,1197.77711,3008656476 +1,2954,568,128,3.33038282,0.10670031,1199.62163,3008656476 +1,2955,569,128,3.4868269,0.106699533,1199.63037,3008656476 +1,2956,570,128,3.94414663,0.106523015,1201.61826,3008656476 +1,2957,571,128,2.68490314,0.106589592,1200.86772,3008656476 +1,2958,572,128,2.5356977,0.106488457,1202.00821,3008656476 +1,2959,573,128,3.59523964,0.106545874,1201.36046,3008656476 +1,2960,574,128,3.15924454,0.106510027,1201.76479,3008656476 +1,2961,575,128,3.24113417,0.106526414,1201.57992,3008656476 +1,2962,576,128,2.74052548,0.118824721,1077.21692,3008656476 +1,2963,577,128,3.7235713,0.106615889,1200.57152,3008656476 +1,2964,578,128,2.85061431,0.106547073,1201.34694,3008656476 +1,2965,579,128,2.87074041,0.106671317,1199.94769,3008656476 +1,2966,580,128,2.63919091,0.106565206,1201.14252,3008656476 +1,2967,581,128,3.16297674,0.106734007,1199.2429,3008656476 +1,2968,582,128,3.21987963,0.106518708,1201.66685,3008656476 +1,2969,583,128,2.83382249,0.106618618,1200.54079,3008656476 +1,2970,584,128,3.27968287,0.106473272,1202.17964,3008656476 +1,2971,585,128,2.68807983,0.106743911,1199.13163,3008656476 +1,2972,586,128,3.4771595,0.120146549,1065.3656,3008656476 +1,2973,587,128,3.27596021,0.106662444,1200.04751,3008656476 +1,2974,588,128,3.02497745,0.106626596,1200.45096,3008656476 +1,2975,589,128,3.70555282,0.106612443,1200.61033,3008656476 +1,2976,590,128,3.34633565,0.106357325,1203.49022,3008656476 +1,2977,591,128,3.26975942,0.106613368,1200.59991,3008656476 +1,2978,592,128,3.04291105,0.106673245,1199.926,3008656476 +1,2979,593,128,2.63366914,0.10655263,1201.28429,3008656476 +1,2980,594,128,2.69114304,0.106550074,1201.3131,3008656476 +1,2981,595,128,2.94806862,0.106594955,1200.8073,3008656476 +1,2982,596,128,3.11061907,0.121527364,1053.26073,3008656476 +1,2983,597,128,2.95899248,0.106606964,1200.67203,3008656476 +1,2984,598,128,2.8176055,0.106536634,1201.46465,3008656476 +1,2985,599,128,3.33489561,0.106496117,1201.92176,3008656476 +1,2986,600,128,3.06587934,0.106455913,1202.37567,3008656476 +1,2987,601,128,2.63639998,0.106572188,1201.06383,3008656476 +1,2988,602,128,3.16392088,0.106487414,1202.01999,3008656476 +1,2989,603,128,2.42837882,0.106557451,1201.22994,3008656476 +1,2990,604,128,3.48596382,0.106695594,1199.67466,3008656476 +1,2991,605,128,2.33123899,0.117934499,1085.34823,3008656476 +1,2992,606,128,2.37561965,0.105583172,1212.3144,3008656476 +1,2993,607,128,2.17380619,0.106528856,1201.55238,3008656476 +1,2994,608,128,3.16475773,0.106484605,1202.0517,3008656476 +1,2995,609,128,2.54305506,0.106551515,1201.29686,3008656476 +1,2996,610,128,2.59656835,0.106567021,1201.12206,3008656476 +1,2997,611,128,2.32807517,0.10662924,1200.4212,3008656476 +1,2998,612,128,2.77709365,0.106584813,1200.92156,3008656476 +1,2999,613,128,2.98456907,0.106612219,1200.61285,3008656476 +1,3000,614,128,3.26779771,0.10658306,1200.94131,3008656476 +1,3001,615,128,2.39956284,0.118568177,1079.54768,3008656476 +1,3002,616,128,3.13614488,0.106474624,1202.16438,3008656476 +1,3003,617,128,3.27568674,0.106434697,1202.61535,3008656476 +1,3004,618,128,2.68490052,0.106524531,1201.60116,3008656476 +1,3005,619,128,2.92042923,0.10651489,1201.70992,3008656476 +1,3006,620,128,2.76381207,0.106540938,1201.41612,3008656476 +1,3007,621,128,2.65953445,0.10655371,1201.27211,3008656476 +1,3008,622,128,3.17417574,0.106573429,1201.04984,3008656476 +1,3009,623,128,3.32614756,0.106373742,1203.30448,3008656476 +1,3010,624,128,3.20718026,0.106434123,1202.62183,3008656476 +1,3011,625,128,3.37819076,0.118695013,1078.39409,3008656476 +1,3012,626,128,3.10915494,0.106516233,1201.69477,3008656476 +1,3013,627,128,2.55795312,0.106554448,1201.26379,3008656476 +1,3014,628,128,3.01696634,0.106474746,1202.163,3008656476 +1,3015,629,128,3.77350044,0.106578042,1200.99786,3008656476 +1,3016,630,128,3.54789495,0.106566199,1201.13133,3008656476 +1,3017,631,128,2.67424464,0.106557541,1201.22892,3008656476 +1,3018,632,128,3.81613588,0.106477283,1202.13436,3008656476 +1,3019,633,128,3.64393139,0.106522159,1201.62792,3008656476 +1,3020,634,128,3.36597204,0.106548305,1201.33305,3008656476 +1,3021,635,128,2.59430003,0.120271228,1064.26119,3008656476 +1,3022,636,128,3.01131511,0.10652059,1201.64562,3008656476 +1,3023,637,128,2.91700315,0.106558738,1201.21543,3008656476 +1,3024,638,128,2.98209405,0.106612597,1200.60859,3008656476 +1,3025,639,128,3.6253705,0.106535781,1201.47427,3008656476 +1,3026,640,128,3.03891873,0.10658611,1200.90695,3008656476 +1,3027,641,128,3.13628292,0.106618572,1200.54131,3008656476 +1,3028,642,128,2.46406341,0.106520312,1201.64875,3008656476 +1,3029,643,128,3.09136271,0.106527034,1201.57293,3008656476 +1,3030,644,128,3.30964518,0.106528127,1201.5606,3008656476 +1,3031,645,128,4.02512169,0.108516674,1179.54223,3008656476 +1,3032,646,128,3.06019568,0.106463631,1202.28851,3008656476 +1,3033,647,128,2.91621375,0.106533764,1201.49702,3008656476 +1,3034,648,128,3.19812107,0.106526231,1201.58198,3008656476 +1,3035,649,128,3.0028975,0.106722916,1199.36753,3008656476 +1,3036,650,128,2.62392092,0.106817746,1198.30276,3008656476 +1,3037,651,128,2.8070631,0.1066862,1199.78029,3008656476 +1,3038,652,128,2.182971,0.106705604,1199.56211,3008656476 +1,3039,653,128,2.42863488,0.10673524,1199.22905,3008656476 +1,3040,654,128,3.57477498,0.117701492,1087.49683,3008656476 +1,3041,655,128,3.58062553,0.106559072,1201.21166,3008656476 +1,3042,656,128,3.28337526,0.106506581,1201.80367,3008656476 +1,3043,657,128,2.93436098,0.106478477,1202.12088,3008656476 +1,3044,658,128,3.33964753,0.106587674,1200.88933,3008656476 +1,3045,659,128,3.49275565,0.106607467,1200.66637,3008656476 +1,3046,660,128,3.13680911,0.106566881,1201.12364,3008656476 +1,3047,661,128,3.34068084,0.106573145,1201.05304,3008656476 +1,3048,662,128,3.09767413,0.106485862,1202.03751,3008656476 +1,3049,663,128,2.76083231,0.106534849,1201.48478,3008656476 +1,3050,664,128,2.30779934,0.118472018,1080.4239,3008656476 +1,3051,665,128,3.71830606,0.10655756,1201.22871,3008656476 +1,3052,666,128,3.41486764,0.106621696,1200.50613,3008656476 +1,3053,667,128,2.93561816,0.10656398,1201.15634,3008656476 +1,3054,668,128,2.45399237,0.106682202,1199.82525,3008656476 +1,3055,669,128,2.49429798,0.106544178,1201.37958,3008656476 +1,3056,670,128,2.85502529,0.106530143,1201.53786,3008656476 +1,3057,671,128,2.26444721,0.106530372,1201.53528,3008656476 +1,3058,672,128,2.67294765,0.106581696,1200.95668,3008656476 +1,3059,673,128,2.72967911,0.106616782,1200.56147,3008656476 +1,3060,674,128,3.54115152,0.121285483,1055.36126,3008656476 +1,3061,675,128,3.17186356,0.106665694,1200.01094,3008656476 +1,3062,676,128,2.85260201,0.106620281,1200.52207,3008656476 +1,3063,677,128,3.65111494,0.106685775,1199.78507,3008656476 +1,3064,678,128,2.99180388,0.106573059,1201.05401,3008656476 +1,3065,679,128,3.08151555,0.106671624,1199.94423,3008656476 +1,3066,680,128,3.00825763,0.106526838,1201.57514,3008656476 +1,3067,681,128,3.28391027,0.106579979,1200.97603,3008656476 +1,3068,682,128,2.93363523,0.106578547,1200.99217,3008656476 +1,3069,683,128,2.92377377,0.106628531,1200.42918,3008656476 +1,3070,684,128,3.00178933,0.118320436,1081.80805,3008656476 +1,3071,685,128,2.56632805,0.106586092,1200.90715,3008656476 +1,3072,686,128,2.83102679,0.106511714,1201.74575,3008656476 +1,3073,687,128,2.35270262,0.106620742,1200.51688,3008656476 +1,3074,688,128,3.33243179,0.106539886,1201.42798,3008656476 +1,3075,689,128,2.30779076,0.106576239,1201.01817,3008656476 +1,3076,690,128,2.78215528,0.10652852,1201.55617,3008656476 +1,3077,691,128,3.09037852,0.10663844,1200.31763,3008656476 +1,3078,692,128,3.01076841,0.106711088,1199.50047,3008656476 +1,3079,693,128,2.65026045,0.118526082,1079.93108,3008656476 +1,3080,694,128,3.28334928,0.10697097,1196.58633,3008656476 +1,3081,695,128,2.99796653,0.106562482,1201.17322,3008656476 +1,3082,696,128,3.79060245,0.106536735,1201.46351,3008656476 +1,3083,697,128,3.41513634,0.106546865,1201.34928,3008656476 +1,3084,698,128,2.87556005,0.106573096,1201.05359,3008656476 +1,3085,699,128,2.856704,0.106739081,1199.18589,3008656476 +1,3086,700,128,3.56656909,0.106424465,1202.73097,3008656476 +1,3087,701,128,3.01619196,0.106521005,1201.64093,3008656476 +1,3088,702,128,2.81842089,0.106616112,1200.56901,3008656476 +1,3089,703,128,2.23688483,0.11863946,1078.89904,3008656476 +1,3090,704,128,3.06464791,0.106504087,1201.83181,3008656476 +1,3091,705,128,3.5051322,0.106509187,1201.77427,3008656476 +1,3092,706,128,3.10993505,0.106508604,1201.78084,3008656476 +1,3093,707,128,3.08379531,0.106511621,1201.7468,3008656476 +1,3094,708,128,2.50214148,0.106532945,1201.50626,3008656476 +1,3095,709,128,3.37041879,0.106584337,1200.92692,3008656476 +1,3096,710,128,2.19349289,0.106400496,1203.00191,3008656476 +1,3097,711,128,3.16456842,0.106444364,1202.50613,3008656476 +1,3098,712,128,2.93433714,0.106349556,1203.57813,3008656476 +1,3099,713,128,3.22484875,0.119260432,1073.28137,3008656476 +1,3100,714,128,2.10681486,0.106549141,1201.32362,3008656476 +1,3101,715,128,1.73712075,0.106556067,1201.24554,3008656476 +1,3102,716,128,2.31952763,0.106539832,1201.42859,3008656476 +1,3103,717,128,3.14246202,0.106608363,1200.65627,3008656476 +1,3104,718,128,3.55876803,0.106542172,1201.4022,3008656476 +1,3105,719,128,3.51396275,0.106487701,1202.01675,3008656476 +1,3106,720,128,3.45696759,0.106629483,1200.41846,3008656476 +1,3107,721,128,3.42111921,0.1065698,1201.09074,3008656476 +1,3108,722,128,2.74364305,0.106505673,1201.81392,3008656476 +1,3109,723,128,3.67147446,0.121220108,1055.93042,3008656476 +1,3110,724,128,2.76748681,0.106511876,1201.74393,3008656476 +1,3111,725,128,3.12164235,0.106499653,1201.88185,3008656476 +1,3112,726,128,2.74682593,0.10656621,1201.1312,3008656476 +1,3113,727,128,3.29134321,0.106558825,1201.21445,3008656476 +1,3114,728,128,2.93851423,0.106536522,1201.46592,3008656476 +1,3115,729,128,3.17933917,0.106484593,1202.05183,3008656476 +1,3116,730,128,3.00977468,0.106492651,1201.96088,3008656476 +1,3117,731,128,3.64497852,0.106561467,1201.18466,3008656476 +1,3118,732,128,2.92324638,0.11915963,1074.1893,3008656476 +1,3119,733,128,2.59572744,0.104894754,1220.27075,3008656476 +1,3120,734,128,2.06108141,0.10649457,1201.93922,3008656476 +1,3121,735,128,2.08927965,0.106447504,1202.47066,3008656476 +1,3122,736,128,1.99156427,0.106594906,1200.80785,3008656476 +1,3123,737,128,1.90639913,0.106567965,1201.11142,3008656476 +1,3124,738,128,2.1245718,0.106684819,1199.79582,3008656476 +1,3125,739,128,2.56238127,0.106706956,1199.54692,3008656476 +1,3126,740,128,2.27576852,0.106605897,1200.68405,3008656476 +1,3127,741,128,2.66833973,0.106416267,1202.82362,3008656476 +1,3128,742,128,2.7011354,0.118357355,1081.4706,3008656476 +1,3129,743,128,2.86203074,0.106445044,1202.49845,3008656476 +1,3130,744,128,2.49174547,0.107200001,1194.02984,3008656476 +1,3131,745,128,2.00634813,0.10664205,1200.277,3008656476 +1,3132,746,128,2.04607058,0.106582158,1200.95148,3008656476 +1,3133,747,128,2.14128518,0.106658946,1200.08686,3008656476 +1,3134,748,128,2.96826196,0.106649845,1200.18927,3008656476 +1,3135,749,128,3.64330149,0.106560489,1201.19569,3008656476 +1,3136,750,128,2.5127809,0.106663676,1200.03365,3008656476 +1,3137,751,128,3.2183969,0.106647312,1200.21778,3008656476 +1,3138,752,128,2.39750481,0.118716873,1078.19551,3008656476 +1,3139,753,128,2.69447017,0.1066008,1200.74146,3008656476 +1,3140,754,128,2.9223783,0.106492355,1201.96422,3008656476 +1,3141,755,128,2.87512255,0.106607007,1200.67155,3008656476 +1,3142,756,128,3.33864331,0.106614182,1200.59074,3008656476 +1,3143,757,128,2.19924188,0.106699259,1199.63345,3008656476 +1,3144,758,128,2.94014907,0.106531161,1201.52638,3008656476 +1,3145,759,128,2.63147879,0.106561211,1201.18755,3008656476 +1,3146,760,128,2.91735983,0.106642603,1200.27078,3008656476 +1,3147,761,128,3.36692071,0.106547253,1201.34491,3008656476 +1,3148,762,128,3.79873252,0.121963735,1049.49229,3008656476 +1,3149,763,128,3.29878306,0.106590923,1200.85272,3008656476 +1,3150,764,128,3.54832959,0.106536539,1201.46572,3008656476 +1,3151,765,128,3.57854986,0.10656792,1201.11193,3008656476 +1,3152,766,128,3.14750147,0.10654927,1201.32217,3008656476 +1,3153,767,128,3.61082387,0.106541092,1201.41438,3008656476 +1,3154,768,128,2.91354108,0.106557047,1201.23449,3008656476 +1,3155,769,128,2.92372656,0.10655724,1201.23231,3008656476 +1,3156,770,128,2.48220372,0.106572713,1201.05791,3008656476 +1,3157,771,128,3.42446947,0.10651076,1201.75652,3008656476 +1,3158,772,128,2.76930714,0.109664093,1167.20064,3008656476 +1,3159,773,128,2.92616463,0.106584755,1200.92221,3008656476 +1,3160,774,128,2.75888562,0.106620613,1200.51833,3008656476 +1,3161,775,128,3.3123939,0.10667078,1199.95373,3008656476 +1,3162,776,128,3.33351851,0.106790594,1198.60744,3008656476 +1,3163,777,128,3.3607862,0.106753797,1199.02058,3008656476 +1,3164,778,128,2.77279878,0.106632129,1200.38867,3008656476 +1,3165,779,128,3.04494071,0.10679975,1198.50468,3008656476 +1,3166,780,128,2.63508749,0.106673789,1199.91988,3008656476 +1,3167,781,128,2.63001132,0.12073478,1060.17504,3008656476 +1,3168,782,128,2.10799122,0.106710498,1199.5071,3008656476 +1,3169,783,128,2.03744864,0.106554026,1201.26855,3008656476 +1,3170,784,128,2.84211254,0.106676067,1199.89426,3008656476 +1,3171,785,128,2.9485352,0.106873976,1197.67229,3008656476 +1,3172,786,128,2.99469471,0.106623043,1200.49097,3008656476 +1,3173,787,128,3.5546174,0.106690971,1199.72664,3008656476 +1,3174,788,128,3.41520143,0.106720413,1199.39566,3008656476 +1,3175,789,128,3.55758309,0.106596858,1200.78586,3008656476 +1,3176,790,128,3.24112105,0.106705798,1199.55993,3008656476 +1,3177,791,128,3.82831597,0.119047484,1075.20122,3008656476 +1,3178,792,128,2.89522624,0.106530671,1201.5319,3008656476 +1,3179,793,128,3.18634009,0.106508571,1201.78122,3008656476 +1,3180,794,128,2.59432125,0.106611506,1200.62088,3008656476 +1,3181,795,128,2.77511907,0.106523437,1201.6135,3008656476 +1,3182,796,128,3.52848864,0.106650169,1200.18563,3008656476 +1,3183,797,128,3.00360036,0.106632836,1200.38072,3008656476 +1,3184,798,128,2.90968561,0.10661774,1200.55068,3008656476 +1,3185,799,128,2.79929829,0.106426955,1202.70283,3008656476 +1,3186,800,128,3.54687786,0.106526869,1201.57479,3008656476 +1,3187,801,128,3.14667869,0.118758936,1077.81363,3008656476 +1,3188,802,128,3.6408205,0.106610934,1200.62732,3008656476 +1,3189,803,128,2.87128329,0.106679981,1199.85023,3008656476 +1,3190,804,128,3.24018979,0.106587405,1200.89236,3008656476 +1,3191,805,128,3.98780179,0.106640996,1200.28886,3008656476 +1,3192,806,128,3.8589623,0.106595876,1200.79692,3008656476 +1,3193,807,128,3.37832117,0.106673685,1199.92105,3008656476 +1,3194,808,128,2.66772366,0.106621385,1200.50964,3008656476 +1,3195,809,128,2.75777555,0.106587582,1200.89036,3008656476 +1,3196,810,128,2.7797699,0.106733693,1199.24643,3008656476 +1,3197,811,128,2.8630445,0.117168722,1092.44172,3008656476 +1,3198,812,128,3.50536823,0.10663788,1200.32394,3008656476 +1,3199,813,128,3.09826159,0.106606077,1200.68202,3008656476 +1,3200,814,128,2.48759627,0.106610741,1200.62949,3008656476 +1,3201,815,128,2.66834474,0.106650186,1200.18544,3008656476 +1,3202,816,128,3.54934883,0.106741011,1199.16421,3008656476 +1,3203,817,128,3.39011192,0.106581929,1200.95406,3008656476 +1,3204,818,128,3.24119663,0.106652563,1200.15869,3008656476 +1,3205,819,128,2.87212086,0.106631368,1200.39724,3008656476 +1,3206,820,128,2.82731032,0.12034034,1063.64998,3008656476 +1,3207,821,128,2.94663429,0.106961585,1196.69132,3008656476 +1,3208,822,128,2.74304676,0.106650657,1200.18014,3008656476 +1,3209,823,128,3.81681681,0.106499959,1201.8784,3008656476 +1,3210,824,128,3.31641006,0.106447574,1202.46987,3008656476 +1,3211,825,128,2.9827497,0.106538601,1201.44247,3008656476 +1,3212,826,128,3.16778564,0.106549024,1201.32494,3008656476 +1,3213,827,128,3.09441018,0.106615445,1200.57652,3008656476 +1,3214,828,128,2.95025134,0.106610185,1200.63576,3008656476 +1,3215,829,128,2.99867463,0.106636374,1200.34089,3008656476 +1,3216,830,128,3.26458049,0.120135646,1065.46229,3008656476 +1,3217,831,128,2.19334745,0.106707744,1199.53806,3008656476 +1,3218,832,128,3.3471508,0.106477594,1202.13084,3008656476 +1,3219,833,128,3.71165419,0.106676681,1199.88735,3008656476 +1,3220,834,128,3.65876222,0.106675468,1199.90099,3008656476 +1,3221,835,128,3.36937666,0.106753254,1199.02668,3008656476 +1,3222,836,128,2.87518644,0.106640547,1200.29392,3008656476 +1,3223,837,128,3.3984828,0.106597145,1200.78263,3008656476 +1,3224,838,128,3.13332391,0.106506649,1201.8029,3008656476 +1,3225,839,128,3.30292773,0.106608081,1200.65945,3008656476 +1,3226,840,128,3.11904502,0.11745039,1089.82184,3008656476 +1,3227,841,128,2.71019197,0.106567965,1201.11142,3008656476 +1,3228,842,128,2.46144009,0.106579643,1200.97982,3008656476 +1,3229,843,128,3.54339933,0.106721104,1199.38789,3008656476 +1,3230,844,128,2.55141759,0.106469208,1202.22553,3008656476 +1,3231,845,128,3.30459356,0.106484582,1202.05196,3008656476 +1,3232,846,128,2.73739338,0.106629484,1200.41845,3008656476 +1,3233,847,128,3.65486479,0.106615483,1200.57609,3008656476 +1,3234,848,128,2.7793901,0.106530768,1201.53081,3008656476 +1,3235,849,128,2.80871534,0.106675603,1199.89947,3008656476 +1,3236,850,128,2.70489597,0.119034048,1075.32258,3008656476 +1,3237,851,128,2.87878227,0.106538233,1201.44662,3008656476 +1,3238,852,128,2.41191173,0.106579668,1200.97953,3008656476 +1,3239,853,128,2.84260249,0.106599227,1200.75918,3008656476 +1,3240,854,128,3.66255808,0.106589331,1200.87066,3008656476 +1,3241,855,128,2.87592888,0.10654487,1201.37178,3008656476 +1,3242,856,128,3.51336884,0.106555429,1201.25273,3008656476 +1,3243,857,128,3.02745533,0.106527655,1201.56592,3008656476 +1,3244,858,128,3.27765203,0.106602004,1200.7279,3008656476 +1,3245,859,128,3.05874348,0.118480548,1080.34612,3008656476 +1,3246,860,128,3.25943255,0.10518721,1216.87798,3008656476 +1,3247,861,128,3.3864131,0.106587672,1200.88935,3008656476 +1,3248,862,128,2.79636931,0.106562645,1201.17139,3008656476 +1,3249,863,128,2.42049122,0.106514915,1201.70964,3008656476 +1,3250,864,128,3.02801061,0.106525133,1201.59437,3008656476 +1,3251,865,128,2.74493146,0.106465971,1202.26208,3008656476 +1,3252,866,128,2.92120266,0.106479975,1202.10396,3008656476 +1,3253,867,128,2.9626956,0.106599918,1200.75139,3008656476 +1,3254,868,128,3.1540246,0.10639638,1203.04845,3008656476 +1,3255,869,128,3.08709693,0.119837457,1068.11345,3008656476 +1,3256,870,128,3.43928456,0.106521772,1201.63228,3008656476 +1,3257,871,128,2.65455484,0.106762827,1198.91917,3008656476 +1,3258,872,128,2.90396023,0.106548551,1201.33027,3008656476 +1,3259,873,128,2.60250115,0.106634057,1200.36697,3008656476 +1,3260,874,128,3.14341307,0.106583419,1200.93727,3008656476 +1,3261,875,128,2.58238125,0.106561572,1201.18348,3008656476 +1,3262,876,128,3.00640035,0.106625176,1200.46695,3008656476 +1,3263,877,128,2.23811483,0.106567219,1201.11983,3008656476 +1,3264,878,128,2.61390948,0.106531706,1201.52023,3008656476 +1,3265,879,128,2.92120337,0.117659265,1087.88713,3008656476 +1,3266,880,128,3.29086423,0.106547847,1201.33821,3008656476 +1,3267,881,128,3.75828266,0.106766564,1198.87721,3008656476 +1,3268,882,128,4.29118013,0.106694672,1199.68502,3008656476 +1,3269,883,128,3.49103665,0.106708193,1199.53301,3008656476 +1,3270,884,128,2.49505782,0.10654931,1201.32172,3008656476 +1,3271,885,128,3.47003412,0.106687114,1199.77001,3008656476 +1,3272,886,128,3.11403584,0.106481565,1202.08601,3008656476 +1,3273,887,128,3.46433115,0.106642697,1200.26972,3008656476 +1,3274,888,128,2.65229034,0.10678462,1198.67449,3008656476 +1,3275,889,128,3.21751738,0.118980682,1075.80489,3008656476 +1,3276,890,128,2.49940062,0.106623427,1200.48664,3008656476 +1,3277,891,128,2.66316462,0.106483584,1202.06322,3008656476 +1,3278,892,128,3.33241034,0.10645217,1202.41795,3008656476 +1,3279,893,128,3.4064045,0.106483271,1202.06675,3008656476 +1,3280,894,128,3.5433948,0.106520854,1201.64264,3008656476 +1,3281,895,128,3.31432652,0.106575719,1201.02403,3008656476 +1,3282,896,128,2.33564854,0.106543328,1201.38917,3008656476 +1,3283,897,128,2.7262373,0.106528594,1201.55533,3008656476 +1,3284,898,128,2.34755301,0.106655436,1200.12636,3008656476 +1,3285,899,128,2.85280418,0.109029431,1173.99494,3008656476 +1,3286,900,128,2.4698813,0.106548405,1201.33192,3008656476 +1,3287,901,128,2.46749449,0.10666365,1200.03394,3008656476 +1,3288,902,128,2.64825749,0.106762939,1198.91791,3008656476 +1,3289,903,128,2.76768279,0.106727755,1199.31315,3008656476 +1,3290,904,128,2.3587265,0.106589768,1200.86573,3008656476 +1,3291,905,128,2.63958359,0.1066826,1199.82078,3008656476 +1,3292,906,128,3.31780601,0.106650784,1200.17871,3008656476 +1,3293,907,128,3.26615143,0.106674706,1199.90956,3008656476 +1,3294,908,128,3.14672232,0.121724553,1051.55449,3008656476 +1,3295,909,128,2.70710039,0.106962429,1196.68187,3008656476 +1,3296,910,128,3.04689574,0.106571822,1201.06795,3008656476 +1,3297,911,128,2.93798351,0.106619242,1200.53376,3008656476 +1,3298,912,128,3.49218154,0.106584261,1200.92778,3008656476 +1,3299,913,128,2.73302794,0.106644238,1200.25238,3008656476 +1,3300,914,128,3.75471544,0.106508644,1201.78039,3008656476 +1,3301,915,128,3.24277639,0.106781858,1198.7055,3008656476 +1,3302,916,128,2.84715676,0.106542201,1201.40187,3008656476 +1,3303,917,128,2.44166517,0.1065843,1200.92734,3008656476 +1,3304,918,128,2.88789511,0.120685605,1060.60702,3008656476 +1,3305,919,128,2.55033231,0.106551643,1201.29541,3008656476 +1,3306,920,128,2.95696378,0.106566564,1201.12721,3008656476 +1,3307,921,128,2.72705984,0.106535789,1201.47418,3008656476 +1,3308,922,128,3.1359086,0.106521381,1201.63669,3008656476 +1,3309,923,128,3.7151773,0.106603961,1200.70585,3008656476 +1,3310,924,128,2.6647923,0.106427635,1202.69515,3008656476 +1,3311,925,128,3.52185965,0.106553845,1201.27059,3008656476 +1,3312,926,128,2.72117925,0.106718332,1199.41905,3008656476 +1,3313,927,128,2.5832119,0.106484631,1202.0514,3008656476 +1,3314,928,128,3.180197,0.119158068,1074.20339,3008656476 +1,3315,929,128,2.91400409,0.106556668,1201.23876,3008656476 +1,3316,930,128,2.36748648,0.106582554,1200.94701,3008656476 +1,3317,931,128,2.82682252,0.106560003,1201.20117,3008656476 +1,3318,932,128,2.72707868,0.106490387,1201.98643,3008656476 +1,3319,933,128,2.80620432,0.106548857,1201.32682,3008656476 +1,3320,934,128,2.81760406,0.106527641,1201.56608,3008656476 +1,3321,935,128,2.91053581,0.106703322,1199.58777,3008656476 +1,3322,936,128,2.57953525,0.106587042,1200.89645,3008656476 +1,3323,937,128,2.86865497,0.106561025,1201.18965,3008656476 +1,3324,938,128,3.11473298,0.116739861,1096.45496,3008656476 +1,3325,939,128,3.18502259,0.106555491,1201.25203,3008656476 +1,3326,940,128,2.90631223,0.1065432,1201.39061,3008656476 +1,3327,941,128,2.42480087,0.106496186,1201.92098,3008656476 +1,3328,942,128,2.66385508,0.106541642,1201.40818,3008656476 +1,3329,943,128,2.69351053,0.106560408,1201.1966,3008656476 +1,3330,944,128,3.74831223,0.106483738,1202.06148,3008656476 +1,3331,945,128,3.48800063,0.106552795,1201.28243,3008656476 +1,3332,946,128,2.8029108,0.106485543,1202.04111,3008656476 +1,3333,947,128,3.42343378,0.122335423,1046.30365,3008656476 +1,3334,948,128,3.67243814,0.10666316,1200.03945,3008656476 +1,3335,949,128,3.90049529,0.10655263,1201.28429,3008656476 +1,3336,950,128,3.13143039,0.106576305,1201.01743,3008656476 +1,3337,951,128,2.64063764,0.106629559,1200.41761,3008656476 +1,3338,952,128,2.4498148,0.10659426,1200.81513,3008656476 +1,3339,953,128,3.16056442,0.106514795,1201.71099,3008656476 +1,3340,954,128,3.10453343,0.106665531,1200.01278,3008656476 +1,3341,955,128,2.32795238,0.106543608,1201.38601,3008656476 +1,3342,956,128,3.42050982,0.106550949,1201.30324,3008656476 +1,3343,957,128,3.11860847,0.121481207,1053.66092,3008656476 +1,3344,958,128,2.99774528,0.10666116,1200.06195,3008656476 +1,3345,959,128,3.06809139,0.106581832,1200.95515,3008656476 +1,3346,960,128,3.03367019,0.106589197,1200.87217,3008656476 +1,3347,961,128,2.86442804,0.10664549,1200.23828,3008656476 +1,3348,962,128,3.0104723,0.106642229,1200.27499,3008656476 +1,3349,963,128,2.67323327,0.106570879,1201.07858,3008656476 +1,3350,964,128,2.43277812,0.106558387,1201.21938,3008656476 +1,3351,965,128,2.64235115,0.106509829,1201.76702,3008656476 +1,3352,966,128,2.85147333,0.106511916,1201.74347,3008656476 +1,3353,967,128,3.78637767,0.119631955,1069.94824,3008656476 +1,3354,968,128,3.15815759,0.108665038,1177.93176,3008656476 +1,3355,969,128,2.66548896,0.106418307,1202.80057,3008656476 +1,3356,970,128,2.64943528,0.106423811,1202.73836,3008656476 +1,3357,971,128,3.00878596,0.106398095,1203.02906,3008656476 +1,3358,972,128,2.33096242,0.106643271,1200.26326,3008656476 +1,3359,973,128,2.53097916,0.106470977,1202.20556,3008656476 +1,3360,974,128,2.83771992,0.106662382,1200.0482,3008656476 +1,3361,975,128,3.11678052,0.106173515,1205.57373,3008656476 +1,3362,976,128,3.07263279,0.106543465,1201.38762,3008656476 +1,3363,977,128,3.12355828,0.118947525,1076.10478,3008656476 +1,3364,978,128,3.1187408,0.106421166,1202.76825,3008656476 +1,3365,979,128,3.21073914,0.106493633,1201.94979,3008656476 +1,3366,980,128,2.84628773,0.106387369,1203.15035,3008656476 +1,3367,981,128,3.05374694,0.106356527,1203.49925,3008656476 +1,3368,982,128,2.7133975,0.106449799,1202.44473,3008656476 +1,3369,983,128,2.68447685,0.106423124,1202.74612,3008656476 +1,3370,984,128,2.8096621,0.106513313,1201.72771,3008656476 +1,3371,985,128,2.69281507,0.106411495,1202.87757,3008656476 +1,3372,986,128,2.66016054,0.11804467,1084.33528,3008656476 +1,3373,987,128,2.58858323,0.104482595,1225.08443,3008656476 +1,3374,988,128,2.8052454,0.106368339,1203.3656,3008656476 +1,3375,989,128,3.22489071,0.106439912,1202.55642,3008656476 +1,3376,990,128,2.40253353,0.1065561,1201.24517,3008656476 +1,3377,991,128,2.55515766,0.106482446,1202.07607,3008656476 +1,3378,992,128,2.85686255,0.10638553,1203.17115,3008656476 +1,3379,993,128,2.00857043,0.106354689,1203.52004,3008656476 +1,3380,994,128,2.36416769,0.106400585,1203.0009,3008656476 +1,3381,995,128,2.1392417,0.106391341,1203.10543,3008656476 +1,3382,996,128,2.77030468,0.120371581,1063.37392,3008656476 +1,3383,997,128,2.73418379,0.10647342,1202.17797,3008656476 +1,3384,998,128,2.48392272,0.106565746,1201.13643,3008656476 +1,3385,999,128,2.6890974,0.106487311,1202.02115,3008656476 +1,3386,1000,128,3.19906569,0.106369441,1203.35313,3008656476 +1,3387,1001,128,2.73146749,0.106317892,1203.93659,3008656476 +1,3388,1002,128,2.82209039,0.106381068,1203.22161,3008656476 +1,3389,1003,128,2.62650776,0.106403478,1202.9682,3008656476 +1,3390,1004,128,3.12491059,0.106360704,1203.45198,3008656476 +1,3391,1005,128,2.73253083,0.106363547,1203.41981,3008656476 +1,3392,1006,128,3.23361778,0.120890989,1058.80514,3008656476 +1,3393,1007,128,3.10127616,0.106421286,1202.7669,3008656476 +1,3394,1008,128,2.55589724,0.106403486,1202.96811,3008656476 +1,3395,1009,128,2.63558817,0.106524738,1201.59882,3008656476 +1,3396,1010,128,3.00682783,0.106379887,1203.23497,3008656476 +1,3397,1011,128,2.39910364,0.106358979,1203.4715,3008656476 +1,3398,1012,128,2.94762993,0.106255688,1204.64139,3008656476 +1,3399,1013,128,2.53377295,0.10631178,1204.0058,3008656476 +1,3400,1014,128,2.81573057,0.106465113,1202.27177,3008656476 +1,3401,1015,128,1.8439672,0.106283545,1204.32566,3008656476 +1,3402,1016,128,2.41765022,0.118325236,1081.76416,3008656476 +1,3403,1017,128,2.4504683,0.106325616,1203.84913,3008656476 +1,3404,1018,128,2.72142196,0.106509261,1201.77343,3008656476 +1,3405,1019,128,3.42257953,0.106386137,1203.16428,3008656476 +1,3406,1020,128,3.28861713,0.106382806,1203.20195,3008656476 +1,3407,1021,128,2.91357017,0.106230114,1204.9314,3008656476 +1,3408,1022,128,2.79816985,0.106300796,1204.13021,3008656476 +1,3409,1023,128,3.85799384,0.106402696,1202.97704,3008656476 +1,3410,1024,128,3.33254933,0.106357417,1203.48917,3008656476 +1,3411,1025,128,3.05401063,0.10629646,1204.17933,3008656476 +1,3412,1026,128,2.66050959,0.112556532,1137.20632,3008656476 +1,3413,1027,128,2.55935097,0.106425241,1202.7222,3008656476 +1,3414,1028,128,2.51658893,0.106445397,1202.49446,3008656476 +1,3415,1029,128,2.8417058,0.106373946,1203.30217,3008656476 +1,3416,1030,128,2.26799512,0.106436573,1202.59415,3008656476 +1,3417,1031,128,3.02741408,0.106321071,1203.90059,3008656476 +1,3418,1032,128,2.495538,0.106369039,1203.35768,3008656476 +1,3419,1033,128,2.70369935,0.106409867,1202.89597,3008656476 +1,3420,1034,128,3.25101471,0.106419608,1202.78586,3008656476 +1,3421,1035,128,3.21097302,0.120331151,1063.7312,3008656476 +1,3422,1036,128,3.06562376,0.10684683,1197.97658,3008656476 +1,3423,1037,128,2.9239006,0.106455117,1202.38466,3008656476 +1,3424,1038,128,2.57430172,0.106420769,1202.77274,3008656476 +1,3425,1039,128,2.56604528,0.126657784,1010.59719,3008656476 +1,3426,1040,128,2.96452904,0.147271143,869.145152,3008656476 +1,3427,1041,128,3.02923608,0.106389926,1203.12143,3008656476 +1,3428,1042,128,2.69783306,0.106325632,1203.84895,3008656476 +1,3429,1043,128,1.99076068,0.106308362,1204.04451,3008656476 +1,3430,1044,128,2.3448925,0.10647356,1202.17639,3008656476 +1,3431,1045,128,2.67562628,0.11742577,1090.05034,3008656476 +1,3432,1046,128,2.62459254,0.106941808,1196.91262,3008656476 +1,3433,1047,128,2.61028361,0.106384452,1203.18334,3008656476 +1,3434,1048,128,3.21194053,0.106418763,1202.79541,3008656476 +1,3435,1049,128,3.12670708,0.106264007,1204.54709,3008656476 +1,3436,1050,128,3.2933414,0.106376617,1203.27196,3008656476 +1,3437,1051,128,2.86907125,0.106366543,1203.38592,3008656476 +1,3438,1052,128,2.65383315,0.106335684,1203.73515,3008656476 +1,3439,1053,128,2.63888693,0.106427244,1202.69956,3008656476 +1,3440,1054,128,3.27999353,0.117313019,1091.098,3008656476 +1,3441,1055,128,2.60995364,0.105282923,1215.77172,3008656476 +1,3442,1056,128,3.28270817,0.106410383,1202.89014,3008656476 +1,3443,1057,128,3.30559087,0.106435918,1202.60155,3008656476 +1,3444,1058,128,2.92669177,0.106497265,1201.9088,3008656476 +1,3445,1059,128,2.28538013,0.106474924,1202.16099,3008656476 +1,3446,1060,128,3.523,0.106341478,1203.66956,3008656476 +1,3447,1061,128,3.545084,0.106467111,1202.24921,3008656476 +1,3448,1062,128,3.37135172,0.109179667,1172.37947,3008656476 +1,3449,1063,128,3.01718521,0.106321295,1203.89805,3008656476 +1,3450,1064,128,2.66124034,0.118510719,1080.07108,3008656476 +1,3451,1065,128,2.92895985,0.106352556,1203.54418,3008656476 +1,3452,1066,128,2.82211375,0.106474947,1202.16073,3008656476 +1,3453,1067,128,3.07223773,0.106410516,1202.88863,3008656476 +1,3454,1068,128,3.09612393,0.106301435,1204.12297,3008656476 +1,3455,1069,128,3.52141786,0.106491926,1201.96906,3008656476 +1,3456,1070,128,3.15676117,0.106430209,1202.66606,3008656476 +1,3457,1071,128,3.43259811,0.106583926,1200.93156,3008656476 +1,3458,1072,128,2.60409689,0.106391542,1203.10316,3008656476 +1,3459,1073,128,3.41582346,0.106492507,1201.9625,3008656476 +1,3460,1074,128,3.07165098,0.120467776,1062.5248,3008656476 +1,3461,1075,128,3.02067804,0.106367379,1203.37646,3008656476 +1,3462,1076,128,3.50393963,0.106309534,1204.03124,3008656476 +1,3463,1077,128,3.2435782,0.106330549,1203.79328,3008656476 +1,3464,1078,128,3.39538431,0.106400059,1203.00685,3008656476 +1,3465,1079,128,3.7903769,0.106303293,1204.10193,3008656476 +1,3466,1080,128,2.71386313,0.106336224,1203.72903,3008656476 +1,3467,1081,128,1.71246362,0.106301785,1204.11901,3008656476 +1,3468,1082,128,2.54615784,0.106431192,1202.65495,3008656476 +1,3469,1083,128,3.08709788,0.106325655,1203.84869,3008656476 +1,3470,1084,128,2.98572183,0.121669497,1052.03032,3008656476 +1,3471,1085,128,3.18201971,0.106282301,1204.33975,3008656476 +1,3472,1086,128,3.06110358,0.106253063,1204.67115,3008656476 +1,3473,1087,128,2.69602871,0.106322931,1203.87953,3008656476 +1,3474,1088,128,2.6908915,0.106378356,1203.25229,3008656476 +1,3475,1089,128,2.67316508,0.106332337,1203.77303,3008656476 +1,3476,1090,128,2.93844461,0.106404495,1202.9567,3008656476 +1,3477,1091,128,3.14288449,0.106269894,1204.48036,3008656476 +1,3478,1092,128,2.44085693,0.106295158,1204.19408,3008656476 +1,3479,1093,128,3.36547971,0.106229887,1204.93397,3008656476 +1,3480,1094,128,3.17281675,0.111059767,1152.53258,3008656476 +1,3481,1095,128,2.89287138,0.106407591,1202.9217,3008656476 +1,3482,1096,128,2.53149271,0.106295102,1204.19471,3008656476 +1,3483,1097,128,2.81960535,0.106249446,1204.71216,3008656476 +1,3484,1098,128,3.05788136,0.106364613,1203.40775,3008656476 +1,3485,1099,128,3.47475314,0.106254349,1204.65657,3008656476 +1,3486,1100,128,3.1881125,0.106278739,1204.38012,3008656476 +1,3487,1101,128,3.05906391,0.106248505,1204.72283,3008656476 +1,3488,1102,128,2.95637393,0.106291725,1204.23297,3008656476 +1,3489,1103,128,3.16779208,0.117883922,1085.81389,3008656476 +1,3490,1104,128,2.77465773,0.106726189,1199.33075,3008656476 +1,3491,1105,128,3.57036829,0.106325151,1203.85439,3008656476 +1,3492,1106,128,2.75534296,0.106390588,1203.11394,3008656476 +1,3493,1107,128,2.84713888,0.106235564,1204.86959,3008656476 +1,3494,1108,128,2.66577029,0.106366576,1203.38554,3008656476 +1,3495,1109,128,2.22744966,0.106397763,1203.03281,3008656476 +1,3496,1110,128,2.75678992,0.106494016,1201.94547,3008656476 +1,3497,1111,128,2.75900507,0.106247159,1204.7381,3008656476 +1,3498,1112,128,2.43376279,0.106392778,1203.08918,3008656476 +1,3499,1113,128,2.52345657,0.118470742,1080.43554,3008656476 +1,3500,1114,128,3.26526451,0.106330674,1203.79186,3008656476 +1,3501,1115,128,2.07672119,0.106230285,1204.92946,3008656476 +1,3502,1116,128,2.40786266,0.106375462,1203.28502,3008656476 +1,3503,1117,128,2.19552708,0.106195633,1205.32263,3008656476 +1,3504,1118,128,2.82600236,0.10630691,1204.06096,3008656476 +1,3505,1119,128,2.5045867,0.1063848,1203.1794,3008656476 +1,3506,1120,128,1.94624174,0.106279552,1204.3709,3008656476 +1,3507,1121,128,2.56311226,0.106209764,1205.16227,3008656476 +1,3508,1122,128,2.6028924,0.106316341,1203.95415,3008656476 +1,3509,1123,128,2.03052688,0.11981258,1068.33523,3008656476 +1,3510,1124,128,1.74600363,0.10622504,1204.98896,3008656476 +1,3511,1125,128,3.01141715,0.106308102,1204.04746,3008656476 +1,3512,1126,128,2.28395629,0.106394671,1203.06777,3008656476 +1,3513,1127,128,3.56563354,0.106266375,1204.52024,3008656476 +1,3514,1128,128,3.02247858,0.106462059,1202.30626,3008656476 +1,3515,1129,128,2.00735736,0.106296956,1204.17371,3008656476 +1,3516,1130,128,2.90998745,0.106466454,1202.25663,3008656476 +1,3517,1131,128,2.51456809,0.106339035,1203.69721,3008656476 +1,3518,1132,128,2.47616243,0.106207038,1205.1932,3008656476 +1,3519,1133,128,2.42635345,0.120261888,1064.34384,3008656476 +1,3520,1134,128,3.36150432,0.106228148,1204.9537,3008656476 +1,3521,1135,128,3.06160474,0.106396335,1203.04896,3008656476 +1,3522,1136,128,2.86203074,0.106217164,1205.07831,3008656476 +1,3523,1137,128,2.95623517,0.106561276,1201.18682,3008656476 +1,3524,1138,128,2.72920895,0.106312577,1203.99678,3008656476 +1,3525,1139,128,2.51737475,0.106412717,1202.86375,3008656476 +1,3526,1140,128,2.71861458,0.10629692,1204.17412,3008656476 +1,3527,1141,128,2.84626436,0.106376277,1203.2758,3008656476 +1,3528,1142,128,2.80073524,0.106329212,1203.80841,3008656476 +1,3529,1143,128,2.64282799,0.110824155,1154.98286,3008656476 +1,3530,1144,128,2.5771842,0.106328407,1203.81753,3008656476 +1,3531,1145,128,3.24794292,0.106311693,1204.00679,3008656476 +1,3532,1146,128,3.4226861,0.10635061,1203.5662,3008656476 +1,3533,1147,128,3.09282327,0.106378558,1203.25,3008656476 +1,3534,1148,128,3.22182703,0.106375586,1203.28362,3008656476 +1,3535,1149,128,2.88747001,0.106401609,1202.98933,3008656476 +1,3536,1150,128,3.17051435,0.106273816,1204.43591,3008656476 +1,3537,1151,128,3.05968547,0.106274626,1204.42673,3008656476 +1,3538,1152,128,3.41609192,0.118510907,1080.06936,3008656476 +1,3539,1153,128,3.03728342,0.106381002,1203.22236,3008656476 +1,3540,1154,128,3.11752057,0.106404834,1202.95287,3008656476 +1,3541,1155,128,3.11287308,0.106314696,1203.97278,3008656476 +1,3542,1156,128,3.00451779,0.106419554,1202.78647,3008656476 +1,3543,1157,128,3.5285697,0.106288472,1204.26983,3008656476 +1,3544,1158,128,2.93156338,0.106405992,1202.93977,3008656476 +1,3545,1159,128,3.27036023,0.106403691,1202.96579,3008656476 +1,3546,1160,128,3.25534964,0.106317952,1203.93591,3008656476 +1,3547,1161,128,3.29996538,0.106434222,1202.62071,3008656476 +1,3548,1162,128,2.57587767,0.119387272,1072.14109,3008656476 +1,3549,1163,128,2.67142248,0.106402511,1202.97913,3008656476 +1,3550,1164,128,2.8226006,0.106392551,1203.09175,3008656476 +1,3551,1165,128,3.41209745,0.106370275,1203.3437,3008656476 +1,3552,1166,128,3.0723536,0.10636123,1203.44603,3008656476 +1,3553,1167,128,3.4674418,0.106281484,1204.34901,3008656476 +1,3554,1168,128,2.84026957,0.106358861,1203.47284,3008656476 +1,3555,1169,128,3.49142814,0.106230886,1204.92264,3008656476 +1,3556,1170,128,2.94197774,0.10636839,1203.36502,3008656476 +1,3557,1171,128,3.43062234,0.106284874,1204.3106,3008656476 +1,3558,1172,128,2.93271804,0.119993189,1066.72721,3008656476 +1,3559,1173,128,3.09726,0.106412696,1202.86399,3008656476 +1,3560,1174,128,3.35708547,0.106393063,1203.08596,3008656476 +1,3561,1175,128,3.38023305,0.106346275,1203.61527,3008656476 +1,3562,1176,128,3.35823631,0.1063292,1203.80855,3008656476 +1,3563,1177,128,2.98894691,0.106244989,1204.7627,3008656476 +1,3564,1178,128,2.83981586,0.106318968,1203.9244,3008656476 +1,3565,1179,128,3.06495476,0.106195858,1205.32008,3008656476 +1,3566,1180,128,3.43792725,0.106248694,1204.72069,3008656476 +1,3567,1181,128,2.95423889,0.10632556,1203.84976,3008656476 +1,3568,1182,128,3.25421906,0.120336554,1063.68344,3008656476 +1,3569,1183,128,2.3378799,0.106330901,1203.78929,3008656476 +1,3570,1184,128,2.51309323,0.10613221,1206.04292,3008656476 +1,3571,1185,128,3.53757501,0.106309187,1204.03517,3008656476 +1,3572,1186,128,3.3607173,0.106196441,1205.31346,3008656476 +1,3573,1187,128,3.33681941,0.106299358,1204.1465,3008656476 +1,3574,1188,128,3.28581262,0.106259968,1204.59287,3008656476 +1,3575,1189,128,2.96880627,0.106219904,1205.04722,3008656476 +1,3576,1190,128,2.67361426,0.106264879,1204.5372,3008656476 +1,3577,1191,128,2.25793552,0.106305917,1204.07221,3008656476 +1,3578,1192,128,2.78655291,0.109547718,1168.44059,3008656476 +1,3579,1193,128,2.59219646,0.106437546,1202.58316,3008656476 +1,3580,1194,128,1.96956742,0.106321683,1203.89366,3008656476 +1,3581,1195,128,2.26691389,0.106406266,1202.93668,3008656476 +1,3582,1196,128,2.15158391,0.106205843,1205.20676,3008656476 +1,3583,1197,128,2.79024696,0.106379246,1203.24222,3008656476 +1,3584,1198,128,2.36814308,0.106125334,1206.12106,3008656476 +1,3585,1199,128,3.32579494,0.106352885,1203.54046,3008656476 +1,3586,1200,128,3.10760641,0.106309767,1204.0286,3008656476 +1,3587,1201,128,3.5807054,0.117871083,1085.93216,3008656476 +1,3588,1202,128,2.94471478,0.106356345,1203.5013,3008656476 +1,3589,1203,128,2.89262629,0.106325215,1203.85367,3008656476 +1,3590,1204,128,2.9312942,0.106217796,1205.07114,3008656476 +1,3591,1205,128,3.1894412,0.106385498,1203.17151,3008656476 +1,3592,1206,128,2.92841172,0.106188982,1205.39813,3008656476 +1,3593,1207,128,3.02177477,0.106281661,1204.347,3008656476 +1,3594,1208,128,2.92626476,0.106180877,1205.49014,3008656476 +1,3595,1209,128,2.68109488,0.106369474,1203.35276,3008656476 +1,3596,1210,128,3.0194931,0.106266037,1204.52408,3008656476 +1,3597,1211,128,3.23483968,0.119770835,1068.70759,3008656476 +1,3598,1212,128,2.91216373,0.106181225,1205.48619,3008656476 +1,3599,1213,128,2.80273128,0.106338794,1203.69994,3008656476 +1,3600,1214,128,3.39351797,0.106304592,1204.08721,3008656476 +1,3601,1215,128,3.37641311,0.106307565,1204.05354,3008656476 +1,3602,1216,128,2.99480367,0.106163587,1205.68647,3008656476 +1,3603,1217,128,3.10256505,0.106239093,1204.82956,3008656476 +1,3604,1218,128,2.89776683,0.106302222,1204.11406,3008656476 +1,3605,1219,128,3.38918877,0.106322316,1203.88649,3008656476 +1,3606,1220,128,2.33792067,0.106362082,1203.43639,3008656476 +1,3607,1221,128,2.78869057,0.121111282,1056.87924,3008656476 +1,3608,1222,128,2.80838537,0.106280751,1204.35732,3008656476 +1,3609,1223,128,2.68400979,0.106356623,1203.49816,3008656476 +1,3610,1224,128,3.36262989,0.10631854,1203.92925,3008656476 +1,3611,1225,128,3.37521338,0.106398965,1203.01922,3008656476 +1,3612,1226,128,2.94178081,0.106329395,1203.80634,3008656476 +1,3613,1227,128,3.09549308,0.106338172,1203.70698,3008656476 +1,3614,1228,128,3.34163904,0.106332347,1203.77292,3008656476 +1,3615,1229,128,2.97547746,0.106320096,1203.91163,3008656476 +1,3616,1230,128,2.91468334,0.10648787,1202.01484,3008656476 +1,3617,1231,128,2.50743389,0.119284204,1073.06748,3008656476 +1,3618,1232,128,3.22214675,0.106330173,1203.79753,3008656476 +1,3619,1233,128,3.11829305,0.106352171,1203.54854,3008656476 +1,3620,1234,128,2.68519068,0.106298369,1204.1577,3008656476 +1,3621,1235,128,2.98591423,0.10620896,1205.17139,3008656476 +1,3622,1236,128,3.04231644,0.106399426,1203.01401,3008656476 +1,3623,1237,128,2.95580626,0.106222975,1205.01238,3008656476 +1,3624,1238,128,2.73460913,0.106306279,1204.06811,3008656476 +1,3625,1239,128,3.12129712,0.106443771,1202.51283,3008656476 +1,3626,1240,128,3.26874542,0.106394405,1203.07078,3008656476 +1,3627,1241,128,1.98012495,0.109207424,1172.08149,3008656476 +1,3628,1242,128,2.89210105,0.106400387,1203.00314,3008656476 +1,3629,1243,128,1.98777115,0.106337068,1203.71948,3008656476 +1,3630,1244,128,2.98677421,0.106307974,1204.04891,3008656476 +1,3631,1245,128,2.41666579,0.106311415,1204.00994,3008656476 +1,3632,1246,128,2.60041928,0.10638465,1203.1811,3008656476 +1,3633,1247,128,2.27886796,0.106375887,1203.28021,3008656476 +1,3634,1248,128,1.75716352,0.106417814,1202.80614,3008656476 +1,3635,1249,128,1.81078756,0.106373998,1203.30158,3008656476 +1,3636,1250,128,2.17699456,0.118636671,1078.92441,3008656476 +1,3637,1251,128,1.72990346,0.108098403,1184.1063,3008656476 +1,3638,1252,128,2.19701505,0.106211084,1205.14729,3008656476 +1,3639,1253,128,2.14826822,0.106305815,1204.07336,3008656476 +1,3640,1254,128,2.1591475,0.106343547,1203.64614,3008656476 +1,3641,1255,128,1.77062118,0.106335424,1203.73809,3008656476 +1,3642,1256,128,2.11589742,0.106427193,1202.70014,3008656476 +1,3643,1257,128,2.31367755,0.106324131,1203.86594,3008656476 +1,3644,1258,128,1.72149336,0.106149621,1205.8451,3008656476 +1,3645,1259,128,2.74370933,0.106155238,1205.78129,3008656476 +1,3646,1260,128,3.35707021,0.120762832,1059.92877,3008656476 +1,3647,1261,128,3.25986266,0.106161237,1205.71315,3008656476 +1,3648,1262,128,3.49778938,0.106262419,1204.56509,3008656476 +1,3649,1263,128,3.30916905,0.106185884,1205.43329,3008656476 +1,3650,1264,128,3.03582835,0.10622706,1204.96604,3008656476 +1,3651,1265,128,2.97003341,0.106165973,1205.65937,3008656476 +1,3652,1266,128,2.80694175,0.106251649,1204.68719,3008656476 +1,3653,1267,128,3.17487812,0.106421514,1202.76432,3008656476 +1,3654,1268,128,3.06501389,0.106228224,1204.95284,3008656476 +1,3655,1269,128,3.15275884,0.106240723,1204.81108,3008656476 +1,3656,1270,128,2.30790091,0.120266852,1064.29991,3008656476 +1,3657,1271,128,2.64786339,0.106265662,1204.52833,3008656476 +1,3658,1272,128,2.47837067,0.106300019,1204.13901,3008656476 +1,3659,1273,128,3.65028262,0.10622014,1205.04454,3008656476 +1,3660,1274,128,2.41552186,0.10620369,1205.23119,3008656476 +1,3661,1275,128,3.33765006,0.106332491,1203.77129,3008656476 +1,3662,1276,128,3.23177743,0.106278113,1204.38721,3008656476 +1,3663,1277,128,2.40304923,0.106199153,1205.28268,3008656476 +1,3664,1278,128,2.79881668,0.10623181,1204.91216,3008656476 +1,3665,1279,128,3.14463663,0.106259806,1204.59471,3008656476 +1,3666,1280,128,2.72088742,0.118944502,1076.13213,3008656476 +1,3667,1281,128,3.23580647,0.105865224,1209.08449,3008656476 +1,3668,1282,128,3.19699001,0.106374316,1203.29798,3008656476 +1,3669,1283,128,2.19220304,0.106275124,1204.42108,3008656476 +1,3670,1284,128,2.76249433,0.106334305,1203.75076,3008656476 +1,3671,1285,128,3.29278827,0.106376032,1203.27857,3008656476 +1,3672,1286,128,2.86054587,0.106377202,1203.26534,3008656476 +1,3673,1287,128,2.99406743,0.106257212,1204.62412,3008656476 +1,3674,1288,128,2.3611691,0.106183058,1205.46538,3008656476 +1,3675,1289,128,2.60408163,0.106261431,1204.57629,3008656476 +1,3676,1290,128,2.92950177,0.108273618,1182.19011,3008656476 +1,3677,1291,128,2.79085326,0.106376608,1203.27206,3008656476 +1,3678,1292,128,3.18676805,0.106367512,1203.37496,3008656476 +1,3679,1293,128,2.49084854,0.106225685,1204.98164,3008656476 +1,3680,1294,128,2.44788957,0.106288866,1204.26536,3008656476 +1,3681,1295,128,2.54727936,0.106306745,1204.06283,3008656476 +1,3682,1296,128,2.64614964,0.106404606,1202.95544,3008656476 +1,3683,1297,128,3.05022669,0.106195079,1205.32892,3008656476 +1,3684,1298,128,2.83879352,0.106195069,1205.32903,3008656476 +1,3685,1299,128,3.06004071,0.117964676,1085.07059,3008656476 +1,3686,1300,128,2.90154481,0.105131942,1217.5177,3008656476 +1,3687,1301,128,2.92350459,0.106335764,1203.73424,3008656476 +1,3688,1302,128,2.58953571,0.106170975,1205.60257,3008656476 +1,3689,1303,128,2.45893407,0.106219119,1205.05613,3008656476 +1,3690,1304,128,2.80840278,0.106287523,1204.28058,3008656476 +1,3691,1305,128,3.1094327,0.106287974,1204.27547,3008656476 +1,3692,1306,128,2.91710997,0.106247832,1204.73046,3008656476 +1,3693,1307,128,3.05465841,0.106180358,1205.49603,3008656476 +1,3694,1308,128,2.20880342,0.106272251,1204.45364,3008656476 +1,3695,1309,128,2.98200035,0.119172941,1074.06932,3008656476 +1,3696,1310,128,3.67765284,0.106287361,1204.28242,3008656476 +1,3697,1311,128,2.81878662,0.106164574,1205.67526,3008656476 +1,3698,1312,128,2.61485291,0.106199871,1205.27453,3008656476 +1,3699,1313,128,2.94338655,0.10630402,1204.09369,3008656476 +1,3700,1314,128,2.61478734,0.106253952,1204.66107,3008656476 +1,3701,1315,128,2.63149858,0.106285302,1204.30575,3008656476 +1,3702,1316,128,2.89193916,0.106196293,1205.31514,3008656476 +1,3703,1317,128,2.60494566,0.106272111,1204.45523,3008656476 +1,3704,1318,128,2.02475905,0.106323577,1203.87221,3008656476 +1,3705,1319,128,2.88309193,0.118985228,1075.76379,3008656476 +1,3706,1320,128,3.19958043,0.106183608,1205.45913,3008656476 +1,3707,1321,128,2.96854711,0.106185573,1205.43683,3008656476 +1,3708,1322,128,3.234761,0.106281598,1204.34772,3008656476 +1,3709,1323,128,2.67914295,0.106252111,1204.68195,3008656476 +1,3710,1324,128,1.89936399,0.106207896,1205.18346,3008656476 +1,3711,1325,128,2.45341277,0.106276298,1204.40778,3008656476 +1,3712,1326,128,3.34889054,0.106095251,1206.46305,3008656476 +1,3713,1327,128,3.22535634,0.106267022,1204.51291,3008656476 +1,3714,1328,128,3.14278722,0.106132369,1206.04111,3008656476 +1,3715,1329,128,2.65200925,0.118114273,1083.69629,3008656476 +1,3716,1330,128,2.90313911,0.106107899,1206.31924,3008656476 +1,3717,1331,128,2.40098953,0.106294583,1204.20059,3008656476 +1,3718,1332,128,2.92326236,0.106229289,1204.94076,3008656476 +1,3719,1333,128,2.49912047,0.106207279,1205.19047,3008656476 +1,3720,1334,128,3.31964135,0.106186275,1205.42886,3008656476 +1,3721,1335,128,2.46210814,0.106166985,1205.64788,3008656476 +1,3722,1336,128,3.06542778,0.106181023,1205.48848,3008656476 +1,3723,1337,128,2.36968946,0.106260797,1204.58347,3008656476 +1,3724,1338,128,2.72962117,0.106136264,1205.99685,3008656476 +1,3725,1339,128,2.55930543,0.11567199,1106.57731,3008656476 +1,3726,1340,128,2.38529134,0.106232827,1204.90063,3008656476 +1,3727,1341,128,2.60066009,0.106290593,1204.2458,3008656476 +1,3728,1342,128,2.84487534,0.106249466,1204.71194,3008656476 +1,3729,1343,128,2.49903679,0.106206798,1205.19592,3008656476 +1,3730,1344,128,3.0106225,0.106230091,1204.93166,3008656476 +1,3731,1345,128,2.60572577,0.106211098,1205.14713,3008656476 +1,3732,1346,128,2.97911119,0.107072298,1195.45394,3008656476 +1,3733,1347,128,2.48315072,0.10628365,1204.32447,3008656476 +1,3734,1348,128,2.05514908,0.117603229,1088.40549,3008656476 +1,3735,1349,128,2.9092412,0.10517016,1217.07526,3008656476 +1,3736,1350,128,2.79545951,0.106324196,1203.8652,3008656476 +1,3737,1351,128,3.12198663,0.106125866,1206.11501,3008656476 +1,3738,1352,128,2.45567632,0.106403039,1202.97316,3008656476 +1,3739,1353,128,2.34076524,0.106328662,1203.81464,3008656476 +1,3740,1354,128,2.96660829,0.106325169,1203.85419,3008656476 +1,3741,1355,128,2.43635845,0.10640384,1202.9641,3008656476 +1,3742,1356,128,2.6227231,0.106351135,1203.56026,3008656476 +1,3743,1357,128,2.69700456,0.106400745,1202.9991,3008656476 +1,3744,1358,128,3.12624478,0.119970953,1066.92492,3008656476 +1,3745,1359,128,2.40814281,0.106243926,1204.77476,3008656476 +1,3746,1360,128,2.32799506,0.106186115,1205.43067,3008656476 +1,3747,1361,128,3.22045946,0.106262483,1204.56436,3008656476 +1,3748,1362,128,3.14892793,0.106147561,1205.8685,3008656476 +1,3749,1363,128,2.58053255,0.106197925,1205.29662,3008656476 +1,3750,1364,128,2.28475475,0.106138984,1205.96594,3008656476 +1,3751,1365,128,2.82075095,0.106132216,1206.04285,3008656476 +1,3752,1366,128,3.20833087,0.106209245,1205.16816,3008656476 +1,3753,1367,128,3.24594641,0.106128362,1206.08664,3008656476 +1,3754,1368,128,2.94343948,0.118486718,1080.28986,3008656476 +1,3755,1369,128,2.82718635,0.106253906,1204.6616,3008656476 +1,3756,1370,128,2.54629111,0.106240872,1204.80939,3008656476 +1,3757,1371,128,2.94760251,0.106190155,1205.38481,3008656476 +1,3758,1372,128,2.53661728,0.106292714,1204.22177,3008656476 +1,3759,1373,128,3.3096242,0.10613756,1205.98212,3008656476 +1,3760,1374,128,3.51615667,0.106250391,1204.70145,3008656476 +1,3761,1375,128,3.47340155,0.106219832,1205.04804,3008656476 +1,3762,1376,128,3.53144479,0.106186925,1205.42148,3008656476 +1,3763,1377,128,3.12591171,0.10623312,1204.89731,3008656476 +1,3764,1378,128,2.4585104,0.11857937,1079.44578,3008656476 +1,3765,1379,128,2.68215036,0.106144303,1205.90551,3008656476 +1,3766,1380,128,2.94515157,0.106210256,1205.15668,3008656476 +1,3767,1381,128,2.49146605,0.106192247,1205.36107,3008656476 +1,3768,1382,128,2.8103385,0.106166878,1205.64909,3008656476 +1,3769,1383,128,2.6376574,0.106110679,1206.28763,3008656476 +1,3770,1384,128,2.25324845,0.106209924,1205.16045,3008656476 +1,3771,1385,128,2.87369418,0.106144519,1205.90306,3008656476 +1,3772,1386,128,1.95677185,0.10624815,1204.72686,3008656476 +1,3773,1387,128,2.59647465,0.106245792,1204.7536,3008656476 +1,3774,1388,128,3.04941916,0.116035882,1103.10705,3008656476 +1,3775,1389,128,2.5339489,0.106193388,1205.34811,3008656476 +1,3776,1390,128,2.23931694,0.106255308,1204.6457,3008656476 +1,3777,1391,128,2.50157237,0.106212272,1205.13381,3008656476 +1,3778,1392,128,2.5466795,0.106270724,1204.47095,3008656476 +1,3779,1393,128,2.64124703,0.106180839,1205.49057,3008656476 +1,3780,1394,128,3.22566605,0.106341408,1203.67035,3008656476 +1,3781,1395,128,2.77621293,0.106352382,1203.54615,3008656476 +1,3782,1396,128,2.62876153,0.106322481,1203.88462,3008656476 +1,3783,1397,128,3.43672824,0.118512551,1080.05438,3008656476 +1,3784,1398,128,2.62531638,0.104609931,1223.5932,3008656476 +1,3785,1399,128,3.00281239,0.106233082,1204.89774,3008656476 +1,3786,1400,128,3.22559476,0.106233734,1204.89034,3008656476 +1,3787,1401,128,3.47696877,0.106204897,1205.2175,3008656476 +1,3788,1402,128,2.87111425,0.106193706,1205.34451,3008656476 +1,3789,1403,128,3.04401898,0.106250433,1204.70097,3008656476 +1,3790,1404,128,2.2924757,0.106329303,1203.80738,3008656476 +1,3791,1405,128,2.82582188,0.106339262,1203.69464,3008656476 +1,3792,1406,128,3.47053075,0.106236498,1204.85899,3008656476 +1,3793,1407,128,3.24747491,0.117994887,1084.79277,3008656476 +1,3794,1408,128,3.39502215,0.106290848,1204.24291,3008656476 +1,3795,1409,128,3.42905617,0.106214269,1205.11115,3008656476 +1,3796,1410,128,3.0806303,0.106187283,1205.41741,3008656476 +1,3797,1411,128,3.72897148,0.106290964,1204.24159,3008656476 +1,3798,1412,128,3.16126585,0.106272971,1204.44548,3008656476 +1,3799,1413,128,3.54452038,0.106247677,1204.73222,3008656476 +1,3800,1414,128,3.34967184,0.106285313,1204.30562,3008656476 +1,3801,1415,128,3.39652348,0.106219143,1205.05585,3008656476 +1,3802,1416,128,3.34716487,0.10616364,1205.68586,3008656476 +1,3803,1417,128,3.43433046,0.118200047,1082.90989,3008656476 +1,3804,1418,128,3.30742645,0.106226802,1204.96897,3008656476 +1,3805,1419,128,3.57539463,0.10619654,1205.31234,3008656476 +1,3806,1420,128,3.43408871,0.106188226,1205.40671,3008656476 +1,3807,1421,128,3.19283175,0.106146409,1205.88159,3008656476 +1,3808,1422,128,3.81698751,0.106231666,1204.9138,3008656476 +1,3809,1423,128,3.10015082,0.1062171,1205.07903,3008656476 +1,3810,1424,128,3.46129274,0.106258812,1204.60598,3008656476 +1,3811,1425,128,4.14536905,0.106188402,1205.40471,3008656476 +1,3812,1426,128,3.08992648,0.106205133,1205.21482,3008656476 +1,3813,1427,128,3.38753009,0.121099368,1056.98322,3008656476 +1,3814,1428,128,3.05571246,0.106138408,1205.97249,3008656476 +1,3815,1429,128,3.82825089,0.106220974,1205.03508,3008656476 +1,3816,1430,128,3.46388364,0.106216621,1205.08447,3008656476 +1,3817,1431,128,3.6770227,0.106217114,1205.07887,3008656476 +1,3818,1432,128,3.83342791,0.106262463,1204.56459,3008656476 +1,3819,1433,128,2.91137099,0.10627746,1204.39461,3008656476 +1,3820,1434,128,3.09270048,0.106180103,1205.49892,3008656476 +1,3821,1435,128,3.51179528,0.106203305,1205.23556,3008656476 +1,3822,1436,128,2.55000925,0.106158867,1205.74007,3008656476 +1,3823,1437,128,3.54281878,0.117157191,1092.54924,3008656476 +1,3824,1438,128,3.37605715,0.106186756,1205.4234,3008656476 +1,3825,1439,128,3.25991488,0.106179897,1205.50126,3008656476 +1,3826,1440,128,3.66694975,0.107192552,1194.11281,3008656476 +1,3827,1441,128,3.73487663,0.106246026,1204.75094,3008656476 +1,3828,1442,128,3.4645443,0.106300629,1204.1321,3008656476 +1,3829,1443,128,2.67058325,0.106364718,1203.40657,3008656476 +1,3830,1444,128,3.70733976,0.10610229,1206.38301,3008656476 +1,3831,1445,128,3.53355479,0.106166421,1205.65428,3008656476 +1,3832,1446,128,3.78348064,0.117243818,1091.742,3008656476 +1,3833,1447,128,3.32136631,0.104153585,1228.95434,3008656476 +1,3834,1448,128,2.77401614,0.106177186,1205.53204,3008656476 +1,3835,1449,128,3.75101542,0.106196514,1205.31263,3008656476 +1,3836,1450,128,2.69213772,0.106178224,1205.52026,3008656476 +1,3837,1451,128,3.19197822,0.106271875,1204.45791,3008656476 +1,3838,1452,128,3.05302334,0.106187034,1205.42024,3008656476 +1,3839,1453,128,3.3090806,0.106266023,1204.52423,3008656476 +1,3840,1454,128,3.15754437,0.106160961,1205.71629,3008656476 +1,3841,1455,128,2.25324154,0.106324154,1203.86568,3008656476 +1,3842,1456,128,3.42057991,0.118063116,1084.16586,3008656476 +1,3843,1457,128,3.38085341,0.106144216,1205.9065,3008656476 +1,3844,1458,128,3.56324863,0.106177631,1205.52699,3008656476 +1,3845,1459,128,3.50599027,0.106207486,1205.18812,3008656476 +1,3846,1460,128,3.01875591,0.106216489,1205.08596,3008656476 +1,3847,1461,128,2.16885328,0.10642001,1202.78132,3008656476 +1,3848,1462,128,2.45697236,0.106221936,1205.02417,3008656476 +1,3849,1463,128,3.23931313,0.106308963,1204.03771,3008656476 +1,3850,1464,128,2.33259344,0.106154534,1205.78929,3008656476 +1,3851,1465,128,3.02542424,0.106258499,1204.60952,3008656476 +1,3852,1466,128,3.86022949,0.119587048,1070.35003,3008656476 +1,3853,1467,128,3.20833898,0.106279995,1204.36588,3008656476 +1,3854,1468,128,2.83086538,0.106290311,1204.24899,3008656476 +1,3855,1469,128,3.76969075,0.106292085,1204.22889,3008656476 +1,3856,1470,128,2.77992392,0.106501262,1201.86369,3008656476 +1,3857,1471,128,3.86624575,0.106059406,1206.8708,3008656476 +1,3858,1472,128,3.30482078,0.106279184,1204.37507,3008656476 +1,3859,1473,128,3.70425653,0.106282207,1204.34082,3008656476 +1,3860,1474,128,3.06500721,0.106256428,1204.633,3008656476 +1,3861,1475,128,3.0564115,0.106196115,1205.31716,3008656476 +1,3862,1476,128,3.05708718,0.120445401,1062.72219,3008656476 +1,3863,1477,128,3.41909742,0.106229131,1204.94255,3008656476 +1,3864,1478,128,3.19737124,0.106230347,1204.92876,3008656476 +1,3865,1479,128,3.44903994,0.106333216,1203.76308,3008656476 +1,3866,1480,128,3.16723728,0.106156647,1205.76529,3008656476 +1,3867,1481,128,3.58986449,0.106179979,1205.50033,3008656476 +1,3868,1482,128,2.97910142,0.106221639,1205.02754,3008656476 +1,3869,1483,128,2.81074166,0.106163659,1205.68565,3008656476 +1,3870,1484,128,3.01043296,0.106184072,1205.45387,3008656476 +1,3871,1485,128,3.27256799,0.10624739,1204.73548,3008656476 +1,3872,1486,128,3.4720726,0.117595806,1088.47419,3008656476 +1,3873,1487,128,3.48456836,0.106383869,1203.18993,3008656476 +1,3874,1488,128,3.04686999,0.106394279,1203.07221,3008656476 +1,3875,1489,128,2.82117677,0.106237982,1204.84216,3008656476 +1,3876,1490,128,3.15889907,0.106308176,1204.04662,3008656476 +1,3877,1491,128,3.20948911,0.106195377,1205.32554,3008656476 +1,3878,1492,128,3.39010262,0.106078159,1206.65744,3008656476 +1,3879,1493,128,3.06682467,0.106193343,1205.34863,3008656476 +1,3880,1494,128,2.27029037,0.106326037,1203.84436,3008656476 +1,3881,1495,128,2.87781715,0.117433273,1089.98069,3008656476 +1,3882,1496,128,3.1067977,0.104438925,1225.59668,3008656476 +1,3883,1497,128,2.97314477,0.106256197,1204.63562,3008656476 +1,3884,1498,128,3.12427878,0.10625871,1204.60713,3008656476 +1,3885,1499,128,2.78929758,0.106267545,1204.50698,3008656476 +1,3886,1500,128,3.30897832,0.106215923,1205.09239,3008656476 +1,3887,1501,128,3.68078518,0.106232032,1204.90965,3008656476 +1,3888,1502,128,2.92514849,0.106236042,1204.86416,3008656476 +1,3889,1503,128,3.19783473,0.106271149,1204.46613,3008656476 +1,3890,1504,128,3.05433917,0.106278571,1204.38202,3008656476 +1,3891,1505,128,3.3421526,0.118120726,1083.63709,3008656476 +1,3892,1506,128,2.66837239,0.106223331,1205.00834,3008656476 +1,3893,1507,128,3.19553041,0.106293383,1204.21419,3008656476 +1,3894,1508,128,3.03347135,0.106182525,1205.47143,3008656476 +1,3895,1509,128,3.46300316,0.106147138,1205.8733,3008656476 +1,3896,1510,128,3.75226665,0.106143201,1205.91803,3008656476 +1,3897,1511,128,2.86767244,0.106193406,1205.34791,3008656476 +1,3898,1512,128,3.20065665,0.094587008,1353.25139,3008656476 +1,3899,1513,128,3.42585897,0.106013427,1207.39423,3008656476 +1,3900,1514,128,3.92260027,0.106062893,1206.83112,3008656476 +1,3901,1515,128,2.94674802,0.121327037,1054.9998,3008656476 +1,3902,1516,128,3.58039856,0.106323908,1203.86847,3008656476 +1,3903,1517,128,3.49079919,0.106212229,1205.1343,3008656476 +1,3904,1518,128,3.54964519,0.106142818,1205.92238,3008656476 +1,3905,1519,128,2.97613478,0.106209764,1205.16227,3008656476 +1,3906,1520,128,3.49376059,0.106207144,1205.192,3008656476 +1,3907,1521,128,2.85904622,0.106239432,1204.82572,3008656476 +1,3908,1522,128,3.70356798,0.106144644,1205.90164,3008656476 +1,3909,1523,128,3.82712793,0.106282566,1204.33675,3008656476 +1,3910,1524,128,3.63835907,0.10618355,1205.45979,3008656476 +1,3911,1525,128,2.93232846,0.120052766,1066.19784,3008656476 +1,3912,1526,128,2.43878961,0.106250983,1204.69474,3008656476 +1,3913,1527,128,2.39920974,0.106255417,1204.64447,3008656476 +1,3914,1528,128,3.05653906,0.105141553,1217.4064,3008656476 +1,3915,1529,128,3.66944766,0.106252156,1204.68144,3008656476 +1,3916,1530,128,3.64678264,0.106261907,1204.57089,3008656476 +1,3917,1531,128,4.12356186,0.106423751,1202.73904,3008656476 +1,3918,1532,128,3.99908662,0.106083754,1206.5938,3008656476 +1,3919,1533,128,3.33856273,0.10617989,1205.50134,3008656476 +1,3920,1534,128,3.51041079,0.106117351,1206.21179,3008656476 +1,3921,1535,128,2.69489121,0.114558683,1117.33128,3008656476 +1,3922,1536,128,3.17767215,0.106172409,1205.58628,3008656476 +1,3923,1537,128,3.10539341,0.106289783,1204.25498,3008656476 +1,3924,1538,128,3.41734171,0.106224474,1204.99538,3008656476 +1,3925,1539,128,2.91767716,0.106206735,1205.19664,3008656476 +1,3926,1540,128,3.81662107,0.106231446,1204.91629,3008656476 +1,3927,1541,128,3.7343998,0.106157595,1205.75452,3008656476 +1,3928,1542,128,3.83802247,0.106274967,1204.42286,3008656476 +1,3929,1543,128,3.32614517,0.106226143,1204.97644,3008656476 +1,3930,1544,128,3.82746553,0.116455402,1099.13321,3008656476 +1,3931,1545,128,3.42156434,0.104277663,1227.49203,3008656476 +1,3932,1546,128,2.92965508,0.106141485,1205.93753,3008656476 +1,3933,1547,128,3.38931966,0.106286079,1204.29694,3008656476 +1,3934,1548,128,3.34614086,0.106109379,1206.30241,3008656476 +1,3935,1549,128,3.66708112,0.106200408,1205.26844,3008656476 +1,3936,1550,128,3.35828042,0.106223771,1205.00335,3008656476 +1,3937,1551,128,3.13292289,0.106242285,1204.79336,3008656476 +1,3938,1552,128,3.45430636,0.106149252,1205.84929,3008656476 +1,3939,1553,128,4.24695349,0.106262499,1204.56418,3008656476 +1,3940,1554,128,4.02756882,0.120008214,1066.59366,3008656476 +1,3941,1555,128,3.05084753,0.105999975,1207.54745,3008656476 +1,3942,1556,128,3.44165015,0.106176003,1205.54548,3008656476 +1,3943,1557,128,3.76152658,0.10617209,1205.58991,3008656476 +1,3944,1558,128,3.32688427,0.106221209,1205.03241,3008656476 +1,3945,1559,128,3.104105,0.106343274,1203.64923,3008656476 +1,3946,1560,128,3.07266498,0.10631426,1203.97772,3008656476 +1,3947,1561,128,3.41520381,0.106170482,1205.60817,3008656476 +1,3948,1562,128,3.87054467,0.106288647,1204.26785,3008656476 +1,3949,1563,128,4.14106464,0.106249315,1204.71365,3008656476 +1,3950,1564,128,3.56283474,0.120197747,1064.91181,3008656476 +1,3951,1565,128,3.5492754,0.106171181,1205.60023,3008656476 +1,3952,1566,128,2.69167495,0.106192602,1205.35704,3008656476 +1,3953,1567,128,2.42577839,0.106180481,1205.49463,3008656476 +1,3954,1568,128,1.93257654,0.106182874,1205.46747,3008656476 +1,3955,1569,128,2.84095073,0.106198037,1205.29535,3008656476 +1,3956,1570,128,3.04456544,0.106315082,1203.96841,3008656476 +1,3957,1571,128,3.25718188,0.106276401,1204.40661,3008656476 +1,3958,1572,128,2.50764322,0.106305489,1204.07705,3008656476 +1,3959,1573,128,2.89184451,0.106254983,1204.64939,3008656476 +1,3960,1574,128,3.58227944,0.119997227,1066.69132,3008656476 +1,3961,1575,128,3.72500014,0.106317598,1203.93992,3008656476 +1,3962,1576,128,3.28533745,0.106249801,1204.70814,3008656476 +1,3963,1577,128,3.40444565,0.106221731,1205.02649,3008656476 +1,3964,1578,128,3.06762934,0.106198204,1205.29345,3008656476 +1,3965,1579,128,3.42925143,0.106209712,1205.16286,3008656476 +1,3966,1580,128,3.48342562,0.106233501,1204.89298,3008656476 +1,3967,1581,128,3.19365549,0.106308708,1204.04059,3008656476 +1,3968,1582,128,3.10496974,0.106263267,1204.55547,3008656476 +1,3969,1583,128,3.16035771,0.106199065,1205.28368,3008656476 +1,3970,1584,128,3.52556872,0.116299165,1100.60979,3008656476 +1,3971,1585,128,3.52632117,0.106212575,1205.13037,3008656476 +1,3972,1586,128,3.68106008,0.106269634,1204.48331,3008656476 +1,3973,1587,128,2.99236417,0.106281782,1204.34563,3008656476 +1,3974,1588,128,3.22419977,0.106182983,1205.46623,3008656476 +1,3975,1589,128,3.43747449,0.106172929,1205.58038,3008656476 +1,3976,1590,128,2.8518219,0.106297859,1204.16348,3008656476 +1,3977,1591,128,2.74940705,0.106278477,1204.38309,3008656476 +1,3978,1592,128,3.26279545,0.106162128,1205.70304,3008656476 +1,3979,1593,128,3.57086682,0.117221566,1091.94924,3008656476 +1,3980,1594,128,3.5753448,0.105199518,1216.73561,3008656476 +1,3981,1595,128,3.19434667,0.159223189,803.903004,3008656476 +1,3982,1596,128,2.98778248,0.106123217,1206.14512,3008656476 +1,3983,1597,128,3.01917982,0.106057834,1206.88869,3008656476 +1,3984,1598,128,2.97091222,0.106196703,1205.31049,3008656476 +1,3985,1599,128,3.05065775,0.10626109,1204.58015,3008656476 +1,3986,1600,128,2.41542411,0.10632153,1203.89539,3008656476 +1,3987,1601,128,2.78997183,0.106182997,1205.46607,3008656476 +1,3988,1602,128,2.96824741,0.106188112,1205.408,3008656476 +1,3989,1603,128,3.02521324,0.120515337,1062.10548,3008656476 +1,3990,1604,128,2.55166221,0.106190529,1205.38057,3008656476 +1,3991,1605,128,2.23198795,0.106264205,1204.54484,3008656476 +1,3992,1606,128,2.09293389,0.106205987,1205.20513,3008656476 +1,3993,1607,128,3.39453864,0.106248103,1204.72739,3008656476 +1,3994,1608,128,2.90149736,0.106179719,1205.50328,3008656476 +1,3995,1609,128,3.08551574,0.106231963,1204.91043,3008656476 +1,3996,1610,128,3.22514582,0.106264878,1204.53721,3008656476 +1,3997,1611,128,3.49625111,0.106172414,1205.58623,3008656476 +1,3998,1612,128,3.57550883,0.106121632,1206.16313,3008656476 +1,3999,1613,128,3.06973863,0.11288854,1133.86177,3008656476 +1,4000,1614,128,2.9012568,0.106273931,1204.4346,3008656476 +1,4001,1615,128,2.77324271,0.10621189,1205.13814,3008656476 +1,4002,1616,128,2.91628623,0.106092563,1206.49362,3008656476 +1,4003,1617,128,3.33170748,0.106255523,1204.64326,3008656476 +1,4004,1618,128,2.07495332,0.106194953,1205.33035,3008656476 +1,4005,1619,128,3.46193695,0.106262995,1204.55856,3008656476 +1,4006,1620,128,3.98427296,0.106096841,1206.44497,3008656476 +1,4007,1621,128,3.66245532,0.106127582,1206.09551,3008656476 +1,4008,1622,128,3.00527024,0.116555969,1098.18486,3008656476 +1,4009,1623,128,3.52402854,0.105117179,1217.68869,3008656476 +1,4010,1624,128,3.20526457,0.106135273,1206.00811,3008656476 +1,4011,1625,128,2.88826156,0.106221678,1205.02709,3008656476 +1,4012,1626,128,3.48597479,0.106243524,1204.77931,3008656476 +1,4013,1627,128,3.43893361,0.106402768,1202.97622,3008656476 +1,4014,1628,128,3.28553319,0.106152818,1205.80878,3008656476 +1,4015,1629,128,2.85316253,0.107166566,1194.40237,3008656476 +1,4016,1630,128,3.23010898,0.106233625,1204.89158,3008656476 +1,4017,1631,128,3.21241164,0.106328089,1203.82113,3008656476 +1,4018,1632,128,3.39814281,0.118110219,1083.73349,3008656476 +1,4019,1633,128,3.13432813,0.106369926,1203.34765,3008656476 +1,4020,1634,128,3.22395372,0.106345919,1203.61929,3008656476 +1,4021,1635,128,3.04094315,0.106129766,1206.07069,3008656476 +1,4022,1636,128,2.88134122,0.106311923,1204.00418,3008656476 +1,4023,1637,128,3.09458208,0.106190419,1205.38182,3008656476 +1,4024,1638,128,3.60403943,0.106305811,1204.07341,3008656476 +1,4025,1639,128,3.83928704,0.106309247,1204.03449,3008656476 +1,4026,1640,128,3.10986614,0.106293034,1204.21814,3008656476 +1,4027,1641,128,2.30188084,0.106292117,1204.22853,3008656476 +1,4028,1642,128,3.36690903,0.118270369,1082.26601,3008656476 +1,4029,1643,128,2.66494203,0.106204453,1205.22253,3008656476 +1,4030,1644,128,2.77496743,0.106264567,1204.54074,3008656476 +1,4031,1645,128,2.07416248,0.106372662,1203.31669,3008656476 +1,4032,1646,128,3.65262294,0.106337351,1203.71627,3008656476 +1,4033,1647,128,3.10974479,0.106331588,1203.78151,3008656476 +1,4034,1648,128,2.66331053,0.106329291,1203.80752,3008656476 +1,4035,1649,128,2.61598301,0.106211829,1205.13884,3008656476 +1,4036,1650,128,2.71726155,0.106223791,1205.00312,3008656476 +1,4037,1651,128,3.05955958,0.106276353,1204.40716,3008656476 +1,4038,1652,128,3.26455355,0.120421103,1062.93662,3008656476 +1,4039,1653,128,2.58504963,0.106291692,1204.23335,3008656476 +1,4040,1654,128,2.66270018,0.106287272,1204.28343,3008656476 +1,4041,1655,128,2.72518563,0.106285151,1204.30746,3008656476 +1,4042,1656,128,3.25340724,0.1062407,1204.81134,3008656476 +1,4043,1657,128,3.37774277,0.106246882,1204.74124,3008656476 +1,4044,1658,128,3.34729815,0.106289737,1204.2555,3008656476 +1,4045,1659,128,3.25756264,0.106227896,1204.95656,3008656476 +1,4046,1660,128,2.42639875,0.106206322,1205.20133,3008656476 +1,4047,1661,128,2.61183381,0.106446304,1202.48421,3008656476 +1,4048,1662,128,3.07767224,0.115226962,1110.85112,3008656476 +1,4049,1663,128,3.22837472,0.10628381,1204.32265,3008656476 +1,4050,1664,128,3.3987968,0.106151138,1205.82786,3008656476 +1,4051,1665,128,3.17812347,0.106170223,1205.61111,3008656476 +1,4052,1666,128,3.38588428,0.106267237,1204.51047,3008656476 +1,4053,1667,128,3.29294896,0.106112742,1206.26418,3008656476 +1,4054,1668,128,3.50770068,0.106288786,1204.26627,3008656476 +1,4055,1669,128,3.37011051,0.106248107,1204.72735,3008656476 +1,4056,1670,128,3.34184146,0.106387888,1203.14448,3008656476 +1,4057,1671,128,2.34623146,0.118008376,1084.66877,3008656476 +1,4058,1672,128,3.10131717,0.10453568,1224.46231,3008656476 +1,4059,1673,128,3.15328383,0.106157641,1205.754,3008656476 +1,4060,1674,128,3.33385062,0.106250929,1204.69535,3008656476 +1,4061,1675,128,3.08636498,0.106145144,1205.89596,3008656476 +1,4062,1676,128,3.00785422,0.106127979,1206.091,3008656476 +1,4063,1677,128,3.76166821,0.106264978,1204.53608,3008656476 +1,4064,1678,128,3.60553598,0.106271725,1204.45961,3008656476 +1,4065,1679,128,3.5192306,0.10625702,1204.62629,3008656476 +1,4066,1680,128,3.41691279,0.106091725,1206.50315,3008656476 +1,4067,1681,128,3.58336091,0.118260892,1082.35274,3008656476 +1,4068,1682,128,3.54505682,0.106248437,1204.7236,3008656476 +1,4069,1683,128,3.34549427,0.10631738,1203.94238,3008656476 +1,4070,1684,128,3.12743831,0.106235806,1204.86684,3008656476 +1,4071,1685,128,2.54894376,0.106265904,1204.52558,3008656476 +1,4072,1686,128,3.52814436,0.106248779,1204.71973,3008656476 +1,4073,1687,128,2.83241844,0.106252911,1204.67288,3008656476 +1,4074,1688,128,2.9415586,0.106379113,1203.24372,3008656476 +1,4075,1689,128,3.25021863,0.106240963,1204.80836,3008656476 +1,4076,1690,128,3.30959702,0.106212784,1205.128,3008656476 +1,4077,1691,128,3.39724946,0.119650531,1069.78213,3008656476 +1,4078,1692,128,3.2333138,0.106236212,1204.86224,3008656476 +1,4079,1693,128,3.44204903,0.10628619,1204.29569,3008656476 +1,4080,1694,128,3.38165259,0.106187147,1205.41896,3008656476 +1,4081,1695,128,3.45890856,0.106188361,1205.40518,3008656476 +1,4082,1696,128,3.40521669,0.106239027,1204.83031,3008656476 +1,4083,1697,128,3.46531296,0.106215791,1205.09388,3008656476 +1,4084,1698,128,3.57375479,0.106324117,1203.8661,3008656476 +1,4085,1699,128,3.46611905,0.106255468,1204.64389,3008656476 +1,4086,1700,128,3.42201018,0.106255137,1204.64764,3008656476 +1,4087,1701,128,3.43909144,0.122171719,1047.70565,3008656476 +1,4088,1702,128,2.22456431,0.106213156,1205.12378,3008656476 +1,4089,1703,128,2.47237325,0.106223272,1205.00901,3008656476 +1,4090,1704,128,2.18766308,0.106232751,1204.90149,3008656476 +1,4091,1705,128,2.61273122,0.106214894,1205.10406,3008656476 +1,4092,1706,128,2.95972013,0.10624173,1204.79966,3008656476 +1,4093,1707,128,3.11380887,0.106465327,1202.26935,3008656476 +1,4094,1708,128,3.84484529,0.106261873,1204.57128,3008656476 +1,4095,1709,128,3.00780463,0.106171653,1205.59487,3008656476 +1,4096,1710,128,3.51730752,0.106368651,1203.36207,3008656476 +1,4097,1711,128,3.01998091,0.115376009,1109.41608,3008656476 +1,4098,1712,128,2.66268086,0.106262842,1204.56029,3008656476 +1,4099,1713,128,3.03359365,0.106208643,1205.17499,3008656476 +1,4100,1714,128,3.33342075,0.106210988,1205.14838,3008656476 +1,4101,1715,128,2.83399796,0.106102773,1206.37752,3008656476 +1,4102,1716,128,2.99706936,0.106302604,1204.10973,3008656476 +1,4103,1717,128,3.70144486,0.106276933,1204.40058,3008656476 +1,4104,1718,128,2.52884054,0.10629452,1204.20131,3008656476 +1,4105,1719,128,3.22018909,0.106334358,1203.75016,3008656476 +1,4106,1720,128,3.87002444,0.117491265,1089.44269,3008656476 +1,4107,1721,128,3.18425536,0.104517076,1224.68026,3008656476 +1,4108,1722,128,3.31384277,0.106190919,1205.37614,3008656476 +1,4109,1723,128,3.39114261,0.106223281,1205.00891,3008656476 +1,4110,1724,128,3.7580266,0.106267289,1204.50988,3008656476 +1,4111,1725,128,2.83018517,0.106405468,1202.9457,3008656476 +1,4112,1726,128,3.92395115,0.106432209,1202.64346,3008656476 +1,4113,1727,128,3.36859155,0.106289325,1204.26016,3008656476 +1,4114,1728,128,3.14613795,0.106538213,1201.44685,3008656476 +1,4115,1729,128,3.47298121,0.106308625,1204.04153,3008656476 +1,4116,1730,128,2.80375004,0.120679772,1060.65828,3008656476 +1,4117,1731,128,2.80970931,0.106220349,1205.04217,3008656476 +1,4118,1732,128,3.3473947,0.106224892,1204.99063,3008656476 +1,4119,1733,128,2.59771085,0.106243795,1204.77624,3008656476 +1,4120,1734,128,3.31394291,0.106435725,1202.60373,3008656476 +1,4121,1735,128,2.38131356,0.106188059,1205.4086,3008656476 +1,4122,1736,128,3.02195001,0.10624476,1204.7653,3008656476 +1,4123,1737,128,2.11475754,0.106232996,1204.89871,3008656476 +1,4124,1738,128,2.5935297,0.106298618,1204.15488,3008656476 +1,4125,1739,128,2.04510188,0.106198225,1205.29321,3008656476 +1,4126,1740,128,2.21368814,0.119864012,1067.87682,3008656476 +1,4127,1741,128,2.62742686,0.106306901,1204.06106,3008656476 +1,4128,1742,128,2.79026794,0.106396679,1203.04507,3008656476 +1,4129,1743,128,3.01039052,0.106145808,1205.88841,3008656476 +1,4130,1744,128,3.52606225,0.106131563,1206.05027,3008656476 +1,4131,1745,128,2.07131171,0.106275128,1204.42104,3008656476 +1,4132,1746,128,3.66596484,0.10617932,1205.50781,3008656476 +1,4133,1747,128,3.84377646,0.106277308,1204.39633,3008656476 +1,4134,1748,128,3.04424071,0.106244483,1204.76844,3008656476 +1,4135,1749,128,3.75046325,0.106290943,1204.24183,3008656476 +1,4136,1750,128,2.79714537,0.120088413,1065.88135,3008656476 +1,4137,1751,128,3.55929899,0.106254691,1204.6527,3008656476 +1,4138,1752,128,2.99786973,0.106163665,1205.68558,3008656476 +1,4139,1753,128,3.63501573,0.10620474,1205.21928,3008656476 +1,4140,1754,128,3.36683202,0.106109164,1206.30486,3008656476 +1,4141,1755,128,3.79601145,0.106303819,1204.09597,3008656476 +1,4142,1756,128,2.96603107,0.106262273,1204.56674,3008656476 +1,4143,1757,128,2.84373283,0.106269771,1204.48175,3008656476 +1,4144,1758,128,2.79763389,0.106131653,1206.04925,3008656476 +1,4145,1759,128,3.2151587,0.106170884,1205.6036,3008656476 +1,4146,1760,128,3.65542173,0.115304132,1110.10766,3008656476 +1,4147,1761,128,2.65661311,0.106276341,1204.40729,3008656476 +1,4148,1762,128,3.91648531,0.10631422,1203.97817,3008656476 +1,4149,1763,128,2.97340965,0.106245061,1204.76189,3008656476 +1,4150,1764,128,3.0296998,0.106236049,1204.86409,3008656476 +1,4151,1765,128,2.29761147,0.106280627,1204.35872,3008656476 +1,4152,1766,128,3.44271302,0.10616479,1205.6728,3008656476 +1,4153,1767,128,3.52636933,0.106212098,1205.13578,3008656476 +1,4154,1768,128,3.10101819,0.106210643,1205.15229,3008656476 +1,4155,1769,128,2.61292195,0.11673995,1096.45413,3008656476 +1,4156,1770,128,2.75554395,0.105100856,1217.87781,3008656476 +1,4157,1771,128,2.67022133,0.106328718,1203.81401,3008656476 +1,4158,1772,128,2.4039712,0.106306889,1204.0612,3008656476 +1,4159,1773,128,2.60387969,0.106298793,1204.1529,3008656476 +1,4160,1774,128,2.34728765,0.106303513,1204.09944,3008656476 +1,4161,1775,128,2.96999407,0.106230965,1204.92175,3008656476 +1,4162,1776,128,2.900249,0.106156171,1205.77069,3008656476 +1,4163,1777,128,2.73672104,0.106289511,1204.25806,3008656476 +1,4164,1778,128,2.31546426,0.106400717,1202.99941,3008656476 +1,4165,1779,128,2.86723161,0.119620945,1070.04672,3008656476 +1,4166,1780,128,2.6004653,0.10638508,1203.17623,3008656476 +1,4167,1781,128,1.77773631,0.10619408,1205.34026,3008656476 +1,4168,1782,128,2.01802063,0.106205635,1205.20912,3008656476 +1,4169,1783,128,2.32995701,0.106360018,1203.45974,3008656476 +1,4170,1784,128,2.6420927,0.106212296,1205.13354,3008656476 +1,4171,1785,128,2.8005867,0.106233737,1204.89031,3008656476 +1,4172,1786,128,2.02235866,0.106249108,1204.716,3008656476 +1,4173,1787,128,2.18135643,0.106185317,1205.43973,3008656476 +1,4174,1788,128,1.99887037,0.106116483,1206.22166,3008656476 +1,4175,1789,128,2.53080416,0.119919267,1067.38478,3008656476 +1,4176,1790,128,2.04441047,0.106241662,1204.80043,3008656476 +1,4177,1791,128,3.27279162,0.106200511,1205.26727,3008656476 +1,4178,1792,128,2.87688541,0.106193205,1205.35019,3008656476 +1,4179,1793,128,2.4415493,0.106333447,1203.76047,3008656476 +1,4180,1794,128,2.7808392,0.106221238,1205.03209,3008656476 +1,4181,1795,128,1.85424411,0.106256505,1204.63213,3008656476 +1,4182,1796,128,2.95232248,0.106260145,1204.59087,3008656476 +1,4183,1797,128,3.09054399,0.106275283,1204.41928,3008656476 +1,4184,1798,128,3.01167512,0.106144141,1205.90735,3008656476 +1,4185,1799,128,2.34296894,0.118695763,1078.38727,3008656476 +1,4186,1800,128,2.3410964,0.106324869,1203.85758,3008656476 +1,4187,1801,128,2.67698121,0.106208169,1205.18037,3008656476 +1,4188,1802,128,2.26507926,0.106292775,1204.22108,3008656476 +1,4189,1803,128,2.96021223,0.106277481,1204.39437,3008656476 +1,4190,1804,128,2.40862918,0.10620313,1205.23755,3008656476 +1,4191,1805,128,3.27435017,0.106164049,1205.68122,3008656476 +1,4192,1806,128,2.77534866,0.106259016,1204.60366,3008656476 +1,4193,1807,128,3.18810153,0.10619069,1205.37874,3008656476 +1,4194,1808,128,3.05425215,0.106150064,1205.84006,3008656476 +1,4195,1809,128,3.962677,0.114898518,1114.02655,3008656476 +1,4196,1810,128,2.89207959,0.106322821,1203.88077,3008656476 +1,4197,1811,128,2.65684199,0.106311774,1204.00587,3008656476 +1,4198,1812,128,2.3313241,0.106298149,1204.1602,3008656476 +1,4199,1813,128,2.1962595,0.106174561,1205.56185,3008656476 +1,4200,1814,128,3.38324094,0.1062703,1204.47576,3008656476 +1,4201,1815,128,3.30830383,0.106258887,1204.60513,3008656476 +1,4202,1816,128,2.81358576,0.106295856,1204.18617,3008656476 +1,4203,1817,128,3.08870673,0.106202897,1205.24019,3008656476 +1,4204,1818,128,2.04622126,0.1191818,1073.98948,3008656476 +1,4205,1819,128,1.96650314,0.105061356,1218.33569,3008656476 +1,4206,1820,128,2.72455835,0.106286217,1204.29538,3008656476 +1,4207,1821,128,3.13820267,0.106377863,1203.25786,3008656476 +1,4208,1822,128,4.02003717,0.106303227,1204.10268,3008656476 +1,4209,1823,128,3.35664272,0.106218238,1205.06612,3008656476 +1,4210,1824,128,2.8535862,0.106231552,1204.91509,3008656476 +1,4211,1825,128,2.44118881,0.106286642,1204.29056,3008656476 +1,4212,1826,128,3.32418513,0.106341075,1203.67412,3008656476 +1,4213,1827,128,2.51645136,0.106420716,1202.77334,3008656476 +1,4214,1828,128,2.58054447,0.119475835,1071.34635,3008656476 +1,4215,1829,128,2.88483238,0.106253859,1204.66213,3008656476 +1,4216,1830,128,2.83376884,0.106257494,1204.62092,3008656476 +1,4217,1831,128,3.40938783,0.106331906,1203.77791,3008656476 +1,4218,1832,128,2.66197729,0.106332084,1203.7759,3008656476 +1,4219,1833,128,2.90681052,0.106299067,1204.1498,3008656476 +1,4220,1834,128,3.31102157,0.106252981,1204.67208,3008656476 +1,4221,1835,128,2.89849019,0.105734021,1210.58481,3008656476 +1,4222,1836,128,2.14510512,0.106195997,1205.3185,3008656476 +1,4223,1837,128,3.08969569,0.106164703,1205.67379,3008656476 +1,4224,1838,128,3.57134342,0.118797554,1077.46326,3008656476 +1,4225,1839,128,3.29996872,0.10645099,1202.43128,3008656476 +1,4226,1840,128,3.28241467,0.106237614,1204.84634,3008656476 +1,4227,1841,128,3.40103173,0.106260567,1204.58608,3008656476 +1,4228,1842,128,3.27939487,0.106326422,1203.84,3008656476 +1,4229,1843,128,3.33732605,0.106245642,1204.7553,3008656476 +1,4230,1844,128,3.34147549,0.106290486,1204.24701,3008656476 +1,4231,1845,128,2.41054177,0.106291134,1204.23967,3008656476 +1,4232,1846,128,2.61162186,0.106247356,1204.73586,3008656476 +1,4233,1847,128,2.19442248,0.106262525,1204.56389,3008656476 +1,4234,1848,128,2.90531588,0.118824695,1077.21716,3008656476 +1,4235,1849,128,3.263587,0.106294776,1204.19841,3008656476 +1,4236,1850,128,3.54248238,0.106210466,1205.1543,3008656476 +1,4237,1851,128,2.67491269,0.106354213,1203.52543,3008656476 +1,4238,1852,128,2.29991794,0.106216345,1205.0876,3008656476 +1,4239,1853,128,2.94415498,0.106279983,1204.36602,3008656476 +1,4240,1854,128,3.55891109,0.106251205,1204.69222,3008656476 +1,4241,1855,128,3.04766583,0.106225856,1204.9797,3008656476 +1,4242,1856,128,2.68229961,0.106364545,1203.40852,3008656476 +1,4243,1857,128,2.11695862,0.106242731,1204.78831,3008656476 +1,4244,1858,128,3.25069594,0.115529653,1107.94066,3008656476 +1,4245,1859,128,2.54913712,0.106261504,1204.57546,3008656476 +1,4246,1860,128,3.23535991,0.106194327,1205.33746,3008656476 +1,4247,1861,128,3.34674311,0.106176416,1205.54079,3008656476 +1,4248,1862,128,3.23137307,0.106218696,1205.06092,3008656476 +1,4249,1863,128,3.12420821,0.106378576,1203.2498,3008656476 +1,4250,1864,128,3.40354323,0.106353736,1203.53083,3008656476 +1,4251,1865,128,3.19931269,0.106270561,1204.4728,3008656476 +1,4252,1866,128,3.00721765,0.106364686,1203.40693,3008656476 +1,4253,1867,128,4.00526762,0.118300717,1081.98837,3008656476 +1,4254,1868,128,3.07994151,0.10453097,1224.51748,3008656476 +1,4255,1869,128,2.83178329,0.106204183,1205.2256,3008656476 +1,4256,1870,128,3.32149792,0.106337747,1203.71179,3008656476 +1,4257,1871,128,2.66070199,0.106222793,1205.01445,3008656476 +1,4258,1872,128,3.22362351,0.106216997,1205.0802,3008656476 +1,4259,1873,128,3.09168744,0.106156749,1205.76413,3008656476 +1,4260,1874,128,3.43413019,0.106268854,1204.49215,3008656476 +1,4261,1875,128,2.87569618,0.106187395,1205.41614,3008656476 +1,4262,1876,128,2.52684426,0.106197193,1205.30493,3008656476 +1,4263,1877,128,2.55569649,0.118150793,1083.36133,3008656476 +1,4264,1878,128,2.49173069,0.10617496,1205.55732,3008656476 +1,4265,1879,128,1.85972285,0.106233095,1204.89759,3008656476 +1,4266,1880,128,2.63212395,0.106314783,1203.97179,3008656476 +1,4267,1881,128,2.85090876,0.106214588,1205.10753,3008656476 +1,4268,1882,128,2.91938639,0.106315105,1203.96815,3008656476 +1,4269,1883,128,2.41788745,0.106181379,1205.48444,3008656476 +1,4270,1884,128,2.67282891,0.106224008,1205.00066,3008656476 +1,4271,1885,128,2.60719872,0.106199871,1205.27453,3008656476 +1,4272,1886,128,2.91790557,0.106152898,1205.80787,3008656476 +1,4273,1887,128,2.33794975,0.118298534,1082.00834,3008656476 +1,4274,1888,128,2.37653708,0.106224889,1204.99067,3008656476 +1,4275,1889,128,3.29048896,0.106339915,1203.68725,3008656476 +1,4276,1890,128,3.2175405,0.106360614,1203.453,3008656476 +1,4277,1891,128,3.03585529,0.10631738,1203.94238,3008656476 +1,4278,1892,128,2.81937838,0.106233174,1204.89669,3008656476 +1,4279,1893,128,2.54504752,0.106273427,1204.44032,3008656476 +1,4280,1894,128,2.83629918,0.10622597,1204.97841,3008656476 +1,4281,1895,128,2.86435485,0.106263679,1204.5508,3008656476 +1,4282,1896,128,3.33188844,0.106178142,1205.52119,3008656476 +1,4283,1897,128,3.12765789,0.120748881,1060.05123,3008656476 +1,4284,1898,128,3.44345093,0.10622314,1205.01051,3008656476 +1,4285,1899,128,4.59089327,0.106272024,1204.45622,3008656476 +1,4286,1900,128,3.39864564,0.10624936,1204.71314,3008656476 +1,4287,1901,128,2.66625524,0.106421282,1202.76694,3008656476 +1,4288,1902,128,2.82863426,0.106230945,1204.92197,3008656476 +1,4289,1903,128,3.37826085,0.106262895,1204.55969,3008656476 +1,4290,1904,128,2.09381843,0.106132863,1206.0355,3008656476 +1,4291,1905,128,3.19240665,0.106171654,1205.59486,3008656476 +1,4292,1906,128,2.44997954,0.106287733,1204.2782,3008656476 +1,4293,1907,128,2.56701756,0.116316362,1100.44707,3008656476 +1,4294,1908,128,2.89993238,0.106236872,1204.85475,3008656476 +1,4295,1909,128,2.62313652,0.106426636,1202.70644,3008656476 +1,4296,1910,128,2.94698477,0.10620242,1205.24561,3008656476 +1,4297,1911,128,2.58971834,0.106208274,1205.17917,3008656476 +1,4298,1912,128,2.80182648,0.106051252,1206.96359,3008656476 +1,4299,1913,128,2.84531403,0.106927041,1197.07792,3008656476 +1,4300,1914,128,2.97216487,0.105964204,1207.95509,3008656476 +1,4301,1915,128,2.1105535,0.106214197,1205.11197,3008656476 +1,4302,1916,128,3.15391612,0.116809924,1095.79731,3008656476 +1,4303,1917,128,2.63222122,0.104475595,1225.16651,3008656476 +1,4304,1918,128,2.72306752,0.106250594,1204.69915,3008656476 +1,4305,1919,128,2.42910004,0.106238938,1204.83132,3008656476 +1,4306,1920,128,2.70955873,0.106250526,1204.69992,3008656476 +1,4307,1921,128,2.97891808,0.106210172,1205.15764,3008656476 +1,4308,1922,128,3.1124959,0.106378043,1203.25583,3008656476 +1,4309,1923,128,2.92138982,0.106366675,1203.38442,3008656476 +1,4310,1924,128,2.76699424,0.106105227,1206.34962,3008656476 +1,4311,1925,128,2.36179566,0.106199831,1205.27499,3008656476 +1,4312,1926,128,2.80026078,0.118046909,1084.31471,3008656476 +1,4313,1927,128,3.02485299,0.106257846,1204.61693,3008656476 +1,4314,1928,128,3.22024465,0.106280682,1204.3581,3008656476 +1,4315,1929,128,3.99756527,0.106268837,1204.49234,3008656476 +1,4316,1930,128,3.30953574,0.106162496,1205.69886,3008656476 +1,4317,1931,128,2.05023026,0.106392436,1203.09305,3008656476 +1,4318,1932,128,1.9228164,0.106116739,1206.21875,3008656476 +1,4319,1933,128,2.357342,0.106153292,1205.8034,3008656476 +1,4320,1934,128,2.52291846,0.1062443,1204.77051,3008656476 +1,4321,1935,128,2.08003855,0.106165974,1205.65936,3008656476 +1,4322,1936,128,3.02651906,0.121407407,1054.30141,3008656476 +1,4323,1937,128,2.82558084,0.106169268,1205.62195,3008656476 +1,4324,1938,128,2.97437596,0.106198257,1205.29285,3008656476 +1,4325,1939,128,2.56115103,0.106241504,1204.80222,3008656476 +1,4326,1940,128,2.43518662,0.10626631,1204.52098,3008656476 +1,4327,1941,128,1.88895226,0.106292053,1204.22926,3008656476 +1,4328,1942,128,3.3626945,0.106255802,1204.6401,3008656476 +1,4329,1943,128,2.74592757,0.106292476,1204.22446,3008656476 +1,4330,1944,128,2.9100492,0.106236676,1204.85697,3008656476 +1,4331,1945,128,3.22617245,0.106222603,1205.0166,3008656476 +1,4332,1946,128,1.99246991,0.120655267,1060.8737,3008656476 +1,4333,1947,128,2.45892167,0.106153983,1205.79555,3008656476 +1,4334,1948,128,3.28481436,0.106165824,1205.66106,3008656476 +1,4335,1949,128,2.97893357,0.106186475,1205.42659,3008656476 +1,4336,1950,128,3.54257464,0.106228004,1204.95533,3008656476 +1,4337,1951,128,3.51729846,0.106136154,1205.9981,3008656476 +1,4338,1952,128,2.87744308,0.106200304,1205.26962,3008656476 +1,4339,1953,128,2.71463776,0.10620721,1205.19125,3008656476 +1,4340,1954,128,2.86410713,0.106163536,1205.68704,3008656476 +1,4341,1955,128,2.90831542,0.106131559,1206.05031,3008656476 +1,4342,1956,128,3.3908987,0.115591719,1107.34576,3008656476 +1,4343,1957,128,2.85397553,0.106193559,1205.34617,3008656476 +1,4344,1958,128,2.78562427,0.106190899,1205.37637,3008656476 +1,4345,1959,128,2.18455672,0.106237923,1204.84283,3008656476 +1,4346,1960,128,2.98604083,0.106134341,1206.0187,3008656476 +1,4347,1961,128,2.82108068,0.106228282,1204.95218,3008656476 +1,4348,1962,128,2.81888342,0.106193728,1205.34426,3008656476 +1,4349,1963,128,2.31308413,0.106154857,1205.78562,3008656476 +1,4350,1964,128,2.24933028,0.106143102,1205.91916,3008656476 +1,4351,1965,128,2.55391359,0.117956406,1085.14666,3008656476 +1,4352,1966,128,3.05852985,0.104552846,1224.26127,3008656476 +1,4353,1967,128,3.02542686,0.106269218,1204.48802,3008656476 +1,4354,1968,128,3.42788863,0.106308398,1204.04411,3008656476 +1,4355,1969,128,2.68712473,0.106232699,1204.90208,3008656476 +1,4356,1970,128,2.81204867,0.106268459,1204.49662,3008656476 +1,4357,1971,128,2.9036541,0.106359725,1203.46306,3008656476 +1,4358,1972,128,3.40291071,0.106297493,1204.16763,3008656476 +1,4359,1973,128,2.87026119,0.106226539,1204.97195,3008656476 +1,4360,1974,128,1.35081303,0.106641829,1200.27949,3008656476 +1,4361,1975,128,2.20119119,0.119063968,1075.05236,3008656476 +1,4362,1976,128,2.50152135,0.10613565,1206.00383,3008656476 +1,4363,1977,128,2.39061618,0.106267589,1204.50648,3008656476 +1,4364,1978,128,2.74657106,0.106294464,1204.20194,3008656476 +1,4365,1979,128,2.84124184,0.106181576,1205.4822,3008656476 +1,4366,1980,128,3.32458329,0.106266935,1204.5139,3008656476 +1,4367,1981,128,3.28826499,0.106390653,1203.11321,3008656476 +1,4368,1982,128,2.72234392,0.10631242,1203.99855,3008656476 +1,4369,1983,128,3.29064488,0.106345473,1203.62434,3008656476 +1,4370,1984,128,2.29414439,0.106258438,1204.61022,3008656476 +1,4371,1985,128,2.21397877,0.120779508,1059.78243,3008656476 +1,4372,1986,128,2.15813613,0.106328659,1203.81467,3008656476 +1,4373,1987,128,2.89119434,0.106305355,1204.07857,3008656476 +1,4374,1988,128,3.08936882,0.1062188,1205.05974,3008656476 +1,4375,1989,128,3.30508113,0.106312958,1203.99246,3008656476 +1,4376,1990,128,2.30352998,0.106344683,1203.63328,3008656476 +1,4377,1991,128,2.16028023,0.106292982,1204.21873,3008656476 +1,4378,1992,128,2.23498344,0.106165394,1205.66594,3008656476 +1,4379,1993,128,2.81876421,0.106232262,1204.90704,3008656476 +1,4380,1994,128,2.72953033,0.106227657,1204.95927,3008656476 +1,4381,1995,128,2.61656642,0.119671933,1069.59081,3008656476 +1,4382,1996,128,2.5691483,0.106097306,1206.43968,3008656476 +1,4383,1997,128,3.17354202,0.106239095,1204.82954,3008656476 +1,4384,1998,128,3.0394609,0.106197227,1205.30454,3008656476 +1,4385,1999,128,3.6208787,0.106167619,1205.64068,3008656476 +1,4386,2000,128,2.77696037,0.106265586,1204.52919,3008656476 +1,4387,2001,128,2.13369274,0.106300151,1204.13752,3008656476 +1,4388,2002,128,3.00649571,0.106220604,1205.03928,3008656476 +1,4389,2003,128,2.88008809,0.106281609,1204.34759,3008656476 +1,4390,2004,128,2.49432611,0.106223301,1205.00868,3008656476 +1,4391,2005,128,2.3978591,0.11480072,1114.97559,3008656476 +1,4392,2006,128,2.59658241,0.106165256,1205.66751,3008656476 +1,4393,2007,128,2.52161145,0.106954212,1196.77381,3008656476 +1,4394,2008,128,2.69006515,0.10633206,1203.77617,3008656476 +1,4395,2009,128,2.57082486,0.106299802,1204.14147,3008656476 +1,4396,2010,128,2.62064052,0.106236655,1204.85721,3008656476 +1,4397,2011,128,3.16025996,0.106312958,1203.99246,3008656476 +1,4398,2012,128,3.63620424,0.106283414,1204.32714,3008656476 +1,4399,2013,128,3.16396928,0.10621677,1205.08278,3008656476 +1,4400,2014,128,3.60639811,0.116068694,1102.79521,3008656476 +1,4401,2015,128,2.90482187,0.105227241,1216.41505,3008656476 +1,4402,2016,128,3.12913489,0.106204535,1205.2216,3008656476 +1,4403,2017,128,3.82576942,0.106246127,1204.7498,3008656476 +1,4404,2018,128,3.20097613,0.106332356,1203.77282,3008656476 +1,4405,2019,128,3.20135951,0.106254752,1204.652,3008656476 +1,4406,2020,128,2.69740343,0.106319535,1203.91798,3008656476 +1,4407,2021,128,3.41888094,0.106229059,1204.94337,3008656476 +1,4408,2022,128,3.3511703,0.106363074,1203.42517,3008656476 +1,4409,2023,128,3.54502344,0.10623947,1204.82529,3008656476 +1,4410,2024,128,3.67805004,0.120529713,1061.9788,3008656476 +1,4411,2025,128,3.26768923,0.106267139,1204.51158,3008656476 +1,4412,2026,128,2.89630842,0.106318593,1203.92865,3008656476 +1,4413,2027,128,3.39221478,0.106193889,1205.34243,3008656476 +1,4414,2028,128,3.37370253,0.106210076,1205.15873,3008656476 +1,4415,2029,128,3.70852757,0.106222783,1205.01456,3008656476 +1,4416,2030,128,3.3937068,0.106269084,1204.48954,3008656476 +1,4417,2031,128,3.34833336,0.106340078,1203.68541,3008656476 +1,4418,2032,128,2.75476789,0.106161232,1205.71321,3008656476 +1,4419,2033,128,2.79467988,0.106233904,1204.88841,3008656476 +1,4420,2034,128,2.81588697,0.120745106,1060.08437,3008656476 +1,4421,2035,128,3.36404419,0.106092974,1206.48894,3008656476 +1,4422,2036,128,2.37607598,0.106195704,1205.32183,3008656476 +1,4423,2037,128,2.79428959,0.106176397,1205.541,3008656476 +1,4424,2038,128,3.03043461,0.106170148,1205.61196,3008656476 +1,4425,2039,128,3.43598104,0.106127555,1206.09582,3008656476 +1,4426,2040,128,2.94691968,0.106157182,1205.75921,3008656476 +1,4427,2041,128,3.98574114,0.10618841,1205.40462,3008656476 +1,4428,2042,128,3.70673108,0.106084883,1206.58096,3008656476 +1,4429,2043,128,3.91938353,0.106158966,1205.73895,3008656476 +1,4430,2044,128,2.96199012,0.119747324,1068.91741,3008656476 +1,4431,2045,128,2.99762774,0.106196081,1205.31755,3008656476 +1,4432,2046,128,2.98999429,0.106133544,1206.02776,3008656476 +1,4433,2047,128,3.24334097,0.106177197,1205.53192,3008656476 +1,4434,2048,128,3.1510179,0.106236005,1204.86458,3008656476 +1,4435,2049,128,2.92785907,0.106258244,1204.61242,3008656476 +1,4436,2050,128,3.19765282,0.106187852,1205.41095,3008656476 +1,4437,2051,128,3.1752913,0.106287042,1204.28603,3008656476 +1,4438,2052,128,2.72560143,0.106216855,1205.08181,3008656476 +1,4439,2053,128,3.19198871,0.106247222,1204.73738,3008656476 +1,4440,2054,128,3.55064273,0.115153301,1111.56171,3008656476 +1,4441,2055,128,2.92849541,0.106277626,1204.39273,3008656476 +1,4442,2056,128,2.8887229,0.106163402,1205.68857,3008656476 +1,4443,2057,128,3.22985053,0.106194476,1205.33577,3008656476 +1,4444,2058,128,3.00315118,0.10618392,1205.45559,3008656476 +1,4445,2059,128,3.01820588,0.106150364,1205.83666,3008656476 +1,4446,2060,128,2.39082241,0.106134787,1206.01363,3008656476 +1,4447,2061,128,3.49503469,0.106242944,1204.78589,3008656476 +1,4448,2062,128,3.05551696,0.106159739,1205.73017,3008656476 +1,4449,2063,128,2.53765488,0.117694668,1087.55989,3008656476 +1,4450,2064,128,2.91108513,0.104514977,1224.70486,3008656476 +1,4451,2065,128,2.62150598,0.106329938,1203.80019,3008656476 +1,4452,2066,128,2.75909042,0.106247881,1204.72991,3008656476 +1,4453,2067,128,2.64319038,0.106266383,1204.52015,3008656476 +1,4454,2068,128,2.50871181,0.106133876,1206.02398,3008656476 +1,4455,2069,128,2.67906499,0.106159867,1205.72871,3008656476 +1,4456,2070,128,2.81239176,0.106272902,1204.44627,3008656476 +1,4457,2071,128,3.5054009,0.106134008,1206.02248,3008656476 +1,4458,2072,128,2.72640419,0.106127157,1206.10034,3008656476 +1,4459,2073,128,3.07892466,0.120092924,1065.84131,3008656476 +1,4460,2074,128,2.68221569,0.106179947,1205.5007,3008656476 +1,4461,2075,128,3.47722578,0.106244755,1204.76536,3008656476 +1,4462,2076,128,3.14186335,0.106259178,1204.60183,3008656476 +1,4463,2077,128,2.94518614,0.106174963,1205.55728,3008656476 +1,4464,2078,128,2.5096612,0.106229301,1204.94062,3008656476 +1,4465,2079,128,3.4542501,0.106224191,1204.99859,3008656476 +1,4466,2080,128,3.15168333,0.106289222,1204.26133,3008656476 +1,4467,2081,128,2.76991987,0.106231012,1204.92121,3008656476 +1,4468,2082,128,2.81097579,0.1061659,1205.6602,3008656476 +1,4469,2083,128,3.29492402,0.120070865,1066.03713,3008656476 +1,4470,2084,128,2.45460081,0.106319961,1203.91316,3008656476 +1,4471,2085,128,2.993186,0.106333556,1203.75923,3008656476 +1,4472,2086,128,3.08303714,0.106301531,1204.12189,3008656476 +1,4473,2087,128,2.48500705,0.106273567,1204.43873,3008656476 +1,4474,2088,128,2.54474711,0.106367624,1203.37369,3008656476 +1,4475,2089,128,3.17415023,0.106259847,1204.59424,3008656476 +1,4476,2090,128,2.79526567,0.10627854,1204.38237,3008656476 +1,4477,2091,128,2.21430969,0.10619457,1205.3347,3008656476 +1,4478,2092,128,1.98462439,0.106207291,1205.19033,3008656476 +1,4479,2093,128,2.0392611,0.119032467,1075.33687,3008656476 +1,4480,2094,128,3.1638577,0.106319105,1203.92285,3008656476 +1,4481,2095,128,2.20991564,0.106351798,1203.55276,3008656476 +1,4482,2096,128,3.01480103,0.106280053,1204.36523,3008656476 +1,4483,2097,128,2.88536811,0.106286634,1204.29065,3008656476 +1,4484,2098,128,2.84663844,0.106473523,1202.17681,3008656476 +1,4485,2099,128,2.96702409,0.106270089,1204.47815,3008656476 +1,4486,2100,128,2.57111263,0.106281457,1204.34932,3008656476 +1,4487,2101,128,2.94405866,0.10629619,1204.18239,3008656476 +1,4488,2102,128,2.60315728,0.107059509,1195.59674,3008656476 +1,4489,2103,128,1.74699402,0.115147338,1111.61927,3008656476 +1,4490,2104,128,2.59241176,0.106183681,1205.4583,3008656476 +1,4491,2105,128,2.4535141,0.106322113,1203.88879,3008656476 +1,4492,2106,128,2.28247881,0.106263098,1204.55739,3008656476 +1,4493,2107,128,2.92325068,0.106220808,1205.03696,3008656476 +1,4494,2108,128,2.63614893,0.106256721,1204.62968,3008656476 +1,4495,2109,128,2.87897658,0.106311042,1204.01416,3008656476 +1,4496,2110,128,2.90066957,0.106286485,1204.29234,3008656476 +1,4497,2111,128,2.64551973,0.106303451,1204.10014,3008656476 +1,4498,2112,128,2.75727868,0.105782263,1210.03273,3008656476 +1,4499,2113,128,2.80100417,0.106285648,1204.30183,3008656476 +1,4500,2114,128,1.88634908,0.106326721,1203.83662,3008656476 +1,4501,2115,128,3.22185826,0.106005652,1207.48279,3008656476 +1,4502,2116,128,2.50172877,0.106418826,1202.7947,3008656476 +1,4503,2117,128,2.71359682,0.106335211,1203.7405,3008656476 +1,4504,2118,128,2.69475913,0.106248192,1204.72638,3008656476 +1,4505,2119,128,3.38085771,0.106227123,1204.96533,3008656476 +1,4506,2120,128,1.84491003,0.106269367,1204.48633,3008656476 +1,4507,2121,128,2.32218695,0.10639171,1203.10126,3008656476 +1,4508,2122,128,2.39506817,0.119809964,1068.35855,3008656476 +1,4509,2123,128,1.97197807,0.106208128,1205.18083,3008656476 +1,4510,2124,128,2.27709699,0.106135475,1206.00581,3008656476 +1,4511,2125,128,1.5285877,0.106312774,1203.99455,3008656476 +1,4512,2126,128,1.82149434,0.106217459,1205.07496,3008656476 +1,4513,2127,128,3.42727041,0.106258479,1204.60975,3008656476 +1,4514,2128,128,2.76826525,0.106125102,1206.12369,3008656476 +1,4515,2129,128,2.22741175,0.106183288,1205.46277,3008656476 +1,4516,2130,128,3.15429449,0.106294232,1204.20457,3008656476 +1,4517,2131,128,2.31824255,0.106257861,1204.61676,3008656476 +1,4518,2132,128,2.89808345,0.118878653,1076.72822,3008656476 +1,4519,2133,128,2.42934084,0.106245422,1204.75779,3008656476 +1,4520,2134,128,3.15012932,0.10637374,1203.3045,3008656476 +1,4521,2135,128,2.51217055,0.106480936,1202.09311,3008656476 +1,4522,2136,128,3.01153874,0.106177017,1205.53396,3008656476 +1,4523,2137,128,2.68320394,0.106366967,1203.38112,3008656476 +1,4524,2138,128,2.78192711,0.106304259,1204.09099,3008656476 +1,4525,2139,128,3.54495573,0.10635434,1203.52399,3008656476 +1,4526,2140,128,3.17581534,0.106096865,1206.4447,3008656476 +1,4527,2141,128,2.54595304,0.106230211,1204.9303,3008656476 +1,4528,2142,128,2.69404149,0.118352511,1081.51487,3008656476 +1,4529,2143,128,2.69211388,0.10630809,1204.04759,3008656476 +1,4530,2144,128,2.93315053,0.106315887,1203.95929,3008656476 +1,4531,2145,128,3.31935143,0.106363303,1203.42258,3008656476 +1,4532,2146,128,3.16040802,0.106187925,1205.41013,3008656476 +1,4533,2147,128,2.95885706,0.106286208,1204.29548,3008656476 +1,4534,2148,128,2.47408152,0.106194314,1205.3376,3008656476 +1,4535,2149,128,2.84564185,0.106381022,1203.22213,3008656476 +1,4536,2150,128,2.69571686,0.172917654,740.236737,3008656476 +1,4537,2151,128,2.79353452,0.120771995,1059.84835,3008656476 +1,4538,2152,128,2.89055419,0.106356618,1203.49822,3008656476 +1,4539,2153,128,2.6265223,0.106443832,1202.51214,3008656476 +1,4540,2154,128,2.36987805,0.106207486,1205.18812,3008656476 +1,4541,2155,128,3.28221321,0.106334251,1203.75137,3008656476 +1,4542,2156,128,3.07805943,0.106238836,1204.83248,3008656476 +1,4543,2157,128,2.73911166,0.106153857,1205.79698,3008656476 +1,4544,2158,128,1.58892548,0.106304806,1204.08479,3008656476 +1,4545,2159,128,3.39570475,0.106342266,1203.66064,3008656476 +1,4546,2160,128,4.08992863,0.106207731,1205.18534,3008656476 +1,4547,2161,128,3.33857799,0.119311805,1072.81924,3008656476 +1,4548,2162,128,2.375139,0.106290686,1204.24474,3008656476 +1,4549,2163,128,2.04504514,0.106424911,1202.72593,3008656476 +1,4550,2164,128,2.20442605,0.106264481,1204.54171,3008656476 +1,4551,2165,128,3.08329964,0.106291478,1204.23577,3008656476 +1,4552,2166,128,2.82330394,0.106332003,1203.77682,3008656476 +1,4553,2167,128,2.71030879,0.106283506,1204.3261,3008656476 +1,4554,2168,128,2.8718605,0.106129757,1206.07079,3008656476 +1,4555,2169,128,3.08003712,0.106260362,1204.58841,3008656476 +1,4556,2170,128,2.34040999,0.117558814,1088.8167,3008656476 +1,4557,2171,128,2.54046345,0.105334835,1215.17255,3008656476 +1,4558,2172,128,2.99741793,0.106212892,1205.12678,3008656476 +1,4559,2173,128,3.44053864,0.106272525,1204.45054,3008656476 +1,4560,2174,128,3.01090169,0.106331994,1203.77692,3008656476 +1,4561,2175,128,2.64483571,0.106174672,1205.56059,3008656476 +1,4562,2176,128,1.37361252,0.10619446,1205.33595,3008656476 +1,4563,2177,128,2.38361859,0.106228805,1204.94625,3008656476 +1,4564,2178,128,2.32860947,0.106293265,1204.21553,3008656476 +1,4565,2179,128,3.15777016,0.106241459,1204.80273,3008656476 +1,4566,2180,128,3.12036204,0.117957738,1085.13441,3008656476 +1,4567,2181,128,2.29935527,0.106327003,1203.83342,3008656476 +1,4568,2182,128,2.75430799,0.106237992,1204.84205,3008656476 +1,4569,2183,128,3.23820925,0.106270277,1204.47602,3008656476 +1,4570,2184,128,2.91366196,0.106290254,1204.24964,3008656476 +1,4571,2185,128,2.98782516,0.106188651,1205.40188,3008656476 +1,4572,2186,128,3.07746005,0.106294168,1204.2053,3008656476 +1,4573,2187,128,3.08120966,0.10620225,1205.24753,3008656476 +1,4574,2188,128,2.68861437,0.106161878,1205.70587,3008656476 +1,4575,2189,128,2.62216806,0.106326973,1203.83376,3008656476 +1,4576,2190,128,2.47033525,0.121250525,1055.66553,3008656476 +1,4577,2191,128,3.17775893,0.106177719,1205.52599,3008656476 +1,4578,2192,128,2.47709703,0.106324201,1203.86515,3008656476 +1,4579,2193,128,1.76003575,0.106188827,1205.39989,3008656476 +1,4580,2194,128,2.74808526,0.106096791,1206.44554,3008656476 +1,4581,2195,128,2.50304341,0.106181746,1205.48027,3008656476 +1,4582,2196,128,3.07067132,0.106775668,1198.77499,3008656476 +1,4583,2197,128,3.15516019,0.10617254,1205.5848,3008656476 +1,4584,2198,128,3.13855195,0.106294921,1204.19676,3008656476 +1,4585,2199,128,2.28524971,0.10621558,1205.09628,3008656476 +1,4586,2200,128,2.92381191,0.120912566,1058.61619,3008656476 +1,4587,2201,128,3.06122375,0.106102344,1206.3824,3008656476 +1,4588,2202,128,2.5879519,0.106364024,1203.41442,3008656476 +1,4589,2203,128,3.23531985,0.106298172,1204.15994,3008656476 +1,4590,2204,128,3.35002494,0.106174178,1205.5662,3008656476 +1,4591,2205,128,2.43695664,0.106329572,1203.80434,3008656476 +1,4592,2206,128,2.62551856,0.106330587,1203.79285,3008656476 +1,4593,2207,128,2.64130211,0.106308729,1204.04036,3008656476 +1,4594,2208,128,2.610291,0.106378149,1203.25463,3008656476 +1,4595,2209,128,2.91155934,0.106405708,1202.94298,3008656476 +1,4596,2210,128,2.43860722,0.114026848,1122.54265,3008656476 +1,4597,2211,128,2.31051588,0.106409672,1202.89817,3008656476 +1,4598,2212,128,2.34714556,0.106278173,1204.38653,3008656476 +1,4599,2213,128,2.46999288,0.106383051,1203.19918,3008656476 +1,4600,2214,128,2.423069,0.106238215,1204.83952,3008656476 +1,4601,2215,128,3.09439874,0.106312783,1203.99444,3008656476 +1,4602,2216,128,2.0604496,0.106220676,1205.03846,3008656476 +1,4603,2217,128,3.11944437,0.106313173,1203.99003,3008656476 +1,4604,2218,128,2.62712502,0.106225457,1204.98423,3008656476 +1,4605,2219,128,3.27682161,0.116453356,1099.15252,3008656476 +1,4606,2220,128,2.57139373,0.105063088,1218.31561,3008656476 +1,4607,2221,128,1.79807925,0.106383656,1203.19234,3008656476 +1,4608,2222,128,2.55754066,0.106177039,1205.53371,3008656476 +1,4609,2223,128,2.63788342,0.106217829,1205.07076,3008656476 +1,4610,2224,128,2.41904283,0.106242659,1204.78912,3008656476 +1,4611,2225,128,2.45191121,0.106290815,1204.24328,3008656476 +1,4612,2226,128,3.13174725,0.106250017,1204.70569,3008656476 +1,4613,2227,128,2.61912394,0.106350217,1203.57065,3008656476 +1,4614,2228,128,2.61100578,0.106237099,1204.85218,3008656476 +1,4615,2229,128,2.49904776,0.120762308,1059.93337,3008656476 +1,4616,2230,128,3.09544373,0.10617966,1205.50395,3008656476 +1,4617,2231,128,1.9250102,0.106275832,1204.41306,3008656476 +1,4618,2232,128,2.86615062,0.106227291,1204.96342,3008656476 +1,4619,2233,128,2.29779553,0.106169483,1205.61951,3008656476 +1,4620,2234,128,2.68659306,0.106193043,1205.35203,3008656476 +1,4621,2235,128,1.90929639,0.106264648,1204.53982,3008656476 +1,4622,2236,128,2.62293053,0.106162461,1205.69925,3008656476 +1,4623,2237,128,3.44003034,0.106206384,1205.20062,3008656476 +1,4624,2238,128,2.62463117,0.106270136,1204.47762,3008656476 +1,4625,2239,128,2.4182446,0.122500633,1044.89256,3008656476 +1,4626,2240,128,2.4244628,0.10623131,1204.91783,3008656476 +1,4627,2241,128,2.46411586,0.106337873,1203.71037,3008656476 +1,4628,2242,128,3.31421161,0.106253721,1204.66369,3008656476 +1,4629,2243,128,2.89635062,0.106197435,1205.30218,3008656476 +1,4630,2244,128,2.88552952,0.106124006,1206.13615,3008656476 +1,4631,2245,128,3.03989601,0.106180175,1205.49811,3008656476 +1,4632,2246,128,1.99992418,0.106232334,1204.90622,3008656476 +1,4633,2247,128,2.18340898,0.106296763,1204.1759,3008656476 +1,4634,2248,128,2.39418268,0.106198932,1205.28519,3008656476 +1,4635,2249,128,2.8694613,0.11980553,1068.39809,3008656476 +1,4636,2250,128,2.89571238,0.106178004,1205.52276,3008656476 +1,4637,2251,128,2.04754901,0.106218053,1205.06822,3008656476 +1,4638,2252,128,1.89004397,0.106234044,1204.88683,3008656476 +1,4639,2253,128,2.59577489,0.106182257,1205.47447,3008656476 +1,4640,2254,128,3.38460779,0.106244698,1204.766,3008656476 +1,4641,2255,128,2.75316048,0.106164005,1205.68172,3008656476 +1,4642,2256,128,2.92479324,0.106192836,1205.35438,3008656476 +1,4643,2257,128,2.65524554,0.106178455,1205.51764,3008656476 +1,4644,2258,128,3.10055399,0.106198889,1205.28568,3008656476 +1,4645,2259,128,2.66504312,0.115750528,1105.82649,3008656476 +1,4646,2260,128,2.56455517,0.106156839,1205.76311,3008656476 +1,4647,2261,128,2.3508687,0.106246053,1204.75064,3008656476 +1,4648,2262,128,2.21781611,0.106226951,1204.96728,3008656476 +1,4649,2263,128,2.68166804,0.10643036,1202.66435,3008656476 +1,4650,2264,128,2.01680088,0.106230539,1204.92658,3008656476 +1,4651,2265,128,2.21869779,0.106242628,1204.78947,3008656476 +1,4652,2266,128,2.77678752,0.106255916,1204.63881,3008656476 +1,4653,2267,128,2.26276422,0.106276556,1204.40485,3008656476 +1,4654,2268,128,2.58116603,0.117065773,1093.40242,3008656476 +1,4655,2269,128,1.70485663,0.104581404,1223.92696,3008656476 +1,4656,2270,128,2.25717497,0.106288212,1204.27277,3008656476 +1,4657,2271,128,2.38038111,0.106328978,1203.81106,3008656476 +1,4658,2272,128,2.76871085,0.106238103,1204.84079,3008656476 +1,4659,2273,128,2.22659445,0.106356307,1203.50173,3008656476 +1,4660,2274,128,2.06184554,0.10632127,1203.89834,3008656476 +1,4661,2275,128,2.56536222,0.106223304,1205.00865,3008656476 +1,4662,2276,128,2.71755576,0.106257721,1204.61834,3008656476 +1,4663,2277,128,2.02899289,0.106320908,1203.90243,3008656476 +1,4664,2278,128,2.21434617,0.120286691,1064.12438,3008656476 +1,4665,2279,128,2.18959999,0.106244743,1204.76549,3008656476 +1,4666,2280,128,2.12437129,0.106275161,1204.42066,3008656476 +1,4667,2281,128,2.55241394,0.106270559,1204.47282,3008656476 +1,4668,2282,128,2.91120958,0.106193216,1205.35007,3008656476 +1,4669,2283,128,2.18262959,0.10635656,1203.49887,3008656476 +1,4670,2284,128,2.28172636,0.106268523,1204.4959,3008656476 +1,4671,2285,128,1.91618598,0.106298344,1204.15799,3008656476 +1,4672,2286,128,2.10844731,0.106298888,1204.15183,3008656476 +1,4673,2287,128,2.06698346,0.106309145,1204.03565,3008656476 +1,4674,2288,128,1.8663466,0.119672547,1069.58532,3008656476 +1,4675,2289,128,2.03310418,0.106268383,1204.49748,3008656476 +1,4676,2290,128,2.55780697,0.107146011,1194.6315,3008656476 +1,4677,2291,128,3.11686516,0.106311473,1204.00928,3008656476 +1,4678,2292,128,2.0811305,0.106129668,1206.0718,3008656476 +1,4679,2293,128,2.88370204,0.106235425,1204.87116,3008656476 +1,4680,2294,128,3.17947388,0.106290311,1204.24899,3008656476 +1,4681,2295,128,3.33006263,0.10633022,1203.797,3008656476 +1,4682,2296,128,3.45553184,0.09304171,1375.72708,3008656476 +1,4683,2297,128,2.56963301,0.106288024,1204.2749,3008656476 +1,4684,2298,128,2.38687778,0.118461703,1080.51798,3008656476 +1,4685,2299,128,3.3159368,0.106402223,1202.98239,3008656476 +1,4686,2300,128,2.92930102,0.106280516,1204.35998,3008656476 +1,4687,2301,128,3.29388332,0.106359095,1203.47019,3008656476 +1,4688,2302,128,3.59679413,0.106203051,1205.23844,3008656476 +1,4689,2303,128,2.8021543,0.106350854,1203.56344,3008656476 +1,4690,2304,128,2.64403248,0.106294329,1204.20347,3008656476 +1,4691,2305,128,2.98155904,0.106210252,1205.15673,3008656476 +1,4692,2306,128,3.62969995,0.106205278,1205.21317,3008656476 +1,4693,2307,128,3.07770991,0.106320103,1203.91155,3008656476 +1,4694,2308,128,3.25812411,0.113712684,1125.644,3008656476 +1,4695,2309,128,3.45813012,0.106318855,1203.92568,3008656476 +1,4696,2310,128,2.93928123,0.106305802,1204.07351,3008656476 +1,4697,2311,128,2.66486716,0.106168597,1205.62957,3008656476 +1,4698,2312,128,2.66337085,0.106234103,1204.88616,3008656476 +1,4699,2313,128,3.22160983,0.106332303,1203.77342,3008656476 +1,4700,2314,128,3.7781229,0.106196931,1205.3079,3008656476 +1,4701,2315,128,3.41288424,0.106172943,1205.58022,3008656476 +1,4702,2316,128,3.93308353,0.106186703,1205.424,3008656476 +1,4703,2317,128,3.53245234,0.117955224,1085.15753,3008656476 +1,4704,2318,128,3.57774067,0.104812334,1221.23032,3008656476 +1,4705,2319,128,3.5738256,0.10631604,1203.95756,3008656476 +1,4706,2320,128,3.49557495,0.106229472,1204.93868,3008656476 +1,4707,2321,128,3.6516571,0.106200401,1205.26852,3008656476 +1,4708,2322,128,3.36260176,0.106257191,1204.62435,3008656476 +1,4709,2323,128,3.46912718,0.106177283,1205.53094,3008656476 +1,4710,2324,128,3.05015802,0.106314376,1203.9764,3008656476 +1,4711,2325,128,3.69471955,0.10631796,1203.93582,3008656476 +1,4712,2326,128,3.3403728,0.106363166,1203.42413,3008656476 +1,4713,2327,128,3.79316974,0.119921938,1067.361,3008656476 +1,4714,2328,128,3.38722944,0.106302354,1204.11256,3008656476 +1,4715,2329,128,2.98536992,0.106314532,1203.97464,3008656476 +1,4716,2330,128,3.36686945,0.10620977,1205.1622,3008656476 +1,4717,2331,128,3.3155427,0.106290973,1204.24149,3008656476 +1,4718,2332,128,2.71229124,0.106198693,1205.2879,3008656476 +1,4719,2333,128,2.74681473,0.106318781,1203.92652,3008656476 +1,4720,2334,128,2.37222266,0.106183415,1205.46132,3008656476 +1,4721,2335,128,3.13945842,0.106268185,1204.49973,3008656476 +1,4722,2336,128,3.64683342,0.106177276,1205.53102,3008656476 +1,4723,2337,128,3.3938005,0.118560881,1079.61411,3008656476 +1,4724,2338,128,2.93606973,0.106309378,1204.03301,3008656476 +1,4725,2339,128,2.95313931,0.106235575,1204.86946,3008656476 +1,4726,2340,128,2.68893909,0.106254904,1204.65028,3008656476 +1,4727,2341,128,3.42154622,0.106142207,1205.92932,3008656476 +1,4728,2342,128,3.22078896,0.106282962,1204.33226,3008656476 +1,4729,2343,128,3.32873702,0.106185132,1205.44183,3008656476 +1,4730,2344,128,3.00059557,0.10615721,1205.75889,3008656476 +1,4731,2345,128,3.70663309,0.106207963,1205.1827,3008656476 +1,4732,2346,128,3.51854825,0.106244589,1204.76724,3008656476 +1,4733,2347,128,3.42402601,0.118809456,1077.35532,3008656476 +1,4734,2348,128,3.30074358,0.106253602,1204.66504,3008656476 +1,4735,2349,128,3.45740557,0.106182195,1205.47517,3008656476 +1,4736,2350,128,3.04956865,0.1061918,1205.36614,3008656476 +1,4737,2351,128,3.11609054,0.106203629,1205.23189,3008656476 +1,4738,2352,128,2.64053774,0.106285854,1204.29949,3008656476 +1,4739,2353,128,2.64082646,0.106112995,1206.26131,3008656476 +1,4740,2354,128,3.38528109,0.106119656,1206.18559,3008656476 +1,4741,2355,128,2.95596743,0.106317014,1203.94653,3008656476 +1,4742,2356,128,3.33045173,0.106204208,1205.22531,3008656476 +1,4743,2357,128,2.67451382,0.115065561,1112.4093,3008656476 +1,4744,2358,128,2.73948288,0.106176976,1205.53443,3008656476 +1,4745,2359,128,2.98437691,0.106139278,1205.9626,3008656476 +1,4746,2360,128,3.10221648,0.106243259,1204.78232,3008656476 +1,4747,2361,128,2.57744074,0.106271704,1204.45984,3008656476 +1,4748,2362,128,2.55636334,0.106122583,1206.15232,3008656476 +1,4749,2363,128,2.24454045,0.106262221,1204.56733,3008656476 +1,4750,2364,128,2.05093241,0.106202465,1205.24509,3008656476 +1,4751,2365,128,2.55311537,0.106294768,1204.1985,3008656476 +1,4752,2366,128,2.32423234,0.11850445,1080.12821,3008656476 +1,4753,2367,128,3.02823019,0.104744412,1222.02223,3008656476 +1,4754,2368,128,2.66126561,0.106226958,1204.9672,3008656476 +1,4755,2369,128,2.61473227,0.106231582,1204.91475,3008656476 +1,4756,2370,128,2.4556272,0.106156073,1205.77181,3008656476 +1,4757,2371,128,2.4718914,0.106271393,1204.46337,3008656476 +1,4758,2372,128,3.46517348,0.106158599,1205.74312,3008656476 +1,4759,2373,128,3.48616743,0.106131811,1206.04745,3008656476 +1,4760,2374,128,3.39951062,0.106351516,1203.55595,3008656476 +1,4761,2375,128,2.31241131,0.106226971,1204.96705,3008656476 +1,4762,2376,128,2.43934131,0.119123825,1074.51217,3008656476 +1,4763,2377,128,3.27394867,0.106281765,1204.34583,3008656476 +1,4764,2378,128,2.98725224,0.106216169,1205.08959,3008656476 +1,4765,2379,128,2.30772376,0.106168648,1205.62899,3008656476 +1,4766,2380,128,2.82063794,0.106374809,1203.29241,3008656476 +1,4767,2381,128,2.35349393,0.106354996,1203.51657,3008656476 +1,4768,2382,128,2.75363946,0.106295401,1204.19133,3008656476 +1,4769,2383,128,3.00462151,0.106307983,1204.04881,3008656476 +1,4770,2384,64,2.25530601,0.102820279,622.445306,3008656476 +2,4771,0,128,1.74147844,0.104653521,1223.08355,3008656476 +2,4772,1,128,2.39798927,0.116237725,1101.19155,3008656476 +2,4773,2,128,2.22908926,0.106430348,1202.66449,3008656476 +2,4774,3,128,2.51796985,0.119730908,1069.06397,3008656476 +2,4775,4,128,2.93323898,0.106392353,1203.09399,3008656476 +2,4776,5,128,3.23466182,0.106500178,1201.87593,3008656476 +2,4777,6,128,2.9157064,0.106266361,1204.5204,3008656476 +2,4778,7,128,3.12626505,0.106264549,1204.54094,3008656476 +2,4779,8,128,3.39663458,0.106277333,1204.39605,3008656476 +2,4780,9,128,2.9908278,0.1062484,1204.72402,3008656476 +2,4781,10,128,2.6152761,0.106378568,1203.24989,3008656476 +2,4782,11,128,3.08647251,0.106311491,1204.00908,3008656476 +2,4783,12,128,2.41158819,0.106149834,1205.84268,3008656476 +2,4784,13,128,2.10351086,0.107728786,1188.16896,3008656476 +2,4785,14,128,2.14101076,0.106372837,1203.31471,3008656476 +2,4786,15,128,2.27707529,0.10618752,1205.41472,3008656476 +2,4787,16,128,2.68388486,0.106234012,1204.88719,3008656476 +2,4788,17,128,2.70190382,0.106305476,1204.0772,3008656476 +2,4789,18,128,2.66019034,0.106240651,1204.81189,3008656476 +2,4790,19,128,2.82271123,0.106237633,1204.84612,3008656476 +2,4791,20,128,2.56434751,0.106171802,1205.59318,3008656476 +2,4792,21,128,3.15825343,0.106208239,1205.17957,3008656476 +2,4793,22,128,2.28909612,0.118261865,1082.34383,3008656476 +2,4794,23,128,1.85322726,0.106611932,1200.61608,3008656476 +2,4795,24,128,2.08081269,0.10610725,1206.32662,3008656476 +2,4796,25,128,2.5351367,0.106181651,1205.48135,3008656476 +2,4797,26,128,2.49254894,0.106700271,1199.62207,3008656476 +2,4798,27,128,2.8097446,0.106267193,1204.51097,3008656476 +2,4799,28,128,2.4069376,0.106192529,1205.35786,3008656476 +2,4800,29,128,2.22878933,0.10621165,1205.14087,3008656476 +2,4801,30,128,2.14596701,0.106306827,1204.0619,3008656476 +2,4802,31,128,2.37575626,0.106329202,1203.80853,3008656476 +2,4803,32,128,2.64261389,0.120598972,1061.36891,3008656476 +2,4804,33,128,2.59619856,0.106282058,1204.34251,3008656476 +2,4805,34,128,2.63598919,0.10625812,1204.61382,3008656476 +2,4806,35,128,2.68867993,0.106362488,1203.4318,3008656476 +2,4807,36,128,2.54265833,0.106394368,1203.0712,3008656476 +2,4808,37,128,2.24944663,0.107127134,1194.84201,3008656476 +2,4809,38,128,2.48171091,0.106310946,1204.01525,3008656476 +2,4810,39,128,1.85556757,0.106313285,1203.98876,3008656476 +2,4811,40,128,2.73173094,0.106333863,1203.75576,3008656476 +2,4812,41,128,2.65626287,0.106304098,1204.09281,3008656476 +2,4813,42,128,2.648386,0.120063352,1066.10383,3008656476 +2,4814,43,128,2.99242783,0.106269524,1204.48455,3008656476 +2,4815,44,128,3.02133131,0.106437221,1202.58683,3008656476 +2,4816,45,128,2.79484224,0.106222186,1205.02133,3008656476 +2,4817,46,128,2.32317758,0.106378846,1203.24674,3008656476 +2,4818,47,128,2.61993742,0.106267238,1204.51046,3008656476 +2,4819,48,128,2.46106672,0.106330957,1203.78866,3008656476 +2,4820,49,128,2.75295591,0.106261924,1204.5707,3008656476 +2,4821,50,128,2.34534979,0.106290475,1204.24714,3008656476 +2,4822,51,128,2.93870807,0.106190386,1205.38219,3008656476 +2,4823,52,128,2.26600528,0.11904647,1075.21038,3008656476 +2,4824,53,128,2.95494199,0.106199687,1205.27662,3008656476 +2,4825,54,128,2.10768056,0.106296023,1204.18428,3008656476 +2,4826,55,128,2.34600854,0.10616309,1205.69211,3008656476 +2,4827,56,128,2.97130299,0.106165941,1205.65973,3008656476 +2,4828,57,128,2.46956325,0.106196318,1205.31486,3008656476 +2,4829,58,128,2.42509246,0.106353296,1203.53581,3008656476 +2,4830,59,128,2.53893137,0.106137936,1205.97785,3008656476 +2,4831,60,128,2.48987293,0.106306722,1204.06309,3008656476 +2,4832,61,128,3.08499455,0.10617869,1205.51497,3008656476 +2,4833,62,128,2.19156361,0.10798491,1185.35081,3008656476 +2,4834,63,128,2.98159385,0.106251946,1204.68382,3008656476 +2,4835,64,128,2.04487824,0.106281854,1204.34482,3008656476 +2,4836,65,128,2.87047172,0.106143425,1205.91549,3008656476 +2,4837,66,128,2.53479028,0.10639324,1203.08396,3008656476 +2,4838,67,128,3.0535419,0.106189029,1205.39759,3008656476 +2,4839,68,128,3.41877294,0.106230082,1204.93176,3008656476 +2,4840,69,128,2.5634048,0.106181567,1205.4823,3008656476 +2,4841,70,128,2.93694711,0.106262125,1204.56842,3008656476 +2,4842,71,128,2.87278938,0.119066566,1075.0289,3008656476 +2,4843,72,128,2.6569016,0.10669622,1199.66762,3008656476 +2,4844,73,128,2.71690679,0.106285355,1204.30515,3008656476 +2,4845,74,128,2.4815228,0.106185856,1205.43361,3008656476 +2,4846,75,128,2.22920227,0.106325405,1203.85152,3008656476 +2,4847,76,128,3.37284899,0.106153904,1205.79644,3008656476 +2,4848,77,128,2.96653438,0.106207908,1205.18333,3008656476 +2,4849,78,128,2.54486227,0.10617199,1205.59104,3008656476 +2,4850,79,128,2.63020945,0.106274491,1204.42826,3008656476 +2,4851,80,128,2.84007788,0.106300459,1204.13403,3008656476 +2,4852,81,128,2.86755347,0.120773032,1059.83925,3008656476 +2,4853,82,128,3.0020628,0.106262408,1204.56521,3008656476 +2,4854,83,128,3.0181284,0.106296071,1204.18374,3008656476 +2,4855,84,128,2.59712315,0.106264964,1204.53624,3008656476 +2,4856,85,128,2.38769412,0.106342913,1203.65332,3008656476 +2,4857,86,128,2.5115428,0.106259024,1204.60357,3008656476 +2,4858,87,128,2.14782977,0.106257063,1204.6258,3008656476 +2,4859,88,128,1.9753052,0.106327538,1203.82737,3008656476 +2,4860,89,128,2.4601078,0.106316311,1203.95449,3008656476 +2,4861,90,128,2.33275676,0.10619317,1205.35059,3008656476 +2,4862,91,128,2.35130239,0.118373412,1081.3239,3008656476 +2,4863,92,128,2.46128678,0.106227397,1204.96222,3008656476 +2,4864,93,128,2.36199236,0.106242684,1204.78884,3008656476 +2,4865,94,128,2.1643517,0.106281158,1204.3527,3008656476 +2,4866,95,128,2.45738292,0.106282194,1204.34096,3008656476 +2,4867,96,128,2.12526155,0.106247498,1204.73425,3008656476 +2,4868,97,128,2.62629318,0.106139188,1205.96363,3008656476 +2,4869,98,128,2.3473351,0.106342792,1203.65469,3008656476 +2,4870,99,128,2.4955771,0.106230307,1204.92921,3008656476 +2,4871,100,128,2.68092203,0.106452965,1202.40897,3008656476 +2,4872,101,128,2.32931352,0.118214411,1082.77831,3008656476 +2,4873,102,128,2.46008778,0.106397265,1203.03844,3008656476 +2,4874,103,128,2.30926204,0.106239117,1204.82929,3008656476 +2,4875,104,128,1.97738028,0.106333237,1203.76285,3008656476 +2,4876,105,128,2.44249487,0.10626963,1204.48335,3008656476 +2,4877,106,128,2.40463233,0.106340711,1203.67824,3008656476 +2,4878,107,128,2.20607018,0.106229196,1204.94181,3008656476 +2,4879,108,128,2.48706031,0.106308455,1204.04346,3008656476 +2,4880,109,128,1.81554842,0.106399169,1203.01691,3008656476 +2,4881,110,128,2.30693507,0.106337245,1203.71747,3008656476 +2,4882,111,128,2.47225356,0.112127691,1141.55566,3008656476 +2,4883,112,128,2.68841839,0.106412006,1202.87179,3008656476 +2,4884,113,128,3.0258646,0.106160658,1205.71973,3008656476 +2,4885,114,128,2.93912053,0.10618945,1205.39281,3008656476 +2,4886,115,128,2.98073792,0.106199272,1205.28133,3008656476 +2,4887,116,128,2.17320871,0.106312334,1203.99953,3008656476 +2,4888,117,128,2.55036283,0.106263166,1204.55662,3008656476 +2,4889,118,128,2.37260008,0.106270852,1204.4695,3008656476 +2,4890,119,128,2.93826199,0.106194544,1205.33499,3008656476 +2,4891,120,128,2.45134377,0.117981519,1084.91568,3008656476 +2,4892,121,128,2.29908848,0.105397839,1214.44615,3008656476 +2,4893,122,128,1.93524587,0.106167991,1205.63645,3008656476 +2,4894,123,128,2.2675395,0.106623984,1200.48037,3008656476 +2,4895,124,128,1.95495903,0.105866935,1209.06495,3008656476 +2,4896,125,128,1.98720765,0.106378112,1203.25505,3008656476 +2,4897,126,128,1.99409652,0.106286941,1204.28718,3008656476 +2,4898,127,128,2.63703036,0.106291586,1204.23455,3008656476 +2,4899,128,128,2.70740128,0.106423043,1202.74704,3008656476 +2,4900,129,128,2.47176695,0.106243776,1204.77646,3008656476 +2,4901,130,128,2.25805378,0.119429126,1071.76536,3008656476 +2,4902,131,128,2.33374596,0.106245874,1204.75267,3008656476 +2,4903,132,128,1.90279305,0.106302307,1204.1131,3008656476 +2,4904,133,128,2.1498065,0.106299212,1204.14815,3008656476 +2,4905,134,128,2.35626888,0.106313739,1203.98362,3008656476 +2,4906,135,128,2.09930015,0.106395737,1203.05572,3008656476 +2,4907,136,128,1.96929538,0.106329942,1203.80015,3008656476 +2,4908,137,128,1.90009201,0.106197598,1205.30033,3008656476 +2,4909,138,128,1.63553047,0.106362758,1203.42874,3008656476 +2,4910,139,128,2.06705046,0.106275197,1204.42026,3008656476 +2,4911,140,128,1.64281952,0.119248983,1073.38442,3008656476 +2,4912,141,128,1.5717926,0.106339368,1203.69344,3008656476 +2,4913,142,128,2.13866425,0.106184981,1205.44355,3008656476 +2,4914,143,128,1.8907541,0.106186797,1205.42293,3008656476 +2,4915,144,128,1.14855719,0.106307333,1204.05617,3008656476 +2,4916,145,128,1.09822035,0.10630472,1204.08576,3008656476 +2,4917,146,128,1.93387413,0.106437534,1202.58329,3008656476 +2,4918,147,128,2.37280345,0.106292164,1204.228,3008656476 +2,4919,148,128,2.58267617,0.106309365,1204.03315,3008656476 +2,4920,149,128,2.27941394,0.106380792,1203.22473,3008656476 +2,4921,150,128,1.65736389,0.11872503,1078.12144,3008656476 +2,4922,151,128,1.29846084,0.106242266,1204.79358,3008656476 +2,4923,152,128,2.03540945,0.106256038,1204.63742,3008656476 +2,4924,153,128,2.28310966,0.106247628,1204.73278,3008656476 +2,4925,154,128,1.73220491,0.106325426,1203.85128,3008656476 +2,4926,155,128,2.73884201,0.106222894,1205.0133,3008656476 +2,4927,156,128,2.80367756,0.106276843,1204.4016,3008656476 +2,4928,157,128,2.57480931,0.106305135,1204.08106,3008656476 +2,4929,158,128,2.14818406,0.106267451,1204.50805,3008656476 +2,4930,159,128,1.87208676,0.106211285,1205.14501,3008656476 +2,4931,160,128,2.15315318,0.114970558,1113.32851,3008656476 +2,4932,161,128,2.18760777,0.106281137,1204.35294,3008656476 +2,4933,162,128,1.97781658,0.106375259,1203.28732,3008656476 +2,4934,163,128,2.79965854,0.106252217,1204.68075,3008656476 +2,4935,164,128,2.59884477,0.106449381,1202.44945,3008656476 +2,4936,165,128,2.24192595,0.106417388,1202.81095,3008656476 +2,4937,166,128,2.8550601,0.106277923,1204.38936,3008656476 +2,4938,167,128,2.11744213,0.106253944,1204.66117,3008656476 +2,4939,168,128,2.13861227,0.106323176,1203.87675,3008656476 +2,4940,169,128,2.25792241,0.118492372,1080.23831,3008656476 +2,4941,170,128,2.50933671,0.093443877,1369.80618,3008656476 +2,4942,171,128,2.12275314,0.106620823,1200.51596,3008656476 +2,4943,172,128,2.38252234,0.106288981,1204.26406,3008656476 +2,4944,173,128,2.16803265,0.106274311,1204.4303,3008656476 +2,4945,174,128,1.85531843,0.106465447,1202.268,3008656476 +2,4946,175,128,2.46231675,0.106333794,1203.75654,3008656476 +2,4947,176,128,1.81729758,0.106455517,1202.38015,3008656476 +2,4948,177,128,2.79456854,0.106341723,1203.66679,3008656476 +2,4949,178,128,1.99945414,0.106447388,1202.47197,3008656476 +2,4950,179,128,2.91305232,0.118727167,1078.10203,3008656476 +2,4951,180,128,2.3360312,0.106304943,1204.08324,3008656476 +2,4952,181,128,2.30417848,0.106161634,1205.70865,3008656476 +2,4953,182,128,2.69756508,0.106225352,1204.98542,3008656476 +2,4954,183,128,1.69983184,0.106300792,1204.13026,3008656476 +2,4955,184,128,1.84786582,0.106284282,1204.3173,3008656476 +2,4956,185,128,2.21665883,0.106204853,1205.218,3008656476 +2,4957,186,128,1.92836463,0.106317509,1203.94092,3008656476 +2,4958,187,128,1.80593443,0.106141459,1205.93782,3008656476 +2,4959,188,128,2.37198615,0.106284279,1204.31734,3008656476 +2,4960,189,128,2.261271,0.118233007,1082.60801,3008656476 +2,4961,190,128,2.07367158,0.106307565,1204.05354,3008656476 +2,4962,191,128,1.7576884,0.106251317,1204.69095,3008656476 +2,4963,192,128,1.69588208,0.106367283,1203.37755,3008656476 +2,4964,193,128,2.24408269,0.106222744,1205.015,3008656476 +2,4965,194,128,2.06251717,0.106315751,1203.96083,3008656476 +2,4966,195,128,2.3012805,0.1062525,1204.67754,3008656476 +2,4967,196,128,2.23517823,0.106282819,1204.33388,3008656476 +2,4968,197,128,2.05820823,0.106234806,1204.87818,3008656476 +2,4969,198,128,1.78573215,0.106315393,1203.96489,3008656476 +2,4970,199,128,2.32897019,0.120277703,1064.20389,3008656476 +2,4971,200,128,2.06463885,0.106277562,1204.39345,3008656476 +2,4972,201,128,1.91629553,0.106307986,1204.04877,3008656476 +2,4973,202,128,2.68818617,0.10643107,1202.65633,3008656476 +2,4974,203,128,2.07864928,0.106279099,1204.37604,3008656476 +2,4975,204,128,2.1970818,0.106367712,1203.37269,3008656476 +2,4976,205,128,2.08391929,0.106275764,1204.41383,3008656476 +2,4977,206,128,1.74023008,0.106353121,1203.53779,3008656476 +2,4978,207,128,1.88193393,0.106202447,1205.2453,3008656476 +2,4979,208,128,1.5554359,0.106351979,1203.55071,3008656476 +2,4980,209,128,1.84183598,0.112183474,1140.98802,3008656476 +2,4981,210,128,1.71930468,0.106179011,1205.51132,3008656476 +2,4982,211,128,1.96990633,0.106408776,1202.9083,3008656476 +2,4983,212,128,2.11438751,0.106288992,1204.26394,3008656476 +2,4984,213,128,1.95197201,0.106375986,1203.27909,3008656476 +2,4985,214,128,1.53191125,0.106344385,1203.63666,3008656476 +2,4986,215,128,1.80333698,0.106365662,1203.39589,3008656476 +2,4987,216,128,2.08141112,0.106282504,1204.33745,3008656476 +2,4988,217,128,2.18080664,0.106319911,1203.91372,3008656476 +2,4989,218,128,1.67528701,0.117075656,1093.31012,3008656476 +2,4990,219,128,2.4416852,0.105117773,1217.68181,3008656476 +2,4991,220,128,1.97345638,0.10643643,1202.59577,3008656476 +2,4992,221,128,1.85488296,0.106330799,1203.79045,3008656476 +2,4993,222,128,2.16181469,0.106379279,1203.24185,3008656476 +2,4994,223,128,1.9195081,0.106238992,1204.83071,3008656476 +2,4995,224,128,2.03718138,0.106312774,1203.99455,3008656476 +2,4996,225,128,2.07362509,0.106239339,1204.82677,3008656476 +2,4997,226,128,2.15531325,0.106956537,1196.7478,3008656476 +2,4998,227,128,2.51385498,0.106335248,1203.74008,3008656476 +2,4999,228,128,2.01388049,0.118590784,1079.34188,3008656476 +2,5000,229,128,2.03931594,0.106319971,1203.91304,3008656476 +2,5001,230,128,2.2110548,0.106450851,1202.43285,3008656476 +2,5002,231,128,2.45778108,0.106225579,1204.98284,3008656476 +2,5003,232,128,2.04250193,0.106265411,1204.53117,3008656476 +2,5004,233,128,2.33692884,0.106331828,1203.7788,3008656476 +2,5005,234,128,2.30622458,0.106321551,1203.89515,3008656476 +2,5006,235,128,1.93947506,0.106206581,1205.19839,3008656476 +2,5007,236,128,2.54850936,0.106346663,1203.61087,3008656476 +2,5008,237,128,2.11006093,0.106264205,1204.54484,3008656476 +2,5009,238,128,2.49913859,0.118422302,1080.87749,3008656476 +2,5010,239,128,2.58942008,0.106316826,1203.94866,3008656476 +2,5011,240,128,2.5296762,0.106211015,1205.14807,3008656476 +2,5012,241,128,1.97579384,0.106235656,1204.86854,3008656476 +2,5013,242,128,2.24977231,0.106164974,1205.67071,3008656476 +2,5014,243,128,2.28729367,0.106176054,1205.5449,3008656476 +2,5015,244,128,2.56472468,0.106229267,1204.94101,3008656476 +2,5016,245,128,1.92665923,0.106211857,1205.13852,3008656476 +2,5017,246,128,2.3138299,0.106240918,1204.80887,3008656476 +2,5018,247,128,2.28783846,0.106294938,1204.19657,3008656476 +2,5019,248,128,2.38080788,0.121077613,1057.17314,3008656476 +2,5020,249,128,1.31189322,0.106147856,1205.86515,3008656476 +2,5021,250,128,1.78083086,0.106241654,1204.80052,3008656476 +2,5022,251,128,2.63343358,0.106182052,1205.4768,3008656476 +2,5023,252,128,2.32029223,0.106268792,1204.49285,3008656476 +2,5024,253,128,2.0308466,0.106096883,1206.44449,3008656476 +2,5025,254,128,2.45278358,0.106118339,1206.20056,3008656476 +2,5026,255,128,2.59487247,0.106222431,1205.01855,3008656476 +2,5027,256,128,2.20507145,0.106251651,1204.68716,3008656476 +2,5028,257,128,2.5259378,0.106322139,1203.8885,3008656476 +2,5029,258,128,2.09242535,0.116364563,1099.99124,3008656476 +2,5030,259,128,2.18175793,0.106289076,1204.26299,3008656476 +2,5031,260,128,2.61836696,0.10623699,1204.85341,3008656476 +2,5032,261,128,2.30829358,0.106194702,1205.3332,3008656476 +2,5033,262,128,2.66350007,0.106266943,1204.51381,3008656476 +2,5034,263,128,1.78316343,0.106202143,1205.24875,3008656476 +2,5035,264,128,1.94768333,0.106214717,1205.10607,3008656476 +2,5036,265,128,1.94024026,0.106230946,1204.92196,3008656476 +2,5037,266,128,2.02019072,0.106307325,1204.05626,3008656476 +2,5038,267,128,1.51155925,0.118811577,1077.33609,3008656476 +2,5039,268,128,1.63000286,0.104537019,1224.44662,3008656476 +2,5040,269,128,2.19282579,0.106190027,1205.38626,3008656476 +2,5041,270,128,2.67057395,0.106206085,1205.20401,3008656476 +2,5042,271,128,1.93716323,0.106247732,1204.7316,3008656476 +2,5043,272,128,2.11487055,0.106301937,1204.11729,3008656476 +2,5044,273,128,2.57094049,0.106144398,1205.90443,3008656476 +2,5045,274,128,1.72179198,0.106334209,1203.75184,3008656476 +2,5046,275,128,2.05443907,0.10626509,1204.53481,3008656476 +2,5047,276,128,2.32866979,0.106236601,1204.85782,3008656476 +2,5048,277,128,2.53557205,0.118339621,1081.63267,3008656476 +2,5049,278,128,1.98435569,0.106293704,1204.21055,3008656476 +2,5050,279,128,1.88170516,0.106320002,1203.91269,3008656476 +2,5051,280,128,2.0573988,0.10627534,1204.41864,3008656476 +2,5052,281,128,1.85633409,0.106229216,1204.94159,3008656476 +2,5053,282,128,1.53072286,0.106447217,1202.4739,3008656476 +2,5054,283,128,1.90833116,0.106348697,1203.58785,3008656476 +2,5055,284,128,1.7283535,0.106277564,1204.39343,3008656476 +2,5056,285,128,1.76687384,0.106255788,1204.64026,3008656476 +2,5057,286,128,2.07405066,0.106211118,1205.1469,3008656476 +2,5058,287,128,1.65291739,0.119519813,1070.95214,3008656476 +2,5059,288,128,1.79126477,0.106140787,1205.94546,3008656476 +2,5060,289,128,2.15275145,0.106263879,1204.54854,3008656476 +2,5061,290,128,1.88748264,0.106220626,1205.03903,3008656476 +2,5062,291,128,2.5296731,0.106164753,1205.67322,3008656476 +2,5063,292,128,2.1079216,0.106327435,1203.82853,3008656476 +2,5064,293,128,1.76097727,0.106201973,1205.25068,3008656476 +2,5065,294,128,1.75692141,0.106424792,1202.72727,3008656476 +2,5066,295,128,2.01376963,0.10630593,1204.07206,3008656476 +2,5067,296,128,2.5479629,0.106369851,1203.34849,3008656476 +2,5068,297,128,1.91890264,0.120042062,1066.29291,3008656476 +2,5069,298,128,2.10466886,0.106350489,1203.56757,3008656476 +2,5070,299,128,2.19403982,0.106294453,1204.20207,3008656476 +2,5071,300,128,2.0932498,0.106170438,1205.60866,3008656476 +2,5072,301,128,2.06303144,0.106270247,1204.47636,3008656476 +2,5073,302,128,2.13306308,0.106293086,1204.21755,3008656476 +2,5074,303,128,2.19110203,0.106323886,1203.86871,3008656476 +2,5075,304,128,1.89101338,0.106245789,1204.75363,3008656476 +2,5076,305,128,2.09463191,0.10625192,1204.68411,3008656476 +2,5077,306,128,1.96031034,0.106201672,1205.25409,3008656476 +2,5078,307,128,1.69206572,0.117332049,1090.92103,3008656476 +2,5079,308,128,2.50342178,0.106280637,1204.35861,3008656476 +2,5080,309,128,2.46464682,0.106338784,1203.70005,3008656476 +2,5081,310,128,1.99510038,0.106395181,1203.06201,3008656476 +2,5082,311,128,1.74428129,0.106197274,1205.30401,3008656476 +2,5083,312,128,1.90426481,0.10628457,1204.31404,3008656476 +2,5084,313,128,2.00557208,0.106240343,1204.81539,3008656476 +2,5085,314,128,1.50529337,0.10631299,1203.9921,3008656476 +2,5086,315,128,1.91302562,0.106253648,1204.66452,3008656476 +2,5087,316,128,1.97433829,0.11881006,1077.34985,3008656476 +2,5088,317,128,1.96069407,0.104562144,1224.1524,3008656476 +2,5089,318,128,2.30564833,0.106166472,1205.6537,3008656476 +2,5090,319,128,2.22937131,0.106229369,1204.93985,3008656476 +2,5091,320,128,2.53367448,0.106269622,1204.48344,3008656476 +2,5092,321,128,1.91987133,0.10626416,1204.54535,3008656476 +2,5093,322,128,2.19105458,0.106349623,1203.57737,3008656476 +2,5094,323,128,2.17734385,0.106312369,1203.99913,3008656476 +2,5095,324,128,1.6803354,0.106282827,1204.33379,3008656476 +2,5096,325,128,2.39515066,0.106323787,1203.86984,3008656476 +2,5097,326,128,2.25052905,0.118402236,1081.06067,3008656476 +2,5098,327,128,2.31840014,0.106344309,1203.63752,3008656476 +2,5099,328,128,2.37886596,0.106260064,1204.59178,3008656476 +2,5100,329,128,2.08626556,0.106247363,1204.73578,3008656476 +2,5101,330,128,3.01560783,0.106251185,1204.69245,3008656476 +2,5102,331,128,2.29717827,0.10626589,1204.52574,3008656476 +2,5103,332,128,1.72527933,0.10628139,1204.35007,3008656476 +2,5104,333,128,2.37707734,0.10637689,1203.26887,3008656476 +2,5105,334,128,2.14753795,0.106383046,1203.19924,3008656476 +2,5106,335,128,2.33846784,0.106287174,1204.28454,3008656476 +2,5107,336,128,2.17245293,0.118341957,1081.61132,3008656476 +2,5108,337,128,2.31797576,0.106246229,1204.74864,3008656476 +2,5109,338,128,1.86100221,0.106213636,1205.11833,3008656476 +2,5110,339,128,2.32148194,0.10627976,1204.36855,3008656476 +2,5111,340,128,2.14727354,0.106435431,1202.60705,3008656476 +2,5112,341,128,1.92458558,0.1062566,1204.63105,3008656476 +2,5113,342,128,2.02227354,0.106335353,1203.73889,3008656476 +2,5114,343,128,1.9601866,0.106267623,1204.5061,3008656476 +2,5115,344,128,2.25198174,0.106279793,1204.36817,3008656476 +2,5116,345,128,1.85631025,0.106256138,1204.63629,3008656476 +2,5117,346,128,1.67388296,0.121058241,1057.34231,3008656476 +2,5118,347,128,2.31324816,0.106229681,1204.93631,3008656476 +2,5119,348,128,2.06014824,0.10625668,1204.63015,3008656476 +2,5120,349,128,2.45384836,0.106246863,1204.74145,3008656476 +2,5121,350,128,2.33526897,0.106322005,1203.89001,3008656476 +2,5122,351,128,2.29067206,0.106268195,1204.49962,3008656476 +2,5123,352,128,2.49144387,0.106275529,1204.41649,3008656476 +2,5124,353,128,2.2787044,0.106385039,1203.1767,3008656476 +2,5125,354,128,2.02208114,0.106139106,1205.96456,3008656476 +2,5126,355,128,2.23659301,0.106253747,1204.6634,3008656476 +2,5127,356,128,2.52914333,0.116732456,1096.52452,3008656476 +2,5128,357,128,2.01582813,0.106307206,1204.05761,3008656476 +2,5129,358,128,1.57354128,0.106293554,1204.21225,3008656476 +2,5130,359,128,1.72832251,0.106351133,1203.56029,3008656476 +2,5131,360,128,2.15944648,0.106289332,1204.26009,3008656476 +2,5132,361,128,2.06528497,0.106234343,1204.88343,3008656476 +2,5133,362,128,2.06261134,0.106280576,1204.3593,3008656476 +2,5134,363,128,2.24415922,0.106190413,1205.38188,3008656476 +2,5135,364,128,2.14012218,0.106223391,1205.00766,3008656476 +2,5136,365,128,2.18157554,0.116906601,1094.89113,3008656476 +2,5137,366,128,2.3736496,0.105218589,1216.51508,3008656476 +2,5138,367,128,2.44689441,0.10620629,1205.20169,3008656476 +2,5139,368,128,1.87843573,0.10639045,1203.11551,3008656476 +2,5140,369,128,2.29022813,0.106247283,1204.73669,3008656476 +2,5141,370,128,2.1097095,0.106279067,1204.3764,3008656476 +2,5142,371,128,2.00130725,0.10618463,1205.44753,3008656476 +2,5143,372,128,2.31323171,0.106266978,1204.51341,3008656476 +2,5144,373,128,2.4964335,0.106216844,1205.08194,3008656476 +2,5145,374,128,2.35220027,0.106199567,1205.27798,3008656476 +2,5146,375,128,1.62239015,0.118013193,1084.6245,3008656476 +2,5147,376,128,2.65622401,0.106172223,1205.5884,3008656476 +2,5148,377,128,1.64473605,0.106403793,1202.96463,3008656476 +2,5149,378,128,2.29751754,0.106146261,1205.88327,3008656476 +2,5150,379,128,1.6406132,0.106202335,1205.24657,3008656476 +2,5151,380,128,1.95366383,0.106207704,1205.18564,3008656476 +2,5152,381,128,1.87513459,0.106226181,1204.97601,3008656476 +2,5153,382,128,1.42396975,0.106234828,1204.87793,3008656476 +2,5154,383,128,1.74313772,0.106261668,1204.5736,3008656476 +2,5155,384,128,2.71456242,0.106175308,1205.55337,3008656476 +2,5156,385,128,2.47286105,0.120392151,1063.19223,3008656476 +2,5157,386,128,1.92579257,0.106277044,1204.39932,3008656476 +2,5158,387,128,1.82761681,0.106170657,1205.60618,3008656476 +2,5159,388,128,2.35129547,0.106309661,1204.0298,3008656476 +2,5160,389,128,2.73321724,0.106267701,1204.50521,3008656476 +2,5161,390,128,2.36285901,0.10640394,1202.96297,3008656476 +2,5162,391,128,2.63136101,0.106213339,1205.1217,3008656476 +2,5163,392,128,1.90374637,0.106333069,1203.76475,3008656476 +2,5164,393,128,2.35474682,0.106315625,1203.96226,3008656476 +2,5165,394,128,1.85383427,0.10628787,1204.27665,3008656476 +2,5166,395,128,2.18688273,0.119914774,1067.42477,3008656476 +2,5167,396,128,2.37395906,0.106285064,1204.30844,3008656476 +2,5168,397,128,2.72442412,0.10638066,1203.22623,3008656476 +2,5169,398,128,2.15053821,0.10633324,1203.76281,3008656476 +2,5170,399,128,2.56109333,0.106235853,1204.86631,3008656476 +2,5171,400,128,2.14745021,0.106336071,1203.73076,3008656476 +2,5172,401,128,2.40410423,0.099392496,1287.82358,3008656476 +2,5173,402,128,2.05675149,0.106209254,1205.16805,3008656476 +2,5174,403,128,2.0152297,0.106486459,1202.03077,3008656476 +2,5175,404,128,2.22100544,0.106307059,1204.05927,3008656476 +2,5176,405,128,2.12713695,0.11394,1123.39828,3008656476 +2,5177,406,128,2.10280132,0.106181822,1205.47941,3008656476 +2,5178,407,128,1.53065479,0.106299407,1204.14595,3008656476 +2,5179,408,128,1.89381683,0.106256179,1204.63583,3008656476 +2,5180,409,128,2.42634535,0.106278127,1204.38705,3008656476 +2,5181,410,128,1.68041205,0.106243528,1204.77927,3008656476 +2,5182,411,128,2.3482337,0.106221331,1205.03103,3008656476 +2,5183,412,128,1.68298638,0.106266763,1204.51585,3008656476 +2,5184,413,128,1.89266276,0.106288976,1204.26412,3008656476 +2,5185,414,128,1.84370685,0.11750293,1089.33454,3008656476 +2,5186,415,128,2.57355881,0.105299808,1215.57677,3008656476 +2,5187,416,128,2.01098514,0.106304765,1204.08525,3008656476 +2,5188,417,128,1.72626483,0.106359949,1203.46052,3008656476 +2,5189,418,128,1.97361815,0.106273099,1204.44403,3008656476 +2,5190,419,128,1.32413793,0.106254203,1204.65823,3008656476 +2,5191,420,128,1.29269457,0.106241054,1204.80732,3008656476 +2,5192,421,128,2.14581704,0.106227999,1204.95539,3008656476 +2,5193,422,128,1.87007725,0.106421541,1202.76402,3008656476 +2,5194,423,128,1.97593844,0.106404445,1202.95726,3008656476 +2,5195,424,128,2.50371647,0.120046531,1066.25322,3008656476 +2,5196,425,128,2.60273194,0.106285162,1204.30733,3008656476 +2,5197,426,128,2.99502301,0.106351344,1203.5579,3008656476 +2,5198,427,128,1.970052,0.106216579,1205.08494,3008656476 +2,5199,428,128,1.50199008,0.106363362,1203.42191,3008656476 +2,5200,429,128,1.31155622,0.106167871,1205.63781,3008656476 +2,5201,430,128,1.55103827,0.10638511,1203.1759,3008656476 +2,5202,431,128,1.47826993,0.106250047,1204.70535,3008656476 +2,5203,432,128,1.85367882,0.106299354,1204.14655,3008656476 +2,5204,433,128,1.40225124,0.106271017,1204.46763,3008656476 +2,5205,434,128,2.09148335,0.12047635,1062.44919,3008656476 +2,5206,435,128,2.3464551,0.10623553,1204.86997,3008656476 +2,5207,436,128,2.52680969,0.106162379,1205.70018,3008656476 +2,5208,437,128,1.70887363,0.106345273,1203.62661,3008656476 +2,5209,438,128,1.71669567,0.106249775,1204.70843,3008656476 +2,5210,439,128,2.1443181,0.106218486,1205.06331,3008656476 +2,5211,440,128,2.00571704,0.106152526,1205.8121,3008656476 +2,5212,441,128,2.00359988,0.106276532,1204.40513,3008656476 +2,5213,442,128,1.86074722,0.106335491,1203.73733,3008656476 +2,5214,443,128,1.70949066,0.106284646,1204.31318,3008656476 +2,5215,444,128,1.68292654,0.120041947,1066.29393,3008656476 +2,5216,445,128,1.85047662,0.10624263,1204.78945,3008656476 +2,5217,446,128,2.07612062,0.106225016,1204.98923,3008656476 +2,5218,447,128,2.62663341,0.106158393,1205.74546,3008656476 +2,5219,448,128,2.08164477,0.106273155,1204.4434,3008656476 +2,5220,449,128,2.13873124,0.106250891,1204.69578,3008656476 +2,5221,450,128,2.00124145,0.106268692,1204.49398,3008656476 +2,5222,451,128,2.44551468,0.106349213,1203.58201,3008656476 +2,5223,452,128,1.85015404,0.10621414,1205.11261,3008656476 +2,5224,453,128,2.08275747,0.106260819,1204.58322,3008656476 +2,5225,454,128,2.52274752,0.114555707,1117.36031,3008656476 +2,5226,455,128,2.15052414,0.10621795,1205.06939,3008656476 +2,5227,456,128,2.35317707,0.106194342,1205.33729,3008656476 +2,5228,457,128,2.30853748,0.106365824,1203.39405,3008656476 +2,5229,458,128,2.25929976,0.106191748,1205.36673,3008656476 +2,5230,459,128,1.55459428,0.106258656,1204.60775,3008656476 +2,5231,460,128,2.37099242,0.106297997,1204.16192,3008656476 +2,5232,461,128,2.10336018,0.10632337,1203.87456,3008656476 +2,5233,462,128,2.16402841,0.106158188,1205.74778,3008656476 +2,5234,463,128,1.7592212,0.116792744,1095.9585,3008656476 +2,5235,464,128,1.73095977,0.104571915,1224.03802,3008656476 +2,5236,465,128,1.54330266,0.106258443,1204.61016,3008656476 +2,5237,466,128,1.61948895,0.106141874,1205.93311,3008656476 +2,5238,467,128,1.90517414,0.106268494,1204.49623,3008656476 +2,5239,468,128,2.37988234,0.10629245,1204.22476,3008656476 +2,5240,469,128,2.31884861,0.106237923,1204.84283,3008656476 +2,5241,470,128,2.42746663,0.106230149,1204.931,3008656476 +2,5242,471,128,1.52608752,0.106454449,1202.39221,3008656476 +2,5243,472,128,2.83833098,0.106246294,1204.7479,3008656476 +2,5244,473,128,2.01565981,0.119259814,1073.28693,3008656476 +2,5245,474,128,1.94598293,0.106373419,1203.30813,3008656476 +2,5246,475,128,1.44867957,0.106383003,1203.19973,3008656476 +2,5247,476,128,1.82369924,0.106386763,1203.1572,3008656476 +2,5248,477,128,2.08229446,0.106328083,1203.8212,3008656476 +2,5249,478,128,2.03485084,0.106438815,1202.56882,3008656476 +2,5250,479,128,2.50971437,0.106352107,1203.54926,3008656476 +2,5251,480,128,2.05768967,0.106250527,1204.69991,3008656476 +2,5252,481,128,1.71935344,0.106337106,1203.71905,3008656476 +2,5253,482,128,1.66623318,0.106406312,1202.93616,3008656476 +2,5254,483,128,2.19490027,0.120530647,1061.97057,3008656476 +2,5255,484,128,2.08450365,0.106321242,1203.89865,3008656476 +2,5256,485,128,1.7437129,0.106370814,1203.3376,3008656476 +2,5257,486,128,1.69444585,0.106218442,1205.06381,3008656476 +2,5258,487,128,2.15320587,0.106300303,1204.1358,3008656476 +2,5259,488,128,1.80167091,0.106192392,1205.35942,3008656476 +2,5260,489,128,2.60540152,0.106221364,1205.03066,3008656476 +2,5261,490,128,2.73412395,0.106228935,1204.94477,3008656476 +2,5262,491,128,2.60920453,0.106245263,1204.75959,3008656476 +2,5263,492,128,2.06903458,0.106138118,1205.97578,3008656476 +2,5264,493,128,2.11804295,0.120168231,1065.17337,3008656476 +2,5265,494,128,2.23255968,0.106254444,1204.6555,3008656476 +2,5266,495,128,2.17781115,0.106142152,1205.92995,3008656476 +2,5267,496,128,2.71238804,0.106219133,1205.05597,3008656476 +2,5268,497,128,2.57839799,0.106321172,1203.89945,3008656476 +2,5269,498,128,2.48945832,0.106232806,1204.90087,3008656476 +2,5270,499,128,2.39048314,0.106251901,1204.68433,3008656476 +2,5271,500,128,2.65275884,0.106297812,1204.16401,3008656476 +2,5272,501,128,2.544559,0.106300187,1204.13711,3008656476 +2,5273,502,128,1.99628544,0.106145386,1205.89321,3008656476 +2,5274,503,128,2.4462564,0.115158955,1111.50713,3008656476 +2,5275,504,128,2.52788305,0.106220229,1205.04353,3008656476 +2,5276,505,128,2.59168339,0.106295659,1204.1884,3008656476 +2,5277,506,128,2.71869206,0.106130196,1206.0658,3008656476 +2,5278,507,128,2.1230514,0.106258079,1204.61429,3008656476 +2,5279,508,128,2.49255729,0.106219969,1205.04648,3008656476 +2,5280,509,128,2.40778065,0.106187716,1205.4125,3008656476 +2,5281,510,128,2.59394813,0.107064188,1195.54449,3008656476 +2,5282,511,128,2.38736224,0.10620031,1205.26955,3008656476 +2,5283,512,128,2.66562915,0.116620243,1097.5796,3008656476 +2,5284,513,128,2.49229622,0.104636278,1223.2851,3008656476 +2,5285,514,128,2.42094636,0.106335901,1203.73269,3008656476 +2,5286,515,128,2.6056819,0.106263391,1204.55407,3008656476 +2,5287,516,128,2.3970232,0.106666403,1200.00297,3008656476 +2,5288,517,128,2.60572338,0.106636364,1200.341,3008656476 +2,5289,518,128,2.6722784,0.10642566,1202.71746,3008656476 +2,5290,519,128,2.38578749,0.106530159,1201.53768,3008656476 +2,5291,520,128,2.05356717,0.106438558,1202.57172,3008656476 +2,5292,521,128,2.09227514,0.106377195,1203.26542,3008656476 +2,5293,522,128,1.68092215,0.119275779,1073.14327,3008656476 +2,5294,523,128,2.17664742,0.106261892,1204.57106,3008656476 +2,5295,524,128,1.79723656,0.106320218,1203.91025,3008656476 +2,5296,525,128,2.02033091,0.126625362,1010.85595,3008656476 +2,5297,526,128,2.42186594,0.14364598,891.079583,3008656476 +2,5298,527,128,2.07111382,0.106498414,1201.89583,3008656476 +2,5299,528,128,2.41471982,0.106383977,1203.18871,3008656476 +2,5300,529,128,1.94328237,0.106365567,1203.39696,3008656476 +2,5301,530,128,1.3281914,0.106425075,1202.72408,3008656476 +2,5302,531,128,2.41475391,0.106286832,1204.28841,3008656476 +2,5303,532,128,2.58331847,0.109313037,1170.94908,3008656476 +2,5304,533,128,2.3567307,0.106262812,1204.56063,3008656476 +2,5305,534,128,2.36275911,0.106411448,1202.8781,3008656476 +2,5306,535,128,2.16789579,0.106274525,1204.42787,3008656476 +2,5307,536,128,2.17592931,0.10627574,1204.4141,3008656476 +2,5308,537,128,2.28430939,0.106435662,1202.60444,3008656476 +2,5309,538,128,1.79968822,0.106393417,1203.08195,3008656476 +2,5310,539,128,1.97584462,0.093297607,1371.95373,3008656476 +2,5311,540,128,1.97064662,0.106520852,1201.64266,3008656476 +2,5312,541,128,2.08984923,0.121301996,1055.21759,3008656476 +2,5313,542,128,2.28181624,0.106383728,1203.19153,3008656476 +2,5314,543,128,2.60940719,0.106423881,1202.73757,3008656476 +2,5315,544,128,2.13610888,0.106284193,1204.31831,3008656476 +2,5316,545,128,1.74324322,0.106281637,1204.34728,3008656476 +2,5317,546,128,1.85134125,0.106243599,1204.77846,3008656476 +2,5318,547,128,2.3636117,0.106383184,1203.19768,3008656476 +2,5319,548,128,2.46405268,0.106273962,1204.43425,3008656476 +2,5320,549,128,2.28249955,0.106463581,1202.28907,3008656476 +2,5321,550,128,2.1240716,0.106308889,1204.03854,3008656476 +2,5322,551,128,1.72519517,0.11972303,1069.13432,3008656476 +2,5323,552,128,2.10681129,0.106077824,1206.66125,3008656476 +2,5324,553,128,2.33952475,0.10643316,1202.63271,3008656476 +2,5325,554,128,2.87619638,0.106364742,1203.40629,3008656476 +2,5326,555,128,2.6517899,0.106412508,1202.86611,3008656476 +2,5327,556,128,1.67662752,0.106382242,1203.20833,3008656476 +2,5328,557,128,2.150141,0.106263766,1204.54982,3008656476 +2,5329,558,128,2.69231009,0.106385555,1203.17086,3008656476 +2,5330,559,128,2.65611362,0.106491596,1201.97278,3008656476 +2,5331,560,128,2.52696204,0.106328191,1203.81997,3008656476 +2,5332,561,128,2.15320945,0.118585466,1079.39029,3008656476 +2,5333,562,128,2.50529242,0.106377226,1203.26507,3008656476 +2,5334,563,128,2.72422123,0.106336977,1203.72051,3008656476 +2,5335,564,128,2.22728753,0.106372404,1203.31961,3008656476 +2,5336,565,128,2.16084385,0.106349796,1203.57542,3008656476 +2,5337,566,128,1.78233492,0.106352337,1203.54666,3008656476 +2,5338,567,128,2.38943553,0.106272658,1204.44903,3008656476 +2,5339,568,128,2.31154251,0.106238373,1204.83773,3008656476 +2,5340,569,128,2.60915565,0.106297075,1204.17236,3008656476 +2,5341,570,128,3.10209227,0.106363909,1203.41572,3008656476 +2,5342,571,128,2.01576066,0.117469456,1089.64495,3008656476 +2,5343,572,128,1.88178265,0.106403506,1202.96788,3008656476 +2,5344,573,128,2.5461514,0.106450205,1202.44015,3008656476 +2,5345,574,128,2.13497448,0.106443385,1202.51719,3008656476 +2,5346,575,128,2.6037848,0.106444482,1202.50479,3008656476 +2,5347,576,128,1.79697251,0.106231998,1204.91003,3008656476 +2,5348,577,128,2.60330558,0.106350431,1203.56823,3008656476 +2,5349,578,128,2.10735273,0.106305474,1204.07722,3008656476 +2,5350,579,128,2.2374115,0.106206157,1205.2032,3008656476 +2,5351,580,128,2.05431747,0.119083564,1074.87545,3008656476 +2,5352,581,128,2.56638908,0.104631869,1223.33665,3008656476 +2,5353,582,128,2.37097549,0.106354115,1203.52654,3008656476 +2,5354,583,128,2.06084323,0.106316757,1203.94944,3008656476 +2,5355,584,128,2.47188377,0.106184313,1205.45113,3008656476 +2,5356,585,128,2.04894376,0.093170141,1373.8307,3008656476 +2,5357,586,128,2.12022305,0.106343694,1203.64448,3008656476 +2,5358,587,128,2.50449681,0.1062506,1204.69908,3008656476 +2,5359,588,128,2.39881158,0.106309542,1204.03115,3008656476 +2,5360,589,128,2.73863626,0.106376552,1203.27269,3008656476 +2,5361,590,128,2.51368618,0.119984238,1066.80679,3008656476 +2,5362,591,128,2.3734889,0.106141745,1205.93457,3008656476 +2,5363,592,128,2.1812613,0.106285463,1204.30392,3008656476 +2,5364,593,128,1.88688385,0.106300992,1204.12799,3008656476 +2,5365,594,128,1.89952755,0.106393107,1203.08546,3008656476 +2,5366,595,128,2.34857416,0.106275478,1204.41707,3008656476 +2,5367,596,128,2.53342891,0.106361958,1203.43779,3008656476 +2,5368,597,128,2.40783954,0.106185504,1205.43761,3008656476 +2,5369,598,128,2.08258748,0.106394222,1203.07285,3008656476 +2,5370,599,128,2.45634818,0.106272592,1204.44978,3008656476 +2,5371,600,128,2.26455903,0.11872226,1078.14659,3008656476 +2,5372,601,128,2.0504086,0.106345291,1203.6264,3008656476 +2,5373,602,128,2.37150598,0.106263974,1204.54746,3008656476 +2,5374,603,128,1.79908133,0.106275034,1204.4221,3008656476 +2,5375,604,128,2.57971549,0.106255266,1204.64618,3008656476 +2,5376,605,128,1.71461463,0.106160894,1205.71705,3008656476 +2,5377,606,128,1.82574785,0.106246009,1204.75114,3008656476 +2,5378,607,128,1.76657355,0.106460572,1202.32305,3008656476 +2,5379,608,128,2.37981367,0.106401312,1202.99268,3008656476 +2,5380,609,128,1.74370027,0.106339131,1203.69613,3008656476 +2,5381,610,128,1.97000933,0.118983682,1075.77777,3008656476 +2,5382,611,128,1.78128409,0.106375566,1203.28384,3008656476 +2,5383,612,128,1.96838593,0.106461084,1202.31727,3008656476 +2,5384,613,128,2.02355528,0.106437741,1202.58095,3008656476 +2,5385,614,128,2.37766933,0.106351296,1203.55844,3008656476 +2,5386,615,128,1.65659082,0.106369084,1203.35717,3008656476 +2,5387,616,128,2.3503778,0.106303326,1204.10155,3008656476 +2,5388,617,128,2.39941478,0.106276321,1204.40752,3008656476 +2,5389,618,128,2.04169178,0.106289829,1204.25445,3008656476 +2,5390,619,128,2.23448181,0.106299763,1204.14191,3008656476 +2,5391,620,128,2.08454919,0.108766193,1176.83626,3008656476 +2,5392,621,128,1.92505002,0.106308181,1204.04656,3008656476 +2,5393,622,128,2.22044778,0.106381478,1203.21697,3008656476 +2,5394,623,128,2.28296471,0.106227618,1204.95971,3008656476 +2,5395,624,128,2.34428692,0.106209785,1205.16203,3008656476 +2,5396,625,128,2.48159933,0.106235441,1204.87098,3008656476 +2,5397,626,128,2.0425837,0.1063485,1203.59008,3008656476 +2,5398,627,128,1.87391722,0.106364145,1203.41305,3008656476 +2,5399,628,128,1.9419142,0.106356363,1203.5011,3008656476 +2,5400,629,128,2.84112239,0.121316128,1055.09467,3008656476 +2,5401,630,128,2.59942722,0.106407733,1202.92009,3008656476 +2,5402,631,128,1.84579194,0.106364471,1203.40936,3008656476 +2,5403,632,128,2.75789738,0.106440717,1202.54733,3008656476 +2,5404,633,128,2.70017409,0.106386984,1203.1547,3008656476 +2,5405,634,128,2.50664854,0.106373976,1203.30183,3008656476 +2,5406,635,128,1.94868982,0.106342636,1203.65645,3008656476 +2,5407,636,128,2.24252987,0.106389404,1203.12733,3008656476 +2,5408,637,128,1.96307039,0.10625752,1204.62062,3008656476 +2,5409,638,128,2.15068626,0.106260868,1204.58267,3008656476 +2,5410,639,128,2.65031385,0.118990997,1075.71164,3008656476 +2,5411,640,128,2.15644574,0.106296753,1204.17601,3008656476 +2,5412,641,128,2.34323668,0.106249164,1204.71536,3008656476 +2,5413,642,128,1.83091557,0.106409673,1202.89816,3008656476 +2,5414,643,128,2.05156374,0.106318383,1203.93103,3008656476 +2,5415,644,128,2.43876576,0.106211121,1205.14687,3008656476 +2,5416,645,128,3.07421637,0.106274836,1204.42435,3008656476 +2,5417,646,128,2.34183383,0.10632458,1203.86086,3008656476 +2,5418,647,128,2.23098779,0.106257328,1204.6228,3008656476 +2,5419,648,128,2.42428303,0.106346724,1203.61018,3008656476 +2,5420,649,128,2.223032,0.119264282,1073.24672,3008656476 +2,5421,650,128,1.91268992,0.106278401,1204.38395,3008656476 +2,5422,651,128,2.26883268,0.106239606,1204.82375,3008656476 +2,5423,652,128,1.5226891,0.106334592,1203.74751,3008656476 +2,5424,653,128,1.85072982,0.10622771,1204.95867,3008656476 +2,5425,654,128,2.73308372,0.10624331,1204.78174,3008656476 +2,5426,655,128,2.72356796,0.106377045,1203.26711,3008656476 +2,5427,656,128,2.44271493,0.106225908,1204.97911,3008656476 +2,5428,657,128,2.05247474,0.10633114,1203.78659,3008656476 +2,5429,658,128,2.32690573,0.106313391,1203.98756,3008656476 +2,5430,659,128,2.43446302,0.120720724,1060.29848,3008656476 +2,5431,660,128,2.23176932,0.106392996,1203.08671,3008656476 +2,5432,661,128,2.52135897,0.106336157,1203.72979,3008656476 +2,5433,662,128,2.13050842,0.106379993,1203.23377,3008656476 +2,5434,663,128,2.15245914,0.106387362,1203.15043,3008656476 +2,5435,664,128,1.73030448,0.106314057,1203.98002,3008656476 +2,5436,665,128,2.77999592,0.106318331,1203.93162,3008656476 +2,5437,666,128,2.61329484,0.106216764,1205.08284,3008656476 +2,5438,667,128,2.10703921,0.106254405,1204.65594,3008656476 +2,5439,668,128,1.88746119,0.106335294,1203.73956,3008656476 +2,5440,669,128,1.86949134,0.109569049,1168.21311,3008656476 +2,5441,670,128,2.07727337,0.106259764,1204.59518,3008656476 +2,5442,671,128,1.73730922,0.106379002,1203.24498,3008656476 +2,5443,672,128,1.9722966,0.106300105,1204.13804,3008656476 +2,5444,673,128,2.02063203,0.106328015,1203.82197,3008656476 +2,5445,674,128,2.43599439,0.106290954,1204.24171,3008656476 +2,5446,675,128,2.27399158,0.106330075,1203.79864,3008656476 +2,5447,676,128,2.31322193,0.106398526,1203.02418,3008656476 +2,5448,677,128,2.57350445,0.106402492,1202.97934,3008656476 +2,5449,678,128,2.17577028,0.119872883,1067.79779,3008656476 +2,5450,679,128,2.14935923,0.106363699,1203.41809,3008656476 +2,5451,680,128,2.12879181,0.106295595,1204.18913,3008656476 +2,5452,681,128,2.40227246,0.1064803,1202.10029,3008656476 +2,5453,682,128,2.12907028,0.106355024,1203.51625,3008656476 +2,5454,683,128,2.03174758,0.106449152,1202.45204,3008656476 +2,5455,684,128,2.18832374,0.106418303,1202.80061,3008656476 +2,5456,685,128,1.92966866,0.106285927,1204.29867,3008656476 +2,5457,686,128,2.06935143,0.106357402,1203.48934,3008656476 +2,5458,687,128,1.70461094,0.106336005,1203.73151,3008656476 +2,5459,688,128,2.41739488,0.118924804,1076.31037,3008656476 +2,5460,689,128,1.72291565,0.106504546,1201.82663,3008656476 +2,5461,690,128,2.09077859,0.106450322,1202.43882,3008656476 +2,5462,691,128,2.36260986,0.106240938,1204.80864,3008656476 +2,5463,692,128,2.15058708,0.106312549,1203.99709,3008656476 +2,5464,693,128,1.92942762,0.106312309,1203.99981,3008656476 +2,5465,694,128,2.25245547,0.106315597,1203.96258,3008656476 +2,5466,695,128,2.17721033,0.106339051,1203.69703,3008656476 +2,5467,696,128,2.71237946,0.1063177,1203.93876,3008656476 +2,5468,697,128,2.59875894,0.10641147,1202.87785,3008656476 +2,5469,698,128,2.15557599,0.119864296,1067.87429,3008656476 +2,5470,699,128,2.24082947,0.106383866,1203.18996,3008656476 +2,5471,700,128,2.77888441,0.106458989,1202.34093,3008656476 +2,5472,701,128,2.31982827,0.106469692,1202.22006,3008656476 +2,5473,702,128,2.05753994,0.10643144,1202.65215,3008656476 +2,5474,703,128,1.79042161,0.106295487,1204.19035,3008656476 +2,5475,704,128,2.2368598,0.106477714,1202.12949,3008656476 +2,5476,705,128,2.48541021,0.106428402,1202.68648,3008656476 +2,5477,706,128,2.42822552,0.106561072,1201.18912,3008656476 +2,5478,707,128,2.30825639,0.106402981,1202.97382,3008656476 +2,5479,708,128,1.86783767,0.118949762,1076.08454,3008656476 +2,5480,709,128,2.60316277,0.10649664,1201.91585,3008656476 +2,5481,710,128,1.6585592,0.106382832,1203.20166,3008656476 +2,5482,711,128,2.28254056,0.106372778,1203.31538,3008656476 +2,5483,712,128,2.09891176,0.106332628,1203.76974,3008656476 +2,5484,713,128,2.34123039,0.106449146,1202.45211,3008656476 +2,5485,714,128,1.72328341,0.10632527,1203.85304,3008656476 +2,5486,715,128,1.33869672,0.106411352,1202.87918,3008656476 +2,5487,716,128,1.70616889,0.106421323,1202.76648,3008656476 +2,5488,717,128,2.39578342,0.106302868,1204.10674,3008656476 +2,5489,718,128,2.70783949,0.111146601,1151.63216,3008656476 +2,5490,719,128,2.61239386,0.106307825,1204.0506,3008656476 +2,5491,720,128,2.53528404,0.106233035,1204.89827,3008656476 +2,5492,721,128,2.52812719,0.106317884,1203.93668,3008656476 +2,5493,722,128,2.09709191,0.10637473,1203.2933,3008656476 +2,5494,723,128,2.6299994,0.106408196,1202.91486,3008656476 +2,5495,724,128,2.05368638,0.106320273,1203.90963,3008656476 +2,5496,725,128,2.29737639,0.106401723,1202.98804,3008656476 +2,5497,726,128,2.04355955,0.106257498,1204.62087,3008656476 +2,5498,727,128,2.60622835,0.120188552,1064.99328,3008656476 +2,5499,728,128,2.19674563,0.106649434,1200.1939,3008656476 +2,5500,729,128,2.28058457,0.106348156,1203.59398,3008656476 +2,5501,730,128,2.07903385,0.106196808,1205.3093,3008656476 +2,5502,731,128,2.6516273,0.10641773,1202.80709,3008656476 +2,5503,732,128,2.11530209,0.106267507,1204.50741,3008656476 +2,5504,733,128,1.84275079,0.10649827,1201.89746,3008656476 +2,5505,734,128,1.70340157,0.106322559,1203.88374,3008656476 +2,5506,735,128,1.51963782,0.106371132,1203.334,3008656476 +2,5507,736,128,1.65555441,0.106362235,1203.43466,3008656476 +2,5508,737,128,1.5682267,0.118757311,1077.82838,3008656476 +2,5509,738,128,1.68908286,0.106323541,1203.87262,3008656476 +2,5510,739,128,1.91458809,0.106331119,1203.78682,3008656476 +2,5511,740,128,1.80410743,0.106296294,1204.18121,3008656476 +2,5512,741,128,2.05789375,0.1063899,1203.12172,3008656476 +2,5513,742,128,2.07070112,0.106293135,1204.217,3008656476 +2,5514,743,128,2.16832805,0.106216899,1205.08131,3008656476 +2,5515,744,128,1.92485631,0.106489896,1201.99197,3008656476 +2,5516,745,128,1.35661852,0.106311926,1204.00415,3008656476 +2,5517,746,128,1.45210874,0.106255756,1204.64062,3008656476 +2,5518,747,128,1.76388502,0.118328082,1081.73815,3008656476 +2,5519,748,128,2.27119303,0.106210026,1205.15929,3008656476 +2,5520,749,128,2.45406127,0.106423837,1202.73807,3008656476 +2,5521,750,128,2.04578972,0.106374811,1203.29238,3008656476 +2,5522,751,128,2.229074,0.10622205,1205.02287,3008656476 +2,5523,752,128,1.801808,0.106246361,1204.74714,3008656476 +2,5524,753,128,1.96049464,0.106370712,1203.33875,3008656476 +2,5525,754,128,1.98736274,0.106190141,1205.38497,3008656476 +2,5526,755,128,1.98236072,0.106363043,1203.42552,3008656476 +2,5527,756,128,2.30917954,0.106318681,1203.92765,3008656476 +2,5528,757,128,1.53667676,0.120774765,1059.82405,3008656476 +2,5529,758,128,2.21059895,0.106261701,1204.57323,3008656476 +2,5530,759,128,1.84862828,0.106377821,1203.25834,3008656476 +2,5531,760,128,2.1850121,0.106328006,1203.82207,3008656476 +2,5532,761,128,2.31512833,0.106344847,1203.63143,3008656476 +2,5533,762,128,2.60265756,0.106191132,1205.37372,3008656476 +2,5534,763,128,2.311553,0.106382167,1203.20918,3008656476 +2,5535,764,128,2.64998412,0.106402084,1202.98396,3008656476 +2,5536,765,128,2.57492447,0.106244459,1204.76871,3008656476 +2,5537,766,128,2.18881273,0.106335969,1203.73192,3008656476 +2,5538,767,128,2.56866741,0.110883031,1154.3696,3008656476 +2,5539,768,128,2.01696968,0.106428877,1202.68111,3008656476 +2,5540,769,128,2.15077758,0.106237747,1204.84483,3008656476 +2,5541,770,128,1.91000736,0.10603277,1207.17397,3008656476 +2,5542,771,128,2.66671586,0.106369252,1203.35527,3008656476 +2,5543,772,128,1.9916954,0.106346548,1203.61218,3008656476 +2,5544,773,128,1.8934437,0.106398155,1203.02838,3008656476 +2,5545,774,128,2.06787586,0.106388616,1203.13625,3008656476 +2,5546,775,128,2.29500437,0.10635508,1203.51562,3008656476 +2,5547,776,128,2.51083255,0.118467138,1080.46841,3008656476 +2,5548,777,128,2.4289434,0.106423729,1202.73929,3008656476 +2,5549,778,128,2.18827176,0.10627935,1204.37319,3008656476 +2,5550,779,128,2.21584988,0.10643926,1202.56379,3008656476 +2,5551,780,128,1.97896194,0.10633239,1203.77243,3008656476 +2,5552,781,128,1.8991214,0.106454417,1202.39257,3008656476 +2,5553,782,128,1.76358163,0.106387192,1203.15235,3008656476 +2,5554,783,128,1.58050919,0.106499176,1201.88723,3008656476 +2,5555,784,128,2.27016497,0.106309378,1204.03301,3008656476 +2,5556,785,128,2.30792975,0.106371131,1203.33401,3008656476 +2,5557,786,128,2.18016791,0.119453234,1071.54905,3008656476 +2,5558,787,128,2.53335905,0.106257101,1204.62537,3008656476 +2,5559,788,128,2.53077602,0.106332097,1203.77575,3008656476 +2,5560,789,128,2.64561677,0.106406772,1202.93096,3008656476 +2,5561,790,128,2.40513086,0.106336681,1203.72386,3008656476 +2,5562,791,128,2.70277762,0.106313082,1203.99106,3008656476 +2,5563,792,128,2.15961194,0.106324109,1203.86619,3008656476 +2,5564,793,128,2.38296318,0.107463055,1191.10703,3008656476 +2,5565,794,128,2.02952957,0.106362415,1203.43262,3008656476 +2,5566,795,128,2.24072194,0.106324094,1203.86636,3008656476 +2,5567,796,128,2.63031483,0.118550773,1079.70616,3008656476 +2,5568,797,128,2.15071702,0.106397525,1203.0355,3008656476 +2,5569,798,128,2.31361389,0.106386319,1203.16222,3008656476 +2,5570,799,128,2.20068574,0.106348708,1203.58773,3008656476 +2,5571,800,128,2.57280421,0.106396244,1203.04999,3008656476 +2,5572,801,128,2.33805466,0.10642892,1202.68062,3008656476 +2,5573,802,128,2.68974185,0.106356132,1203.50372,3008656476 +2,5574,803,128,2.18283653,0.106392851,1203.08835,3008656476 +2,5575,804,128,2.49748826,0.106378479,1203.25089,3008656476 +2,5576,805,128,2.89399076,0.106341189,1203.67283,3008656476 +2,5577,806,128,2.83950305,0.121496067,1053.53205,3008656476 +2,5578,807,128,2.4304955,0.106310491,1204.0204,3008656476 +2,5579,808,128,1.98871183,0.106511559,1201.7475,3008656476 +2,5580,809,128,2.04259276,0.106317139,1203.94511,3008656476 +2,5581,810,128,2.03689384,0.106408535,1202.91103,3008656476 +2,5582,811,128,2.14694548,0.106294898,1204.19703,3008656476 +2,5583,812,128,2.714324,0.106336394,1203.72711,3008656476 +2,5584,813,128,2.35353065,0.106382762,1203.20245,3008656476 +2,5585,814,128,1.97164726,0.106363793,1203.41703,3008656476 +2,5586,815,128,1.81352949,0.106460937,1202.31893,3008656476 +2,5587,816,128,2.68986297,0.109452977,1169.45197,3008656476 +2,5588,817,128,2.41031885,0.106391974,1203.09827,3008656476 +2,5589,818,128,2.21474266,0.106336709,1203.72354,3008656476 +2,5590,819,128,2.03668261,0.106404329,1202.95858,3008656476 +2,5591,820,128,1.93383777,0.106427657,1202.6949,3008656476 +2,5592,821,128,2.23936391,0.106258175,1204.6132,3008656476 +2,5593,822,128,2.03040314,0.106254824,1204.65119,3008656476 +2,5594,823,128,2.70471978,0.106372315,1203.32062,3008656476 +2,5595,824,128,2.534374,0.106222129,1205.02198,3008656476 +2,5596,825,128,2.2049799,0.11847387,1080.40701,3008656476 +2,5597,826,128,2.14281702,0.106397343,1203.03756,3008656476 +2,5598,827,128,2.07497239,0.106399461,1203.01361,3008656476 +2,5599,828,128,2.01352239,0.106343396,1203.64785,3008656476 +2,5600,829,128,2.14677405,0.106499017,1201.88903,3008656476 +2,5601,830,128,2.4680438,0.106302661,1204.10909,3008656476 +2,5602,831,128,1.60692596,0.106423829,1202.73816,3008656476 +2,5603,832,128,2.27579045,0.106397436,1203.03651,3008656476 +2,5604,833,128,2.60065055,0.106387336,1203.15072,3008656476 +2,5605,834,128,2.58402252,0.106307562,1204.05357,3008656476 +2,5606,835,128,2.23446941,0.118399115,1081.08916,3008656476 +2,5607,836,128,1.97076535,0.106419124,1202.79133,3008656476 +2,5608,837,128,2.38063526,0.106430517,1202.66258,3008656476 +2,5609,838,128,2.06318879,0.106421407,1202.76553,3008656476 +2,5610,839,128,2.57547569,0.106490494,1201.98522,3008656476 +2,5611,840,128,2.25505781,0.10625575,1204.64069,3008656476 +2,5612,841,128,1.87827337,0.106354114,1203.52655,3008656476 +2,5613,842,128,1.84364963,0.106329524,1203.80488,3008656476 +2,5614,843,128,2.5607934,0.106326124,1203.84338,3008656476 +2,5615,844,128,1.88056612,0.106296931,1204.17399,3008656476 +2,5616,845,128,2.49742222,0.119583765,1070.37941,3008656476 +2,5617,846,128,2.18278766,0.106276808,1204.402,3008656476 +2,5618,847,128,2.79122496,0.106436549,1202.59442,3008656476 +2,5619,848,128,2.02724409,0.106322288,1203.88681,3008656476 +2,5620,849,128,2.0955565,0.106287267,1204.28348,3008656476 +2,5621,850,128,2.07284665,0.106332908,1203.76657,3008656476 +2,5622,851,128,2.12993407,0.106421353,1202.76614,3008656476 +2,5623,852,128,1.60189188,0.106364656,1203.40727,3008656476 +2,5624,853,128,2.14841127,0.106467394,1202.24601,3008656476 +2,5625,854,128,2.49741793,0.106358274,1203.47948,3008656476 +2,5626,855,128,2.14385366,0.120572666,1061.60048,3008656476 +2,5627,856,128,2.43832421,0.106313069,1203.9912,3008656476 +2,5628,857,128,2.0626142,0.106291584,1204.23457,3008656476 +2,5629,858,128,2.44216299,0.10624053,1204.81327,3008656476 +2,5630,859,128,2.14366961,0.10635755,1203.48767,3008656476 +2,5631,860,128,2.38271451,0.106409019,1202.90555,3008656476 +2,5632,861,128,2.49465227,0.106276293,1204.40784,3008656476 +2,5633,862,128,2.02546763,0.09311042,1374.71187,3008656476 +2,5634,863,128,1.76388144,0.106271635,1204.46063,3008656476 +2,5635,864,128,2.11932278,0.118663714,1078.67853,3008656476 +2,5636,865,128,1.90464497,0.104571154,1224.04693,3008656476 +2,5637,866,128,2.15131831,0.106340852,1203.67665,3008656476 +2,5638,867,128,2.30694652,0.106371668,1203.32794,3008656476 +2,5639,868,128,2.24604201,0.106415209,1202.83558,3008656476 +2,5640,869,128,2.30962348,0.106316338,1203.95418,3008656476 +2,5641,870,128,2.59002924,0.106285687,1204.30138,3008656476 +2,5642,871,128,2.06721783,0.106251397,1204.69004,3008656476 +2,5643,872,128,2.19132924,0.10646598,1202.26198,3008656476 +2,5644,873,128,2.04515147,0.10645525,1202.38316,3008656476 +2,5645,874,128,2.51254201,0.118974458,1075.86117,3008656476 +2,5646,875,128,2.0480206,0.106358563,1203.47621,3008656476 +2,5647,876,128,2.19721985,0.106382234,1203.20842,3008656476 +2,5648,877,128,1.69226909,0.106333272,1203.76245,3008656476 +2,5649,878,128,2.09165931,0.10628582,1204.29988,3008656476 +2,5650,879,128,2.1327579,0.106280413,1204.36115,3008656476 +2,5651,880,128,2.31698895,0.106294029,1204.20687,3008656476 +2,5652,881,128,2.85418749,0.1062547,1204.65259,3008656476 +2,5653,882,128,3.14347816,0.106414796,1202.84025,3008656476 +2,5654,883,128,2.59970093,0.106190259,1205.38363,3008656476 +2,5655,884,128,1.88361073,0.118648971,1078.81256,3008656476 +2,5656,885,128,2.72069216,0.106398841,1203.02062,3008656476 +2,5657,886,128,2.16097784,0.106281078,1204.35361,3008656476 +2,5658,887,128,2.42917275,0.107078788,1195.38148,3008656476 +2,5659,888,128,2.04412937,0.106446953,1202.47688,3008656476 +2,5660,889,128,2.50799561,0.106280691,1204.358,3008656476 +2,5661,890,128,1.9206624,0.106489235,1201.99943,3008656476 +2,5662,891,128,1.78502309,0.106307279,1204.05678,3008656476 +2,5663,892,128,2.43645954,0.106435698,1202.60404,3008656476 +2,5664,893,128,2.45849419,0.106337865,1203.71046,3008656476 +2,5665,894,128,2.43412805,0.120254104,1064.41274,3008656476 +2,5666,895,128,2.4668417,0.10630404,1204.09347,3008656476 +2,5667,896,128,1.68704247,0.106347463,1203.60182,3008656476 +2,5668,897,128,1.867782,0.10630046,1204.13402,3008656476 +2,5669,898,128,1.63888693,0.106329579,1203.80426,3008656476 +2,5670,899,128,1.86192548,0.106476455,1202.1437,3008656476 +2,5671,900,128,1.81870174,0.106243467,1204.77996,3008656476 +2,5672,901,128,1.91225874,0.106322815,1203.88084,3008656476 +2,5673,902,128,1.85053134,0.106226879,1204.96809,3008656476 +2,5674,903,128,2.17457008,0.106601288,1200.73596,3008656476 +2,5675,904,128,1.87827206,0.115789198,1105.45718,3008656476 +2,5676,905,128,2.04344821,0.106450268,1202.43943,3008656476 +2,5677,906,128,2.30320334,0.1064029,1202.97473,3008656476 +2,5678,907,128,2.41679311,0.106344413,1203.63634,3008656476 +2,5679,908,128,2.23880577,0.106433354,1202.63052,3008656476 +2,5680,909,128,2.09246898,0.106577187,1201.00749,3008656476 +2,5681,910,128,2.17023253,0.106290773,1204.24376,3008656476 +2,5682,911,128,2.15326571,0.106324643,1203.86014,3008656476 +2,5683,912,128,2.57183099,0.106289436,1204.25891,3008656476 +2,5684,913,128,1.97511196,0.116572564,1098.02852,3008656476 +2,5685,914,128,2.75967503,0.105313573,1215.41788,3008656476 +2,5686,915,128,2.60580111,0.106390954,1203.10981,3008656476 +2,5687,916,128,2.07860136,0.106361648,1203.4413,3008656476 +2,5688,917,128,1.8516475,0.10633496,1203.74334,3008656476 +2,5689,918,128,2.18673086,0.106367909,1203.37046,3008656476 +2,5690,919,128,1.98999405,0.10637499,1203.29036,3008656476 +2,5691,920,128,2.26738977,0.106211727,1205.13999,3008656476 +2,5692,921,128,2.2258544,0.106345061,1203.62901,3008656476 +2,5693,922,128,2.39741898,0.106267482,1204.5077,3008656476 +2,5694,923,128,2.63290405,0.120243321,1064.50819,3008656476 +2,5695,924,128,2.02892685,0.106374009,1203.30146,3008656476 +2,5696,925,128,2.47782612,0.106257656,1204.61908,3008656476 +2,5697,926,128,2.0415535,0.106189023,1205.39766,3008656476 +2,5698,927,128,1.77708054,0.10648294,1202.07049,3008656476 +2,5699,928,128,2.09858775,0.106392432,1203.09309,3008656476 +2,5700,929,128,1.95894718,0.106490043,1201.99031,3008656476 +2,5701,930,128,1.84530675,0.106390435,1203.11567,3008656476 +2,5702,931,128,2.09802747,0.106388367,1203.13906,3008656476 +2,5703,932,128,2.13949919,0.106385612,1203.17022,3008656476 +2,5704,933,128,2.11518931,0.118471077,1080.43248,3008656476 +2,5705,934,128,2.14458799,0.106286071,1204.29703,3008656476 +2,5706,935,128,2.05029106,0.106265554,1204.52955,3008656476 +2,5707,936,128,1.91909075,0.106368042,1203.36896,3008656476 +2,5708,937,128,1.97331941,0.106315993,1203.95809,3008656476 +2,5709,938,128,2.37617564,0.10626238,1204.56553,3008656476 +2,5710,939,128,2.20292473,0.106373779,1203.30406,3008656476 +2,5711,940,128,2.21688724,0.106451876,1202.42127,3008656476 +2,5712,941,128,1.96137857,0.106302025,1204.11629,3008656476 +2,5713,942,128,2.0122776,0.10619334,1205.34866,3008656476 +2,5714,943,128,2.04504299,0.121609399,1052.55022,3008656476 +2,5715,944,128,2.77452612,0.106287392,1204.28207,3008656476 +2,5716,945,128,2.43748903,0.10615383,1205.79728,3008656476 +2,5717,946,128,2.09983301,0.106395881,1203.05409,3008656476 +2,5718,947,128,2.38465977,0.106275585,1204.41586,3008656476 +2,5719,948,128,2.8585794,0.106278497,1204.38286,3008656476 +2,5720,949,128,2.76490211,0.106405145,1202.94935,3008656476 +2,5721,950,128,2.30914044,0.106290869,1204.24267,3008656476 +2,5722,951,128,1.82577014,0.106259919,1204.59343,3008656476 +2,5723,952,128,1.85015512,0.106323925,1203.86827,3008656476 +2,5724,953,128,2.40948248,0.115126285,1111.82255,3008656476 +2,5725,954,128,2.37382007,0.106203048,1205.23848,3008656476 +2,5726,955,128,1.74540436,0.106411323,1202.87951,3008656476 +2,5727,956,128,2.54837823,0.106340599,1203.67951,3008656476 +2,5728,957,128,2.30958128,0.106269038,1204.49006,3008656476 +2,5729,958,128,2.12068248,0.106426358,1202.70958,3008656476 +2,5730,959,128,2.2986114,0.10634852,1203.58986,3008656476 +2,5731,960,128,2.15549684,0.106331896,1203.77803,3008656476 +2,5732,961,128,2.02711749,0.106248014,1204.7284,3008656476 +2,5733,962,128,2.23952937,0.118323791,1081.77737,3008656476 +2,5734,963,128,2.13176298,0.104748564,1221.97379,3008656476 +2,5735,964,128,1.8752054,0.106439531,1202.56073,3008656476 +2,5736,965,128,1.83211827,0.106364041,1203.41423,3008656476 +2,5737,966,128,2.08576798,0.106378903,1203.2461,3008656476 +2,5738,967,128,2.6741066,0.10652654,1201.5785,3008656476 +2,5739,968,128,2.31950355,0.106272116,1204.45517,3008656476 +2,5740,969,128,1.90741408,0.106342598,1203.65688,3008656476 +2,5741,970,128,1.96967459,0.106398939,1203.01952,3008656476 +2,5742,971,128,2.39682865,0.106306543,1204.06512,3008656476 +2,5743,972,128,1.8230176,0.118882588,1076.69258,3008656476 +2,5744,973,128,1.95072949,0.106242179,1204.79457,3008656476 +2,5745,974,128,1.99076295,0.10640651,1202.93392,3008656476 +2,5746,975,128,2.23332238,0.10636816,1203.36762,3008656476 +2,5747,976,128,2.34740877,0.106407998,1202.9171,3008656476 +2,5748,977,128,2.14587522,0.106240477,1204.81387,3008656476 +2,5749,978,128,2.30030012,0.106221542,1205.02864,3008656476 +2,5750,979,128,2.41158247,0.106254482,1204.65507,3008656476 +2,5751,980,128,2.1472075,0.10618444,1205.44969,3008656476 +2,5752,981,128,2.28836989,0.106367709,1203.37273,3008656476 +2,5753,982,128,1.94199872,0.119025322,1075.40142,3008656476 +2,5754,983,128,2.10942817,0.106380671,1203.2261,3008656476 +2,5755,984,128,1.97977519,0.106187493,1205.41503,3008656476 +2,5756,985,128,1.90393341,0.106356099,1203.50409,3008656476 +2,5757,986,128,1.68015254,0.106468548,1202.23298,3008656476 +2,5758,987,128,1.87831736,0.106367857,1203.37105,3008656476 +2,5759,988,128,1.92246568,0.106264268,1204.54413,3008656476 +2,5760,989,128,2.13832593,0.106310667,1204.01841,3008656476 +2,5761,990,128,1.94314039,0.106298267,1204.15886,3008656476 +2,5762,991,128,1.80272925,0.106385863,1203.16738,3008656476 +2,5763,992,128,2.14743137,0.119290833,1073.00785,3008656476 +2,5764,993,128,1.58583915,0.106463548,1202.28944,3008656476 +2,5765,994,128,1.5826782,0.106363995,1203.41475,3008656476 +2,5766,995,128,1.64535213,0.106447029,1202.47602,3008656476 +2,5767,996,128,2.02132297,0.106486206,1202.03362,3008656476 +2,5768,997,128,2.17582774,0.10632223,1203.88747,3008656476 +2,5769,998,128,1.94412565,0.106354099,1203.52672,3008656476 +2,5770,999,128,2.01959181,0.106465899,1202.2629,3008656476 +2,5771,1000,128,2.31347203,0.106342894,1203.65353,3008656476 +2,5772,1001,128,1.97859871,0.106453644,1202.4013,3008656476 +2,5773,1002,128,2.01608801,0.114834226,1114.65026,3008656476 +2,5774,1003,128,1.92001164,0.106323525,1203.8728,3008656476 +2,5775,1004,128,2.38124919,0.106403863,1202.96384,3008656476 +2,5776,1005,128,2.04136562,0.106300975,1204.12818,3008656476 +2,5777,1006,128,2.51149464,0.106308412,1204.04395,3008656476 +2,5778,1007,128,2.1940887,0.106325406,1203.8515,3008656476 +2,5779,1008,128,1.81230152,0.106294925,1204.19672,3008656476 +2,5780,1009,128,1.96595573,0.106368999,1203.35813,3008656476 +2,5781,1010,128,1.98554182,0.106332591,1203.77016,3008656476 +2,5782,1011,128,1.80426967,0.116670422,1097.10754,3008656476 +2,5783,1012,128,2.01013231,0.105199273,1216.73845,3008656476 +2,5784,1013,128,1.99300504,0.106318843,1203.92582,3008656476 +2,5785,1014,128,1.99352348,0.106235757,1204.8674,3008656476 +2,5786,1015,128,1.46384692,0.106366876,1203.38215,3008656476 +2,5787,1016,128,1.87941706,0.106211232,1205.14561,3008656476 +2,5788,1017,128,1.90904844,0.106376366,1203.2748,3008656476 +2,5789,1018,128,2.06220889,0.106387571,1203.14806,3008656476 +2,5790,1019,128,2.71770096,0.10627042,1204.4744,3008656476 +2,5791,1020,128,2.48121023,0.106216519,1205.08562,3008656476 +2,5792,1021,128,1.98704219,0.118031699,1084.45444,3008656476 +2,5793,1022,128,2.0609796,0.1063343,1203.75081,3008656476 +2,5794,1023,128,2.5745039,0.106299397,1204.14606,3008656476 +2,5795,1024,128,2.50636196,0.106300838,1204.12974,3008656476 +2,5796,1025,128,2.35060501,0.10636426,1203.41175,3008656476 +2,5797,1026,128,1.96918058,0.106362891,1203.42724,3008656476 +2,5798,1027,128,1.8133775,0.10624604,1204.75078,3008656476 +2,5799,1028,128,1.73690593,0.106275482,1204.41703,3008656476 +2,5800,1029,128,2.31369209,0.106163603,1205.68628,3008656476 +2,5801,1030,128,1.71132302,0.106375473,1203.2849,3008656476 +2,5802,1031,128,2.36051679,0.119746763,1068.92242,3008656476 +2,5803,1032,128,1.94815385,0.106444599,1202.50347,3008656476 +2,5804,1033,128,1.97360444,0.106321306,1203.89793,3008656476 +2,5805,1034,128,2.43594456,0.106334348,1203.75027,3008656476 +2,5806,1035,128,2.16644955,0.106291754,1204.23264,3008656476 +2,5807,1036,128,2.14141536,0.106255266,1204.64618,3008656476 +2,5808,1037,128,2.07103372,0.106334976,1203.74316,3008656476 +2,5809,1038,128,1.7838757,0.106258361,1204.61109,3008656476 +2,5810,1039,128,1.86196685,0.106423155,1202.74577,3008656476 +2,5811,1040,128,2.29894853,0.106231627,1204.91424,3008656476 +2,5812,1041,128,2.28973269,0.120534319,1061.93822,3008656476 +2,5813,1042,128,2.22140837,0.10633846,1203.70372,3008656476 +2,5814,1043,128,1.52538991,0.106271851,1204.45818,3008656476 +2,5815,1044,128,1.79845428,0.106307388,1204.05555,3008656476 +2,5816,1045,128,1.99002457,0.106350765,1203.56445,3008656476 +2,5817,1046,128,1.94595015,0.106272595,1204.44975,3008656476 +2,5818,1047,128,1.70679605,0.106336496,1203.72595,3008656476 +2,5819,1048,128,2.35312986,0.106355858,1203.50682,3008656476 +2,5820,1049,128,2.0829165,0.10636044,1203.45497,3008656476 +2,5821,1050,128,2.15739822,0.106444198,1202.508,3008656476 +2,5822,1051,128,2.02441382,0.115282809,1110.31299,3008656476 +2,5823,1052,128,1.84421158,0.10637957,1203.23855,3008656476 +2,5824,1053,128,2.03053451,0.106330294,1203.79616,3008656476 +2,5825,1054,128,2.37602377,0.106258507,1204.60943,3008656476 +2,5826,1055,128,1.53423131,0.106383217,1203.19731,3008656476 +2,5827,1056,128,2.29744267,0.106377024,1203.26735,3008656476 +2,5828,1057,128,2.44926596,0.10629101,1204.24107,3008656476 +2,5829,1058,128,2.08220744,0.106381736,1203.21406,3008656476 +2,5830,1059,128,1.6361258,0.106267824,1204.50382,3008656476 +2,5831,1060,128,2.5023315,0.116583094,1097.92934,3008656476 +2,5832,1061,128,2.44653916,0.10468274,1222.74216,3008656476 +2,5833,1062,128,2.37728095,0.106331925,1203.7777,3008656476 +2,5834,1063,128,2.0592761,0.106405715,1202.94291,3008656476 +2,5835,1064,128,1.86786878,0.106232429,1204.90514,3008656476 +2,5836,1065,128,2.00054312,0.106405958,1202.94016,3008656476 +2,5837,1066,128,1.9594208,0.10620947,1205.1656,3008656476 +2,5838,1067,128,2.15632105,0.106410391,1202.89004,3008656476 +2,5839,1068,128,2.17573786,0.106324705,1203.85944,3008656476 +2,5840,1069,128,2.65900302,0.106459541,1202.3347,3008656476 +2,5841,1070,128,2.13584065,0.118092729,1083.894,3008656476 +2,5842,1071,128,2.3415401,0.106509638,1201.76918,3008656476 +2,5843,1072,128,2.00092483,0.106301844,1204.11834,3008656476 +2,5844,1073,128,2.63200402,0.106353721,1203.531,3008656476 +2,5845,1074,128,2.58897662,0.106311355,1204.01062,3008656476 +2,5846,1075,128,2.3031342,0.10638898,1203.13213,3008656476 +2,5847,1076,128,2.63852954,0.107325971,1192.62839,3008656476 +2,5848,1077,128,2.43687129,0.106466822,1202.25247,3008656476 +2,5849,1078,128,2.5971911,0.106527631,1201.56619,3008656476 +2,5850,1079,128,2.81731725,0.106372073,1203.32336,3008656476 +2,5851,1080,128,2.11363006,0.181048119,706.994365,3008656476 +2,5852,1081,128,1.27685928,0.094726959,1351.25208,3008656476 +2,5853,1082,128,1.83554256,0.106317023,1203.94643,3008656476 +2,5854,1083,128,2.57212138,0.106428512,1202.68524,3008656476 +2,5855,1084,128,2.2924037,0.106284248,1204.31769,3008656476 +2,5856,1085,128,2.49845171,0.106356399,1203.50069,3008656476 +2,5857,1086,128,2.27034712,0.106323392,1203.87431,3008656476 +2,5858,1087,128,2.00533938,0.106283755,1204.32328,3008656476 +2,5859,1088,128,1.76508534,0.106403336,1202.9698,3008656476 +2,5860,1089,128,1.9561373,0.120168059,1065.1749,3008656476 +2,5861,1090,128,2.22252822,0.106740167,1199.17369,3008656476 +2,5862,1091,128,2.3637526,0.10637927,1203.24195,3008656476 +2,5863,1092,128,1.78128147,0.106311548,1204.00843,3008656476 +2,5864,1093,128,2.53924203,0.106281597,1204.34773,3008656476 +2,5865,1094,128,2.07082844,0.106246561,1204.74488,3008656476 +2,5866,1095,128,2.04578161,0.106215791,1205.09388,3008656476 +2,5867,1096,128,1.86372197,0.106273292,1204.44185,3008656476 +2,5868,1097,128,2.00639296,0.10649236,1201.96416,3008656476 +2,5869,1098,128,2.31813979,0.106323019,1203.87853,3008656476 +2,5870,1099,128,2.59819508,0.120392424,1063.18982,3008656476 +2,5871,1100,128,2.31991553,0.106312946,1203.9926,3008656476 +2,5872,1101,128,2.41112733,0.106304555,1204.08763,3008656476 +2,5873,1102,128,2.21048069,0.15311947,835.948557,3008656476 +2,5874,1103,128,2.47697473,0.107621382,1189.35473,3008656476 +2,5875,1104,128,2.10737705,0.107403906,1191.76299,3008656476 +2,5876,1105,128,2.64451504,0.10626435,1204.5432,3008656476 +2,5877,1106,128,2.19134903,0.106556564,1201.23993,3008656476 +2,5878,1107,128,2.24035692,0.106371926,1203.32502,3008656476 +2,5879,1108,128,1.98698914,0.121239169,1055.76441,3008656476 +2,5880,1109,128,1.81132936,0.106262163,1204.56799,3008656476 +2,5881,1110,128,2.14929843,0.106255576,1204.64266,3008656476 +2,5882,1111,128,2.12031817,0.106183696,1205.45813,3008656476 +2,5883,1112,128,1.6731751,0.106413543,1202.85441,3008656476 +2,5884,1113,128,1.78673398,0.106285075,1204.30832,3008656476 +2,5885,1114,128,2.6425159,0.106233379,1204.89437,3008656476 +2,5886,1115,128,1.59945273,0.106161084,1205.71489,3008656476 +2,5887,1116,128,1.82207847,0.106254408,1204.6559,3008656476 +2,5888,1117,128,1.66031086,0.106193184,1205.35043,3008656476 +2,5889,1118,128,2.17261028,0.11264718,1136.29121,3008656476 +2,5890,1119,128,1.87286663,0.106642894,1200.2675,3008656476 +2,5891,1120,128,1.52334213,0.106353686,1203.53139,3008656476 +2,5892,1121,128,1.76236403,0.106202396,1205.24588,3008656476 +2,5893,1122,128,1.82324421,0.106237335,1204.8495,3008656476 +2,5894,1123,128,1.48667109,0.106242535,1204.79053,3008656476 +2,5895,1124,128,1.38258255,0.106235828,1204.86659,3008656476 +2,5896,1125,128,2.13773036,0.106229298,1204.94066,3008656476 +2,5897,1126,128,1.64575958,0.106288459,1204.26998,3008656476 +2,5898,1127,128,2.6032927,0.116289875,1100.69772,3008656476 +2,5899,1128,128,2.10780382,0.105704816,1210.91928,3008656476 +2,5900,1129,128,1.62865615,0.106257977,1204.61544,3008656476 +2,5901,1130,128,2.14042354,0.106325273,1203.85301,3008656476 +2,5902,1131,128,2.01209688,0.106262176,1204.56784,3008656476 +2,5903,1132,128,1.85709882,0.10633272,1203.7687,3008656476 +2,5904,1133,128,1.70374417,0.106211053,1205.14764,3008656476 +2,5905,1134,128,2.33389306,0.106250854,1204.6962,3008656476 +2,5906,1135,128,2.33540487,0.106220891,1205.03602,3008656476 +2,5907,1136,128,2.16695857,0.106254035,1204.66013,3008656476 +2,5908,1137,128,2.0978241,0.117819662,1086.4061,3008656476 +2,5909,1138,128,2.02452278,0.106386972,1203.15484,3008656476 +2,5910,1139,128,1.84330118,0.106222259,1205.0205,3008656476 +2,5911,1140,128,1.99819851,0.106237558,1204.84697,3008656476 +2,5912,1141,128,2.05336642,0.106128578,1206.08419,3008656476 +2,5913,1142,128,2.04315639,0.106230406,1204.92809,3008656476 +2,5914,1143,128,2.04897523,0.10630664,1204.06402,3008656476 +2,5915,1144,128,1.77707398,0.106265153,1204.5341,3008656476 +2,5916,1145,128,1.88853276,0.106182019,1205.47717,3008656476 +2,5917,1146,128,2.31912446,0.106222385,1205.01907,3008656476 +2,5918,1147,128,2.32740402,0.120043483,1066.28029,3008656476 +2,5919,1148,128,2.19082093,0.106163387,1205.68874,3008656476 +2,5920,1149,128,2.27267742,0.106330366,1203.79535,3008656476 +2,5921,1150,128,2.22820592,0.106208576,1205.17575,3008656476 +2,5922,1151,128,2.17900014,0.106290175,1204.25053,3008656476 +2,5923,1152,128,2.50361681,0.106267527,1204.50719,3008656476 +2,5924,1153,128,2.32699776,0.10610093,1206.39847,3008656476 +2,5925,1154,128,2.33232498,0.10625567,1204.6416,3008656476 +2,5926,1155,128,2.36792421,0.106202426,1205.24554,3008656476 +2,5927,1156,128,2.17590642,0.106306073,1204.07044,3008656476 +2,5928,1157,128,2.66337299,0.120303717,1063.97378,3008656476 +2,5929,1158,128,1.98561656,0.10636951,1203.35235,3008656476 +2,5930,1159,128,2.47859716,0.10621488,1205.10422,3008656476 +2,5931,1160,128,2.42505598,0.106218441,1205.06382,3008656476 +2,5932,1161,128,2.51631117,0.106166143,1205.65744,3008656476 +2,5933,1162,128,1.91673887,0.106123409,1206.14293,3008656476 +2,5934,1163,128,1.90299082,0.106232296,1204.90665,3008656476 +2,5935,1164,128,1.93724978,0.106024651,1207.26641,3008656476 +2,5936,1165,128,2.53556943,0.10660993,1200.63863,3008656476 +2,5937,1166,128,2.29251146,0.106141632,1205.93586,3008656476 +2,5938,1167,128,2.65579104,0.116312702,1100.4817,3008656476 +2,5939,1168,128,2.22510386,0.106130383,1206.06368,3008656476 +2,5940,1169,128,2.45511246,0.106237958,1204.84243,3008656476 +2,5941,1170,128,2.37161684,0.106136317,1205.99625,3008656476 +2,5942,1171,128,2.38301635,0.106286084,1204.29689,3008656476 +2,5943,1172,128,2.24092603,0.106125928,1206.11431,3008656476 +2,5944,1173,128,2.28015232,0.106204641,1205.2204,3008656476 +2,5945,1174,128,2.605896,0.106170259,1205.6107,3008656476 +2,5946,1175,128,2.30197692,0.106141735,1205.93469,3008656476 +2,5947,1176,128,2.45440364,0.118686903,1078.46777,3008656476 +2,5948,1177,128,2.29344416,0.104438093,1225.60645,3008656476 +2,5949,1178,128,2.0135994,0.106080498,1206.63084,3008656476 +2,5950,1179,128,2.26066661,0.106226883,1204.96805,3008656476 +2,5951,1180,128,2.49255991,0.106062437,1206.83631,3008656476 +2,5952,1181,128,2.16813684,0.106274878,1204.42387,3008656476 +2,5953,1182,128,2.29927802,0.106191822,1205.36589,3008656476 +2,5954,1183,128,1.59082198,0.106167426,1205.64287,3008656476 +2,5955,1184,128,1.74587286,0.106036491,1207.13161,3008656476 +2,5956,1185,128,2.60566258,0.10624082,1204.80998,3008656476 +2,5957,1186,128,2.47504616,0.118138103,1083.4777,3008656476 +2,5958,1187,128,2.39693213,0.106454458,1202.39211,3008656476 +2,5959,1188,128,2.39474416,0.10614253,1205.92565,3008656476 +2,5960,1189,128,2.28861642,0.106198232,1205.29314,3008656476 +2,5961,1190,128,2.01354003,0.106074949,1206.69396,3008656476 +2,5962,1191,128,1.72665238,0.106091262,1206.50841,3008656476 +2,5963,1192,128,2.02893353,0.106059965,1206.86444,3008656476 +2,5964,1193,128,2.05528736,0.106135012,1206.01108,3008656476 +2,5965,1194,128,1.56633329,0.106127162,1206.10028,3008656476 +2,5966,1195,128,1.63476348,0.106182948,1205.46663,3008656476 +2,5967,1196,128,1.5360539,0.120498442,1062.2544,3008656476 +2,5968,1197,128,2.13042903,0.10619505,1205.32925,3008656476 +2,5969,1198,128,1.70125282,0.106129223,1206.07686,3008656476 +2,5970,1199,128,2.15458798,0.106171331,1205.59852,3008656476 +2,5971,1200,128,2.30219865,0.106034239,1207.15725,3008656476 +2,5972,1201,128,2.66157699,0.106213158,1205.12376,3008656476 +2,5973,1202,128,2.29425287,0.106118087,1206.20343,3008656476 +2,5974,1203,128,1.99307168,0.106209068,1205.17016,3008656476 +2,5975,1204,128,1.96691215,0.106168739,1205.62796,3008656476 +2,5976,1205,128,2.31435633,0.106183271,1205.46296,3008656476 +2,5977,1206,128,1.97100437,0.120953805,1058.25526,3008656476 +2,5978,1207,128,2.29540992,0.106210062,1205.15889,3008656476 +2,5979,1208,128,2.08439684,0.106048465,1206.99531,3008656476 +2,5980,1209,128,1.90217972,0.106075721,1206.68518,3008656476 +2,5981,1210,128,1.90575719,0.106128679,1206.08304,3008656476 +2,5982,1211,128,2.27208114,0.106283573,1204.32534,3008656476 +2,5983,1212,128,2.11462283,0.106177364,1205.53002,3008656476 +2,5984,1213,128,1.80501628,0.106253481,1204.66641,3008656476 +2,5985,1214,128,2.50265551,0.106320133,1203.91121,3008656476 +2,5986,1215,128,2.40040231,0.106095971,1206.45486,3008656476 +2,5987,1216,128,2.2122705,0.11593886,1104.03018,3008656476 +2,5988,1217,128,2.37374187,0.106244036,1204.77351,3008656476 +2,5989,1218,128,2.03854799,0.106346056,1203.61774,3008656476 +2,5990,1219,128,2.46730328,0.106260204,1204.5902,3008656476 +2,5991,1220,128,1.59436154,0.106857296,1197.85925,3008656476 +2,5992,1221,128,1.98631942,0.10551766,1213.06708,3008656476 +2,5993,1222,128,2.05169797,0.106363674,1203.41838,3008656476 +2,5994,1223,128,2.05997562,0.106388902,1203.13301,3008656476 +2,5995,1224,128,2.37744713,0.106269013,1204.49034,3008656476 +2,5996,1225,128,2.29519701,0.117132424,1092.78025,3008656476 +2,5997,1226,128,2.05313587,0.1045421,1224.38711,3008656476 +2,5998,1227,128,2.27221942,0.106104416,1206.35884,3008656476 +2,5999,1228,128,2.41450596,0.106101299,1206.39428,3008656476 +2,6000,1229,128,2.05276155,0.106256729,1204.62959,3008656476 +2,6001,1230,128,2.0512476,0.106144141,1205.90735,3008656476 +2,6002,1231,128,1.82148254,0.106252073,1204.68238,3008656476 +2,6003,1232,128,2.18301392,0.106151014,1205.82927,3008656476 +2,6004,1233,128,2.11686015,0.106133034,1206.03355,3008656476 +2,6005,1234,128,2.06662297,0.106136402,1205.99528,3008656476 +2,6006,1235,128,2.09956741,0.1197931,1068.50895,3008656476 +2,6007,1236,128,2.11600423,0.105860004,1209.14411,3008656476 +2,6008,1237,128,2.0629344,0.106138236,1205.97444,3008656476 +2,6009,1238,128,1.9703126,0.106025303,1207.25899,3008656476 +2,6010,1239,128,2.17447996,0.106253123,1204.67047,3008656476 +2,6011,1240,128,2.21585202,0.106116166,1206.22526,3008656476 +2,6012,1241,128,1.38725007,0.106129432,1206.07448,3008656476 +2,6013,1242,128,2.06861162,0.106058455,1206.88162,3008656476 +2,6014,1243,128,1.43175876,0.106167946,1205.63696,3008656476 +2,6015,1244,128,2.11885142,0.105962337,1207.97638,3008656476 +2,6016,1245,128,1.83366966,0.119841109,1068.0809,3008656476 +2,6017,1246,128,1.88829768,0.106099492,1206.41482,3008656476 +2,6018,1247,128,1.54023802,0.106165831,1205.66098,3008656476 +2,6019,1248,128,1.13225818,0.106099131,1206.41893,3008656476 +2,6020,1249,128,1.19010186,0.106282682,1204.33543,3008656476 +2,6021,1250,128,1.6210891,0.106163188,1205.691,3008656476 +2,6022,1251,128,1.24197388,0.106260859,1204.58277,3008656476 +2,6023,1252,128,1.63564384,0.106239645,1204.8233,3008656476 +2,6024,1253,128,1.57078803,0.10624716,1204.73808,3008656476 +2,6025,1254,128,1.53569329,0.106171073,1205.60145,3008656476 +2,6026,1255,128,1.21505797,0.11808392,1083.97485,3008656476 +2,6027,1256,128,1.54982197,0.106171795,1205.59326,3008656476 +2,6028,1257,128,1.70682967,0.106163174,1205.69116,3008656476 +2,6029,1258,128,1.16551411,0.106140988,1205.94317,3008656476 +2,6030,1259,128,2.28232622,0.106111579,1206.2774,3008656476 +2,6031,1260,128,2.50498819,0.106230766,1204.924,3008656476 +2,6032,1261,128,2.1628201,0.106219346,1205.05355,3008656476 +2,6033,1262,128,2.5007391,0.106063869,1206.82002,3008656476 +2,6034,1263,128,2.27297211,0.097601502,1311.45523,3008656476 +2,6035,1264,128,1.9326514,0.106277748,1204.39135,3008656476 +2,6036,1265,128,2.00959873,0.116932861,1094.64524,3008656476 +2,6037,1266,128,2.04874492,0.106142872,1205.92177,3008656476 +2,6038,1267,128,2.11937881,0.106075311,1206.68984,3008656476 +2,6039,1268,128,2.03410959,0.106148187,1205.86139,3008656476 +2,6040,1269,128,2.13321066,0.106099885,1206.41036,3008656476 +2,6041,1270,128,1.59458864,0.106293348,1204.21459,3008656476 +2,6042,1271,128,1.93087101,0.106085287,1206.57637,3008656476 +2,6043,1272,128,1.75582457,0.106173519,1205.57368,3008656476 +2,6044,1273,128,2.48458076,0.106027914,1207.22926,3008656476 +2,6045,1274,128,1.7397784,0.119420557,1071.84226,3008656476 +2,6046,1275,128,2.35168123,0.1045979,1223.73394,3008656476 +2,6047,1276,128,2.2543509,0.106392006,1203.09791,3008656476 +2,6048,1277,128,1.74821687,0.106203223,1205.23649,3008656476 +2,6049,1278,128,2.01807332,0.106340842,1203.67676,3008656476 +2,6050,1279,128,2.23465991,0.106243292,1204.78195,3008656476 +2,6051,1280,128,2.0359025,0.106279452,1204.37204,3008656476 +2,6052,1281,128,2.22827554,0.106144152,1205.90723,3008656476 +2,6053,1282,128,2.37408447,0.106268828,1204.49244,3008656476 +2,6054,1283,128,1.53635538,0.106148725,1205.85528,3008656476 +2,6055,1284,128,2.04403138,0.11940753,1071.9592,3008656476 +2,6056,1285,128,2.43620086,0.106021553,1207.30169,3008656476 +2,6057,1286,128,2.10416317,0.106169813,1205.61576,3008656476 +2,6058,1287,128,2.09794521,0.106185645,1205.43601,3008656476 +2,6059,1288,128,1.81497324,0.10602759,1207.23295,3008656476 +2,6060,1289,128,1.62542462,0.106106301,1206.33741,3008656476 +2,6061,1290,128,2.10479617,0.106106831,1206.33138,3008656476 +2,6062,1291,128,2.20600772,0.106042229,1207.06629,3008656476 +2,6063,1292,128,2.31138134,0.106203152,1205.2373,3008656476 +2,6064,1293,128,1.85882592,0.165390069,773.927968,3008656476 +2,6065,1294,128,1.87761056,0.108728077,1177.24882,3008656476 +2,6066,1295,128,1.8269949,0.106015979,1207.36517,3008656476 +2,6067,1296,128,1.8344568,0.106210504,1205.15387,3008656476 +2,6068,1297,128,2.06036139,0.105972023,1207.86597,3008656476 +2,6069,1298,128,2.22587442,0.106070874,1206.74032,3008656476 +2,6070,1299,128,2.17004991,0.106027197,1207.23742,3008656476 +2,6071,1300,128,2.2190249,0.106107789,1206.32049,3008656476 +2,6072,1301,128,2.23325777,0.106027275,1207.23653,3008656476 +2,6073,1302,128,1.91706383,0.106213803,1205.11644,3008656476 +2,6074,1303,128,1.44489813,0.115344429,1109.71983,3008656476 +2,6075,1304,128,1.95904779,0.105156247,1217.23629,3008656476 +2,6076,1305,128,2.25466418,0.106164803,1205.67266,3008656476 +2,6077,1306,128,2.11676502,0.106249217,1204.71476,3008656476 +2,6078,1307,128,2.2526021,0.106084806,1206.58184,3008656476 +2,6079,1308,128,1.60052681,0.106115672,1206.23088,3008656476 +2,6080,1309,128,2.3409276,0.106202377,1205.24609,3008656476 +2,6081,1310,128,2.58781385,0.106110997,1206.28402,3008656476 +2,6082,1311,128,2.17983103,0.106125475,1206.11945,3008656476 +2,6083,1312,128,1.88242126,0.106209862,1205.16116,3008656476 +2,6084,1313,128,2.02551532,0.118959226,1075.99893,3008656476 +2,6085,1314,128,2.06736326,0.106370944,1203.33613,3008656476 +2,6086,1315,128,1.86015952,0.106238502,1204.83627,3008656476 +2,6087,1316,128,2.12648106,0.106247752,1204.73137,3008656476 +2,6088,1317,128,1.87655091,0.106251174,1204.69257,3008656476 +2,6089,1318,128,1.43135774,0.106367203,1203.37845,3008656476 +2,6090,1319,128,2.18249989,0.10637077,1203.3381,3008656476 +2,6091,1320,128,2.37207389,0.106374164,1203.2997,3008656476 +2,6092,1321,128,2.25027514,0.106286446,1204.29278,3008656476 +2,6093,1322,128,2.41025019,0.106405538,1202.94491,3008656476 +2,6094,1323,128,1.91045022,0.120845488,1059.2038,3008656476 +2,6095,1324,128,1.45995831,0.106281566,1204.34808,3008656476 +2,6096,1325,128,1.85676718,0.106135981,1206.00007,3008656476 +2,6097,1326,128,2.27034688,0.106274518,1204.42795,3008656476 +2,6098,1327,128,2.2860148,0.106168127,1205.63491,3008656476 +2,6099,1328,128,2.30182099,0.10625535,1204.64522,3008656476 +2,6100,1329,128,1.89145291,0.106152934,1205.80746,3008656476 +2,6101,1330,128,2.17729425,0.106240321,1204.81564,3008656476 +2,6102,1331,128,1.78911936,0.106240715,1204.81117,3008656476 +2,6103,1332,128,2.13339853,0.106289473,1204.25849,3008656476 +2,6104,1333,128,1.83253646,0.119887294,1067.66944,3008656476 +2,6105,1334,128,2.24033403,0.106176021,1205.54527,3008656476 +2,6106,1335,128,1.69698012,0.10611158,1206.27739,3008656476 +2,6107,1336,128,2.08879972,0.106139136,1205.96422,3008656476 +2,6108,1337,128,1.66329813,0.106095167,1206.464,3008656476 +2,6109,1338,128,1.97953367,0.106113402,1206.25668,3008656476 +2,6110,1339,128,1.90184426,0.106087394,1206.5524,3008656476 +2,6111,1340,128,1.64733195,0.106277077,1204.39895,3008656476 +2,6112,1341,128,1.92755973,0.106220726,1205.03789,3008656476 +2,6113,1342,128,2.06114626,0.10623036,1204.92861,3008656476 +2,6114,1343,128,1.69623494,0.115256653,1110.56496,3008656476 +2,6115,1344,128,2.0042522,0.10612232,1206.15531,3008656476 +2,6116,1345,128,1.95895541,0.106090871,1206.51286,3008656476 +2,6117,1346,128,2.08768463,0.106094188,1206.47514,3008656476 +2,6118,1347,128,1.64645338,0.106181992,1205.47748,3008656476 +2,6119,1348,128,1.51208317,0.106195152,1205.32809,3008656476 +2,6120,1349,128,2.15787077,0.106104742,1206.35513,3008656476 +2,6121,1350,128,2.08465195,0.10622761,1204.9598,3008656476 +2,6122,1351,128,2.07688999,0.106058073,1206.88597,3008656476 +2,6123,1352,128,1.63833451,0.118767063,1077.73988,3008656476 +2,6124,1353,128,1.69241917,0.104521619,1224.62703,3008656476 +2,6125,1354,128,1.99232602,0.10622339,1205.00767,3008656476 +2,6126,1355,128,1.76812327,0.106106085,1206.33986,3008656476 +2,6127,1356,128,1.97239602,0.106216341,1205.08764,3008656476 +2,6128,1357,128,2.2072866,0.106154974,1205.78429,3008656476 +2,6129,1358,128,2.00288272,0.106125738,1206.11647,3008656476 +2,6130,1359,128,1.86458814,0.106142308,1205.92818,3008656476 +2,6131,1360,128,1.59434247,0.106247456,1204.73473,3008656476 +2,6132,1361,128,2.34051895,0.106171695,1205.59439,3008656476 +2,6133,1362,128,2.13354659,0.119506684,1071.0698,3008656476 +2,6134,1363,128,2.10394144,0.105804927,1209.77353,3008656476 +2,6135,1364,128,1.6948458,0.106209347,1205.167,3008656476 +2,6136,1365,128,2.23998785,0.106134246,1206.01978,3008656476 +2,6137,1366,128,2.10820937,0.106128205,1206.08843,3008656476 +2,6138,1367,128,2.4360311,0.106176134,1205.54399,3008656476 +2,6139,1368,128,2.10912347,0.106244267,1204.77089,3008656476 +2,6140,1369,128,2.12256002,0.106223365,1205.00796,3008656476 +2,6141,1370,128,1.69093895,0.10629894,1204.15124,3008656476 +2,6142,1371,128,2.06338501,0.106219934,1205.04688,3008656476 +2,6143,1372,128,1.73307621,0.120864528,1059.03694,3008656476 +2,6144,1373,128,2.34362173,0.106073512,1206.7103,3008656476 +2,6145,1374,128,2.44783521,0.10619164,1205.36796,3008656476 +2,6146,1375,128,2.56491661,0.106143113,1205.91903,3008656476 +2,6147,1376,128,2.60548472,0.106139041,1205.9653,3008656476 +2,6148,1377,128,2.19434381,0.105947311,1208.1477,3008656476 +2,6149,1378,128,1.98237216,0.106105491,1206.34662,3008656476 +2,6150,1379,128,1.94604278,0.106048454,1206.99544,3008656476 +2,6151,1380,128,2.27278852,0.106207394,1205.18916,3008656476 +2,6152,1381,128,1.87670434,0.106154808,1205.78618,3008656476 +2,6153,1382,128,2.02030015,0.118558429,1079.63644,3008656476 +2,6154,1383,128,1.90653574,0.106146848,1205.8766,3008656476 +2,6155,1384,128,1.74180293,0.106197462,1205.30187,3008656476 +2,6156,1385,128,2.15997887,0.106178427,1205.51795,3008656476 +2,6157,1386,128,1.55996525,0.106200214,1205.27064,3008656476 +2,6158,1387,128,1.85823357,0.106176557,1205.53919,3008656476 +2,6159,1388,128,2.36748767,0.106177998,1205.52282,3008656476 +2,6160,1389,128,2.06183815,0.106162058,1205.70383,3008656476 +2,6161,1390,128,1.75143647,0.106176707,1205.53748,3008656476 +2,6162,1391,128,1.96619594,0.106168178,1205.63433,3008656476 +2,6163,1392,128,1.97873116,0.117111228,1092.97804,3008656476 +2,6164,1393,128,1.79874933,0.106199587,1205.27776,3008656476 +2,6165,1394,128,2.27731705,0.106246832,1204.7418,3008656476 +2,6166,1395,128,1.98172104,0.106135037,1206.01079,3008656476 +2,6167,1396,128,1.92567098,0.106288491,1204.26961,3008656476 +2,6168,1397,128,2.13452959,0.10613919,1205.9636,3008656476 +2,6169,1398,128,2.05543685,0.10713785,1194.7225,3008656476 +2,6170,1399,128,2.07202125,0.10624689,1204.74115,3008656476 +2,6171,1400,128,2.32374287,0.106167148,1205.64603,3008656476 +2,6172,1401,128,2.63341069,0.117922412,1085.45948,3008656476 +2,6173,1402,128,1.90399849,0.104526957,1224.56449,3008656476 +2,6174,1403,128,2.09074712,0.106189667,1205.39035,3008656476 +2,6175,1404,128,1.77406299,0.106231733,1204.91304,3008656476 +2,6176,1405,128,2.13186622,0.106230287,1204.92944,3008656476 +2,6177,1406,128,2.52025795,0.106203907,1205.22873,3008656476 +2,6178,1407,128,2.50371242,0.10634441,1203.63637,3008656476 +2,6179,1408,128,2.138129,0.106251241,1204.69181,3008656476 +2,6180,1409,128,2.3775301,0.106225052,1204.98882,3008656476 +2,6181,1410,128,2.3882041,0.104755807,1221.8893,3008656476 +2,6182,1411,128,2.67525601,0.119689843,1069.43076,3008656476 +2,6183,1412,128,2.32425499,0.106135935,1206.00059,3008656476 +2,6184,1413,128,2.59767962,0.106089705,1206.52612,3008656476 +2,6185,1414,128,2.60513234,0.106114975,1206.2388,3008656476 +2,6186,1415,128,2.69546461,0.106066032,1206.7954,3008656476 +2,6187,1416,128,2.49075985,0.106025288,1207.25916,3008656476 +2,6188,1417,128,2.4378438,0.106101441,1206.39266,3008656476 +2,6189,1418,128,2.32888842,0.106044097,1207.04503,3008656476 +2,6190,1419,128,2.55981874,0.106110364,1206.29122,3008656476 +2,6191,1420,128,2.71587133,0.106141694,1205.93515,3008656476 +2,6192,1421,128,2.498142,0.11823784,1082.56375,3008656476 +2,6193,1422,128,2.9291265,0.10606461,1206.81158,3008656476 +2,6194,1423,128,2.392205,0.106223176,1205.0101,3008656476 +2,6195,1424,128,2.68797779,0.106088775,1206.5367,3008656476 +2,6196,1425,128,3.09117603,0.106260566,1204.58609,3008656476 +2,6197,1426,128,2.38082528,0.106125435,1206.11991,3008656476 +2,6198,1427,128,2.35876274,0.106147939,1205.8642,3008656476 +2,6199,1428,128,2.303262,0.106087274,1206.55377,3008656476 +2,6200,1429,128,2.9967556,0.106123658,1206.1401,3008656476 +2,6201,1430,128,2.68149042,0.106016875,1207.35496,3008656476 +2,6202,1431,128,2.70377922,0.118322906,1081.78547,3008656476 +2,6203,1432,128,2.83971977,0.106104225,1206.36101,3008656476 +2,6204,1433,128,2.2453711,0.106058044,1206.8863,3008656476 +2,6205,1434,128,2.3564291,0.105948149,1208.13814,3008656476 +2,6206,1435,128,2.70813346,0.106174779,1205.55937,3008656476 +2,6207,1436,128,1.83089519,0.106141203,1205.94073,3008656476 +2,6208,1437,128,2.73177409,0.106131558,1206.05032,3008656476 +2,6209,1438,128,2.54489732,0.106006842,1207.46923,3008656476 +2,6210,1439,128,2.55157161,0.106105891,1206.34207,3008656476 +2,6211,1440,128,2.66024637,0.106092386,1206.49563,3008656476 +2,6212,1441,128,2.77815008,0.120363553,1063.44485,3008656476 +2,6213,1442,128,2.34802032,0.105979231,1207.78382,3008656476 +2,6214,1443,128,2.01396608,0.106202866,1205.24054,3008656476 +2,6215,1444,128,2.71852517,0.105975337,1207.82819,3008656476 +2,6216,1445,128,2.45738554,0.106039521,1207.09712,3008656476 +2,6217,1446,128,2.97187805,0.106093954,1206.4778,3008656476 +2,6218,1447,128,2.55149698,0.106101166,1206.39579,3008656476 +2,6219,1448,128,2.15091777,0.106198016,1205.29559,3008656476 +2,6220,1449,128,2.6912992,0.106039992,1207.09175,3008656476 +2,6221,1450,128,2.0451777,0.120964152,1058.16474,3008656476 +2,6222,1451,128,2.35225749,0.102369078,1250.37758,3008656476 +2,6223,1452,128,2.28148198,0.106063172,1206.82795,3008656476 +2,6224,1453,128,2.5749743,0.106165064,1205.66969,3008656476 +2,6225,1454,128,2.40011859,0.106140774,1205.94561,3008656476 +2,6226,1455,128,1.70046854,0.106021246,1207.30518,3008656476 +2,6227,1456,128,2.59807348,0.106185805,1205.43419,3008656476 +2,6228,1457,128,2.46532416,0.106170514,1205.6078,3008656476 +2,6229,1458,128,2.7524507,0.106136535,1205.99377,3008656476 +2,6230,1459,128,2.79988909,0.106175162,1205.55502,3008656476 +2,6231,1460,128,2.31605744,0.118251476,1082.43892,3008656476 +2,6232,1461,128,1.65307462,0.106141807,1205.93387,3008656476 +2,6233,1462,128,1.64625525,0.106138211,1205.97473,3008656476 +2,6234,1463,128,2.28618884,0.106093708,1206.4806,3008656476 +2,6235,1464,128,1.85191619,0.106223413,1205.00741,3008656476 +2,6236,1465,128,2.33951855,0.106265112,1204.53456,3008656476 +2,6237,1466,128,2.84438634,0.106182089,1205.47638,3008656476 +2,6238,1467,128,2.39725113,0.106162113,1205.70321,3008656476 +2,6239,1468,128,2.16040301,0.106251262,1204.69157,3008656476 +2,6240,1469,128,2.70567942,0.10607327,1206.71306,3008656476 +2,6241,1470,128,2.01547837,0.118478395,1080.36575,3008656476 +2,6242,1471,128,2.75070524,0.106187217,1205.41816,3008656476 +2,6243,1472,128,2.5843904,0.106238728,1204.8337,3008656476 +2,6244,1473,128,2.79921722,0.106213108,1205.12432,3008656476 +2,6245,1474,128,2.40321755,0.106190492,1205.38099,3008656476 +2,6246,1475,128,2.45489001,0.106161702,1205.70787,3008656476 +2,6247,1476,128,2.18383193,0.106139446,1205.96069,3008656476 +2,6248,1477,128,2.48705101,0.10610062,1206.402,3008656476 +2,6249,1478,128,2.34795547,0.106271217,1204.46536,3008656476 +2,6250,1479,128,2.47406983,0.10629572,1204.18771,3008656476 +2,6251,1480,128,2.2576263,0.120583725,1061.50312,3008656476 +2,6252,1481,128,2.68522263,0.106074089,1206.70374,3008656476 +2,6253,1482,128,2.35094142,0.106141794,1205.93402,3008656476 +2,6254,1483,128,2.32178617,0.106217701,1205.07221,3008656476 +2,6255,1484,128,2.29414296,0.106140341,1205.95053,3008656476 +2,6256,1485,128,2.48681045,0.106076438,1206.67702,3008656476 +2,6257,1486,128,2.57413816,0.10616513,1205.66894,3008656476 +2,6258,1487,128,2.56066656,0.106078924,1206.64874,3008656476 +2,6259,1488,128,2.30267453,0.106060853,1206.85433,3008656476 +2,6260,1489,128,2.04308319,0.10608305,1206.60181,3008656476 +2,6261,1490,128,2.42863584,0.121965319,1049.47866,3008656476 +2,6262,1491,128,2.5003562,0.106026094,1207.24998,3008656476 +2,6263,1492,128,2.80937386,0.106114848,1206.24024,3008656476 +2,6264,1493,128,2.22155857,0.106083576,1206.59583,3008656476 +2,6265,1494,128,1.64560223,0.106073655,1206.70868,3008656476 +2,6266,1495,128,2.15807915,0.106141686,1205.93524,3008656476 +2,6267,1496,128,2.41757941,0.106095938,1206.45524,3008656476 +2,6268,1497,128,2.3019321,0.106203473,1205.23366,3008656476 +2,6269,1498,128,2.29639935,0.106154133,1205.79384,3008656476 +2,6270,1499,128,2.10690904,0.106237192,1204.85112,3008656476 +2,6271,1500,128,2.49157834,0.108142248,1183.62622,3008656476 +2,6272,1501,128,2.86830425,0.106059494,1206.8698,3008656476 +2,6273,1502,128,2.3291347,0.10610188,1206.38767,3008656476 +2,6274,1503,128,2.51282597,0.106383534,1203.19372,3008656476 +2,6275,1504,128,2.57056713,0.106299951,1204.13978,3008656476 +2,6276,1505,128,2.50860763,0.106183388,1205.46163,3008656476 +2,6277,1506,128,2.08872581,0.106318959,1203.9245,3008656476 +2,6278,1507,128,2.3963089,0.106215217,1205.1004,3008656476 +2,6279,1508,128,2.32278419,0.106297141,1204.17162,3008656476 +2,6280,1509,128,2.58331966,0.117900772,1085.65871,3008656476 +2,6281,1510,128,2.64560914,0.106187846,1205.41102,3008656476 +2,6282,1511,128,2.09089494,0.106219523,1205.05154,3008656476 +2,6283,1512,128,2.3386085,0.106090938,1206.5121,3008656476 +2,6284,1513,128,2.62993717,0.106180902,1205.48985,3008656476 +2,6285,1514,128,2.96027708,0.106061127,1206.85122,3008656476 +2,6286,1515,128,2.12242413,0.106240386,1204.8149,3008656476 +2,6287,1516,128,2.59521222,0.106093321,1206.485,3008656476 +2,6288,1517,128,2.7054224,0.106070814,1206.741,3008656476 +2,6289,1518,128,2.69467211,0.106177376,1205.52989,3008656476 +2,6290,1519,128,2.23717713,0.118404845,1081.03684,3008656476 +2,6291,1520,128,2.77128243,0.106180478,1205.49467,3008656476 +2,6292,1521,128,2.03457928,0.106101492,1206.39208,3008656476 +2,6293,1522,128,2.78078508,0.106087238,1206.55418,3008656476 +2,6294,1523,128,2.85499597,0.106179808,1205.50227,3008656476 +2,6295,1524,128,2.78021741,0.106251813,1204.68533,3008656476 +2,6296,1525,128,2.10797668,0.106248512,1204.72275,3008656476 +2,6297,1526,128,1.84381318,0.106034624,1207.15286,3008656476 +2,6298,1527,128,1.93422043,0.106146133,1205.88472,3008656476 +2,6299,1528,128,2.39356637,0.106118945,1206.19367,3008656476 +2,6300,1529,128,2.86672282,0.1205708,1061.61691,3008656476 +2,6301,1530,128,2.67501688,0.106061761,1206.844,3008656476 +2,6302,1531,128,3.18635249,0.106231618,1204.91434,3008656476 +2,6303,1532,128,3.04611754,0.106232258,1204.90708,3008656476 +2,6304,1533,128,2.70408273,0.106200188,1205.27094,3008656476 +2,6305,1534,128,2.6738708,0.106172073,1205.5901,3008656476 +2,6306,1535,128,1.95782518,0.106073844,1206.70653,3008656476 +2,6307,1536,128,2.55094647,0.106153217,1205.80425,3008656476 +2,6308,1537,128,2.20700169,0.106123724,1206.13935,3008656476 +2,6309,1538,128,2.62890506,0.106120561,1206.1753,3008656476 +2,6310,1539,128,2.12483215,0.121362979,1054.68736,3008656476 +2,6311,1540,128,2.80834818,0.10614467,1205.90134,3008656476 +2,6312,1541,128,2.6779561,0.10618185,1205.47909,3008656476 +2,6313,1542,128,2.9950242,0.106091501,1206.50569,3008656476 +2,6314,1543,128,2.43542695,0.106235604,1204.86913,3008656476 +2,6315,1544,128,2.58626819,0.106142936,1205.92104,3008656476 +2,6316,1545,128,2.47553229,0.106092508,1206.49424,3008656476 +2,6317,1546,128,2.35763741,0.106158241,1205.74718,3008656476 +2,6318,1547,128,2.30283451,0.106056426,1206.90471,3008656476 +2,6319,1548,128,2.27103972,0.106062923,1206.83078,3008656476 +2,6320,1549,128,2.64105105,0.114436071,1118.52844,3008656476 +2,6321,1550,128,2.54351926,0.1060839,1206.59214,3008656476 +2,6322,1551,128,2.29192281,0.106081553,1206.61884,3008656476 +2,6323,1552,128,2.42061853,0.106208686,1205.1745,3008656476 +2,6324,1553,128,3.28566742,0.106070649,1206.74288,3008656476 +2,6325,1554,128,3.03087449,0.106064825,1206.80914,3008656476 +2,6326,1555,128,2.35447764,0.105999526,1207.55257,3008656476 +2,6327,1556,128,2.533324,0.106022772,1207.28781,3008656476 +2,6328,1557,128,2.70819402,0.106010801,1207.42414,3008656476 +2,6329,1558,128,2.31040311,0.118092773,1083.89359,3008656476 +2,6330,1559,128,2.28347373,0.104447457,1225.49657,3008656476 +2,6331,1560,128,2.33412886,0.106075039,1206.69293,3008656476 +2,6332,1561,128,2.37887502,0.10608452,1206.58509,3008656476 +2,6333,1562,128,2.88022637,0.10602264,1207.28931,3008656476 +2,6334,1563,128,2.7798233,0.105886847,1208.83758,3008656476 +2,6335,1564,128,2.43411088,0.106066334,1206.79197,3008656476 +2,6336,1565,128,2.29346323,0.106004653,1207.49417,3008656476 +2,6337,1566,128,1.94238555,0.106189701,1205.38997,3008656476 +2,6338,1567,128,1.58659637,0.10594189,1208.20952,3008656476 +2,6339,1568,128,1.49450827,0.11810877,1083.74679,3008656476 +2,6340,1569,128,1.94532418,0.105742532,1210.48738,3008656476 +2,6341,1570,128,2.16568184,0.106095273,1206.4628,3008656476 +2,6342,1571,128,2.460361,0.106088921,1206.53503,3008656476 +2,6343,1572,128,1.8091954,0.106074714,1206.69663,3008656476 +2,6344,1573,128,2.20750046,0.106022855,1207.28686,3008656476 +2,6345,1574,128,2.39698195,0.106073356,1206.71208,3008656476 +2,6346,1575,128,2.68018985,0.10603725,1207.12297,3008656476 +2,6347,1576,128,2.47970915,0.10618614,1205.43039,3008656476 +2,6348,1577,128,2.37887502,0.10600859,1207.44932,3008656476 +2,6349,1578,128,2.3423655,0.118979198,1075.81831,3008656476 +2,6350,1579,128,2.517591,0.1059734,1207.85027,3008656476 +2,6351,1580,128,2.51888633,0.106166472,1205.6537,3008656476 +2,6352,1581,128,2.30666542,0.106028466,1207.22297,3008656476 +2,6353,1582,128,1.99125671,0.106053838,1206.93416,3008656476 +2,6354,1583,128,2.180691,0.106077129,1206.66916,3008656476 +2,6355,1584,128,2.54173374,0.106130328,1206.0643,3008656476 +2,6356,1585,128,2.64573407,0.106043686,1207.04971,3008656476 +2,6357,1586,128,2.35634422,0.106092991,1206.48875,3008656476 +2,6358,1587,128,2.05148745,0.106125509,1206.11907,3008656476 +2,6359,1588,128,2.17827559,0.119813695,1068.32529,3008656476 +2,6360,1589,128,2.49554014,0.10611397,1206.25022,3008656476 +2,6361,1590,128,1.96928751,0.106125017,1206.12466,3008656476 +2,6362,1591,128,1.98219264,0.106156183,1205.77056,3008656476 +2,6363,1592,128,2.55524015,0.106102806,1206.37714,3008656476 +2,6364,1593,128,2.44178438,0.10621518,1205.10082,3008656476 +2,6365,1594,128,2.32196021,0.106096566,1206.4481,3008656476 +2,6366,1595,128,2.18931532,0.10603156,1207.18775,3008656476 +2,6367,1596,128,2.1303122,0.106074399,1206.70021,3008656476 +2,6368,1597,128,1.94200921,0.106108283,1206.31487,3008656476 +2,6369,1598,128,2.23204994,0.119643362,1069.84623,3008656476 +2,6370,1599,128,1.90090668,0.10616815,1205.63465,3008656476 +2,6371,1600,128,1.5900842,0.106019108,1207.32953,3008656476 +2,6372,1601,128,2.18967772,0.106110484,1206.28985,3008656476 +2,6373,1602,128,1.89038575,0.106302051,1204.116,3008656476 +2,6374,1603,128,2.06800032,0.106450622,1202.43544,3008656476 +2,6375,1604,128,1.76793444,0.106283163,1204.32998,3008656476 +2,6376,1605,128,1.70222175,0.106334766,1203.74554,3008656476 +2,6377,1606,128,1.46130419,0.106293735,1204.2102,3008656476 +2,6378,1607,128,2.44355345,0.120255771,1064.39798,3008656476 +2,6379,1608,128,1.96828961,0.098210071,1303.32866,3008656476 +2,6380,1609,128,2.31647849,0.105989842,1207.6629,3008656476 +2,6381,1610,128,2.59480453,0.106015961,1207.36537,3008656476 +2,6382,1611,128,2.57977462,0.106161339,1205.712,3008656476 +2,6383,1612,128,2.79817438,0.106290785,1204.24362,3008656476 +2,6384,1613,128,2.391155,0.106153762,1205.79806,3008656476 +2,6385,1614,128,2.26021528,0.106255531,1204.64317,3008656476 +2,6386,1615,128,2.45688224,0.106117194,1206.21358,3008656476 +2,6387,1616,128,2.01710892,0.106143647,1205.91296,3008656476 +2,6388,1617,128,2.65578771,0.118032611,1084.44606,3008656476 +2,6389,1618,128,1.6085552,0.106993716,1196.33194,3008656476 +2,6390,1619,128,2.68487239,0.106195375,1205.32556,3008656476 +2,6391,1620,128,3.14959335,0.106280888,1204.35576,3008656476 +2,6392,1621,128,2.84052444,0.106265611,1204.5289,3008656476 +2,6393,1622,128,2.36006284,0.106205433,1205.21141,3008656476 +2,6394,1623,128,2.64633393,0.106125465,1206.11957,3008656476 +2,6395,1624,128,2.49766302,0.106230896,1204.92253,3008656476 +2,6396,1625,128,2.20642519,0.106102599,1206.3795,3008656476 +2,6397,1626,128,2.63122773,0.106260911,1204.58218,3008656476 +2,6398,1627,128,2.82425618,0.120458859,1062.60346,3008656476 +2,6399,1628,128,2.52723503,0.106167965,1205.63675,3008656476 +2,6400,1629,128,2.22425365,0.106291764,1204.23253,3008656476 +2,6401,1630,128,2.51176167,0.106129332,1206.07562,3008656476 +2,6402,1631,128,2.48135591,0.106177815,1205.5249,3008656476 +2,6403,1632,128,2.58987522,0.106247396,1204.73541,3008656476 +2,6404,1633,128,2.27884912,0.106068983,1206.76183,3008656476 +2,6405,1634,128,2.55020809,0.106148816,1205.85424,3008656476 +2,6406,1635,128,2.22740388,0.106029943,1207.20616,3008656476 +2,6407,1636,128,2.23780441,0.106142937,1205.92103,3008656476 +2,6408,1637,128,2.42663884,0.119706114,1069.2854,3008656476 +2,6409,1638,128,2.45323825,0.106133672,1206.0263,3008656476 +2,6410,1639,128,2.76177764,0.106077084,1206.66967,3008656476 +2,6411,1640,128,2.06622815,0.106107449,1206.32436,3008656476 +2,6412,1641,128,1.89687169,0.106061939,1206.84198,3008656476 +2,6413,1642,128,2.52884007,0.106177336,1205.53034,3008656476 +2,6414,1643,128,2.0650034,0.106130014,1206.06787,3008656476 +2,6415,1644,128,2.18233633,0.106093,1206.48865,3008656476 +2,6416,1645,128,1.62026298,0.10610968,1206.29899,3008656476 +2,6417,1646,128,2.57617378,0.106087938,1206.54621,3008656476 +2,6418,1647,128,2.29457188,0.118538931,1079.81402,3008656476 +2,6419,1648,128,2.01157713,0.106189255,1205.39503,3008656476 +2,6420,1649,128,2.13431764,0.106095621,1206.45884,3008656476 +2,6421,1650,128,2.01963854,0.106131369,1206.05247,3008656476 +2,6422,1651,128,2.26702261,0.106092904,1206.48974,3008656476 +2,6423,1652,128,2.33379841,0.106097997,1206.43182,3008656476 +2,6424,1653,128,2.02813792,0.105982992,1207.74096,3008656476 +2,6425,1654,128,1.88095629,0.106233068,1204.89789,3008656476 +2,6426,1655,128,2.0952754,0.106043805,1207.04835,3008656476 +2,6427,1656,128,2.35446262,0.106059492,1206.86982,3008656476 +2,6428,1657,128,2.44567084,0.108716818,1177.37074,3008656476 +2,6429,1658,128,2.33647275,0.106144073,1205.90812,3008656476 +2,6430,1659,128,2.40012789,0.106127218,1206.09965,3008656476 +2,6431,1660,128,1.8124944,0.106148721,1205.85532,3008656476 +2,6432,1661,128,1.9301542,0.106105316,1206.34861,3008656476 +2,6433,1662,128,2.32871723,0.106056489,1206.90399,3008656476 +2,6434,1663,128,2.29491329,0.106099438,1206.41544,3008656476 +2,6435,1664,128,2.4268353,0.106161485,1205.71034,3008656476 +2,6436,1665,128,2.66353393,0.10608342,1206.5976,3008656476 +2,6437,1666,128,2.74322081,0.116580025,1097.95825,3008656476 +2,6438,1667,128,2.50297308,0.104337977,1226.78246,3008656476 +2,6439,1668,128,2.71893907,0.106203453,1205.23388,3008656476 +2,6440,1669,128,2.64290071,0.106129504,1206.07367,3008656476 +2,6441,1670,128,2.45248771,0.106123543,1206.14141,3008656476 +2,6442,1671,128,1.74921775,0.10596391,1207.95845,3008656476 +2,6443,1672,128,2.52034307,0.10621134,1205.14438,3008656476 +2,6444,1673,128,2.41967821,0.105968308,1207.90831,3008656476 +2,6445,1674,128,2.45960546,0.106143592,1205.91359,3008656476 +2,6446,1675,128,2.28939247,0.106145653,1205.89017,3008656476 +2,6447,1676,128,2.3703053,0.119863533,1067.88109,3008656476 +2,6448,1677,128,2.9416573,0.105802005,1209.80694,3008656476 +2,6449,1678,128,2.83984661,0.106056202,1206.90726,3008656476 +2,6450,1679,128,2.59679961,0.106099047,1206.41988,3008656476 +2,6451,1680,128,2.77986169,0.106175876,1205.54692,3008656476 +2,6452,1681,128,2.73774314,0.106095746,1206.45742,3008656476 +2,6453,1682,128,2.88917089,0.105961771,1207.98283,3008656476 +2,6454,1683,128,2.56728625,0.106143833,1205.91085,3008656476 +2,6455,1684,128,2.22127271,0.106122573,1206.15244,3008656476 +2,6456,1685,128,2.02961516,0.106111707,1206.27595,3008656476 +2,6457,1686,128,2.68839049,0.121176409,1056.31122,3008656476 +2,6458,1687,128,2.2049315,0.106132003,1206.04527,3008656476 +2,6459,1688,128,2.24742198,0.10609691,1206.44418,3008656476 +2,6460,1689,128,2.28547049,0.106074507,1206.69899,3008656476 +2,6461,1690,128,2.29962111,0.106073882,1206.7061,3008656476 +2,6462,1691,128,2.60224628,0.106078005,1206.65919,3008656476 +2,6463,1692,128,2.35198665,0.106171786,1205.59336,3008656476 +2,6464,1693,128,2.31599879,0.106069251,1206.75878,3008656476 +2,6465,1694,128,2.44514012,0.106278439,1204.38352,3008656476 +2,6466,1695,128,2.59538007,0.106588703,1200.87773,3008656476 +2,6467,1696,128,2.492167,0.119214851,1073.69173,3008656476 +2,6468,1697,128,2.53337288,0.106017429,1207.34865,3008656476 +2,6469,1698,128,2.49457312,0.105977347,1207.80529,3008656476 +2,6470,1699,128,2.47640967,0.105957171,1208.03527,3008656476 +2,6471,1700,128,2.33173347,0.106045757,1207.02613,3008656476 +2,6472,1701,128,2.58749366,0.10597392,1207.84435,3008656476 +2,6473,1702,128,1.65891933,0.106015889,1207.36619,3008656476 +2,6474,1703,128,1.82959604,0.106237568,1204.84686,3008656476 +2,6475,1704,128,1.74910665,0.106048856,1206.99086,3008656476 +2,6476,1705,128,1.87939811,0.105928064,1208.36722,3008656476 +2,6477,1706,128,2.23589206,0.11794587,1085.2436,3008656476 +2,6478,1707,128,2.30537915,0.10609105,1206.51082,3008656476 +2,6479,1708,128,2.89788318,0.1060054,1207.48566,3008656476 +2,6480,1709,128,2.19353628,0.105923787,1208.41601,3008656476 +2,6481,1710,128,2.63188815,0.10615808,1205.74901,3008656476 +2,6482,1711,128,2.20512748,0.106033698,1207.16341,3008656476 +2,6483,1712,128,2.03793526,0.106152033,1205.8177,3008656476 +2,6484,1713,128,2.26442695,0.1061253,1206.12144,3008656476 +2,6485,1714,128,2.47392941,0.106293178,1204.21651,3008656476 +2,6486,1715,128,2.12081718,0.121795402,1050.94279,3008656476 +2,6487,1716,128,2.3006022,0.094791491,1350.33217,3008656476 +2,6488,1717,128,2.72768855,0.106077558,1206.66428,3008656476 +2,6489,1718,128,1.83299148,0.106095114,1206.46461,3008656476 +2,6490,1719,128,2.3044796,0.106048635,1206.99338,3008656476 +2,6491,1720,128,2.96189356,0.106043835,1207.04801,3008656476 +2,6492,1721,128,2.65002561,0.106109137,1206.30516,3008656476 +2,6493,1722,128,2.47074556,0.106073127,1206.71468,3008656476 +2,6494,1723,128,2.71279597,0.106114082,1206.24895,3008656476 +2,6495,1724,128,2.71931481,0.106073213,1206.71371,3008656476 +2,6496,1725,128,1.94493544,0.113338883,1129.35646,3008656476 +2,6497,1726,128,2.91670179,0.106208917,1205.17188,3008656476 +2,6498,1727,128,2.47596121,0.106017734,1207.34518,3008656476 +2,6499,1728,128,2.39775109,0.106072959,1206.7166,3008656476 +2,6500,1729,128,2.51102996,0.106250981,1204.69476,3008656476 +2,6501,1730,128,2.2241466,0.106104167,1206.36167,3008656476 +2,6502,1731,128,2.10009789,0.106275817,1204.41323,3008656476 +2,6503,1732,128,2.65162659,0.106170401,1205.60908,3008656476 +2,6504,1733,128,1.93091357,0.106183476,1205.46063,3008656476 +2,6505,1734,128,2.34165764,0.106228762,1204.94674,3008656476 +2,6506,1735,128,1.79142022,0.120494205,1062.29175,3008656476 +2,6507,1736,128,2.05017996,0.106083646,1206.59503,3008656476 +2,6508,1737,128,1.59896719,0.106054826,1206.92292,3008656476 +2,6509,1738,128,1.91710734,0.10599521,1207.60174,3008656476 +2,6510,1739,128,1.53261065,0.106048996,1206.98927,3008656476 +2,6511,1740,128,1.5111227,0.106070022,1206.75001,3008656476 +2,6512,1741,128,1.93159926,0.106036388,1207.13278,3008656476 +2,6513,1742,128,2.03080726,0.106065761,1206.79849,3008656476 +2,6514,1743,128,2.25561213,0.106040936,1207.08101,3008656476 +2,6515,1744,128,2.45395732,0.105931776,1208.32488,3008656476 +2,6516,1745,128,1.57927752,0.118548983,1079.72246,3008656476 +2,6517,1746,128,2.85502124,0.106111808,1206.2748,3008656476 +2,6518,1747,128,2.82555175,0.10607248,1206.72205,3008656476 +2,6519,1748,128,2.18406153,0.106010835,1207.42375,3008656476 +2,6520,1749,128,3.15766764,0.106106878,1206.33085,3008656476 +2,6521,1750,128,2.1287086,0.106077662,1206.6631,3008656476 +2,6522,1751,128,2.62564111,0.106151131,1205.82794,3008656476 +2,6523,1752,128,2.26469827,0.106110243,1206.29259,3008656476 +2,6524,1753,128,2.58334494,0.106148701,1205.85555,3008656476 +2,6525,1754,128,2.54054856,0.106062369,1206.83708,3008656476 +2,6526,1755,128,2.98697543,0.119143467,1074.33503,3008656476 +2,6527,1756,128,2.22834373,0.106152244,1205.8153,3008656476 +2,6528,1757,128,2.21183491,0.106170865,1205.60382,3008656476 +2,6529,1758,128,2.1370542,0.106037018,1207.12561,3008656476 +2,6530,1759,128,2.42989016,0.106161861,1205.70607,3008656476 +2,6531,1760,128,2.74164987,0.106132715,1206.03718,3008656476 +2,6532,1761,128,1.95450127,0.106141281,1205.93985,3008656476 +2,6533,1762,128,2.89781499,0.106054299,1206.92891,3008656476 +2,6534,1763,128,2.13132691,0.106039129,1207.10158,3008656476 +2,6535,1764,128,2.15864873,0.106083392,1206.59792,3008656476 +2,6536,1765,128,1.70683098,0.112759014,1135.16424,3008656476 +2,6537,1766,128,2.70146132,0.10609255,1206.49376,3008656476 +2,6538,1767,128,2.62219119,0.105996686,1207.58492,3008656476 +2,6539,1768,128,2.48828506,0.106098771,1206.42302,3008656476 +2,6540,1769,128,1.98349082,0.106209764,1205.16227,3008656476 +2,6541,1770,128,1.97001493,0.106025861,1207.25263,3008656476 +2,6542,1771,128,1.98248971,0.106201586,1205.25507,3008656476 +2,6543,1772,128,1.77056599,0.105994714,1207.60739,3008656476 +2,6544,1773,128,2.00886917,0.106039925,1207.09252,3008656476 +2,6545,1774,128,1.73525441,0.120330005,1063.74133,3008656476 +2,6546,1775,128,2.04978514,0.104521709,1224.62598,3008656476 +2,6547,1776,128,2.28923202,0.106034044,1207.15947,3008656476 +2,6548,1777,128,2.08215642,0.106011761,1207.4132,3008656476 +2,6549,1778,128,1.69246328,0.105987576,1207.68872,3008656476 +2,6550,1779,128,2.00403357,0.106069923,1206.75114,3008656476 +2,6551,1780,128,1.82114244,0.10597152,1207.8717,3008656476 +2,6552,1781,128,1.3722744,0.105997032,1207.58098,3008656476 +2,6553,1782,128,1.53616178,0.106029067,1207.21613,3008656476 +2,6554,1783,128,1.7304976,0.106074697,1206.69682,3008656476 +2,6555,1784,128,1.98297596,0.120129604,1065.51587,3008656476 +2,6556,1785,128,1.91593981,0.106117606,1206.20889,3008656476 +2,6557,1786,128,1.43368411,0.106098638,1206.42453,3008656476 +2,6558,1787,128,1.70941865,0.106033177,1207.16934,3008656476 +2,6559,1788,128,1.43487573,0.106083673,1206.59472,3008656476 +2,6560,1789,128,1.96681798,0.106100481,1206.40358,3008656476 +2,6561,1790,128,1.46117091,0.10609041,1206.5181,3008656476 +2,6562,1791,128,2.10675311,0.106050892,1206.96769,3008656476 +2,6563,1792,128,2.10412216,0.106281125,1204.35308,3008656476 +2,6564,1793,128,1.65585411,0.106124791,1206.12723,3008656476 +2,6565,1794,128,1.98642135,0.118478614,1080.36375,3008656476 +2,6566,1795,128,1.33888888,0.105983587,1207.73417,3008656476 +2,6567,1796,128,2.26201582,0.10602362,1207.27815,3008656476 +2,6568,1797,128,2.36091447,0.105890993,1208.79025,3008656476 +2,6569,1798,128,2.30003905,0.106044846,1207.0365,3008656476 +2,6570,1799,128,1.77243233,0.106026154,1207.2493,3008656476 +2,6571,1800,128,1.68286145,0.106142013,1205.93153,3008656476 +2,6572,1801,128,1.86914051,0.10598851,1207.67808,3008656476 +2,6573,1802,128,1.7775799,0.106044064,1207.0454,3008656476 +2,6574,1803,128,2.23221135,0.10602757,1207.23318,3008656476 +2,6575,1804,128,1.92068219,0.118070067,1084.10204,3008656476 +2,6576,1805,128,2.59656596,0.106137022,1205.98824,3008656476 +2,6577,1806,128,1.94527602,0.105989606,1207.66559,3008656476 +2,6578,1807,128,2.26638341,0.105938807,1208.24468,3008656476 +2,6579,1808,128,2.15283084,0.105968059,1207.91115,3008656476 +2,6580,1809,128,3.00555515,0.106006771,1207.47004,3008656476 +2,6581,1810,128,2.25439477,0.105908794,1208.58708,3008656476 +2,6582,1811,128,1.80238354,0.105978431,1207.79293,3008656476 +2,6583,1812,128,1.5387522,0.106148914,1205.85313,3008656476 +2,6584,1813,128,1.54718041,0.105927192,1208.37717,3008656476 +2,6585,1814,128,2.60092759,0.120861189,1059.0662,3008656476 +2,6586,1815,128,2.38780975,0.105976407,1207.816,3008656476 +2,6587,1816,128,2.21804857,0.106030384,1207.20114,3008656476 +2,6588,1817,128,2.27758145,0.105981251,1207.7608,3008656476 +2,6589,1818,128,1.55867445,0.106080781,1206.62762,3008656476 +2,6590,1819,128,1.46210623,0.105951629,1208.09846,3008656476 +2,6591,1820,128,2.08666229,0.106103855,1206.36522,3008656476 +2,6592,1821,128,2.62751293,0.10603633,1207.13344,3008656476 +2,6593,1822,128,2.89704323,0.106090869,1206.51288,3008656476 +2,6594,1823,128,2.39433646,0.106028347,1207.22433,3008656476 +2,6595,1824,128,2.25707126,0.107905589,1186.22215,3008656476 +2,6596,1825,128,1.87535071,0.106030337,1207.20167,3008656476 +2,6597,1826,128,2.40241194,0.106131632,1206.04948,3008656476 +2,6598,1827,128,1.93506086,0.106304186,1204.09181,3008656476 +2,6599,1828,128,1.8956511,0.106031629,1207.18696,3008656476 +2,6600,1829,128,2.03305316,0.106127568,1206.09567,3008656476 +2,6601,1830,128,2.03313041,0.106226005,1204.97801,3008656476 +2,6602,1831,128,2.39824963,0.106090882,1206.51273,3008656476 +2,6603,1832,128,1.93591297,0.106130148,1206.06635,3008656476 +2,6604,1833,128,2.16466761,0.116010955,1103.34408,3008656476 +2,6605,1834,128,2.36319494,0.105124285,1217.60638,3008656476 +2,6606,1835,128,2.22599983,0.106195624,1205.32274,3008656476 +2,6607,1836,128,1.70392978,0.106129849,1206.06975,3008656476 +2,6608,1837,128,2.21479869,0.106077674,1206.66296,3008656476 +2,6609,1838,128,2.54974985,0.106018479,1207.33669,3008656476 +2,6610,1839,128,2.30723143,0.106257834,1204.61706,3008656476 +2,6611,1840,128,2.44358349,0.105942434,1208.20332,3008656476 +2,6612,1841,128,2.66856813,0.105962586,1207.97354,3008656476 +2,6613,1842,128,2.30741239,0.106105493,1206.34659,3008656476 +2,6614,1843,128,2.25267959,0.119106599,1074.66758,3008656476 +2,6615,1844,128,2.45144844,0.105918742,1208.47357,3008656476 +2,6616,1845,128,1.91618454,0.106137692,1205.98062,3008656476 +2,6617,1846,128,1.81027782,0.106172925,1205.58042,3008656476 +2,6618,1847,128,1.47494578,0.106077203,1206.66832,3008656476 +2,6619,1848,128,2.20527816,0.106076136,1206.68045,3008656476 +2,6620,1849,128,2.42271471,0.168169056,761.138839,3008656476 +2,6621,1850,128,2.46119952,0.106137163,1205.98663,3008656476 +2,6622,1851,128,2.08354497,0.10610343,1206.37005,3008656476 +2,6623,1852,128,1.70223558,0.10604109,1207.07926,3008656476 +2,6624,1853,128,2.24522877,0.109746224,1166.32714,3008656476 +2,6625,1854,128,2.61922431,0.106004362,1207.49748,3008656476 +2,6626,1855,128,2.2130599,0.10607946,1206.64264,3008656476 +2,6627,1856,128,2.09491777,0.105989742,1207.66404,3008656476 +2,6628,1857,128,1.50187778,0.10599509,1207.60311,3008656476 +2,6629,1858,128,2.2177527,0.106151406,1205.82482,3008656476 +2,6630,1859,128,1.86213851,0.106052384,1206.95071,3008656476 +2,6631,1860,128,2.2017498,0.106029697,1207.20896,3008656476 +2,6632,1861,128,2.5572021,0.106173891,1205.56946,3008656476 +2,6633,1862,128,2.27836633,0.116557975,1098.16596,3008656476 +2,6634,1863,128,2.05090237,0.104670092,1222.88992,3008656476 +2,6635,1864,128,2.47331691,0.105957361,1208.03311,3008656476 +2,6636,1865,128,2.36516762,0.106166819,1205.64976,3008656476 +2,6637,1866,128,2.20823669,0.106049485,1206.9837,3008656476 +2,6638,1867,128,2.89862299,0.106083295,1206.59902,3008656476 +2,6639,1868,128,2.27850461,0.106027286,1207.23641,3008656476 +2,6640,1869,128,2.08857036,0.106016634,1207.35771,3008656476 +2,6641,1870,128,2.29618621,0.106110126,1206.29392,3008656476 +2,6642,1871,128,2.03198361,0.105852406,1209.2309,3008656476 +2,6643,1872,128,2.46714759,0.121086413,1057.09631,3008656476 +2,6644,1873,128,2.42292094,0.105811262,1209.7011,3008656476 +2,6645,1874,128,2.60160851,0.106053658,1206.93621,3008656476 +2,6646,1875,128,2.03806233,0.105973007,1207.85475,3008656476 +2,6647,1876,128,2.04743838,0.106121061,1206.16962,3008656476 +2,6648,1877,128,1.89764667,0.105926854,1208.38102,3008656476 +2,6649,1878,128,2.01056671,0.105967447,1207.91813,3008656476 +2,6650,1879,128,1.38780558,0.106018549,1207.3359,3008656476 +2,6651,1880,128,2.0573926,0.106034454,1207.1548,3008656476 +2,6652,1881,128,1.9208529,0.106129355,1206.07536,3008656476 +2,6653,1882,128,2.12891722,0.119472976,1071.37199,3008656476 +2,6654,1883,128,1.84943116,0.105857231,1209.17578,3008656476 +2,6655,1884,128,2.08871651,0.106093443,1206.48361,3008656476 +2,6656,1885,128,1.94207513,0.106096071,1206.45372,3008656476 +2,6657,1886,128,2.14347649,0.106218725,1205.0606,3008656476 +2,6658,1887,128,1.9275192,0.10612409,1206.1352,3008656476 +2,6659,1888,128,1.91008687,0.106320407,1203.90811,3008656476 +2,6660,1889,128,2.45369148,0.106136753,1205.99129,3008656476 +2,6661,1890,128,2.41284466,0.106243358,1204.7812,3008656476 +2,6662,1891,128,2.20797491,0.106206616,1205.19799,3008656476 +2,6663,1892,128,1.97827959,0.118363748,1081.41219,3008656476 +2,6664,1893,128,1.77212191,0.106116877,1206.21718,3008656476 +2,6665,1894,128,1.90862548,0.106052137,1206.95352,3008656476 +2,6666,1895,128,1.95002699,0.105983702,1207.73286,3008656476 +2,6667,1896,128,2.33783722,0.106198666,1205.28821,3008656476 +2,6668,1897,128,2.18367577,0.106027891,1207.22952,3008656476 +2,6669,1898,128,2.65708089,0.106036254,1207.13431,3008656476 +2,6670,1899,128,3.50699544,0.106039094,1207.10198,3008656476 +2,6671,1900,128,2.72849035,0.106050254,1206.97495,3008656476 +2,6672,1901,128,2.06757212,0.106039551,1207.09677,3008656476 +2,6673,1902,128,2.06655169,0.118648872,1078.81346,3008656476 +2,6674,1903,128,2.56153488,0.106035115,1207.14727,3008656476 +2,6675,1904,128,1.74463248,0.106102754,1206.37773,3008656476 +2,6676,1905,128,2.28648019,0.106472612,1202.18709,3008656476 +2,6677,1906,128,1.99673462,0.106154196,1205.79313,3008656476 +2,6678,1907,128,1.8671664,0.106067333,1206.7806,3008656476 +2,6679,1908,128,2.01202679,0.106095546,1206.45969,3008656476 +2,6680,1909,128,1.98324442,0.106164674,1205.67412,3008656476 +2,6681,1910,128,2.20478797,0.1060166,1207.35809,3008656476 +2,6682,1911,128,1.77762961,0.106049655,1206.98177,3008656476 +2,6683,1912,128,2.02430272,0.107972469,1185.48739,3008656476 +2,6684,1913,128,2.20595121,0.105999402,1207.55398,3008656476 +2,6685,1914,128,2.17989707,0.106145516,1205.89173,3008656476 +2,6686,1915,128,1.48312688,0.106056141,1206.90795,3008656476 +2,6687,1916,128,2.41723275,0.106217645,1205.07285,3008656476 +2,6688,1917,128,1.98923635,0.106079718,1206.63971,3008656476 +2,6689,1918,128,2.30992389,0.10597043,1207.88412,3008656476 +2,6690,1919,128,1.83228922,0.105994218,1207.61304,3008656476 +2,6691,1920,128,1.94867897,0.106062912,1206.8309,3008656476 +2,6692,1921,128,2.09765196,0.117551907,1088.88068,3008656476 +2,6693,1922,128,2.51850629,0.104001849,1230.74735,3008656476 +2,6694,1923,128,2.09780788,0.106105601,1206.34537,3008656476 +2,6695,1924,128,2.19447732,0.106163602,1205.6863,3008656476 +2,6696,1925,128,1.76592791,0.106074489,1206.69919,3008656476 +2,6697,1926,128,2.05416298,0.106136336,1205.99603,3008656476 +2,6698,1927,128,2.08935213,0.106069634,1206.75442,3008656476 +2,6699,1928,128,2.17177439,0.105971963,1207.86665,3008656476 +2,6700,1929,128,2.60279036,0.105962858,1207.97044,3008656476 +2,6701,1930,128,2.30827904,0.106123967,1206.13659,3008656476 +2,6702,1931,128,1.66850746,0.118516413,1080.01919,3008656476 +2,6703,1932,128,1.47651279,0.106328925,1203.81166,3008656476 +2,6704,1933,128,1.72873843,0.106048733,1206.99226,3008656476 +2,6705,1934,128,1.84965074,0.10612043,1206.17679,3008656476 +2,6706,1935,128,1.63157153,0.106042581,1207.06228,3008656476 +2,6707,1936,128,2.06538796,0.106060856,1206.8543,3008656476 +2,6708,1937,128,2.01468539,0.106048896,1206.99041,3008656476 +2,6709,1938,128,2.20372462,0.106106702,1206.33285,3008656476 +2,6710,1939,128,1.9381479,0.105976988,1207.80938,3008656476 +2,6711,1940,128,1.95853746,0.106144625,1205.90185,3008656476 +2,6712,1941,128,1.54504371,0.118425233,1080.85073,3008656476 +2,6713,1942,128,2.38442993,0.105858642,1209.15966,3008656476 +2,6714,1943,128,2.17250919,0.106128663,1206.08322,3008656476 +2,6715,1944,128,1.9798708,0.106057235,1206.8955,3008656476 +2,6716,1945,128,2.2155292,0.106000051,1207.54659,3008656476 +2,6717,1946,128,1.54429519,0.106082854,1206.60404,3008656476 +2,6718,1947,128,1.82582951,0.106076879,1206.672,3008656476 +2,6719,1948,128,2.3340807,0.106149817,1205.84287,3008656476 +2,6720,1949,128,2.05666399,0.106018989,1207.33089,3008656476 +2,6721,1950,128,2.67616034,0.106063275,1206.82677,3008656476 +2,6722,1951,128,2.58463669,0.119858805,1067.92321,3008656476 +2,6723,1952,128,2.17865515,0.106060625,1206.85693,3008656476 +2,6724,1953,128,2.10863209,0.106022103,1207.29543,3008656476 +2,6725,1954,128,2.07018065,0.10611887,1206.19453,3008656476 +2,6726,1955,128,2.13048077,0.106076075,1206.68115,3008656476 +2,6727,1956,128,2.64520001,0.106096537,1206.44843,3008656476 +2,6728,1957,128,2.02209091,0.106052379,1206.95077,3008656476 +2,6729,1958,128,2.14516521,0.106093166,1206.48676,3008656476 +2,6730,1959,128,1.516922,0.105993218,1207.62443,3008656476 +2,6731,1960,128,2.33966303,0.106102913,1206.37593,3008656476 +2,6732,1961,128,2.20714569,0.121295791,1055.27157,3008656476 +2,6733,1962,128,2.14281726,0.106011284,1207.41864,3008656476 +2,6734,1963,128,1.93269455,0.106043616,1207.0505,3008656476 +2,6735,1964,128,1.74108076,0.106067998,1206.77304,3008656476 +2,6736,1965,128,1.91577375,0.106097538,1206.43704,3008656476 +2,6737,1966,128,2.31671333,0.105919597,1208.46381,3008656476 +2,6738,1967,128,2.38715005,0.106113728,1206.25297,3008656476 +2,6739,1968,128,2.62919998,0.105921132,1208.4463,3008656476 +2,6740,1969,128,2.01460218,0.106084838,1206.58147,3008656476 +2,6741,1970,128,2.1480937,0.105990542,1207.65492,3008656476 +2,6742,1971,128,2.25980401,0.107873434,1186.57574,3008656476 +2,6743,1972,128,2.56832194,0.105975132,1207.83053,3008656476 +2,6744,1973,128,2.23282695,0.105963014,1207.96866,3008656476 +2,6745,1974,128,1.07922697,0.1058875,1208.83013,3008656476 +2,6746,1975,128,1.68756032,0.105966145,1207.93297,3008656476 +2,6747,1976,128,2.01862907,0.105919423,1208.4658,3008656476 +2,6748,1977,128,1.82159829,0.10598412,1207.7281,3008656476 +2,6749,1978,128,1.98204446,0.106055074,1206.9201,3008656476 +2,6750,1979,128,2.18882155,0.106103551,1206.36867,3008656476 +2,6751,1980,128,2.46090078,0.116464896,1099.04361,3008656476 +2,6752,1981,128,2.37003779,0.105017819,1218.84078,3008656476 +2,6753,1982,128,2.09225202,0.106017065,1207.3528,3008656476 +2,6754,1983,128,2.27896643,0.106073131,1206.71464,3008656476 +2,6755,1984,128,1.91258216,0.106051971,1206.95541,3008656476 +2,6756,1985,128,1.74059987,0.105950985,1208.1058,3008656476 +2,6757,1986,128,1.68897939,0.105866321,1209.07196,3008656476 +2,6758,1987,128,2.16526365,0.105996244,1207.58996,3008656476 +2,6759,1988,128,2.39792323,0.106066383,1206.79141,3008656476 +2,6760,1989,128,2.35013652,0.106107124,1206.32805,3008656476 +2,6761,1990,128,1.8717798,0.118220006,1082.72706,3008656476 +2,6762,1991,128,1.6357187,0.10571901,1210.7567,3008656476 +2,6763,1992,128,1.58541977,0.105897154,1208.71992,3008656476 +2,6764,1993,128,1.96382046,0.106033452,1207.16621,3008656476 +2,6765,1994,128,1.98095798,0.105926255,1208.38785,3008656476 +2,6766,1995,128,1.95588148,0.106149581,1205.84555,3008656476 +2,6767,1996,128,2.00030732,0.106054502,1206.9266,3008656476 +2,6768,1997,128,2.55777454,0.106041872,1207.07035,3008656476 +2,6769,1998,128,2.37616348,0.10596264,1207.97292,3008656476 +2,6770,1999,128,2.61470485,0.106082678,1206.60604,3008656476 +2,6771,2000,128,2.1819675,0.119604209,1070.19645,3008656476 +2,6772,2001,128,1.69881582,0.105836484,1209.41281,3008656476 +2,6773,2002,128,2.26839519,0.105989807,1207.6633,3008656476 +2,6774,2003,128,2.25997305,0.106080453,1206.63135,3008656476 +2,6775,2004,128,1.94117081,0.106002493,1207.51877,3008656476 +2,6776,2005,128,1.79454565,0.106084471,1206.58565,3008656476 +2,6777,2006,128,1.99736369,0.105948677,1208.13212,3008656476 +2,6778,2007,128,1.88699377,0.10642012,1202.78008,3008656476 +2,6779,2008,128,2.03111839,0.106016852,1207.35522,3008656476 +2,6780,2009,128,1.85196114,0.106029528,1207.21088,3008656476 +2,6781,2010,128,1.92577553,0.120759276,1059.95998,3008656476 +2,6782,2011,128,2.39132762,0.106086113,1206.56697,3008656476 +2,6783,2012,128,2.59957004,0.106096951,1206.44372,3008656476 +2,6784,2013,128,2.1665647,0.106196991,1205.30722,3008656476 +2,6785,2014,128,2.46005845,0.106112657,1206.26515,3008656476 +2,6786,2015,128,2.0827899,0.106135016,1206.01103,3008656476 +2,6787,2016,128,2.28771067,0.106155873,1205.77408,3008656476 +2,6788,2017,128,2.94492531,0.106222382,1205.01911,3008656476 +2,6789,2018,128,2.11079288,0.106088947,1206.53474,3008656476 +2,6790,2019,128,2.40084052,0.106203467,1205.23372,3008656476 +2,6791,2020,128,2.01496005,0.119693083,1069.40181,3008656476 +2,6792,2021,128,2.68356037,0.106057544,1206.89199,3008656476 +2,6793,2022,128,2.49903989,0.106109971,1206.29568,3008656476 +2,6794,2023,128,2.58396888,0.106104046,1206.36304,3008656476 +2,6795,2024,128,2.56297898,0.105998087,1207.56896,3008656476 +2,6796,2025,128,2.4227047,0.106165297,1205.66705,3008656476 +2,6797,2026,128,1.77713907,0.106021241,1207.30524,3008656476 +2,6798,2027,128,2.41163373,0.106189726,1205.38968,3008656476 +2,6799,2028,128,2.23392844,0.106008247,1207.45323,3008656476 +2,6800,2029,128,2.5738337,0.106167094,1205.64664,3008656476 +2,6801,2030,128,2.32312179,0.107799429,1187.39033,3008656476 +2,6802,2031,128,2.14455485,0.106116425,1206.22232,3008656476 +2,6803,2032,128,2.09498,0.106080723,1206.62828,3008656476 +2,6804,2033,128,2.0577538,0.106002716,1207.51623,3008656476 +2,6805,2034,128,2.0899663,0.106022559,1207.29023,3008656476 +2,6806,2035,128,2.11827731,0.106141559,1205.93669,3008656476 +2,6807,2036,128,1.82662165,0.105977065,1207.8085,3008656476 +2,6808,2037,128,2.03131485,0.10613829,1205.97383,3008656476 +2,6809,2038,128,2.2428391,0.10608166,1206.61762,3008656476 +2,6810,2039,128,2.52605319,0.115301741,1110.13068,3008656476 +2,6811,2040,128,2.14810514,0.104946707,1219.66666,3008656476 +2,6812,2041,128,2.75533533,0.106062718,1206.83311,3008656476 +2,6813,2042,128,2.56125164,0.106058757,1206.87818,3008656476 +2,6814,2043,128,2.46103597,0.106165178,1205.6684,3008656476 +2,6815,2044,128,2.20534015,0.106070413,1206.74556,3008656476 +2,6816,2045,128,2.20268893,0.106134043,1206.02209,3008656476 +2,6817,2046,128,2.0496223,0.106020227,1207.31679,3008656476 +2,6818,2047,128,2.37220788,0.106120675,1206.17401,3008656476 +2,6819,2048,128,2.43060827,0.10612749,1206.09655,3008656476 +2,6820,2049,128,2.06621432,0.118078246,1084.02694,3008656476 +2,6821,2050,128,2.49311638,0.105808066,1209.73764,3008656476 +2,6822,2051,128,2.17089605,0.106137822,1205.97915,3008656476 +2,6823,2052,128,1.91944528,0.106122855,1206.14923,3008656476 +2,6824,2053,128,2.40930963,0.106120076,1206.18082,3008656476 +2,6825,2054,128,2.52248359,0.10609455,1206.47102,3008656476 +2,6826,2055,128,2.09368396,0.106197988,1205.2959,3008656476 +2,6827,2056,128,2.08446908,0.105914078,1208.52678,3008656476 +2,6828,2057,128,2.27605009,0.106131891,1206.04654,3008656476 +2,6829,2058,128,1.91051984,0.105922786,1208.42743,3008656476 +2,6830,2059,128,2.29949117,0.120401238,1063.11199,3008656476 +2,6831,2060,128,1.79389155,0.106108435,1206.31315,3008656476 +2,6832,2061,128,2.55904865,0.106052824,1206.9457,3008656476 +2,6833,2062,128,2.42145038,0.106078084,1206.6583,3008656476 +2,6834,2063,128,1.74969339,0.106043834,1207.04802,3008656476 +2,6835,2064,128,2.08907795,0.106014875,1207.37774,3008656476 +2,6836,2065,128,2.02718687,0.106088354,1206.54148,3008656476 +2,6837,2066,128,2.08698344,0.105887094,1208.83476,3008656476 +2,6838,2067,128,1.82652175,0.106096322,1206.45087,3008656476 +2,6839,2068,128,1.8292681,0.106016079,1207.36403,3008656476 +2,6840,2069,128,1.96297097,0.120410397,1063.03113,3008656476 +2,6841,2070,128,1.7114917,0.106083316,1206.59878,3008656476 +2,6842,2071,128,2.30586672,0.10602221,1207.29421,3008656476 +2,6843,2072,128,2.02390671,0.105965765,1207.9373,3008656476 +2,6844,2073,128,2.15074921,0.106079248,1206.64505,3008656476 +2,6845,2074,128,1.95744109,0.105924512,1208.40774,3008656476 +2,6846,2075,128,2.52744508,0.10598538,1207.71374,3008656476 +2,6847,2076,128,2.12467766,0.106252129,1204.68174,3008656476 +2,6848,2077,128,2.0512538,0.106235557,1204.86967,3008656476 +2,6849,2078,128,1.71862841,0.106235795,1204.86697,3008656476 +2,6850,2079,128,2.54291582,0.118425941,1080.84427,3008656476 +2,6851,2080,128,2.25799346,0.106122049,1206.15839,3008656476 +2,6852,2081,128,1.91849923,0.10602966,1207.20938,3008656476 +2,6853,2082,128,2.16787386,0.10606663,1206.7886,3008656476 +2,6854,2083,128,2.28465915,0.106091418,1206.50664,3008656476 +2,6855,2084,128,1.81096864,0.106036112,1207.13592,3008656476 +2,6856,2085,128,2.05500317,0.106039962,1207.0921,3008656476 +2,6857,2086,128,2.0639379,0.106118382,1206.20007,3008656476 +2,6858,2087,128,1.79657257,0.10603366,1207.16384,3008656476 +2,6859,2088,128,1.88282812,0.105996366,1207.58857,3008656476 +2,6860,2089,128,2.00080681,0.107951602,1185.71654,3008656476 +2,6861,2090,128,2.09025097,0.105979785,1207.7775,3008656476 +2,6862,2091,128,1.81205225,0.106287451,1204.2814,3008656476 +2,6863,2092,128,1.62070084,0.106139046,1205.96524,3008656476 +2,6864,2093,128,1.57725358,0.106123094,1206.14652,3008656476 +2,6865,2094,128,2.26362777,0.10616593,1205.65986,3008656476 +2,6866,2095,128,1.57252324,0.106222443,1205.01842,3008656476 +2,6867,2096,128,2.27961302,0.106315493,1203.96375,3008656476 +2,6868,2097,128,2.017452,0.106262871,1204.55996,3008656476 +2,6869,2098,128,2.05544901,0.119508163,1071.05654,3008656476 +2,6870,2099,128,2.04588914,0.106148091,1205.86248,3008656476 +2,6871,2100,128,1.9559716,0.106152148,1205.81639,3008656476 +2,6872,2101,128,2.2590251,0.10609186,1206.50161,3008656476 +2,6873,2102,128,1.98993826,0.106010164,1207.43139,3008656476 +2,6874,2103,128,1.30162287,0.106101761,1206.38902,3008656476 +2,6875,2104,128,1.9298892,0.10612571,1206.11678,3008656476 +2,6876,2105,128,1.82911372,0.10607174,1206.73046,3008656476 +2,6877,2106,128,1.58073437,0.106115323,1206.23484,3008656476 +2,6878,2107,128,1.96142972,0.106281063,1204.35378,3008656476 +2,6879,2108,128,2.02572513,0.11918109,1073.99588,3008656476 +2,6880,2109,128,1.99356532,0.105875963,1208.96185,3008656476 +2,6881,2110,128,2.13339829,0.106151933,1205.81883,3008656476 +2,6882,2111,128,1.81043029,0.105991588,1207.64301,3008656476 +2,6883,2112,128,2.04254389,0.105979308,1207.78294,3008656476 +2,6884,2113,128,1.90131056,0.106012661,1207.40295,3008656476 +2,6885,2114,128,1.52062726,0.106006423,1207.474,3008656476 +2,6886,2115,128,2.03723407,0.105965894,1207.93583,3008656476 +2,6887,2116,128,1.78387141,0.10604507,1207.03395,3008656476 +2,6888,2117,128,1.95207095,0.105963947,1207.95802,3008656476 +2,6889,2118,128,2.02026772,0.12050099,1062.23194,3008656476 +2,6890,2119,128,2.27711415,0.106033797,1207.16228,3008656476 +2,6891,2120,128,1.50106871,0.106091244,1206.50862,3008656476 +2,6892,2121,128,1.76207399,0.10589427,1208.75284,3008656476 +2,6893,2122,128,1.81318259,0.106055324,1206.91725,3008656476 +2,6894,2123,128,1.48953569,0.105962381,1207.97588,3008656476 +2,6895,2124,128,1.61337101,0.105980391,1207.7706,3008656476 +2,6896,2125,128,1.18342292,0.106029236,1207.21421,3008656476 +2,6897,2126,128,1.35647953,0.105995186,1207.60201,3008656476 +2,6898,2127,128,2.3907299,0.105879512,1208.92133,3008656476 +2,6899,2128,128,1.86453712,0.118079957,1084.01123,3008656476 +2,6900,2129,128,1.63359773,0.106076251,1206.67915,3008656476 +2,6901,2130,128,2.35083413,0.10623889,1204.83187,3008656476 +2,6902,2131,128,1.73592627,0.106063274,1206.82679,3008656476 +2,6903,2132,128,1.98598969,0.106081776,1206.6163,3008656476 +2,6904,2133,128,1.88757026,0.105952676,1208.08652,3008656476 +2,6905,2134,128,2.2799077,0.106025413,1207.25774,3008656476 +2,6906,2135,128,1.87290406,0.105997871,1207.57142,3008656476 +2,6907,2136,128,2.04310656,0.106072895,1206.71732,3008656476 +2,6908,2137,128,1.9104408,0.105941249,1208.21683,3008656476 +2,6909,2138,128,1.95878375,0.116156426,1101.96228,3008656476 +2,6910,2139,128,2.13224578,0.105994945,1207.60476,3008656476 +2,6911,2140,128,2.10178781,0.106019244,1207.32798,3008656476 +2,6912,2141,128,1.84063113,0.093022933,1376.00478,3008656476 +2,6913,2142,128,1.83817649,0.106270381,1204.47484,3008656476 +2,6914,2143,128,2.06007004,0.106207385,1205.18926,3008656476 +2,6915,2144,128,1.95279086,0.106157342,1205.75739,3008656476 +2,6916,2145,128,2.3816607,0.106155003,1205.78396,3008656476 +2,6917,2146,128,2.09588408,0.106230996,1204.9214,3008656476 +2,6918,2147,128,2.16118765,0.118678562,1078.54357,3008656476 +2,6919,2148,128,1.38967395,0.106148002,1205.86349,3008656476 +2,6920,2149,128,1.8566699,0.106002707,1207.51633,3008656476 +2,6921,2150,128,1.5542413,0.106000272,1207.54407,3008656476 +2,6922,2151,128,2.04591203,0.105989735,1207.66412,3008656476 +2,6923,2152,128,2.12340879,0.106057314,1206.8946,3008656476 +2,6924,2153,128,1.79605365,0.10600079,1207.53817,3008656476 +2,6925,2154,128,1.73970604,0.10603945,1207.09792,3008656476 +2,6926,2155,128,2.54264855,0.106073771,1206.70736,3008656476 +2,6927,2156,128,2.23824954,0.106124419,1206.13146,3008656476 +2,6928,2157,128,2.00966072,0.119823086,1068.24156,3008656476 +2,6929,2158,128,1.27329409,0.106077503,1206.6649,3008656476 +2,6930,2159,128,1.85377491,0.106105892,1206.34206,3008656476 +2,6931,2160,128,2.39671445,0.106115746,1206.23003,3008656476 +2,6932,2161,128,2.45980239,0.106104762,1206.3549,3008656476 +2,6933,2162,128,1.58392155,0.106033087,1207.17036,3008656476 +2,6934,2163,128,1.66717267,0.106150043,1205.8403,3008656476 +2,6935,2164,128,1.73326218,0.106032583,1207.1761,3008656476 +2,6936,2165,128,2.06123257,0.106097117,1206.44183,3008656476 +2,6937,2166,128,2.12700558,0.10617951,1205.50566,3008656476 +2,6938,2167,128,1.99229264,0.118274464,1082.22854,3008656476 +2,6939,2168,128,2.21385288,0.106104883,1206.35353,3008656476 +2,6940,2169,128,2.25251436,0.105973568,1207.84836,3008656476 +2,6941,2170,128,1.66314292,0.106277654,1204.39241,3008656476 +2,6942,2171,128,1.85123289,0.106064792,1206.80951,3008656476 +2,6943,2172,128,1.96980035,0.106254434,1204.65561,3008656476 +2,6944,2173,128,2.4484694,0.106108806,1206.30893,3008656476 +2,6945,2174,128,2.19461131,0.106322312,1203.88654,3008656476 +2,6946,2175,128,2.01799369,0.106166532,1205.65302,3008656476 +2,6947,2176,128,1.02947199,0.106243421,1204.78048,3008656476 +2,6948,2177,128,1.89677763,0.118825005,1077.21435,3008656476 +2,6949,2178,128,1.82279074,0.106168835,1205.62687,3008656476 +2,6950,2179,128,2.44281316,0.106249915,1204.70685,3008656476 +2,6951,2180,128,2.26114988,0.106168344,1205.63244,3008656476 +2,6952,2181,128,1.68970931,0.106098789,1206.42282,3008656476 +2,6953,2182,128,1.90496767,0.106173657,1205.57211,3008656476 +2,6954,2183,128,2.33616805,0.106082523,1206.6078,3008656476 +2,6955,2184,128,1.91827118,0.106157219,1205.75879,3008656476 +2,6956,2185,128,2.10660553,0.106152318,1205.81446,3008656476 +2,6957,2186,128,2.26072884,0.106262166,1204.56796,3008656476 +2,6958,2187,128,2.05107093,0.118430587,1080.80187,3008656476 +2,6959,2188,128,1.81989431,0.106060168,1206.86213,3008656476 +2,6960,2189,128,1.98787081,0.106119764,1206.18436,3008656476 +2,6961,2190,128,1.70585155,0.105939432,1208.23755,3008656476 +2,6962,2191,128,2.15124846,0.106007094,1207.46636,3008656476 +2,6963,2192,128,1.68253982,0.10599544,1207.59912,3008656476 +2,6964,2193,128,1.2300303,0.10597754,1207.80309,3008656476 +2,6965,2194,128,1.99024701,0.106058019,1206.88658,3008656476 +2,6966,2195,128,1.64261377,0.10609355,1206.48239,3008656476 +2,6967,2196,128,2.07585716,0.120696163,1060.51424,3008656476 +2,6968,2197,128,2.49098063,0.103525803,1236.40673,3008656476 +2,6969,2198,128,2.24999404,0.105963856,1207.95906,3008656476 +2,6970,2199,128,1.67916715,0.10619919,1205.28226,3008656476 +2,6971,2200,128,2.09540105,0.106024674,1207.26615,3008656476 +2,6972,2201,128,2.29850006,0.106060641,1206.85675,3008656476 +2,6973,2202,128,1.8323617,0.105995286,1207.60087,3008656476 +2,6974,2203,128,2.20856619,0.106195326,1205.32612,3008656476 +2,6975,2204,128,2.34132457,0.105981946,1207.75288,3008656476 +2,6976,2205,128,1.82302105,0.106065399,1206.80261,3008656476 +2,6977,2206,128,2.05388737,0.119457631,1071.50961,3008656476 +2,6978,2207,128,1.91748285,0.10649844,1201.89554,3008656476 +2,6979,2208,128,1.86343825,0.106149579,1205.84557,3008656476 +2,6980,2209,128,2.30034089,0.106058929,1206.87623,3008656476 +2,6981,2210,128,1.85070086,0.106082648,1206.60638,3008656476 +2,6982,2211,128,1.73229265,0.106153867,1205.79686,3008656476 +2,6983,2212,128,1.62810266,0.10604116,1207.07846,3008656476 +2,6984,2213,128,1.74334538,0.105953495,1208.07719,3008656476 +2,6985,2214,128,1.82753313,0.106159058,1205.7379,3008656476 +2,6986,2215,128,2.18239689,0.106034412,1207.15528,3008656476 +2,6987,2216,128,1.39465368,0.117945604,1085.24604,3008656476 +2,6988,2217,128,2.36240268,0.105935009,1208.288,3008656476 +2,6989,2218,128,2.05522728,0.106222884,1205.01341,3008656476 +2,6990,2219,128,2.407763,0.106049052,1206.98863,3008656476 +2,6991,2220,128,1.77275407,0.106137837,1205.97898,3008656476 +2,6992,2221,128,1.36658573,0.106178182,1205.52073,3008656476 +2,6993,2222,128,1.88337517,0.106095025,1206.46562,3008656476 +2,6994,2223,128,1.97777355,0.10611681,1206.21794,3008656476 +2,6995,2224,128,1.72669208,0.106193519,1205.34663,3008656476 +2,6996,2225,128,1.72524798,0.106038281,1207.11123,3008656476 +2,6997,2226,128,2.45817208,0.118699132,1078.35666,3008656476 +2,6998,2227,128,1.89981925,0.106239264,1204.82762,3008656476 +2,6999,2228,128,1.95717478,0.106057025,1206.89789,3008656476 +2,7000,2229,128,1.86875772,0.106072566,1206.72107,3008656476 +2,7001,2230,128,2.09896827,0.106184347,1205.45074,3008656476 +2,7002,2231,128,1.45106387,0.106214848,1205.10458,3008656476 +2,7003,2232,128,2.08460736,0.106133038,1206.03351,3008656476 +2,7004,2233,128,1.63328409,0.1060997,1206.41246,3008656476 +2,7005,2234,128,1.99643302,0.106138713,1205.96902,3008656476 +2,7006,2235,128,1.40108991,0.106071897,1206.72868,3008656476 +2,7007,2236,128,2.00333643,0.120221313,1064.70306,3008656476 +2,7008,2237,128,2.42492604,0.106021408,1207.30334,3008656476 +2,7009,2238,128,1.87810826,0.106151169,1205.82751,3008656476 +2,7010,2239,128,1.81554651,0.106062335,1206.83747,3008656476 +2,7011,2240,128,1.83990037,0.106039114,1207.10175,3008656476 +2,7012,2241,128,1.86218262,0.10598241,1207.74759,3008656476 +2,7013,2242,128,2.50814176,0.106126601,1206.10666,3008656476 +2,7014,2243,128,2.07190585,0.105985605,1207.71118,3008656476 +2,7015,2244,128,2.24844313,0.106069779,1206.75277,3008656476 +2,7016,2245,128,2.16460943,0.106123879,1206.13759,3008656476 +2,7017,2246,128,1.55377495,0.108656791,1178.02117,3008656476 +2,7018,2247,128,1.58700335,0.106031972,1207.18306,3008656476 +2,7019,2248,128,1.67061424,0.106093045,1206.48814,3008656476 +2,7020,2249,128,1.95651627,0.106185693,1205.43546,3008656476 +2,7021,2250,128,2.24435091,0.106009628,1207.4375,3008656476 +2,7022,2251,128,1.56084168,0.10616805,1205.63578,3008656476 +2,7023,2252,128,1.39374554,0.106078675,1206.65157,3008656476 +2,7024,2253,128,1.73982131,0.106146672,1205.8786,3008656476 +2,7025,2254,128,2.60471106,0.106091015,1206.51122,3008656476 +2,7026,2255,128,1.9700098,0.117328051,1090.95821,3008656476 +2,7027,2256,128,2.11047721,0.104826748,1221.0624,3008656476 +2,7028,2257,128,1.99390435,0.10621493,1205.10365,3008656476 +2,7029,2258,128,2.28114319,0.106063399,1206.82536,3008656476 +2,7030,2259,128,2.14100671,0.106118034,1206.20403,3008656476 +2,7031,2260,128,2.0401957,0.106027932,1207.22905,3008656476 +2,7032,2261,128,1.71304309,0.105992713,1207.63019,3008656476 +2,7033,2262,128,1.78245449,0.105935975,1208.27698,3008656476 +2,7034,2263,128,2.07844853,0.106087705,1206.54886,3008656476 +2,7035,2264,128,1.56067407,0.106110359,1206.29127,3008656476 +2,7036,2265,128,1.89364827,0.118898737,1076.54634,3008656476 +2,7037,2266,128,2.02506065,0.105672162,1211.29347,3008656476 +2,7038,2267,128,1.70282483,0.106023605,1207.27832,3008656476 +2,7039,2268,128,2.00704765,0.106066584,1206.78912,3008656476 +2,7040,2269,128,1.36721122,0.106055943,1206.91021,3008656476 +2,7041,2270,128,1.62538636,0.10596308,1207.96791,3008656476 +2,7042,2271,128,1.84866035,0.105929955,1208.34565,3008656476 +2,7043,2272,128,2.05555344,0.106877962,1197.62763,3008656476 +2,7044,2273,128,1.6657902,0.105990031,1207.66075,3008656476 +2,7045,2274,128,1.49669588,0.106093919,1206.4782,3008656476 +2,7046,2275,128,2.1273396,0.11817728,1083.11851,3008656476 +2,7047,2276,128,2.00895357,0.105999798,1207.54947,3008656476 +2,7048,2277,128,1.41578126,0.106101409,1206.39303,3008656476 +2,7049,2278,128,1.58272672,0.106056019,1206.90934,3008656476 +2,7050,2279,128,1.58647048,0.106008559,1207.44967,3008656476 +2,7051,2280,128,1.63080084,0.105969156,1207.89865,3008656476 +2,7052,2281,128,1.98871922,0.10609121,1206.509,3008656476 +2,7053,2282,128,2.13473558,0.106058659,1206.8793,3008656476 +2,7054,2283,128,1.56266165,0.106085376,1206.57535,3008656476 +2,7055,2284,128,1.60755134,0.106046912,1207.01299,3008656476 +2,7056,2285,128,1.48318613,0.120322755,1063.80543,3008656476 +2,7057,2286,128,1.54617238,0.106026114,1207.24975,3008656476 +2,7058,2287,128,1.55350828,0.106084989,1206.57975,3008656476 +2,7059,2288,128,1.44190466,0.105991572,1207.64319,3008656476 +2,7060,2289,128,1.42355013,0.106081809,1206.61592,3008656476 +2,7061,2290,128,1.84928405,0.106038886,1207.10434,3008656476 +2,7062,2291,128,2.27240872,0.105995349,1207.60016,3008656476 +2,7063,2292,128,1.45613849,0.106044962,1207.03518,3008656476 +2,7064,2293,128,2.0089941,0.10608724,1206.55415,3008656476 +2,7065,2294,128,1.99978554,0.105987127,1207.69384,3008656476 +2,7066,2295,128,2.3309114,0.119930478,1067.285,3008656476 +2,7067,2296,128,2.5327034,0.105992509,1207.63251,3008656476 +2,7068,2297,128,1.87456083,0.106179386,1205.50707,3008656476 +2,7069,2298,128,1.73434532,0.105951785,1208.09668,3008656476 +2,7070,2299,128,2.27010322,0.106114468,1206.24456,3008656476 +2,7071,2300,128,2.06014013,0.106098451,1206.42666,3008656476 +2,7072,2301,128,2.37341452,0.106125751,1206.11632,3008656476 +2,7073,2302,128,2.53701305,0.106057367,1206.894,3008656476 +2,7074,2303,128,1.96212387,0.106126735,1206.10513,3008656476 +2,7075,2304,128,1.96106291,0.105994355,1207.61148,3008656476 +2,7076,2305,128,2.04487872,0.108041555,1184.72934,3008656476 +2,7077,2306,128,2.59585214,0.106017397,1207.34902,3008656476 +2,7078,2307,128,2.08245659,0.106023219,1207.28272,3008656476 +2,7079,2308,128,2.45502877,0.106127436,1206.09717,3008656476 +2,7080,2309,128,2.51149964,0.106008069,1207.45526,3008656476 +2,7081,2310,128,2.10685349,0.106129442,1206.07437,3008656476 +2,7082,2311,128,1.94928515,0.106165155,1205.66866,3008656476 +2,7083,2312,128,1.86754918,0.106013384,1207.39472,3008656476 +2,7084,2313,128,2.3924768,0.106076784,1206.67308,3008656476 +2,7085,2314,128,2.84531784,0.115911963,1104.28636,3008656476 +2,7086,2315,128,2.457335,0.104973894,1219.35078,3008656476 +2,7087,2316,128,2.7757113,0.106088566,1206.53907,3008656476 +2,7088,2317,128,2.64260197,0.106104155,1206.36181,3008656476 +2,7089,2318,128,2.62120938,0.106013368,1207.3949,3008656476 +2,7090,2319,128,2.54914427,0.106120921,1206.17121,3008656476 +2,7091,2320,128,2.62648535,0.106091848,1206.50175,3008656476 +2,7092,2321,128,2.57481194,0.106164625,1205.67468,3008656476 +2,7093,2322,128,2.53841209,0.106059427,1206.87056,3008656476 +2,7094,2323,128,2.72511435,0.106256621,1204.63082,3008656476 +2,7095,2324,128,2.32470775,0.118075453,1084.05258,3008656476 +2,7096,2325,128,2.79045391,0.105705547,1210.91091,3008656476 +2,7097,2326,128,2.54918885,0.106073145,1206.71448,3008656476 +2,7098,2327,128,2.76772046,0.106156918,1205.76221,3008656476 +2,7099,2328,128,2.47941661,0.106064352,1206.81452,3008656476 +2,7100,2329,128,2.17400718,0.106126308,1206.10999,3008656476 +2,7101,2330,128,2.41879678,0.105988439,1207.67889,3008656476 +2,7102,2331,128,2.38939619,0.106165761,1205.66178,3008656476 +2,7103,2332,128,1.79225087,0.10610648,1206.33537,3008656476 +2,7104,2333,128,2.09169674,0.106057539,1206.89204,3008656476 +2,7105,2334,128,1.80810928,0.121792445,1050.96831,3008656476 +2,7106,2335,128,2.19147873,0.105855498,1209.19558,3008656476 +2,7107,2336,128,2.60528755,0.106076672,1206.67436,3008656476 +2,7108,2337,128,2.56765246,0.106044057,1207.04548,3008656476 +2,7109,2338,128,2.34678388,0.106086714,1206.56014,3008656476 +2,7110,2339,128,2.27262378,0.106181349,1205.48478,3008656476 +2,7111,2340,128,2.06044626,0.106037842,1207.11623,3008656476 +2,7112,2341,128,2.52363181,0.106154843,1205.78578,3008656476 +2,7113,2342,128,2.27279425,0.10607108,1206.73797,3008656476 +2,7114,2343,128,2.28621221,0.106142428,1205.92681,3008656476 +2,7115,2344,128,2.24955988,0.120476119,1062.45122,3008656476 +2,7116,2345,128,2.85698962,0.106053059,1206.94303,3008656476 +2,7117,2346,128,2.66110134,0.105907568,1208.60107,3008656476 +2,7118,2347,128,2.51988792,0.106117016,1206.2156,3008656476 +2,7119,2348,128,2.41237593,0.106065089,1206.80613,3008656476 +2,7120,2349,128,2.40700698,0.105996345,1207.58881,3008656476 +2,7121,2350,128,2.33240032,0.106017431,1207.34863,3008656476 +2,7122,2351,128,2.2758379,0.105931603,1208.32685,3008656476 +2,7123,2352,128,2.00415039,0.106043902,1207.04725,3008656476 +2,7124,2353,128,2.01274061,0.105990272,1207.658,3008656476 +2,7125,2354,128,2.45014167,0.118659014,1078.72125,3008656476 +2,7126,2355,128,2.03872108,0.106044677,1207.03843,3008656476 +2,7127,2356,128,2.58797765,0.106034503,1207.15424,3008656476 +2,7128,2357,128,2.09812784,0.105983469,1207.73552,3008656476 +2,7129,2358,128,2.03339601,0.106026294,1207.2477,3008656476 +2,7130,2359,128,2.1163311,0.106171042,1205.60181,3008656476 +2,7131,2360,128,2.26914477,0.10619478,1205.33231,3008656476 +2,7132,2361,128,1.91256988,0.106245682,1204.75484,3008656476 +2,7133,2362,128,1.91587758,0.106291458,1204.236,3008656476 +2,7134,2363,128,1.7839998,0.106383208,1203.19741,3008656476 +2,7135,2364,128,1.48725784,0.108210218,1182.88275,3008656476 +2,7136,2365,128,1.78003597,0.106134009,1206.02247,3008656476 +2,7137,2366,128,1.73358953,0.10610688,1206.33082,3008656476 +2,7138,2367,128,1.94441271,0.106231591,1204.91465,3008656476 +2,7139,2368,128,1.89320624,0.10600106,1207.53509,3008656476 +2,7140,2369,128,1.99622238,0.105976411,1207.81595,3008656476 +2,7141,2370,128,1.72021127,0.105898306,1208.70678,3008656476 +2,7142,2371,128,1.78607583,0.106053518,1206.9378,3008656476 +2,7143,2372,128,2.51881719,0.106160584,1205.72057,3008656476 +2,7144,2373,128,2.59255075,0.118476888,1080.37949,3008656476 +2,7145,2374,128,2.61442995,0.106109188,1206.30459,3008656476 +2,7146,2375,128,1.65874898,0.106083127,1206.60093,3008656476 +2,7147,2376,128,1.87897885,0.106142586,1205.92502,3008656476 +2,7148,2377,128,2.26920462,0.106154436,1205.7904,3008656476 +2,7149,2378,128,2.07345891,0.105980645,1207.7677,3008656476 +2,7150,2379,128,1.7932539,0.106080937,1206.62584,3008656476 +2,7151,2380,128,1.97328126,0.106165342,1205.66653,3008656476 +2,7152,2381,128,1.75217652,0.106110445,1206.29029,3008656476 +2,7153,2382,128,2.05069923,0.106062867,1206.83142,3008656476 +2,7154,2383,128,2.31805229,0.119663121,1069.66958,3008656476 +2,7155,2384,64,1.18427062,0.102544216,624.121013,3008656476 +3,7156,0,128,1.31651938,0.119998289,1066.68188,3008656476 +3,7157,1,128,1.72582054,0.115093286,1112.14133,3008656476 +3,7158,2,128,1.65747762,0.114300664,1119.85351,3008656476 +3,7159,3,128,1.8253684,0.106270338,1204.47533,3008656476 +3,7160,4,128,2.06747985,0.106056075,1206.9087,3008656476 +3,7161,5,128,2.34037328,0.106269781,1204.48164,3008656476 +3,7162,6,128,2.19474292,0.106268886,1204.49178,3008656476 +3,7163,7,128,2.06926322,0.106224794,1204.99175,3008656476 +3,7164,8,128,2.32538295,0.106221287,1205.03153,3008656476 +3,7165,9,128,2.02376413,0.120623619,1061.15205,3008656476 +3,7166,10,128,1.89004076,0.106087773,1206.54809,3008656476 +3,7167,11,128,2.38923335,0.106382937,1203.20047,3008656476 +3,7168,12,128,1.74819136,0.106238179,1204.83993,3008656476 +3,7169,13,128,1.62354386,0.106240432,1204.81438,3008656476 +3,7170,14,128,1.63614476,0.106319246,1203.92125,3008656476 +3,7171,15,128,1.69148374,0.095602892,1338.87163,3008656476 +3,7172,16,128,1.80283535,0.106044523,1207.04018,3008656476 +3,7173,17,128,1.90223908,0.106276828,1204.40177,3008656476 +3,7174,18,128,2.01791835,0.106162914,1205.69411,3008656476 +3,7175,19,128,1.72617114,0.118280369,1082.17451,3008656476 +3,7176,20,128,1.77671766,0.106007496,1207.46178,3008656476 +3,7177,21,128,2.33948755,0.106152624,1205.81098,3008656476 +3,7178,22,128,1.58325267,0.106127741,1206.0937,3008656476 +3,7179,23,128,1.49063683,0.106058425,1206.88196,3008656476 +3,7180,24,128,1.61530459,0.106194404,1205.33658,3008656476 +3,7181,25,128,1.82383811,0.106135927,1206.00068,3008656476 +3,7182,26,128,1.66744936,0.106028544,1207.22209,3008656476 +3,7183,27,128,1.94459808,0.106118461,1206.19917,3008656476 +3,7184,28,128,1.77203035,0.106087739,1206.54848,3008656476 +3,7185,29,128,1.46758389,0.117992485,1084.81485,3008656476 +3,7186,30,128,1.42757893,0.105993855,1207.61718,3008656476 +3,7187,31,128,1.50358236,0.105986747,1207.69817,3008656476 +3,7188,32,128,1.70014381,0.106085062,1206.57892,3008656476 +3,7189,33,128,1.87895238,0.10612518,1206.12281,3008656476 +3,7190,34,128,1.93907332,0.106018305,1207.33868,3008656476 +3,7191,35,128,1.80772436,0.106089227,1206.53155,3008656476 +3,7192,36,128,1.86795115,0.10622573,1204.98113,3008656476 +3,7193,37,128,1.61496925,0.106147413,1205.87018,3008656476 +3,7194,38,128,1.70251191,0.10601054,1207.42711,3008656476 +3,7195,39,128,1.27530408,0.111112541,1151.98518,3008656476 +3,7196,40,128,1.75026596,0.106043425,1207.05268,3008656476 +3,7197,41,128,1.92204309,0.106175343,1205.55297,3008656476 +3,7198,42,128,1.71205091,0.106132724,1206.03707,3008656476 +3,7199,43,128,2.00165892,0.106069743,1206.75318,3008656476 +3,7200,44,128,1.86786926,0.106061138,1206.85109,3008656476 +3,7201,45,128,1.91423213,0.106013637,1207.39184,3008656476 +3,7202,46,128,1.69433951,0.106068929,1206.76244,3008656476 +3,7203,47,128,1.72333443,0.106179627,1205.50433,3008656476 +3,7204,48,128,1.64997792,0.118314821,1081.85939,3008656476 +3,7205,49,128,1.91979134,0.104540042,1224.41122,3008656476 +3,7206,50,128,1.78033149,0.105976822,1207.81127,3008656476 +3,7207,51,128,1.92268085,0.106060464,1206.85876,3008656476 +3,7208,52,128,1.56810486,0.106016624,1207.35782,3008656476 +3,7209,53,128,2.05429268,0.106090791,1206.51377,3008656476 +3,7210,54,128,1.53195369,0.106021252,1207.30512,3008656476 +3,7211,55,128,1.69652879,0.106116702,1206.21917,3008656476 +3,7212,56,128,1.88537204,0.106002041,1207.52392,3008656476 +3,7213,57,128,1.78946853,0.106064685,1206.81073,3008656476 +3,7214,58,128,1.56173384,0.11883047,1077.1648,3008656476 +3,7215,59,128,1.62528002,0.105811569,1209.69759,3008656476 +3,7216,60,128,1.93332732,0.106139674,1205.9581,3008656476 +3,7217,61,128,2.05416346,0.106320393,1203.90827,3008656476 +3,7218,62,128,1.41843641,0.106197702,1205.29915,3008656476 +3,7219,63,128,1.96961999,0.105983898,1207.73063,3008656476 +3,7220,64,128,1.53022361,0.106074423,1206.69994,3008656476 +3,7221,65,128,2.02740932,0.106157572,1205.75478,3008656476 +3,7222,66,128,1.59048712,0.106075916,1206.68296,3008656476 +3,7223,67,128,2.02429366,0.106131294,1206.05332,3008656476 +3,7224,68,128,2.29008365,0.118373639,1081.32183,3008656476 +3,7225,69,128,1.81603253,0.106112464,1206.26734,3008656476 +3,7226,70,128,1.95470369,0.106059979,1206.86428,3008656476 +3,7227,71,128,2.0163095,0.106194273,1205.33807,3008656476 +3,7228,72,128,1.66611063,0.106147776,1205.86606,3008656476 +3,7229,73,128,1.97112715,0.106088424,1206.54069,3008656476 +3,7230,74,128,1.73358393,0.106101328,1206.39395,3008656476 +3,7231,75,128,1.45815086,0.106027273,1207.23656,3008656476 +3,7232,76,128,2.38460159,0.106149326,1205.84845,3008656476 +3,7233,77,128,1.94012272,0.106091031,1206.51104,3008656476 +3,7234,78,128,1.6755594,0.11964817,1069.80324,3008656476 +3,7235,79,128,1.62668705,0.106083471,1206.59702,3008656476 +3,7236,80,128,1.81889415,0.105967418,1207.91846,3008656476 +3,7237,81,128,1.90160763,0.106073598,1206.70933,3008656476 +3,7238,82,128,2.0146904,0.106000902,1207.53689,3008656476 +3,7239,83,128,2.04240966,0.106089453,1206.52898,3008656476 +3,7240,84,128,1.8900615,0.106085849,1206.56997,3008656476 +3,7241,85,128,1.70012951,0.106106773,1206.33204,3008656476 +3,7242,86,128,1.72125208,0.106086441,1206.56324,3008656476 +3,7243,87,128,1.42383289,0.106108816,1206.30881,3008656476 +3,7244,88,128,1.20217562,0.121462674,1053.82169,3008656476 +3,7245,89,128,1.5180037,0.106134438,1206.0176,3008656476 +3,7246,90,128,1.60175014,0.10617978,1205.50259,3008656476 +3,7247,91,128,1.57555151,0.106153085,1205.80575,3008656476 +3,7248,92,128,1.65485346,0.106034705,1207.15194,3008656476 +3,7249,93,128,1.5391624,0.106154253,1205.79248,3008656476 +3,7250,94,128,1.38598704,0.106157385,1205.75691,3008656476 +3,7251,95,128,1.62574208,0.106262429,1204.56497,3008656476 +3,7252,96,128,1.46025109,0.106159366,1205.73441,3008656476 +3,7253,97,128,1.93890023,0.106144883,1205.89892,3008656476 +3,7254,98,128,1.31973147,0.108618467,1178.43681,3008656476 +3,7255,99,128,1.71807694,0.10606701,1206.78428,3008656476 +3,7256,100,128,1.82805657,0.106071682,1206.73112,3008656476 +3,7257,101,128,1.79500067,0.106164939,1205.67111,3008656476 +3,7258,102,128,1.63079047,0.106034955,1207.1491,3008656476 +3,7259,103,128,1.26234841,0.106097111,1206.4419,3008656476 +3,7260,104,128,1.50765359,0.106214917,1205.1038,3008656476 +3,7261,105,128,1.35373175,0.106080665,1206.62894,3008656476 +3,7262,106,128,1.60138226,0.107103196,1195.10906,3008656476 +3,7263,107,128,1.46399236,0.117596091,1088.47155,3008656476 +3,7264,108,128,1.60271931,0.106341048,1203.67443,3008656476 +3,7265,109,128,1.20712817,0.105992169,1207.63639,3008656476 +3,7266,110,128,1.56296372,0.105965159,1207.94421,3008656476 +3,7267,111,128,1.60320079,0.106067762,1206.77572,3008656476 +3,7268,112,128,1.49029636,0.106007368,1207.46324,3008656476 +3,7269,113,128,1.50870502,0.106074934,1206.69413,3008656476 +3,7270,114,128,1.83638668,0.106127842,1206.09255,3008656476 +3,7271,115,128,1.81687987,0.105845346,1209.31156,3008656476 +3,7272,116,128,1.41659403,0.105996399,1207.58819,3008656476 +3,7273,117,128,1.51105773,0.118958114,1076.00899,3008656476 +3,7274,118,128,1.55028248,0.105993956,1207.61603,3008656476 +3,7275,119,128,1.75943089,0.106023523,1207.27926,3008656476 +3,7276,120,128,1.70691979,0.105946535,1208.15655,3008656476 +3,7277,121,128,1.41098464,0.106039751,1207.0945,3008656476 +3,7278,122,128,1.41989231,0.105945107,1208.17283,3008656476 +3,7279,123,128,1.4617641,0.106050496,1206.9722,3008656476 +3,7280,124,128,1.37966764,0.106117515,1206.20993,3008656476 +3,7281,125,128,1.4558202,0.1059699,1207.89017,3008656476 +3,7282,126,128,1.35962653,0.106067488,1206.77884,3008656476 +3,7283,127,128,1.87613606,0.11979654,1068.47827,3008656476 +3,7284,128,128,1.71845829,0.106077995,1206.65931,3008656476 +3,7285,129,128,1.40077436,0.106017178,1207.35151,3008656476 +3,7286,130,128,1.40884912,0.106024969,1207.26279,3008656476 +3,7287,131,128,1.45359612,0.106040746,1207.08317,3008656476 +3,7288,132,128,1.15263665,0.106018956,1207.33126,3008656476 +3,7289,133,128,1.31046152,0.105991029,1207.64938,3008656476 +3,7290,134,128,1.48816955,0.106157597,1205.7545,3008656476 +3,7291,135,128,1.20413744,0.105872998,1208.99571,3008656476 +3,7292,136,128,1.3090173,0.106095113,1206.46462,3008656476 +3,7293,137,128,1.18311059,0.118040557,1084.37306,3008656476 +3,7294,138,128,1.09814084,0.105988031,1207.68354,3008656476 +3,7295,139,128,1.36275864,0.105993742,1207.61846,3008656476 +3,7296,140,128,1.04965937,0.106038194,1207.11222,3008656476 +3,7297,141,128,1.06154454,0.105969416,1207.89568,3008656476 +3,7298,142,128,1.50246263,0.106065249,1206.80431,3008656476 +3,7299,143,128,1.15698051,0.106070448,1206.74516,3008656476 +3,7300,144,128,0.721746325,0.105993551,1207.62064,3008656476 +3,7301,145,128,0.759759188,0.105981133,1207.76214,3008656476 +3,7302,146,128,1.18906653,0.106004259,1207.49865,3008656476 +3,7303,147,128,1.36636913,0.114402445,1118.85721,3008656476 +3,7304,148,128,1.51096976,0.106104165,1206.36169,3008656476 +3,7305,149,128,1.51218641,0.10599972,1207.55036,3008656476 +3,7306,150,128,1.17020285,0.105996818,1207.58342,3008656476 +3,7307,151,128,0.88075155,0.105926977,1208.37962,3008656476 +3,7308,152,128,1.24263275,0.106051117,1206.96513,3008656476 +3,7309,153,128,1.15479028,0.106033534,1207.16527,3008656476 +3,7310,154,128,1.19253564,0.105380621,1214.64458,3008656476 +3,7311,155,128,1.78266752,0.105995442,1207.5991,3008656476 +3,7312,156,128,1.81215394,0.119768478,1068.72862,3008656476 +3,7313,157,128,1.63437903,0.104275675,1227.51543,3008656476 +3,7314,158,128,1.42731881,0.106122465,1206.15366,3008656476 +3,7315,159,128,1.03499281,0.106002221,1207.52187,3008656476 +3,7316,160,128,1.36128938,0.10610966,1206.29922,3008656476 +3,7317,161,128,1.19891667,0.105906837,1208.60941,3008656476 +3,7318,162,128,1.25693989,0.106042632,1207.0617,3008656476 +3,7319,163,128,1.61877239,0.106004183,1207.49952,3008656476 +3,7320,164,128,1.66257811,0.106121289,1206.16703,3008656476 +3,7321,165,128,1.50455678,0.105977056,1207.8086,3008656476 +3,7322,166,128,1.77248371,0.120505623,1062.1911,3008656476 +3,7323,167,128,1.38210809,0.105765651,1210.22278,3008656476 +3,7324,168,128,1.39840651,0.106007659,1207.45993,3008656476 +3,7325,169,128,1.38260734,0.106104697,1206.35564,3008656476 +3,7326,170,128,1.84652328,0.106025241,1207.25969,3008656476 +3,7327,171,128,1.43177009,0.106128233,1206.08811,3008656476 +3,7328,172,128,1.74366474,0.106108034,1206.3177,3008656476 +3,7329,173,128,1.62917554,0.106103839,1206.3654,3008656476 +3,7330,174,128,1.18957722,0.106093337,1206.48481,3008656476 +3,7331,175,128,1.65683568,0.106039889,1207.09293,3008656476 +3,7332,176,128,1.26273549,0.118666704,1078.65135,3008656476 +3,7333,177,128,1.85885727,0.105974568,1207.83696,3008656476 +3,7334,178,128,1.31327105,0.106135815,1206.00195,3008656476 +3,7335,179,128,1.86363411,0.106034398,1207.15544,3008656476 +3,7336,180,128,1.59084034,0.106169031,1205.62464,3008656476 +3,7337,181,128,1.50168669,0.106051551,1206.96019,3008656476 +3,7338,182,128,1.6197201,0.106123145,1206.14594,3008656476 +3,7339,183,128,1.27636552,0.106076696,1206.67408,3008656476 +3,7340,184,128,1.32128012,0.10616323,1205.69052,3008656476 +3,7341,185,128,1.55675602,0.106207287,1205.19037,3008656476 +3,7342,186,128,1.442927,0.118581566,1079.42579,3008656476 +3,7343,187,128,1.13196743,0.106124297,1206.13284,3008656476 +3,7344,188,128,1.66659296,0.106088313,1206.54195,3008656476 +3,7345,189,128,1.58418643,0.106174808,1205.55904,3008656476 +3,7346,190,128,1.30256271,0.106074876,1206.69479,3008656476 +3,7347,191,128,1.3181293,0.106116351,1206.22316,3008656476 +3,7348,192,128,1.16800857,0.106066371,1206.79155,3008656476 +3,7349,193,128,1.65907168,0.106027571,1207.23316,3008656476 +3,7350,194,128,1.42882347,0.106141918,1205.93261,3008656476 +3,7351,195,128,1.46757829,0.105961614,1207.98462,3008656476 +3,7352,196,128,1.42585135,0.120227503,1064.64824,3008656476 +3,7353,197,128,1.3687216,0.106090222,1206.52024,3008656476 +3,7354,198,128,1.11324513,0.10622304,1205.01164,3008656476 +3,7355,199,128,1.42257261,0.105989868,1207.6626,3008656476 +3,7356,200,128,1.21157289,0.106166071,1205.65826,3008656476 +3,7357,201,128,1.08963144,0.106260983,1204.58137,3008656476 +3,7358,202,128,1.56665349,0.106353971,1203.52817,3008656476 +3,7359,203,128,1.22666848,0.106232629,1204.90287,3008656476 +3,7360,204,128,1.45910668,0.106390917,1203.11022,3008656476 +3,7361,205,128,1.20650566,0.12115834,1056.46875,3008656476 +3,7362,206,128,1.09164095,0.102316986,1251.01418,3008656476 +3,7363,207,128,1.35964954,0.10600352,1207.50707,3008656476 +3,7364,208,128,0.942917407,0.105962276,1207.97707,3008656476 +3,7365,209,128,1.12059367,0.106060609,1206.85711,3008656476 +3,7366,210,128,0.984227717,0.106158177,1205.74791,3008656476 +3,7367,211,128,1.09682596,0.10615865,1205.74254,3008656476 +3,7368,212,128,1.40435505,0.106095081,1206.46498,3008656476 +3,7369,213,128,1.40119028,0.106124327,1206.1325,3008656476 +3,7370,214,128,1.094293,0.106066787,1206.78681,3008656476 +3,7371,215,128,1.1608721,0.117967351,1085.04598,3008656476 +3,7372,216,128,1.40332234,0.106375862,1203.2805,3008656476 +3,7373,217,128,1.50266051,0.106132144,1206.04367,3008656476 +3,7374,218,128,0.973966837,0.106100966,1206.39806,3008656476 +3,7375,219,128,1.54397225,0.106006373,1207.47457,3008656476 +3,7376,220,128,1.46586192,0.106178036,1205.52239,3008656476 +3,7377,221,128,1.23325169,0.105960467,1207.9977,3008656476 +3,7378,222,128,1.47997975,0.10601885,1207.33247,3008656476 +3,7379,223,128,1.25158036,0.106057335,1206.89437,3008656476 +3,7380,224,128,1.28985739,0.106020334,1207.31557,3008656476 +3,7381,225,128,1.43951797,0.132108155,968.903093,3008656476 +3,7382,226,128,1.47926188,0.151133562,846.932993,3008656476 +3,7383,227,128,1.61442828,0.106119216,1206.19059,3008656476 +3,7384,228,128,1.30311012,0.106169452,1205.61986,3008656476 +3,7385,229,128,1.40035391,0.105929752,1208.34796,3008656476 +3,7386,230,128,1.49321377,0.106145985,1205.8864,3008656476 +3,7387,231,128,1.67202473,0.105996201,1207.59045,3008656476 +3,7388,232,128,1.17208564,0.106013567,1207.39263,3008656476 +3,7389,233,128,1.47593546,0.106103259,1206.37199,3008656476 +3,7390,234,128,1.63656998,0.121038937,1057.51094,3008656476 +3,7391,235,128,1.46919,0.106346378,1203.6141,3008656476 +3,7392,236,128,1.57191288,0.106089597,1206.52735,3008656476 +3,7393,237,128,1.4133606,0.106170115,1205.61233,3008656476 +3,7394,238,128,1.42489135,0.106094271,1206.47419,3008656476 +3,7395,239,128,1.57366312,0.105920917,1208.44875,3008656476 +3,7396,240,128,1.67335844,0.106059825,1206.86603,3008656476 +3,7397,241,128,1.32678425,0.106102782,1206.37742,3008656476 +3,7398,242,128,1.4959352,0.106020651,1207.31196,3008656476 +3,7399,243,128,1.64606667,0.106060231,1206.86141,3008656476 +3,7400,244,128,1.60070038,0.121121096,1056.79361,3008656476 +3,7401,245,128,1.23746717,0.106032159,1207.18093,3008656476 +3,7402,246,128,1.54709291,0.106126539,1206.10736,3008656476 +3,7403,247,128,1.63653839,0.106157171,1205.75934,3008656476 +3,7404,248,128,1.74297547,0.106087133,1206.55537,3008656476 +3,7405,249,128,0.872241378,0.106217429,1205.0753,3008656476 +3,7406,250,128,1.2153796,0.106158953,1205.7391,3008656476 +3,7407,251,128,1.63373649,0.106141659,1205.93555,3008656476 +3,7408,252,128,1.56820142,0.106056318,1206.90594,3008656476 +3,7409,253,128,1.33261013,0.106279081,1204.37624,3008656476 +3,7410,254,128,1.51793373,0.118567596,1079.55297,3008656476 +3,7411,255,128,1.7481252,0.105967728,1207.91492,3008656476 +3,7412,256,128,1.66394448,0.106070761,1206.7416,3008656476 +3,7413,257,128,1.78761959,0.106044388,1207.04172,3008656476 +3,7414,258,128,1.44888413,0.106198541,1205.28963,3008656476 +3,7415,259,128,1.40069783,0.106098993,1206.4205,3008656476 +3,7416,260,128,1.70836377,0.106097505,1206.43742,3008656476 +3,7417,261,128,1.38360918,0.106160339,1205.72335,3008656476 +3,7418,262,128,1.67795503,0.106162065,1205.70375,3008656476 +3,7419,263,128,1.25528586,0.106041282,1207.07707,3008656476 +3,7420,264,128,1.30375051,0.118331658,1081.70546,3008656476 +3,7421,265,128,1.24521506,0.105997402,1207.57677,3008656476 +3,7422,266,128,1.39644921,0.106164518,1205.67589,3008656476 +3,7423,267,128,1.24772024,0.106042263,1207.0659,3008656476 +3,7424,268,128,1.09153092,0.106159012,1205.73843,3008656476 +3,7425,269,128,1.50936067,0.106001889,1207.52565,3008656476 +3,7426,270,128,1.77417517,0.106111142,1206.28237,3008656476 +3,7427,271,128,1.38120246,0.106018374,1207.33789,3008656476 +3,7428,272,128,1.462605,0.106093802,1206.47953,3008656476 +3,7429,273,128,1.52898753,0.106021909,1207.29764,3008656476 +3,7430,274,128,1.16418946,0.111445759,1148.54079,3008656476 +3,7431,275,128,1.4633044,0.106012839,1207.40093,3008656476 +3,7432,276,128,1.55538654,0.106198951,1205.28497,3008656476 +3,7433,277,128,1.29005206,0.106040692,1207.08379,3008656476 +3,7434,278,128,1.53216612,0.106155732,1205.77568,3008656476 +3,7435,279,128,1.14351666,0.105997448,1207.57624,3008656476 +3,7436,280,128,1.44983792,0.106041779,1207.07141,3008656476 +3,7437,281,128,1.25846493,0.106025818,1207.25312,3008656476 +3,7438,282,128,1.01933682,0.106013604,1207.39221,3008656476 +3,7439,283,128,1.39097142,0.119207886,1073.75447,3008656476 +3,7440,284,128,1.24249625,0.104345925,1226.68902,3008656476 +3,7441,285,128,1.21186233,0.106054044,1206.93182,3008656476 +3,7442,286,128,1.46721458,0.106005931,1207.47961,3008656476 +3,7443,287,128,1.10027766,0.106029846,1207.20726,3008656476 +3,7444,288,128,1.19728076,0.105952976,1208.0831,3008656476 +3,7445,289,128,1.36378515,0.106100677,1206.40135,3008656476 +3,7446,290,128,1.39924097,0.106027323,1207.23599,3008656476 +3,7447,291,128,1.55275714,0.106120476,1206.17627,3008656476 +3,7448,292,128,1.51887906,0.106220586,1205.03948,3008656476 +3,7449,293,128,1.27815461,0.120282653,1064.1601,3008656476 +3,7450,294,128,1.10828912,0.105830737,1209.47849,3008656476 +3,7451,295,128,1.22258091,0.10617524,1205.55414,3008656476 +3,7452,296,128,1.63452005,0.106265905,1204.52557,3008656476 +3,7453,297,128,1.26222086,0.106059343,1206.87152,3008656476 +3,7454,298,128,1.22716784,0.106198112,1205.2945,3008656476 +3,7455,299,128,1.44495845,0.106072893,1206.71735,3008656476 +3,7456,300,128,1.45875657,0.10616298,1205.69336,3008656476 +3,7457,301,128,1.41153038,0.106063122,1206.82851,3008656476 +3,7458,302,128,1.52259731,0.106095443,1206.46087,3008656476 +3,7459,303,128,1.45003366,0.11787898,1085.85941,3008656476 +3,7460,304,128,1.53264928,0.106027907,1207.22934,3008656476 +3,7461,305,128,1.49769747,0.10599124,1207.64697,3008656476 +3,7462,306,128,1.40329134,0.10613106,1206.05598,3008656476 +3,7463,307,128,1.210338,0.106261494,1204.57557,3008656476 +3,7464,308,128,1.48332334,0.106082704,1206.60574,3008656476 +3,7465,309,128,1.70463216,0.106005083,1207.48927,3008656476 +3,7466,310,128,1.31692886,0.106101809,1206.38848,3008656476 +3,7467,311,128,1.22531176,0.106164934,1205.67117,3008656476 +3,7468,312,128,1.24062431,0.106072506,1206.72175,3008656476 +3,7469,313,128,1.24951756,0.11916025,1074.18371,3008656476 +3,7470,314,128,0.917737424,0.106092211,1206.49762,3008656476 +3,7471,315,128,1.2277317,0.1060633,1206.82649,3008656476 +3,7472,316,128,1.17573631,0.106196535,1205.3124,3008656476 +3,7473,317,128,1.21951854,0.105932354,1208.31828,3008656476 +3,7474,318,128,1.39333284,0.106056872,1206.89963,3008656476 +3,7475,319,128,1.56115735,0.106140938,1205.94374,3008656476 +3,7476,320,128,1.98748565,0.105926493,1208.38514,3008656476 +3,7477,321,128,1.30718994,0.106180655,1205.49266,3008656476 +3,7478,322,128,1.29308653,0.106120781,1206.1728,3008656476 +3,7479,323,128,1.39446342,0.12069349,1060.53773,3008656476 +3,7480,324,128,1.18504715,0.105973101,1207.85368,3008656476 +3,7481,325,128,1.40933204,0.106170606,1205.60676,3008656476 +3,7482,326,128,1.33634949,0.106059237,1206.87272,3008656476 +3,7483,327,128,1.35831535,0.105956523,1208.04266,3008656476 +3,7484,328,128,1.66611791,0.106014317,1207.38409,3008656476 +3,7485,329,128,1.39078283,0.106087777,1206.54805,3008656476 +3,7486,330,128,2.06846738,0.105894327,1208.75219,3008656476 +3,7487,331,128,1.41227055,0.106118196,1206.20219,3008656476 +3,7488,332,128,1.00613928,0.105980039,1207.77461,3008656476 +3,7489,333,128,1.47307265,0.107841204,1186.93037,3008656476 +3,7490,334,128,1.39906788,0.105985031,1207.71772,3008656476 +3,7491,335,128,1.50019932,0.106020695,1207.31146,3008656476 +3,7492,336,128,1.27217352,0.105947757,1208.14261,3008656476 +3,7493,337,128,1.30629694,0.106027259,1207.23672,3008656476 +3,7494,338,128,1.19309354,0.106048044,1207.0001,3008656476 +3,7495,339,128,1.50720525,0.106069005,1206.76158,3008656476 +3,7496,340,128,1.50454307,0.105993595,1207.62014,3008656476 +3,7497,341,128,1.1425842,0.10602018,1207.31732,3008656476 +3,7498,342,128,1.27389014,0.118024095,1084.52431,3008656476 +3,7499,343,128,1.41305876,0.106355818,1203.50727,3008656476 +3,7500,344,128,1.3119899,0.10597591,1207.82166,3008656476 +3,7501,345,128,1.25513756,0.106087129,1206.55542,3008656476 +3,7502,346,128,0.989167929,0.106079302,1206.64444,3008656476 +3,7503,347,128,1.50156486,0.106279246,1204.37437,3008656476 +3,7504,348,128,1.26119339,0.105895006,1208.74444,3008656476 +3,7505,349,128,1.46709251,0.106050039,1206.9774,3008656476 +3,7506,350,128,1.20057571,0.106362141,1203.43572,3008656476 +3,7507,351,128,1.47379029,0.105932188,1208.32018,3008656476 +3,7508,352,128,1.56316662,0.117870733,1085.93539,3008656476 +3,7509,353,128,1.41026592,0.105923614,1208.41798,3008656476 +3,7510,354,128,1.34182441,0.105996276,1207.58959,3008656476 +3,7511,355,128,1.31241882,0.10598311,1207.73961,3008656476 +3,7512,356,128,1.60322976,0.106054907,1206.922,3008656476 +3,7513,357,128,1.14406037,0.105984818,1207.72015,3008656476 +3,7514,358,128,1.0211935,0.1059927,1207.63034,3008656476 +3,7515,359,128,1.16915762,0.105898345,1208.70633,3008656476 +3,7516,360,128,1.52067482,0.105963198,1207.96656,3008656476 +3,7517,361,128,1.18672836,0.106074037,1206.70433,3008656476 +3,7518,362,128,1.44170606,0.119528201,1070.87699,3008656476 +3,7519,363,128,1.53508246,0.106123435,1206.14264,3008656476 +3,7520,364,128,1.43042421,0.106082495,1206.60812,3008656476 +3,7521,365,128,1.47509921,0.106082954,1206.6029,3008656476 +3,7522,366,128,1.63137472,0.106024206,1207.27148,3008656476 +3,7523,367,128,1.66610396,0.106013449,1207.39398,3008656476 +3,7524,368,128,1.07492387,0.106054744,1206.92385,3008656476 +3,7525,369,128,1.55770254,0.105927344,1208.37543,3008656476 +3,7526,370,128,1.29273665,0.106033586,1207.16468,3008656476 +3,7527,371,128,1.51808083,0.106033355,1207.16731,3008656476 +3,7528,372,128,1.52344584,0.12004674,1066.25136,3008656476 +3,7529,373,128,1.7099576,0.106031381,1207.18978,3008656476 +3,7530,374,128,1.48095131,0.105990105,1207.6599,3008656476 +3,7531,375,128,0.896007478,0.106000126,1207.54573,3008656476 +3,7532,376,128,1.72806585,0.105954606,1208.06452,3008656476 +3,7533,377,128,0.994167268,0.106112881,1206.2626,3008656476 +3,7534,378,128,1.45128334,0.106013208,1207.39672,3008656476 +3,7535,379,128,1.25123322,0.106075923,1206.68288,3008656476 +3,7536,380,128,1.3026495,0.106129498,1206.07373,3008656476 +3,7537,381,128,1.31414747,0.106033371,1207.16713,3008656476 +3,7538,382,128,0.816651821,0.116945973,1094.52251,3008656476 +3,7539,383,128,1.16661775,0.106193975,1205.34145,3008656476 +3,7540,384,128,1.70233428,0.106187598,1205.41384,3008656476 +3,7541,385,128,1.34565473,0.106025794,1207.2534,3008656476 +3,7542,386,128,1.14723027,0.105991184,1207.64761,3008656476 +3,7543,387,128,1.29004169,0.106065129,1206.80568,3008656476 +3,7544,388,128,1.44314361,0.106239798,1204.82157,3008656476 +3,7545,389,128,1.51626885,0.106233847,1204.88906,3008656476 +3,7546,390,128,1.47115958,0.106199732,1205.27611,3008656476 +3,7547,391,128,1.59622121,0.118415552,1080.9391,3008656476 +3,7548,392,128,1.1023984,0.104428025,1225.72461,3008656476 +3,7549,393,128,1.53205121,0.10609766,1206.43566,3008656476 +3,7550,394,128,1.05756915,0.106007243,1207.46466,3008656476 +3,7551,395,128,1.43077016,0.1060598,1206.86632,3008656476 +3,7552,396,128,1.49972153,0.106034046,1207.15944,3008656476 +3,7553,397,128,1.5481323,0.106051493,1206.96085,3008656476 +3,7554,398,128,1.1437782,0.105978401,1207.79327,3008656476 +3,7555,399,128,1.33999348,0.105984926,1207.71892,3008656476 +3,7556,400,128,1.29774642,0.10606334,1206.82603,3008656476 +3,7557,401,128,1.43599463,0.119305943,1072.87195,3008656476 +3,7558,402,128,1.32940078,0.105909332,1208.58094,3008656476 +3,7559,403,128,1.28704584,0.106030756,1207.1969,3008656476 +3,7560,404,128,1.55271828,0.106074011,1206.70463,3008656476 +3,7561,405,128,1.2530427,0.106073739,1206.70772,3008656476 +3,7562,406,128,1.51402879,0.105964979,1207.94626,3008656476 +3,7563,407,128,1.12646091,0.106039361,1207.09894,3008656476 +3,7564,408,128,1.23901129,0.105956894,1208.03843,3008656476 +3,7565,409,128,1.60993123,0.10601336,1207.39499,3008656476 +3,7566,410,128,1.10258663,0.106024581,1207.26721,3008656476 +3,7567,411,128,1.4638505,0.120446501,1062.71248,3008656476 +3,7568,412,128,1.17382383,0.105728482,1210.64823,3008656476 +3,7569,413,128,1.24218607,0.106067211,1206.78199,3008656476 +3,7570,414,128,1.32792842,0.10604107,1207.07948,3008656476 +3,7571,415,128,1.65246058,0.106097911,1206.4328,3008656476 +3,7572,416,128,1.30159473,0.106118984,1206.19323,3008656476 +3,7573,417,128,1.08114374,0.106085931,1206.56904,3008656476 +3,7574,418,128,1.42989862,0.106151357,1205.82538,3008656476 +3,7575,419,128,0.845746696,0.106052446,1206.95,3008656476 +3,7576,420,128,0.951298654,0.106047814,1207.00272,3008656476 +3,7577,421,128,1.35285902,0.118209089,1082.82706,3008656476 +3,7578,422,128,1.1528337,0.106012191,1207.40831,3008656476 +3,7579,423,128,1.20134175,0.106078561,1206.65287,3008656476 +3,7580,424,128,1.71696496,0.106049195,1206.987,3008656476 +3,7581,425,128,1.5813359,0.106003297,1207.50961,3008656476 +3,7582,426,128,1.91245914,0.106006554,1207.47251,3008656476 +3,7583,427,128,1.39331698,0.105986407,1207.70204,3008656476 +3,7584,428,128,1.01065302,0.106091452,1206.50625,3008656476 +3,7585,429,128,0.729160905,0.106027555,1207.23335,3008656476 +3,7586,430,128,1.13396204,0.106104703,1206.35558,3008656476 +3,7587,431,128,0.858995259,0.110064192,1162.9577,3008656476 +3,7588,432,128,1.04394186,0.105971451,1207.87249,3008656476 +3,7589,433,128,0.940370262,0.105964758,1207.94878,3008656476 +3,7590,434,128,1.23732531,0.106067416,1206.77966,3008656476 +3,7591,435,128,1.33063853,0.106283769,1204.32312,3008656476 +3,7592,436,128,1.44758916,0.106190153,1205.38483,3008656476 +3,7593,437,128,1.10876286,0.106259189,1204.6017,3008656476 +3,7594,438,128,1.12619257,0.106175474,1205.55148,3008656476 +3,7595,439,128,1.43666947,0.106237585,1204.84667,3008656476 +3,7596,440,128,1.41801143,0.109177356,1172.40429,3008656476 +3,7597,441,128,1.26200569,0.105213202,1216.57736,3008656476 +3,7598,442,128,1.32585049,0.106227147,1204.96505,3008656476 +3,7599,443,128,1.04568303,0.106238637,1204.83473,3008656476 +3,7600,444,128,1.19288659,0.106106408,1206.33619,3008656476 +3,7601,445,128,1.19992661,0.106137069,1205.9877,3008656476 +3,7602,446,128,1.56067133,0.106138858,1205.96738,3008656476 +3,7603,447,128,1.60027766,0.106092603,1206.49316,3008656476 +3,7604,448,128,1.19964182,0.106271161,1204.466,3008656476 +3,7605,449,128,1.46988702,0.106094542,1206.47111,3008656476 +3,7606,450,128,1.13128519,0.120249033,1064.45762,3008656476 +3,7607,451,128,1.59523356,0.106357739,1203.48553,3008656476 +3,7608,452,128,1.16299355,0.106083593,1206.59563,3008656476 +3,7609,453,128,1.3331157,0.106095542,1206.45974,3008656476 +3,7610,454,128,1.66746569,0.106145986,1205.88639,3008656476 +3,7611,455,128,1.00058377,0.106079131,1206.64639,3008656476 +3,7612,456,128,1.39501023,0.106139453,1205.96061,3008656476 +3,7613,457,128,1.44655704,0.106105615,1206.34521,3008656476 +3,7614,458,128,1.43609107,0.106050536,1206.97174,3008656476 +3,7615,459,128,1.01448274,0.10615528,1205.78081,3008656476 +3,7616,460,128,1.46502161,0.118491445,1080.24676,3008656476 +3,7617,461,128,1.29250383,0.106150954,1205.82995,3008656476 +3,7618,462,128,1.22104013,0.106101436,1206.39272,3008656476 +3,7619,463,128,1.07306433,0.106063123,1206.8285,3008656476 +3,7620,464,128,1.29799747,0.106002526,1207.51839,3008656476 +3,7621,465,128,0.877838492,0.106048365,1206.99645,3008656476 +3,7622,466,128,1.02251101,0.106193103,1205.35135,3008656476 +3,7623,467,128,1.27569103,0.106052165,1206.9532,3008656476 +3,7624,468,128,1.39499509,0.106147192,1205.87269,3008656476 +3,7625,469,128,1.36385655,0.106097475,1206.43776,3008656476 +3,7626,470,128,1.38969839,0.118201375,1082.89772,3008656476 +3,7627,471,128,1.12367046,0.105985633,1207.71086,3008656476 +3,7628,472,128,1.77552962,0.106069295,1206.75828,3008656476 +3,7629,473,128,1.31604087,0.106092023,1206.49976,3008656476 +3,7630,474,128,1.07691228,0.106046517,1207.01748,3008656476 +3,7631,475,128,1.03009653,0.106116296,1206.22378,3008656476 +3,7632,476,128,1.038818,0.106085054,1206.57902,3008656476 +3,7633,477,128,1.32996619,0.105874157,1208.98247,3008656476 +3,7634,478,128,1.27742362,0.106056392,1206.9051,3008656476 +3,7635,479,128,1.31369603,0.106054962,1206.92137,3008656476 +3,7636,480,128,1.10491014,0.121141864,1056.61244,3008656476 +3,7637,481,128,1.00551736,0.105966474,1207.92922,3008656476 +3,7638,482,128,1.13274419,0.106044014,1207.04597,3008656476 +3,7639,483,128,1.47898614,0.105910715,1208.56516,3008656476 +3,7640,484,128,1.22756946,0.106035615,1207.14158,3008656476 +3,7641,485,128,1.04562068,0.106241359,1204.80387,3008656476 +3,7642,486,128,1.20343888,0.106264616,1204.54018,3008656476 +3,7643,487,128,1.3221252,0.106186121,1205.4306,3008656476 +3,7644,488,128,1.19076967,0.10625635,1204.63389,3008656476 +3,7645,489,128,1.75811481,0.106155381,1205.77967,3008656476 +3,7646,490,128,1.80631971,0.116377431,1099.86961,3008656476 +3,7647,491,128,1.57069552,0.105989182,1207.67042,3008656476 +3,7648,492,128,1.38349473,0.106066701,1206.78779,3008656476 +3,7649,493,128,1.34765863,0.106190685,1205.3788,3008656476 +3,7650,494,128,1.2636497,0.105998912,1207.55956,3008656476 +3,7651,495,128,1.37832046,0.106086519,1206.56235,3008656476 +3,7652,496,128,1.76243556,0.105994928,1207.60495,3008656476 +3,7653,497,128,1.56842661,0.106012842,1207.40089,3008656476 +3,7654,498,128,1.54306531,0.106134682,1206.01483,3008656476 +3,7655,499,128,1.55541241,0.119162499,1074.16344,3008656476 +3,7656,500,128,1.54771602,0.104479696,1225.11842,3008656476 +3,7657,501,128,1.59525883,0.106067831,1206.77494,3008656476 +3,7658,502,128,1.20926762,0.106265708,1204.5278,3008656476 +3,7659,503,128,1.59137344,0.106031544,1207.18793,3008656476 +3,7660,504,128,1.55776727,0.106149178,1205.85013,3008656476 +3,7661,505,128,1.73740065,0.106065526,1206.80116,3008656476 +3,7662,506,128,1.55135119,0.106069116,1206.76032,3008656476 +3,7663,507,128,1.40687096,0.10617052,1205.60773,3008656476 +3,7664,508,128,1.51837683,0.106026912,1207.24067,3008656476 +3,7665,509,128,1.71019363,0.118060234,1084.19233,3008656476 +3,7666,510,128,1.67226613,0.105906133,1208.61745,3008656476 +3,7667,511,128,1.31030118,0.105938159,1208.25207,3008656476 +3,7668,512,128,1.71459281,0.106063894,1206.81973,3008656476 +3,7669,513,128,1.41497827,0.106095719,1206.45773,3008656476 +3,7670,514,128,1.66081691,0.106134714,1206.01446,3008656476 +3,7671,515,128,1.7089591,0.106102525,1206.38034,3008656476 +3,7672,516,128,1.73994803,0.106205171,1205.21439,3008656476 +3,7673,517,128,1.89432621,0.105975136,1207.83049,3008656476 +3,7674,518,128,1.76012778,0.106107303,1206.32602,3008656476 +3,7675,519,128,1.69045103,0.120664811,1060.78979,3008656476 +3,7676,520,128,1.07909834,0.105825821,1209.53467,3008656476 +3,7677,521,128,1.20945287,0.106203755,1205.23046,3008656476 +3,7678,522,128,0.882465184,0.106064373,1206.81428,3008656476 +3,7679,523,128,1.29421437,0.106112302,1206.26918,3008656476 +3,7680,524,128,1.12425888,0.106136488,1205.9943,3008656476 +3,7681,525,128,1.20829153,0.106097154,1206.44141,3008656476 +3,7682,526,128,1.78067267,0.106027955,1207.22879,3008656476 +3,7683,527,128,1.44857633,0.106066161,1206.79394,3008656476 +3,7684,528,128,1.66257656,0.106025018,1207.26223,3008656476 +3,7685,529,128,1.26186836,0.120637844,1061.02692,3008656476 +3,7686,530,128,0.806365609,0.106053272,1206.9406,3008656476 +3,7687,531,128,1.49849343,0.106216754,1205.08296,3008656476 +3,7688,532,128,1.5494349,0.106047924,1207.00147,3008656476 +3,7689,533,128,1.3220067,0.106121253,1206.16744,3008656476 +3,7690,534,128,1.34957743,0.105943045,1208.19635,3008656476 +3,7691,535,128,1.40695608,0.106024941,1207.26311,3008656476 +3,7692,536,128,1.27416313,0.106008177,1207.45402,3008656476 +3,7693,537,128,1.20293486,0.10595381,1208.07359,3008656476 +3,7694,538,128,1.18996,0.106019203,1207.32845,3008656476 +3,7695,539,128,1.28979909,0.11903345,1075.32799,3008656476 +3,7696,540,128,1.10011542,0.105915779,1208.50737,3008656476 +3,7697,541,128,1.14673722,0.106107798,1206.32039,3008656476 +3,7698,542,128,1.3086009,0.105907191,1208.60537,3008656476 +3,7699,543,128,1.6940701,0.105992919,1207.62784,3008656476 +3,7700,544,128,1.48574078,0.106064668,1206.81092,3008656476 +3,7701,545,128,1.09420037,0.106081822,1206.61578,3008656476 +3,7702,546,128,1.09980357,0.105983966,1207.72986,3008656476 +3,7703,547,128,1.31442761,0.10616524,1205.66769,3008656476 +3,7704,548,128,1.73929691,0.106032653,1207.1753,3008656476 +3,7705,549,128,1.38150322,0.107800282,1187.38094,3008656476 +3,7706,550,128,1.50412285,0.106034489,1207.1544,3008656476 +3,7707,551,128,1.10740769,0.105950364,1208.11289,3008656476 +3,7708,552,128,1.23457718,0.106017291,1207.35022,3008656476 +3,7709,553,128,1.36460102,0.10611474,1206.24147,3008656476 +3,7710,554,128,1.7601589,0.105905405,1208.62575,3008656476 +3,7711,555,128,1.71646154,0.106058888,1206.87669,3008656476 +3,7712,556,128,1.0169003,0.105958235,1208.02314,3008656476 +3,7713,557,128,1.2668041,0.106050781,1206.96895,3008656476 +3,7714,558,128,1.38137567,0.115321891,1109.93671,3008656476 +3,7715,559,128,1.57126355,0.104950199,1219.62608,3008656476 +3,7716,560,128,1.48168862,0.106096775,1206.44572,3008656476 +3,7717,561,128,1.14220393,0.105896021,1208.73286,3008656476 +3,7718,562,128,1.78522098,0.106027288,1207.23639,3008656476 +3,7719,563,128,1.61687338,0.106104719,1206.35539,3008656476 +3,7720,564,128,1.22154033,0.106015406,1207.37169,3008656476 +3,7721,565,128,1.32510722,0.106036096,1207.13611,3008656476 +3,7722,566,128,1.08859968,0.106036099,1207.13607,3008656476 +3,7723,567,128,1.32947946,0.106099832,1206.41096,3008656476 +3,7724,568,128,1.50376356,0.120132449,1065.49064,3008656476 +3,7725,569,128,1.57025671,0.105686698,1211.12687,3008656476 +3,7726,570,128,1.98394597,0.106237713,1204.84521,3008656476 +3,7727,571,128,1.30017316,0.106163291,1205.68983,3008656476 +3,7728,572,128,1.06765592,0.106186307,1205.42849,3008656476 +3,7729,573,128,1.22185409,0.106060894,1206.85387,3008656476 +3,7730,574,128,1.09613204,0.106050171,1206.97589,3008656476 +3,7731,575,128,1.51340663,0.106121566,1206.16388,3008656476 +3,7732,576,128,1.05317307,0.106096688,1206.44671,3008656476 +3,7733,577,128,1.54934657,0.105986629,1207.69951,3008656476 +3,7734,578,128,1.26226163,0.120287436,1064.11779,3008656476 +3,7735,579,128,1.47894323,0.106004312,1207.49805,3008656476 +3,7736,580,128,1.24272943,0.106048567,1206.99415,3008656476 +3,7737,581,128,1.68761241,0.106105206,1206.34986,3008656476 +3,7738,582,128,1.56086206,0.106077456,1206.66544,3008656476 +3,7739,583,128,1.08986962,0.106152206,1205.81573,3008656476 +3,7740,584,128,1.42731345,0.106148712,1205.85542,3008656476 +3,7741,585,128,1.28501856,0.106155469,1205.77867,3008656476 +3,7742,586,128,1.14643896,0.106178185,1205.5207,3008656476 +3,7743,587,128,1.50671709,0.106128923,1206.08027,3008656476 +3,7744,588,128,1.62373149,0.118841753,1077.06254,3008656476 +3,7745,589,128,1.69215178,0.106088441,1206.54049,3008656476 +3,7746,590,128,1.63068032,0.106064111,1206.81726,3008656476 +3,7747,591,128,1.60438061,0.106029996,1207.20555,3008656476 +3,7748,592,128,1.51544833,0.106037938,1207.11514,3008656476 +3,7749,593,128,1.23530471,0.10604251,1207.06309,3008656476 +3,7750,594,128,1.30745709,0.106005838,1207.48067,3008656476 +3,7751,595,128,1.71900415,0.10603521,1207.14619,3008656476 +3,7752,596,128,1.53978372,0.106026855,1207.24132,3008656476 +3,7753,597,128,1.58428597,0.105950212,1208.11462,3008656476 +3,7754,598,128,1.35620344,0.118441114,1080.70581,3008656476 +3,7755,599,128,1.43331718,0.105956666,1208.04103,3008656476 +3,7756,600,128,1.47283101,0.10612786,1206.09235,3008656476 +3,7757,601,128,1.40355515,0.105947102,1208.15008,3008656476 +3,7758,602,128,1.50984156,0.105956544,1208.04242,3008656476 +3,7759,603,128,1.1929481,0.106025205,1207.2601,3008656476 +3,7760,604,128,1.49471426,0.106025299,1207.25903,3008656476 +3,7761,605,128,1.12315476,0.106027316,1207.23607,3008656476 +3,7762,606,128,1.2182641,0.105898952,1208.6994,3008656476 +3,7763,607,128,1.20420146,0.106006684,1207.47103,3008656476 +3,7764,608,128,1.50054753,0.108096941,1184.12231,3008656476 +3,7765,609,128,1.11232281,0.105944044,1208.18495,3008656476 +3,7766,610,128,1.29681802,0.105951296,1208.10226,3008656476 +3,7767,611,128,1.20180297,0.105952139,1208.09265,3008656476 +3,7768,612,128,1.44513154,0.106391095,1203.10821,3008656476 +3,7769,613,128,1.40788198,0.106212549,1205.13067,3008656476 +3,7770,614,128,1.55579674,0.106190081,1205.38565,3008656476 +3,7771,615,128,1.04117799,0.106134508,1206.0168,3008656476 +3,7772,616,128,1.63768196,0.106082063,1206.61304,3008656476 +3,7773,617,128,1.53582084,0.115515305,1108.07828,3008656476 +3,7774,618,128,1.27060652,0.104760613,1221.83325,3008656476 +3,7775,619,128,1.51646495,0.106085279,1206.57646,3008656476 +3,7776,620,128,1.13934469,0.106026918,1207.2406,3008656476 +3,7777,621,128,1.13711619,0.106023482,1207.27972,3008656476 +3,7778,622,128,1.41016901,0.106073078,1206.71524,3008656476 +3,7779,623,128,1.45218289,0.106109805,1206.29757,3008656476 +3,7780,624,128,1.49531484,0.106034753,1207.15139,3008656476 +3,7781,625,128,1.49754453,0.106176063,1205.54479,3008656476 +3,7782,626,128,1.19308186,0.105984453,1207.72431,3008656476 +3,7783,627,128,1.11341202,0.120279934,1064.18416,3008656476 +3,7784,628,128,1.25287664,0.105860549,1209.13788,3008656476 +3,7785,629,128,1.70079637,0.106039259,1207.1001,3008656476 +3,7786,630,128,1.52104068,0.106161665,1205.70829,3008656476 +3,7787,631,128,1.06352413,0.105988892,1207.67372,3008656476 +3,7788,632,128,1.60237062,0.106070928,1206.7397,3008656476 +3,7789,633,128,1.43718612,0.106010283,1207.43004,3008656476 +3,7790,634,128,1.71055388,0.106082606,1206.60686,3008656476 +3,7791,635,128,1.41852367,0.105948037,1208.13942,3008656476 +3,7792,636,128,1.3545382,0.106067854,1206.77467,3008656476 +3,7793,637,128,1.11658454,0.11879936,1077.44688,3008656476 +3,7794,638,128,1.5050267,0.105947031,1208.15089,3008656476 +3,7795,639,128,1.40109384,0.105977528,1207.80322,3008656476 +3,7796,640,128,1.17599154,0.106090255,1206.51986,3008656476 +3,7797,641,128,1.4503715,0.106061692,1206.84479,3008656476 +3,7798,642,128,1.14224768,0.106065316,1206.80355,3008656476 +3,7799,643,128,1.02112782,0.106058996,1206.87546,3008656476 +3,7800,644,128,1.51710832,0.106081616,1206.61812,3008656476 +3,7801,645,128,2.00730467,0.106038743,1207.10597,3008656476 +3,7802,646,128,1.67057252,0.105986645,1207.69933,3008656476 +3,7803,647,128,1.36553133,0.118172023,1083.1667,3008656476 +3,7804,648,128,1.66631341,0.106085048,1206.57908,3008656476 +3,7805,649,128,1.62590003,0.106022296,1207.29323,3008656476 +3,7806,650,128,1.28738439,0.106028328,1207.22454,3008656476 +3,7807,651,128,1.55138767,0.106050975,1206.96674,3008656476 +3,7808,652,128,1.04468727,0.106058302,1206.88336,3008656476 +3,7809,653,128,1.19317079,0.105963043,1207.96833,3008656476 +3,7810,654,128,1.63042951,0.106027798,1207.23058,3008656476 +3,7811,655,128,1.6156317,0.106037744,1207.11734,3008656476 +3,7812,656,128,1.67440999,0.106057961,1206.88724,3008656476 +3,7813,657,128,1.3325659,0.120505261,1062.19429,3008656476 +3,7814,658,128,1.48156691,0.105968967,1207.9008,3008656476 +3,7815,659,128,1.42187059,0.106070729,1206.74197,3008656476 +3,7816,660,128,1.38421297,0.106033916,1207.16092,3008656476 +3,7817,661,128,1.55022109,0.106083551,1206.59611,3008656476 +3,7818,662,128,1.30128121,0.10613003,1206.06769,3008656476 +3,7819,663,128,1.40675342,0.106101803,1206.38855,3008656476 +3,7820,664,128,1.18286788,0.106018058,1207.34149,3008656476 +3,7821,665,128,1.63352883,0.106220941,1205.03546,3008656476 +3,7822,666,128,1.624421,0.106121818,1206.16102,3008656476 +3,7823,667,128,1.33744395,0.10852771,1179.42229,3008656476 +3,7824,668,128,1.19962955,0.106070386,1206.74587,3008656476 +3,7825,669,128,1.17253673,0.10606835,1206.76903,3008656476 +3,7826,670,128,1.41309249,0.106105819,1206.34289,3008656476 +3,7827,671,128,1.1417675,0.106125533,1206.1188,3008656476 +3,7828,672,128,1.29517102,0.106268876,1204.4919,3008656476 +3,7829,673,128,1.41090035,0.10659629,1200.79226,3008656476 +3,7830,674,128,1.25579822,0.106308381,1204.0443,3008656476 +3,7831,675,128,1.33937693,0.106266728,1204.51624,3008656476 +3,7832,676,128,1.30392802,0.118794904,1077.4873,3008656476 +3,7833,677,128,1.50141823,0.106130355,1206.064,3008656476 +3,7834,678,128,1.2974813,0.10616339,1205.6887,3008656476 +3,7835,679,128,1.33600557,0.106161662,1205.70833,3008656476 +3,7836,680,128,1.22985876,0.106009665,1207.43708,3008656476 +3,7837,681,128,1.52484059,0.106167318,1205.64409,3008656476 +3,7838,682,128,1.31751454,0.106030183,1207.20342,3008656476 +3,7839,683,128,1.32189405,0.10602311,1207.28396,3008656476 +3,7840,684,128,1.33345664,0.106069391,1206.75719,3008656476 +3,7841,685,128,1.27289665,0.106085229,1206.57702,3008656476 +3,7842,686,128,1.41379642,0.117840712,1086.21204,3008656476 +3,7843,687,128,1.20660603,0.106092729,1206.49173,3008656476 +3,7844,688,128,1.43228173,0.105995499,1207.59845,3008656476 +3,7845,689,128,1.08109856,0.106089665,1206.52657,3008656476 +3,7846,690,128,1.16701126,0.106083256,1206.59947,3008656476 +3,7847,691,128,1.25970602,0.105980048,1207.7745,3008656476 +3,7848,692,128,1.23475516,0.106080155,1206.63474,3008656476 +3,7849,693,128,1.3626467,0.1060241,1207.27269,3008656476 +3,7850,694,128,1.23924696,0.106065577,1206.80058,3008656476 +3,7851,695,128,1.48611069,0.105932961,1208.31136,3008656476 +3,7852,696,128,1.72195303,0.118206968,1082.84649,3008656476 +3,7853,697,128,1.75702703,0.106136996,1205.98853,3008656476 +3,7854,698,128,1.47818172,0.106066304,1206.79231,3008656476 +3,7855,699,128,1.62904191,0.105993443,1207.62187,3008656476 +3,7856,700,128,1.8352387,0.105986101,1207.70553,3008656476 +3,7857,701,128,1.55952299,0.106090176,1206.52076,3008656476 +3,7858,702,128,1.37717092,0.105889877,1208.80299,3008656476 +3,7859,703,128,1.15537608,0.1060706,1206.74343,3008656476 +3,7860,704,128,1.41816509,0.106033416,1207.16662,3008656476 +3,7861,705,128,1.63518047,0.106020452,1207.31423,3008656476 +3,7862,706,128,1.59198272,0.120426021,1062.89321,3008656476 +3,7863,707,128,1.50025463,0.106033541,1207.16519,3008656476 +3,7864,708,128,1.17737067,0.106125054,1206.12424,3008656476 +3,7865,709,128,1.60208428,0.106112815,1206.26335,3008656476 +3,7866,710,128,0.984714448,0.106040959,1207.08075,3008656476 +3,7867,711,128,1.41671646,0.106017133,1207.35202,3008656476 +3,7868,712,128,1.36722398,0.106139842,1205.9562,3008656476 +3,7869,713,128,1.56749165,0.106007957,1207.45653,3008656476 +3,7870,714,128,1.20904481,0.106004383,1207.49724,3008656476 +3,7871,715,128,0.930176258,0.106239911,1204.82029,3008656476 +3,7872,716,128,1.14068174,0.118328693,1081.73256,3008656476 +3,7873,717,128,1.52360201,0.106106965,1206.32986,3008656476 +3,7874,718,128,1.7520653,0.105991378,1207.6454,3008656476 +3,7875,719,128,1.68292034,0.106074105,1206.70356,3008656476 +3,7876,720,128,1.67295825,0.106061295,1206.8493,3008656476 +3,7877,721,128,1.54583037,0.106115845,1206.22891,3008656476 +3,7878,722,128,1.34702277,0.106119286,1206.1898,3008656476 +3,7879,723,128,1.66821694,0.105957662,1208.02968,3008656476 +3,7880,724,128,1.31036997,0.106126861,1206.1037,3008656476 +3,7881,725,128,1.36067569,0.11923755,1073.48734,3008656476 +3,7882,726,128,1.44491827,0.104732825,1222.15743,3008656476 +3,7883,727,128,1.851372,0.106109611,1206.29978,3008656476 +3,7884,728,128,1.38573563,0.106089136,1206.53259,3008656476 +3,7885,729,128,1.42842448,0.106062426,1206.83643,3008656476 +3,7886,730,128,1.09681499,0.106150601,1205.83396,3008656476 +3,7887,731,128,1.73724174,0.106000635,1207.53994,3008656476 +3,7888,732,128,1.27990723,0.106096053,1206.45393,3008656476 +3,7889,733,128,1.10735595,0.106048431,1206.9957,3008656476 +3,7890,734,128,1.12705863,0.106193325,1205.34883,3008656476 +3,7891,735,128,1.02669036,0.118006248,1084.68833,3008656476 +3,7892,736,128,1.11432552,0.105872108,1209.00587,3008656476 +3,7893,737,128,1.12860858,0.106113478,1206.25582,3008656476 +3,7894,738,128,1.12124002,0.106093473,1206.48327,3008656476 +3,7895,739,128,1.11839533,0.105993272,1207.62382,3008656476 +3,7896,740,128,1.13243473,0.106159506,1205.73281,3008656476 +3,7897,741,128,1.38244545,0.106069435,1206.75669,3008656476 +3,7898,742,128,1.4191252,0.106051683,1206.95869,3008656476 +3,7899,743,128,1.20947313,0.106201579,1205.25515,3008656476 +3,7900,744,128,1.32606483,0.106180776,1205.49128,3008656476 +3,7901,745,128,0.888700366,0.120205507,1064.84306,3008656476 +3,7902,746,128,1.15503013,0.105869406,1209.03673,3008656476 +3,7903,747,128,1.21672201,0.106089552,1206.52786,3008656476 +3,7904,748,128,1.56789076,0.106120095,1206.1806,3008656476 +3,7905,749,128,1.45232105,0.106169803,1205.61588,3008656476 +3,7906,750,128,1.47519875,0.106039885,1207.09297,3008656476 +3,7907,751,128,1.50523412,0.106031868,1207.18424,3008656476 +3,7908,752,128,1.33215249,0.106056157,1206.90777,3008656476 +3,7909,753,128,1.29475927,0.106208505,1205.17655,3008656476 +3,7910,754,128,1.24670303,0.105950206,1208.11469,3008656476 +3,7911,755,128,1.1966753,0.106690454,1199.73245,3008656476 +3,7912,756,128,1.34737015,0.106137248,1205.98567,3008656476 +3,7913,757,128,1.00554729,0.1060888,1206.53641,3008656476 +3,7914,758,128,1.43758309,0.10598208,1207.75135,3008656476 +3,7915,759,128,1.25040281,0.106010618,1207.42622,3008656476 +3,7916,760,128,1.53482842,0.10608941,1206.52947,3008656476 +3,7917,761,128,1.38663363,0.106068091,1206.77198,3008656476 +3,7918,762,128,1.49362957,0.106093056,1206.48801,3008656476 +3,7919,763,128,1.33802652,0.105918935,1208.47137,3008656476 +3,7920,764,128,1.58369446,0.105964837,1207.94788,3008656476 +3,7921,765,128,1.44198239,0.116529068,1098.43837,3008656476 +3,7922,766,128,1.28893399,0.105905287,1208.6271,3008656476 +3,7923,767,128,1.58442295,0.106050432,1206.97292,3008656476 +3,7924,768,128,1.27171743,0.10604686,1207.01358,3008656476 +3,7925,769,128,1.4052496,0.106220373,1205.0419,3008656476 +3,7926,770,128,1.24670088,0.10614374,1205.91191,3008656476 +3,7927,771,128,1.64330697,0.106175072,1205.55605,3008656476 +3,7928,772,128,1.31081128,0.106241629,1204.8008,3008656476 +3,7929,773,128,1.08246779,0.106255362,1204.64509,3008656476 +3,7930,774,128,1.42958248,0.118598929,1079.26776,3008656476 +3,7931,775,128,1.43201554,0.104421252,1225.80411,3008656476 +3,7932,776,128,1.79040611,0.106004334,1207.4978,3008656476 +3,7933,777,128,1.72849143,0.106027409,1207.23501,3008656476 +3,7934,778,128,1.62009656,0.106077974,1206.65955,3008656476 +3,7935,779,128,1.35711789,0.106103161,1206.37311,3008656476 +3,7936,780,128,1.30368805,0.106140462,1205.94915,3008656476 +3,7937,781,128,1.19671869,0.106133483,1206.02845,3008656476 +3,7938,782,128,1.17369437,0.174612382,733.052253,3008656476 +3,7939,783,128,1.03279281,0.10609213,1206.49854,3008656476 +3,7940,784,128,1.46209991,0.117394173,1090.34373,3008656476 +3,7941,785,128,1.4463191,0.106068548,1206.76678,3008656476 +3,7942,786,128,1.37451923,0.106132253,1206.04243,3008656476 +3,7943,787,128,1.53548086,0.106025831,1207.25298,3008656476 +3,7944,788,128,1.74193549,0.106067484,1206.77888,3008656476 +3,7945,789,128,1.73875916,0.106012304,1207.40702,3008656476 +3,7946,790,128,1.34809208,0.10605587,1206.91104,3008656476 +3,7947,791,128,1.62614179,0.106128677,1206.08306,3008656476 +3,7948,792,128,1.34172952,0.106168252,1205.63349,3008656476 +3,7949,793,128,1.43503273,0.120692287,1060.5483,3008656476 +3,7950,794,128,1.50416136,0.102321948,1250.95351,3008656476 +3,7951,795,128,1.53356087,0.106005296,1207.48684,3008656476 +3,7952,796,128,1.7391789,0.106035072,1207.14776,3008656476 +3,7953,797,128,1.44317913,0.10609546,1206.46067,3008656476 +3,7954,798,128,1.64487123,0.106267156,1204.51139,3008656476 +3,7955,799,128,1.52787352,0.106146367,1205.88206,3008656476 +3,7956,800,128,1.7432307,0.106041478,1207.07484,3008656476 +3,7957,801,128,1.70152414,0.105912206,1208.54814,3008656476 +3,7958,802,128,1.79187822,0.105977472,1207.80386,3008656476 +3,7959,803,128,1.338727,0.118926604,1076.29408,3008656476 +3,7960,804,128,1.47104979,0.106039484,1207.09754,3008656476 +3,7961,805,128,1.82872105,0.106029003,1207.21686,3008656476 +3,7962,806,128,1.92548835,0.106023555,1207.27889,3008656476 +3,7963,807,128,1.6299305,0.105978924,1207.78731,3008656476 +3,7964,808,128,1.16725492,0.106026923,1207.24054,3008656476 +3,7965,809,128,1.29847312,0.106022663,1207.28905,3008656476 +3,7966,810,128,1.34239042,0.105918744,1208.47354,3008656476 +3,7967,811,128,1.33223116,0.106098419,1206.42703,3008656476 +3,7968,812,128,1.69361734,0.106002636,1207.51714,3008656476 +3,7969,813,128,1.61645925,0.117910603,1085.56819,3008656476 +3,7970,814,128,1.31643224,0.106159478,1205.73313,3008656476 +3,7971,815,128,1.1646899,0.106036521,1207.13127,3008656476 +3,7972,816,128,1.54126823,0.105943687,1208.18903,3008656476 +3,7973,817,128,1.4860388,0.106000194,1207.54496,3008656476 +3,7974,818,128,1.27197695,0.105987664,1207.68772,3008656476 +3,7975,819,128,1.15772212,0.106013799,1207.38999,3008656476 +3,7976,820,128,1.22515976,0.105988347,1207.67993,3008656476 +3,7977,821,128,1.48853886,0.106177778,1205.52532,3008656476 +3,7978,822,128,1.36718524,0.105853827,1209.21467,3008656476 +3,7979,823,128,1.65227354,0.120505273,1062.19418,3008656476 +3,7980,824,128,1.73170316,0.105979288,1207.78317,3008656476 +3,7981,825,128,1.42054188,0.106135958,1206.00033,3008656476 +3,7982,826,128,1.30880713,0.105993167,1207.62502,3008656476 +3,7983,827,128,1.09970987,0.106138245,1205.97434,3008656476 +3,7984,828,128,1.19078422,0.105987398,1207.69075,3008656476 +3,7985,829,128,1.20786107,0.106113639,1206.25399,3008656476 +3,7986,830,128,1.66134453,0.10593594,1208.27738,3008656476 +3,7987,831,128,1.11232209,0.106104588,1206.35688,3008656476 +3,7988,832,128,1.38666821,0.105930626,1208.33799,3008656476 +3,7989,833,128,1.71349895,0.120587388,1061.47087,3008656476 +3,7990,834,128,1.37534499,0.105993509,1207.62112,3008656476 +3,7991,835,128,1.22360921,0.106094703,1206.46928,3008656476 +3,7992,836,128,1.37853014,0.106048271,1206.99752,3008656476 +3,7993,837,128,1.51681948,0.106035602,1207.14173,3008656476 +3,7994,838,128,1.22830367,0.105932127,1208.32087,3008656476 +3,7995,839,128,1.70128012,0.106065184,1206.80505,3008656476 +3,7996,840,128,1.52357328,0.10591515,1208.51455,3008656476 +3,7997,841,128,1.25652111,0.106057798,1206.8891,3008656476 +3,7998,842,128,1.25482893,0.105998522,1207.56401,3008656476 +3,7999,843,128,1.58501744,0.108276981,1182.15339,3008656476 +3,8000,844,128,1.34199011,0.106115174,1206.23654,3008656476 +3,8001,845,128,1.43718457,0.105967062,1207.92251,3008656476 +3,8002,846,128,1.54460192,0.105965238,1207.94331,3008656476 +3,8003,847,128,1.94462574,0.106106547,1206.33461,3008656476 +3,8004,848,128,1.16512716,0.105998963,1207.55898,3008656476 +3,8005,849,128,1.50980258,0.106080765,1206.6278,3008656476 +3,8006,850,128,1.40066552,0.106001919,1207.52531,3008656476 +3,8007,851,128,1.46958303,0.106071951,1206.72806,3008656476 +3,8008,852,128,1.1262933,0.117014287,1093.88352,3008656476 +3,8009,853,128,1.40627158,0.103566351,1235.92266,3008656476 +3,8010,854,128,1.66718161,0.105974243,1207.84066,3008656476 +3,8011,855,128,1.49506342,0.105979028,1207.78613,3008656476 +3,8012,856,128,1.49576211,0.106073183,1206.71405,3008656476 +3,8013,857,128,1.34667659,0.106062879,1206.83128,3008656476 +3,8014,858,128,1.7035718,0.105968878,1207.90181,3008656476 +3,8015,859,128,1.31249905,0.105983432,1207.73594,3008656476 +3,8016,860,128,1.57833135,0.105985868,1207.70818,3008656476 +3,8017,861,128,1.43258739,0.106105616,1206.34519,3008656476 +3,8018,862,128,1.14166331,0.118401779,1081.06484,3008656476 +3,8019,863,128,1.34957445,0.106037269,1207.12275,3008656476 +3,8020,864,128,1.30873859,0.105982553,1207.74596,3008656476 +3,8021,865,128,1.22465968,0.106163909,1205.68281,3008656476 +3,8022,866,128,1.27838445,0.106055438,1206.91595,3008656476 +3,8023,867,128,1.44683301,0.10616553,1205.6644,3008656476 +3,8024,868,128,1.41261959,0.106110674,1206.28769,3008656476 +3,8025,869,128,1.62898612,0.106000839,1207.53761,3008656476 +3,8026,870,128,1.68410146,0.106074587,1206.69808,3008656476 +3,8027,871,128,1.43598521,0.106106709,1206.33277,3008656476 +3,8028,872,128,1.37071717,0.120137987,1065.44152,3008656476 +3,8029,873,128,1.47816873,0.106003646,1207.50564,3008656476 +3,8030,874,128,1.69796181,0.106171058,1205.60162,3008656476 +3,8031,875,128,1.47231781,0.106028473,1207.22289,3008656476 +3,8032,876,128,1.47922397,0.106015008,1207.37622,3008656476 +3,8033,877,128,1.35503304,0.106124376,1206.13194,3008656476 +3,8034,878,128,1.46859097,0.106055556,1206.91461,3008656476 +3,8035,879,128,1.35174823,0.106058301,1206.88337,3008656476 +3,8036,880,128,1.51396835,0.106084071,1206.5902,3008656476 +3,8037,881,128,2.08037829,0.106010527,1207.42726,3008656476 +3,8038,882,128,1.90774083,0.118422535,1080.87536,3008656476 +3,8039,883,128,1.60478759,0.10606243,1206.83639,3008656476 +3,8040,884,128,1.18750215,0.106112172,1206.27066,3008656476 +3,8041,885,128,1.8166461,0.106012774,1207.40167,3008656476 +3,8042,886,128,1.45311415,0.106093591,1206.48193,3008656476 +3,8043,887,128,1.52765632,0.106190485,1205.38107,3008656476 +3,8044,888,128,1.54708123,0.106113294,1206.25791,3008656476 +3,8045,889,128,1.79485595,0.106085544,1206.57344,3008656476 +3,8046,890,128,1.41248882,0.106167155,1205.64595,3008656476 +3,8047,891,128,1.28245699,0.106023708,1207.27715,3008656476 +3,8048,892,128,1.54403007,0.120130162,1065.51092,3008656476 +3,8049,893,128,1.50254273,0.106198095,1205.29469,3008656476 +3,8050,894,128,1.39299941,0.106076599,1206.67519,3008656476 +3,8051,895,128,1.59552038,0.106009318,1207.44103,3008656476 +3,8052,896,128,1.04579997,0.106081427,1206.62027,3008656476 +3,8053,897,128,1.07387888,0.106105887,1206.34211,3008656476 +3,8054,898,128,1.17951977,0.106011025,1207.42159,3008656476 +3,8055,899,128,1.21278334,0.106030289,1207.20222,3008656476 +3,8056,900,128,1.2008723,0.106020696,1207.31145,3008656476 +3,8057,901,128,1.41333079,0.106035957,1207.13769,3008656476 +3,8058,902,128,1.16020882,0.109069438,1173.56431,3008656476 +3,8059,903,128,1.46161032,0.105960322,1207.99935,3008656476 +3,8060,904,128,1.4111191,0.10619086,1205.37681,3008656476 +3,8061,905,128,1.45652103,0.106159864,1205.72875,3008656476 +3,8062,906,128,1.74408305,0.106067809,1206.77519,3008656476 +3,8063,907,128,1.63929963,0.105891458,1208.78494,3008656476 +3,8064,908,128,1.43906665,0.10603144,1207.18911,3008656476 +3,8065,909,128,1.31299281,0.106089612,1206.52718,3008656476 +3,8066,910,128,1.55180669,0.105998877,1207.55996,3008656476 +3,8067,911,128,1.58655739,0.11832523,1081.76422,3008656476 +3,8068,912,128,1.64471591,0.10430848,1227.12938,3008656476 +3,8069,913,128,1.28904772,0.106025536,1207.25633,3008656476 +3,8070,914,128,1.82604659,0.106097463,1206.4379,3008656476 +3,8071,915,128,1.74134243,0.106055202,1206.91864,3008656476 +3,8072,916,128,1.4291718,0.106045521,1207.02882,3008656476 +3,8073,917,128,1.25651836,0.10604514,1207.03316,3008656476 +3,8074,918,128,1.53741491,0.105956992,1208.03731,3008656476 +3,8075,919,128,1.18190098,0.10607068,1206.74252,3008656476 +3,8076,920,128,1.57425952,0.106010713,1207.42514,3008656476 +3,8077,921,128,1.51677442,0.120680953,1060.64791,3008656476 +3,8078,922,128,1.54339278,0.105817991,1209.62417,3008656476 +3,8079,923,128,1.47447062,0.106115979,1206.22739,3008656476 +3,8080,924,128,1.4308877,0.106231309,1204.91785,3008656476 +3,8081,925,128,1.52984083,0.106066355,1206.79173,3008656476 +3,8082,926,128,1.46280539,0.10608735,1206.5529,3008656476 +3,8083,927,128,1.25716555,0.106103765,1206.36624,3008656476 +3,8084,928,128,1.16293192,0.106139485,1205.96025,3008656476 +3,8085,929,128,1.22736537,0.106105487,1206.34666,3008656476 +3,8086,930,128,1.22676623,0.106090249,1206.51993,3008656476 +3,8087,931,128,1.49669313,0.118577149,1079.46599,3008656476 +3,8088,932,128,1.60845876,0.106100337,1206.40522,3008656476 +3,8089,933,128,1.48159373,0.105965239,1207.9433,3008656476 +3,8090,934,128,1.56424499,0.10612028,1206.1785,3008656476 +3,8091,935,128,1.55554008,0.10605116,1206.96464,3008656476 +3,8092,936,128,1.48734069,0.106143921,1205.90985,3008656476 +3,8093,937,128,1.33926976,0.105979618,1207.77941,3008656476 +3,8094,938,128,1.53123248,0.106015375,1207.37204,3008656476 +3,8095,939,128,1.49949503,0.105990778,1207.65224,3008656476 +3,8096,940,128,1.51481724,0.106137586,1205.98183,3008656476 +3,8097,941,128,1.36227655,0.118136309,1083.49415,3008656476 +3,8098,942,128,1.32733262,0.106123665,1206.14003,3008656476 +3,8099,943,128,1.37895167,0.106110173,1206.29339,3008656476 +3,8100,944,128,1.877949,0.106056515,1206.9037,3008656476 +3,8101,945,128,1.48967111,0.106059284,1206.87219,3008656476 +3,8102,946,128,1.57964563,0.106074885,1206.69469,3008656476 +3,8103,947,128,1.62458849,0.105972245,1207.86344,3008656476 +3,8104,948,128,1.77911031,0.106095717,1206.45775,3008656476 +3,8105,949,128,1.72304118,0.106049871,1206.97931,3008656476 +3,8106,950,128,1.38907123,0.105975412,1207.82734,3008656476 +3,8107,951,128,1.2108742,0.120353802,1063.53101,3008656476 +3,8108,952,128,1.39435458,0.106109647,1206.29937,3008656476 +3,8109,953,128,1.59214151,0.106050345,1206.97391,3008656476 +3,8110,954,128,1.60259581,0.106085793,1206.57061,3008656476 +3,8111,955,128,1.1662302,0.106148733,1205.85518,3008656476 +3,8112,956,128,1.58812702,0.106128736,1206.08239,3008656476 +3,8113,957,128,1.53405297,0.106059506,1206.86966,3008656476 +3,8114,958,128,1.23689342,0.106230889,1204.92261,3008656476 +3,8115,959,128,1.49189866,0.106225327,1204.9857,3008656476 +3,8116,960,128,1.36492562,0.106194128,1205.33972,3008656476 +3,8117,961,128,1.32455349,0.107965206,1185.56714,3008656476 +3,8118,962,128,1.46922565,0.105984592,1207.72272,3008656476 +3,8119,963,128,1.36224639,0.106183754,1205.45748,3008656476 +3,8120,964,128,1.22595716,0.106165546,1205.66422,3008656476 +3,8121,965,128,1.08792412,0.106168713,1205.62825,3008656476 +3,8122,966,128,1.4704895,0.106076117,1206.68067,3008656476 +3,8123,967,128,1.77275145,0.106194992,1205.32991,3008656476 +3,8124,968,128,1.39591408,0.106120568,1206.17523,3008656476 +3,8125,969,128,1.20213115,0.10611161,1206.27705,3008656476 +3,8126,970,128,1.27712989,0.118960779,1075.98488,3008656476 +3,8127,971,128,1.63361132,0.10599868,1207.56221,3008656476 +3,8128,972,128,1.28492558,0.105860733,1209.13578,3008656476 +3,8129,973,128,1.32462966,0.106127214,1206.09969,3008656476 +3,8130,974,128,1.1673044,0.105982146,1207.7506,3008656476 +3,8131,975,128,1.34583783,0.105939494,1208.23685,3008656476 +3,8132,976,128,1.53226793,0.10589422,1208.75341,3008656476 +3,8133,977,128,1.18796968,0.105972825,1207.85683,3008656476 +3,8134,978,128,1.3827188,0.106063203,1206.82759,3008656476 +3,8135,979,128,1.65060878,0.106139878,1205.95579,3008656476 +3,8136,980,128,1.47816384,0.118033897,1084.43425,3008656476 +3,8137,981,128,1.45097673,0.106083219,1206.59989,3008656476 +3,8138,982,128,1.26983237,0.10607431,1206.70123,3008656476 +3,8139,983,128,1.58360767,0.106072776,1206.71868,3008656476 +3,8140,984,128,1.18172741,0.106123826,1206.1382,3008656476 +3,8141,985,128,1.25750899,0.106081256,1206.62221,3008656476 +3,8142,986,128,0.972642243,0.106052658,1206.94759,3008656476 +3,8143,987,128,1.22896302,0.106047174,1207.01,3008656476 +3,8144,988,128,1.28291774,0.1060165,1207.35923,3008656476 +3,8145,989,128,1.42770731,0.105986516,1207.7008,3008656476 +3,8146,990,128,1.38553143,0.117847114,1086.15303,3008656476 +3,8147,991,128,1.07873178,0.106076203,1206.67969,3008656476 +3,8148,992,128,1.27593648,0.106108798,1206.30902,3008656476 +3,8149,993,128,1.02895045,0.105955732,1208.05168,3008656476 +3,8150,994,128,1.03650045,0.106104616,1206.35656,3008656476 +3,8151,995,128,1.22675478,0.106154037,1205.79493,3008656476 +3,8152,996,128,1.43671095,0.106030516,1207.19963,3008656476 +3,8153,997,128,1.46832633,0.105972877,1207.85623,3008656476 +3,8154,998,128,1.34015918,0.106160799,1205.71813,3008656476 +3,8155,999,128,1.3353802,0.106056511,1206.90374,3008656476 +3,8156,1000,128,1.49703324,0.12013666,1065.45329,3008656476 +3,8157,1001,128,1.4665848,0.10610838,1206.31377,3008656476 +3,8158,1002,128,1.25749004,0.106094441,1206.47226,3008656476 +3,8159,1003,128,1.16628027,0.106039209,1207.10067,3008656476 +3,8160,1004,128,1.51590586,0.106024692,1207.26595,3008656476 +3,8161,1005,128,1.3966862,0.105980938,1207.76436,3008656476 +3,8162,1006,128,1.34545004,0.106202724,1205.24216,3008656476 +3,8163,1007,128,1.50029147,0.106105003,1206.35216,3008656476 +3,8164,1008,128,1.24193609,0.106142609,1205.92476,3008656476 +3,8165,1009,128,1.42823815,0.106104941,1206.35287,3008656476 +3,8166,1010,128,1.15174055,0.116795454,1095.93307,3008656476 +3,8167,1011,128,1.16827798,0.106145753,1205.88904,3008656476 +3,8168,1012,128,1.36551416,0.106029463,1207.21162,3008656476 +3,8169,1013,128,1.41263318,0.106023139,1207.28363,3008656476 +3,8170,1014,128,1.3411274,0.106098779,1206.42293,3008656476 +3,8171,1015,128,1.07414687,0.106052723,1206.94685,3008656476 +3,8172,1016,128,1.17305696,0.106158843,1205.74035,3008656476 +3,8173,1017,128,1.36035395,0.106017918,1207.34308,3008656476 +3,8174,1018,128,1.38783228,0.106001004,1207.53573,3008656476 +3,8175,1019,128,1.7587682,0.11928014,1073.10404,3008656476 +3,8176,1020,128,1.45727277,0.10364248,1235.01483,3008656476 +3,8177,1021,128,1.20294571,0.106115351,1206.23452,3008656476 +3,8178,1022,128,1.33779156,0.106122545,1206.15275,3008656476 +3,8179,1023,128,1.45335102,0.106108552,1206.31182,3008656476 +3,8180,1024,128,1.60644484,0.106128947,1206.08,3008656476 +3,8181,1025,128,1.62299156,0.106128884,1206.08071,3008656476 +3,8182,1026,128,1.32562757,0.106061993,1206.84136,3008656476 +3,8183,1027,128,1.33379519,0.106073655,1206.70868,3008656476 +3,8184,1028,128,1.27043128,0.106067015,1206.78422,3008656476 +3,8185,1029,128,1.63828194,0.11829442,1082.04597,3008656476 +3,8186,1030,128,1.20238936,0.106299557,1204.14425,3008656476 +3,8187,1031,128,1.60366106,0.106017484,1207.34803,3008656476 +3,8188,1032,128,1.27831054,0.092968448,1376.8112,3008656476 +3,8189,1033,128,1.44157898,0.106224947,1204.99001,3008656476 +3,8190,1034,128,1.76802635,0.106196822,1205.30914,3008656476 +3,8191,1035,128,1.22458994,0.106164825,1205.67241,3008656476 +3,8192,1036,128,1.41977251,0.106210544,1205.15342,3008656476 +3,8193,1037,128,1.33998179,0.10622225,1205.02061,3008656476 +3,8194,1038,128,1.22215736,0.106205742,1205.20791,3008656476 +3,8195,1039,128,1.35697794,0.120437469,1062.79218,3008656476 +3,8196,1040,128,1.4592011,0.106060534,1206.85796,3008656476 +3,8197,1041,128,1.58775699,0.106023326,1207.2815,3008656476 +3,8198,1042,128,1.63107467,0.106022684,1207.28881,3008656476 +3,8199,1043,128,1.2630465,0.105927149,1208.37766,3008656476 +3,8200,1044,128,1.12314761,0.106172221,1205.58842,3008656476 +3,8201,1045,128,1.41482484,0.106010853,1207.42355,3008656476 +3,8202,1046,128,1.25952876,0.106124263,1206.13323,3008656476 +3,8203,1047,128,1.03672421,0.1059903,1207.65768,3008656476 +3,8204,1048,128,1.51874781,0.106067207,1206.78204,3008656476 +3,8205,1049,128,1.15463221,0.119157989,1074.2041,3008656476 +3,8206,1050,128,1.08566427,0.105962293,1207.97688,3008656476 +3,8207,1051,128,1.30203223,0.105964316,1207.95382,3008656476 +3,8208,1052,128,1.11671317,0.106032635,1207.17551,3008656476 +3,8209,1053,128,1.35406697,0.106197062,1205.30641,3008656476 +3,8210,1054,128,1.49147582,0.10610407,1206.36277,3008656476 +3,8211,1055,128,1.02456319,0.10622977,1204.9353,3008656476 +3,8212,1056,128,1.44110024,0.106136789,1205.99088,3008656476 +3,8213,1057,128,1.44071496,0.10618596,1205.43243,3008656476 +3,8214,1058,128,1.30666029,0.106163225,1205.69058,3008656476 +3,8215,1059,128,1.11154675,0.114209165,1120.75069,3008656476 +3,8216,1060,128,1.44592774,0.106139983,1205.95459,3008656476 +3,8217,1061,128,1.53384018,0.106112934,1206.262,3008656476 +3,8218,1062,128,1.42748237,0.106083243,1206.59961,3008656476 +3,8219,1063,128,1.23391247,0.106037181,1207.12375,3008656476 +3,8220,1064,128,1.3216604,0.10612483,1206.12678,3008656476 +3,8221,1065,128,1.3266679,0.106066942,1206.78505,3008656476 +3,8222,1066,128,1.35407186,0.106073767,1206.7074,3008656476 +3,8223,1067,128,1.36933947,0.106043515,1207.05165,3008656476 +3,8224,1068,128,1.33519745,0.119469951,1071.39912,3008656476 +3,8225,1069,128,1.59544337,0.104405509,1225.98895,3008656476 +3,8226,1070,128,1.21746123,0.106087069,1206.5561,3008656476 +3,8227,1071,128,1.36937058,0.105952263,1208.09123,3008656476 +3,8228,1072,128,1.43233049,0.106040904,1207.08137,3008656476 +3,8229,1073,128,1.5685674,0.106054699,1206.92436,3008656476 +3,8230,1074,128,1.66929352,0.106052561,1206.94869,3008656476 +3,8231,1075,128,1.5480777,0.106105981,1206.34104,3008656476 +3,8232,1076,128,1.61961639,0.106116285,1206.22391,3008656476 +3,8233,1077,128,1.40672636,0.105979437,1207.78147,3008656476 +3,8234,1078,128,1.62320101,0.120403505,1063.09198,3008656476 +3,8235,1079,128,1.87480843,0.106163437,1205.68817,3008656476 +3,8236,1080,128,1.56372678,0.106106401,1206.33627,3008656476 +3,8237,1081,128,0.901490688,0.106036199,1207.13493,3008656476 +3,8238,1082,128,1.17133272,0.106025506,1207.25668,3008656476 +3,8239,1083,128,1.69880462,0.105912851,1208.54078,3008656476 +3,8240,1084,128,1.50162137,0.10607011,1206.74901,3008656476 +3,8241,1085,128,1.67286181,0.105978773,1207.78904,3008656476 +3,8242,1086,128,1.35541153,0.105952863,1208.08439,3008656476 +3,8243,1087,128,1.16014647,0.106021631,1207.3008,3008656476 +3,8244,1088,128,1.12280548,0.11990163,1067.54178,3008656476 +3,8245,1089,128,1.4930824,0.106028727,1207.22,3008656476 +3,8246,1090,128,1.66472328,0.106046525,1207.01739,3008656476 +3,8247,1091,128,1.48095846,0.106004364,1207.49746,3008656476 +3,8248,1092,128,1.25110126,0.105973736,1207.84644,3008656476 +3,8249,1093,128,1.56665325,0.106165141,1205.66882,3008656476 +3,8250,1094,128,1.33006859,0.105964138,1207.95585,3008656476 +3,8251,1095,128,1.3714397,0.106071279,1206.73571,3008656476 +3,8252,1096,128,1.19222593,0.106080741,1206.62807,3008656476 +3,8253,1097,128,1.19685102,0.106895216,1197.43432,3008656476 +3,8254,1098,128,1.4278214,0.118458165,1080.55025,3008656476 +3,8255,1099,128,1.4921037,0.10598268,1207.74451,3008656476 +3,8256,1100,128,1.25247812,0.106071116,1206.73756,3008656476 +3,8257,1101,128,1.5100764,0.106016484,1207.35941,3008656476 +3,8258,1102,128,1.3916533,0.106054874,1206.92237,3008656476 +3,8259,1103,128,1.56861281,0.106138755,1205.96855,3008656476 +3,8260,1104,128,1.46282101,0.106021572,1207.30147,3008656476 +3,8261,1105,128,1.59843218,0.106089295,1206.53078,3008656476 +3,8262,1106,128,1.36724532,0.106104298,1206.36018,3008656476 +3,8263,1107,128,1.40788555,0.105981131,1207.76216,3008656476 +3,8264,1108,128,1.43346727,0.118142895,1083.43375,3008656476 +3,8265,1109,128,1.30666602,0.106063807,1206.82072,3008656476 +3,8266,1110,128,1.34495747,0.106123974,1206.13651,3008656476 +3,8267,1111,128,1.4765842,0.105996937,1207.58206,3008656476 +3,8268,1112,128,1.05920088,0.106037248,1207.12299,3008656476 +3,8269,1113,128,1.3660872,0.106104197,1206.36133,3008656476 +3,8270,1114,128,2.00147438,0.106057922,1206.88769,3008656476 +3,8271,1115,128,0.975114226,0.106157061,1205.76059,3008656476 +3,8272,1116,128,1.35807061,0.106106184,1206.33874,3008656476 +3,8273,1117,128,1.16403735,0.10610333,1206.37119,3008656476 +3,8274,1118,128,1.52263737,0.108778834,1176.6995,3008656476 +3,8275,1119,128,1.15166152,0.106114719,1206.24171,3008656476 +3,8276,1120,128,1.06484509,0.106015923,1207.3658,3008656476 +3,8277,1121,128,0.963689327,0.106154966,1205.78438,3008656476 +3,8278,1122,128,1.27045035,0.106070332,1206.74648,3008656476 +3,8279,1123,128,1.11509681,0.106041493,1207.07467,3008656476 +3,8280,1124,128,1.04387712,0.106086182,1206.56619,3008656476 +3,8281,1125,128,1.30488598,0.10605867,1206.87917,3008656476 +3,8282,1126,128,1.19468105,0.106021146,1207.30632,3008656476 +3,8283,1127,128,1.70272052,0.119775278,1068.66794,3008656476 +3,8284,1128,128,1.3250103,0.104387798,1226.19695,3008656476 +3,8285,1129,128,1.07544112,0.106106238,1206.33812,3008656476 +3,8286,1130,128,1.39285946,0.106056708,1206.9015,3008656476 +3,8287,1131,128,1.2778604,0.106238936,1204.83134,3008656476 +3,8288,1132,128,1.27587855,0.106083244,1206.5996,3008656476 +3,8289,1133,128,1.20147908,0.106074736,1206.69638,3008656476 +3,8290,1134,128,1.58328724,0.105993919,1207.61645,3008656476 +3,8291,1135,128,1.50822508,0.106037023,1207.12555,3008656476 +3,8292,1136,128,1.51491189,0.105952389,1208.0898,3008656476 +3,8293,1137,128,1.34551442,0.12041187,1063.01812,3008656476 +3,8294,1138,128,1.32179356,0.105781813,1210.03787,3008656476 +3,8295,1139,128,1.40450859,0.105981328,1207.75992,3008656476 +3,8296,1140,128,1.31825018,0.105995257,1207.6012,3008656476 +3,8297,1141,128,1.43177474,0.105993722,1207.61869,3008656476 +3,8298,1142,128,1.30593038,0.10602836,1207.22418,3008656476 +3,8299,1143,128,1.37062991,0.105963692,1207.96093,3008656476 +3,8300,1144,128,1.16104376,0.106042303,1207.06545,3008656476 +3,8301,1145,128,1.00610566,0.105969494,1207.89479,3008656476 +3,8302,1146,128,1.51869059,0.105952339,1208.09037,3008656476 +3,8303,1147,128,1.56167209,0.117913097,1085.54523,3008656476 +3,8304,1148,128,1.5520947,0.105832842,1209.45443,3008656476 +3,8305,1149,128,1.62228787,0.106095521,1206.45998,3008656476 +3,8306,1150,128,1.40383971,0.106070802,1206.74114,3008656476 +3,8307,1151,128,1.46043193,0.105987691,1207.68741,3008656476 +3,8308,1152,128,1.61226499,0.106135636,1206.00399,3008656476 +3,8309,1153,128,1.61386013,0.105984139,1207.72788,3008656476 +3,8310,1154,128,1.71871924,0.106162595,1205.69773,3008656476 +3,8311,1155,128,1.47116697,0.106078261,1206.65628,3008656476 +3,8312,1156,128,1.25684571,0.106027061,1207.23897,3008656476 +3,8313,1157,128,1.57197106,0.118900157,1076.53348,3008656476 +3,8314,1158,128,1.12499547,0.106021788,1207.29901,3008656476 +3,8315,1159,128,1.59704661,0.105980625,1207.76793,3008656476 +3,8316,1160,128,1.55761147,0.106041419,1207.07551,3008656476 +3,8317,1161,128,1.68846965,0.105928124,1208.36653,3008656476 +3,8318,1162,128,1.32324886,0.106099928,1206.40987,3008656476 +3,8319,1163,128,1.16404653,0.105909289,1208.58143,3008656476 +3,8320,1164,128,1.20504129,0.105996548,1207.5865,3008656476 +3,8321,1165,128,1.55319369,0.106028574,1207.22174,3008656476 +3,8322,1166,128,1.29366255,0.106050415,1206.97312,3008656476 +3,8323,1167,128,1.63231301,0.11950548,1071.08059,3008656476 +3,8324,1168,128,1.29581428,0.10605632,1206.90592,3008656476 +3,8325,1169,128,1.39827085,0.105982931,1207.74165,3008656476 +3,8326,1170,128,1.48582017,0.106039001,1207.10304,3008656476 +3,8327,1171,128,1.44857991,0.106013999,1207.38771,3008656476 +3,8328,1172,128,1.49538803,0.106076002,1206.68198,3008656476 +3,8329,1173,128,1.63170147,0.105880396,1208.91123,3008656476 +3,8330,1174,128,1.57114398,0.106073601,1206.70929,3008656476 +3,8331,1175,128,1.38526809,0.105884157,1208.86829,3008656476 +3,8332,1176,128,1.4415741,0.106072444,1206.72245,3008656476 +3,8333,1177,128,1.39742279,0.108081388,1184.29271,3008656476 +3,8334,1178,128,1.34882891,0.106052964,1206.94411,3008656476 +3,8335,1179,128,1.42108011,0.105931326,1208.33001,3008656476 +3,8336,1180,128,1.68685973,0.106093848,1206.479,3008656476 +3,8337,1181,128,1.54739463,0.106062418,1206.83653,3008656476 +3,8338,1182,128,1.40897048,0.106235337,1204.87216,3008656476 +3,8339,1183,128,1.03971529,0.106038229,1207.11182,3008656476 +3,8340,1184,128,1.14197505,0.106106134,1206.33931,3008656476 +3,8341,1185,128,1.75076509,0.106106726,1206.33257,3008656476 +3,8342,1186,128,1.82836533,0.118076986,1084.03851,3008656476 +3,8343,1187,128,1.5662117,0.103954981,1231.30223,3008656476 +3,8344,1188,128,1.53308892,0.106047295,1207.00863,3008656476 +3,8345,1189,128,1.58923042,0.105969974,1207.88932,3008656476 +3,8346,1190,128,1.39166558,0.106018366,1207.33798,3008656476 +3,8347,1191,128,1.23032272,0.106003674,1207.50532,3008656476 +3,8348,1192,128,1.28509903,0.106132808,1206.03612,3008656476 +3,8349,1193,128,1.29581606,0.106053879,1206.93369,3008656476 +3,8350,1194,128,1.10349476,0.106062785,1206.83235,3008656476 +3,8351,1195,128,1.04613268,0.106016925,1207.35439,3008656476 +3,8352,1196,128,1.07782567,0.117763538,1086.92387,3008656476 +3,8353,1197,128,1.45655036,0.10619377,1205.34378,3008656476 +3,8354,1198,128,1.18545973,0.106055685,1206.91314,3008656476 +3,8355,1199,128,1.3359282,0.106019873,1207.32082,3008656476 +3,8356,1200,128,1.40107846,0.106015731,1207.36799,3008656476 +3,8357,1201,128,1.62847221,0.106172166,1205.58904,3008656476 +3,8358,1202,128,1.57779109,0.106061031,1206.85231,3008656476 +3,8359,1203,128,1.20596468,0.106081052,1206.62453,3008656476 +3,8360,1204,128,1.33839345,0.106046286,1207.02011,3008656476 +3,8361,1205,128,1.32604849,0.10604955,1206.98296,3008656476 +3,8362,1206,128,1.16664803,0.117958144,1085.13067,3008656476 +3,8363,1207,128,1.5279007,0.105924355,1208.40953,3008656476 +3,8364,1208,128,1.33368719,0.106076249,1206.67917,3008656476 +3,8365,1209,128,1.19548452,0.106237139,1204.85172,3008656476 +3,8366,1210,128,0.951035738,0.106023767,1207.27648,3008656476 +3,8367,1211,128,1.47767746,0.106187134,1205.4191,3008656476 +3,8368,1212,128,1.32706594,0.106028534,1207.2222,3008656476 +3,8369,1213,128,1.0551666,0.106094592,1206.47054,3008656476 +3,8370,1214,128,1.30236411,0.106036422,1207.13239,3008656476 +3,8371,1215,128,1.50212479,0.106080185,1206.6344,3008656476 +3,8372,1216,128,1.37856126,0.120864681,1059.0356,3008656476 +3,8373,1217,128,1.55286205,0.106069857,1206.75189,3008656476 +3,8374,1218,128,1.52036095,0.106167883,1205.63768,3008656476 +3,8375,1219,128,1.55138636,0.106110092,1206.29431,3008656476 +3,8376,1220,128,1.14593148,0.106159165,1205.73669,3008656476 +3,8377,1221,128,1.26604402,0.10607685,1206.67233,3008656476 +3,8378,1222,128,1.24489391,0.106017436,1207.34857,3008656476 +3,8379,1223,128,1.31533062,0.106075278,1206.69021,3008656476 +3,8380,1224,128,1.53461146,0.105973114,1207.85353,3008656476 +3,8381,1225,128,1.4256742,0.10616248,1205.69904,3008656476 +3,8382,1226,128,1.33239281,0.119262681,1073.26113,3008656476 +3,8383,1227,128,1.45030725,0.106112358,1206.26855,3008656476 +3,8384,1228,128,1.434273,0.106127336,1206.0983,3008656476 +3,8385,1229,128,1.32526863,0.106030125,1207.20408,3008656476 +3,8386,1230,128,1.40172923,0.106173176,1205.57757,3008656476 +3,8387,1231,128,1.14538896,0.106023548,1207.27897,3008656476 +3,8388,1232,128,1.27037811,0.106024381,1207.26949,3008656476 +3,8389,1233,128,1.16063201,0.105998528,1207.56394,3008656476 +3,8390,1234,128,1.51375866,0.106114436,1206.24493,3008656476 +3,8391,1235,128,1.39177632,0.105999845,1207.54894,3008656476 +3,8392,1236,128,1.18672574,0.107814163,1187.22806,3008656476 +3,8393,1237,128,1.10659099,0.105996049,1207.59218,3008656476 +3,8394,1238,128,1.24183738,0.106180437,1205.49513,3008656476 +3,8395,1239,128,1.26799548,0.106160667,1205.71963,3008656476 +3,8396,1240,128,1.49483442,0.106182195,1205.47517,3008656476 +3,8397,1241,128,0.984401584,0.105841424,1209.35637,3008656476 +3,8398,1242,128,1.43674433,0.106292626,1204.22277,3008656476 +3,8399,1243,128,0.79777813,0.106154102,1205.7942,3008656476 +3,8400,1244,128,1.46535134,0.106205496,1205.2107,3008656476 +3,8401,1245,128,1.19899774,0.115804751,1105.30871,3008656476 +3,8402,1246,128,1.18608785,0.104685062,1222.71504,3008656476 +3,8403,1247,128,1.02010989,0.106042693,1207.06101,3008656476 +3,8404,1248,128,0.75881207,0.106027112,1207.23839,3008656476 +3,8405,1249,128,0.743143141,0.106026768,1207.24231,3008656476 +3,8406,1250,128,0.979131281,0.106083443,1206.59734,3008656476 +3,8407,1251,128,0.872152865,0.10598155,1207.75739,3008656476 +3,8408,1252,128,1.06628227,0.106005411,1207.48553,3008656476 +3,8409,1253,128,1.02106309,0.106046699,1207.01541,3008656476 +3,8410,1254,128,1.10753763,0.106120477,1206.17626,3008656476 +3,8411,1255,128,0.741222143,0.119106524,1074.66825,3008656476 +3,8412,1256,128,0.992992043,0.106190083,1205.38563,3008656476 +3,8413,1257,128,1.15033114,0.106007177,1207.46542,3008656476 +3,8414,1258,128,0.789342105,0.106164795,1205.67275,3008656476 +3,8415,1259,128,1.44785726,0.106070349,1206.74629,3008656476 +3,8416,1260,128,1.6386236,0.106068586,1206.76635,3008656476 +3,8417,1261,128,1.30121446,0.106101138,1206.39611,3008656476 +3,8418,1262,128,1.3008641,0.106217802,1205.07107,3008656476 +3,8419,1263,128,1.19887078,0.106124598,1206.12942,3008656476 +3,8420,1264,128,1.00273228,0.105979835,1207.77693,3008656476 +3,8421,1265,128,1.09177363,0.119755254,1068.84663,3008656476 +3,8422,1266,128,1.21997941,0.105851809,1209.23772,3008656476 +3,8423,1267,128,1.36441565,0.106104062,1206.36286,3008656476 +3,8424,1268,128,1.15336668,0.106014629,1207.38054,3008656476 +3,8425,1269,128,1.29743004,0.106008047,1207.45551,3008656476 +3,8426,1270,128,0.921697736,0.106055739,1206.91253,3008656476 +3,8427,1271,128,1.22052228,0.10598795,1207.68446,3008656476 +3,8428,1272,128,1.26606023,0.106064553,1206.81223,3008656476 +3,8429,1273,128,1.47755086,0.106080397,1206.63198,3008656476 +3,8430,1274,128,1.06371379,0.106015121,1207.37494,3008656476 +3,8431,1275,128,1.46325552,0.117875997,1085.88689,3008656476 +3,8432,1276,128,1.27580905,0.105882729,1208.8846,3008656476 +3,8433,1277,128,1.14159358,0.105958245,1208.02303,3008656476 +3,8434,1278,128,1.18541873,0.105972551,1207.85995,3008656476 +3,8435,1279,128,1.38465059,0.105973749,1207.84629,3008656476 +3,8436,1280,128,1.3608619,0.105981577,1207.75708,3008656476 +3,8437,1281,128,1.46949542,0.105943482,1208.19136,3008656476 +3,8438,1282,128,1.52247679,0.105987629,1207.68812,3008656476 +3,8439,1283,128,0.953315496,0.106024814,1207.26456,3008656476 +3,8440,1284,128,1.51915514,0.106015047,1207.37578,3008656476 +3,8441,1285,128,1.61853933,0.118066159,1084.13792,3008656476 +3,8442,1286,128,1.41003025,0.106075554,1206.68708,3008656476 +3,8443,1287,128,1.28100431,0.106068589,1206.76631,3008656476 +3,8444,1288,128,1.22179782,0.105943423,1208.19204,3008656476 +3,8445,1289,128,0.878942072,0.106404401,1202.95776,3008656476 +3,8446,1290,128,1.35249603,0.105937211,1208.26288,3008656476 +3,8447,1291,128,1.58121192,0.106049139,1206.98764,3008656476 +3,8448,1292,128,1.53083265,0.105942272,1208.20516,3008656476 +3,8449,1293,128,1.07984746,0.106088544,1206.53932,3008656476 +3,8450,1294,128,1.32636762,0.106072576,1206.72095,3008656476 +3,8451,1295,128,1.24644756,0.108939373,1174.96546,3008656476 +3,8452,1296,128,1.06937659,0.106041298,1207.07689,3008656476 +3,8453,1297,128,1.23771262,0.106132065,1206.04456,3008656476 +3,8454,1298,128,1.32909679,0.106072609,1206.72058,3008656476 +3,8455,1299,128,1.30924451,0.106222614,1205.01648,3008656476 +3,8456,1300,128,1.31283104,0.106173567,1205.57313,3008656476 +3,8457,1301,128,1.55557764,0.106190905,1205.3763,3008656476 +3,8458,1302,128,1.310238,0.10613857,1205.97065,3008656476 +3,8459,1303,128,0.878119946,0.106130161,1206.0662,3008656476 +3,8460,1304,128,1.20043123,0.118309031,1081.91234,3008656476 +3,8461,1305,128,1.57596481,0.104275707,1227.51505,3008656476 +3,8462,1306,128,1.51496911,0.105965507,1207.94024,3008656476 +3,8463,1307,128,1.41697621,0.105940498,1208.22539,3008656476 +3,8464,1308,128,1.11419964,0.105998588,1207.56326,3008656476 +3,8465,1309,128,1.51932967,0.106059617,1206.8684,3008656476 +3,8466,1310,128,1.43266952,0.09822488,1303.13216,3008656476 +3,8467,1311,128,1.46011829,0.105945791,1208.16503,3008656476 +3,8468,1312,128,1.20124471,0.106151604,1205.82257,3008656476 +3,8469,1313,128,1.28399515,0.106160622,1205.72014,3008656476 +3,8470,1314,128,1.3390063,0.119697933,1069.35848,3008656476 +3,8471,1315,128,1.20367932,0.105839904,1209.37373,3008656476 +3,8472,1316,128,1.28525233,0.106081026,1206.62483,3008656476 +3,8473,1317,128,1.25369751,0.105983074,1207.74002,3008656476 +3,8474,1318,128,0.867722511,0.106127941,1206.09143,3008656476 +3,8475,1319,128,1.36884809,0.106033317,1207.16774,3008656476 +3,8476,1320,128,1.61133611,0.106013012,1207.39896,3008656476 +3,8477,1321,128,1.48038125,0.106061589,1206.84596,3008656476 +3,8478,1322,128,1.63313055,0.10598222,1207.74975,3008656476 +3,8479,1323,128,1.19929826,0.106026191,1207.24888,3008656476 +3,8480,1324,128,1.00713563,0.117923409,1085.4503,3008656476 +3,8481,1325,128,1.2505182,0.106030383,1207.20115,3008656476 +3,8482,1326,128,1.37711513,0.105921383,1208.44344,3008656476 +3,8483,1327,128,1.56506515,0.1061119,1206.27375,3008656476 +3,8484,1328,128,1.40706229,0.106004233,1207.49895,3008656476 +3,8485,1329,128,1.1225059,0.106143949,1205.90953,3008656476 +3,8486,1330,128,1.32939792,0.105898443,1208.70521,3008656476 +3,8487,1331,128,1.25864613,0.106022904,1207.2863,3008656476 +3,8488,1332,128,1.36680043,0.105975452,1207.82688,3008656476 +3,8489,1333,128,1.1572293,0.106045165,1207.03287,3008656476 +3,8490,1334,128,1.4367789,0.118786487,1077.56365,3008656476 +3,8491,1335,128,1.19070601,0.106059913,1206.86503,3008656476 +3,8492,1336,128,1.4181155,0.106114614,1206.2429,3008656476 +3,8493,1337,128,1.02159166,0.10629356,1204.21218,3008656476 +3,8494,1338,128,1.33305573,0.106316887,1203.94797,3008656476 +3,8495,1339,128,1.23840916,0.164412015,778.53191,3008656476 +3,8496,1340,128,0.934079468,0.106075811,1206.68415,3008656476 +3,8497,1341,128,1.25642836,0.106054791,1206.92332,3008656476 +3,8498,1342,128,1.34936082,0.10602983,1207.20744,3008656476 +3,8499,1343,128,1.10857725,0.121383712,1054.50721,3008656476 +3,8500,1344,128,1.33613932,0.106113219,1206.25876,3008656476 +3,8501,1345,128,1.14331806,0.106059089,1206.87441,3008656476 +3,8502,1346,128,1.30822957,0.106195043,1205.32933,3008656476 +3,8503,1347,128,0.993168354,0.106155194,1205.78179,3008656476 +3,8504,1348,128,1.01222241,0.106007121,1207.46605,3008656476 +3,8505,1349,128,1.14862216,0.105961288,1207.98834,3008656476 +3,8506,1350,128,1.25573266,0.106069191,1206.75946,3008656476 +3,8507,1351,128,1.22350323,0.106010443,1207.42822,3008656476 +3,8508,1352,128,0.926726639,0.106125689,1206.11702,3008656476 +3,8509,1353,128,1.03936589,0.119247068,1073.40165,3008656476 +3,8510,1354,128,1.36904144,0.105989962,1207.66153,3008656476 +3,8511,1355,128,1.13761866,0.106048226,1206.99803,3008656476 +3,8512,1356,128,1.25355828,0.10613952,1205.95985,3008656476 +3,8513,1357,128,1.4951483,0.106066363,1206.79164,3008656476 +3,8514,1358,128,1.10255754,0.106110771,1206.28659,3008656476 +3,8515,1359,128,1.18703818,0.106065107,1206.80593,3008656476 +3,8516,1360,128,1.01781654,0.105992453,1207.63315,3008656476 +3,8517,1361,128,1.49724627,0.106122579,1206.15237,3008656476 +3,8518,1362,128,1.44358695,0.10606804,1206.77256,3008656476 +3,8519,1363,128,1.4363445,0.118214018,1082.78191,3008656476 +3,8520,1364,128,1.18787777,0.105986689,1207.69883,3008656476 +3,8521,1365,128,1.48914242,0.106001797,1207.5267,3008656476 +3,8522,1366,128,1.29002213,0.106012873,1207.40054,3008656476 +3,8523,1367,128,1.58024764,0.106079063,1206.64716,3008656476 +3,8524,1368,128,1.50996745,0.106048205,1206.99827,3008656476 +3,8525,1369,128,1.50861514,0.106031455,1207.18894,3008656476 +3,8526,1370,128,1.09911561,0.106005717,1207.48205,3008656476 +3,8527,1371,128,1.39424622,0.106170456,1205.60846,3008656476 +3,8528,1372,128,1.12279427,0.106066973,1206.7847,3008656476 +3,8529,1373,128,1.45746994,0.112811565,1134.63544,3008656476 +3,8530,1374,128,1.52271092,0.105947559,1208.14487,3008656476 +3,8531,1375,128,1.76086211,0.106000389,1207.54274,3008656476 +3,8532,1376,128,1.7534337,0.10609947,1206.41507,3008656476 +3,8533,1377,128,1.34711409,0.106001777,1207.52693,3008656476 +3,8534,1378,128,1.46141052,0.105932738,1208.3139,3008656476 +3,8535,1379,128,1.28699303,0.105991895,1207.63951,3008656476 +3,8536,1380,128,1.74103367,0.106126198,1206.11124,3008656476 +3,8537,1381,128,1.22778881,0.105823385,1209.56252,3008656476 +3,8538,1382,128,1.42442703,0.118669075,1078.62979,3008656476 +3,8539,1383,128,1.41209662,0.104372446,1226.37731,3008656476 +3,8540,1384,128,1.26320088,0.105962401,1207.97565,3008656476 +3,8541,1385,128,1.69125009,0.105968269,1207.90876,3008656476 +3,8542,1386,128,1.27767336,0.106011676,1207.41417,3008656476 +3,8543,1387,128,1.32411718,0.10598167,1207.75602,3008656476 +3,8544,1388,128,1.66923022,0.106012409,1207.40582,3008656476 +3,8545,1389,128,1.40809011,0.105986709,1207.6986,3008656476 +3,8546,1390,128,1.14002311,0.105954726,1208.06315,3008656476 +3,8547,1391,128,1.38942194,0.105975118,1207.83069,3008656476 +3,8548,1392,128,1.48127174,0.120492043,1062.31081,3008656476 +3,8549,1393,128,1.16587162,0.106285638,1204.30194,3008656476 +3,8550,1394,128,1.56552923,0.106024509,1207.26803,3008656476 +3,8551,1395,128,1.23997355,0.106017846,1207.3439,3008656476 +3,8552,1396,128,1.16611469,0.105995049,1207.60357,3008656476 +3,8553,1397,128,1.2299,0.106066181,1206.79371,3008656476 +3,8554,1398,128,1.42268908,0.106065219,1206.80465,3008656476 +3,8555,1399,128,1.39386427,0.10600644,1207.47381,3008656476 +3,8556,1400,128,1.50168371,0.106077894,1206.66046,3008656476 +3,8557,1401,128,1.83023989,0.105979387,1207.78204,3008656476 +3,8558,1402,128,1.04957843,0.108553717,1179.13972,3008656476 +3,8559,1403,128,1.26724923,0.106045357,1207.03069,3008656476 +3,8560,1404,128,1.21437442,0.106073057,1206.71548,3008656476 +3,8561,1405,128,1.49415231,0.105968055,1207.9112,3008656476 +3,8562,1406,128,1.67512286,0.106062064,1206.84055,3008656476 +3,8563,1407,128,1.78774536,0.106020871,1207.30946,3008656476 +3,8564,1408,128,1.37279892,0.106069403,1206.75705,3008656476 +3,8565,1409,128,1.32024324,0.106013466,1207.39379,3008656476 +3,8566,1410,128,1.70457792,0.106093994,1206.47734,3008656476 +3,8567,1411,128,1.69890499,0.106061617,1206.84564,3008656476 +3,8568,1412,128,1.55561459,0.118439436,1080.72112,3008656476 +3,8569,1413,128,1.7537173,0.10596933,1207.89666,3008656476 +3,8570,1414,128,1.8193599,0.105963238,1207.96611,3008656476 +3,8571,1415,128,2.07457042,0.105974849,1207.83376,3008656476 +3,8572,1416,128,1.94402111,0.105988692,1207.676,3008656476 +3,8573,1417,128,1.51433122,0.106031268,1207.19107,3008656476 +3,8574,1418,128,1.468961,0.106091078,1206.5105,3008656476 +3,8575,1419,128,1.70145619,0.106046111,1207.0221,3008656476 +3,8576,1420,128,1.94834399,0.106016939,1207.35423,3008656476 +3,8577,1421,128,1.73196113,0.10598194,1207.75294,3008656476 +3,8578,1422,128,1.91252673,0.118158188,1083.29353,3008656476 +3,8579,1423,128,1.62276399,0.106094726,1206.46902,3008656476 +3,8580,1424,128,1.66793013,0.106087661,1206.54936,3008656476 +3,8581,1425,128,1.935835,0.106057795,1206.88913,3008656476 +3,8582,1426,128,1.67513907,0.106024022,1207.27357,3008656476 +3,8583,1427,128,1.60403419,0.106127515,1206.09627,3008656476 +3,8584,1428,128,1.69852221,0.106101182,1206.39561,3008656476 +3,8585,1429,128,2.13343358,0.1060734,1206.71158,3008656476 +3,8586,1430,128,1.78680432,0.106068785,1206.76408,3008656476 +3,8587,1431,128,1.79728639,0.106091522,1206.50545,3008656476 +3,8588,1432,128,1.63527644,0.108256818,1182.37357,3008656476 +3,8589,1433,128,1.5664115,0.105978192,1207.79566,3008656476 +3,8590,1434,128,1.47824347,0.106268435,1204.4969,3008656476 +3,8591,1435,128,1.74365544,0.106161271,1205.71277,3008656476 +3,8592,1436,128,1.23069394,0.106150994,1205.8295,3008656476 +3,8593,1437,128,1.68883979,0.106068069,1206.77223,3008656476 +3,8594,1438,128,1.5795517,0.106253777,1204.66306,3008656476 +3,8595,1439,128,1.75629103,0.106217706,1205.07216,3008656476 +3,8596,1440,128,1.65802217,0.106268701,1204.49388,3008656476 +3,8597,1441,128,1.71767437,0.12022858,1064.63871,3008656476 +3,8598,1442,128,1.46283412,0.106221987,1205.02359,3008656476 +3,8599,1443,128,1.3034972,0.105997115,1207.58004,3008656476 +3,8600,1444,128,1.93315697,0.106012952,1207.39964,3008656476 +3,8601,1445,128,1.65864003,0.106058313,1206.88324,3008656476 +3,8602,1446,128,2.10627413,0.106151653,1205.82201,3008656476 +3,8603,1447,128,1.75551176,0.105882232,1208.89027,3008656476 +3,8604,1448,128,1.51682281,0.105973198,1207.85257,3008656476 +3,8605,1449,128,1.69523537,0.105874848,1208.97458,3008656476 +3,8606,1450,128,1.27657115,0.106111826,1206.2746,3008656476 +3,8607,1451,128,1.55436218,0.119694365,1069.39036,3008656476 +3,8608,1452,128,1.4367317,0.106033754,1207.16277,3008656476 +3,8609,1453,128,1.65627694,0.105949103,1208.12726,3008656476 +3,8610,1454,128,1.61147451,0.106049776,1206.98039,3008656476 +3,8611,1455,128,1.11468482,0.106002209,1207.52201,3008656476 +3,8612,1456,128,1.58612204,0.106046288,1207.02009,3008656476 +3,8613,1457,128,1.3997854,0.105985457,1207.71287,3008656476 +3,8614,1458,128,1.60327995,0.106021759,1207.29934,3008656476 +3,8615,1459,128,2.07916594,0.105943251,1208.194,3008656476 +3,8616,1460,128,1.46465886,0.106150593,1205.83406,3008656476 +3,8617,1461,128,1.11955535,0.118247834,1082.47226,3008656476 +3,8618,1462,128,0.91978389,0.105974364,1207.83928,3008656476 +3,8619,1463,128,1.52694547,0.105893923,1208.7568,3008656476 +3,8620,1464,128,1.34128296,0.105985302,1207.71463,3008656476 +3,8621,1465,128,1.66995883,0.106146167,1205.88433,3008656476 +3,8622,1466,128,1.92104459,0.105985004,1207.71803,3008656476 +3,8623,1467,128,1.786376,0.106116509,1206.22136,3008656476 +3,8624,1468,128,1.61981535,0.106121326,1206.16661,3008656476 +3,8625,1469,128,1.68226504,0.106027015,1207.23949,3008656476 +3,8626,1470,128,1.32086003,0.10616253,1205.69847,3008656476 +3,8627,1471,128,1.7837007,0.118282578,1082.1543,3008656476 +3,8628,1472,128,1.88778567,0.106057182,1206.89611,3008656476 +3,8629,1473,128,1.63533986,0.106037309,1207.1223,3008656476 +3,8630,1474,128,1.65982997,0.105948028,1208.13952,3008656476 +3,8631,1475,128,1.64350402,0.106134034,1206.02219,3008656476 +3,8632,1476,128,1.31263208,0.10596994,1207.88971,3008656476 +3,8633,1477,128,1.64499748,0.106134735,1206.01422,3008656476 +3,8634,1478,128,1.53588593,0.105930166,1208.34324,3008656476 +3,8635,1479,128,1.46878743,0.105980091,1207.77401,3008656476 +3,8636,1480,128,1.58108807,0.106129517,1206.07352,3008656476 +3,8637,1481,128,1.71646833,0.117714198,1087.37945,3008656476 +3,8638,1482,128,1.57790232,0.105941658,1208.21217,3008656476 +3,8639,1483,128,1.77829003,0.1060386,1207.1076,3008656476 +3,8640,1484,128,1.55360806,0.106159701,1205.7306,3008656476 +3,8641,1485,128,1.77984166,0.105959747,1208.0059,3008656476 +3,8642,1486,128,1.71300495,0.10614964,1205.84488,3008656476 +3,8643,1487,128,1.39053309,0.105988513,1207.67804,3008656476 +3,8644,1488,128,1.7193985,0.106009474,1207.43925,3008656476 +3,8645,1489,128,1.30209005,0.106089954,1206.52329,3008656476 +3,8646,1490,128,1.5365845,0.121671779,1052.01059,3008656476 +3,8647,1491,128,1.61598289,0.099828771,1282.19549,3008656476 +3,8648,1492,128,1.96225202,0.106157607,1205.75438,3008656476 +3,8649,1493,128,1.46914995,0.106131311,1206.05313,3008656476 +3,8650,1494,128,1.09951794,0.106133568,1206.02748,3008656476 +3,8651,1495,128,1.48276067,0.10609504,1206.46545,3008656476 +3,8652,1496,128,1.59594297,0.106037743,1207.11736,3008656476 +3,8653,1497,128,1.51413202,0.106125935,1206.11423,3008656476 +3,8654,1498,128,1.41686773,0.106045586,1207.02808,3008656476 +3,8655,1499,128,1.41932011,0.106178371,1205.51859,3008656476 +3,8656,1500,128,1.55376244,0.117944684,1085.25451,3008656476 +3,8657,1501,128,1.95550978,0.106119869,1206.18317,3008656476 +3,8658,1502,128,1.57822585,0.106031907,1207.1838,3008656476 +3,8659,1503,128,1.51998615,0.106117009,1206.21568,3008656476 +3,8660,1504,128,1.80834949,0.10600811,1207.45479,3008656476 +3,8661,1505,128,1.61939955,0.106238943,1204.83126,3008656476 +3,8662,1506,128,1.44427359,0.106093094,1206.48758,3008656476 +3,8663,1507,128,1.61290073,0.106065945,1206.79639,3008656476 +3,8664,1508,128,1.58854449,0.106082686,1206.60595,3008656476 +3,8665,1509,128,1.45961249,0.106005598,1207.4834,3008656476 +3,8666,1510,128,1.74701011,0.11808517,1083.96338,3008656476 +3,8667,1511,128,1.50183964,0.106057157,1206.89639,3008656476 +3,8668,1512,128,1.36732316,0.106143659,1205.91283,3008656476 +3,8669,1513,128,1.74725282,0.105867588,1209.05749,3008656476 +3,8670,1514,128,2.13770604,0.106081148,1206.62344,3008656476 +3,8671,1515,128,1.48561966,0.105989526,1207.6665,3008656476 +3,8672,1516,128,1.79854441,0.106059088,1206.87442,3008656476 +3,8673,1517,128,1.75159109,0.106002676,1207.51669,3008656476 +3,8674,1518,128,1.81725121,0.106078427,1206.65439,3008656476 +3,8675,1519,128,1.44146919,0.10594386,1208.18705,3008656476 +3,8676,1520,128,1.82163215,0.120420474,1062.94217,3008656476 +3,8677,1521,128,1.34557211,0.105988906,1207.67357,3008656476 +3,8678,1522,128,1.7091707,0.106927124,1197.07699,3008656476 +3,8679,1523,128,1.76759017,0.106021591,1207.30126,3008656476 +3,8680,1524,128,1.80651414,0.106172443,1205.5859,3008656476 +3,8681,1525,128,1.4003768,0.106152745,1205.80961,3008656476 +3,8682,1526,128,1.1283294,0.10618468,1205.44696,3008656476 +3,8683,1527,128,1.29931962,0.106157841,1205.75173,3008656476 +3,8684,1528,128,1.61169708,0.106227252,1204.96386,3008656476 +3,8685,1529,128,1.73012245,0.10614602,1205.886,3008656476 +3,8686,1530,128,1.99232101,0.121262713,1055.55943,3008656476 +3,8687,1531,128,1.8315959,0.106063692,1206.82203,3008656476 +3,8688,1532,128,1.92008233,0.105938786,1208.24492,3008656476 +3,8689,1533,128,1.73454106,0.105976759,1207.81199,3008656476 +3,8690,1534,128,1.57951021,0.105828279,1209.50658,3008656476 +3,8691,1535,128,1.41441643,0.106006863,1207.46899,3008656476 +3,8692,1536,128,1.90947676,0.106010326,1207.42955,3008656476 +3,8693,1537,128,1.31173766,0.105938774,1208.24506,3008656476 +3,8694,1538,128,1.68502414,0.105953284,1208.07959,3008656476 +3,8695,1539,128,1.56351411,0.10599694,1207.58203,3008656476 +3,8696,1540,128,1.9675914,0.110349841,1159.9473,3008656476 +3,8697,1541,128,1.91151559,0.106002582,1207.51776,3008656476 +3,8698,1542,128,1.93709207,0.106053777,1206.93486,3008656476 +3,8699,1543,128,1.59420311,0.105973021,1207.85459,3008656476 +3,8700,1544,128,1.55574393,0.106063251,1206.82705,3008656476 +3,8701,1545,128,1.59746754,0.105980277,1207.7719,3008656476 +3,8702,1546,128,1.5817461,0.106019649,1207.32337,3008656476 +3,8703,1547,128,1.49194229,0.1060574,1206.89363,3008656476 +3,8704,1548,128,1.36459517,0.106073508,1206.71035,3008656476 +3,8705,1549,128,1.73317719,0.117562652,1088.78115,3008656476 +3,8706,1550,128,1.79705596,0.104332161,1226.85085,3008656476 +3,8707,1551,128,1.5501312,0.10601848,1207.33668,3008656476 +3,8708,1552,128,1.41741335,0.106015488,1207.37076,3008656476 +3,8709,1553,128,2.18118405,0.106129312,1206.07585,3008656476 +3,8710,1554,128,1.87562668,0.106007173,1207.46546,3008656476 +3,8711,1555,128,1.61093926,0.106117158,1206.21398,3008656476 +3,8712,1556,128,1.66409874,0.106018384,1207.33778,3008656476 +3,8713,1557,128,1.77916217,0.106080983,1206.62532,3008656476 +3,8714,1558,128,1.48174798,0.105969706,1207.89238,3008656476 +3,8715,1559,128,1.4714154,0.119451654,1071.56323,3008656476 +3,8716,1560,128,1.41493964,0.106175253,1205.55399,3008656476 +3,8717,1561,128,1.45554876,0.106017857,1207.34378,3008656476 +3,8718,1562,128,1.74046612,0.105812574,1209.6861,3008656476 +3,8719,1563,128,1.6629734,0.106057944,1206.88744,3008656476 +3,8720,1564,128,1.49878788,0.106131524,1206.05071,3008656476 +3,8721,1565,128,1.33520913,0.106056348,1206.9056,3008656476 +3,8722,1566,128,1.4455936,0.10587344,1208.99066,3008656476 +3,8723,1567,128,0.981185079,0.106049191,1206.98705,3008656476 +3,8724,1568,128,1.04373574,0.105966591,1207.92788,3008656476 +3,8725,1569,128,1.19234657,0.120000716,1066.6603,3008656476 +3,8726,1570,128,1.36882746,0.105770241,1210.17026,3008656476 +3,8727,1571,128,1.37377441,0.105939419,1208.2377,3008656476 +3,8728,1572,128,1.0731982,0.105971718,1207.86944,3008656476 +3,8729,1573,128,1.38589001,0.106057765,1206.88947,3008656476 +3,8730,1574,128,1.79763019,0.105898338,1208.70641,3008656476 +3,8731,1575,128,1.6354717,0.106059087,1206.87443,3008656476 +3,8732,1576,128,1.48605371,0.105874788,1208.97527,3008656476 +3,8733,1577,128,1.23262703,0.106192761,1205.35523,3008656476 +3,8734,1578,128,1.4118489,0.105907116,1208.60623,3008656476 +3,8735,1579,128,1.51099801,0.120752887,1060.01606,3008656476 +3,8736,1580,128,1.64677203,0.105929111,1208.35527,3008656476 +3,8737,1581,128,1.52401674,0.106005743,1207.48175,3008656476 +3,8738,1582,128,1.31148446,0.105955742,1208.05157,3008656476 +3,8739,1583,128,1.26493287,0.106042516,1207.06302,3008656476 +3,8740,1584,128,1.72861898,0.105922624,1208.42928,3008656476 +3,8741,1585,128,1.72924006,0.10603664,1207.12991,3008656476 +3,8742,1586,128,1.55287266,0.10602839,1207.22384,3008656476 +3,8743,1587,128,1.21775579,0.106174348,1205.56427,3008656476 +3,8744,1588,128,1.48280919,0.105934078,1208.29862,3008656476 +3,8745,1589,128,1.67480743,0.118682422,1078.50849,3008656476 +3,8746,1590,128,1.23330748,0.1059768,1207.81152,3008656476 +3,8747,1591,128,1.43034649,0.10605435,1206.92833,3008656476 +3,8748,1592,128,1.52861655,0.105945329,1208.1703,3008656476 +3,8749,1593,128,1.28840005,0.106105675,1206.34452,3008656476 +3,8750,1594,128,1.36684918,0.105962529,1207.97419,3008656476 +3,8751,1595,128,1.181229,0.106148409,1205.85887,3008656476 +3,8752,1596,128,1.27393746,0.105914774,1208.51884,3008656476 +3,8753,1597,128,1.0196569,0.106046597,1207.01657,3008656476 +3,8754,1598,128,1.44674361,0.105869987,1209.03009,3008656476 +3,8755,1599,128,1.13740849,0.10779832,1187.40255,3008656476 +3,8756,1600,128,1.21604371,0.105992427,1207.63345,3008656476 +3,8757,1601,128,1.50143075,0.106029392,1207.21243,3008656476 +3,8758,1602,128,1.1585412,0.105990903,1207.65081,3008656476 +3,8759,1603,128,1.22860241,0.106145854,1205.88789,3008656476 +3,8760,1604,128,1.16162467,0.10595244,1208.08921,3008656476 +3,8761,1605,128,1.06039858,0.106083872,1206.59246,3008656476 +3,8762,1606,128,0.95054549,0.106016983,1207.35373,3008656476 +3,8763,1607,128,1.45840967,0.105985967,1207.70705,3008656476 +3,8764,1608,128,1.03989589,0.11552911,1107.94587,3008656476 +3,8765,1609,128,1.58748329,0.104858331,1220.69462,3008656476 +3,8766,1610,128,1.78720367,0.106095843,1206.45632,3008656476 +3,8767,1611,128,1.47552836,0.106175608,1205.54996,3008656476 +3,8768,1612,128,1.81839371,0.106065697,1206.79922,3008656476 +3,8769,1613,128,1.59074509,0.106084613,1206.58403,3008656476 +3,8770,1614,128,1.66462994,0.106009817,1207.43535,3008656476 +3,8771,1615,128,1.7129252,0.105957786,1208.02826,3008656476 +3,8772,1616,128,1.20977151,0.106080534,1206.63043,3008656476 +3,8773,1617,128,1.81913674,0.106017998,1207.34217,3008656476 +3,8774,1618,128,1.13036966,0.120422562,1062.92374,3008656476 +3,8775,1619,128,1.77675796,0.105873727,1208.98738,3008656476 +3,8776,1620,128,2.22845411,0.105978065,1207.7971,3008656476 +3,8777,1621,128,1.84243083,0.106258427,1204.61034,3008656476 +3,8778,1622,128,1.61204934,0.106220828,1205.03674,3008656476 +3,8779,1623,128,1.69393742,0.106242005,1204.79654,3008656476 +3,8780,1624,128,1.68821752,0.106098603,1206.42493,3008656476 +3,8781,1625,128,1.32407677,0.106265449,1204.53074,3008656476 +3,8782,1626,128,1.78463483,0.106123897,1206.13739,3008656476 +3,8783,1627,128,1.91175866,0.106244508,1204.76816,3008656476 +3,8784,1628,128,1.75732088,0.119856248,1067.94599,3008656476 +3,8785,1629,128,1.45976031,0.105885313,1208.85509,3008656476 +3,8786,1630,128,1.68883061,0.106017563,1207.34713,3008656476 +3,8787,1631,128,1.71049809,0.105946224,1208.16009,3008656476 +3,8788,1632,128,1.6292057,0.106072601,1206.72067,3008656476 +3,8789,1633,128,1.61806583,0.106155959,1205.7731,3008656476 +3,8790,1634,128,1.74840569,0.106024212,1207.27141,3008656476 +3,8791,1635,128,1.47837937,0.105998257,1207.56703,3008656476 +3,8792,1636,128,1.67814648,0.105984083,1207.72852,3008656476 +3,8793,1637,128,1.63463688,0.10617584,1205.54733,3008656476 +3,8794,1638,128,1.57755041,0.118485975,1080.29663,3008656476 +3,8795,1639,128,1.5832994,0.106079409,1206.64322,3008656476 +3,8796,1640,128,1.25275362,0.105983071,1207.74006,3008656476 +3,8797,1641,128,1.48320854,0.106121151,1206.1686,3008656476 +3,8798,1642,128,1.75173318,0.106022683,1207.28882,3008656476 +3,8799,1643,128,1.36069155,0.106029343,1207.21299,3008656476 +3,8800,1644,128,1.65167081,0.105991505,1207.64395,3008656476 +3,8801,1645,128,1.1319766,0.106140129,1205.95293,3008656476 +3,8802,1646,128,1.57778668,0.106009901,1207.43439,3008656476 +3,8803,1647,128,1.44002616,0.1059285,1208.36224,3008656476 +3,8804,1648,128,1.34057701,0.119913115,1067.43954,3008656476 +3,8805,1649,128,1.40263438,0.106056227,1206.90697,3008656476 +3,8806,1650,128,1.34075487,0.106142756,1205.92309,3008656476 +3,8807,1651,128,1.46985292,0.106102721,1206.37811,3008656476 +3,8808,1652,128,1.57967818,0.106047823,1207.00262,3008656476 +3,8809,1653,128,1.49865305,0.106015021,1207.37608,3008656476 +3,8810,1654,128,1.28542459,0.106067956,1206.77351,3008656476 +3,8811,1655,128,1.43620348,0.105963589,1207.9621,3008656476 +3,8812,1656,128,1.45644128,0.106056136,1206.90801,3008656476 +3,8813,1657,128,1.49621367,0.106110923,1206.28486,3008656476 +3,8814,1658,128,1.48833406,0.10787161,1186.59581,3008656476 +3,8815,1659,128,1.70896471,0.106001693,1207.52788,3008656476 +3,8816,1660,128,1.35358572,0.1061677,1205.63976,3008656476 +3,8817,1661,128,1.40242016,0.106057319,1206.89455,3008656476 +3,8818,1662,128,1.55454338,0.106012309,1207.40696,3008656476 +3,8819,1663,128,1.42138529,0.106101006,1206.39761,3008656476 +3,8820,1664,128,1.57736957,0.106051464,1206.96118,3008656476 +3,8821,1665,128,1.73922372,0.10600214,1207.52279,3008656476 +3,8822,1666,128,1.90438151,0.105976603,1207.81377,3008656476 +3,8823,1667,128,1.7246871,0.118140323,1083.45734,3008656476 +3,8824,1668,128,1.84156668,0.104504468,1224.82801,3008656476 +3,8825,1669,128,1.90450215,0.10608207,1206.61296,3008656476 +3,8826,1670,128,1.6764183,0.105926495,1208.38512,3008656476 +3,8827,1671,128,1.14855134,0.106071767,1206.73016,3008656476 +3,8828,1672,128,1.77400887,0.105941801,1208.21053,3008656476 +3,8829,1673,128,1.78147078,0.105950096,1208.11594,3008656476 +3,8830,1674,128,1.65042007,0.106071527,1206.73289,3008656476 +3,8831,1675,128,1.55785179,0.105964022,1207.95717,3008656476 +3,8832,1676,128,1.67776215,0.106042219,1207.0664,3008656476 +3,8833,1677,128,1.91644478,0.119768248,1068.73067,3008656476 +3,8834,1678,128,1.89000833,0.105928647,1208.36057,3008656476 +3,8835,1679,128,1.75162768,0.106071153,1206.73714,3008656476 +3,8836,1680,128,2.00586843,0.106166961,1205.64815,3008656476 +3,8837,1681,128,1.64337754,0.10610215,1206.3846,3008656476 +3,8838,1682,128,1.99841332,0.106034582,1207.15334,3008656476 +3,8839,1683,128,1.81972563,0.1060977,1206.4352,3008656476 +3,8840,1684,128,1.42339027,0.106047452,1207.00684,3008656476 +3,8841,1685,128,1.49065471,0.105998884,1207.55988,3008656476 +3,8842,1686,128,1.82468879,0.106011215,1207.41942,3008656476 +3,8843,1687,128,1.47953773,0.118387299,1081.19706,3008656476 +3,8844,1688,128,1.61809564,0.105716684,1210.78334,3008656476 +3,8845,1689,128,1.20497572,0.105908746,1208.58763,3008656476 +3,8846,1690,128,1.65761817,0.105997512,1207.57551,3008656476 +3,8847,1691,128,1.52168012,0.106051411,1206.96178,3008656476 +3,8848,1692,128,1.45106077,0.106062252,1206.83841,3008656476 +3,8849,1693,128,1.37094295,0.106004699,1207.49364,3008656476 +3,8850,1694,128,1.56979918,0.106094599,1206.47046,3008656476 +3,8851,1695,128,1.64628196,0.106056631,1206.90238,3008656476 +3,8852,1696,128,1.56777966,0.106182443,1205.47236,3008656476 +3,8853,1697,128,1.6965946,0.118922903,1076.32758,3008656476 +3,8854,1698,128,1.3370688,0.105928541,1208.36178,3008656476 +3,8855,1699,128,1.40964007,0.105998613,1207.56297,3008656476 +3,8856,1700,128,1.48884046,0.105996535,1207.58664,3008656476 +3,8857,1701,128,1.68069661,0.106051498,1206.96079,3008656476 +3,8858,1702,128,1.05863404,0.106071305,1206.73541,3008656476 +3,8859,1703,128,1.26790249,0.106084352,1206.587,3008656476 +3,8860,1704,128,1.31622744,0.106011093,1207.42081,3008656476 +3,8861,1705,128,1.25923812,0.106118559,1206.19806,3008656476 +3,8862,1706,128,1.46965182,0.106154195,1205.79314,3008656476 +3,8863,1707,128,1.64420581,0.1213615,1054.70021,3008656476 +3,8864,1708,128,1.89683402,0.106034516,1207.15409,3008656476 +3,8865,1709,128,1.50711906,0.106119156,1206.19127,3008656476 +3,8866,1710,128,1.88103664,0.106107555,1206.32315,3008656476 +3,8867,1711,128,1.2509712,0.106059058,1206.87476,3008656476 +3,8868,1712,128,1.40021122,0.106000159,1207.54536,3008656476 +3,8869,1713,128,1.57847083,0.106022932,1207.28599,3008656476 +3,8870,1714,128,1.80342019,0.106107638,1206.32221,3008656476 +3,8871,1715,128,1.37589717,0.105992961,1207.62736,3008656476 +3,8872,1716,128,1.38179898,0.106099303,1206.41697,3008656476 +3,8873,1717,128,1.85534251,0.10756093,1190.02318,3008656476 +3,8874,1718,128,1.07868004,0.105952933,1208.08359,3008656476 +3,8875,1719,128,1.52569056,0.105871073,1209.01769,3008656476 +3,8876,1720,128,1.81286323,0.106064792,1206.80951,3008656476 +3,8877,1721,128,1.73290718,0.105899316,1208.69525,3008656476 +3,8878,1722,128,1.37948835,0.105998467,1207.56463,3008656476 +3,8879,1723,128,1.85991514,0.106097572,1206.43666,3008656476 +3,8880,1724,128,1.61165214,0.105984733,1207.72112,3008656476 +3,8881,1725,128,1.20827341,0.106029507,1207.21112,3008656476 +3,8882,1726,128,1.94013464,0.11619189,1101.62594,3008656476 +3,8883,1727,128,1.39759529,0.10484031,1220.90444,3008656476 +3,8884,1728,128,1.66244793,0.105984878,1207.71946,3008656476 +3,8885,1729,128,1.66040802,0.10605036,1206.97374,3008656476 +3,8886,1730,128,1.57095826,0.10598256,1207.74588,3008656476 +3,8887,1731,128,1.35022378,0.105980317,1207.77144,3008656476 +3,8888,1732,128,1.91359532,0.106026593,1207.2443,3008656476 +3,8889,1733,128,1.21272743,0.106022022,1207.29635,3008656476 +3,8890,1734,128,1.70223391,0.106053942,1206.93298,3008656476 +3,8891,1735,128,1.29364836,0.106037381,1207.12148,3008656476 +3,8892,1736,128,1.31202054,0.119301163,1072.91494,3008656476 +3,8893,1737,128,1.19039273,0.105654364,1211.49752,3008656476 +3,8894,1738,128,1.30763626,0.10602859,1207.22156,3008656476 +3,8895,1739,128,1.03795135,0.105924209,1208.4112,3008656476 +3,8896,1740,128,1.03438938,0.106026359,1207.24696,3008656476 +3,8897,1741,128,1.25924623,0.106030276,1207.20237,3008656476 +3,8898,1742,128,1.39066315,0.106008041,1207.45557,3008656476 +3,8899,1743,128,1.45433044,0.10598367,1207.73323,3008656476 +3,8900,1744,128,1.441185,0.106089276,1206.531,3008656476 +3,8901,1745,128,1.21994603,0.105942546,1208.20204,3008656476 +3,8902,1746,128,1.84226847,0.119623836,1070.02086,3008656476 +3,8903,1747,128,1.58649027,0.10589619,1208.73093,3008656476 +3,8904,1748,128,1.15410113,0.106056723,1206.90133,3008656476 +3,8905,1749,128,2.19623423,0.10603605,1207.13663,3008656476 +3,8906,1750,128,1.43999052,0.105996878,1207.58274,3008656476 +3,8907,1751,128,1.42984331,0.106023129,1207.28374,3008656476 +3,8908,1752,128,1.43782496,0.106054985,1206.92111,3008656476 +3,8909,1753,128,1.4385227,0.10610589,1206.34208,3008656476 +3,8910,1754,128,1.6737119,0.105971749,1207.86909,3008656476 +3,8911,1755,128,1.914572,0.106087216,1206.55443,3008656476 +3,8912,1756,128,1.35356343,0.120109423,1065.6949,3008656476 +3,8913,1757,128,1.6017921,0.106031582,1207.1875,3008656476 +3,8914,1758,128,1.27055585,0.10605672,1206.90136,3008656476 +3,8915,1759,128,1.66814554,0.106082177,1206.61174,3008656476 +3,8916,1760,128,1.76630902,0.106034817,1207.15067,3008656476 +3,8917,1761,128,1.18651724,0.106072483,1206.72201,3008656476 +3,8918,1762,128,1.73381901,0.106006378,1207.47452,3008656476 +3,8919,1763,128,1.37031686,0.106143985,1205.90912,3008656476 +3,8920,1764,128,1.21583366,0.106031611,1207.18717,3008656476 +3,8921,1765,128,1.28298533,0.106008589,1207.44933,3008656476 +3,8922,1766,128,1.81832373,0.118290086,1082.08561,3008656476 +3,8923,1767,128,1.78390026,0.106094313,1206.47372,3008656476 +3,8924,1768,128,1.77333128,0.106018862,1207.33233,3008656476 +3,8925,1769,128,1.24595451,0.106078981,1206.64809,3008656476 +3,8926,1770,128,1.40103149,0.106081948,1206.61434,3008656476 +3,8927,1771,128,1.39008081,0.10601707,1207.35274,3008656476 +3,8928,1772,128,1.09223449,0.106004846,1207.49197,3008656476 +3,8929,1773,128,1.21936369,0.106039894,1207.09287,3008656476 +3,8930,1774,128,1.21417546,0.106072839,1206.71796,3008656476 +3,8931,1775,128,1.2715112,0.105970527,1207.88302,3008656476 +3,8932,1776,128,1.47765195,0.107978924,1185.41652,3008656476 +3,8933,1777,128,1.36336923,0.105944817,1208.17614,3008656476 +3,8934,1778,128,1.24069262,0.10626362,1204.55147,3008656476 +3,8935,1779,128,1.26762664,0.106201325,1205.25803,3008656476 +3,8936,1780,128,1.17217839,0.106215841,1205.09332,3008656476 +3,8937,1781,128,0.93138963,0.106171775,1205.59348,3008656476 +3,8938,1782,128,1.07670546,0.106176075,1205.54466,3008656476 +3,8939,1783,128,1.34407282,0.106097291,1206.43985,3008656476 +3,8940,1784,128,1.39497674,0.106080465,1206.63121,3008656476 +3,8941,1785,128,1.32601964,0.115656079,1106.72955,3008656476 +3,8942,1786,128,1.01880956,0.104533948,1224.4826,3008656476 +3,8943,1787,128,1.10249305,0.106097002,1206.44314,3008656476 +3,8944,1788,128,0.998443484,0.106026235,1207.24838,3008656476 +3,8945,1789,128,1.39934862,0.106083268,1206.59933,3008656476 +3,8946,1790,128,0.916551411,0.106107915,1206.31906,3008656476 +3,8947,1791,128,1.33785164,0.105913449,1208.53396,3008656476 +3,8948,1792,128,1.3976171,0.106033237,1207.16865,3008656476 +3,8949,1793,128,1.12584698,0.106052582,1206.94846,3008656476 +3,8950,1794,128,1.23759127,0.105902769,1208.65584,3008656476 +3,8951,1795,128,0.982243061,0.119606396,1070.17688,3008656476 +3,8952,1796,128,1.49481976,0.106080916,1206.62608,3008656476 +3,8953,1797,128,1.57010019,0.105983503,1207.73513,3008656476 +3,8954,1798,128,1.49944925,0.105963835,1207.9593,3008656476 +3,8955,1799,128,1.25777709,0.106062434,1206.83634,3008656476 +3,8956,1800,128,0.994671345,0.106003669,1207.50537,3008656476 +3,8957,1801,128,1.34022427,0.106176837,1205.53601,3008656476 +3,8958,1802,128,1.25556552,0.106071987,1206.72765,3008656476 +3,8959,1803,128,1.32189822,0.106029226,1207.21432,3008656476 +3,8960,1804,128,1.30344331,0.106163655,1205.68569,3008656476 +3,8961,1805,128,1.60255587,0.120386801,1063.23948,3008656476 +3,8962,1806,128,1.12932837,0.10597086,1207.87922,3008656476 +3,8963,1807,128,1.35722125,0.106159304,1205.73511,3008656476 +3,8964,1808,128,1.28511584,0.106008021,1207.4558,3008656476 +3,8965,1809,128,1.75610745,0.106083643,1206.59506,3008656476 +3,8966,1810,128,1.47202289,0.106021914,1207.29758,3008656476 +3,8967,1811,128,0.986668885,0.106213506,1205.11981,3008656476 +3,8968,1812,128,0.948567808,0.106279361,1204.37307,3008656476 +3,8969,1813,128,0.924678028,0.106069074,1206.76079,3008656476 +3,8970,1814,128,1.76994085,0.106215341,1205.09899,3008656476 +3,8971,1815,128,1.45285785,0.11808411,1083.97311,3008656476 +3,8972,1816,128,1.34306884,0.105904202,1208.63948,3008656476 +3,8973,1817,128,1.246943,0.106169692,1205.61714,3008656476 +3,8974,1818,128,1.02504325,0.106089092,1206.53309,3008656476 +3,8975,1819,128,0.883588612,0.105878925,1208.92803,3008656476 +3,8976,1820,128,1.38910615,0.106001671,1207.52813,3008656476 +3,8977,1821,128,1.89638305,0.106094831,1206.46782,3008656476 +3,8978,1822,128,1.67044568,0.106053147,1206.94203,3008656476 +3,8979,1823,128,1.57922673,0.106084263,1206.58801,3008656476 +3,8980,1824,128,1.40547502,0.157240494,814.039671,3008656476 +3,8981,1825,128,1.41347945,0.112462023,1138.16199,3008656476 +3,8982,1826,128,1.76119053,0.106588142,1200.88405,3008656476 +3,8983,1827,128,1.30566514,0.106663597,1200.03453,3008656476 +3,8984,1828,128,1.32894456,0.10665946,1200.08108,3008656476 +3,8985,1829,128,1.34607911,0.106641249,1200.28602,3008656476 +3,8986,1830,128,1.26046312,0.121761534,1051.23511,3008656476 +3,8987,1831,128,1.48418057,0.106341015,1203.6748,3008656476 +3,8988,1832,128,1.26786315,0.106359606,1203.46441,3008656476 +3,8989,1833,128,1.37076449,0.10644461,1202.50335,3008656476 +3,8990,1834,128,1.55344999,0.106292312,1204.22632,3008656476 +3,8991,1835,128,1.5181427,0.10629794,1204.16256,3008656476 +3,8992,1836,128,1.12332571,0.106322362,1203.88597,3008656476 +3,8993,1837,128,1.38511503,0.10626183,1204.57176,3008656476 +3,8994,1838,128,1.45300424,0.106291734,1204.23287,3008656476 +3,8995,1839,128,1.51653242,0.106165338,1205.66658,3008656476 +3,8996,1840,128,1.63606668,0.120333516,1063.7103,3008656476 +3,8997,1841,128,1.88457322,0.106796803,1198.53775,3008656476 +3,8998,1842,128,1.38428748,0.106383803,1203.19068,3008656476 +3,8999,1843,128,1.24487495,0.106254761,1204.6519,3008656476 +3,9000,1844,128,1.42206657,0.10631382,1203.9827,3008656476 +3,9001,1845,128,1.34691548,0.106344798,1203.63198,3008656476 +3,9002,1846,128,1.28455544,0.106402161,1202.98309,3008656476 +3,9003,1847,128,1.02862191,0.106330175,1203.79751,3008656476 +3,9004,1848,128,1.6001842,0.106306678,1204.06359,3008656476 +3,9005,1849,128,1.58723855,0.106477016,1202.13737,3008656476 +3,9006,1850,128,1.49774992,0.118431229,1080.79601,3008656476 +3,9007,1851,128,1.26986313,0.106093448,1206.48355,3008656476 +3,9008,1852,128,1.00038397,0.106454963,1202.3864,3008656476 +3,9009,1853,128,1.44709408,0.106606961,1200.67206,3008656476 +3,9010,1854,128,1.61570978,0.106471395,1202.20084,3008656476 +3,9011,1855,128,1.13447487,0.1065483,1201.3331,3008656476 +3,9012,1856,128,1.36689472,0.106521643,1201.63374,3008656476 +3,9013,1857,128,0.956818342,0.106517659,1201.67868,3008656476 +3,9014,1858,128,1.31141305,0.106375306,1203.28679,3008656476 +3,9015,1859,128,1.15631628,0.119549594,1070.68536,3008656476 +3,9016,1860,128,1.3824296,0.104456712,1225.38799,3008656476 +3,9017,1861,128,1.61749482,0.106426155,1202.71187,3008656476 +3,9018,1862,128,1.22954154,0.106333868,1203.7557,3008656476 +3,9019,1863,128,1.12507689,0.106515285,1201.70546,3008656476 +3,9020,1864,128,1.37937307,0.106314452,1203.97554,3008656476 +3,9021,1865,128,1.5497911,0.106370189,1203.34467,3008656476 +3,9022,1866,128,1.27555668,0.106347832,1203.59764,3008656476 +3,9023,1867,128,1.8253063,0.106415185,1202.83585,3008656476 +3,9024,1868,128,1.3151927,0.106322641,1203.88281,3008656476 +3,9025,1869,128,1.20115232,0.119978847,1066.85473,3008656476 +3,9026,1870,128,1.44381058,0.106221086,1205.03381,3008656476 +3,9027,1871,128,1.33254123,0.10628396,1204.32095,3008656476 +3,9028,1872,128,1.79491842,0.106303933,1204.09468,3008656476 +3,9029,1873,128,1.67197621,0.106387152,1203.1528,3008656476 +3,9030,1874,128,1.56122124,0.106295518,1204.19,3008656476 +3,9031,1875,128,1.38004243,0.106363415,1203.42131,3008656476 +3,9032,1876,128,1.24986625,0.106355474,1203.51116,3008656476 +3,9033,1877,128,1.19998586,0.106303489,1204.09971,3008656476 +3,9034,1878,128,1.46636593,0.106313663,1203.98448,3008656476 +3,9035,1879,128,1.026963,0.119676194,1069.55273,3008656476 +3,9036,1880,128,1.48150134,0.106313917,1203.9816,3008656476 +3,9037,1881,128,1.14947701,0.106420094,1202.78037,3008656476 +3,9038,1882,128,1.49879348,0.106344542,1203.63488,3008656476 +3,9039,1883,128,1.20712674,0.106337335,1203.71646,3008656476 +3,9040,1884,128,1.59094059,0.106460879,1202.31959,3008656476 +3,9041,1885,128,1.23580945,0.106444229,1202.50765,3008656476 +3,9042,1886,128,1.4119848,0.106135669,1206.00361,3008656476 +3,9043,1887,128,1.31002629,0.106288202,1204.27289,3008656476 +3,9044,1888,128,1.33651543,0.10620766,1205.18614,3008656476 +3,9045,1889,128,1.45578301,0.118399262,1081.08782,3008656476 +3,9046,1890,128,1.62134778,0.106389634,1203.12473,3008656476 +3,9047,1891,128,1.44245791,0.106342502,1203.65797,3008656476 +3,9048,1892,128,1.25047863,0.106423696,1202.73966,3008656476 +3,9049,1893,128,1.20857358,0.106402631,1202.97777,3008656476 +3,9050,1894,128,1.25917351,0.106295564,1204.18948,3008656476 +3,9051,1895,128,1.22022712,0.106305071,1204.08179,3008656476 +3,9052,1896,128,1.36218214,0.106345862,1203.61994,3008656476 +3,9053,1897,128,1.32907939,0.106342186,1203.66155,3008656476 +3,9054,1898,128,1.81813014,0.106270739,1204.47078,3008656476 +3,9055,1899,128,2.22451949,0.113773812,1125.03921,3008656476 +3,9056,1900,128,1.71904254,0.106208429,1205.17742,3008656476 +3,9057,1901,128,1.53387058,0.106215391,1205.09842,3008656476 +3,9058,1902,128,1.18989873,0.10629478,1204.19836,3008656476 +3,9059,1903,128,1.46115899,0.106227577,1204.96018,3008656476 +3,9060,1904,128,1.15431631,0.106182932,1205.46681,3008656476 +3,9061,1905,128,1.33501208,0.106260032,1204.59215,3008656476 +3,9062,1906,128,1.3232348,0.106292138,1204.22829,3008656476 +3,9063,1907,128,1.21915579,0.106189319,1205.3943,3008656476 +3,9064,1908,128,1.18009484,0.117813261,1086.46513,3008656476 +3,9065,1909,128,1.12458599,0.104611734,1223.57211,3008656476 +3,9066,1910,128,1.33615553,0.106333492,1203.75996,3008656476 +3,9067,1911,128,1.18419027,0.106261244,1204.57841,3008656476 +3,9068,1912,128,1.38134658,0.106282208,1204.34081,3008656476 +3,9069,1913,128,1.49567401,0.106237398,1204.84879,3008656476 +3,9070,1914,128,1.45800948,0.106252235,1204.68054,3008656476 +3,9071,1915,128,1.04330575,0.106199824,1205.27507,3008656476 +3,9072,1916,128,1.53962088,0.106163052,1205.69254,3008656476 +3,9073,1917,128,1.21255231,0.1062436,1204.77845,3008656476 +3,9074,1918,128,1.61233187,0.119757911,1068.82292,3008656476 +3,9075,1919,128,1.10937059,0.106216128,1205.09006,3008656476 +3,9076,1920,128,1.22597086,0.106331861,1203.77842,3008656476 +3,9077,1921,128,1.24790132,0.106184812,1205.44546,3008656476 +3,9078,1922,128,1.72447872,0.106367503,1203.37506,3008656476 +3,9079,1923,128,1.34076965,0.106302076,1204.11571,3008656476 +3,9080,1924,128,1.35347605,0.106325183,1203.85403,3008656476 +3,9081,1925,128,1.03264737,0.106220067,1205.04537,3008656476 +3,9082,1926,128,1.31970215,0.106279242,1204.37442,3008656476 +3,9083,1927,128,1.28348088,0.106384831,1203.17905,3008656476 +3,9084,1928,128,1.31368411,0.118294804,1082.04245,3008656476 +3,9085,1929,128,1.62556744,0.106317365,1203.94255,3008656476 +3,9086,1930,128,1.4774909,0.106279671,1204.36955,3008656476 +3,9087,1931,128,1.22807229,0.106295337,1204.19205,3008656476 +3,9088,1932,128,0.950266063,0.106311416,1204.00992,3008656476 +3,9089,1933,128,1.08624935,0.106219448,1205.05239,3008656476 +3,9090,1934,128,1.25482059,0.10648815,1202.01168,3008656476 +3,9091,1935,128,1.09671593,0.106373773,1203.30413,3008656476 +3,9092,1936,128,1.60474026,0.10644452,1202.50437,3008656476 +3,9093,1937,128,1.44955707,0.106321285,1203.89817,3008656476 +3,9094,1938,128,1.54730403,0.118937134,1076.19879,3008656476 +3,9095,1939,128,1.27684402,0.097138565,1317.70528,3008656476 +3,9096,1940,128,1.40169024,0.10654632,1201.35543,3008656476 +3,9097,1941,128,1.17651379,0.1065305,1201.53383,3008656476 +3,9098,1942,128,1.47017372,0.106526642,1201.57735,3008656476 +3,9099,1943,128,1.42618942,0.106483683,1202.0621,3008656476 +3,9100,1944,128,1.28765798,0.106539042,1201.4375,3008656476 +3,9101,1945,128,1.34758008,0.10645736,1202.35933,3008656476 +3,9102,1946,128,1.05385172,0.106461153,1202.31649,3008656476 +3,9103,1947,128,1.15848696,0.106387984,1203.14339,3008656476 +3,9104,1948,128,1.42960227,0.114882904,1114.17796,3008656476 +3,9105,1949,128,1.2996099,0.106416662,1202.81916,3008656476 +3,9106,1950,128,1.67918849,0.106488837,1202.00392,3008656476 +3,9107,1951,128,1.77522683,0.10627584,1204.41297,3008656476 +3,9108,1952,128,1.29590285,0.106378776,1203.24754,3008656476 +3,9109,1953,128,1.37347162,0.1062833,1204.32843,3008656476 +3,9110,1954,128,1.41910946,0.106383228,1203.19718,3008656476 +3,9111,1955,128,1.28228772,0.106226453,1204.97293,3008656476 +3,9112,1956,128,1.77284014,0.106341547,1203.66878,3008656476 +3,9113,1957,128,1.24433517,0.120265375,1064.31298,3008656476 +3,9114,1958,128,1.36336422,0.106452187,1202.41776,3008656476 +3,9115,1959,128,0.992942631,0.106393649,1203.07933,3008656476 +3,9116,1960,128,1.49201298,0.106378079,1203.25542,3008656476 +3,9117,1961,128,1.44233239,0.106269953,1204.47969,3008656476 +3,9118,1962,128,1.24942303,0.106401271,1202.99315,3008656476 +3,9119,1963,128,1.30247903,0.106325826,1203.84675,3008656476 +3,9120,1964,128,1.14703989,0.106501181,1201.86461,3008656476 +3,9121,1965,128,1.17040944,0.106386226,1203.16327,3008656476 +3,9122,1966,128,1.71210408,0.106541396,1201.41095,3008656476 +3,9123,1967,128,1.5785439,0.118996828,1075.65892,3008656476 +3,9124,1968,128,1.66350865,0.106441207,1202.54179,3008656476 +3,9125,1969,128,1.26626372,0.106307325,1204.05626,3008656476 +3,9126,1970,128,1.45138586,0.106336567,1203.72515,3008656476 +3,9127,1971,128,1.42136443,0.106421191,1202.76797,3008656476 +3,9128,1972,128,1.55612636,0.106459905,1202.33059,3008656476 +3,9129,1973,128,1.65162289,0.106283513,1204.32602,3008656476 +3,9130,1974,128,0.838539958,0.106515296,1201.70534,3008656476 +3,9131,1975,128,1.13591969,0.106219308,1205.05398,3008656476 +3,9132,1976,128,1.56854534,0.106448117,1202.46373,3008656476 +3,9133,1977,128,1.35485721,0.118808565,1077.3634,3008656476 +3,9134,1978,128,1.31297767,0.106260586,1204.58587,3008656476 +3,9135,1979,128,1.30682111,0.10625018,1204.70384,3008656476 +3,9136,1980,128,1.69486725,0.106250834,1204.69643,3008656476 +3,9137,1981,128,1.60627055,0.10619682,1205.30916,3008656476 +3,9138,1982,128,1.46490395,0.106264698,1204.53925,3008656476 +3,9139,1983,128,1.41731715,0.106362887,1203.42728,3008656476 +3,9140,1984,128,1.32348907,0.106217756,1205.07159,3008656476 +3,9141,1985,128,1.14948952,0.106291598,1204.23441,3008656476 +3,9142,1986,128,1.25405598,0.106194109,1205.33993,3008656476 +3,9143,1987,128,1.54967809,0.120426463,1062.88931,3008656476 +3,9144,1988,128,1.76285493,0.106202342,1205.24649,3008656476 +3,9145,1989,128,1.48749804,0.106311727,1204.0064,3008656476 +3,9146,1990,128,1.2360661,0.106220271,1205.04306,3008656476 +3,9147,1991,128,1.12991512,0.106271134,1204.4663,3008656476 +3,9148,1992,128,1.09116709,0.106287125,1204.28509,3008656476 +3,9149,1993,128,1.15525401,0.106257128,1204.62507,3008656476 +3,9150,1994,128,1.41989648,0.106187378,1205.41633,3008656476 +3,9151,1995,128,1.3367691,0.106177903,1205.5239,3008656476 +3,9152,1996,128,1.39850736,0.106268857,1204.49211,3008656476 +3,9153,1997,128,1.7287997,0.112028618,1142.5652,3008656476 +3,9154,1998,128,1.54982865,0.106238383,1204.83762,3008656476 +3,9155,1999,128,1.51693714,0.106355692,1203.50869,3008656476 +3,9156,2000,128,1.30426335,0.10618666,1205.42449,3008656476 +3,9157,2001,128,1.19714236,0.106306922,1204.06082,3008656476 +3,9158,2002,128,1.62129176,0.106381914,1203.21204,3008656476 +3,9159,2003,128,1.51346767,0.10682973,1198.16834,3008656476 +3,9160,2004,128,1.14567947,0.106307904,1204.0497,3008656476 +3,9161,2005,128,1.15134513,0.106450412,1202.43781,3008656476 +3,9162,2006,128,1.20914793,0.11925292,1073.34898,3008656476 +3,9163,2007,128,1.13970602,0.106773438,1198.80002,3008656476 +3,9164,2008,128,1.29293275,0.106274151,1204.43211,3008656476 +3,9165,2009,128,1.10681152,0.106344289,1203.63774,3008656476 +3,9166,2010,128,1.29229236,0.106295632,1204.18871,3008656476 +3,9167,2011,128,1.70652854,0.106265238,1204.53313,3008656476 +3,9168,2012,128,1.5910821,0.106366489,1203.38653,3008656476 +3,9169,2013,128,1.17667317,0.106192866,1205.35404,3008656476 +3,9170,2014,128,1.61449325,0.106301885,1204.11788,3008656476 +3,9171,2015,128,1.27075195,0.106371863,1203.32573,3008656476 +3,9172,2016,128,1.3973273,0.118434246,1080.76848,3008656476 +3,9173,2017,128,1.69162154,0.106206228,1205.20239,3008656476 +3,9174,2018,128,1.37358427,0.106264324,1204.54349,3008656476 +3,9175,2019,128,1.43977308,0.106379421,1203.24024,3008656476 +3,9176,2020,128,1.32342625,0.106276708,1204.40313,3008656476 +3,9177,2021,128,1.69921434,0.106324002,1203.8674,3008656476 +3,9178,2022,128,1.62270427,0.10629624,1204.18182,3008656476 +3,9179,2023,128,1.60250914,0.106330019,1203.79928,3008656476 +3,9180,2024,128,1.64286673,0.106379977,1203.23395,3008656476 +3,9181,2025,128,1.53606403,0.106358173,1203.48062,3008656476 +3,9182,2026,128,1.00243008,0.118538267,1079.82007,3008656476 +3,9183,2027,128,1.4329102,0.106256555,1204.63156,3008656476 +3,9184,2028,128,1.30515313,0.10630303,1204.10491,3008656476 +3,9185,2029,128,1.57278931,0.106264696,1204.53928,3008656476 +3,9186,2030,128,1.37627637,0.106261951,1204.57039,3008656476 +3,9187,2031,128,1.29534245,0.106320909,1203.90242,3008656476 +3,9188,2032,128,1.34719312,0.106215439,1205.09788,3008656476 +3,9189,2033,128,1.28318822,0.106340698,1203.67839,3008656476 +3,9190,2034,128,1.43114078,0.106247072,1204.73908,3008656476 +3,9191,2035,128,1.37284017,0.10622242,1205.01868,3008656476 +3,9192,2036,128,1.38652766,0.121269399,1055.50123,3008656476 +3,9193,2037,128,1.27927268,0.106280381,1204.36151,3008656476 +3,9194,2038,128,1.56721985,0.106302593,1204.10986,3008656476 +3,9195,2039,128,1.5255034,0.106380671,1203.2261,3008656476 +3,9196,2040,128,1.37422299,0.1064697,1202.21997,3008656476 +3,9197,2041,128,1.55383813,0.106239489,1204.82507,3008656476 +3,9198,2042,128,1.62336838,0.106326702,1203.83683,3008656476 +3,9199,2043,128,1.3818574,0.106327753,1203.82493,3008656476 +3,9200,2044,128,1.38136172,0.106474452,1202.16632,3008656476 +3,9201,2045,128,1.40524864,0.10638878,1203.13439,3008656476 +3,9202,2046,128,1.33945942,0.111132409,1151.77923,3008656476 +3,9203,2047,128,1.5232563,0.106342719,1203.65551,3008656476 +3,9204,2048,128,1.63895583,0.106244097,1204.77282,3008656476 +3,9205,2049,128,1.47801268,0.106309523,1204.03136,3008656476 +3,9206,2050,128,1.70024347,0.106243649,1204.7779,3008656476 +3,9207,2051,128,1.37217367,0.106238112,1204.84069,3008656476 +3,9208,2052,128,1.2358036,0.106193011,1205.35239,3008656476 +3,9209,2053,128,1.42045939,0.106245581,1204.75599,3008656476 +3,9210,2054,128,1.40294719,0.106256242,1204.63511,3008656476 +3,9211,2055,128,1.40493619,0.115783115,1105.51526,3008656476 +3,9212,2056,128,1.36926222,0.104982808,1219.24725,3008656476 +3,9213,2057,128,1.45467913,0.106348088,1203.59475,3008656476 +3,9214,2058,128,1.42546463,0.106381791,1203.21343,3008656476 +3,9215,2059,128,1.49278128,0.106499655,1201.88183,3008656476 +3,9216,2060,128,1.12967753,0.106314199,1203.97841,3008656476 +3,9217,2061,128,1.38848972,0.106490627,1201.98372,3008656476 +3,9218,2062,128,1.63230419,0.106406512,1202.9339,3008656476 +3,9219,2063,128,1.13023889,0.106354901,1203.51765,3008656476 +3,9220,2064,128,1.39614403,0.106332935,1203.76626,3008656476 +3,9221,2065,128,1.34091294,0.118193228,1082.97237,3008656476 +3,9222,2066,128,1.31433725,0.106352497,1203.54485,3008656476 +3,9223,2067,128,1.33435178,0.106471471,1202.19998,3008656476 +3,9224,2068,128,1.1748997,0.106299911,1204.14024,3008656476 +3,9225,2069,128,1.27412927,0.106465877,1202.26314,3008656476 +3,9226,2070,128,0.943998516,0.106209,1205.17094,3008656476 +3,9227,2071,128,1.43088543,0.106379583,1203.23841,3008656476 +3,9228,2072,128,1.32294846,0.106221297,1205.03142,3008656476 +3,9229,2073,128,1.33344507,0.106345627,1203.6226,3008656476 +3,9230,2074,128,1.05856967,0.106327449,1203.82837,3008656476 +3,9231,2075,128,1.31400847,0.120171353,1065.1457,3008656476 +3,9232,2076,128,1.33325791,0.106256135,1204.63633,3008656476 +3,9233,2077,128,1.31183481,0.106591247,1200.84907,3008656476 +3,9234,2078,128,1.26023173,0.10628061,1204.35891,3008656476 +3,9235,2079,128,1.39867222,0.106236127,1204.8632,3008656476 +3,9236,2080,128,1.47291458,0.10622861,1204.94846,3008656476 +3,9237,2081,128,1.21165371,0.106275846,1204.4129,3008656476 +3,9238,2082,128,1.35181701,0.106317528,1203.94071,3008656476 +3,9239,2083,128,1.34876084,0.1062751,1204.42136,3008656476 +3,9240,2084,128,1.23210955,0.106275722,1204.41431,3008656476 +3,9241,2085,128,1.18655837,0.120525263,1062.01801,3008656476 +3,9242,2086,128,1.17958975,0.106328633,1203.81497,3008656476 +3,9243,2087,128,1.13783574,0.106296537,1204.17846,3008656476 +3,9244,2088,128,1.25565863,0.106303597,1204.09848,3008656476 +3,9245,2089,128,1.00827479,0.106261224,1204.57863,3008656476 +3,9246,2090,128,1.39281023,0.106281444,1204.34946,3008656476 +3,9247,2091,128,1.21814549,0.106199961,1205.27351,3008656476 +3,9248,2092,128,1.19276583,0.106263834,1204.54905,3008656476 +3,9249,2093,128,1.12888253,0.106274578,1204.42727,3008656476 +3,9250,2094,128,1.62378526,0.180713092,708.305074,3008656476 +3,9251,2095,128,1.12457132,0.106649052,1200.1982,3008656476 +3,9252,2096,128,1.47017765,0.106348897,1203.58559,3008656476 +3,9253,2097,128,1.21858621,0.106355066,1203.51578,3008656476 +3,9254,2098,128,1.42098653,0.106338711,1203.70088,3008656476 +3,9255,2099,128,1.31433594,0.106131043,1206.05618,3008656476 +3,9256,2100,128,1.30650115,0.106265736,1204.52749,3008656476 +3,9257,2101,128,1.52115762,0.106214123,1205.11281,3008656476 +3,9258,2102,128,1.38324118,0.106226668,1204.97049,3008656476 +3,9259,2103,128,0.82181704,0.106329315,1203.80725,3008656476 +3,9260,2104,128,1.28888428,0.120686826,1060.59629,3008656476 +3,9261,2105,128,1.2728169,0.106106363,1206.3367,3008656476 +3,9262,2106,128,1.03089297,0.106249776,1204.70842,3008656476 +3,9263,2107,128,1.34366798,0.106186482,1205.42651,3008656476 +3,9264,2108,128,1.4421885,0.106205213,1205.21391,3008656476 +3,9265,2109,128,1.17061651,0.106177107,1205.53294,3008656476 +3,9266,2110,128,1.31618392,0.106221515,1205.02894,3008656476 +3,9267,2111,128,1.17848456,0.10621763,1205.07302,3008656476 +3,9268,2112,128,1.36484158,0.106282824,1204.33383,3008656476 +3,9269,2113,128,1.11693931,0.106207095,1205.19255,3008656476 +3,9270,2114,128,1.04208517,0.119048107,1075.19559,3008656476 +3,9271,2115,128,1.31586719,0.10614861,1205.85658,3008656476 +3,9272,2116,128,1.07064521,0.106107126,1206.32803,3008656476 +3,9273,2117,128,1.21976388,0.106152647,1205.81072,3008656476 +3,9274,2118,128,1.29794633,0.106203606,1205.23215,3008656476 +3,9275,2119,128,1.2075181,0.106140175,1205.95241,3008656476 +3,9276,2120,128,1.06534648,0.10614734,1205.87101,3008656476 +3,9277,2121,128,1.13573253,0.106275609,1204.41559,3008656476 +3,9278,2122,128,1.22373486,0.106290711,1204.24446,3008656476 +3,9279,2123,128,1.07008767,0.106205965,1205.20538,3008656476 +3,9280,2124,128,1.06515157,0.116087343,1102.61805,3008656476 +3,9281,2125,128,0.840200782,0.106972809,1196.56576,3008656476 +3,9282,2126,128,1.01367629,0.106196161,1205.31664,3008656476 +3,9283,2127,128,1.47381568,0.106341032,1203.67461,3008656476 +3,9284,2128,128,1.34362972,0.106256259,1204.63492,3008656476 +3,9285,2129,128,1.0899967,0.10636326,1203.42306,3008656476 +3,9286,2130,128,1.72751653,0.106302201,1204.1143,3008656476 +3,9287,2131,128,1.17024183,0.10635886,1203.47285,3008656476 +3,9288,2132,128,1.11334968,0.106309632,1204.03013,3008656476 +3,9289,2133,128,1.35917735,0.117592868,1088.50139,3008656476 +3,9290,2134,128,1.4430387,0.105165665,1217.12728,3008656476 +3,9291,2135,128,1.12191772,0.106221331,1205.03103,3008656476 +3,9292,2136,128,1.19660544,0.106471431,1202.20043,3008656476 +3,9293,2137,128,1.26254427,0.106516368,1201.69325,3008656476 +3,9294,2138,128,1.20746577,0.106614829,1200.58346,3008656476 +3,9295,2139,128,1.27198458,0.106454033,1202.39691,3008656476 +3,9296,2140,128,1.26164579,0.106456286,1202.37146,3008656476 +3,9297,2141,128,1.15094531,0.10654528,1201.36716,3008656476 +3,9298,2142,128,1.30460811,0.106391527,1203.10333,3008656476 +3,9299,2143,128,1.43813133,0.120660488,1060.8278,3008656476 +3,9300,2144,128,1.13512087,0.10635441,1203.5232,3008656476 +3,9301,2145,128,1.4255985,0.106267062,1204.51246,3008656476 +3,9302,2146,128,1.28437364,0.106265663,1204.52832,3008656476 +3,9303,2147,128,1.39239657,0.106363068,1203.42523,3008656476 +3,9304,2148,128,0.889710546,0.106316599,1203.95123,3008656476 +3,9305,2149,128,1.15322495,0.106304395,1204.08945,3008656476 +3,9306,2150,128,0.929671645,0.10634573,1203.62143,3008656476 +3,9307,2151,128,1.29459524,0.106220374,1205.04189,3008656476 +3,9308,2152,128,1.28292203,0.106297336,1204.16941,3008656476 +3,9309,2153,128,1.01279306,0.119496169,1071.16405,3008656476 +3,9310,2154,128,1.18246341,0.10628325,1204.329,3008656476 +3,9311,2155,128,1.5198921,0.106248951,1204.71778,3008656476 +3,9312,2156,128,1.44737232,0.106344697,1203.63313,3008656476 +3,9313,2157,128,1.22802293,0.106274506,1204.42809,3008656476 +3,9314,2158,128,0.81359911,0.106364871,1203.40483,3008656476 +3,9315,2159,128,0.998619199,0.106255868,1204.63935,3008656476 +3,9316,2160,128,1.17078722,0.106259663,1204.59633,3008656476 +3,9317,2161,128,1.37740803,0.106243377,1204.78098,3008656476 +3,9318,2162,128,0.944876254,0.10624739,1204.73548,3008656476 +3,9319,2163,128,1.16481411,0.118130907,1083.5437,3008656476 +3,9320,2164,128,1.19819438,0.106229111,1204.94278,3008656476 +3,9321,2165,128,1.22404528,0.106314286,1203.97742,3008656476 +3,9322,2166,128,1.27258611,0.106369602,1203.35131,3008656476 +3,9323,2167,128,1.37549889,0.106145166,1205.89571,3008656476 +3,9324,2168,128,1.37197125,0.106501333,1201.86289,3008656476 +3,9325,2169,128,1.37424326,0.106305293,1204.07927,3008656476 +3,9326,2170,128,1.01658762,0.106351389,1203.55739,3008656476 +3,9327,2171,128,1.46378398,0.106415905,1202.82772,3008656476 +3,9328,2172,128,1.18619883,0.106346415,1203.61368,3008656476 +3,9329,2173,128,1.3075496,0.113644718,1126.31719,3008656476 +3,9330,2174,128,1.32308292,0.106330413,1203.79482,3008656476 +3,9331,2175,128,1.32910144,0.106382459,1203.20588,3008656476 +3,9332,2176,128,0.833301187,0.106255142,1204.64758,3008656476 +3,9333,2177,128,1.24645829,0.106336698,1203.72367,3008656476 +3,9334,2178,128,1.21891356,0.106265207,1204.53348,3008656476 +3,9335,2179,128,1.55614698,0.106278054,1204.38788,3008656476 +3,9336,2180,128,1.34848034,0.106246416,1204.74652,3008656476 +3,9337,2181,128,1.01608765,0.106300149,1204.13754,3008656476 +3,9338,2182,128,1.13297296,0.118222415,1082.705,3008656476 +3,9339,2183,128,1.36441827,0.103895882,1232.00263,3008656476 +3,9340,2184,128,1.16819429,0.106322705,1203.88209,3008656476 +3,9341,2185,128,1.34994853,0.106377296,1203.26428,3008656476 +3,9342,2186,128,1.32875323,0.106302613,1204.10963,3008656476 +3,9343,2187,128,1.28143954,0.106364629,1203.40757,3008656476 +3,9344,2188,128,1.20893502,0.106369354,1203.35412,3008656476 +3,9345,2189,128,1.38674891,0.106317565,1203.94029,3008656476 +3,9346,2190,128,0.940128207,0.106313887,1203.98194,3008656476 +3,9347,2191,128,1.26799929,0.106267748,1204.50468,3008656476 +3,9348,2192,128,1.04780161,0.121011248,1057.75291,3008656476 +3,9349,2193,128,0.896296501,0.106365744,1203.39496,3008656476 +3,9350,2194,128,1.29736626,0.106254722,1204.65234,3008656476 +3,9351,2195,128,1.03149748,0.106187792,1205.41164,3008656476 +3,9352,2196,128,1.21004128,0.10634479,1203.63207,3008656476 +3,9353,2197,128,1.65595567,0.10645496,1202.38644,3008656476 +3,9354,2198,128,1.60080922,0.106314114,1203.97937,3008656476 +3,9355,2199,128,1.14223063,0.106264489,1204.54162,3008656476 +3,9356,2200,128,1.47333205,0.106296111,1204.18328,3008656476 +3,9357,2201,128,1.53139877,0.106337281,1203.71707,3008656476 +3,9358,2202,128,1.28733456,0.118298159,1082.01177,3008656476 +3,9359,2203,128,1.37421894,0.106337727,1203.71202,3008656476 +3,9360,2204,128,1.27462316,0.106259969,1204.59286,3008656476 +3,9361,2205,128,1.24342895,0.106350824,1203.56378,3008656476 +3,9362,2206,128,1.39291763,0.106462301,1202.30353,3008656476 +3,9363,2207,128,1.27191055,0.106248609,1204.72165,3008656476 +3,9364,2208,128,1.22462702,0.106295027,1204.19556,3008656476 +3,9365,2209,128,1.52048612,0.106401495,1202.99062,3008656476 +3,9366,2210,128,1.33291924,0.106451311,1202.42765,3008656476 +3,9367,2211,128,1.28862643,0.106290623,1204.24546,3008656476 +3,9368,2212,128,1.14803159,0.119227758,1073.5755,3008656476 +3,9369,2213,128,1.19985998,0.106407327,1202.92468,3008656476 +3,9370,2214,128,1.06650519,0.10625746,1204.6213,3008656476 +3,9371,2215,128,1.33439076,0.106215252,1205.1,3008656476 +3,9372,2216,128,0.952660561,0.106338155,1203.70717,3008656476 +3,9373,2217,128,1.52628028,0.106193175,1205.35053,3008656476 +3,9374,2218,128,1.32184362,0.10630028,1204.13606,3008656476 +3,9375,2219,128,1.64553547,0.106350322,1203.56946,3008656476 +3,9376,2220,128,1.08218813,0.106237971,1204.84229,3008656476 +3,9377,2221,128,0.91915822,0.106352916,1203.54011,3008656476 +3,9378,2222,128,1.15963626,0.115801598,1105.33881,3008656476 +3,9379,2223,128,1.38091922,0.106328872,1203.81226,3008656476 +3,9380,2224,128,1.18817639,0.106316469,1203.9527,3008656476 +3,9381,2225,128,1.23989713,0.106330755,1203.79094,3008656476 +3,9382,2226,128,1.59006691,0.106255715,1204.64109,3008656476 +3,9383,2227,128,1.25489688,0.106290117,1204.25119,3008656476 +3,9384,2228,128,1.41462719,0.106451563,1202.42481,3008656476 +3,9385,2229,128,1.30846381,0.106303242,1204.10251,3008656476 +3,9386,2230,128,1.50830138,0.106328076,1203.82127,3008656476 +3,9387,2231,128,0.97958076,0.118721204,1078.15618,3008656476 +3,9388,2232,128,1.40369701,0.104597748,1223.73572,3008656476 +3,9389,2233,128,0.917300999,0.106321107,1203.90018,3008656476 +3,9390,2234,128,1.26129282,0.106315984,1203.95819,3008656476 +3,9391,2235,128,1.04164302,0.106446942,1202.477,3008656476 +3,9392,2236,128,1.38435614,0.106362377,1203.43305,3008656476 +3,9393,2237,128,1.48788047,0.106289974,1204.25281,3008656476 +3,9394,2238,128,1.02079082,0.106396365,1203.04862,3008656476 +3,9395,2239,128,1.29399514,0.10626482,1204.53787,3008656476 +3,9396,2240,128,1.33024418,0.106350766,1203.56444,3008656476 +3,9397,2241,128,1.3296876,0.119986399,1066.78758,3008656476 +3,9398,2242,128,1.68591213,0.106488632,1202.00624,3008656476 +3,9399,2243,128,1.50816429,0.106329743,1203.8024,3008656476 +3,9400,2244,128,1.39217424,0.106348879,1203.58579,3008656476 +3,9401,2245,128,1.35346949,0.10629175,1204.23269,3008656476 +3,9402,2246,128,1.14933038,0.106250647,1204.69855,3008656476 +3,9403,2247,128,1.14028311,0.106538353,1201.44527,3008656476 +3,9404,2248,128,0.991655409,0.106526417,1201.57989,3008656476 +3,9405,2249,128,1.08756089,0.106262499,1204.56418,3008656476 +3,9406,2250,128,1.61731565,0.10629272,1204.2217,3008656476 +3,9407,2251,128,1.08860505,0.118410415,1080.98599,3008656476 +3,9408,2252,128,0.901474297,0.106403369,1202.96943,3008656476 +3,9409,2253,128,1.05845737,0.106297668,1204.16565,3008656476 +3,9410,2254,128,1.55517972,0.106398699,1203.02223,3008656476 +3,9411,2255,128,1.13364053,0.106242562,1204.79022,3008656476 +3,9412,2256,128,1.42120349,0.10646384,1202.28615,3008656476 +3,9413,2257,128,1.23047471,0.106410856,1202.88479,3008656476 +3,9414,2258,128,1.50323248,0.106316026,1203.95772,3008656476 +3,9415,2259,128,1.27103853,0.10633999,1203.6864,3008656476 +3,9416,2260,128,1.3446871,0.10628517,1204.30724,3008656476 +3,9417,2261,128,0.996291876,0.11860768,1079.18813,3008656476 +3,9418,2262,128,1.03110385,0.10639005,1203.12003,3008656476 +3,9419,2263,128,1.31620383,0.106322279,1203.88691,3008656476 +3,9420,2264,128,1.03335416,0.106432089,1202.64482,3008656476 +3,9421,2265,128,1.32634914,0.10634994,1203.57379,3008656476 +3,9422,2266,128,1.20412731,0.10626023,1204.5899,3008656476 +3,9423,2267,128,1.12994909,0.106260267,1204.58948,3008656476 +3,9424,2268,128,1.37869525,0.10631088,1204.016,3008656476 +3,9425,2269,128,1.00723231,0.106348326,1203.59205,3008656476 +3,9426,2270,128,1.0715071,0.106175953,1205.54604,3008656476 +3,9427,2271,128,1.24037337,0.115168216,1111.41775,3008656476 +3,9428,2272,128,1.18701577,0.106327008,1203.83337,3008656476 +3,9429,2273,128,1.22378862,0.106236223,1204.86211,3008656476 +3,9430,2274,128,1.06656718,0.106243934,1204.77467,3008656476 +3,9431,2275,128,1.58848667,0.106275573,1204.416,3008656476 +3,9432,2276,128,1.34547675,0.106265958,1204.52497,3008656476 +3,9433,2277,128,0.992046952,0.106260019,1204.59229,3008656476 +3,9434,2278,128,1.02126026,0.106366848,1203.38247,3008656476 +3,9435,2279,128,1.17984664,0.106179262,1205.50847,3008656476 +3,9436,2280,128,1.07993698,0.120273417,1064.24182,3008656476 +3,9437,2281,128,1.27613151,0.104426578,1225.74159,3008656476 +3,9438,2282,128,1.46009278,0.106266135,1204.52296,3008656476 +3,9439,2283,128,1.13830626,0.106252592,1204.67649,3008656476 +3,9440,2284,128,1.06497109,0.106248585,1204.72193,3008656476 +3,9441,2285,128,1.11309361,0.106315304,1203.96589,3008656476 +3,9442,2286,128,1.08291161,0.106181042,1205.48826,3008656476 +3,9443,2287,128,1.14459503,0.106189955,1205.38708,3008656476 +3,9444,2288,128,1.12499225,0.106350076,1203.57225,3008656476 +3,9445,2289,128,0.971331,0.106211034,1205.14786,3008656476 +3,9446,2290,128,1.13766229,0.119678758,1069.52982,3008656476 +3,9447,2291,128,1.6363405,0.106393923,1203.07623,3008656476 +3,9448,2292,128,1.0074228,0.10631591,1203.95903,3008656476 +3,9449,2293,128,1.54119706,0.106402768,1202.97622,3008656476 +3,9450,2294,128,1.18903828,0.106371662,1203.32801,3008656476 +3,9451,2295,128,1.56799829,0.106356723,1203.49703,3008656476 +3,9452,2296,128,1.74202836,0.10647341,1202.17808,3008656476 +3,9453,2297,128,1.24768651,0.106411412,1202.8785,3008656476 +3,9454,2298,128,1.16231894,0.106296304,1204.1811,3008656476 +3,9455,2299,128,1.45001936,0.106465836,1202.26361,3008656476 +3,9456,2300,128,1.35153782,0.118563319,1079.59191,3008656476 +3,9457,2301,128,1.25873613,0.106278303,1204.38506,3008656476 +3,9458,2302,128,1.47059774,0.106225086,1204.98843,3008656476 +3,9459,2303,128,1.27854598,0.106330497,1203.79387,3008656476 +3,9460,2304,128,1.22959363,0.10631463,1203.97353,3008656476 +3,9461,2305,128,1.22047162,0.106360595,1203.45321,3008656476 +3,9462,2306,128,1.71964061,0.106395734,1203.05575,3008656476 +3,9463,2307,128,1.4320631,0.106470857,1202.20691,3008656476 +3,9464,2308,128,1.38929987,0.106328736,1203.8138,3008656476 +3,9465,2309,128,1.42901063,0.106314284,1203.97744,3008656476 +3,9466,2310,128,1.22037446,0.119045612,1075.21813,3008656476 +3,9467,2311,128,1.17250347,0.10618012,1205.49873,3008656476 +3,9468,2312,128,1.4017781,0.106202459,1205.24516,3008656476 +3,9469,2313,128,1.62861276,0.106265267,1204.5328,3008656476 +3,9470,2314,128,1.72475755,0.106139888,1205.95567,3008656476 +3,9471,2315,128,1.38040745,0.106278656,1204.38106,3008656476 +3,9472,2316,128,1.80693114,0.106150334,1205.837,3008656476 +3,9473,2317,128,1.58056283,0.106118447,1206.19933,3008656476 +3,9474,2318,128,1.96741116,0.106206522,1205.19906,3008656476 +3,9475,2319,128,1.6207087,0.106210073,1205.15876,3008656476 +3,9476,2320,128,1.60004175,0.115261747,1110.51588,3008656476 +3,9477,2321,128,1.52746546,0.106335138,1203.74133,3008656476 +3,9478,2322,128,1.60847509,0.106198194,1205.29357,3008656476 +3,9479,2323,128,1.84134591,0.106214678,1205.10651,3008656476 +3,9480,2324,128,1.51760852,0.106368674,1203.36181,3008656476 +3,9481,2325,128,1.75526822,0.106391727,1203.10106,3008656476 +3,9482,2326,128,1.74267983,0.106417748,1202.80689,3008656476 +3,9483,2327,128,1.75600529,0.106379634,1203.23783,3008656476 +3,9484,2328,128,1.63352466,0.1064718,1202.19626,3008656476 +3,9485,2329,128,1.44822764,0.118181768,1083.07738,3008656476 +3,9486,2330,128,1.4622885,0.105212693,1216.58325,3008656476 +3,9487,2331,128,1.54189873,0.106197629,1205.29998,3008656476 +3,9488,2332,128,1.17150903,0.106260519,1204.58663,3008656476 +3,9489,2333,128,1.36445105,0.106261845,1204.57159,3008656476 +3,9490,2334,128,1.24845099,0.106319569,1203.9176,3008656476 +3,9491,2335,128,1.3924309,0.106289456,1204.25868,3008656476 +3,9492,2336,128,1.8022306,0.106222366,1205.01929,3008656476 +3,9493,2337,128,1.70036328,0.106183527,1205.46005,3008656476 +3,9494,2338,128,1.49781454,0.106278516,1204.38264,3008656476 +3,9495,2339,128,1.34991646,0.118612308,1079.14602,3008656476 +3,9496,2340,128,1.43223941,0.106362373,1203.4331,3008656476 +3,9497,2341,128,1.65040648,0.106331903,1203.77795,3008656476 +3,9498,2342,128,1.46624601,0.106230125,1204.93128,3008656476 +3,9499,2343,128,1.36737621,0.106296665,1204.17701,3008656476 +3,9500,2344,128,1.297791,0.1062577,1204.61858,3008656476 +3,9501,2345,128,1.80708981,0.107154789,1194.53364,3008656476 +3,9502,2346,128,1.64458477,0.106337494,1203.71466,3008656476 +3,9503,2347,128,1.62676287,0.106307156,1204.05817,3008656476 +3,9504,2348,128,1.42652452,0.106308441,1204.04362,3008656476 +3,9505,2349,128,1.57402468,0.118768598,1077.72595,3008656476 +3,9506,2350,128,1.47117698,0.106345042,1203.62922,3008656476 +3,9507,2351,128,1.55067003,0.106273441,1204.44016,3008656476 +3,9508,2352,128,1.46839166,0.10628814,1204.27359,3008656476 +3,9509,2353,128,1.29745615,0.10626334,1204.55465,3008656476 +3,9510,2354,128,1.66336632,0.101460491,1261.57481,3008656476 +3,9511,2355,128,1.36311674,0.106333292,1203.76222,3008656476 +3,9512,2356,128,1.69083977,0.10651595,1201.69796,3008656476 +3,9513,2357,128,1.37450862,0.106383327,1203.19606,3008656476 +3,9514,2358,128,1.51305878,0.106451664,1202.42367,3008656476 +3,9515,2359,128,1.31028891,0.119364244,1072.34793,3008656476 +3,9516,2360,128,1.55646086,0.106348551,1203.58951,3008656476 +3,9517,2361,128,1.35996485,0.106302924,1204.10611,3008656476 +3,9518,2362,128,1.34476411,0.106352677,1203.54281,3008656476 +3,9519,2363,128,1.23771405,0.106292221,1204.22735,3008656476 +3,9520,2364,128,0.911227465,0.106297229,1204.17062,3008656476 +3,9521,2365,128,1.0421263,0.10629965,1204.14319,3008656476 +3,9522,2366,128,1.02942932,0.106386704,1203.15787,3008656476 +3,9523,2367,128,1.14807177,0.106296158,1204.18275,3008656476 +3,9524,2368,128,1.05310583,0.106282857,1204.33345,3008656476 +3,9525,2369,128,1.32665992,0.11564073,1106.87644,3008656476 +3,9526,2370,128,1.00722492,0.106358583,1203.47598,3008656476 +3,9527,2371,128,1.00262487,0.106329254,1203.80794,3008656476 +3,9528,2372,128,1.59683144,0.106292036,1204.22945,3008656476 +3,9529,2373,128,1.52130556,0.106214017,1205.11401,3008656476 +3,9530,2374,128,1.42669618,0.106348627,1203.58865,3008656476 +3,9531,2375,128,1.13180864,0.10629822,1204.15939,3008656476 +3,9532,2376,128,1.22447991,0.10630369,1204.09743,3008656476 +3,9533,2377,128,1.32126486,0.10614239,1205.92725,3008656476 +3,9534,2378,128,1.21985042,0.11921206,1073.71687,3008656476 +3,9535,2379,128,1.13661575,0.104672646,1222.86008,3008656476 +3,9536,2380,128,1.08999991,0.106345558,1203.62338,3008656476 +3,9537,2381,128,1.25497031,0.106386956,1203.15502,3008656476 +3,9538,2382,128,1.36796093,0.106214529,1205.1082,3008656476 +3,9539,2383,128,1.75676858,0.10640404,1202.96184,3008656476 +3,9540,2384,64,0.509018898,0.102862433,622.190222,3008656476 diff --git a/docs/experiments/a100-full-seed1337/summary.json b/docs/experiments/a100-full-seed1337/summary.json new file mode 100644 index 0000000..e57c875 --- /dev/null +++ b/docs/experiments/a100-full-seed1337/summary.json @@ -0,0 +1,32 @@ +{ + "status": "complete", + "run_state": "complete", + "resumed": true, + "device": "cuda", + "epoch": 4, + "global_step": 9540, + "next_batch": 0, + "train_mean_loss": 1.4091759597662736, + "validation_mean_loss": 5.4255262690280981, + "validation_perplexity": 227.13084679781386, + "validation_perplexity_overflow": false, + "best_validation_loss": 3.9249058558283019, + "train_tokens_per_second": 1179.2502399132538, + "cuda_async_pool_peak_bytes": 3008656476, + "wall_seconds_this_process": 162.61808835599999, + "config": {"block_size": 1024, "vocab_size": 50257, "n_layer": 12, "n_head": 12, "n_embd": 768, "batch_size": 2, "sequence_length": 64, "max_epochs": 30, "learning_rate": 0.0001, "seed": 1337}, + "dataset_coverage": { + "train": {"samples": 4769, "raw_tokens": 305260, "usable_target_tokens": 305216, "dropped_tokens": 43}, + "validation": {"samples": 511, "raw_tokens": 32768, "usable_target_tokens": 32704, "dropped_tokens": 63} + }, + "artifacts": { + "steps_csv": {"path": "steps.csv", "exists": true}, + "epochs_csv": {"path": "epochs.csv", "exists": true}, + "latest_checkpoint": {"path": "latest.ckpt", "exists": true}, + "best_checkpoint": {"path": "best.ckpt", "exists": true}, + "final_checkpoint": {"path": "final.ckpt", "exists": true}, + "baseline_generation": {"path": "baseline.txt", "exists": true}, + "best_generation": {"path": "best.txt", "exists": true}, + "final_generation": {"path": "final.txt", "exists": true} + } +} diff --git a/docs/experiments/a100-lr-sweep-seed1337/comparison.csv b/docs/experiments/a100-lr-sweep-seed1337/comparison.csv new file mode 100644 index 0000000..a161b8a --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/comparison.csv @@ -0,0 +1,4 @@ +learning_rate,early_stop_epoch,best_epoch,best_validation_loss,best_validation_perplexity,final_train_loss,final_validation_loss,global_steps +0.0001,4,1,3.92490585583,50.6483095912,1.40917595977,5.42552626903,9540 +0.00005,5,2,3.81177762063,45.2307705965,1.31160235175,5.57148814435,11925 +0.00002,5,2,3.71021266926,40.8624957998,2.26582381637,4.31823628149,11925 diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/baseline.txt b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/baseline.txt new file mode 100644 index 0000000..06bec4d --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/baseline.txt @@ -0,0 +1,5 @@ +The meaning of life is that's what matters us. It's about everything that actually matters to you. + +It means you are prepared to do anything and everything to live a fulfilling, happy life. + +For many North Koreans, living a fulfilling life means living a full life, coping with hunger, and taking diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/best.txt b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/best.txt new file mode 100644 index 0000000..97454ae --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/best.txt @@ -0,0 +1,10 @@ +The meaning of life is to you; why then? + +<|endoftext|>ALONSO: +of all that the globe in Order +Hath since the origination itself; for +kiln-worth to +irritant flies they come home. + +<|endoftext|>ANTONIO: +I forbid they actually stand, wh diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/epochs.csv b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/epochs.csv new file mode 100644 index 0000000..dabe296 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/epochs.csv @@ -0,0 +1,6 @@ +epoch,global_step,train_tokens,val_tokens,train_mean_loss,val_mean_loss,val_perplexity,val_perplexity_overflow,train_tokens_per_second,cuda_async_pool_peak_bytes,improved +0,2385,305216,32704,3.64342391153,3.7623034522,43.0474696526,0,957.829118021,3008656476,1 +1,4770,305216,32704,3.26327012485,3.71021266926,40.8624957998,0,963.184206846,3008656476,1 +2,7155,305216,32704,2.97766675497,3.79583682893,44.5154726583,0,967.927568945,3008656476,0 +3,9540,305216,32704,2.65050837901,3.98611644943,53.8453715666,0,963.419171495,3008656476,0 +4,11925,305216,32704,2.26582381637,4.31823628149,75.0561335929,0,985.828426747,3008656476,0 diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/final.txt b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/final.txt new file mode 100644 index 0000000..b574f25 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/final.txt @@ -0,0 +1,9 @@ +The meaning of life is for wretches +And not for quick-witted fools. + +<|endoftext|>MIRANDA: +Me neither! or such small one as is conquered +As wealth to a kind of exploit. + +<|endoftext|>MANNIA: +Not a kind at all at all; for, you diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/steps.csv b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/steps.csv new file mode 100644 index 0000000..6fb3b64 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/steps.csv @@ -0,0 +1,11926 @@ +epoch,global_step,batch_index,tokens,loss,compute_seconds,tokens_per_second,cuda_async_pool_peak_bytes +0,1,0,128,5.43915796,0.12749577,1003.95488,3008656476 +0,2,1,128,5.00076294,0.137292793,932.314051,3008656476 +0,3,2,128,4.34454679,0.163202964,784.299481,3008656476 +0,4,3,128,4.79599142,0.132722902,964.41532,3008656476 +0,5,4,128,4.44248581,0.13149128,973.448582,3008656476 +0,6,5,128,4.99375248,0.131543791,973.05999,3008656476 +0,7,6,128,4.59340477,0.132078862,969.11798,3008656476 +0,8,7,128,4.96323061,0.13177849,971.326959,3008656476 +0,9,8,128,4.84429359,0.13236748,967.004887,3008656476 +0,10,9,128,4.57569408,0.13301251,962.315499,3008656476 +0,11,10,128,4.39704561,0.160328614,798.360298,3008656476 +0,12,11,128,4.63181162,0.133771454,956.855863,3008656476 +0,13,12,128,4.24151421,0.134156016,954.113008,3008656476 +0,14,13,128,3.98146915,0.136268467,939.322228,3008656476 +0,15,14,128,3.99715233,0.137417552,931.467619,3008656476 +0,16,15,128,4.19975233,0.145419149,880.214201,3008656476 +0,17,16,128,4.55867672,0.145464563,879.939398,3008656476 +0,18,17,128,4.38493109,0.15076183,849.021268,3008656476 +0,19,18,128,4.39918518,0.146678067,872.659441,3008656476 +0,20,19,128,4.73864555,0.13412723,954.317777,3008656476 +0,21,20,128,4.19664001,0.133111953,961.596589,3008656476 +0,22,21,128,4.6340332,0.132921518,962.974257,3008656476 +0,23,22,128,4.1523571,0.133801808,956.638792,3008656476 +0,24,23,128,3.3073535,0.132590205,965.380512,3008656476 +0,25,24,128,3.57968044,0.132017458,969.568737,3008656476 +0,26,25,128,4.14143324,0.158032792,809.95848,3008656476 +0,27,26,128,4.20305061,0.131685065,972.016075,3008656476 +0,28,27,128,4.36923599,0.131589393,972.722779,3008656476 +0,29,28,128,3.966959,0.13226651,967.743082,3008656476 +0,30,29,128,4.22679234,0.133207555,960.906459,3008656476 +0,31,30,128,3.86086154,0.130717987,979.207246,3008656476 +0,32,31,128,4.20387316,0.129972591,984.823023,3008656476 +0,33,32,128,4.41986704,0.129915223,985.257902,3008656476 +0,34,33,128,4.29765987,0.159802672,800.987858,3008656476 +0,35,34,128,4.13908672,0.129895561,985.407038,3008656476 +0,36,35,128,4.17726612,0.12942169,989.015056,3008656476 +0,37,36,128,4.19488287,0.12906513,991.747345,3008656476 +0,38,37,128,3.72449231,0.128842805,993.458657,3008656476 +0,39,38,128,3.64183688,0.130931188,977.612759,3008656476 +0,40,39,128,3.35647845,0.128341381,997.340055,3008656476 +0,41,40,128,3.87401319,0.129982552,984.747553,3008656476 +0,42,41,128,3.90683126,0.154493671,828.512904,3008656476 +0,43,42,128,4.12300491,0.129333885,989.6865,3008656476 +0,44,43,128,4.18619013,0.129602242,987.637235,3008656476 +0,45,44,128,4.46710491,0.129105768,991.435177,3008656476 +0,46,45,128,4.29300451,0.129137866,991.18875,3008656476 +0,47,46,128,3.5848248,0.129085451,991.591221,3008656476 +0,48,47,128,4.05081797,0.129970373,984.83983,3008656476 +0,49,48,128,3.62775564,0.129416414,989.055376,3008656476 +0,50,49,128,3.86509371,0.151861423,842.873703,3008656476 +0,51,50,128,3.35279536,0.130375543,981.779228,3008656476 +0,52,51,128,4.35791111,0.129179472,990.869509,3008656476 +0,53,52,128,3.18749404,0.129879061,985.532225,3008656476 +0,54,53,128,4.0629611,0.129921062,985.213621,3008656476 +0,55,54,128,3.22062945,0.129336559,989.666039,3008656476 +0,56,55,128,3.76337099,0.128891502,993.083314,3008656476 +0,57,56,128,4.63558054,0.12136872,1054.63747,3008656476 +0,58,57,128,3.90297866,0.140805412,909.055967,3008656476 +0,59,58,128,3.77745128,0.129190146,990.787641,3008656476 +0,60,59,128,3.93004155,0.129376176,989.362988,3008656476 +0,61,60,128,3.62606096,0.130030926,984.381208,3008656476 +0,62,61,128,4.56552362,0.129037233,991.961754,3008656476 +0,63,62,128,3.55707979,0.129450369,988.795945,3008656476 +0,64,63,128,4.63309145,0.128800332,993.786258,3008656476 +0,65,64,128,3.24546361,0.129474264,988.613459,3008656476 +0,66,65,128,4.04458809,0.146243419,875.25306,3008656476 +0,67,66,128,3.92308164,0.128413077,996.783217,3008656476 +0,68,67,128,4.67148733,0.128780365,993.940342,3008656476 +0,69,68,128,4.87260437,0.129467881,988.6622,3008656476 +0,70,69,128,3.96806407,0.130218497,982.963273,3008656476 +0,71,70,128,4.47426844,0.129739331,986.593649,3008656476 +0,72,71,128,4.37247276,0.129898847,985.38211,3008656476 +0,73,72,128,4.31247091,0.130822915,978.421861,3008656476 +0,74,73,128,3.87561774,0.147821801,865.907458,3008656476 +0,75,74,128,3.76513147,0.130289347,982.428748,3008656476 +0,76,75,128,3.67306328,0.129889966,985.449484,3008656476 +0,77,76,128,4.68714666,0.130202835,983.081513,3008656476 +0,78,77,128,4.41445017,0.130969767,977.32479,3008656476 +0,79,78,128,3.9499855,0.130827438,978.388035,3008656476 +0,80,79,128,3.93627048,0.131214774,975.499908,3008656476 +0,81,80,128,4.4794836,0.14333317,893.024273,3008656476 +0,82,81,128,4.26651716,0.141712614,903.236461,3008656476 +0,83,82,128,4.27713203,0.129961469,984.907304,3008656476 +0,84,83,128,4.43416595,0.130934955,977.584634,3008656476 +0,85,84,128,3.68505812,0.131150216,975.980093,3008656476 +0,86,85,128,3.61192536,0.131227399,975.406058,3008656476 +0,87,86,128,3.69346619,0.132294355,967.539393,3008656476 +0,88,87,128,3.43116093,0.132071943,969.168751,3008656476 +0,89,88,128,3.48084068,0.146206172,875.476037,3008656476 +0,90,89,128,4.04640484,0.145170856,881.719675,3008656476 +0,91,90,128,3.52184248,0.133615967,957.969342,3008656476 +0,92,91,128,3.86810327,0.132804998,963.819148,3008656476 +0,93,92,128,4.29543495,0.139384973,918.31994,3008656476 +0,94,93,128,3.62650537,0.133392645,959.573146,3008656476 +0,95,94,128,3.5133729,0.132841942,963.551105,3008656476 +0,96,95,128,4.01368618,0.132163246,968.499215,3008656476 +0,97,96,128,3.57009888,0.145283235,881.03765,3008656476 +0,98,97,128,4.05473566,0.138384873,924.956588,3008656476 +0,99,98,128,4.19861221,0.132887892,963.217928,3008656476 +0,100,99,128,3.93012977,0.132221007,968.076124,3008656476 +0,101,100,128,4.04057217,0.131736488,971.636651,3008656476 +0,102,101,128,3.62515759,0.132439078,966.482113,3008656476 +0,103,102,128,3.89090085,0.131642652,972.329242,3008656476 +0,104,103,128,4.11264467,0.131127766,976.147188,3008656476 +0,105,104,128,3.30454803,0.159790386,801.049445,3008656476 +0,106,105,128,4.12735128,0.130616697,979.966596,3008656476 +0,107,106,128,3.78588295,0.128553017,995.698141,3008656476 +0,108,107,128,3.70503306,0.129691052,986.96092,3008656476 +0,109,108,128,4.0949297,0.12847486,996.303868,3008656476 +0,110,109,128,3.06504464,0.129016756,992.119194,3008656476 +0,111,110,128,3.72895908,0.128477545,996.283047,3008656476 +0,112,111,128,3.67814684,0.12816114,998.742677,3008656476 +0,113,112,128,4.22019339,0.155839914,821.355689,3008656476 +0,114,113,128,4.82979488,0.12990434,985.340444,3008656476 +0,115,114,128,4.5353713,0.128983724,992.37327,3008656476 +0,116,115,128,4.79050589,0.129099879,991.480403,3008656476 +0,117,116,128,3.73389077,0.128639087,995.031938,3008656476 +0,118,117,128,4.2086587,0.12907914,991.639703,3008656476 +0,119,118,128,3.95077467,0.129807065,986.078839,3008656476 +0,120,119,128,4.18990946,0.129310134,989.868281,3008656476 +0,121,120,128,4.31086159,0.156426731,818.274467,3008656476 +0,122,121,128,3.96978641,0.129148008,991.110912,3008656476 +0,123,122,128,3.2371316,0.129237998,990.420789,3008656476 +0,124,123,128,3.47821379,0.130226544,982.902533,3008656476 +0,125,124,128,3.55378437,0.131256716,975.188195,3008656476 +0,126,125,128,3.39826226,0.129642725,987.32883,3008656476 +0,127,126,128,3.29633403,0.129108605,991.413392,3008656476 +0,128,127,128,4.38684511,0.129945347,985.029499,3008656476 +0,129,128,128,4.35102081,0.159553246,802.240025,3008656476 +0,130,129,128,4.24799681,0.129486766,988.518008,3008656476 +0,131,130,128,4.40196466,0.130259664,982.652619,3008656476 +0,132,131,128,3.82041359,0.128820784,993.628482,3008656476 +0,133,132,128,3.4354744,0.129273792,990.146557,3008656476 +0,134,133,128,3.87263846,0.129176938,990.888946,3008656476 +0,135,134,128,4.38434076,0.129283902,990.069127,3008656476 +0,136,135,128,3.84109306,0.130158841,983.413797,3008656476 +0,137,136,128,3.5178175,0.159945835,800.270917,3008656476 +0,138,137,128,3.44228077,0.13122147,975.45013,3008656476 +0,139,138,128,2.93694258,0.131952231,970.048017,3008656476 +0,140,139,128,3.4606812,0.132652878,964.92441,3008656476 +0,141,140,128,2.78445101,0.132435635,966.50724,3008656476 +0,142,141,128,2.61169243,0.1327052,964.543967,3008656476 +0,143,142,128,3.48569369,0.133848539,956.304798,3008656476 +0,144,143,128,3.10768938,0.147332295,868.784403,3008656476 +0,145,144,128,2.37862349,0.145434627,880.120523,3008656476 +0,146,145,128,2.11422968,0.137211048,932.869487,3008656476 +0,147,146,128,3.35886526,0.133791314,956.713827,3008656476 +0,148,147,128,4.39976883,0.134792009,949.611189,3008656476 +0,149,148,128,4.48019505,0.139231867,919.329768,3008656476 +0,150,149,128,3.37913489,0.136273587,939.286936,3008656476 +0,151,150,128,2.77292848,0.144257211,887.303998,3008656476 +0,152,151,128,2.05576038,0.168872641,757.967657,3008656476 +0,153,152,128,3.03544521,0.139110255,920.133458,3008656476 +0,154,153,128,3.9587791,0.14408401,888.370611,3008656476 +0,155,154,128,2.98382139,0.136298076,939.118172,3008656476 +0,156,155,128,4.15579033,0.132691985,964.640027,3008656476 +0,157,156,128,4.6638217,0.133562856,958.350277,3008656476 +0,158,157,128,4.30519295,0.13122643,975.413261,3008656476 +0,159,158,128,3.89749885,0.14132582,905.708525,3008656476 +0,160,159,128,3.54003215,0.145010935,882.692054,3008656476 +0,161,160,128,4.153234,0.130779656,978.745502,3008656476 +0,162,161,128,3.89207029,0.13168393,972.024453,3008656476 +0,163,162,128,3.2795949,0.131319522,974.721793,3008656476 +0,164,163,128,4.25324917,0.131921604,970.273224,3008656476 +0,165,164,128,4.32582664,0.130075606,984.04308,3008656476 +0,166,165,128,3.69530654,0.130213295,983.002542,3008656476 +0,167,166,128,3.98294473,0.144110128,888.209606,3008656476 +0,168,167,128,3.67048287,0.143678017,890.880892,3008656476 +0,169,168,128,3.51812983,0.128199297,998.445413,3008656476 +0,170,169,128,3.81667423,0.128317011,997.52947,3008656476 +0,171,170,128,3.68875813,0.127989559,1000.08158,3008656476 +0,172,171,128,3.4027462,0.129118104,991.340455,3008656476 +0,173,172,128,3.74136519,0.127635861,1002.85295,3008656476 +0,174,173,128,3.46721148,0.12871104,994.475688,3008656476 +0,175,174,128,3.19637585,0.142029372,901.222037,3008656476 +0,176,175,128,3.77966142,0.143596763,891.384996,3008656476 +0,177,176,128,3.07529569,0.128510628,996.02657,3008656476 +0,178,177,128,4.16839123,0.128452951,996.473798,3008656476 +0,179,178,128,3.16129899,0.128906777,992.965637,3008656476 +0,180,179,128,4.36295033,0.129294335,989.989237,3008656476 +0,181,180,128,3.76251793,0.129734085,986.633544,3008656476 +0,182,181,128,3.76198149,0.129613323,987.5528,3008656476 +0,183,182,128,4.46892929,0.144021172,888.758217,3008656476 +0,184,183,128,2.83481646,0.143662841,890.975002,3008656476 +0,185,184,128,3.04275131,0.12960822,987.591682,3008656476 +0,186,185,128,4.01676083,0.130047695,984.254277,3008656476 +0,187,186,128,3.37433767,0.129544557,988.077021,3008656476 +0,188,187,128,3.04257703,0.130853371,978.194135,3008656476 +0,189,188,128,3.89484215,0.130125905,983.662707,3008656476 +0,190,189,128,3.69280052,0.129835889,985.859927,3008656476 +0,191,190,128,3.68927789,0.142657844,897.251749,3008656476 +0,192,191,128,3.1505475,0.141162579,906.75589,3008656476 +0,193,192,128,2.96355557,0.128976968,992.425252,3008656476 +0,194,193,128,3.76940441,0.129144376,991.138786,3008656476 +0,195,194,128,3.45545673,0.129077753,991.650358,3008656476 +0,196,195,128,4.36990118,0.129017221,992.115618,3008656476 +0,197,196,128,3.85266757,0.129717425,986.76026,3008656476 +0,198,197,128,3.58606887,0.128249907,998.051406,3008656476 +0,199,198,128,3.61634493,0.142419672,898.752245,3008656476 +0,200,199,128,4.34068775,0.144753465,884.26208,3008656476 +0,201,200,128,4.08237219,0.131886366,970.532466,3008656476 +0,202,201,128,3.61539316,0.132183258,968.352588,3008656476 +0,203,202,128,4.52739048,0.132358562,967.070041,3008656476 +0,204,203,128,4.15386057,0.131451271,973.744864,3008656476 +0,205,204,128,3.42233276,0.131702084,971.890468,3008656476 +0,206,205,128,3.97012663,0.132400813,966.761435,3008656476 +0,207,206,128,3.10253,0.146064389,876.325851,3008656476 +0,208,207,128,3.39582658,0.140452568,911.339692,3008656476 +0,209,208,128,3.29585767,0.139413486,918.132124,3008656476 +0,210,209,128,3.22269082,0.132584639,965.421039,3008656476 +0,211,210,128,3.00717282,0.139190998,919.5997,3008656476 +0,212,211,128,3.82654166,0.134257507,953.391753,3008656476 +0,213,212,128,3.81363297,0.132426381,966.574779,3008656476 +0,214,213,128,3.45482588,0.133866443,956.176896,3008656476 +0,215,214,128,2.70026159,0.16402449,780.371273,3008656476 +0,216,215,128,2.87700534,0.131259685,975.166137,3008656476 +0,217,216,128,4.21993494,0.13286513,963.382943,3008656476 +0,218,217,128,3.48943567,0.132164794,968.487871,3008656476 +0,219,218,128,3.24935079,0.13091122,977.761876,3008656476 +0,220,219,128,3.9771874,0.131300612,974.862174,3008656476 +0,221,220,128,3.11714363,0.130637791,979.808362,3008656476 +0,222,221,128,3.03405786,0.142882249,895.842562,3008656476 +0,223,222,128,3.50176668,0.13961008,916.839243,3008656476 +0,224,223,128,3.00611758,0.132085319,969.070605,3008656476 +0,225,224,128,3.47338319,0.132851326,963.483044,3008656476 +0,226,225,128,3.30639958,0.130788256,978.681144,3008656476 +0,227,226,128,3.43291354,0.192904893,663.539416,3008656476 +0,228,227,128,3.91056395,0.12845631,996.447742,3008656476 +0,229,228,128,3.65272069,0.129433513,988.924715,3008656476 +0,230,229,128,3.56078911,0.143235743,893.631696,3008656476 +0,231,230,128,3.91366887,0.133855071,956.258131,3008656476 +0,232,231,128,4.00786114,0.128545022,995.760069,3008656476 +0,233,232,128,3.65784764,0.127670555,1002.58043,3008656476 +0,234,233,128,3.91374636,0.127984218,1000.12331,3008656476 +0,235,234,128,3.87880421,0.129701973,986.877817,3008656476 +0,236,235,128,3.13354206,0.128234581,998.170688,3008656476 +0,237,236,128,3.95838547,0.128925956,992.817924,3008656476 +0,238,237,128,3.1879456,0.141396438,905.256185,3008656476 +0,239,238,128,3.64021301,0.139049794,920.533546,3008656476 +0,240,239,128,4.03126717,0.12876435,994.063963,3008656476 +0,241,240,128,3.76650476,0.127991122,1000.06936,3008656476 +0,242,241,128,3.52732873,0.128237839,998.145329,3008656476 +0,243,242,128,3.57894039,0.129694431,986.935206,3008656476 +0,244,243,128,3.95153904,0.128884924,993.133999,3008656476 +0,245,244,128,4.09765196,0.13020073,983.097407,3008656476 +0,246,245,128,3.27317977,0.141948337,901.736524,3008656476 +0,247,246,128,3.82526016,0.138291332,925.582234,3008656476 +0,248,247,128,3.82216096,0.129325695,989.749176,3008656476 +0,249,248,128,3.91610694,0.128761608,994.085131,3008656476 +0,250,249,128,2.33504534,0.130232082,982.860736,3008656476 +0,251,250,128,3.28427458,0.130247757,982.742451,3008656476 +0,252,251,128,4.10932636,0.130553055,980.444311,3008656476 +0,253,252,128,3.8471086,0.129841329,985.818622,3008656476 +0,254,253,128,3.65380836,0.149501275,856.179989,3008656476 +0,255,254,128,3.9106791,0.132206768,968.180388,3008656476 +0,256,255,128,3.7568953,0.130039175,984.318764,3008656476 +0,257,256,128,3.18049383,0.129667454,987.140536,3008656476 +0,258,257,128,3.78724909,0.130272906,982.552734,3008656476 +0,259,258,128,3.29893351,0.130309868,982.274036,3008656476 +0,260,259,128,3.85565591,0.130390182,981.669003,3008656476 +0,261,260,128,4.02433348,0.130059759,984.16298,3008656476 +0,262,261,128,3.52789664,0.146845349,871.665333,3008656476 +0,263,262,128,3.8982172,0.133443673,959.206211,3008656476 +0,264,263,128,2.89009166,0.1292526,990.308899,3008656476 +0,265,264,128,3.47224784,0.129151736,991.082303,3008656476 +0,266,265,128,3.24002028,0.128963523,992.528717,3008656476 +0,267,266,128,3.42084193,0.128865784,993.281506,3008656476 +0,268,267,128,2.60860753,0.129056912,991.810497,3008656476 +0,269,268,128,2.71698833,0.129303124,989.921945,3008656476 +0,270,269,128,3.47323322,0.142633711,897.40356,3008656476 +0,271,270,128,4.05154657,0.136213857,939.698815,3008656476 +0,272,271,128,2.85932016,0.130120964,983.700059,3008656476 +0,273,272,128,3.3444488,0.129958663,984.928569,3008656476 +0,274,273,128,4.02290678,0.129113128,991.378661,3008656476 +0,275,274,128,3.30884981,0.129324978,989.754663,3008656476 +0,276,275,128,3.61740041,0.129203874,990.682369,3008656476 +0,277,276,128,3.73798323,0.130024238,984.431841,3008656476 +0,278,277,128,4.43177128,0.144732427,884.390614,3008656476 +0,279,278,128,3.19269848,0.136339832,938.830554,3008656476 +0,280,279,128,3.46642518,0.130000695,984.610121,3008656476 +0,281,280,128,3.36883044,0.1298415,985.817323,3008656476 +0,282,281,128,3.35443926,0.130415306,981.479889,3008656476 +0,283,282,128,2.76423764,0.130101248,983.849133,3008656476 +0,284,283,128,2.88377571,0.130361128,981.887791,3008656476 +0,285,284,128,2.67355013,0.131184408,975.725713,3008656476 +0,286,285,128,2.7228303,0.144454952,886.089388,3008656476 +0,287,286,128,3.24615979,0.133140067,961.393538,3008656476 +0,288,287,128,2.95472693,0.130352016,981.956428,3008656476 +0,289,288,128,2.75398302,0.130195318,983.138272,3008656476 +0,290,289,128,3.85060954,0.130460696,981.138411,3008656476 +0,291,290,128,3.12669492,0.130637132,979.813305,3008656476 +0,292,291,128,3.94855928,0.131329309,974.649155,3008656476 +0,293,292,128,3.61754203,0.132227574,968.028045,3008656476 +0,294,293,128,3.0762217,0.156271221,819.088756,3008656476 +0,295,294,128,3.08807135,0.128347461,997.29281,3008656476 +0,296,295,128,3.46068549,0.131904892,970.396155,3008656476 +0,297,296,128,4.07434845,0.13107901,976.510274,3008656476 +0,298,297,128,3.4960649,0.132267932,967.732678,3008656476 +0,299,298,128,3.53017807,0.131777574,971.333711,3008656476 +0,300,299,128,3.73047805,0.132133857,968.714627,3008656476 +0,301,300,128,3.10438442,0.132909424,963.061882,3008656476 +0,302,301,128,3.59128308,0.159373212,803.146265,3008656476 +0,303,302,128,3.37503481,0.139565773,917.130305,3008656476 +0,304,303,128,3.78442359,0.134253339,953.421352,3008656476 +0,305,304,128,3.29906034,0.132739894,964.291865,3008656476 +0,306,305,128,3.4049933,0.13331101,960.160755,3008656476 +0,307,306,128,3.13546634,0.131777099,971.337212,3008656476 +0,308,307,128,2.73569632,0.131756562,971.488615,3008656476 +0,309,308,128,4.29158163,0.147200262,869.56367,3008656476 +0,310,309,128,4.03535891,0.145879118,877.438812,3008656476 +0,311,310,128,3.23803663,0.131161888,975.893241,3008656476 +0,312,311,128,3.00740671,0.132796548,963.880477,3008656476 +0,313,312,128,3.16900086,0.12985681,985.701096,3008656476 +0,314,313,128,3.25145507,0.13043899,981.30168,3008656476 +0,315,314,128,2.63307214,0.130965849,977.354028,3008656476 +0,316,315,128,3.4100256,0.129883412,985.499211,3008656476 +0,317,316,128,3.6986742,0.144310553,886.97602,3008656476 +0,318,317,128,3.20452929,0.142391357,898.930965,3008656476 +0,319,318,128,3.54034305,0.130497004,980.86543,3008656476 +0,320,319,128,3.9410181,0.12865643,994.897807,3008656476 +0,321,320,128,4.28937721,0.128836216,993.509465,3008656476 +0,322,321,128,3.67176437,0.128801437,993.777732,3008656476 +0,323,322,128,3.53109813,0.128595833,995.366623,3008656476 +0,324,323,128,3.67170477,0.129649502,987.277221,3008656476 +0,325,324,128,2.74833202,0.14687895,871.465925,3008656476 +0,326,325,128,4.07277727,0.144169032,887.846705,3008656476 +0,327,326,128,3.81245565,0.129536078,988.141697,3008656476 +0,328,327,128,3.95330381,0.129141934,991.157527,3008656476 +0,329,328,128,3.95095277,0.130491504,980.906772,3008656476 +0,330,329,128,3.72124124,0.130185485,983.212529,3008656476 +0,331,330,128,4.64163923,0.129822989,985.957888,3008656476 +0,332,331,128,3.93110585,0.129643031,987.3265,3008656476 +0,333,332,128,3.50486064,0.145439407,880.091597,3008656476 +0,334,333,128,4.11562395,0.146256923,875.172247,3008656476 +0,335,334,128,3.65945315,0.13046319,981.119655,3008656476 +0,336,335,128,4.08340931,0.128710913,994.476669,3008656476 +0,337,336,128,3.86638784,0.128608954,995.265073,3008656476 +0,338,337,128,4.14834976,0.129487081,988.515603,3008656476 +0,339,338,128,3.66879773,0.129478644,988.580016,3008656476 +0,340,339,128,3.72607946,0.129320332,989.790221,3008656476 +0,341,340,128,3.39133954,0.141899584,902.046337,3008656476 +0,342,341,128,3.38357282,0.145308191,880.886336,3008656476 +0,343,342,128,3.93854284,0.130411957,981.505093,3008656476 +0,344,343,128,3.34521055,0.130680415,979.488778,3008656476 +0,345,344,128,4.11621952,0.132070628,969.178401,3008656476 +0,346,345,128,3.02477264,0.132490433,966.107492,3008656476 +0,347,346,128,3.35259676,0.132221914,968.069484,3008656476 +0,348,347,128,4.56785297,0.131459379,973.684806,3008656476 +0,349,348,128,3.87496161,0.157003424,815.268844,3008656476 +0,350,349,128,4.11459255,0.127802893,1001.54227,3008656476 +0,351,350,128,4.05692339,0.133713578,957.270024,3008656476 +0,352,351,128,3.88050771,0.134309625,953.021796,3008656476 +0,353,352,128,4.82293606,0.144675303,884.739809,3008656476 +0,354,353,128,4.17508602,0.144234523,887.44357,3008656476 +0,355,354,128,3.28692746,0.139945242,914.643457,3008656476 +0,356,355,128,3.68505812,0.15639261,818.452995,3008656476 +0,357,356,128,3.95996809,0.145540492,879.48033,3008656476 +0,358,357,128,3.4653399,0.132581915,965.440875,3008656476 +0,359,358,128,2.42923641,0.132173289,968.425625,3008656476 +0,360,359,128,3.33798862,0.131902404,970.414459,3008656476 +0,361,360,128,3.28188801,0.132634207,965.060243,3008656476 +0,362,361,128,3.11077952,0.131362589,974.402233,3008656476 +0,363,362,128,3.26621509,0.131184925,975.721867,3008656476 +0,364,363,128,3.61594748,0.145299608,880.938371,3008656476 +0,365,364,128,3.82281208,0.144685605,884.676814,3008656476 +0,366,365,128,3.92092204,0.13137752,974.291492,3008656476 +0,367,366,128,3.78564811,0.131300011,974.866636,3008656476 +0,368,367,128,3.95006633,0.130063181,984.137086,3008656476 +0,369,368,128,3.13788939,0.129707867,986.832973,3008656476 +0,370,369,128,3.66703415,0.129594003,987.700025,3008656476 +0,371,370,128,3.55177212,0.130000793,984.609378,3008656476 +0,372,371,128,3.17564988,0.139941954,914.664947,3008656476 +0,373,372,128,3.59315848,0.141401484,905.22388,3008656476 +0,374,373,128,4.20522833,0.12918549,990.82335,3008656476 +0,375,374,128,3.87413478,0.128714575,994.448375,3008656476 +0,376,375,128,3.30566931,0.129423893,988.998222,3008656476 +0,377,376,128,4.29436064,0.129156582,991.045118,3008656476 +0,378,377,128,2.99828506,0.129608644,987.588451,3008656476 +0,379,378,128,3.6594131,0.129692513,986.949802,3008656476 +0,380,379,128,2.48977566,0.14450652,885.773182,3008656476 +0,381,380,128,3.22485781,0.141952527,901.709908,3008656476 +0,382,381,128,2.99087477,0.129377496,989.352893,3008656476 +0,383,382,128,2.57791638,0.130252198,982.708944,3008656476 +0,384,383,128,2.99297547,0.129879373,985.529858,3008656476 +0,385,384,128,4.49327278,0.130553747,980.439114,3008656476 +0,386,385,128,4.77550697,0.129412849,989.082622,3008656476 +0,387,386,128,3.38890243,0.129332043,989.700596,3008656476 +0,388,387,128,2.92324519,0.144439868,886.181923,3008656476 +0,389,388,128,3.71489787,0.139484451,917.665009,3008656476 +0,390,389,128,4.49982166,0.129658416,987.209346,3008656476 +0,391,390,128,3.90275264,0.129245419,990.363922,3008656476 +0,392,391,128,4.01108074,0.130744826,979.006236,3008656476 +0,393,392,128,2.92303562,0.130333539,982.095637,3008656476 +0,394,393,128,4.02818012,0.129839793,985.830284,3008656476 +0,395,394,128,3.44931841,0.129866545,985.627207,3008656476 +0,396,395,128,3.91139531,0.146693652,872.566728,3008656476 +0,397,396,128,3.49876213,0.133489472,958.877117,3008656476 +0,398,397,128,4.32982111,0.129514586,988.305672,3008656476 +0,399,398,128,3.74335599,0.129284808,990.062189,3008656476 +0,400,399,128,4.23397493,0.129996531,984.641659,3008656476 +0,401,400,128,3.82774758,0.129593851,987.701183,3008656476 +0,402,401,128,3.92493796,0.129234591,990.4469,3008656476 +0,403,402,128,3.56171703,0.129799602,986.135535,3008656476 +0,404,403,128,3.35733414,0.147332693,868.782056,3008656476 +0,405,404,128,3.51789641,0.133955006,955.54473,3008656476 +0,406,405,128,3.19654894,0.12972746,986.68393,3008656476 +0,407,406,128,3.3829248,0.129468499,988.65748,3008656476 +0,408,407,128,2.16584682,0.130112286,983.765668,3008656476 +0,409,408,128,3.01114917,0.130292926,982.401761,3008656476 +0,410,409,128,4.09512568,0.130146546,983.5067,3008656476 +0,411,410,128,2.56687427,0.13066107,979.633796,3008656476 +0,412,411,128,3.85211945,0.145905003,877.283146,3008656476 +0,413,412,128,2.8611865,0.133341351,959.942276,3008656476 +0,414,413,128,3.00361466,0.129641446,987.338571,3008656476 +0,415,414,128,2.95406246,0.130017519,984.482714,3008656476 +0,416,415,128,4.01661396,0.130867589,978.087859,3008656476 +0,417,416,128,3.46231747,0.130578586,980.252612,3008656476 +0,418,417,128,2.71320009,0.131519236,973.241663,3008656476 +0,419,418,128,3.20049405,0.131223646,975.433955,3008656476 +0,420,419,128,2.38526034,0.157078807,814.877592,3008656476 +0,421,420,128,1.936903,0.125215209,1022.24004,3008656476 +0,422,421,128,3.86036921,0.130496543,980.868896,3008656476 +0,423,422,128,2.95218825,0.130582251,980.2251,3008656476 +0,424,423,128,3.50556183,0.131553651,972.987059,3008656476 +0,425,424,128,4.11267376,0.130425157,981.405757,3008656476 +0,426,425,128,4.51335239,0.131428481,973.913714,3008656476 +0,427,426,128,5.00653124,0.132013117,969.600619,3008656476 +0,428,427,128,3.53239179,0.161940569,790.413426,3008656476 +0,429,428,128,2.28611565,0.133837959,956.380394,3008656476 +0,430,429,128,2.43527317,0.133660135,957.652781,3008656476 +0,431,430,128,2.55786943,0.133179426,961.109413,3008656476 +0,432,431,128,2.52611923,0.132824761,963.675741,3008656476 +0,433,432,128,2.91293621,0.139582548,917.020085,3008656476 +0,434,433,128,2.61322641,0.143870478,889.689127,3008656476 +0,435,434,128,3.56362033,0.147218481,869.456057,3008656476 +0,436,435,128,4.11130762,0.144919158,883.251061,3008656476 +0,437,436,128,4.44921684,0.13232831,967.291126,3008656476 +0,438,437,128,2.93176436,0.131770779,971.3838,3008656476 +0,439,438,128,2.66413593,0.132091196,969.027489,3008656476 +0,440,439,128,3.75644135,0.131566616,972.891178,3008656476 +0,441,440,128,3.45520926,0.13242906,966.555226,3008656476 +0,442,441,128,3.00284648,0.130954176,977.441147,3008656476 +0,443,442,128,3.05364704,0.146047251,876.428684,3008656476 +0,444,443,128,3.22311115,0.145004491,882.73128,3008656476 +0,445,444,128,3.05590653,0.131320507,974.714482,3008656476 +0,446,445,128,3.1051898,0.129596097,987.684066,3008656476 +0,447,446,128,3.23212862,0.130489527,980.921634,3008656476 +0,448,447,128,4.04310369,0.129090429,991.552983,3008656476 +0,449,448,128,3.68212414,0.129186544,990.815266,3008656476 +0,450,449,128,3.87898827,0.129038782,991.949847,3008656476 +0,451,450,128,3.45484376,0.142111999,900.698047,3008656476 +0,452,451,128,4.25239038,0.142913173,895.648717,3008656476 +0,453,452,128,3.83177423,0.128499475,996.113019,3008656476 +0,454,453,128,3.29269266,0.128970115,992.477986,3008656476 +0,455,454,128,3.85828304,0.128634088,995.070607,3008656476 +0,456,455,128,4.17423391,0.129185557,990.822836,3008656476 +0,457,456,128,3.9504571,0.128579635,995.492016,3008656476 +0,458,457,128,4.27508068,0.128916032,992.894352,3008656476 +0,459,458,128,3.80015945,0.143585269,891.456351,3008656476 +0,460,459,128,2.92455602,0.143908603,889.453426,3008656476 +0,461,460,128,3.93502855,0.129156761,991.043744,3008656476 +0,462,461,128,4.02029514,0.129700214,986.891201,3008656476 +0,463,462,128,3.78878856,0.129624311,987.469087,3008656476 +0,464,463,128,3.06333137,0.128577056,995.511983,3008656476 +0,465,464,128,3.02967215,0.128890588,993.090357,3008656476 +0,466,465,128,3.1630621,0.129758929,986.44464,3008656476 +0,467,466,128,3.04144359,0.145057119,882.411018,3008656476 +0,468,467,128,3.23646784,0.139147505,919.887137,3008656476 +0,469,468,128,4.39302063,0.129326985,989.739303,3008656476 +0,470,469,128,4.11334324,0.129542729,988.090964,3008656476 +0,471,470,128,4.05813742,0.129595345,987.689797,3008656476 +0,472,471,128,3.04970884,0.129263117,990.228326,3008656476 +0,473,472,128,4.40882206,0.130980625,977.243772,3008656476 +0,474,473,128,3.97588992,0.12951239,988.32243,3008656476 +0,475,474,128,3.47505784,0.143304091,893.205484,3008656476 +0,476,475,128,2.6726923,0.137575329,930.399374,3008656476 +0,477,476,128,3.58145642,0.130628857,979.875373,3008656476 +0,478,477,128,3.43726897,0.130358847,981.904972,3008656476 +0,479,478,128,3.90181375,0.130237037,982.823342,3008656476 +0,480,479,128,4.27228117,0.12893948,992.713791,3008656476 +0,481,480,128,3.73927712,0.129018403,992.106529,3008656476 +0,482,481,128,3.19846845,0.129231424,990.471172,3008656476 +0,483,482,128,3.0692811,0.146854044,871.613723,3008656476 +0,484,483,128,3.82152319,0.133420149,959.375334,3008656476 +0,485,484,128,3.93730998,0.129895553,985.407099,3008656476 +0,486,485,128,3.32090425,0.129536833,988.135938,3008656476 +0,487,486,128,2.7384007,0.128822004,993.619071,3008656476 +0,488,487,128,3.60553074,0.129168943,990.950278,3008656476 +0,489,488,128,3.16856861,0.129795412,986.167369,3008656476 +0,490,489,128,4.29438543,0.12996679,984.86698,3008656476 +0,491,490,128,4.40231323,0.146826087,871.779686,3008656476 +0,492,491,128,4.24984264,0.132644381,964.986221,3008656476 +0,493,492,128,3.83556414,0.129311469,989.858061,3008656476 +0,494,493,128,4.15935946,0.130327358,982.142215,3008656476 +0,495,494,128,4.03069878,0.129909303,985.3028,3008656476 +0,496,495,128,3.90153503,0.130506649,980.79294,3008656476 +0,497,496,128,4.11186075,0.130728093,979.131547,3008656476 +0,498,497,128,4.4554553,0.131589367,972.722971,3008656476 +0,499,498,128,4.35254431,0.148136306,864.069069,3008656476 +0,500,499,128,3.69866157,0.128234602,998.170525,3008656476 +0,501,500,128,4.33278656,0.1291328,991.227635,3008656476 +0,502,501,128,4.46839523,0.130464602,981.109037,3008656476 +0,503,502,128,3.46919537,0.130830701,978.363633,3008656476 +0,504,503,128,4.01768398,0.131031764,976.862374,3008656476 +0,505,504,128,4.16894341,0.131517456,973.254835,3008656476 +0,506,505,128,4.17860126,0.13125878,975.172861,3008656476 +0,507,506,128,4.37882662,0.157493946,812.729652,3008656476 +0,508,507,128,3.40744877,0.126503444,1011.83016,3008656476 +0,509,508,128,4.05792618,0.129819588,985.983718,3008656476 +0,510,509,128,4.05393028,0.131591147,972.709813,3008656476 +0,511,510,128,4.13906574,0.131491954,973.443592,3008656476 +0,512,511,128,4.02027941,0.133617803,957.956179,3008656476 +0,513,512,128,4.12407303,0.132187498,968.321528,3008656476 +0,514,513,128,4.21892118,0.132263999,967.761454,3008656476 +0,515,514,128,3.8325069,0.157286933,813.799326,3008656476 +0,516,515,128,4.18080378,0.139721769,916.106351,3008656476 +0,517,516,128,3.59702802,0.141306747,905.830774,3008656476 +0,518,517,128,4.11908627,0.135141005,947.158858,3008656476 +0,519,518,128,4.36226368,0.132298336,967.510279,3008656476 +0,520,519,128,4.09498549,0.131985442,969.803927,3008656476 +0,521,520,128,3.65618372,0.132544588,965.712761,3008656476 +0,522,521,128,3.70001078,0.147611125,867.143313,3008656476 +0,523,522,128,3.41500449,0.146036883,876.490907,3008656476 +0,524,523,128,3.9407196,0.131714961,971.795452,3008656476 +0,525,524,128,3.25380039,0.133005642,962.36519,3008656476 +0,526,525,128,3.53708363,0.131157906,975.92287,3008656476 +0,527,526,128,4.27180481,0.131402609,974.105468,3008656476 +0,528,527,128,3.7724793,0.131654135,972.244434,3008656476 +0,529,528,128,4.24266529,0.132049936,969.330269,3008656476 +0,530,529,128,3.46971321,0.144492603,885.858496,3008656476 +0,531,530,128,3.4938736,0.145629006,878.945778,3008656476 +0,532,531,128,4.05756044,0.132528762,965.828082,3008656476 +0,533,532,128,4.62009192,0.130000131,984.614392,3008656476 +0,534,533,128,4.19214773,0.129338753,989.649251,3008656476 +0,535,534,128,4.03578711,0.12971437,986.7835,3008656476 +0,536,535,128,4.12656069,0.128568803,995.575886,3008656476 +0,537,536,128,3.80280995,0.129353211,989.538636,3008656476 +0,538,537,128,4.21330023,0.141971153,901.591607,3008656476 +0,539,538,128,2.92255664,0.140167836,913.190955,3008656476 +0,540,539,128,3.46439314,0.128556623,995.670211,3008656476 +0,541,540,128,3.61382174,0.128445263,996.533442,3008656476 +0,542,541,128,4.03806162,0.129559608,987.962236,3008656476 +0,543,542,128,3.60828733,0.129468427,988.65803,3008656476 +0,544,543,128,4.3173089,0.129693486,986.942397,3008656476 +0,545,544,128,3.18728471,0.128711672,994.470804,3008656476 +0,546,545,128,2.76960063,0.142711408,896.914982,3008656476 +0,547,546,128,3.4261179,0.141738655,903.070514,3008656476 +0,548,547,128,4.04203987,0.130085809,983.965899,3008656476 +0,549,548,128,4.28164816,0.129271555,990.163691,3008656476 +0,550,549,128,4.10969543,0.130157638,983.422886,3008656476 +0,551,550,128,3.41096592,0.129540551,988.107577,3008656476 +0,552,551,128,3.12636089,0.130088679,983.944191,3008656476 +0,553,552,128,3.63583064,0.129220745,990.553026,3008656476 +0,554,553,128,4.05281353,0.142678556,897.121499,3008656476 +0,555,554,128,4.58454227,0.139835111,915.36381,3008656476 +0,556,555,128,4.22734833,0.130559482,980.396047,3008656476 +0,557,556,128,3.45478296,0.129523339,988.238884,3008656476 +0,558,557,128,3.52956462,0.129978378,984.779176,3008656476 +0,559,558,128,4.73790884,0.129339273,989.645272,3008656476 +0,560,559,128,4.70779085,0.128989816,992.326402,3008656476 +0,561,560,128,4.55995512,0.12945771,988.739875,3008656476 +0,562,561,128,4.1023488,0.145094053,882.186398,3008656476 +0,563,562,128,4.30874157,0.135527352,944.458798,3008656476 +0,564,563,128,4.4952898,0.130012649,984.519591,3008656476 +0,565,564,128,4.10166025,0.129091937,991.5414,3008656476 +0,566,565,128,3.48911238,0.129265007,990.213848,3008656476 +0,567,566,128,2.74682689,0.1293038,989.91677,3008656476 +0,568,567,128,4.17775249,0.129110627,991.397865,3008656476 +0,569,568,128,4.03418303,0.129574259,987.850527,3008656476 +0,570,569,128,4.18155575,0.148043552,864.610436,3008656476 +0,571,570,128,4.59674788,0.135718318,943.129873,3008656476 +0,572,571,128,3.26723838,0.130231636,982.864102,3008656476 +0,573,572,128,3.1963706,0.130352332,981.954047,3008656476 +0,574,573,128,4.16861105,0.13048509,980.954989,3008656476 +0,575,574,128,3.84480143,0.130680831,979.48566,3008656476 +0,576,575,128,3.68100476,0.131191351,975.674075,3008656476 +0,577,576,128,3.37159729,0.131930451,970.208159,3008656476 +0,578,577,128,4.40195847,0.158330381,808.436127,3008656476 +0,579,578,128,3.55865169,0.123294593,1038.16394,3008656476 +0,580,579,128,3.78070354,0.13046529,981.103863,3008656476 +0,581,580,128,3.47523928,0.129805149,986.093394,3008656476 +0,582,581,128,3.77461648,0.13112832,976.143064,3008656476 +0,583,582,128,3.99167323,0.131348022,974.510298,3008656476 +0,584,583,128,3.75585151,0.133147943,961.336669,3008656476 +0,585,584,128,3.72943306,0.134059876,954.797243,3008656476 +0,586,585,128,3.32828355,0.157007376,815.248323,3008656476 +0,587,586,128,4.7329998,0.132815123,963.745672,3008656476 +0,588,587,128,4.06596279,0.138899931,921.526736,3008656476 +0,589,588,128,3.68033457,0.143931826,889.309915,3008656476 +0,590,589,128,4.53559256,0.144109616,888.212762,3008656476 +0,591,590,128,4.09345198,0.134727035,950.069153,3008656476 +0,592,591,128,3.89654899,0.133956444,955.534472,3008656476 +0,593,592,128,3.80973029,0.146932958,871.145601,3008656476 +0,594,593,128,3.62881446,0.14737321,868.543204,3008656476 +0,595,594,128,3.4163487,0.144649141,884.899828,3008656476 +0,596,595,128,3.49642777,0.133788059,956.737103,3008656476 +0,597,596,128,3.66953444,0.1325389,965.754205,3008656476 +0,598,597,128,3.54866791,0.132019319,969.555069,3008656476 +0,599,598,128,3.42142105,0.133486537,958.8982,3008656476 +0,600,599,128,4.06346178,0.131967366,969.936765,3008656476 +0,601,600,128,3.87922263,0.146794168,871.969246,3008656476 +0,602,601,128,3.53241038,0.138646687,923.209943,3008656476 +0,603,602,128,4.12742853,0.131723893,971.729556,3008656476 +0,604,603,128,3.03282881,0.133151342,961.312129,3008656476 +0,605,604,128,4.09767962,0.132439468,966.479267,3008656476 +0,606,605,128,3.01181698,0.131669968,972.127524,3008656476 +0,607,606,128,3.06057358,0.131437729,973.845189,3008656476 +0,608,607,128,2.84832716,0.131772165,971.373583,3008656476 +0,609,608,128,3.76656914,0.1505231,850.367817,3008656476 +0,610,609,128,3.2540586,0.126293161,1013.5149,3008656476 +0,611,610,128,3.22859311,0.130880353,977.992472,3008656476 +0,612,611,128,2.68558979,0.13240603,966.723343,3008656476 +0,613,612,128,3.34806538,0.131298772,974.875835,3008656476 +0,614,613,128,3.95311189,0.132537124,965.767146,3008656476 +0,615,614,128,4.01310301,0.13186925,970.658436,3008656476 +0,616,615,128,3.03832817,0.130330482,982.118673,3008656476 +0,617,616,128,3.85662937,0.145659946,878.759079,3008656476 +0,618,617,128,3.93406081,0.13040669,981.544735,3008656476 +0,619,618,128,3.28899169,0.131028396,976.887483,3008656476 +0,620,619,128,3.44327021,0.128733844,994.299525,3008656476 +0,621,620,128,3.43911123,0.130256833,982.673976,3008656476 +0,622,621,128,3.29794455,0.129097885,991.495717,3008656476 +0,623,622,128,4.04774094,0.129387733,989.274617,3008656476 +0,624,623,128,4.21252203,0.129583355,987.781185,3008656476 +0,625,624,128,3.98534274,0.147207269,869.522279,3008656476 +0,626,625,128,4.10840797,0.126289296,1013.54591,3008656476 +0,627,626,128,4.01562977,0.131950667,970.059515,3008656476 +0,628,627,128,2.98816824,0.130798779,978.602407,3008656476 +0,629,628,128,3.83645558,0.130752705,978.947242,3008656476 +0,630,629,128,4.4041419,0.129627179,987.447239,3008656476 +0,631,630,128,4.23867416,0.130740138,979.041341,3008656476 +0,632,631,128,3.44157171,0.129804716,986.096684,3008656476 +0,633,632,128,4.80748653,0.148869506,859.813426,3008656476 +0,634,633,128,4.08997154,0.126820942,1009.29703,3008656476 +0,635,634,128,4.19391441,0.130895609,977.878486,3008656476 +0,636,635,128,3.27188444,0.130743095,979.019198,3008656476 +0,637,636,128,3.52577376,0.129231856,990.467861,3008656476 +0,638,637,128,3.933707,0.130124833,983.670811,3008656476 +0,639,638,128,3.7947073,0.130097945,983.874111,3008656476 +0,640,639,128,4.57519436,0.129229315,990.487336,3008656476 +0,641,640,128,3.93033338,0.13997044,914.4788,3008656476 +0,642,641,128,4.2269845,0.13066099,979.634396,3008656476 +0,643,642,128,3.40180898,0.131429203,973.908363,3008656476 +0,644,643,128,3.89672375,0.131877078,970.60082,3008656476 +0,645,644,128,4.22774887,0.131018961,976.957831,3008656476 +0,646,645,128,4.69186211,0.13181836,971.03317,3008656476 +0,647,646,128,3.6897471,0.132859401,963.424485,3008656476 +0,648,647,128,3.74720645,0.14327795,893.368449,3008656476 +0,649,648,128,4.07037258,0.137738741,929.295557,3008656476 +0,650,649,128,3.68305564,0.125345695,1021.17588,3008656476 +0,651,650,128,3.21232772,0.131870045,970.652585,3008656476 +0,652,651,128,3.33438993,0.131130397,976.127602,3008656476 +0,653,652,128,2.80632114,0.132064005,969.227005,3008656476 +0,654,653,128,3.16028762,0.133630196,957.867337,3008656476 +0,655,654,128,4.33922815,0.130654476,979.683237,3008656476 +0,656,655,128,4.43791485,0.147553239,867.483499,3008656476 +0,657,656,128,4.07902575,0.143654678,891.02563,3008656476 +0,658,657,128,3.62256527,0.129134883,991.211647,3008656476 +0,659,658,128,3.77913737,0.128946353,992.660878,3008656476 +0,660,659,128,4.55343485,0.128593314,995.386121,3008656476 +0,661,660,128,3.93550801,0.128956033,992.586365,3008656476 +0,662,661,128,3.89948821,0.12992916,985.152217,3008656476 +0,663,662,128,3.78690863,0.129233506,990.455215,3008656476 +0,664,663,128,3.36292672,0.142906361,895.69141,3008656476 +0,665,664,128,3.12291574,0.144531951,885.617326,3008656476 +0,666,665,128,4.44667912,0.129107589,991.421194,3008656476 +0,667,666,128,4.16581488,0.130039991,984.312587,3008656476 +0,668,667,128,3.79751348,0.129919794,985.223237,3008656476 +0,669,668,128,3.12956619,0.129194659,990.753031,3008656476 +0,670,669,128,3.02861381,0.129787274,986.229205,3008656476 +0,671,670,128,3.49566746,0.129158098,991.033485,3008656476 +0,672,671,128,2.88602471,0.14107068,907.346587,3008656476 +0,673,672,128,3.44392085,0.143883331,889.609652,3008656476 +0,674,673,128,3.40939951,0.193710185,660.78095,3008656476 +0,675,674,128,4.24927807,0.129407396,989.1243,3008656476 +0,676,675,128,4.12704325,0.129450105,988.797962,3008656476 +0,677,676,128,3.87692809,0.128994284,992.292031,3008656476 +0,678,677,128,4.37044668,0.12924952,990.332498,3008656476 +0,679,678,128,3.82557893,0.130078313,984.022602,3008656476 +0,680,679,128,3.85733771,0.14760863,867.15797,3008656476 +0,681,680,128,3.94121432,0.145568315,879.312232,3008656476 +0,682,681,128,4.06599426,0.133646254,957.752246,3008656476 +0,683,682,128,3.64529824,0.133756718,956.96128,3008656476 +0,684,683,128,3.49807763,0.139757958,915.869134,3008656476 +0,685,684,128,3.48320389,0.143841455,889.86864,3008656476 +0,686,685,128,3.24686146,0.133165205,961.212052,3008656476 +0,687,686,128,3.50489879,0.143018894,894.986644,3008656476 +0,688,687,128,3.11484408,0.145700605,878.513854,3008656476 +0,689,688,128,4.04190397,0.139328413,918.692729,3008656476 +0,690,689,128,3.31258869,0.144281101,887.157078,3008656476 +0,691,690,128,3.66193795,0.144236094,887.433904,3008656476 +0,692,691,128,3.76588798,0.143988163,888.961963,3008656476 +0,693,692,128,3.85606289,0.133211844,960.875521,3008656476 +0,694,693,128,3.14865804,0.132915418,963.018451,3008656476 +0,695,694,128,3.988446,0.147455385,868.059176,3008656476 +0,696,695,128,3.8995893,0.142244951,899.856192,3008656476 +0,697,696,128,4.30927467,0.132136855,968.692648,3008656476 +0,698,697,128,4.08370733,0.135220888,946.599315,3008656476 +0,699,698,128,3.44448471,0.131961336,969.981086,3008656476 +0,700,699,128,3.34289932,0.132756395,964.172008,3008656476 +0,701,700,128,4.27303219,0.13102955,976.87888,3008656476 +0,702,701,128,3.5117538,0.142353663,899.168994,3008656476 +0,703,702,128,3.46787524,0.139619072,916.780195,3008656476 +0,704,703,128,2.81121683,0.124068569,1031.68757,3008656476 +0,705,704,128,3.82098842,0.131213067,975.512599,3008656476 +0,706,705,128,4.15723944,0.131562257,972.923412,3008656476 +0,707,706,128,3.76779175,0.131124314,976.172886,3008656476 +0,708,707,128,3.76860309,0.129924144,985.190251,3008656476 +0,709,708,128,3.11669827,0.129391837,989.24324,3008656476 +0,710,709,128,4.05110025,0.141230449,906.320138,3008656476 +0,711,710,128,2.69028449,0.134084785,954.61987,3008656476 +0,712,711,128,3.83219552,0.127203072,1006.26501,3008656476 +0,713,712,128,3.70801497,0.130758833,978.901364,3008656476 +0,714,713,128,3.90835667,0.131235455,975.346182,3008656476 +0,715,714,128,2.59372807,0.132803942,963.826812,3008656476 +0,716,715,128,2.15476131,0.130481482,980.982114,3008656476 +0,717,716,128,3.00845051,0.131788541,971.25288,3008656476 +0,718,717,128,3.81076288,0.141017232,907.690487,3008656476 +0,719,718,128,4.39017153,0.137498327,930.920418,3008656476 +0,720,719,128,4.32443762,0.12852374,995.924955,3008656476 +0,721,720,128,4.10978365,0.131096916,976.376897,3008656476 +0,722,721,128,4.11866045,0.130934752,977.586149,3008656476 +0,723,722,128,3.46234035,0.130903769,977.817529,3008656476 +0,724,723,128,4.3802495,0.12925127,990.319089,3008656476 +0,725,724,128,3.33397102,0.129823562,985.953536,3008656476 +0,726,725,128,3.72333765,0.13945672,917.847487,3008656476 +0,727,726,128,3.35223746,0.139029566,920.667479,3008656476 +0,728,727,128,3.81121659,0.12457568,1027.48787,3008656476 +0,729,728,128,3.51382804,0.13343241,959.287178,3008656476 +0,730,729,128,4.05098534,0.130986757,977.198023,3008656476 +0,731,730,128,3.74366832,0.130487136,980.939608,3008656476 +0,732,731,128,4.27310419,0.130691237,979.407671,3008656476 +0,733,732,128,3.72795439,0.129638925,987.357771,3008656476 +0,734,733,128,3.24029946,0.138187892,926.275075,3008656476 +0,735,734,128,2.36038661,0.134694826,950.296339,3008656476 +0,736,735,128,2.51466894,0.130093262,983.909528,3008656476 +0,737,736,128,2.48105478,0.131738234,971.623773,3008656476 +0,738,737,128,2.44941831,0.131540595,973.083632,3008656476 +0,739,738,128,2.6202476,0.131468185,973.619587,3008656476 +0,740,739,128,3.20745254,0.132275928,967.674179,3008656476 +0,741,740,128,2.94262838,0.132514703,965.93055,3008656476 +0,742,741,128,3.1883924,0.14651182,873.649648,3008656476 +0,743,742,128,3.3890121,0.143757556,890.387981,3008656476 +0,744,743,128,3.53537679,0.128931245,992.777197,3008656476 +0,745,744,128,3.28879452,0.128888301,993.107978,3008656476 +0,746,745,128,2.70836496,0.128386884,996.986577,3008656476 +0,747,746,128,2.57151055,0.129995581,984.648855,3008656476 +0,748,747,128,2.55095768,0.128963626,992.527924,3008656476 +0,749,748,128,3.47954726,0.12986505,985.638553,3008656476 +0,750,749,128,4.51211882,0.141381329,905.352927,3008656476 +0,751,750,128,2.93237567,0.143391969,892.658082,3008656476 +0,752,751,128,3.92262197,0.130226504,982.902835,3008656476 +0,753,752,128,2.9149437,0.130169957,983.329817,3008656476 +0,754,753,128,3.39610362,0.130560214,980.39055,3008656476 +0,755,754,128,3.53694367,0.130585725,980.199023,3008656476 +0,756,755,128,3.37131953,0.129791558,986.196652,3008656476 +0,757,756,128,4.00769567,0.13069948,979.345901,3008656476 +0,758,757,128,2.63365221,0.14321858,893.738787,3008656476 +0,759,758,128,3.33108139,0.143943575,889.237328,3008656476 +0,760,759,128,3.17747927,0.129010856,992.164566,3008656476 +0,761,760,128,3.59579349,0.11963063,1069.96009,3008656476 +0,762,761,128,4.26629162,0.128438629,996.584914,3008656476 +0,763,762,128,4.50934887,0.12971987,986.741661,3008656476 +0,764,763,128,4.0527401,0.128635093,995.062833,3008656476 +0,765,764,128,4.34807491,0.129056877,991.810766,3008656476 +0,766,765,128,4.32667208,0.144167187,887.858067,3008656476 +0,767,766,128,3.87557793,0.142200896,900.134975,3008656476 +0,768,767,128,4.41806221,0.128909427,992.945225,3008656476 +0,769,768,128,3.54490042,0.12947962,988.572565,3008656476 +0,770,769,128,3.66330862,0.12952484,988.227432,3008656476 +0,771,770,128,3.12199426,0.130336749,982.071449,3008656476 +0,772,771,128,4.31141043,0.130423556,981.417805,3008656476 +0,773,772,128,3.28042769,0.130716334,979.219628,3008656476 +0,774,773,128,3.77040792,0.145370344,880.509714,3008656476 +0,775,774,128,3.32854629,0.143731878,890.54705,3008656476 +0,776,775,128,3.81764984,0.13137484,974.311367,3008656476 +0,777,776,128,3.75994396,0.132860948,963.413267,3008656476 +0,778,777,128,3.98190594,0.131739373,971.615373,3008656476 +0,779,778,128,3.48514891,0.13199486,969.734731,3008656476 +0,780,779,128,3.72836804,0.133205523,960.921117,3008656476 +0,781,780,128,3.2664721,0.133052965,962.022906,3008656476 +0,782,781,128,3.32990289,0.146159761,875.754032,3008656476 +0,783,782,128,2.53180575,0.150195293,852.223778,3008656476 +0,784,783,128,2.45201516,0.133422489,959.358508,3008656476 +0,785,784,128,3.55666375,0.13181232,971.077666,3008656476 +0,786,785,128,3.73099232,0.132346619,967.15731,3008656476 +0,787,786,128,3.88198161,0.131634563,972.388992,3008656476 +0,788,787,128,4.42309999,0.132417584,966.638993,3008656476 +0,789,788,128,4.28796625,0.130592743,980.146347,3008656476 +0,790,789,128,4.28435183,0.140723562,909.584708,3008656476 +0,791,790,128,4.15482759,0.145656006,878.78285,3008656476 +0,792,791,128,4.56584167,0.131731978,971.669916,3008656476 +0,793,792,128,3.69073248,0.133083613,961.80136,3008656476 +0,794,793,128,4.03430414,0.132232156,967.994502,3008656476 +0,795,794,128,3.40587687,0.131485743,973.489574,3008656476 +0,796,795,128,3.4099977,0.131128503,976.141701,3008656476 +0,797,796,128,4.23708487,0.141832126,902.475367,3008656476 +0,798,797,128,3.74975085,0.129331628,989.703771,3008656476 +0,799,798,128,3.60735226,0.12822418,998.251656,3008656476 +0,800,799,128,3.4977634,0.130990299,977.1716,3008656476 +0,801,800,128,4.31671953,0.131083491,976.476893,3008656476 +0,802,801,128,3.85078859,0.130498028,980.857734,3008656476 +0,803,802,128,4.20095301,0.131860116,970.725674,3008656476 +0,804,803,128,3.57549095,0.131381174,974.264395,3008656476 +0,805,804,128,3.88522649,0.145859947,877.554138,3008656476 +0,806,805,128,4.95647097,0.140380516,911.807448,3008656476 +0,807,806,128,4.42715931,0.133222685,960.79733,3008656476 +0,808,807,128,4.28522396,0.12925961,990.255193,3008656476 +0,809,808,128,3.37312174,0.129207328,990.655886,3008656476 +0,810,809,128,3.66565776,0.128762056,994.081673,3008656476 +0,811,810,128,3.77502942,0.128489599,996.189583,3008656476 +0,812,811,128,3.89764166,0.129705311,986.85242,3008656476 +0,813,812,128,4.22044945,0.142614663,897.523419,3008656476 +0,814,813,128,3.8706615,0.143756067,890.397203,3008656476 +0,815,814,128,3.16844654,0.129846703,985.777821,3008656476 +0,816,815,128,3.59642076,0.130258987,982.657726,3008656476 +0,817,816,128,4.25243044,0.128790841,993.859493,3008656476 +0,818,817,128,4.07078648,0.130039658,984.315108,3008656476 +0,819,818,128,3.95524764,0.129316416,989.820194,3008656476 +0,820,819,128,3.65661192,0.129565631,987.916309,3008656476 +0,821,820,128,3.65174317,0.144044347,888.615226,3008656476 +0,822,821,128,3.6530304,0.145802662,877.898923,3008656476 +0,823,822,128,3.47467709,0.129973007,984.819871,3008656476 +0,824,823,128,4.63747454,0.130360132,981.895293,3008656476 +0,825,824,128,4.0186491,0.129688832,986.977815,3008656476 +0,826,825,128,3.6330111,0.129464405,988.688744,3008656476 +0,827,826,128,4.08897638,0.129957826,984.934913,3008656476 +0,828,827,128,4.02820253,0.129583114,987.783022,3008656476 +0,829,828,128,3.72806454,0.14171267,903.236104,3008656476 +0,830,829,128,3.8142817,0.143607024,891.321305,3008656476 +0,831,830,128,3.85605621,0.129531595,988.175896,3008656476 +0,832,831,128,2.84067941,0.129986463,984.717924,3008656476 +0,833,832,128,4.30561543,0.129119802,991.327419,3008656476 +0,834,833,128,4.68037605,0.129286294,990.050809,3008656476 +0,835,834,128,4.75932312,0.128018404,999.856239,3008656476 +0,836,835,128,4.25657177,0.128869549,993.252487,3008656476 +0,837,836,128,3.54549193,0.141672002,903.495385,3008656476 +0,838,837,128,4.23761415,0.141719871,903.19021,3008656476 +0,839,838,128,4.26118565,0.128768905,994.028799,3008656476 +0,840,839,128,3.87556791,0.130543546,980.515728,3008656476 +0,841,840,128,3.86672521,0.128790381,993.863043,3008656476 +0,842,841,128,3.769804,0.128615872,995.21154,3008656476 +0,843,842,128,3.19613051,0.129255239,990.28868,3008656476 +0,844,843,128,4.33345509,0.129643988,987.319211,3008656476 +0,845,844,128,3.35346603,0.144723663,884.44417,3008656476 +0,846,845,128,3.78251958,0.143003478,895.083125,3008656476 +0,847,846,128,3.45540261,0.130530401,980.61447,3008656476 +0,848,847,128,4.51952791,0.130400625,981.590387,3008656476 +0,849,848,128,3.61514401,0.130740839,979.036091,3008656476 +0,850,849,128,3.33529139,0.131560343,972.937567,3008656476 +0,851,850,128,3.05203581,0.131861731,970.713785,3008656476 +0,852,851,128,3.56136966,0.132726981,964.385681,3008656476 +0,853,852,128,2.72395754,0.146489302,873.783944,3008656476 +0,854,853,128,3.41104841,0.145362222,880.558912,3008656476 +0,855,854,128,4.61080265,0.131263391,975.138605,3008656476 +0,856,855,128,3.58057904,0.131700743,971.900364,3008656476 +0,857,856,128,4.47270823,0.132528521,965.829838,3008656476 +0,858,857,128,3.63441133,0.13192452,970.251777,3008656476 +0,859,858,128,3.81733632,0.133919169,955.800435,3008656476 +0,860,859,128,3.70320559,0.139014153,920.769556,3008656476 +0,861,860,128,3.85848618,0.158117032,809.526958,3008656476 +0,862,861,128,3.97213817,0.145494661,879.757368,3008656476 +0,863,862,128,3.46627855,0.131304613,974.832468,3008656476 +0,864,863,128,3.10055971,0.13215066,968.591455,3008656476 +0,865,864,128,3.71706772,0.13181805,971.035454,3008656476 +0,866,865,128,3.19257426,0.13205346,969.304401,3008656476 +0,867,866,128,3.53317833,0.131497511,973.402455,3008656476 +0,868,867,128,3.44956088,0.147352457,868.665529,3008656476 +0,869,868,128,3.87299657,0.141706276,903.27686,3008656476 +0,870,869,128,3.75056601,0.127807489,1001.50626,3008656476 +0,871,870,128,4.01951361,0.130237093,982.82292,3008656476 +0,872,871,128,3.17172742,0.129563286,987.93419,3008656476 +0,873,872,128,3.45684767,0.128650978,994.939969,3008656476 +0,874,873,128,2.97802854,0.12876779,994.037406,3008656476 +0,875,874,128,3.63295507,0.129641267,987.339934,3008656476 +0,876,875,128,3.0166893,0.1429204,895.603427,3008656476 +0,877,876,128,3.95463681,0.136387728,938.50086,3008656476 +0,878,877,128,2.87332106,0.125887074,1016.7843,3008656476 +0,879,878,128,3.09608197,0.130075424,984.044457,3008656476 +0,880,879,128,3.66511488,0.132628369,965.102722,3008656476 +0,881,880,128,4.40140295,0.129330304,989.713903,3008656476 +0,882,881,128,4.44782448,0.128913719,992.912166,3008656476 +0,883,882,128,5.19779444,0.128498868,996.117725,3008656476 +0,884,883,128,4.51687288,0.140601869,910.371967,3008656476 +0,885,884,128,3.37965131,0.129875884,985.556333,3008656476 +0,886,885,128,4.2851963,0.132630917,965.084182,3008656476 +0,887,886,128,3.87218285,0.129297991,989.961244,3008656476 +0,888,887,128,4.28903866,0.130723305,979.16741,3008656476 +0,889,888,128,3.45208812,0.129099167,991.485871,3008656476 +0,890,889,128,3.88969612,0.128803057,993.765233,3008656476 +0,891,890,128,3.04587913,0.128217206,998.305953,3008656476 +0,892,891,128,3.2593894,0.13549196,944.705501,3008656476 +0,893,892,128,4.1862464,0.127511156,1003.83374,3008656476 +0,894,893,128,4.30562544,0.142275038,899.665899,3008656476 +0,895,894,128,4.28452206,0.129821153,985.971832,3008656476 +0,896,895,128,4.02600479,0.129074614,991.674474,3008656476 +0,897,896,128,2.8402319,0.129378846,989.34257,3008656476 +0,898,897,128,3.66786456,0.128688108,994.652901,3008656476 +0,899,898,128,2.88161182,0.129482657,988.549378,3008656476 +0,900,899,128,3.76430988,0.137792585,928.932424,3008656476 +0,901,900,128,3.12838411,0.12469168,1026.532,3008656476 +0,902,901,128,2.87079239,0.142427261,898.704357,3008656476 +0,903,902,128,3.07359409,0.130582405,980.223944,3008656476 +0,904,903,128,3.53855824,0.129742415,986.570198,3008656476 +0,905,904,128,2.847754,0.129806849,986.08048,3008656476 +0,906,905,128,3.21166801,0.128975503,992.436525,3008656476 +0,907,906,128,4.07306385,0.129315699,989.825682,3008656476 +0,908,907,128,3.98095965,0.128861056,993.31795,3008656476 +0,909,908,128,3.82500172,0.133981921,955.352775,3008656476 +0,910,909,128,3.47457099,0.130517966,980.707897,3008656476 +0,911,910,128,3.65821385,0.130231653,982.863974,3008656476 +0,912,911,128,3.3782866,0.129101119,991.47088,3008656476 +0,913,912,128,4.39988947,0.128643534,994.997541,3008656476 +0,914,913,128,3.34853387,0.128892465,993.075895,3008656476 +0,915,914,128,4.40581131,0.128484216,996.231319,3008656476 +0,916,915,128,3.82726407,0.129263703,990.223837,3008656476 +0,917,916,128,3.50321341,0.132168008,968.46432,3008656476 +0,918,917,128,3.05187559,0.142335651,899.282781,3008656476 +0,919,918,128,3.54499912,0.128204133,998.40775,3008656476 +0,920,919,128,3.41587472,0.129407235,989.125531,3008656476 +0,921,920,128,3.48451376,0.128683609,994.687676,3008656476 +0,922,921,128,3.50394011,0.128482151,996.247331,3008656476 +0,923,922,128,3.85058379,0.128402666,996.864037,3008656476 +0,924,923,128,4.34293938,0.128413483,996.780066,3008656476 +0,925,924,128,3.11585402,0.134609795,950.896627,3008656476 +0,926,925,128,4.21536684,0.144213281,887.574287,3008656476 +0,927,926,128,3.2657764,0.128603396,995.308087,3008656476 +0,928,927,128,3.25947928,0.129785627,986.24172,3008656476 +0,929,928,128,3.98393559,0.128717287,994.427423,3008656476 +0,930,929,128,3.82568932,0.129266596,990.201676,3008656476 +0,931,930,128,2.83611894,0.129294705,989.986404,3008656476 +0,932,931,128,3.51550055,0.128815512,993.669148,3008656476 +0,933,932,128,3.18443179,0.135660649,943.530795,3008656476 +0,934,933,128,3.28629398,0.143768139,890.322438,3008656476 +0,935,934,128,3.44402742,0.129168232,990.955733,3008656476 +0,936,935,128,3.50184035,0.128836445,993.507699,3008656476 +0,937,936,128,3.32879519,0.129696017,986.923137,3008656476 +0,938,937,128,3.72927833,0.128601281,995.324456,3008656476 +0,939,938,128,3.83088136,0.129133568,991.22174,3008656476 +0,940,939,128,3.94352961,0.12922455,990.523859,3008656476 +0,941,940,128,3.56778336,0.138129386,926.667407,3008656476 +0,942,941,128,3.05422616,0.144024572,888.737236,3008656476 +0,943,942,128,3.45405149,0.130494581,980.883643,3008656476 +0,944,943,128,3.29431105,0.129640848,987.343125,3008656476 +0,945,944,128,4.68642092,0.129538718,988.121559,3008656476 +0,946,945,128,4.33433628,0.129351652,989.550563,3008656476 +0,947,946,128,3.28646827,0.129236916,990.429081,3008656476 +0,948,947,128,4.19812489,0.129546206,988.064444,3008656476 +0,949,948,128,4.63814259,0.136288094,939.186955,3008656476 +0,950,949,128,4.54281044,0.143083465,894.582753,3008656476 +0,951,950,128,3.58228993,0.129323158,989.768592,3008656476 +0,952,951,128,3.33821869,0.129655706,987.22998,3008656476 +0,953,952,128,2.90931368,0.129072979,991.687036,3008656476 +0,954,953,128,3.73726273,0.129101263,991.469774,3008656476 +0,955,954,128,3.75250673,0.128195198,998.477338,3008656476 +0,956,955,128,2.96258616,0.129109888,991.40354,3008656476 +0,957,956,128,4.11983967,0.136996316,934.331694,3008656476 +0,958,957,128,3.84372115,0.142536923,898.012931,3008656476 +0,959,958,128,3.48276544,0.129867389,985.620801,3008656476 +0,960,959,128,3.70301294,0.129212426,990.6168,3008656476 +0,961,960,128,3.98368335,0.128510861,996.024764,3008656476 +0,962,961,128,3.53431559,0.129573539,987.856016,3008656476 +0,963,962,128,3.60185885,0.128657424,994.89012,3008656476 +0,964,963,128,3.24637961,0.128152422,998.810619,3008656476 +0,965,964,128,2.93275023,0.136405906,938.375791,3008656476 +0,966,965,128,3.4384675,0.146406494,874.278159,3008656476 +0,967,966,128,3.59546351,0.129985862,984.722477,3008656476 +0,968,967,128,4.50108528,0.129760467,986.432948,3008656476 +0,969,968,128,3.78498721,0.129274342,990.142344,3008656476 +0,970,969,128,3.52315474,0.130023324,984.438761,3008656476 +0,971,970,128,3.08255267,0.129811559,986.044702,3008656476 +0,972,971,128,3.58757687,0.129786037,986.238604,3008656476 +0,973,972,128,2.81829095,0.137282206,932.38595,3008656476 +0,974,973,128,3.16089559,0.147600792,867.204019,3008656476 +0,975,974,128,3.76685286,0.132716533,964.461602,3008656476 +0,976,975,128,3.93302774,0.132340195,967.204257,3008656476 +0,977,976,128,3.899436,0.133207781,960.904829,3008656476 +0,978,977,128,3.95851421,0.132947518,962.785932,3008656476 +0,979,978,128,3.94541907,0.133679544,957.513739,3008656476 +0,980,979,128,3.9583168,0.145275339,881.085536,3008656476 +0,981,980,128,3.38126707,0.147571561,867.375795,3008656476 +0,982,981,128,3.70039392,0.131214023,975.505492,3008656476 +0,983,982,128,3.29956913,0.133237594,960.689819,3008656476 +0,984,983,128,3.37072015,0.131561786,972.926895,3008656476 +0,985,984,128,3.55429983,0.119343687,1072.53264,3008656476 +0,986,985,128,3.58522487,0.131121947,976.190508,3008656476 +0,987,986,128,3.37520266,0.131210713,975.5301,3008656476 +0,988,987,128,3.23734617,0.146744245,872.265894,3008656476 +0,989,988,128,3.70894957,0.14457355,885.362502,3008656476 +0,990,989,128,4.08778572,0.130583519,980.215581,3008656476 +0,991,990,128,2.73040843,0.130316494,982.224092,3008656476 +0,992,991,128,3.17049408,0.130096431,983.885561,3008656476 +0,993,992,128,3.46134067,0.129773049,986.33731,3008656476 +0,994,993,128,2.61907649,0.129535599,988.145351,3008656476 +0,995,994,128,2.92950511,0.128741121,994.243323,3008656476 +0,996,995,128,2.45358467,0.143132562,894.275895,3008656476 +0,997,996,128,3.53085184,0.141282646,905.985297,3008656476 +0,998,997,128,3.32994676,0.128688234,994.651928,3008656476 +0,999,998,128,3.22771645,0.128359724,997.197532,3008656476 +0,1000,999,128,3.3586607,0.128538123,995.813514,3008656476 +0,1001,1000,128,4.0218215,0.12840911,996.814011,3008656476 +0,1002,1001,128,3.32684684,0.129463018,988.699337,3008656476 +0,1003,1002,128,3.47827482,0.128822588,993.614567,3008656476 +0,1004,1003,128,3.56940413,0.141293967,905.912706,3008656476 +0,1005,1004,128,3.80496788,0.145164249,881.759806,3008656476 +0,1006,1005,128,3.2742219,0.129252426,990.310232,3008656476 +0,1007,1006,128,3.81908298,0.130426145,981.398323,3008656476 +0,1008,1007,128,3.77508616,0.129828879,985.913157,3008656476 +0,1009,1008,128,3.29627895,0.130444705,981.258687,3008656476 +0,1010,1009,128,3.19053984,0.128735758,994.284743,3008656476 +0,1011,1010,128,3.73128533,0.129891801,985.435563,3008656476 +0,1012,1011,128,2.79534936,0.147850056,865.741978,3008656476 +0,1013,1012,128,3.64433217,0.14379151,890.17773,3008656476 +0,1014,1013,128,3.12879014,0.128697042,994.583854,3008656476 +0,1015,1014,128,3.44899249,0.129372058,989.39448,3008656476 +0,1016,1015,128,2.26023936,0.12952727,988.208892,3008656476 +0,1017,1016,128,2.82591558,0.129753102,986.48894,3008656476 +0,1018,1017,128,2.95088506,0.130187699,983.195809,3008656476 +0,1019,1018,128,3.41386557,0.130923438,977.670629,3008656476 +0,1020,1019,128,3.8953979,0.143227187,893.685079,3008656476 +0,1021,1020,128,4.16986704,0.145433358,880.128203,3008656476 +0,1022,1021,128,3.6794045,0.130375468,981.779793,3008656476 +0,1023,1022,128,3.54374337,0.132478942,966.191291,3008656476 +0,1024,1023,128,4.49662256,0.131703558,971.87959,3008656476 +0,1025,1024,128,4.08022118,0.131184461,975.725319,3008656476 +0,1026,1025,128,3.73022389,0.132276212,967.672101,3008656476 +0,1027,1026,128,3.4081161,0.13218281,968.35587,3008656476 +0,1028,1027,128,3.25273848,0.147589156,867.27239,3008656476 +0,1029,1028,128,3.26954341,0.148090552,864.336031,3008656476 +0,1030,1029,128,3.65072656,0.133182058,961.09042,3008656476 +0,1031,1030,128,3.08403111,0.133083248,961.803998,3008656476 +0,1032,1031,128,3.68063402,0.139918328,914.819394,3008656476 +0,1033,1032,128,3.09339213,0.134951823,948.486631,3008656476 +0,1034,1033,128,3.32994294,0.132603319,965.285039,3008656476 +0,1035,1034,128,3.67282462,0.147664585,866.829376,3008656476 +0,1036,1035,128,3.92336226,0.145908084,877.264621,3008656476 +0,1037,1036,128,3.84674597,0.129542964,988.089172,3008656476 +0,1038,1037,128,3.50688624,0.132766085,964.101638,3008656476 +0,1039,1038,128,3.42861128,0.132900546,963.126216,3008656476 +0,1040,1039,128,3.28783536,0.131272333,975.072181,3008656476 +0,1041,1040,128,3.83772421,0.133427076,959.325527,3008656476 +0,1042,1041,128,3.84649491,0.131542408,973.070221,3008656476 +0,1043,1042,128,3.43819547,0.144449649,886.121918,3008656476 +0,1044,1043,128,2.37653184,0.14621706,875.410845,3008656476 +0,1045,1044,128,2.83846569,0.130576339,980.269481,3008656476 +0,1046,1045,128,3.18744707,0.13060492,980.054963,3008656476 +0,1047,1046,128,3.29626942,0.131249069,975.245013,3008656476 +0,1048,1047,128,3.19106627,0.13010744,983.80231,3008656476 +0,1049,1048,128,3.87803531,0.13011966,983.709917,3008656476 +0,1050,1049,128,3.90356684,0.129930974,985.138463,3008656476 +0,1051,1050,128,4.05929089,0.141008376,907.747494,3008656476 +0,1052,1051,128,3.81049275,0.142728423,896.808059,3008656476 +0,1053,1052,128,3.603369,0.12979068,986.203324,3008656476 +0,1054,1053,128,3.32033587,0.12862816,995.116466,3008656476 +0,1055,1054,128,4.45982218,0.12874827,994.188116,3008656476 +0,1056,1055,128,3.76715207,0.12818044,998.592297,3008656476 +0,1057,1056,128,3.99868536,0.128170737,998.667894,3008656476 +0,1058,1057,128,4.16443443,0.128743055,994.228388,3008656476 +0,1059,1058,128,3.84159517,0.143100432,894.476685,3008656476 +0,1060,1059,128,3.43802285,0.143911162,889.43761,3008656476 +0,1061,1060,128,4.26612377,0.128604705,995.297956,3008656476 +0,1062,1061,128,4.71271753,0.129459828,988.723699,3008656476 +0,1063,1062,128,4.13710928,0.129673689,987.093072,3008656476 +0,1064,1063,128,3.74741602,0.129319698,989.795074,3008656476 +0,1065,1064,128,3.26310611,0.130748681,978.977371,3008656476 +0,1066,1065,128,3.51217246,0.12902407,992.062954,3008656476 +0,1067,1066,128,3.50719571,0.149632883,855.426945,3008656476 +0,1068,1067,128,3.66296363,0.142308788,899.452534,3008656476 +0,1069,1068,128,3.92889047,0.130002455,984.596791,3008656476 +0,1070,1069,128,4.16317558,0.129295759,989.978333,3008656476 +0,1071,1070,128,4.12259245,0.128536673,995.824748,3008656476 +0,1072,1071,128,4.23924398,0.128729442,994.333526,3008656476 +0,1073,1072,128,3.1672883,0.128962933,992.533258,3008656476 +0,1074,1073,128,3.92929816,0.128996664,992.273723,3008656476 +0,1075,1074,128,3.50279427,0.141103777,907.133762,3008656476 +0,1076,1075,128,3.69642138,0.144916379,883.267998,3008656476 +0,1077,1076,128,4.18173361,0.130752363,978.949803,3008656476 +0,1078,1077,128,3.77474332,0.13027534,982.534377,3008656476 +0,1079,1078,128,4.05013609,0.130146098,983.510086,3008656476 +0,1080,1079,128,4.52886629,0.130845963,978.249516,3008656476 +0,1081,1080,128,3.56246591,0.130074288,984.053051,3008656476 +0,1082,1081,128,2.13466668,0.132487414,966.129507,3008656476 +0,1083,1082,128,3.25761199,0.147437672,868.163464,3008656476 +0,1084,1083,128,3.67493987,0.146322766,874.778433,3008656476 +0,1085,1084,128,3.74306846,0.132088139,969.049916,3008656476 +0,1086,1085,128,3.68817234,0.132770969,964.066173,3008656476 +0,1087,1086,128,3.85589886,0.131599476,972.64825,3008656476 +0,1088,1087,128,3.29681063,0.132667829,964.815668,3008656476 +0,1089,1088,128,3.59319854,0.132987183,962.49877,3008656476 +0,1090,1089,128,3.36762571,0.13237667,966.937754,3008656476 +0,1091,1090,128,3.40583229,0.148164092,863.907025,3008656476 +0,1092,1091,128,3.73838592,0.145612553,879.045092,3008656476 +0,1093,1092,128,3.23849511,0.132146384,968.622796,3008656476 +0,1094,1093,128,4.20167065,0.131320396,974.715306,3008656476 +0,1095,1094,128,4.19513464,0.132114982,968.853025,3008656476 +0,1096,1095,128,3.62699986,0.131506083,973.339005,3008656476 +0,1097,1096,128,3.36518455,0.132393442,966.81526,3008656476 +0,1098,1097,128,3.45759249,0.145712243,878.443687,3008656476 +0,1099,1098,128,3.71085262,0.142015966,901.307111,3008656476 +0,1100,1099,128,4.01929617,0.125815315,1017.36422,3008656476 +0,1101,1100,128,3.95474982,0.132004728,969.662238,3008656476 +0,1102,1101,128,3.62009025,0.130805271,978.553838,3008656476 +0,1103,1102,128,3.60080552,0.130398249,981.608273,3008656476 +0,1104,1103,128,3.62641239,0.130214461,982.99374,3008656476 +0,1105,1104,128,3.5012958,0.130361675,981.883671,3008656476 +0,1106,1105,128,4.33692694,0.146590201,873.182512,3008656476 +0,1107,1106,128,3.45282173,0.141150271,906.834957,3008656476 +0,1108,1107,128,3.41201568,0.128618017,995.194942,3008656476 +0,1109,1108,128,3.29560137,0.128792858,993.843929,3008656476 +0,1110,1109,128,2.88096881,0.128067154,999.475634,3008656476 +0,1111,1110,128,3.33717728,0.128548512,995.733035,3008656476 +0,1112,1111,128,3.37520576,0.129675671,987.077985,3008656476 +0,1113,1112,128,3.20737982,0.12918956,990.792135,3008656476 +0,1114,1113,128,3.12271523,0.143212093,893.77927,3008656476 +0,1115,1114,128,3.96994686,0.141904387,902.015806,3008656476 +0,1116,1115,128,2.6769073,0.130144339,983.523379,3008656476 +0,1117,1116,128,2.99545026,0.129172559,990.922538,3008656476 +0,1118,1117,128,2.82232261,0.129985149,984.727878,3008656476 +0,1119,1118,128,3.42497659,0.129680828,987.038732,3008656476 +0,1120,1119,128,3.11860156,0.129206562,990.661759,3008656476 +0,1121,1120,128,2.45120358,0.157662749,811.859496,3008656476 +0,1122,1121,128,3.27514601,0.16152802,792.432174,3008656476 +0,1123,1122,128,3.25075006,0.144077097,888.413236,3008656476 +0,1124,1123,128,2.67663598,0.129669375,987.125912,3008656476 +0,1125,1124,128,2.11692166,0.129719569,986.743951,3008656476 +0,1126,1125,128,3.83788037,0.129394323,989.224234,3008656476 +0,1127,1126,128,2.88491464,0.129547209,988.056794,3008656476 +0,1128,1127,128,4.42503786,0.129748006,986.527685,3008656476 +0,1129,1128,128,3.9666729,0.129579278,987.812264,3008656476 +0,1130,1129,128,2.38884783,0.143880135,889.629413,3008656476 +0,1131,1130,128,3.50334311,0.146556787,873.381592,3008656476 +0,1132,1131,128,3.16837287,0.129225126,990.519444,3008656476 +0,1133,1132,128,3.06423402,0.116497827,1098.73294,3008656476 +0,1134,1133,128,2.9053359,0.129327457,989.735691,3008656476 +0,1135,1134,128,4.00934982,0.130462704,981.12331,3008656476 +0,1136,1135,128,3.85259533,0.130219948,982.95232,3008656476 +0,1137,1136,128,3.48937964,0.12996046,984.91495,3008656476 +0,1138,1137,128,3.68633699,0.143106849,894.436576,3008656476 +0,1139,1138,128,3.30121779,0.146987794,870.820607,3008656476 +0,1140,1139,128,3.37331986,0.131687857,971.995467,3008656476 +0,1141,1140,128,3.37259412,0.132870823,963.341666,3008656476 +0,1142,1141,128,3.49237943,0.132303256,967.4743,3008656476 +0,1143,1142,128,3.47201133,0.132818563,963.720711,3008656476 +0,1144,1143,128,3.11421371,0.133950214,955.578914,3008656476 +0,1145,1144,128,3.56064415,0.146144879,875.84321,3008656476 +0,1146,1145,128,4.19407749,0.146915582,871.248633,3008656476 +0,1147,1146,128,4.28227711,0.126959075,1008.1989,3008656476 +0,1148,1147,128,3.84030461,0.132435932,966.505072,3008656476 +0,1149,1148,128,4.09283781,0.133043736,962.089639,3008656476 +0,1150,1149,128,3.69994664,0.133193329,961.009091,3008656476 +0,1151,1150,128,3.86579871,0.132824081,963.680675,3008656476 +0,1152,1151,128,3.65912032,0.139287145,918.96492,3008656476 +0,1153,1152,128,4.03995132,0.154572854,828.088482,3008656476 +0,1154,1153,128,3.88040495,0.145148606,881.854835,3008656476 +0,1155,1154,128,3.60401034,0.132305182,967.460216,3008656476 +0,1156,1155,128,3.74115276,0.132312505,967.406671,3008656476 +0,1157,1156,128,3.72860384,0.133398108,959.533849,3008656476 +0,1158,1157,128,4.27605104,0.132554506,965.640504,3008656476 +0,1159,1158,128,3.77862358,0.131743883,971.582111,3008656476 +0,1160,1159,128,4.01133871,0.132055192,969.291688,3008656476 +0,1161,1160,128,3.92906451,0.145086227,882.233984,3008656476 +0,1162,1161,128,3.84471321,0.143134781,894.262031,3008656476 +0,1163,1162,128,3.09014392,0.130335634,982.079851,3008656476 +0,1164,1163,128,3.50042129,0.129567274,987.903782,3008656476 +0,1165,1164,128,3.62156749,0.130764445,978.859353,3008656476 +0,1166,1165,128,4.14467096,0.129925573,985.179415,3008656476 +0,1167,1166,128,3.73425007,0.12935488,989.525869,3008656476 +0,1168,1167,128,4.04430151,0.129643486,987.323034,3008656476 +0,1169,1168,128,3.49636698,0.141243317,906.237567,3008656476 +0,1170,1169,128,4.26282787,0.143152264,894.152816,3008656476 +0,1171,1170,128,3.54889369,0.128831774,993.54372,3008656476 +0,1172,1171,128,4.0344243,0.127991911,1000.0632,3008656476 +0,1173,1172,128,3.58844233,0.128642018,995.009267,3008656476 +0,1174,1173,128,3.65033054,0.129117154,991.347749,3008656476 +0,1175,1174,128,4.33358526,0.128485654,996.220169,3008656476 +0,1176,1175,128,4.45809174,0.128957375,992.576035,3008656476 +0,1177,1176,128,4.01179934,0.141421172,905.097859,3008656476 +0,1178,1177,128,3.48056746,0.143257625,893.495198,3008656476 +0,1179,1178,128,3.64244056,0.128367329,997.138454,3008656476 +0,1180,1179,128,3.8983717,0.12917605,990.895758,3008656476 +0,1181,1180,128,4.28461695,0.128984255,992.369185,3008656476 +0,1182,1181,128,3.94686246,0.128695536,994.595492,3008656476 +0,1183,1182,128,4.16053629,0.12914538,991.13108,3008656476 +0,1184,1183,128,3.11410284,0.12918892,990.797044,3008656476 +0,1185,1184,128,3.32303953,0.146132543,875.917146,3008656476 +0,1186,1185,128,4.30461597,0.142204674,900.111061,3008656476 +0,1187,1186,128,3.95795345,0.129229811,990.483535,3008656476 +0,1188,1187,128,4.09061909,0.129285506,990.056844,3008656476 +0,1189,1188,128,3.97456622,0.129050133,991.862597,3008656476 +0,1190,1189,128,3.603894,0.129334907,989.67868,3008656476 +0,1191,1190,128,3.30852842,0.130219318,982.957076,3008656476 +0,1192,1191,128,2.80820847,0.130285413,982.458412,3008656476 +0,1193,1192,128,3.67379737,0.145704859,878.488205,3008656476 +0,1194,1193,128,3.16000319,0.142820481,896.230002,3008656476 +0,1195,1194,128,2.74720669,0.1282113,998.351939,3008656476 +0,1196,1195,128,2.92986536,0.129192329,990.770899,3008656476 +0,1197,1196,128,2.63858795,0.12932426,989.760158,3008656476 +0,1198,1197,128,3.33165598,0.129549503,988.039298,3008656476 +0,1199,1198,128,3.03415537,0.128539454,995.803203,3008656476 +0,1200,1199,128,4.3430829,0.128270108,997.894225,3008656476 +0,1201,1200,128,3.51944089,0.139897432,914.956037,3008656476 +0,1202,1201,128,4.07764721,0.146871959,871.507406,3008656476 +0,1203,1202,128,3.65233564,0.130302774,982.327514,3008656476 +0,1204,1203,128,3.82250953,0.131310193,974.791043,3008656476 +0,1205,1204,128,3.6941185,0.129901624,985.361045,3008656476 +0,1206,1205,128,3.98912716,0.131875042,970.615805,3008656476 +0,1207,1206,128,3.82446027,0.131638511,972.359829,3008656476 +0,1208,1207,128,3.71518946,0.144843798,883.710603,3008656476 +0,1209,1208,128,3.91190386,0.12769562,1002.38364,3008656476 +0,1210,1209,128,3.43542099,0.142285519,899.599628,3008656476 +0,1211,1210,128,3.79084682,0.133228202,960.757543,3008656476 +0,1212,1211,128,4.08745193,0.132975518,962.583203,3008656476 +0,1213,1212,128,3.72570109,0.135824885,942.389902,3008656476 +0,1214,1213,128,3.58576488,0.1441274,888.103164,3008656476 +0,1215,1214,128,4.31677151,0.132700418,964.578725,3008656476 +0,1216,1215,128,4.18772316,0.144933896,883.161245,3008656476 +0,1217,1216,128,3.46768594,0.148470603,862.123528,3008656476 +0,1218,1217,128,3.70019174,0.131418051,973.991008,3008656476 +0,1219,1218,128,3.55588508,0.131937637,970.155317,3008656476 +0,1220,1219,128,4.1554141,0.133122666,961.519205,3008656476 +0,1221,1220,128,3.0928793,0.131192021,975.669092,3008656476 +0,1222,1221,128,3.47729182,0.132003789,969.669136,3008656476 +0,1223,1222,128,3.55434728,0.133100895,961.676479,3008656476 +0,1224,1223,128,3.57562304,0.146019675,876.594199,3008656476 +0,1225,1224,128,4.2589426,0.146341018,874.669329,3008656476 +0,1226,1225,128,4.41178751,0.130609408,980.021286,3008656476 +0,1227,1226,128,3.86396503,0.129961192,984.909403,3008656476 +0,1228,1227,128,3.99784303,0.129406204,989.133411,3008656476 +0,1229,1228,128,3.94173837,0.129298329,989.958656,3008656476 +0,1230,1229,128,3.71891928,0.12974042,986.585368,3008656476 +0,1231,1230,128,3.61512017,0.128919632,992.866626,3008656476 +0,1232,1231,128,3.08482456,0.145355695,880.598452,3008656476 +0,1233,1232,128,4.1364603,0.141376477,905.383998,3008656476 +0,1234,1233,128,4.14196968,0.128548106,995.73618,3008656476 +0,1235,1234,128,3.126333,0.129863758,985.648359,3008656476 +0,1236,1235,128,3.87157798,0.128938155,992.723992,3008656476 +0,1237,1236,128,3.65308237,0.129371791,989.396522,3008656476 +0,1238,1237,128,3.77471089,0.128121813,999.049241,3008656476 +0,1239,1238,128,3.54186511,0.12949339,988.467442,3008656476 +0,1240,1239,128,3.9423883,0.144869241,883.555399,3008656476 +0,1241,1240,128,4.01097059,0.141984291,901.508182,3008656476 +0,1242,1241,128,2.52425456,0.130056251,984.189526,3008656476 +0,1243,1242,128,3.43906355,0.129919614,985.224602,3008656476 +0,1244,1243,128,2.60751176,0.128770296,994.018061,3008656476 +0,1245,1244,128,3.59719849,0.129760524,986.432515,3008656476 +0,1246,1245,128,2.95863676,0.129231091,990.473724,3008656476 +0,1247,1246,128,3.39252591,0.129465619,988.679473,3008656476 +0,1248,1247,128,3.01174188,0.14308453,894.576094,3008656476 +0,1249,1248,128,2.37010455,0.143139273,894.233968,3008656476 +0,1250,1249,128,2.45906663,0.129942717,985.049435,3008656476 +0,1251,1250,128,2.64296246,0.129833416,985.878705,3008656476 +0,1252,1251,128,2.28090978,0.129683254,987.020267,3008656476 +0,1253,1252,128,2.73253918,0.129289367,990.027277,3008656476 +0,1254,1253,128,3.00294733,0.129458107,988.736843,3008656476 +0,1255,1254,128,2.81075525,0.129971973,984.827706,3008656476 +0,1256,1255,128,2.35961342,0.142503274,898.224977,3008656476 +0,1257,1256,128,2.67351055,0.147396068,868.408511,3008656476 +0,1258,1257,128,2.95872116,0.129819423,985.984971,3008656476 +0,1259,1258,128,2.23857021,0.13036345,981.870302,3008656476 +0,1260,1259,128,3.61174726,0.130211202,983.018343,3008656476 +0,1261,1260,128,4.13043785,0.130922107,977.680568,3008656476 +0,1262,1261,128,3.90749264,0.131627079,972.444279,3008656476 +0,1263,1262,128,4.24136019,0.13221208,968.141489,3008656476 +0,1264,1263,128,4.21475029,0.143229325,893.671739,3008656476 +0,1265,1264,128,3.82728291,0.154508138,828.435328,3008656476 +0,1266,1265,128,3.81413627,0.141298777,905.881868,3008656476 +0,1267,1266,128,3.65460896,0.143754592,890.406339,3008656476 +0,1268,1267,128,3.83572984,0.14380821,890.074357,3008656476 +0,1269,1268,128,3.68659306,0.132769662,964.075664,3008656476 +0,1270,1269,128,3.79247355,0.13314475,961.359723,3008656476 +0,1271,1270,128,2.87104511,0.145554337,879.396675,3008656476 +0,1272,1271,128,3.27902007,0.147133362,869.959051,3008656476 +0,1273,1272,128,3.10860467,0.131987259,969.790577,3008656476 +0,1274,1273,128,4.47817993,0.132124789,968.781112,3008656476 +0,1275,1274,128,3.10348248,0.132621707,965.151203,3008656476 +0,1276,1275,128,4.13597536,0.13158683,972.741725,3008656476 +0,1277,1276,128,4.08070612,0.131707608,971.849705,3008656476 +0,1278,1277,128,3.16696644,0.131646432,972.301323,3008656476 +0,1279,1278,128,3.54430246,0.145459059,879.972694,3008656476 +0,1280,1279,128,3.84119558,0.14403974,888.643648,3008656476 +0,1281,1280,128,3.47109866,0.130869356,978.074653,3008656476 +0,1282,1281,128,3.83453989,0.129715492,986.774964,3008656476 +0,1283,1282,128,3.93362188,0.129869052,985.60818,3008656476 +0,1284,1283,128,3.01982117,0.129502281,988.399579,3008656476 +0,1285,1284,128,3.43554306,0.129735391,986.623611,3008656476 +0,1286,1285,128,3.78308845,0.129322008,989.777393,3008656476 +0,1287,1286,128,3.50382233,0.144385843,886.513507,3008656476 +0,1288,1287,128,3.79684877,0.143511849,891.912416,3008656476 +0,1289,1288,128,2.98252535,0.130054652,984.201626,3008656476 +0,1290,1289,128,3.65894055,0.128583077,995.465367,3008656476 +0,1291,1290,128,3.63009596,0.130001329,984.605319,3008656476 +0,1292,1291,128,3.28042078,0.129223336,990.533165,3008656476 +0,1293,1292,128,3.82914162,0.129052815,991.841983,3008656476 +0,1294,1293,128,3.18819523,0.129198688,990.722135,3008656476 +0,1295,1294,128,3.01833773,0.142935117,895.511213,3008656476 +0,1296,1295,128,3.0523572,0.143107142,894.434745,3008656476 +0,1297,1296,128,3.43905163,0.128809729,993.713759,3008656476 +0,1298,1297,128,3.79634094,0.129590889,987.723759,3008656476 +0,1299,1298,128,3.37992287,0.128737326,994.272632,3008656476 +0,1300,1299,128,3.79269838,0.129461406,988.711647,3008656476 +0,1301,1300,128,3.44846368,0.129130188,991.247686,3008656476 +0,1302,1301,128,3.41561031,0.128650071,994.946983,3008656476 +0,1303,1302,128,3.23829627,0.141848019,902.374252,3008656476 +0,1304,1303,128,3.70866346,0.144122428,888.133802,3008656476 +0,1305,1304,128,3.5760448,0.129893704,985.421126,3008656476 +0,1306,1305,128,3.87293696,0.129995628,984.648499,3008656476 +0,1307,1306,128,3.50479126,0.13012508,983.668944,3008656476 +0,1308,1307,128,3.71758127,0.129584876,987.769591,3008656476 +0,1309,1308,128,2.83380532,0.129432079,988.935672,3008656476 +0,1310,1309,128,3.7228055,0.129101801,991.465642,3008656476 +0,1311,1310,128,4.44782448,0.13823231,925.977436,3008656476 +0,1312,1311,128,3.34349537,0.143214203,893.766102,3008656476 +0,1313,1312,128,3.17281771,0.12929004,990.022124,3008656476 +0,1314,1313,128,3.77047658,0.128894293,993.061811,3008656476 +0,1315,1314,128,3.08914542,0.128482192,996.247013,3008656476 +0,1316,1315,128,3.20650649,0.128427841,996.668627,3008656476 +0,1317,1316,128,3.61987519,0.128694883,994.600539,3008656476 +0,1318,1317,128,3.46218705,0.128819949,993.634922,3008656476 +0,1319,1318,128,2.53789639,0.140608716,910.327636,3008656476 +0,1320,1319,128,3.48829007,0.144019343,888.769504,3008656476 +0,1321,1320,128,3.86435318,0.13138277,974.25256,3008656476 +0,1322,1321,128,3.4715147,0.131633199,972.399068,3008656476 +0,1323,1322,128,4.00006485,0.132131665,968.730698,3008656476 +0,1324,1323,128,3.35569,0.132474623,966.222791,3008656476 +0,1325,1324,128,2.40427279,0.132001132,969.688654,3008656476 +0,1326,1325,128,3.12061524,0.141271839,906.054603,3008656476 +0,1327,1326,128,4.17014647,0.129634445,987.391893,3008656476 +0,1328,1327,128,3.86047292,0.137287263,932.351605,3008656476 +0,1329,1328,128,3.75262189,0.132995515,962.43847,3008656476 +0,1330,1329,128,3.33435178,0.138627478,923.337868,3008656476 +0,1331,1330,128,3.53652978,0.132902792,963.10994,3008656476 +0,1332,1331,128,3.07294369,0.132224026,968.054021,3008656476 +0,1333,1332,128,3.54027057,0.132992388,962.4611,3008656476 +0,1334,1333,128,3.2514174,0.146072203,876.278973,3008656476 +0,1335,1334,128,4.01043844,0.145205118,881.511628,3008656476 +0,1336,1335,128,3.35417533,0.132875043,963.311071,3008656476 +0,1337,1336,128,3.99297595,0.131201311,975.600008,3008656476 +0,1338,1337,128,2.95377803,0.13138719,974.219785,3008656476 +0,1339,1338,128,3.15389276,0.131714131,971.801575,3008656476 +0,1340,1339,128,3.14167905,0.131784467,971.282905,3008656476 +0,1341,1340,128,3.07680631,0.132106821,968.912877,3008656476 +0,1342,1341,128,3.11389375,0.145222392,881.406774,3008656476 +0,1343,1342,128,3.27613115,0.144339179,886.800111,3008656476 +0,1344,1343,128,3.17262602,0.129367898,989.426295,3008656476 +0,1345,1344,128,3.72945404,0.130077159,984.031332,3008656476 +0,1346,1345,128,3.46720552,0.129733837,986.63543,3008656476 +0,1347,1346,128,3.70797443,0.128515164,995.991415,3008656476 +0,1348,1347,128,3.11505032,0.128591936,995.396788,3008656476 +0,1349,1348,128,2.68256497,0.128884524,993.137081,3008656476 +0,1350,1349,128,3.76079774,0.141535334,904.36781,3008656476 +0,1351,1350,128,3.65592647,0.144926235,883.20793,3008656476 +0,1352,1351,128,4.16776896,0.128895204,993.054792,3008656476 +0,1353,1352,128,3.28977275,0.129201997,990.696761,3008656476 +0,1354,1353,128,3.02390838,0.13036087,981.889734,3008656476 +0,1355,1354,128,3.68864226,0.128782244,993.92584,3008656476 +0,1356,1355,128,2.87348938,0.128810871,993.704949,3008656476 +0,1357,1356,128,2.97635412,0.129719166,986.747016,3008656476 +0,1358,1357,128,3.17575288,0.146704522,872.502076,3008656476 +0,1359,1358,128,3.93413496,0.145772524,878.080426,3008656476 +0,1360,1359,128,3.02262878,0.130584877,980.205388,3008656476 +0,1361,1360,128,3.00316072,0.128986471,992.352136,3008656476 +0,1362,1361,128,3.80910015,0.128783628,993.915158,3008656476 +0,1363,1362,128,3.95393634,0.128974313,992.445682,3008656476 +0,1364,1363,128,3.04521966,0.128536114,995.829079,3008656476 +0,1365,1364,128,3.00206375,0.12875936,994.102487,3008656476 +0,1366,1365,128,3.30928755,0.141945882,901.75212,3008656476 +0,1367,1366,128,4.0775857,0.142714884,896.893137,3008656476 +0,1368,1367,128,3.86811972,0.12970349,986.866275,3008656476 +0,1369,1368,128,3.44545841,0.130289608,982.42678,3008656476 +0,1370,1369,128,3.38952732,0.129099159,991.485932,3008656476 +0,1371,1370,128,3.34651327,0.129984588,984.732128,3008656476 +0,1372,1371,128,3.82311773,0.1309184,977.708252,3008656476 +0,1373,1372,128,3.49435449,0.131471648,973.593942,3008656476 +0,1374,1373,128,4.28814793,0.14635663,874.576027,3008656476 +0,1375,1374,128,4.31420517,0.144054277,888.553972,3008656476 +0,1376,1375,128,4.19067001,0.132681676,964.714977,3008656476 +0,1377,1376,128,4.15657806,0.132099497,968.966596,3008656476 +0,1378,1377,128,3.72129941,0.133082188,961.811659,3008656476 +0,1379,1378,128,3.01218057,0.133464873,959.053848,3008656476 +0,1380,1379,128,3.33966827,0.132716923,964.458768,3008656476 +0,1381,1380,128,3.71218467,0.131928512,970.222419,3008656476 +0,1382,1381,128,3.12681437,0.147234269,869.362825,3008656476 +0,1383,1382,128,3.44940734,0.142194175,900.177521,3008656476 +0,1384,1383,128,3.22121358,0.132314627,967.391156,3008656476 +0,1385,1384,128,2.76157784,0.132977681,962.567545,3008656476 +0,1386,1385,128,3.46698952,0.131802808,971.147747,3008656476 +0,1387,1386,128,2.33828998,0.132054174,969.299161,3008656476 +0,1388,1387,128,3.15699553,0.133989403,955.299428,3008656476 +0,1389,1388,128,3.62127733,0.143917675,889.397359,3008656476 +0,1390,1389,128,3.14589334,0.13836718,925.074862,3008656476 +0,1391,1390,128,2.90600824,0.127374383,1004.91164,3008656476 +0,1392,1391,128,2.92395782,0.130406376,981.547099,3008656476 +0,1393,1392,128,3.06365967,0.131065164,976.613435,3008656476 +0,1394,1393,128,3.43844819,0.131527867,973.177798,3008656476 +0,1395,1394,128,3.89218831,0.128973652,992.450768,3008656476 +0,1396,1395,128,3.49470472,0.129782288,986.267094,3008656476 +0,1397,1396,128,3.30241704,0.13982334,915.44087,3008656476 +0,1398,1397,128,4.27196836,0.140648199,910.072087,3008656476 +0,1399,1398,128,3.21885848,0.12502893,1023.76306,3008656476 +0,1400,1399,128,3.76813078,0.131116343,976.232231,3008656476 +0,1401,1400,128,3.98210692,0.13245853,966.340182,3008656476 +0,1402,1401,128,3.8507123,0.129746908,986.536034,3008656476 +0,1403,1402,128,3.75008583,0.130225304,982.911892,3008656476 +0,1404,1403,128,3.81626415,0.129350362,989.560431,3008656476 +0,1405,1404,128,2.80195975,0.139356705,918.506218,3008656476 +0,1406,1405,128,3.44127011,0.139232958,919.322564,3008656476 +0,1407,1406,128,4.62797165,0.126054374,1015.43482,3008656476 +0,1408,1407,128,4.26028824,0.133547825,958.45814,3008656476 +0,1409,1408,128,4.54084969,0.130451622,981.206658,3008656476 +0,1410,1409,128,4.53476954,0.130547511,980.485947,3008656476 +0,1411,1410,128,3.8476758,0.12970437,986.859579,3008656476 +0,1412,1411,128,4.70366526,0.12987955,985.528515,3008656476 +0,1413,1412,128,4.37741041,0.144597514,885.215772,3008656476 +0,1414,1413,128,4.42454672,0.139744784,915.955475,3008656476 +0,1415,1414,128,4.08033419,0.127427981,1004.48896,3008656476 +0,1416,1415,128,4.16967392,0.128706047,994.514267,3008656476 +0,1417,1416,128,3.97562099,0.130071001,984.077919,3008656476 +0,1418,1417,128,4.15868378,0.129106374,991.430524,3008656476 +0,1419,1418,128,4.07848549,0.130493632,980.890776,3008656476 +0,1420,1419,128,4.28937435,0.128354544,997.237776,3008656476 +0,1421,1420,128,4.01907587,0.142821945,896.220815,3008656476 +0,1422,1421,128,3.80072737,0.139626586,916.730858,3008656476 +0,1423,1422,128,4.47060776,0.123332569,1037.84427,3008656476 +0,1424,1423,128,3.89153814,0.128783783,993.913962,3008656476 +0,1425,1424,128,4.17243767,0.128718486,994.41816,3008656476 +0,1426,1425,128,4.9082551,0.128395918,996.916428,3008656476 +0,1427,1426,128,3.82073593,0.128897392,993.037935,3008656476 +0,1428,1427,128,4.15684032,0.128809325,993.716876,3008656476 +0,1429,1428,128,3.83077407,0.143803333,890.104543,3008656476 +0,1430,1429,128,4.57627392,0.127213412,1006.18322,3008656476 +0,1431,1430,128,4.16791582,0.121665838,1052.06196,3008656476 +0,1432,1431,128,4.30443144,0.128796042,993.81936,3008656476 +0,1433,1432,128,4.6449585,0.127977818,1000.17333,3008656476 +0,1434,1433,128,3.72383142,0.128840656,993.475227,3008656476 +0,1435,1434,128,3.82780433,0.128302282,997.643986,3008656476 +0,1436,1435,128,4.36492062,0.129167727,990.959607,3008656476 +0,1437,1436,128,3.16145277,0.13957405,917.075918,3008656476 +0,1438,1437,128,4.2433219,0.125102743,1023.15902,3008656476 +0,1439,1438,128,3.88472891,0.139462113,917.811994,3008656476 +0,1440,1439,128,3.9294734,0.129286542,990.04891,3008656476 +0,1441,1440,128,4.46937466,0.128375901,997.071873,3008656476 +0,1442,1441,128,4.5573411,0.12872191,994.391708,3008656476 +0,1443,1442,128,4.43384218,0.129692558,986.949459,3008656476 +0,1444,1443,128,3.26580858,0.12865505,994.908478,3008656476 +0,1445,1444,128,4.36932516,0.129303411,989.919748,3008656476 +0,1446,1445,128,4.07973576,0.133003344,962.381818,3008656476 +0,1447,1446,128,4.28375053,0.143479427,892.113961,3008656476 +0,1448,1447,128,3.86115789,0.128360648,997.190354,3008656476 +0,1449,1448,128,3.44524527,0.128284261,997.784132,3008656476 +0,1450,1449,128,4.72790861,0.129630194,987.424272,3008656476 +0,1451,1450,128,3.35983181,0.128929032,992.794237,3008656476 +0,1452,1451,128,3.77914405,0.129623521,987.475105,3008656476 +0,1453,1452,128,3.8185463,0.129385807,989.289343,3008656476 +0,1454,1453,128,4.00831985,0.133401952,959.5062,3008656476 +0,1455,1454,128,3.7553277,0.142293747,899.54761,3008656476 +0,1456,1455,128,2.860008,0.128918066,992.878686,3008656476 +0,1457,1456,128,4.41972446,0.128800154,993.787632,3008656476 +0,1458,1457,128,4.00133419,0.128963105,992.531934,3008656476 +0,1459,1458,128,4.22722864,0.129704963,986.855067,3008656476 +0,1460,1459,128,4.1426239,0.12934824,989.576665,3008656476 +0,1461,1460,128,3.73720908,0.129642497,987.330566,3008656476 +0,1462,1461,128,2.67824316,0.134458681,951.96531,3008656476 +0,1463,1462,128,3.08204722,0.141927525,901.868753,3008656476 +0,1464,1463,128,3.83403873,0.129233617,990.454365,3008656476 +0,1465,1464,128,2.70953488,0.130277184,982.52047,3008656476 +0,1466,1465,128,3.73905587,0.129862815,985.655517,3008656476 +0,1467,1466,128,4.43530273,0.130073476,984.059194,3008656476 +0,1468,1467,128,3.88588047,0.128783253,993.918052,3008656476 +0,1469,1468,128,3.4525547,0.130435936,981.324656,3008656476 +0,1470,1469,128,4.57615805,0.135659297,943.540198,3008656476 +0,1471,1470,128,3.62614727,0.142632281,897.412557,3008656476 +0,1472,1471,128,4.57744551,0.129210431,990.632095,3008656476 +0,1473,1472,128,4.00875902,0.130099994,983.858616,3008656476 +0,1474,1473,128,4.33470917,0.129846037,985.782878,3008656476 +0,1475,1474,128,3.58125377,0.129530004,988.188034,3008656476 +0,1476,1475,128,3.58057594,0.128857565,993.344861,3008656476 +0,1477,1476,128,3.68465805,0.130367804,981.83751,3008656476 +0,1478,1477,128,4.11068535,0.135382738,945.467656,3008656476 +0,1479,1478,128,3.93559003,0.145083643,882.249696,3008656476 +0,1480,1479,128,4.12946081,0.129673301,987.096025,3008656476 +0,1481,1480,128,3.85560441,0.129622959,987.479386,3008656476 +0,1482,1481,128,4.37209606,0.129757168,986.458028,3008656476 +0,1483,1482,128,3.61165357,0.128965316,992.514918,3008656476 +0,1484,1483,128,3.40370131,0.128706605,994.509955,3008656476 +0,1485,1484,128,3.92417097,0.128929777,992.788501,3008656476 +0,1486,1485,128,4.10535955,0.133831775,956.424586,3008656476 +0,1487,1486,128,4.35531139,0.143793931,890.162743,3008656476 +0,1488,1487,128,4.26762295,0.129600704,987.648956,3008656476 +0,1489,1488,128,3.74390841,0.128843737,993.451471,3008656476 +0,1490,1489,128,3.42305398,0.128980202,992.400369,3008656476 +0,1491,1490,128,3.8691361,0.129029368,992.022219,3008656476 +0,1492,1491,128,3.86449218,0.129425807,988.983596,3008656476 +0,1493,1492,128,3.96928501,0.129281347,990.088694,3008656476 +0,1494,1493,128,3.70014787,0.135374489,945.525268,3008656476 +0,1495,1494,128,2.86235332,0.144968439,882.950806,3008656476 +0,1496,1495,128,3.38540268,0.129386893,989.281039,3008656476 +0,1497,1496,128,3.58080149,0.129474612,988.610802,3008656476 +0,1498,1497,128,3.66484213,0.131051509,976.715194,3008656476 +0,1499,1498,128,3.8497963,0.13172862,971.694686,3008656476 +0,1500,1499,128,3.40939164,0.13113552,976.089468,3008656476 +0,1501,1500,128,4.04763508,0.131804484,971.135398,3008656476 +0,1502,1501,128,4.37295341,0.133476208,958.972404,3008656476 +0,1503,1502,128,3.45076275,0.143821282,889.993457,3008656476 +0,1504,1503,128,3.77254725,0.131923879,970.256492,3008656476 +0,1505,1504,128,3.56381989,0.131824466,970.988193,3008656476 +0,1506,1505,128,3.99566221,0.131634945,972.38617,3008656476 +0,1507,1506,128,3.3388741,0.132028504,969.487619,3008656476 +0,1508,1507,128,3.80647421,0.133030759,962.18349,3008656476 +0,1509,1508,128,3.39103532,0.146912525,871.266762,3008656476 +0,1510,1509,128,4.19585276,0.147446889,868.109194,3008656476 +0,1511,1510,128,4.54041004,0.124079578,1031.59603,3008656476 +0,1512,1511,128,3.71261692,0.132076443,969.13573,3008656476 +0,1513,1512,128,3.92128992,0.131505814,973.340996,3008656476 +0,1514,1513,128,4.2464056,0.132439982,966.475516,3008656476 +0,1515,1514,128,4.792099,0.131191761,975.671026,3008656476 +0,1516,1515,128,3.69001722,0.131548181,973.027518,3008656476 +0,1517,1516,128,4.23205662,0.148020303,864.746237,3008656476 +0,1518,1517,128,4.32672405,0.143165213,894.071942,3008656476 +0,1519,1518,128,4.30592918,0.129243337,990.379875,3008656476 +0,1520,1519,128,3.36206841,0.128067926,999.46961,3008656476 +0,1521,1520,128,3.89742708,0.128386557,996.989116,3008656476 +0,1522,1521,128,3.35879993,0.128963765,992.526854,3008656476 +0,1523,1522,128,4.26625252,0.128687182,994.660059,3008656476 +0,1524,1523,128,4.6275239,0.12819797,998.455748,3008656476 +0,1525,1524,128,4.3103385,0.147682143,866.726318,3008656476 +0,1526,1525,128,3.70870328,0.143245912,893.568258,3008656476 +0,1527,1526,128,3.09416604,0.12823209,998.190079,3008656476 +0,1528,1527,128,2.75895166,0.12997278,984.821591,3008656476 +0,1529,1528,128,3.71640325,0.129705991,986.847246,3008656476 +0,1530,1529,128,4.45170307,0.128376074,997.070529,3008656476 +0,1531,1530,128,4.39251089,0.129715518,986.774767,3008656476 +0,1532,1531,128,5.05849075,0.129483307,988.544415,3008656476 +0,1533,1532,128,4.79102755,0.142231609,899.940603,3008656476 +0,1534,1533,128,3.94877386,0.144366977,886.629357,3008656476 +0,1535,1534,128,3.91280556,0.129415388,989.063217,3008656476 +0,1536,1535,128,3.34396744,0.130745831,978.998711,3008656476 +0,1537,1536,128,3.71368289,0.129420572,989.0236,3008656476 +0,1538,1537,128,3.79578733,0.129240405,990.402344,3008656476 +0,1539,1538,128,4.01013756,0.12997519,984.803331,3008656476 +0,1540,1539,128,3.62782145,0.129007607,992.189554,3008656476 +0,1541,1540,128,4.5997839,0.141795546,902.708185,3008656476 +0,1542,1541,128,4.43222904,0.142068895,900.971321,3008656476 +0,1543,1542,128,4.39135122,0.128324385,997.472148,3008656476 +0,1544,1543,128,4.12309694,0.128645561,994.981863,3008656476 +0,1545,1544,128,4.97100115,0.128757687,994.115404,3008656476 +0,1546,1545,128,4.29100466,0.129752185,986.495911,3008656476 +0,1547,1546,128,3.64783478,0.129743962,986.558434,3008656476 +0,1548,1547,128,4.25844526,0.129965317,984.878143,3008656476 +0,1549,1548,128,4.09405851,0.142254484,899.79589,3008656476 +0,1550,1549,128,4.36284208,0.142844167,896.081392,3008656476 +0,1551,1550,128,4.00626087,0.130920725,977.690889,3008656476 +0,1552,1551,128,3.6347599,0.13216191,968.509005,3008656476 +0,1553,1552,128,4.29502869,0.131842906,970.852387,3008656476 +0,1554,1553,128,4.86913157,0.132016235,969.577719,3008656476 +0,1555,1554,128,4.72827196,0.131628716,972.432186,3008656476 +0,1556,1555,128,3.72400308,0.13204038,969.400421,3008656476 +0,1557,1556,128,4.19828367,0.14833072,862.936552,3008656476 +0,1558,1557,128,4.49752378,0.147661175,866.849394,3008656476 +0,1559,1558,128,3.95957732,0.132413556,966.668398,3008656476 +0,1560,1559,128,3.6464746,0.139166888,919.759016,3008656476 +0,1561,1560,128,3.861094,0.143727889,890.571766,3008656476 +0,1562,1561,128,4.44721365,0.143743305,890.476256,3008656476 +0,1563,1562,128,4.78789759,0.134610176,950.893935,3008656476 +0,1564,1563,128,4.86565304,0.147037202,870.527991,3008656476 +0,1565,1564,128,4.43044376,0.146676213,872.670472,3008656476 +0,1566,1565,128,4.34589338,0.125064161,1023.47466,3008656476 +0,1567,1566,128,3.59892106,0.131490326,973.455644,3008656476 +0,1568,1567,128,3.19633865,0.146283449,875.01355,3008656476 +0,1569,1568,128,2.71126509,0.173756751,736.662025,3008656476 +0,1570,1569,128,3.50510859,0.130337441,982.066235,3008656476 +0,1571,1570,128,3.8320837,0.128539014,995.806612,3008656476 +0,1572,1571,128,4.11103058,0.143252434,893.527575,3008656476 +0,1573,1572,128,3.08367586,0.145521441,879.595468,3008656476 +0,1574,1573,128,3.9015677,0.128011164,999.912789,3008656476 +0,1575,1574,128,4.78594351,0.129060707,991.781333,3008656476 +0,1576,1575,128,4.66310692,0.128657602,994.888744,3008656476 +0,1577,1576,128,4.2084589,0.127933797,1000.51748,3008656476 +0,1578,1577,128,4.40820837,0.129586601,987.756443,3008656476 +0,1579,1578,128,3.70543671,0.129173186,990.917728,3008656476 +0,1580,1579,128,4.14513159,0.141449443,904.91696,3008656476 +0,1581,1580,128,4.37390232,0.144591099,885.255046,3008656476 +0,1582,1581,128,3.99777508,0.129153188,991.071161,3008656476 +0,1583,1582,128,4.07533407,0.12909831,991.492453,3008656476 +0,1584,1583,128,3.9628315,0.128705553,994.518084,3008656476 +0,1585,1584,128,4.12305403,0.128985361,992.360676,3008656476 +0,1586,1585,128,4.29838753,0.128851232,993.393684,3008656476 +0,1587,1586,128,4.62185907,0.130071639,984.073092,3008656476 +0,1588,1587,128,3.73031878,0.143173336,894.021216,3008656476 +0,1589,1588,128,3.86658835,0.142414065,898.78763,3008656476 +0,1590,1589,128,4.25552893,0.130204793,983.066729,3008656476 +0,1591,1590,128,3.54341149,0.130215014,982.989565,3008656476 +0,1592,1591,128,3.51448321,0.130097554,983.877068,3008656476 +0,1593,1592,128,3.85231018,0.128911202,992.931553,3008656476 +0,1594,1593,128,4.55421543,0.129492411,988.474915,3008656476 +0,1595,1594,128,4.33280134,0.128947089,992.655212,3008656476 +0,1596,1595,128,3.97671223,0.144220905,887.527366,3008656476 +0,1597,1596,128,3.82570148,0.144976514,882.901626,3008656476 +0,1598,1597,128,4.22566366,0.12876335,994.071683,3008656476 +0,1599,1598,128,3.79454517,0.129697339,986.913078,3008656476 +0,1600,1599,128,4.01954889,0.129571216,987.873727,3008656476 +0,1601,1600,128,3.22898388,0.129287311,990.043021,3008656476 +0,1602,1601,128,3.6011188,0.131153593,975.954963,3008656476 +0,1603,1602,128,3.80878401,0.131486656,973.482815,3008656476 +0,1604,1603,128,3.68594813,0.147068688,870.341619,3008656476 +0,1605,1604,128,3.44869256,0.146285684,875.000181,3008656476 +0,1606,1605,128,2.83247113,0.132848509,963.503474,3008656476 +0,1607,1606,128,2.78230143,0.13879039,922.254055,3008656476 +0,1608,1607,128,4.04519844,0.144061506,888.509384,3008656476 +0,1609,1608,128,4.06577635,0.143637754,891.130615,3008656476 +0,1610,1609,128,3.75606608,0.134479126,951.820582,3008656476 +0,1611,1610,128,3.73215461,0.148357374,862.781516,3008656476 +0,1612,1611,128,4.21968699,0.144892428,883.414004,3008656476 +0,1613,1612,128,4.20959425,0.131574016,972.83646,3008656476 +0,1614,1613,128,3.50686359,0.132096986,968.985015,3008656476 +0,1615,1614,128,3.31353855,0.132201587,968.218332,3008656476 +0,1616,1615,128,3.38352776,0.121912747,1049.93123,3008656476 +0,1617,1616,128,3.64225173,0.132878928,963.282907,3008656476 +0,1618,1617,128,3.73190689,0.131835893,970.904031,3008656476 +0,1619,1618,128,2.62493014,0.148638728,861.148381,3008656476 +0,1620,1619,128,3.98638368,0.146065743,876.317728,3008656476 +0,1621,1620,128,4.58642197,0.130898132,977.859638,3008656476 +0,1622,1621,128,4.34819174,0.131669513,972.130883,3008656476 +0,1623,1622,128,3.57977152,0.131702954,971.884047,3008656476 +0,1624,1623,128,4.07442188,0.13313872,961.403264,3008656476 +0,1625,1624,128,3.73387504,0.130733235,979.093036,3008656476 +0,1626,1625,128,3.42439485,0.129497099,988.439131,3008656476 +0,1627,1626,128,4.05747223,0.144438947,886.187574,3008656476 +0,1628,1627,128,3.92134738,0.143624752,891.211286,3008656476 +0,1629,1628,128,3.78052235,0.129989684,984.693524,3008656476 +0,1630,1629,128,3.39825678,0.128617067,995.202293,3008656476 +0,1631,1630,128,3.96248674,0.128761674,994.084622,3008656476 +0,1632,1631,128,3.68217492,0.128737262,994.273127,3008656476 +0,1633,1632,128,4.00223112,0.128257886,997.989317,3008656476 +0,1634,1633,128,3.79793167,0.128386023,996.993263,3008656476 +0,1635,1634,128,3.75767183,0.140996713,907.822582,3008656476 +0,1636,1635,128,3.61691904,0.1415163,904.489448,3008656476 +0,1637,1636,128,3.37511015,0.128992083,992.308962,3008656476 +0,1638,1637,128,3.64322519,0.129151011,991.087867,3008656476 +0,1639,1638,128,4.41770411,0.128929852,992.787923,3008656476 +0,1640,1639,128,4.62552404,0.127778993,1001.7296,3008656476 +0,1641,1640,128,3.86153293,0.129274495,990.141172,3008656476 +0,1642,1641,128,2.74340796,0.129376514,989.360403,3008656476 +0,1643,1642,128,3.97416735,0.143210738,893.787727,3008656476 +0,1644,1643,128,3.24937224,0.142067708,900.978849,3008656476 +0,1645,1644,128,3.27362156,0.128454116,996.464761,3008656476 +0,1646,1645,128,2.59694552,0.129355733,989.519344,3008656476 +0,1647,1646,128,4.41256189,0.129345945,989.594223,3008656476 +0,1648,1647,128,3.79442883,0.129594054,987.699636,3008656476 +0,1649,1648,128,3.36063886,0.130225937,982.907115,3008656476 +0,1650,1649,128,3.08192492,0.129559934,987.95975,3008656476 +0,1651,1650,128,3.37224746,0.142243273,899.866808,3008656476 +0,1652,1651,128,3.7223258,0.143755917,890.398132,3008656476 +0,1653,1652,128,3.96204448,0.130181137,983.245368,3008656476 +0,1654,1653,128,3.11314178,0.129098656,991.489795,3008656476 +0,1655,1654,128,3.43352389,0.129847647,985.770655,3008656476 +0,1656,1655,128,3.2950573,0.12960393,987.624372,3008656476 +0,1657,1656,128,3.90921235,0.128725507,994.363922,3008656476 +0,1658,1657,128,3.95983744,0.13012408,983.676503,3008656476 +0,1659,1658,128,4.28004408,0.136029698,940.970993,3008656476 +0,1660,1659,128,4.13392162,0.144139524,888.028463,3008656476 +0,1661,1660,128,2.92758656,0.129512812,988.31921,3008656476 +0,1662,1661,128,3.1664145,0.128744981,994.213514,3008656476 +0,1663,1662,128,3.50082254,0.129434072,988.920444,3008656476 +0,1664,1663,128,4.12621403,0.129861409,985.666188,3008656476 +0,1665,1664,128,4.10722971,0.128473006,996.318246,3008656476 +0,1666,1665,128,3.62941003,0.128873136,993.224841,3008656476 +0,1667,1666,128,3.95142102,0.134430253,952.166623,3008656476 +0,1668,1667,128,4.17760086,0.145602486,879.105869,3008656476 +0,1669,1668,128,4.24206495,0.13049667,980.867941,3008656476 +0,1670,1669,128,3.88828397,0.130018507,984.475233,3008656476 +0,1671,1670,128,4.14995289,0.129617221,987.523101,3008656476 +0,1672,1671,128,2.91781974,0.129937417,985.089614,3008656476 +0,1673,1672,128,3.56359911,0.131618261,972.50943,3008656476 +0,1674,1673,128,3.74612164,0.132054845,969.294235,3008656476 +0,1675,1674,128,4.03880262,0.133027149,962.209601,3008656476 +0,1676,1675,128,3.63877821,0.147500351,867.794545,3008656476 +0,1677,1676,128,3.61083174,0.131956599,970.015907,3008656476 +0,1678,1677,128,4.34695959,0.133380763,959.658628,3008656476 +0,1679,1678,128,4.17789555,0.132438838,966.483865,3008656476 +0,1680,1679,128,4.26718712,0.133055033,962.007954,3008656476 +0,1681,1680,128,3.90956235,0.13904239,920.582565,3008656476 +0,1682,1681,128,4.35538673,0.156050554,820.247008,3008656476 +0,1683,1682,128,4.11876583,0.145930482,877.129975,3008656476 +0,1684,1683,128,3.94972539,0.132533733,965.791856,3008656476 +0,1685,1684,128,3.64505434,0.132699872,964.582694,3008656476 +0,1686,1685,128,2.89944267,0.133445524,959.192906,3008656476 +0,1687,1686,128,4.05281878,0.132053544,969.303785,3008656476 +0,1688,1687,128,3.54181671,0.131292587,974.92176,3008656476 +0,1689,1688,128,3.57557416,0.13251387,965.936622,3008656476 +0,1690,1689,128,3.9140172,0.146152789,875.795808,3008656476 +0,1691,1690,128,4.19007587,0.14412791,888.100022,3008656476 +0,1692,1691,128,4.19448805,0.13426751,953.320725,3008656476 +0,1693,1692,128,3.83682966,0.130876684,978.019889,3008656476 +0,1694,1693,128,4.20380878,0.131192088,975.668594,3008656476 +0,1695,1694,128,4.31582212,0.130196453,983.129702,3008656476 +0,1696,1695,128,4.24742079,0.130890058,977.919958,3008656476 +0,1697,1696,128,4.06013632,0.130063064,984.137972,3008656476 +0,1698,1697,128,4.169981,0.143465949,892.197772,3008656476 +0,1699,1698,128,4.65900803,0.145506304,879.686972,3008656476 +0,1700,1699,128,4.23458385,0.128624457,995.145115,3008656476 +0,1701,1700,128,4.20741892,0.128226062,998.237004,3008656476 +0,1702,1701,128,3.98421192,0.12869002,994.638123,3008656476 +0,1703,1702,128,2.64715385,0.127661815,1002.64907,3008656476 +0,1704,1703,128,3.06614017,0.128182329,998.577581,3008656476 +0,1705,1704,128,2.92085433,0.128754943,994.13659,3008656476 +0,1706,1705,128,3.08918619,0.142520349,898.117363,3008656476 +0,1707,1706,128,3.55206966,0.142264068,899.735273,3008656476 +0,1708,1707,128,3.61853957,0.127722447,1002.17309,3008656476 +0,1709,1708,128,4.43264627,0.128262993,997.94958,3008656476 +0,1710,1709,128,3.62577963,0.129787754,986.225557,3008656476 +0,1711,1710,128,4.18269825,0.128857839,993.342749,3008656476 +0,1712,1711,128,3.79350305,0.129041636,991.927908,3008656476 +0,1713,1712,128,3.30070782,0.129172388,990.92385,3008656476 +0,1714,1713,128,3.62014818,0.140443252,911.400143,3008656476 +0,1715,1714,128,3.86442399,0.145193606,881.581521,3008656476 +0,1716,1715,128,3.56851959,0.129025925,992.048691,3008656476 +0,1717,1716,128,3.51590037,0.130387435,981.689685,3008656476 +0,1718,1717,128,4.30152321,0.129485897,988.524642,3008656476 +0,1719,1718,128,3.1610353,0.130470059,981.068001,3008656476 +0,1720,1719,128,3.85180211,0.129724512,986.706352,3008656476 +0,1721,1720,128,4.37529278,0.130074186,984.053823,3008656476 +0,1722,1721,128,3.64543962,0.145047652,882.468611,3008656476 +0,1723,1722,128,4.25804567,0.1448683,883.561138,3008656476 +0,1724,1723,128,4.11207008,0.12913492,991.211363,3008656476 +0,1725,1724,128,4.56000137,0.129400013,989.180735,3008656476 +0,1726,1725,128,3.86382151,0.128976243,992.430831,3008656476 +0,1727,1726,128,4.58100939,0.129524526,988.229828,3008656476 +0,1728,1727,128,4.13121223,0.12879772,993.806412,3008656476 +0,1729,1728,128,3.93355513,0.12859917,995.340794,3008656476 +0,1730,1729,128,4.21486998,0.143829833,889.940545,3008656476 +0,1731,1730,128,3.28048086,0.144382817,886.532086,3008656476 +0,1732,1731,128,3.47886658,0.130475115,981.029984,3008656476 +0,1733,1732,128,3.81890821,0.129903688,985.345389,3008656476 +0,1734,1733,128,3.38127995,0.130644631,979.757063,3008656476 +0,1735,1734,128,4.1068244,0.131069687,976.579733,3008656476 +0,1736,1735,128,3.05458331,0.131648865,972.283354,3008656476 +0,1737,1736,128,3.85242534,0.131798762,971.177559,3008656476 +0,1738,1737,128,2.92287588,0.135286393,946.140977,3008656476 +0,1739,1738,128,3.35372758,0.145900561,877.309855,3008656476 +0,1740,1739,128,2.89681625,0.132979626,962.553467,3008656476 +0,1741,1740,128,3.06749058,0.132407223,966.714633,3008656476 +0,1742,1741,128,3.39676023,0.138633954,923.294736,3008656476 +0,1743,1742,128,3.77687502,0.142420561,898.746635,3008656476 +0,1744,1743,128,3.75534391,0.14399507,888.919322,3008656476 +0,1745,1744,128,4.32158947,0.152987741,836.668345,3008656476 +0,1746,1745,128,2.7961936,0.149306209,857.298574,3008656476 +0,1747,1746,128,4.28311825,0.133080834,961.821445,3008656476 +0,1748,1747,128,4.60371351,0.13331277,960.148079,3008656476 +0,1749,1748,128,3.64116621,0.144354624,886.705229,3008656476 +0,1750,1749,128,4.24262905,0.134743445,949.953447,3008656476 +0,1751,1750,128,3.48873758,0.133153449,961.296917,3008656476 +0,1752,1751,128,4.23603487,0.131709588,971.835095,3008656476 +0,1753,1752,128,3.5514853,0.145824159,877.769506,3008656476 +0,1754,1753,128,4.38328314,0.147747369,866.343684,3008656476 +0,1755,1754,128,4.06281614,0.132703788,964.55423,3008656476 +0,1756,1755,128,4.45420313,0.132721658,964.424359,3008656476 +0,1757,1756,128,3.80393386,0.131259974,975.16399,3008656476 +0,1758,1757,128,3.31779885,0.131553046,972.991534,3008656476 +0,1759,1758,128,3.46292806,0.131718953,971.765999,3008656476 +0,1760,1759,128,3.85326314,0.130609653,980.019448,3008656476 +0,1761,1760,128,4.26807022,0.135214283,946.645555,3008656476 +0,1762,1761,128,3.28914022,0.145634087,878.915113,3008656476 +0,1763,1762,128,4.66275263,0.131532288,973.145088,3008656476 +0,1764,1763,128,3.56335473,0.131200681,975.604692,3008656476 +0,1765,1764,128,3.57687759,0.132285801,967.601958,3008656476 +0,1766,1765,128,2.81738544,0.132844147,963.535112,3008656476 +0,1767,1766,128,3.89884949,0.131435012,973.86532,3008656476 +0,1768,1767,128,4.26374769,0.145728726,878.344329,3008656476 +0,1769,1768,128,3.64178777,0.128336414,997.378655,3008656476 +0,1770,1769,128,3.51285315,0.133518829,958.666287,3008656476 +0,1771,1770,128,3.81004286,0.128724355,994.372821,3008656476 +0,1772,1771,128,3.5530529,0.129530888,988.18129,3008656476 +0,1773,1772,128,3.21667147,0.130264962,982.612654,3008656476 +0,1774,1773,128,3.2688756,0.128534139,995.84438,3008656476 +0,1775,1774,128,3.16578722,0.129090267,991.554228,3008656476 +0,1776,1775,128,3.64797688,0.138292192,925.576478,3008656476 +0,1777,1776,128,3.66972542,0.127640696,1002.81496,3008656476 +0,1778,1777,128,3.37318683,0.140979206,907.935316,3008656476 +0,1779,1778,128,3.00336099,0.130918711,977.705929,3008656476 +0,1780,1779,128,3.99364948,0.129770499,986.356691,3008656476 +0,1781,1780,128,3.17580056,0.129689854,986.970037,3008656476 +0,1782,1781,128,2.46641994,0.129895153,985.410133,3008656476 +0,1783,1782,128,2.60597014,0.129835147,985.865561,3008656476 +0,1784,1783,128,3.1574297,0.137457302,931.198257,3008656476 +0,1785,1784,128,3.5531168,0.128313046,997.560295,3008656476 +0,1786,1785,128,3.5988152,0.137328753,932.069921,3008656476 +0,1787,1786,128,2.79337621,0.130328285,982.135229,3008656476 +0,1788,1787,128,3.13799453,0.129413121,989.080543,3008656476 +0,1789,1788,128,2.8936193,0.129170397,990.939124,3008656476 +0,1790,1789,128,3.28730679,0.129455534,988.756495,3008656476 +0,1791,1790,128,2.65730333,0.129320095,989.792035,3008656476 +0,1792,1791,128,4.02463436,0.140369568,911.878563,3008656476 +0,1793,1792,128,3.6141367,0.125432799,1020.46674,3008656476 +0,1794,1793,128,3.33988023,0.140407544,911.631928,3008656476 +0,1795,1794,128,3.40836883,0.131518637,973.246096,3008656476 +0,1796,1795,128,2.48752642,0.132543994,965.717089,3008656476 +0,1797,1796,128,3.56966138,0.130462829,981.12237,3008656476 +0,1798,1797,128,3.88469267,0.129635061,987.387201,3008656476 +0,1799,1798,128,3.66562152,0.130419216,981.450464,3008656476 +0,1800,1799,128,3.11883187,0.138525329,924.01874,3008656476 +0,1801,1800,128,2.92507291,0.128105054,999.179939,3008656476 +0,1802,1801,128,3.43981218,0.138403276,924.8336,3008656476 +0,1803,1802,128,2.69654655,0.130229324,982.881551,3008656476 +0,1804,1803,128,3.57726431,0.130505574,980.801019,3008656476 +0,1805,1804,128,3.00951457,0.129413339,989.078877,3008656476 +0,1806,1805,128,3.91267419,0.128746018,994.205506,3008656476 +0,1807,1806,128,3.42373037,0.129516478,988.291235,3008656476 +0,1808,1807,128,3.84354472,0.139384516,918.322951,3008656476 +0,1809,1808,128,3.56331062,0.124957818,1024.34567,3008656476 +0,1810,1809,128,4.64262676,0.14186755,902.250021,3008656476 +0,1811,1810,128,3.40605879,0.130247257,982.746224,3008656476 +0,1812,1811,128,3.29650116,0.13133073,974.638609,3008656476 +0,1813,1812,128,2.95404339,0.133244761,960.638145,3008656476 +0,1814,1813,128,2.84650564,0.130163639,983.377547,3008656476 +0,1815,1814,128,3.84051752,0.129270336,990.173028,3008656476 +0,1816,1815,128,4.18112993,0.144295244,887.070124,3008656476 +0,1817,1816,128,3.3783834,0.129629831,987.427038,3008656476 +0,1818,1817,128,3.63790703,0.134328202,952.889997,3008656476 +0,1819,1818,128,2.48072791,0.130519304,980.697844,3008656476 +0,1820,1819,128,2.3650949,0.129081388,991.622433,3008656476 +0,1821,1820,128,3.11714911,0.130091897,983.919852,3008656476 +0,1822,1821,128,3.73876047,0.129855765,985.709029,3008656476 +0,1823,1822,128,4.63114357,0.129282515,990.079749,3008656476 +0,1824,1823,128,4.01303053,0.142837264,896.124698,3008656476 +0,1825,1824,128,3.35269284,0.127595246,1003.17217,3008656476 +0,1826,1825,128,2.93015623,0.133328795,960.032677,3008656476 +0,1827,1826,128,4.00084829,0.130009847,984.540809,3008656476 +0,1828,1827,128,3.0885396,0.130256286,982.678103,3008656476 +0,1829,1828,128,3.26497316,0.129756235,986.465121,3008656476 +0,1830,1829,128,3.50148702,0.129349539,989.566727,3008656476 +0,1831,1830,128,3.40848732,0.129038316,991.953429,3008656476 +0,1832,1831,128,3.90539169,0.13890595,921.486805,3008656476 +0,1833,1832,128,3.35353231,0.126691575,1010.32764,3008656476 +0,1834,1833,128,3.46328425,0.139226659,919.364157,3008656476 +0,1835,1834,128,3.96590114,0.130767507,978.836432,3008656476 +0,1836,1835,128,3.49106669,0.129727003,986.687405,3008656476 +0,1837,1836,128,2.68596148,0.129869199,985.607065,3008656476 +0,1838,1837,128,4.04524469,0.129751701,986.499591,3008656476 +0,1839,1838,128,4.26858902,0.128299293,997.667228,3008656476 +0,1840,1839,128,4.03364849,0.135194069,946.787096,3008656476 +0,1841,1840,128,3.95721459,0.12617681,1014.44949,3008656476 +0,1842,1841,128,3.95952296,0.141261843,906.118717,3008656476 +0,1843,1842,128,3.98515987,0.1297272,986.685907,3008656476 +0,1844,1843,128,4.10351753,0.129672416,987.102762,3008656476 +0,1845,1844,128,3.97092676,0.130535484,980.576285,3008656476 +0,1846,1845,128,2.84008932,0.128621033,995.171606,3008656476 +0,1847,1846,128,3.32113981,0.129204233,990.679617,3008656476 +0,1848,1847,128,2.74967146,0.129111051,991.39461,3008656476 +0,1849,1848,128,3.57571244,0.132887876,963.218044,3008656476 +0,1850,1849,128,3.85492921,0.144881936,883.477979,3008656476 +0,1851,1850,128,4.32450724,0.129320734,989.787144,3008656476 +0,1852,1851,128,3.47324872,0.129364544,989.451948,3008656476 +0,1853,1852,128,3.05147505,0.128867475,993.268472,3008656476 +0,1854,1853,128,3.47587872,0.128651281,994.937625,3008656476 +0,1855,1854,128,4.26299763,0.128086403,999.325432,3008656476 +0,1856,1855,128,3.65891147,0.128841862,993.465928,3008656476 +0,1857,1856,128,3.33981133,0.132594763,965.347327,3008656476 +0,1858,1857,128,2.67582846,0.146029123,876.537484,3008656476 +0,1859,1858,128,4.0108366,0.128603539,995.30698,3008656476 +0,1860,1859,128,3.09494781,0.128495998,996.139973,3008656476 +0,1861,1860,128,3.85356855,0.128606133,995.286904,3008656476 +0,1862,1861,128,3.87211561,0.128509459,996.03563,3008656476 +0,1863,1862,128,3.78604841,0.127751851,1001.94243,3008656476 +0,1864,1863,128,3.99201393,0.129681957,987.030139,3008656476 +0,1865,1864,128,4.21043158,0.137255273,932.568908,3008656476 +0,1866,1865,128,3.7509923,0.141452643,904.896489,3008656476 +0,1867,1866,128,3.72106409,0.128425834,996.684203,3008656476 +0,1868,1867,128,4.58264589,0.129334448,989.682192,3008656476 +0,1869,1868,128,3.68059683,0.127677604,1002.52508,3008656476 +0,1870,1869,128,3.45750904,0.129066331,991.738116,3008656476 +0,1871,1870,128,3.91024446,0.129210344,990.632762,3008656476 +0,1872,1871,128,3.16393518,0.128688452,994.650243,3008656476 +0,1873,1872,128,3.78454256,0.140572861,910.559827,3008656476 +0,1874,1873,128,3.50900578,0.140824106,908.935293,3008656476 +0,1875,1874,128,4.11335945,0.128283486,997.79016,3008656476 +0,1876,1875,128,3.387429,0.129383502,989.306967,3008656476 +0,1877,1876,128,3.11803555,0.12960671,987.603188,3008656476 +0,1878,1877,128,3.13449907,0.129135374,991.207878,3008656476 +0,1879,1878,128,3.00876927,0.129635759,987.381884,3008656476 +0,1880,1879,128,2.39889836,0.128559923,995.644654,3008656476 +0,1881,1880,128,3.1179893,0.142122428,900.631954,3008656476 +0,1882,1881,128,3.5674758,0.14137742,905.377959,3008656476 +0,1883,1882,128,3.52538633,0.130286963,982.446724,3008656476 +0,1884,1883,128,2.8908534,0.13018257,983.234545,3008656476 +0,1885,1884,128,3.18786907,0.129654383,987.240053,3008656476 +0,1886,1885,128,3.18186975,0.129944325,985.037246,3008656476 +0,1887,1886,128,3.58570552,0.129566672,987.908372,3008656476 +0,1888,1887,128,2.72215581,0.129024559,992.059194,3008656476 +0,1889,1888,128,2.90955949,0.137043837,934.007707,3008656476 +0,1890,1889,128,4.22887993,0.146040984,876.466294,3008656476 +0,1891,1890,128,3.97347951,0.128784892,993.905403,3008656476 +0,1892,1891,128,3.48776555,0.128911758,992.92727,3008656476 +0,1893,1892,128,3.72088718,0.128768879,994.029,3008656476 +0,1894,1893,128,3.02198315,0.12979899,986.140185,3008656476 +0,1895,1894,128,3.39520764,0.129500757,988.411211,3008656476 +0,1896,1895,128,3.60697055,0.129206258,990.66409,3008656476 +0,1897,1896,128,3.89514542,0.133825125,956.472112,3008656476 +0,1898,1897,128,3.71968007,0.143153055,894.147876,3008656476 +0,1899,1898,128,4.07131624,0.129444997,988.836981,3008656476 +0,1900,1899,128,5.43036842,0.129258732,990.261919,3008656476 +0,1901,1900,128,4.09795713,0.129682703,987.024461,3008656476 +0,1902,1901,128,3.34454751,0.129832285,985.887293,3008656476 +0,1903,1902,128,3.55975986,0.129508149,988.354795,3008656476 +0,1904,1903,128,4.0914135,0.129521216,988.255082,3008656476 +0,1905,1904,128,2.58046031,0.134966248,948.385259,3008656476 +0,1906,1905,128,4.01015997,0.142012595,901.328505,3008656476 +0,1907,1906,128,2.70450115,0.12876738,994.040571,3008656476 +0,1908,1907,128,3.08566403,0.129220491,990.554973,3008656476 +0,1909,1908,128,3.6884954,0.128814522,993.676784,3008656476 +0,1910,1909,128,3.36414695,0.128504879,996.07113,3008656476 +0,1911,1910,128,3.52743125,0.12983296,985.882167,3008656476 +0,1912,1911,128,3.38101101,0.129223966,990.528336,3008656476 +0,1913,1912,128,3.4499712,0.139353151,918.529643,3008656476 +0,1914,1913,128,3.4837184,0.144137653,888.03999,3008656476 +0,1915,1914,128,3.69627643,0.129566721,987.907998,3008656476 +0,1916,1915,128,2.77528811,0.130165707,983.361923,3008656476 +0,1917,1916,128,3.81486893,0.129994352,984.658164,3008656476 +0,1918,1917,128,3.25283527,0.130079985,984.009954,3008656476 +0,1919,1918,128,3.24749446,0.131343808,974.541563,3008656476 +0,1920,1919,128,3.00179625,0.131731753,971.671576,3008656476 +0,1921,1920,128,3.31234622,0.136331161,938.890266,3008656476 +0,1922,1921,128,3.67163467,0.143301284,893.22298,3008656476 +0,1923,1922,128,3.62617159,0.132896971,963.152125,3008656476 +0,1924,1923,128,3.62403059,0.132843874,963.537092,3008656476 +0,1925,1924,128,3.35176229,0.134409255,952.315374,3008656476 +0,1926,1925,128,2.81516266,0.135904152,941.840246,3008656476 +0,1927,1926,128,3.47437716,0.144316848,886.937331,3008656476 +0,1928,1927,128,3.6380899,0.147336461,868.759838,3008656476 +0,1929,1928,128,4.07745504,0.146903707,871.319061,3008656476 +0,1930,1929,128,4.99062061,0.132933735,962.885757,3008656476 +0,1931,1930,128,4.36049128,0.132821603,963.698654,3008656476 +0,1932,1931,128,2.59413147,0.131742457,971.592628,3008656476 +0,1933,1932,128,2.63111854,0.13201402,969.593987,3008656476 +0,1934,1933,128,3.10367012,0.132165174,968.485087,3008656476 +0,1935,1934,128,3.09122348,0.132239819,967.938409,3008656476 +0,1936,1935,128,2.54534411,0.145361287,880.564576,3008656476 +0,1937,1936,128,3.92315769,0.143598598,891.373605,3008656476 +0,1938,1937,128,3.55824089,0.130937907,977.562594,3008656476 +0,1939,1938,128,3.77842021,0.130535733,980.574415,3008656476 +0,1940,1939,128,3.04076862,0.132730087,964.363114,3008656476 +0,1941,1940,128,2.90164232,0.130422796,981.423524,3008656476 +0,1942,1941,128,2.31118989,0.129890015,985.449112,3008656476 +0,1943,1942,128,4.21075344,0.12941854,989.039128,3008656476 +0,1944,1943,128,3.23864555,0.142498301,898.256324,3008656476 +0,1945,1944,128,3.67553997,0.142231381,899.942046,3008656476 +0,1946,1945,128,3.86800003,0.128917631,992.882036,3008656476 +0,1947,1946,128,2.45276952,0.128088203,999.311389,3008656476 +0,1948,1947,128,2.95144725,0.130096745,983.883186,3008656476 +0,1949,1948,128,3.89957213,0.128309416,997.588517,3008656476 +0,1950,1949,128,3.54404998,0.128947824,992.649554,3008656476 +0,1951,1950,128,4.18019199,0.127760296,1001.8762,3008656476 +0,1952,1951,128,4.19533062,0.142589484,897.681908,3008656476 +0,1953,1952,128,3.45467138,0.141917212,901.934291,3008656476 +0,1954,1953,128,3.30684781,0.129283744,990.070337,3008656476 +0,1955,1954,128,3.57407045,0.129186804,990.813272,3008656476 +0,1956,1955,128,3.33154726,0.128685588,994.672379,3008656476 +0,1957,1956,128,3.94767499,0.128908969,992.948753,3008656476 +0,1958,1957,128,3.52309513,0.129154012,991.064838,3008656476 +0,1959,1958,128,3.23900509,0.129570955,987.875716,3008656476 +0,1960,1959,128,2.65550399,0.144865919,883.57566,3008656476 +0,1961,1960,128,3.63614774,0.142925725,895.570059,3008656476 +0,1962,1961,128,3.42267132,0.129990234,984.689358,3008656476 +0,1963,1962,128,3.4620924,0.130909796,977.772511,3008656476 +0,1964,1963,128,2.62616611,0.12918033,990.862928,3008656476 +0,1965,1964,128,2.67908525,0.12963191,987.411201,3008656476 +0,1966,1965,128,3.09029889,0.130378499,981.756969,3008656476 +0,1967,1966,128,3.52631712,0.129553024,988.012445,3008656476 +0,1968,1967,128,3.77014041,0.144881179,883.482595,3008656476 +0,1969,1968,128,3.96537399,0.147055107,870.421998,3008656476 +0,1970,1969,128,3.27366424,0.129567733,987.900282,3008656476 +0,1971,1970,128,3.30554795,0.129563901,987.929501,3008656476 +0,1972,1971,128,3.53236651,0.129909636,985.300274,3008656476 +0,1973,1972,128,4.1430335,0.130197649,983.120671,3008656476 +0,1974,1973,128,3.38930583,0.130556467,980.418687,3008656476 +0,1975,1974,128,1.7315774,0.13132856,974.654713,3008656476 +0,1976,1975,128,2.68681383,0.148145116,864.017684,3008656476 +0,1977,1976,128,2.89660931,0.14658129,873.235595,3008656476 +0,1978,1977,128,2.87861109,0.138166894,926.415846,3008656476 +0,1979,1978,128,3.32933092,0.132705386,964.542615,3008656476 +0,1980,1979,128,3.44003105,0.13248146,966.172927,3008656476 +0,1981,1980,128,3.98920584,0.132634656,965.056976,3008656476 +0,1982,1981,128,3.94471288,0.131972647,969.897952,3008656476 +0,1983,1982,128,3.36993718,0.143412449,892.530606,3008656476 +0,1984,1983,128,4.09919548,0.145230366,881.358379,3008656476 +0,1985,1984,128,2.84627151,0.131385979,974.228765,3008656476 +0,1986,1985,128,2.65846968,0.132023403,969.525077,3008656476 +0,1987,1986,128,2.59364605,0.132840746,963.55978,3008656476 +0,1988,1987,128,3.4551971,0.130300454,982.345004,3008656476 +0,1989,1988,128,3.7224803,0.130268631,982.584979,3008656476 +0,1990,1989,128,4.15794706,0.130008298,984.55254,3008656476 +0,1991,1990,128,2.86384988,0.142634859,897.396337,3008656476 +0,1992,1991,128,2.52828741,0.14280757,896.311029,3008656476 +0,1993,1992,128,2.85144305,0.129144277,991.139545,3008656476 +0,1994,1993,128,3.52740431,0.129637664,987.367375,3008656476 +0,1995,1994,128,3.2124958,0.128969485,992.482834,3008656476 +0,1996,1995,128,3.21569276,0.128821598,993.622203,3008656476 +0,1997,1996,128,3.1314528,0.128888724,993.104719,3008656476 +0,1998,1997,128,3.60082555,0.128814177,993.679446,3008656476 +0,1999,1998,128,3.55517459,0.145877932,877.445946,3008656476 +0,2000,1999,128,4.67119312,0.145036753,882.534925,3008656476 +0,2001,2000,128,3.37301517,0.128287876,997.756016,3008656476 +0,2002,2001,128,2.64949775,0.129853165,985.728765,3008656476 +0,2003,2002,128,3.56014872,0.130237322,982.821192,3008656476 +0,2004,2003,128,3.37900281,0.130266993,982.597334,3008656476 +0,2005,2004,128,3.12386298,0.1290656,991.743733,3008656476 +0,2006,2005,128,2.88128996,0.130201573,983.091041,3008656476 +0,2007,2006,128,3.07684112,0.143883016,889.611599,3008656476 +0,2008,2007,128,3.04528499,0.144140944,888.019715,3008656476 +0,2009,2008,128,3.2957685,0.129762901,986.414445,3008656476 +0,2010,2009,128,3.18149209,0.12847584,996.296269,3008656476 +0,2011,2010,128,3.27436447,0.128892876,993.072728,3008656476 +0,2012,2011,128,4.19042826,0.129106261,991.431392,3008656476 +0,2013,2012,128,4.63499308,0.129756618,986.462209,3008656476 +0,2014,2013,128,4.08512831,0.129413081,989.080849,3008656476 +0,2015,2014,128,4.58552027,0.14297324,895.27243,3008656476 +0,2016,2015,128,3.63072562,0.159886608,800.567362,3008656476 +0,2017,2016,128,3.77202702,0.17267319,741.284736,3008656476 +0,2018,2017,128,4.46016407,0.130833809,978.340392,3008656476 +0,2019,2018,128,3.8981123,0.131732919,971.662975,3008656476 +0,2020,2019,128,3.7987802,0.13211257,968.870714,3008656476 +0,2021,2020,128,3.38778162,0.132107521,968.907743,3008656476 +0,2022,2021,128,4.1059041,0.146415293,874.225618,3008656476 +0,2023,2022,128,4.17853165,0.145880859,877.42834,3008656476 +0,2024,2023,128,4.09116983,0.133780528,956.790961,3008656476 +0,2025,2024,128,4.35385609,0.132805351,963.816586,3008656476 +0,2026,2025,128,4.01823616,0.133241727,960.660019,3008656476 +0,2027,2026,128,4.01944923,0.139114203,920.107345,3008656476 +0,2028,2027,128,4.31612682,0.143822309,889.987102,3008656476 +0,2029,2028,128,4.06302643,0.144055542,888.546169,3008656476 +0,2030,2029,128,4.42394209,0.152083754,841.641508,3008656476 +0,2031,2030,128,4.20422888,0.155067914,825.444779,3008656476 +0,2032,2031,128,4.08914614,0.137299875,932.265962,3008656476 +0,2033,2032,128,3.28013325,0.132711002,964.501798,3008656476 +0,2034,2033,128,3.75290489,0.133594646,958.122229,3008656476 +0,2035,2034,128,3.4723618,0.132904811,963.095309,3008656476 +0,2036,2035,128,4.30220795,0.133242157,960.656919,3008656476 +0,2037,2036,128,3.02592111,0.133037781,962.132704,3008656476 +0,2038,2037,128,3.29482937,0.139155229,919.836077,3008656476 +0,2039,2038,128,3.54083753,0.141876343,902.194103,3008656476 +0,2040,2039,128,4.03338766,0.133424668,959.342841,3008656476 +0,2041,2040,128,3.71138692,0.132029524,969.480129,3008656476 +0,2042,2041,128,4.95320225,0.131875781,970.610366,3008656476 +0,2043,2042,128,4.73078775,0.133975427,955.399082,3008656476 +0,2044,2043,128,4.8619833,0.131582618,972.772863,3008656476 +0,2045,2044,128,4.16638851,0.149458004,856.42787,3008656476 +0,2046,2045,128,3.90711689,0.147722422,866.48999,3008656476 +0,2047,2046,128,3.82658291,0.129884839,985.488383,3008656476 +0,2048,2047,128,3.92360449,0.128244494,998.093532,3008656476 +0,2049,2048,128,4.27091074,0.129484151,988.537972,3008656476 +0,2050,2049,128,4.0265975,0.132753322,964.194327,3008656476 +0,2051,2050,128,4.01466179,0.129112281,991.385165,3008656476 +0,2052,2051,128,4.2676959,0.129552129,988.019271,3008656476 +0,2053,2052,128,3.43072844,0.143955863,889.161423,3008656476 +0,2054,2053,128,4.09656715,0.146758585,872.180663,3008656476 +0,2055,2054,128,4.58084059,0.129225575,990.516003,3008656476 +0,2056,2055,128,3.54148316,0.129043762,991.911566,3008656476 +0,2057,2056,128,3.74957371,0.129716049,986.770727,3008656476 +0,2058,2057,128,4.07823133,0.129840225,985.827004,3008656476 +0,2059,2058,128,3.68858457,0.129643539,987.322631,3008656476 +0,2060,2059,128,3.77447557,0.129973013,984.819826,3008656476 +0,2061,2060,128,2.9013114,0.142504299,898.218516,3008656476 +0,2062,2061,128,4.23587656,0.134649894,950.613448,3008656476 +0,2063,2062,128,3.93016481,0.128986668,992.35062,3008656476 +0,2064,2063,128,3.43384123,0.130021703,984.451034,3008656476 +0,2065,2064,128,3.55125499,0.12989559,985.406818,3008656476 +0,2066,2065,128,3.37175488,0.129087998,991.571656,3008656476 +0,2067,2066,128,3.50644803,0.130440244,981.292246,3008656476 +0,2068,2067,128,3.43726635,0.129569408,987.887511,3008656476 +0,2069,2068,128,3.60779214,0.143889551,889.571196,3008656476 +0,2070,2069,128,3.55651307,0.142365532,899.094031,3008656476 +0,2071,2070,128,4.24318123,0.128709062,994.490971,3008656476 +0,2072,2071,128,4.25557518,0.129519231,988.270228,3008656476 +0,2073,2072,128,3.64196897,0.12889872,993.027704,3008656476 +0,2074,2073,128,4.05236769,0.129237915,990.421425,3008656476 +0,2075,2074,128,3.44636178,0.129086554,991.582748,3008656476 +0,2076,2075,128,4.45572138,0.129534844,988.151111,3008656476 +0,2077,2076,128,4.01647377,0.144048457,888.589872,3008656476 +0,2078,2077,128,3.62166977,0.143171846,894.03052,3008656476 +0,2079,2078,128,3.27823019,0.130292537,982.404694,3008656476 +0,2080,2079,128,4.16225529,0.130343785,982.018437,3008656476 +0,2081,2080,128,3.76330113,0.13028843,982.435662,3008656476 +0,2082,2081,128,3.80034828,0.131339348,974.574657,3008656476 +0,2083,2082,128,3.55041361,0.131814176,971.063992,3008656476 +0,2084,2083,128,3.86384034,0.132164801,968.48782,3008656476 +0,2085,2084,128,3.00855517,0.143740874,890.491316,3008656476 +0,2086,2085,128,3.86622167,0.144862357,883.597386,3008656476 +0,2087,2086,128,3.68624377,0.131924671,970.250667,3008656476 +0,2088,2087,128,3.07730627,0.133455775,959.119229,3008656476 +0,2089,2088,128,3.22028136,0.133303435,960.215316,3008656476 +0,2090,2089,128,3.992625,0.132267638,967.734829,3008656476 +0,2091,2090,128,3.4704721,0.138492769,924.235979,3008656476 +0,2092,2091,128,2.94233346,0.140686767,909.822599,3008656476 +0,2093,2092,128,2.69233012,0.145574619,879.274154,3008656476 +0,2094,2093,128,2.5283432,0.153026179,836.458185,3008656476 +0,2095,2094,128,3.84927678,0.138523619,924.030147,3008656476 +0,2096,2095,128,2.72752547,0.135593083,944.000956,3008656476 +0,2097,2096,128,3.55917144,0.132840118,963.564335,3008656476 +0,2098,2097,128,3.62233233,0.131840914,970.867056,3008656476 +0,2099,2098,128,3.6035285,0.133674588,957.549239,3008656476 +0,2100,2099,128,3.54702687,0.14382958,889.942111,3008656476 +0,2101,2100,128,3.33582616,0.146950798,871.039843,3008656476 +0,2102,2101,128,3.4296236,0.133072966,961.878313,3008656476 +0,2103,2102,128,3.13136744,0.131645117,972.311035,3008656476 +0,2104,2103,128,2.52502799,0.13241095,966.687423,3008656476 +0,2105,2104,128,3.40262794,0.131723093,971.735457,3008656476 +0,2106,2105,128,2.99317241,0.13081636,978.470889,3008656476 +0,2107,2106,128,2.83373404,0.131579885,972.793068,3008656476 +0,2108,2107,128,3.90452027,0.146615888,873.029531,3008656476 +0,2109,2108,128,3.26158667,0.144625091,885.04698,3008656476 +0,2110,2109,128,3.74917102,0.129662731,987.176493,3008656476 +0,2111,2110,128,3.54781842,0.132900797,963.124397,3008656476 +0,2112,2111,128,3.34483838,0.129599637,987.657087,3008656476 +0,2113,2112,128,3.39141846,0.129489737,988.495328,3008656476 +0,2114,2113,128,3.60727191,0.12973521,986.624988,3008656476 +0,2115,2114,128,2.44476509,0.12877273,993.999273,3008656476 +0,2116,2115,128,4.09599686,0.14393511,889.289625,3008656476 +0,2117,2116,128,3.03679299,0.142514678,898.153101,3008656476 +0,2118,2117,128,3.6073029,0.128924057,992.832548,3008656476 +0,2119,2118,128,3.45283532,0.12848669,996.212137,3008656476 +0,2120,2119,128,4.25264168,0.128510726,996.02581,3008656476 +0,2121,2120,128,2.28493166,0.128905913,992.972293,3008656476 +0,2122,2121,128,2.70023704,0.128856415,993.353726,3008656476 +0,2123,2122,128,2.92850232,0.128315689,997.539747,3008656476 +0,2124,2123,128,2.3115108,0.143340379,892.979361,3008656476 +0,2125,2124,128,2.99880886,0.141667247,903.52571,3008656476 +0,2126,2125,128,1.90388238,0.128733795,994.299904,3008656476 +0,2127,2126,128,2.25779676,0.128852595,993.383176,3008656476 +0,2128,2127,128,4.23654079,0.129672795,987.099877,3008656476 +0,2129,2128,128,3.7835238,0.129813588,986.02929,3008656476 +0,2130,2129,128,2.78835249,0.129532282,988.170655,3008656476 +0,2131,2130,128,3.91246128,0.13046949,981.07228,3008656476 +0,2132,2131,128,3.02825165,0.142256188,899.785112,3008656476 +0,2133,2132,128,3.67679071,0.142621331,897.481457,3008656476 +0,2134,2133,128,3.08851695,0.129529622,988.190948,3008656476 +0,2135,2134,128,3.98352003,0.12919744,990.731705,3008656476 +0,2136,2135,128,3.04309607,0.124330781,1029.51175,3008656476 +0,2137,2136,128,3.8008461,0.129675601,987.078518,3008656476 +0,2138,2137,128,3.44312406,0.129422694,989.007384,3008656476 +0,2139,2138,128,3.61960912,0.129165306,990.978181,3008656476 +0,2140,2139,128,4.68673706,0.147681576,866.729645,3008656476 +0,2141,2140,128,3.81458759,0.145981372,876.824202,3008656476 +0,2142,2141,128,3.5620234,0.129978471,984.778472,3008656476 +0,2143,2142,128,3.283108,0.130909559,977.774282,3008656476 +0,2144,2143,128,3.01269341,0.132525926,965.84875,3008656476 +0,2145,2144,128,3.74759459,0.131841107,970.865634,3008656476 +0,2146,2145,128,4.0548439,0.132156763,968.546725,3008656476 +0,2147,2146,128,3.73792934,0.132605148,965.271725,3008656476 +0,2148,2147,128,3.5632081,0.143790338,890.184986,3008656476 +0,2149,2148,128,3.70448732,0.152180995,841.103713,3008656476 +0,2150,2149,128,4.22088814,0.134718138,950.131897,3008656476 +0,2151,2150,128,4.26422596,0.133288621,960.322037,3008656476 +0,2152,2151,128,3.50226045,0.132295835,967.52857,3008656476 +0,2153,2152,128,3.56908941,0.132307623,967.442367,3008656476 +0,2154,2153,128,3.22060108,0.132989845,962.479504,3008656476 +0,2155,2154,128,2.91589785,0.144602327,885.186308,3008656476 +0,2156,2155,128,3.9942112,0.144206554,887.61569,3008656476 +0,2157,2156,128,3.82890749,0.132998911,962.413895,3008656476 +0,2158,2157,128,3.21714544,0.131605123,972.606515,3008656476 +0,2159,2158,128,1.92405725,0.132259483,967.794498,3008656476 +0,2160,2159,128,4.25321054,0.130899286,977.851017,3008656476 +0,2161,2160,128,5.09764385,0.130190972,983.171091,3008656476 +0,2162,2161,128,4.20672703,0.129915885,985.252881,3008656476 +0,2163,2162,128,3.02183032,0.144593184,885.242281,3008656476 +0,2164,2163,128,2.40400362,0.142243448,899.865701,3008656476 +0,2165,2164,128,2.79195666,0.130039531,984.316069,3008656476 +0,2166,2165,128,3.7299633,0.129246297,990.357194,3008656476 +0,2167,2166,128,3.49136114,0.12954433,988.078753,3008656476 +0,2168,2167,128,3.17499399,0.128622386,995.161138,3008656476 +0,2169,2168,128,3.39379954,0.129066105,991.739853,3008656476 +0,2170,2169,128,3.78790784,0.128542828,995.777065,3008656476 +0,2171,2170,128,3.11636734,0.14795179,865.146681,3008656476 +0,2172,2171,128,3.02160358,0.148061327,864.506638,3008656476 +0,2173,2172,128,3.76599073,0.130954471,977.438945,3008656476 +0,2174,2173,128,4.24064827,0.130486571,980.943855,3008656476 +0,2175,2174,128,3.62513995,0.130031083,984.380019,3008656476 +0,2176,2175,128,3.1652658,0.128510649,996.026407,3008656476 +0,2177,2176,128,1.73882353,0.129587452,987.749956,3008656476 +0,2178,2177,128,2.65516949,0.1304758,981.024834,3008656476 +0,2179,2178,128,2.91754675,0.146043488,876.451266,3008656476 +0,2180,2179,128,3.76507449,0.143993563,888.928625,3008656476 +0,2181,2180,128,3.76837492,0.128141221,998.897927,3008656476 +0,2182,2181,128,2.69975185,0.129004101,992.216519,3008656476 +0,2183,2182,128,3.41386199,0.129910865,985.290953,3008656476 +0,2184,2183,128,3.95479584,0.128817633,993.652787,3008656476 +0,2185,2184,128,3.85183048,0.130455507,981.177437,3008656476 +0,2186,2185,128,3.78286672,0.130084393,983.97661,3008656476 +0,2187,2186,128,3.90109539,0.144754311,884.256912,3008656476 +0,2188,2187,128,3.84704947,0.146620627,873.001314,3008656476 +0,2189,2188,128,3.35198498,0.131390288,974.196814,3008656476 +0,2190,2189,128,3.30932498,0.132628004,965.105378,3008656476 +0,2191,2190,128,3.35079312,0.132222135,968.067865,3008656476 +0,2192,2191,128,3.92874074,0.131631663,972.410415,3008656476 +0,2193,2192,128,3.38084602,0.1330199,962.262037,3008656476 +0,2194,2193,128,2.33421493,0.132907269,963.077497,3008656476 +0,2195,2194,128,3.43416524,0.149088515,858.550372,3008656476 +0,2196,2195,128,3.16864634,0.150802433,848.792672,3008656476 +0,2197,2196,128,3.8260653,0.134868681,949.071341,3008656476 +0,2198,2197,128,3.70297122,0.133835059,956.401118,3008656476 +0,2199,2198,128,3.99110317,0.133866824,956.174175,3008656476 +0,2200,2199,128,2.84407806,0.13370165,957.355425,3008656476 +0,2201,2200,128,3.49744725,0.13436724,952.613152,3008656476 +0,2202,2201,128,3.73350787,0.144400554,886.423192,3008656476 +0,2203,2202,128,3.20606589,0.146855172,871.607028,3008656476 +0,2204,2203,128,3.96568179,0.133372326,959.719335,3008656476 +0,2205,2204,128,4.18416166,0.133487343,958.89241,3008656476 +0,2206,2205,128,3.01184273,0.133645237,957.759535,3008656476 +0,2207,2206,128,3.33923674,0.133644864,957.762208,3008656476 +0,2208,2207,128,3.16563034,0.132718309,964.448696,3008656476 +0,2209,2208,128,3.42203093,0.13271546,964.469399,3008656476 +0,2210,2209,128,3.42669988,0.146627687,872.95928,3008656476 +0,2211,2210,128,3.0903573,0.143955901,889.161188,3008656476 +0,2212,2211,128,2.61673903,0.131692611,971.960378,3008656476 +0,2213,2212,128,3.04107833,0.132077514,969.127871,3008656476 +0,2214,2213,128,3.33927226,0.130905791,977.802426,3008656476 +0,2215,2214,128,3.20635271,0.130817781,978.46026,3008656476 +0,2216,2215,128,3.54709196,0.131194571,975.650128,3008656476 +0,2217,2216,128,2.79630017,0.131083066,976.480059,3008656476 +0,2218,2217,128,3.6954391,0.143323624,893.083753,3008656476 +0,2219,2218,128,3.18256593,0.144237845,887.423131,3008656476 +0,2220,2219,128,4.02234459,0.129857444,985.696284,3008656476 +0,2221,2220,128,3.15094304,0.129913846,985.268345,3008656476 +0,2222,2221,128,2.42406201,0.130542405,980.524298,3008656476 +0,2223,2222,128,3.26115322,0.1293873,989.277928,3008656476 +0,2224,2223,128,3.1375196,0.129816435,986.007665,3008656476 +0,2225,2224,128,3.10753584,0.131293062,974.918233,3008656476 +0,2226,2225,128,2.9252758,0.143419468,892.486925,3008656476 +0,2227,2226,128,3.43817425,0.145544704,879.454879,3008656476 +0,2228,2227,128,3.30082273,0.129681675,987.032285,3008656476 +0,2229,2228,128,3.38500023,0.129685187,987.005555,3008656476 +0,2230,2229,128,3.15359831,0.13061564,979.974527,3008656476 +0,2231,2230,128,4.06236029,0.130340828,982.040716,3008656476 +0,2232,2231,128,2.5785737,0.1297749,986.323241,3008656476 +0,2233,2232,128,3.52312779,0.130491407,980.907501,3008656476 +0,2234,2233,128,2.99340415,0.143724309,890.59395,3008656476 +0,2235,2234,128,3.23503804,0.141709946,903.253467,3008656476 +0,2236,2235,128,2.46625042,0.129749659,986.515117,3008656476 +0,2237,2236,128,3.00885606,0.13019313,983.154795,3008656476 +0,2238,2237,128,4.25178003,0.131037414,976.820254,3008656476 +0,2239,2238,128,3.22617984,0.130584856,980.205545,3008656476 +0,2240,2239,128,3.09790277,0.13081839,978.455705,3008656476 +0,2241,2240,128,3.1882112,0.130260004,982.650054,3008656476 +0,2242,2241,128,3.11083436,0.138600176,923.519751,3008656476 +0,2243,2242,128,3.89029646,0.138830046,921.990619,3008656476 +0,2244,2243,128,3.27758265,0.130209618,983.030301,3008656476 +0,2245,2244,128,3.53308201,0.130329958,982.122621,3008656476 +0,2246,2245,128,3.64674234,0.131087677,976.445711,3008656476 +0,2247,2246,128,2.53017259,0.130724074,979.16165,3008656476 +0,2248,2247,128,2.75282526,0.131137325,976.076033,3008656476 +0,2249,2248,128,3.1880722,0.130863533,978.118174,3008656476 +0,2250,2249,128,3.4897294,0.135156021,947.053628,3008656476 +0,2251,2250,128,3.42078066,0.136311011,939.029056,3008656476 +0,2252,2251,128,2.54572868,0.129999084,984.622322,3008656476 +0,2253,2252,128,2.33347893,0.130272332,982.557064,3008656476 +0,2254,2253,128,3.30860448,0.130493371,980.892738,3008656476 +0,2255,2254,128,3.88576913,0.130562249,980.375269,3008656476 +0,2256,2255,128,3.23642731,0.13038946,981.674439,3008656476 +0,2257,2256,128,3.59448051,0.130703769,979.313764,3008656476 +0,2258,2257,128,3.06661654,0.136728468,936.162029,3008656476 +0,2259,2258,128,3.50840139,0.136714893,936.254984,3008656476 +0,2260,2259,128,3.04047799,0.129604261,987.62185,3008656476 +0,2261,2260,128,3.04621243,0.130104727,983.822825,3008656476 +0,2262,2261,128,3.19242024,0.130123345,983.68206,3008656476 +0,2263,2262,128,2.82276964,0.130510963,980.76052,3008656476 +0,2264,2263,128,3.28395963,0.130604602,980.057349,3008656476 +0,2265,2264,128,2.58290124,0.130435114,981.33084,3008656476 +0,2266,2265,128,2.84684682,0.137274739,932.436666,3008656476 +0,2267,2266,128,3.36616278,0.138798609,922.199444,3008656476 +0,2268,2267,128,2.80828786,0.130194629,983.143475,3008656476 +0,2269,2268,128,3.42767334,0.129637374,987.369584,3008656476 +0,2270,2269,128,2.3790791,0.130285214,982.459913,3008656476 +0,2271,2270,128,2.9386673,0.129954416,984.960757,3008656476 +0,2272,2271,128,3.08026695,0.130389225,981.676208,3008656476 +0,2273,2272,128,3.35241508,0.129560563,987.954954,3008656476 +0,2274,2273,128,2.68956947,0.134489532,951.746936,3008656476 +0,2275,2274,128,2.5399878,0.141542092,904.32463,3008656476 +0,2276,2275,128,2.92148829,0.129149459,991.099777,3008656476 +0,2277,2276,128,3.46312547,0.13071751,979.210819,3008656476 +0,2278,2277,128,2.61270905,0.130025199,984.424565,3008656476 +0,2279,2278,128,2.75602484,0.129651882,987.259097,3008656476 +0,2280,2279,128,2.75096893,0.130285669,982.456482,3008656476 +0,2281,2280,128,2.57856345,0.129719734,986.742696,3008656476 +0,2282,2281,128,3.1300745,0.134613651,950.869388,3008656476 +0,2283,2282,128,3.4931457,0.141161446,906.763168,3008656476 +0,2284,2283,128,2.71910572,0.130979744,977.250345,3008656476 +0,2285,2284,128,2.80158567,0.129784823,986.24783,3008656476 +0,2286,2285,128,2.22559714,0.129928034,985.160754,3008656476 +0,2287,2286,128,2.53573847,0.130419487,981.448424,3008656476 +0,2288,2287,128,2.49450684,0.1293825,989.314629,3008656476 +0,2289,2288,128,2.47183466,0.130911763,977.75782,3008656476 +0,2290,2289,128,2.56977844,0.133356219,959.835251,3008656476 +0,2291,2290,128,3.26696992,0.140631611,910.179433,3008656476 +0,2292,2291,128,3.73385239,0.130541441,980.531539,3008656476 +0,2293,2292,128,2.81730986,0.129814961,986.018861,3008656476 +0,2294,2293,128,3.6100316,0.130385215,981.7064,3008656476 +0,2295,2294,128,3.89643955,0.129650177,987.272081,3008656476 +0,2296,2295,128,3.96080089,0.131259959,975.164102,3008656476 +0,2297,2296,128,4.16809177,0.130322071,982.182059,3008656476 +0,2298,2297,128,3.13129663,0.134584396,951.076082,3008656476 +0,2299,2298,128,3.03291798,0.143744392,890.469522,3008656476 +0,2300,2299,128,4.34837198,0.130935652,977.57943,3008656476 +0,2301,2300,128,3.55676198,0.129926804,985.170081,3008656476 +0,2302,2301,128,3.86687589,0.131690572,971.975427,3008656476 +0,2303,2302,128,4.51444292,0.130280429,982.495997,3008656476 +0,2304,2303,128,3.76196289,0.12970707,986.839037,3008656476 +0,2305,2304,128,3.37064028,0.130377023,981.768083,3008656476 +0,2306,2305,128,3.83565021,0.134135526,954.258755,3008656476 +0,2307,2306,128,4.33520651,0.140095384,913.663222,3008656476 +0,2308,2307,128,3.83042431,0.132337172,967.226351,3008656476 +0,2309,2308,128,3.79484558,0.131193157,975.660644,3008656476 +0,2310,2309,128,4.13664198,0.131306125,974.821243,3008656476 +0,2311,2310,128,3.63245964,0.13098251,977.229708,3008656476 +0,2312,2311,128,3.42687869,0.130997103,977.120845,3008656476 +0,2313,2312,128,3.19351649,0.137401183,931.578588,3008656476 +0,2314,2313,128,3.73097491,0.128922497,992.844561,3008656476 +0,2315,2314,128,4.47228527,0.137675041,929.725527,3008656476 +0,2316,2315,128,4.05131912,0.132677739,964.743603,3008656476 +0,2317,2316,128,4.59304619,0.132075567,969.142158,3008656476 +0,2318,2317,128,4.11412001,0.132740477,964.28763,3008656476 +0,2319,2318,128,4.28160429,0.13257692,965.477249,3008656476 +0,2320,2319,128,4.04652262,0.133509446,958.733661,3008656476 +0,2321,2320,128,4.08312273,0.147641728,866.963573,3008656476 +0,2322,2321,128,4.29833317,0.145292496,880.981493,3008656476 +0,2323,2322,128,3.99604774,0.130277879,982.515228,3008656476 +0,2324,2323,128,3.99972486,0.130078089,984.024296,3008656476 +0,2325,2324,128,3.61277914,0.128858656,993.336451,3008656476 +0,2326,2325,128,4.27478313,0.130262938,982.627921,3008656476 +0,2327,2326,128,3.95836592,0.130503006,980.820319,3008656476 +0,2328,2327,128,4.59524298,0.130198576,983.113671,3008656476 +0,2329,2328,128,4.12453508,0.142216479,900.036345,3008656476 +0,2330,2329,128,3.62294531,0.145017878,882.649793,3008656476 +0,2331,2330,128,4.18796015,0.130713492,979.240919,3008656476 +0,2332,2331,128,3.94703531,0.129773254,986.335751,3008656476 +0,2333,2332,128,3.36077881,0.130302638,982.328539,3008656476 +0,2334,2333,128,3.30321789,0.130931991,977.606764,3008656476 +0,2335,2334,128,3.0173583,0.130653347,979.691703,3008656476 +0,2336,2335,128,3.79389501,0.130455439,981.177948,3008656476 +0,2337,2336,128,4.39558411,0.145304126,880.91098,3008656476 +0,2338,2337,128,4.18348646,0.146528942,873.547562,3008656476 +0,2339,2338,128,3.48809695,0.130505777,980.799494,3008656476 +0,2340,2339,128,3.37237549,0.129304217,989.913577,3008656476 +0,2341,2340,128,3.25980163,0.130634495,979.833083,3008656476 +0,2342,2341,128,4.11858273,0.128979368,992.406786,3008656476 +0,2343,2342,128,3.97019863,0.129040962,991.933089,3008656476 +0,2344,2343,128,4.1891861,0.129241186,990.396359,3008656476 +0,2345,2344,128,3.80586863,0.144803203,883.958347,3008656476 +0,2346,2345,128,4.28564501,0.142560424,897.864894,3008656476 +0,2347,2346,128,4.18178892,0.129504164,988.385207,3008656476 +0,2348,2347,128,4.02319098,0.130556906,980.415391,3008656476 +0,2349,2348,128,4.2278018,0.130071682,984.072767,3008656476 +0,2350,2349,128,4.29993629,0.130555473,980.426152,3008656476 +0,2351,2350,128,3.6723299,0.131476412,973.558664,3008656476 +0,2352,2351,128,3.8584919,0.132100556,968.958829,3008656476 +0,2353,2352,128,3.22134805,0.125103769,1023.15063,3008656476 +0,2354,2353,128,3.37491083,0.124840256,1025.3103,3008656476 +0,2355,2354,128,3.96872568,0.11279347,1134.81747,3008656476 +0,2356,2355,128,3.57899642,0.11279952,1134.7566,3008656476 +0,2357,2356,128,3.81155252,0.112713301,1135.62462,3008656476 +0,2358,2357,128,3.12056756,0.112685833,1135.90144,3008656476 +0,2359,2358,128,3.27910852,0.112700266,1135.75597,3008656476 +0,2360,2359,128,3.56012607,0.112814637,1134.60455,3008656476 +0,2361,2360,128,3.64096212,0.112867377,1134.07437,3008656476 +0,2362,2361,128,3.08595395,0.125306571,1021.49471,3008656476 +0,2363,2362,128,3.05261707,0.127115777,1006.95604,3008656476 +0,2364,2363,128,2.77032971,0.112882524,1133.9222,3008656476 +0,2365,2364,128,2.70689249,0.112921006,1133.53577,3008656476 +0,2366,2365,128,3.09266019,0.112850739,1134.24158,3008656476 +0,2367,2366,128,2.85014772,0.112794501,1134.80709,3008656476 +0,2368,2367,128,3.81070375,0.112884439,1133.90296,3008656476 +0,2369,2368,128,3.50721955,0.112738465,1135.37114,3008656476 +0,2370,2369,128,3.12669969,0.112702138,1135.73711,3008656476 +0,2371,2370,128,2.98306346,0.127136342,1006.79316,3008656476 +0,2372,2371,128,2.95350027,0.126231767,1014.00783,3008656476 +0,2373,2372,128,4.03357649,0.113100153,1131.74029,3008656476 +0,2374,2373,128,3.87300897,0.112799674,1134.75505,3008656476 +0,2375,2374,128,4.03393841,0.112977612,1132.96783,3008656476 +0,2376,2375,128,2.88792443,0.11295645,1133.18009,3008656476 +0,2377,2376,128,3.11308122,0.112961084,1133.1336,3008656476 +0,2378,2377,128,4.00050974,0.112831223,1134.43776,3008656476 +0,2379,2378,128,3.54372692,0.112923201,1133.51374,3008656476 +0,2380,2379,128,2.80279708,0.127516952,1003.78811,3008656476 +0,2381,2380,128,3.39558101,0.124511792,1028.01508,3008656476 +0,2382,2381,128,2.81012678,0.113104639,1131.6954,3008656476 +0,2383,2382,128,3.19266391,0.112812833,1134.62269,3008656476 +0,2384,2383,128,3.44477963,0.112886194,1133.88534,3008656476 +0,2385,2384,64,3.18725872,0.108699285,588.780322,3008656476 +1,2386,0,128,2.35747337,0.116379132,1099.85354,3008656476 +1,2387,1,128,3.21071982,0.127740438,1002.03195,3008656476 +1,2388,2,128,2.78667212,0.146631211,872.9383,3008656476 +1,2389,3,128,3.31235909,0.147748452,866.337334,3008656476 +1,2390,4,128,3.76454544,0.130703463,979.316057,3008656476 +1,2391,5,128,4.19487238,0.132644808,964.983115,3008656476 +1,2392,6,128,3.82096672,0.132721467,964.425747,3008656476 +1,2393,7,128,4.1703372,0.138898049,921.539222,3008656476 +1,2394,8,128,4.1689496,0.135788054,942.645514,3008656476 +1,2395,9,128,3.9077692,0.144427656,886.256854,3008656476 +1,2396,10,128,3.37479162,0.152377605,840.018453,3008656476 +1,2397,11,128,3.63657904,0.140087742,913.713064,3008656476 +1,2398,12,128,3.02555203,0.144132221,888.073459,3008656476 +1,2399,13,128,2.59774542,0.134155018,954.120106,3008656476 +1,2400,14,128,2.78712416,0.132473322,966.23228,3008656476 +1,2401,15,128,2.98266673,0.13266484,964.837405,3008656476 +1,2402,16,128,3.72637272,0.135955759,941.482736,3008656476 +1,2403,17,128,3.59933352,0.145849382,877.617706,3008656476 +1,2404,18,128,3.429878,0.149651556,855.320208,3008656476 +1,2405,19,128,3.69337368,0.130726657,979.142303,3008656476 +1,2406,20,128,3.38388467,0.130915336,977.731135,3008656476 +1,2407,21,128,3.89380527,0.133094866,961.720041,3008656476 +1,2408,22,128,3.22053766,0.131228319,975.39922,3008656476 +1,2409,23,128,2.33383822,0.13142892,973.91046,3008656476 +1,2410,24,128,2.74383903,0.129698335,986.905499,3008656476 +1,2411,25,128,3.33227468,0.144919543,883.248714,3008656476 +1,2412,26,128,3.34128046,0.142725208,896.82826,3008656476 +1,2413,27,128,3.5032196,0.129515278,988.300392,3008656476 +1,2414,28,128,3.190588,0.128249806,998.052192,3008656476 +1,2415,29,128,3.20178604,0.128665864,994.824859,3008656476 +1,2416,30,128,2.8827219,0.128191491,998.506211,3008656476 +1,2417,31,128,3.25923514,0.127820651,1001.40313,3008656476 +1,2418,32,128,3.6320343,0.127860407,1001.09176,3008656476 +1,2419,33,128,3.4524529,0.143284501,893.327604,3008656476 +1,2420,34,128,3.4822607,0.141131027,906.958609,3008656476 +1,2421,35,128,3.47851324,0.128017773,999.861168,3008656476 +1,2422,36,128,3.53717589,0.128240109,998.127661,3008656476 +1,2423,37,128,3.03879929,0.127981759,1000.14253,3008656476 +1,2424,38,128,3.08258033,0.128433293,996.626319,3008656476 +1,2425,39,128,2.54152393,0.128649262,994.95324,3008656476 +1,2426,40,128,3.35771155,0.128727447,994.348936,3008656476 +1,2427,41,128,3.36270809,0.144571839,885.372981,3008656476 +1,2428,42,128,3.61282539,0.143030652,894.913071,3008656476 +1,2429,43,128,3.78986979,0.128523958,995.923266,3008656476 +1,2430,44,128,4.0482235,0.129274212,990.14334,3008656476 +1,2431,45,128,3.81356359,0.129130311,991.246741,3008656476 +1,2432,46,128,3.01708651,0.127387137,1004.81103,3008656476 +1,2433,47,128,3.57710123,0.129562996,987.936401,3008656476 +1,2434,48,128,3.13283277,0.1296871,986.990996,3008656476 +1,2435,49,128,3.38830185,0.141892042,902.094284,3008656476 +1,2436,50,128,2.76330948,0.144838188,883.744831,3008656476 +1,2437,51,128,3.87589049,0.128159629,998.754452,3008656476 +1,2438,52,128,2.74464631,0.12962124,987.492482,3008656476 +1,2439,53,128,3.74712634,0.129032213,992.000346,3008656476 +1,2440,54,128,2.69735861,0.130476253,981.021428,3008656476 +1,2441,55,128,3.17156792,0.129056146,991.816384,3008656476 +1,2442,56,128,3.95448303,0.131083514,976.476722,3008656476 +1,2443,57,128,3.34439492,0.146418396,874.207091,3008656476 +1,2444,58,128,3.25508761,0.143281804,893.344419,3008656476 +1,2445,59,128,3.34124589,0.132176757,968.400216,3008656476 +1,2446,60,128,3.14013982,0.133047262,962.064142,3008656476 +1,2447,61,128,4.04104233,0.139715613,916.146716,3008656476 +1,2448,62,128,3.10475707,0.140145499,913.336503,3008656476 +1,2449,63,128,3.95535374,0.138655116,923.15382,3008656476 +1,2450,64,128,2.73358941,0.153839356,832.036764,3008656476 +1,2451,65,128,3.60972595,0.154168152,830.262271,3008656476 +1,2452,66,128,3.40366578,0.133966528,955.462547,3008656476 +1,2453,67,128,3.98543334,0.131601161,972.635796,3008656476 +1,2454,68,128,4.39394522,0.132258368,967.802657,3008656476 +1,2455,69,128,3.4161582,0.133807139,956.600679,3008656476 +1,2456,70,128,3.99598646,0.134369839,952.594726,3008656476 +1,2457,71,128,3.72972083,0.13199618,969.725033,3008656476 +1,2458,72,128,3.51425862,0.147958794,865.105727,3008656476 +1,2459,73,128,3.35985327,0.145571352,879.293887,3008656476 +1,2460,74,128,3.17151451,0.131935884,970.168207,3008656476 +1,2461,75,128,3.09353209,0.130800177,978.591948,3008656476 +1,2462,76,128,4.1670413,0.132305726,967.456238,3008656476 +1,2463,77,128,3.91757822,0.131846509,970.825856,3008656476 +1,2464,78,128,3.51653171,0.129478894,988.578108,3008656476 +1,2465,79,128,3.3803637,0.13036447,981.862619,3008656476 +1,2466,80,128,3.93339992,0.14477807,884.1118,3008656476 +1,2467,81,128,3.84338856,0.143242757,893.587939,3008656476 +1,2468,82,128,3.82672429,0.12887449,993.214406,3008656476 +1,2469,83,128,3.94592714,0.129024631,992.05864,3008656476 +1,2470,84,128,3.21048713,0.12734633,1005.13301,3008656476 +1,2471,85,128,3.1656456,0.128352075,997.256959,3008656476 +1,2472,86,128,3.23768711,0.127589331,1003.21868,3008656476 +1,2473,87,128,2.88825965,0.127165521,1006.56215,3008656476 +1,2474,88,128,2.91474962,0.141286791,905.958718,3008656476 +1,2475,89,128,3.54825473,0.144036224,888.66534,3008656476 +1,2476,90,128,3.12636399,0.128536023,995.829784,3008656476 +1,2477,91,128,3.2623384,0.129001709,992.234917,3008656476 +1,2478,92,128,3.51065373,0.128912633,992.920531,3008656476 +1,2479,93,128,3.09464836,0.129251376,990.318277,3008656476 +1,2480,94,128,2.9697845,0.128377627,997.058467,3008656476 +1,2481,95,128,3.34177494,0.129338392,989.652013,3008656476 +1,2482,96,128,3.00830269,0.142084174,900.874435,3008656476 +1,2483,97,128,3.53543854,0.144672177,884.758926,3008656476 +1,2484,98,128,3.55594063,0.129951193,984.985186,3008656476 +1,2485,99,128,3.45304298,0.127964105,1000.28051,3008656476 +1,2486,100,128,3.60072088,0.129342072,989.623856,3008656476 +1,2487,101,128,3.13085222,0.129060093,991.786051,3008656476 +1,2488,102,128,3.36579752,0.12884672,993.428471,3008656476 +1,2489,103,128,3.61254478,0.128739636,994.254792,3008656476 +1,2490,104,128,2.68036842,0.14096162,908.048588,3008656476 +1,2491,105,128,3.64532399,0.14099044,907.862973,3008656476 +1,2492,106,128,3.34290242,0.128521727,995.940554,3008656476 +1,2493,107,128,3.13552976,0.128093594,999.269331,3008656476 +1,2494,108,128,3.56832004,0.129346659,989.588761,3008656476 +1,2495,109,128,2.56959558,0.128777371,993.96345,3008656476 +1,2496,110,128,3.2338264,0.129498242,988.430407,3008656476 +1,2497,111,128,3.21197176,0.130636469,979.818277,3008656476 +1,2498,112,128,3.74273992,0.145437446,880.103464,3008656476 +1,2499,113,128,4.24446487,0.148527537,861.793056,3008656476 +1,2500,114,128,3.99816275,0.137322365,932.11328,3008656476 +1,2501,115,128,4.11094236,0.131452428,973.736293,3008656476 +1,2502,116,128,3.04454899,0.132346269,967.159868,3008656476 +1,2503,117,128,3.61682224,0.131078314,976.515459,3008656476 +1,2504,118,128,3.36444402,0.131915079,970.321217,3008656476 +1,2505,119,128,3.75765347,0.146702407,872.514655,3008656476 +1,2506,120,128,3.60489941,0.145670916,878.692903,3008656476 +1,2507,121,128,3.43140769,0.128291937,997.724432,3008656476 +1,2508,122,128,2.71591067,0.129185776,990.821157,3008656476 +1,2509,123,128,2.91746807,0.127592875,1003.19081,3008656476 +1,2510,124,128,2.98556471,0.128167501,998.693109,3008656476 +1,2511,125,128,2.88890171,0.12812921,998.991565,3008656476 +1,2512,126,128,2.87366629,0.128392147,996.945709,3008656476 +1,2513,127,128,3.84277964,0.142265011,899.729309,3008656476 +1,2514,128,128,3.8205862,0.142356236,899.152742,3008656476 +1,2515,129,128,3.65128231,0.128881897,993.157324,3008656476 +1,2516,130,128,3.79124093,0.128074888,999.41528,3008656476 +1,2517,131,128,3.32023358,0.128562184,995.627143,3008656476 +1,2518,132,128,2.90055704,0.129870393,985.598003,3008656476 +1,2519,133,128,3.3379252,0.129286699,990.047708,3008656476 +1,2520,134,128,3.69536948,0.128582891,995.466807,3008656476 +1,2521,135,128,3.24018168,0.142905659,895.69581,3008656476 +1,2522,136,128,2.97940469,0.143199612,893.857171,3008656476 +1,2523,137,128,2.91749358,0.129006068,992.20139,3008656476 +1,2524,138,128,2.45719337,0.127749745,1001.95895,3008656476 +1,2525,139,128,2.94069815,0.128699239,994.566875,3008656476 +1,2526,140,128,2.40975642,0.1286861,994.668422,3008656476 +1,2527,141,128,2.30640912,0.129445533,988.832886,3008656476 +1,2528,142,128,3.05335832,0.129202229,990.694983,3008656476 +1,2529,143,128,2.69613576,0.138859246,921.796738,3008656476 +1,2530,144,128,2.01103663,0.142713177,896.903865,3008656476 +1,2531,145,128,1.73534751,0.128861636,993.313479,3008656476 +1,2532,146,128,2.88010526,0.127968693,1000.24465,3008656476 +1,2533,147,128,3.86261773,0.128715764,994.439189,3008656476 +1,2534,148,128,4.00281906,0.12967003,987.120925,3008656476 +1,2535,149,128,2.93989539,0.129795399,986.167468,3008656476 +1,2536,150,128,2.39810538,0.129436112,988.904858,3008656476 +1,2537,151,128,1.92707467,0.142505675,898.209843,3008656476 +1,2538,152,128,2.80256295,0.142717613,896.875987,3008656476 +1,2539,153,128,3.38484788,0.1310561,976.680979,3008656476 +1,2540,154,128,2.45508981,0.13150436,973.351758,3008656476 +1,2541,155,128,3.75248599,0.132810796,963.777071,3008656476 +1,2542,156,128,3.97225952,0.132309228,967.430632,3008656476 +1,2543,157,128,3.7861557,0.133043285,962.092901,3008656476 +1,2544,158,128,3.10610223,0.139071213,920.391771,3008656476 +1,2545,159,128,2.77611637,0.144114693,888.181471,3008656476 +1,2546,160,128,3.31020498,0.145324336,880.788473,3008656476 +1,2547,161,128,3.16811538,0.131892713,970.485761,3008656476 +1,2548,162,128,2.7784946,0.132282578,967.625533,3008656476 +1,2549,163,128,3.88705039,0.131315546,974.751306,3008656476 +1,2550,164,128,3.75268912,0.129761421,986.425696,3008656476 +1,2551,165,128,3.24830389,0.130672725,979.54642,3008656476 +1,2552,166,128,3.61117649,0.129660359,987.194552,3008656476 +1,2553,167,128,3.13835263,0.145065356,882.360913,3008656476 +1,2554,168,128,3.09365702,0.144959012,883.008226,3008656476 +1,2555,169,128,3.24924469,0.127747127,1001.97948,3008656476 +1,2556,170,128,3.25997114,0.129155334,991.054694,3008656476 +1,2557,171,128,3.02461147,0.128551239,995.711912,3008656476 +1,2558,172,128,3.14755177,0.127644648,1002.78392,3008656476 +1,2559,173,128,3.0091846,0.127858517,1001.10656,3008656476 +1,2560,174,128,2.83513784,0.129009662,992.173749,3008656476 +1,2561,175,128,3.3670764,0.143420739,892.479016,3008656476 +1,2562,176,128,2.68358374,0.142943858,895.456453,3008656476 +1,2563,177,128,3.7908113,0.128188456,998.529852,3008656476 +1,2564,178,128,2.70089269,0.128780972,993.935657,3008656476 +1,2565,179,128,3.8875463,0.128830481,993.553692,3008656476 +1,2566,180,128,3.33125591,0.128529799,995.878006,3008656476 +1,2567,181,128,3.28537655,0.129059527,991.790401,3008656476 +1,2568,182,128,4.01655674,0.129183775,990.836504,3008656476 +1,2569,183,128,2.40127158,0.142119007,900.653633,3008656476 +1,2570,184,128,2.71075273,0.142983786,895.206398,3008656476 +1,2571,185,128,3.52262783,0.129088902,991.564713,3008656476 +1,2572,186,128,2.96170497,0.129069983,991.710055,3008656476 +1,2573,187,128,2.71315479,0.127638343,1002.83345,3008656476 +1,2574,188,128,3.54789758,0.129297171,989.967522,3008656476 +1,2575,189,128,3.33368397,0.129657241,987.218292,3008656476 +1,2576,190,128,3.31313753,0.129525505,988.222358,3008656476 +1,2577,191,128,2.74696088,0.145993106,876.753728,3008656476 +1,2578,192,128,2.6042285,0.146076841,876.251151,3008656476 +1,2579,193,128,3.31551218,0.131464624,973.64596,3008656476 +1,2580,194,128,3.07057714,0.13096128,977.388126,3008656476 +1,2581,195,128,3.78392243,0.131090561,976.424229,3008656476 +1,2582,196,128,3.22725034,0.130783734,978.714983,3008656476 +1,2583,197,128,3.00298953,0.131856605,970.751522,3008656476 +1,2584,198,128,3.0672276,0.13262623,965.118288,3008656476 +1,2585,199,128,3.71515918,0.144368548,886.619709,3008656476 +1,2586,200,128,3.50987887,0.151253044,846.26396,3008656476 +1,2587,201,128,3.02941799,0.132198264,968.242669,3008656476 +1,2588,202,128,4.08389282,0.131912009,970.343799,3008656476 +1,2589,203,128,3.47535563,0.195827934,653.635043,3008656476 +1,2590,204,128,3.08826447,0.128528012,995.891853,3008656476 +1,2591,205,128,3.42396784,0.128209116,998.368946,3008656476 +1,2592,206,128,2.62540555,0.141811642,902.605725,3008656476 +1,2593,207,128,2.78055954,0.141335951,905.643604,3008656476 +1,2594,208,128,2.71919918,0.127745413,1001.99292,3008656476 +1,2595,209,128,2.79333591,0.127650233,1002.74004,3008656476 +1,2596,210,128,2.51575685,0.128137539,998.92663,3008656476 +1,2597,211,128,3.32530499,0.128556456,995.671505,3008656476 +1,2598,212,128,3.17676902,0.128984896,992.364253,3008656476 +1,2599,213,128,3.00604129,0.128824815,993.59739,3008656476 +1,2600,214,128,2.34751153,0.142842925,896.089183,3008656476 +1,2601,215,128,2.51426482,0.144886911,883.447643,3008656476 +1,2602,216,128,3.63679576,0.128647467,994.967122,3008656476 +1,2603,217,128,3.18245125,0.129330048,989.715862,3008656476 +1,2604,218,128,2.82520294,0.12927554,990.133168,3008656476 +1,2605,219,128,3.59310913,0.129304504,989.91138,3008656476 +1,2606,220,128,2.73234415,0.128731378,994.318572,3008656476 +1,2607,221,128,2.58409071,0.129775256,986.320536,3008656476 +1,2608,222,128,3.00407696,0.148113319,864.203171,3008656476 +1,2609,223,128,2.68251657,0.146117993,876.004367,3008656476 +1,2610,224,128,3.01831532,0.129912907,985.275466,3008656476 +1,2611,225,128,2.99706054,0.129895601,985.406734,3008656476 +1,2612,226,128,2.99268126,0.128876729,993.19715,3008656476 +1,2613,227,128,3.43702865,0.130069883,984.086378,3008656476 +1,2614,228,128,3.09717321,0.130534275,980.585367,3008656476 +1,2615,229,128,2.98439646,0.130791072,978.660072,3008656476 +1,2616,230,128,3.39902282,0.145945638,877.038888,3008656476 +1,2617,231,128,3.64797235,0.145185559,881.630383,3008656476 +1,2618,232,128,3.13063359,0.132452237,966.386094,3008656476 +1,2619,233,128,3.55273557,0.132413044,966.672135,3008656476 +1,2620,234,128,3.42175627,0.133086859,961.777902,3008656476 +1,2621,235,128,2.71273351,0.139307777,918.828817,3008656476 +1,2622,236,128,3.57470417,0.143367776,892.808716,3008656476 +1,2623,237,128,2.72314382,0.154258182,829.777703,3008656476 +1,2624,238,128,3.32169771,0.148945304,859.375869,3008656476 +1,2625,239,128,3.660707,0.13202643,969.502849,3008656476 +1,2626,240,128,3.44821,0.131476118,973.560841,3008656476 +1,2627,241,128,2.85698867,0.132516158,965.919945,3008656476 +1,2628,242,128,3.04876232,0.131291957,974.926438,3008656476 +1,2629,243,128,3.29963732,0.130323476,982.17147,3008656476 +1,2630,244,128,3.60737801,0.130893865,977.891515,3008656476 +1,2631,245,128,2.64460325,0.142831059,896.163628,3008656476 +1,2632,246,128,3.29724646,0.144019769,888.766875,3008656476 +1,2633,247,128,3.39252663,0.129508452,988.352482,3008656476 +1,2634,248,128,3.43411469,0.130150156,983.47942,3008656476 +1,2635,249,128,1.93292868,0.129586465,987.757479,3008656476 +1,2636,250,128,2.81626272,0.130989881,977.174718,3008656476 +1,2637,251,128,3.70433283,0.128523823,995.924312,3008656476 +1,2638,252,128,3.45123577,0.1282862,997.769051,3008656476 +1,2639,253,128,3.16695023,0.14324264,893.588669,3008656476 +1,2640,254,128,3.46321225,0.132715353,964.470177,3008656476 +1,2641,255,128,3.4395225,0.128531927,995.861519,3008656476 +1,2642,256,128,2.87330103,0.129377128,989.355707,3008656476 +1,2643,257,128,3.38570356,0.12833299,997.405266,3008656476 +1,2644,258,128,2.88018394,0.129849787,985.754409,3008656476 +1,2645,259,128,3.28424811,0.129239891,990.406283,3008656476 +1,2646,260,128,3.53504682,0.129360953,989.479414,3008656476 +1,2647,261,128,3.13481784,0.148469715,862.128684,3008656476 +1,2648,262,128,3.45515013,0.145627292,878.956123,3008656476 +1,2649,263,128,2.52375984,0.128760978,994.089995,3008656476 +1,2650,264,128,2.94757748,0.12822349,998.257028,3008656476 +1,2651,265,128,2.8610332,0.128744747,994.215321,3008656476 +1,2652,266,128,2.97089243,0.12866834,994.805715,3008656476 +1,2653,267,128,2.17050219,0.12980185,986.118457,3008656476 +1,2654,268,128,2.22224498,0.129145202,991.132446,3008656476 +1,2655,269,128,3.16209316,0.142797763,896.372585,3008656476 +1,2656,270,128,3.68793607,0.144265441,887.253379,3008656476 +1,2657,271,128,2.51904082,0.12986512,985.638022,3008656476 +1,2658,272,128,2.95977044,0.130769597,978.820788,3008656476 +1,2659,273,128,3.52999568,0.131276618,975.040353,3008656476 +1,2660,274,128,2.7432313,0.130996703,977.123829,3008656476 +1,2661,275,128,3.09451175,0.130543488,980.516163,3008656476 +1,2662,276,128,3.21982598,0.132121667,968.804004,3008656476 +1,2663,277,128,3.9395225,0.146380372,874.434176,3008656476 +1,2664,278,128,2.69981885,0.146676803,872.666962,3008656476 +1,2665,279,128,2.87539196,0.13893189,921.314754,3008656476 +1,2666,280,128,2.9004786,0.130982393,977.230581,3008656476 +1,2667,281,128,2.80694199,0.131438234,973.841447,3008656476 +1,2668,282,128,2.26428556,0.132149422,968.600529,3008656476 +1,2669,283,128,2.61642432,0.132072529,969.164451,3008656476 +1,2670,284,128,2.37114739,0.131245788,975.269393,3008656476 +1,2671,285,128,2.43409657,0.135948505,941.532972,3008656476 +1,2672,286,128,2.85506511,0.139138229,919.948464,3008656476 +1,2673,287,128,2.62953663,0.133240614,960.668044,3008656476 +1,2674,288,128,2.4302578,0.131196201,975.638006,3008656476 +1,2675,289,128,3.29158092,0.132547691,965.690153,3008656476 +1,2676,290,128,2.7180531,0.130258543,982.661076,3008656476 +1,2677,291,128,3.53348112,0.13178748,971.260699,3008656476 +1,2678,292,128,3.15022016,0.142900443,895.728504,3008656476 +1,2679,293,128,2.6999774,0.12380456,1033.8876,3008656476 +1,2680,294,128,2.63620925,0.135589932,944.022894,3008656476 +1,2681,295,128,3.06617451,0.131355833,974.452349,3008656476 +1,2682,296,128,3.6318574,0.132369138,966.992774,3008656476 +1,2683,297,128,2.99515915,0.131532947,973.140213,3008656476 +1,2684,298,128,3.08743453,0.130355025,981.933761,3008656476 +1,2685,299,128,3.36063027,0.130639057,979.798867,3008656476 +1,2686,300,128,2.79361105,0.144662969,884.815243,3008656476 +1,2687,301,128,3.16514254,0.139083126,920.312936,3008656476 +1,2688,302,128,2.9872129,0.126087543,1015.16769,3008656476 +1,2689,303,128,3.25522256,0.130973599,977.296195,3008656476 +1,2690,304,128,2.72970986,0.12974647,986.539364,3008656476 +1,2691,305,128,2.91185212,0.130218889,982.960314,3008656476 +1,2692,306,128,2.8735733,0.128578305,995.502313,3008656476 +1,2693,307,128,2.38205791,0.129391434,989.246321,3008656476 +1,2694,308,128,3.67654419,0.128404156,996.852469,3008656476 +1,2695,309,128,3.46820354,0.13300023,962.404351,3008656476 +1,2696,310,128,2.85434818,0.137455403,931.211122,3008656476 +1,2697,311,128,2.78474307,0.130988699,977.183536,3008656476 +1,2698,312,128,2.75152135,0.130983525,977.222135,3008656476 +1,2699,313,128,2.9170177,0.130853216,978.195293,3008656476 +1,2700,314,128,2.11807942,0.13005177,984.223437,3008656476 +1,2701,315,128,3.01882434,0.132109687,968.891857,3008656476 +1,2702,316,128,3.21473026,0.129421375,989.017463,3008656476 +1,2703,317,128,2.95953655,0.134067288,954.744456,3008656476 +1,2704,318,128,3.2276144,0.137035342,934.065608,3008656476 +1,2705,319,128,3.39225578,0.13290739,963.07662,3008656476 +1,2706,320,128,3.81931782,0.131398263,974.137687,3008656476 +1,2707,321,128,3.22926378,0.130887469,977.939301,3008656476 +1,2708,322,128,3.14434171,0.131576388,972.818922,3008656476 +1,2709,323,128,3.20296025,0.129947395,985.013974,3008656476 +1,2710,324,128,2.35206056,0.138325628,925.352748,3008656476 +1,2711,325,128,3.63335156,0.127924402,1000.59096,3008656476 +1,2712,326,128,3.330791,0.136718999,936.226866,3008656476 +1,2713,327,128,3.58962083,0.132667695,964.816642,3008656476 +1,2714,328,128,3.44833922,0.131104381,976.321302,3008656476 +1,2715,329,128,3.384763,0.131198893,975.617988,3008656476 +1,2716,330,128,4.23547745,0.129737247,986.609497,3008656476 +1,2717,331,128,3.45421696,0.129659409,987.201785,3008656476 +1,2718,332,128,2.98724318,0.140950195,908.122192,3008656476 +1,2719,333,128,3.69538426,0.126857184,1009.00868,3008656476 +1,2720,334,128,3.28174901,0.136820271,935.533887,3008656476 +1,2721,335,128,3.65852475,0.131364626,974.387123,3008656476 +1,2722,336,128,3.44718099,0.131052186,976.710148,3008656476 +1,2723,337,128,3.6488173,0.130581856,980.228065,3008656476 +1,2724,338,128,3.20730877,0.130389858,981.671443,3008656476 +1,2725,339,128,3.42280698,0.131038767,976.810168,3008656476 +1,2726,340,128,2.9678607,0.139405762,918.182994,3008656476 +1,2727,341,128,3.07655263,0.126941825,1008.33591,3008656476 +1,2728,342,128,3.41506243,0.137129943,933.42123,3008656476 +1,2729,343,128,2.93885851,0.130816022,978.473417,3008656476 +1,2730,344,128,3.66584849,0.131168483,975.844174,3008656476 +1,2731,345,128,2.64787555,0.130957074,977.419517,3008656476 +1,2732,346,128,2.93933678,0.130767972,978.832952,3008656476 +1,2733,347,128,4.0998807,0.132043358,969.378558,3008656476 +1,2734,348,128,3.43915057,0.140744146,909.45168,3008656476 +1,2735,349,128,3.71486712,0.128887339,993.11539,3008656476 +1,2736,350,128,3.69607592,0.135118978,947.313263,3008656476 +1,2737,351,128,3.5389173,0.13254472,965.711799,3008656476 +1,2738,352,128,4.15122271,0.131544692,973.053325,3008656476 +1,2739,353,128,3.68873906,0.130494827,980.881794,3008656476 +1,2740,354,128,3.00408506,0.131362236,974.404851,3008656476 +1,2741,355,128,3.32877874,0.13142632,973.929727,3008656476 +1,2742,356,128,3.54316854,0.146490073,873.779345,3008656476 +1,2743,357,128,3.12998319,0.139623399,916.751783,3008656476 +1,2744,358,128,2.1105535,0.127858241,1001.10872,3008656476 +1,2745,359,128,2.91484904,0.129184942,990.827553,3008656476 +1,2746,360,128,2.92171264,0.129718386,986.75295,3008656476 +1,2747,361,128,2.90250373,0.12842238,996.711009,3008656476 +1,2748,362,128,2.90531135,0.127961518,1000.30073,3008656476 +1,2749,363,128,3.11271286,0.12778703,1001.6666,3008656476 +1,2750,364,128,3.4349041,0.13727851,932.411053,3008656476 +1,2751,365,128,3.46506548,0.126948017,1008.28672,3008656476 +1,2752,366,128,3.48683619,0.135489525,944.722479,3008656476 +1,2753,367,128,3.52556801,0.128433594,996.623983,3008656476 +1,2754,368,128,2.79770899,0.129232574,990.462358,3008656476 +1,2755,369,128,3.27245426,0.128759836,994.098812,3008656476 +1,2756,370,128,3.17911339,0.12832936,997.433479,3008656476 +1,2757,371,128,2.75047612,0.128248294,998.063959,3008656476 +1,2758,372,128,3.24838567,0.127586431,1003.24148,3008656476 +1,2759,373,128,3.715868,0.134771962,949.752442,3008656476 +1,2760,374,128,3.45033789,0.141618009,903.83985,3008656476 +1,2761,375,128,2.85902572,0.129196006,990.742701,3008656476 +1,2762,376,128,3.90274906,0.128883414,993.145635,3008656476 +1,2763,377,128,2.51016784,0.131141725,976.043284,3008656476 +1,2764,378,128,3.17662096,0.128423433,996.702837,3008656476 +1,2765,379,128,2.17026734,0.127745057,1001.99572,3008656476 +1,2766,380,128,2.84257627,0.127717526,1002.21171,3008656476 +1,2767,381,128,2.6343627,0.136133291,940.254945,3008656476 +1,2768,382,128,2.3694582,0.14082738,908.914161,3008656476 +1,2769,383,128,2.61108327,0.128139422,998.911951,3008656476 +1,2770,384,128,4.00469398,0.127984804,1000.11873,3008656476 +1,2771,385,128,4.27396345,0.128341388,997.340001,3008656476 +1,2772,386,128,3.10281944,0.127434983,1004.43377,3008656476 +1,2773,387,128,2.54883075,0.128569317,995.571906,3008656476 +1,2774,388,128,3.36685944,0.126716542,1010.12858,3008656476 +1,2775,389,128,4.01646566,0.140605408,910.349053,3008656476 +1,2776,390,128,3.46298623,0.141213557,906.428552,3008656476 +1,2777,391,128,3.56449032,0.128091493,999.285721,3008656476 +1,2778,392,128,2.5768683,0.128345345,997.309252,3008656476 +1,2779,393,128,3.57976818,0.127767422,1001.82032,3008656476 +1,2780,394,128,3.09229517,0.12864753,994.966635,3008656476 +1,2781,395,128,3.43992162,0.12848932,996.191746,3008656476 +1,2782,396,128,3.14333153,0.128320496,997.502379,3008656476 +1,2783,397,128,3.89926004,0.143422443,892.468412,3008656476 +1,2784,398,128,3.30790472,0.143615696,891.267484,3008656476 +1,2785,399,128,3.84532905,0.12948244,988.551034,3008656476 +1,2786,400,128,3.26695013,0.129220534,990.554644,3008656476 +1,2787,401,128,3.54026484,0.129724547,986.706086,3008656476 +1,2788,402,128,3.21815681,0.129905286,985.333268,3008656476 +1,2789,403,128,2.9634974,0.128277445,997.837149,3008656476 +1,2790,404,128,3.14417076,0.128842724,993.459281,3008656476 +1,2791,405,128,2.94395852,0.143827571,889.954541,3008656476 +1,2792,406,128,3.01464915,0.143856352,889.77649,3008656476 +1,2793,407,128,1.9663831,0.129218268,990.572014,3008656476 +1,2794,408,128,2.67954683,0.128971254,992.469221,3008656476 +1,2795,409,128,3.61469936,0.128436674,996.600083,3008656476 +1,2796,410,128,2.27478218,0.129485781,988.525528,3008656476 +1,2797,411,128,3.45748067,0.128932236,992.769566,3008656476 +1,2798,412,128,2.56204295,0.129121873,991.311519,3008656476 +1,2799,413,128,2.70590878,0.139390886,918.280984,3008656476 +1,2800,414,128,2.71153879,0.146268328,875.104007,3008656476 +1,2801,415,128,3.74100089,0.131323813,974.689944,3008656476 +1,2802,416,128,3.06797051,0.131325499,974.677431,3008656476 +1,2803,417,128,2.4726572,0.133450264,959.158837,3008656476 +1,2804,418,128,2.94643354,0.13224552,967.896682,3008656476 +1,2805,419,128,2.16845369,0.132335711,967.237029,3008656476 +1,2806,420,128,1.7856971,0.150546662,850.234727,3008656476 +1,2807,421,128,3.40007949,0.143733883,890.534628,3008656476 +1,2808,422,128,2.69071126,0.126363883,1012.94766,3008656476 +1,2809,423,128,3.16302943,0.133974434,955.406164,3008656476 +1,2810,424,128,3.80565953,0.131100916,976.347107,3008656476 +1,2811,425,128,3.96316075,0.132509646,965.967413,3008656476 +1,2812,426,128,4.51270199,0.131441128,973.820006,3008656476 +1,2813,427,128,3.17824101,0.130739197,979.048387,3008656476 +1,2814,428,128,2.13761234,0.142745165,896.702876,3008656476 +1,2815,429,128,2.12128901,0.144867504,883.565993,3008656476 +1,2816,430,128,2.28608894,0.13024549,982.759557,3008656476 +1,2817,431,128,2.20103979,0.129374806,989.373464,3008656476 +1,2818,432,128,2.60826182,0.128419028,996.737026,3008656476 +1,2819,433,128,2.35725999,0.128552634,995.701107,3008656476 +1,2820,434,128,3.29135537,0.128453555,996.469113,3008656476 +1,2821,435,128,3.64357734,0.128883173,993.147492,3008656476 +1,2822,436,128,3.98546338,0.144509257,885.756405,3008656476 +1,2823,437,128,2.58522773,0.141478897,904.728569,3008656476 +1,2824,438,128,2.45259333,0.128332963,997.405476,3008656476 +1,2825,439,128,3.21415734,0.129664128,987.165857,3008656476 +1,2826,440,128,2.9993062,0.129798204,986.146157,3008656476 +1,2827,441,128,2.65662336,0.129929869,985.146841,3008656476 +1,2828,442,128,2.73309207,0.130003351,984.590005,3008656476 +1,2829,443,128,2.74165034,0.12952315,988.240326,3008656476 +1,2830,444,128,2.63943982,0.143770003,890.310895,3008656476 +1,2831,445,128,2.73945189,0.142775187,896.514322,3008656476 +1,2832,446,128,2.85883951,0.129673968,987.090948,3008656476 +1,2833,447,128,3.54982448,0.129693973,986.938691,3008656476 +1,2834,448,128,3.20678067,0.128665272,994.829436,3008656476 +1,2835,449,128,3.35408378,0.128989195,992.331179,3008656476 +1,2836,450,128,3.10933113,0.129036347,991.968565,3008656476 +1,2837,451,128,3.81706047,0.129827631,985.922635,3008656476 +1,2838,452,128,3.30515838,0.141676802,903.464775,3008656476 +1,2839,453,128,2.84314704,0.143449716,892.298734,3008656476 +1,2840,454,128,3.49056029,0.128143776,998.87801,3008656476 +1,2841,455,128,3.8401444,0.128928159,992.80096,3008656476 +1,2842,456,128,3.60003805,0.129242312,990.38773,3008656476 +1,2843,457,128,3.75750542,0.129902491,985.354469,3008656476 +1,2844,458,128,3.45884967,0.129057047,991.809459,3008656476 +1,2845,459,128,2.54249144,0.130219476,982.955883,3008656476 +1,2846,460,128,3.53999829,0.143918314,889.39341,3008656476 +1,2847,461,128,3.54416132,0.14569028,878.576114,3008656476 +1,2848,462,128,3.38061523,0.129379159,989.340176,3008656476 +1,2849,463,128,2.65914154,0.132073267,969.159035,3008656476 +1,2850,464,128,2.63467956,0.132352316,967.115679,3008656476 +1,2851,465,128,2.75730062,0.131521901,973.221943,3008656476 +1,2852,466,128,2.613065,0.133079274,961.832719,3008656476 +1,2853,467,128,2.9215467,0.13262785,965.106499,3008656476 +1,2854,468,128,3.97548032,0.144375462,886.57725,3008656476 +1,2855,469,128,3.67604899,0.153853137,831.962237,3008656476 +1,2856,470,128,3.64191079,0.143195515,893.882745,3008656476 +1,2857,471,128,2.36063623,0.13910071,920.196597,3008656476 +1,2858,472,128,3.94546366,0.142957445,895.371346,3008656476 +1,2859,473,128,3.56117344,0.143154855,894.136633,3008656476 +1,2860,474,128,3.03015971,0.133112014,961.596149,3008656476 +1,2861,475,128,2.34218574,0.145161689,881.775356,3008656476 +1,2862,476,128,3.07169032,0.145189616,881.605748,3008656476 +1,2863,477,128,3.055758,0.131944777,970.102818,3008656476 +1,2864,478,128,3.48185706,0.118593403,1079.31805,3008656476 +1,2865,479,128,3.89011121,0.131299554,974.870029,3008656476 +1,2866,480,128,3.46364355,0.129690217,986.967274,3008656476 +1,2867,481,128,2.79036546,0.129366542,989.436666,3008656476 +1,2868,482,128,2.71005082,0.130086376,983.96161,3008656476 +1,2869,483,128,3.42776608,0.143278705,893.363742,3008656476 +1,2870,484,128,3.523597,0.143092401,894.526887,3008656476 +1,2871,485,128,2.95090508,0.128377653,997.058265,3008656476 +1,2872,486,128,2.45130062,0.12837575,997.073045,3008656476 +1,2873,487,128,3.34679461,0.12905367,991.835412,3008656476 +1,2874,488,128,2.80596542,0.128652459,994.928515,3008656476 +1,2875,489,128,3.86845326,0.129462383,988.704186,3008656476 +1,2876,490,128,3.95486546,0.128547736,995.739046,3008656476 +1,2877,491,128,3.90053129,0.148413222,862.45685,3008656476 +1,2878,492,128,3.0132668,0.143047621,894.806912,3008656476 +1,2879,493,128,3.32350802,0.129172862,990.920214,3008656476 +1,2880,494,128,3.31967473,0.129127416,991.268965,3008656476 +1,2881,495,128,3.46405005,0.128723393,994.380252,3008656476 +1,2882,496,128,3.69368553,0.129090116,991.555388,3008656476 +1,2883,497,128,4.00908232,0.129165453,990.977053,3008656476 +1,2884,498,128,3.88153505,0.128683891,994.685496,3008656476 +1,2885,499,128,3.33311319,0.142391569,898.929627,3008656476 +1,2886,500,128,3.80208349,0.143335644,893.00886,3008656476 +1,2887,501,128,4.02094507,0.12879443,993.831798,3008656476 +1,2888,502,128,3.11316538,0.129386061,989.287401,3008656476 +1,2889,503,128,3.61819386,0.129785728,986.240952,3008656476 +1,2890,504,128,3.76515794,0.129763716,986.40825,3008656476 +1,2891,505,128,3.75868106,0.13004029,984.310324,3008656476 +1,2892,506,128,3.91330862,0.131922361,970.267656,3008656476 +1,2893,507,128,3.01567078,0.144133647,888.064672,3008656476 +1,2894,508,128,3.65265727,0.146349945,874.615976,3008656476 +1,2895,509,128,3.66679311,0.132258019,967.805211,3008656476 +1,2896,510,128,3.61165237,0.132493117,966.087921,3008656476 +1,2897,511,128,3.66236973,0.133246175,960.62795,3008656476 +1,2898,512,128,3.66311049,0.139299775,918.881599,3008656476 +1,2899,513,128,3.84369397,0.14311797,894.367074,3008656476 +1,2900,514,128,3.42109394,0.138839416,921.928395,3008656476 +1,2901,515,128,3.86951208,0.14681082,871.870343,3008656476 +1,2902,516,128,3.30276012,0.142262826,899.743128,3008656476 +1,2903,517,128,3.597013,0.132449176,966.408428,3008656476 +1,2904,518,128,3.91170025,0.131618905,972.504672,3008656476 +1,2905,519,128,3.61288095,0.132330249,967.276953,3008656476 +1,2906,520,128,3.16495037,0.130910411,977.767918,3008656476 +1,2907,521,128,3.33785415,0.131807589,971.112521,3008656476 +1,2908,522,128,3.00466275,0.142765737,896.573665,3008656476 +1,2909,523,128,3.48743701,0.143082662,894.587773,3008656476 +1,2910,524,128,2.82826781,0.126387375,1012.75938,3008656476 +1,2911,525,128,3.21747851,0.12870493,994.522898,3008656476 +1,2912,526,128,3.80282617,0.1294964,988.444466,3008656476 +1,2913,527,128,3.32553172,0.129109042,991.410036,3008656476 +1,2914,528,128,3.86240816,0.129429803,988.953062,3008656476 +1,2915,529,128,2.98185873,0.128404196,996.852159,3008656476 +1,2916,530,128,2.92660022,0.142958203,895.366599,3008656476 +1,2917,531,128,3.63897729,0.139359833,918.485601,3008656476 +1,2918,532,128,4.28959799,0.121153568,1056.51036,3008656476 +1,2919,533,128,3.78498006,0.128807077,993.734219,3008656476 +1,2920,534,128,3.70594001,0.128442778,996.552722,3008656476 +1,2921,535,128,3.68556261,0.128528598,995.887312,3008656476 +1,2922,536,128,3.50706983,0.128716615,994.432615,3008656476 +1,2923,537,128,3.74327803,0.128498235,996.122632,3008656476 +1,2924,538,128,2.60550046,0.137591724,930.288511,3008656476 +1,2925,539,128,3.05495667,0.125007164,1023.94132,3008656476 +1,2926,540,128,3.26972032,0.140930865,908.246749,3008656476 +1,2927,541,128,3.62231302,0.128389207,996.968538,3008656476 +1,2928,542,128,3.38477802,0.128343424,997.324179,3008656476 +1,2929,543,128,3.87682939,0.128211883,998.3474,3008656476 +1,2930,544,128,2.89704275,0.12842943,996.656296,3008656476 +1,2931,545,128,2.48318291,0.128234615,998.170424,3008656476 +1,2932,546,128,3.08777928,0.128963124,992.531788,3008656476 +1,2933,547,128,3.76890707,0.133532222,958.570134,3008656476 +1,2934,548,128,3.73215294,0.145621174,878.993051,3008656476 +1,2935,549,128,3.70559907,0.128467614,996.360063,3008656476 +1,2936,550,128,3.11844897,0.128994215,992.292561,3008656476 +1,2937,551,128,2.71006989,0.128420274,996.727355,3008656476 +1,2938,552,128,3.21213031,0.128468992,996.349376,3008656476 +1,2939,553,128,3.66589308,0.128845753,993.435926,3008656476 +1,2940,554,128,4.09686136,0.128772622,994.000107,3008656476 +1,2941,555,128,3.82076931,0.13646496,937.969718,3008656476 +1,2942,556,128,2.93561506,0.143221845,893.718413,3008656476 +1,2943,557,128,3.21100235,0.128818861,993.643314,3008656476 +1,2944,558,128,4.37738562,0.129288194,990.03626,3008656476 +1,2945,559,128,4.31747913,0.128962779,992.534443,3008656476 +1,2946,560,128,4.05202436,0.129918725,985.231344,3008656476 +1,2947,561,128,3.65905881,0.129243891,990.37563,3008656476 +1,2948,562,128,3.88956428,0.129849528,985.756375,3008656476 +1,2949,563,128,4.10241127,0.136617064,936.92542,3008656476 +1,2950,564,128,3.63502955,0.143114561,894.388377,3008656476 +1,2951,565,128,3.20213294,0.129381647,989.321152,3008656476 +1,2952,566,128,2.51132059,0.129522115,988.248223,3008656476 +1,2953,567,128,3.83274055,0.129167116,990.964295,3008656476 +1,2954,568,128,3.65330648,0.129183853,990.835906,3008656476 +1,2955,569,128,3.80699515,0.128265472,997.930293,3008656476 +1,2956,570,128,4.21625328,0.129186668,990.814315,3008656476 +1,2957,571,128,2.95794463,0.135993107,941.224175,3008656476 +1,2958,572,128,2.80044627,0.141399083,905.239251,3008656476 +1,2959,573,128,3.85438848,0.128917149,992.885749,3008656476 +1,2960,574,128,3.4421587,0.128893336,993.069184,3008656476 +1,2961,575,128,3.45237231,0.129336548,989.666123,3008656476 +1,2962,576,128,3.0244987,0.127690107,1002.42691,3008656476 +1,2963,577,128,4.07136297,0.128579907,995.48991,3008656476 +1,2964,578,128,3.18079185,0.128390221,996.960664,3008656476 +1,2965,579,128,3.11088872,0.139260794,919.138807,3008656476 +1,2966,580,128,2.87689924,0.1436758,890.894639,3008656476 +1,2967,581,128,3.3881278,0.130428927,981.37739,3008656476 +1,2968,582,128,3.54240227,0.13157659,972.817429,3008656476 +1,2969,583,128,3.21338463,0.130342282,982.029761,3008656476 +1,2970,584,128,3.45349026,0.133790645,956.718611,3008656476 +1,2971,585,128,2.95098186,0.131747195,971.557687,3008656476 +1,2972,586,128,4.18394804,0.148311371,863.049132,3008656476 +1,2973,587,128,3.67042232,0.137615127,930.130305,3008656476 +1,2974,588,128,3.30242515,0.145291718,880.98621,3008656476 +1,2975,589,128,4.08317137,0.143354604,892.890751,3008656476 +1,2976,590,128,3.66650939,0.121075825,1057.18875,3008656476 +1,2977,591,128,3.60757327,0.132006176,969.651602,3008656476 +1,2978,592,128,3.41422677,0.132295698,967.529572,3008656476 +1,2979,593,128,3.05348969,0.1323233,967.32775,3008656476 +1,2980,594,128,3.00834084,0.146011438,876.64365,3008656476 +1,2981,595,128,3.17665482,0.14553947,879.486506,3008656476 +1,2982,596,128,3.30729485,0.131571957,972.851684,3008656476 +1,2983,597,128,3.1881156,0.132453133,966.379557,3008656476 +1,2984,598,128,3.03155279,0.130401916,981.580669,3008656476 +1,2985,599,128,3.71170974,0.130112105,983.767037,3008656476 +1,2986,600,128,3.55988145,0.129010395,992.168112,3008656476 +1,2987,601,128,3.08027911,0.130316872,982.221243,3008656476 +1,2988,602,128,3.60912967,0.142380055,899.002322,3008656476 +1,2989,603,128,2.73299217,0.144072188,888.443507,3008656476 +1,2990,604,128,3.76781702,0.1280588,999.540836,3008656476 +1,2991,605,128,2.58253384,0.12840731,996.827984,3008656476 +1,2992,606,128,2.64050746,0.128753829,994.145192,3008656476 +1,2993,607,128,2.4454267,0.126603823,1011.02792,3008656476 +1,2994,608,128,3.43192863,0.128248033,998.06599,3008656476 +1,2995,609,128,2.90861464,0.129041213,991.931159,3008656476 +1,2996,610,128,2.90977192,0.143142875,894.211465,3008656476 +1,2997,611,128,2.41819859,0.145804642,877.887002,3008656476 +1,2998,612,128,3.098598,0.128032166,999.748766,3008656476 +1,2999,613,128,3.45161557,0.129598226,987.66784,3008656476 +1,3000,614,128,3.72310877,0.129019909,992.094949,3008656476 +1,3001,615,128,2.73313928,0.12903853,991.951784,3008656476 +1,3002,616,128,3.45497942,0.129109409,991.407218,3008656476 +1,3003,617,128,3.61692119,0.128386903,996.986429,3008656476 +1,3004,618,128,3.01107335,0.146169149,875.697785,3008656476 +1,3005,619,128,3.1685195,0.142354932,899.160979,3008656476 +1,3006,620,128,3.05474806,0.128012655,999.901143,3008656476 +1,3007,621,128,2.94406724,0.128735355,994.287855,3008656476 +1,3008,622,128,3.53346777,0.129595074,987.691862,3008656476 +1,3009,623,128,3.75575781,0.129678762,987.054457,3008656476 +1,3010,624,128,3.58459139,0.131030715,976.870194,3008656476 +1,3011,625,128,3.71277618,0.130198232,983.116268,3008656476 +1,3012,626,128,3.61376119,0.146380927,874.430861,3008656476 +1,3013,627,128,2.76505589,0.143703897,890.720451,3008656476 +1,3014,628,128,3.40859175,0.131558137,972.953881,3008656476 +1,3015,629,128,4.07043409,0.131486246,973.48585,3008656476 +1,3016,630,128,3.80035996,0.131115784,976.236393,3008656476 +1,3017,631,128,3.01202846,0.131031344,976.865505,3008656476 +1,3018,632,128,4.31769657,0.132897151,963.15082,3008656476 +1,3019,633,128,3.71114254,0.139347073,918.569707,3008656476 +1,3020,634,128,3.83531094,0.149867877,854.085629,3008656476 +1,3021,635,128,2.87292528,0.14979952,854.475368,3008656476 +1,3022,636,128,3.2692678,0.131035194,976.836803,3008656476 +1,3023,637,128,3.366817,0.132724278,964.405322,3008656476 +1,3024,638,128,3.31231213,0.130859497,978.148342,3008656476 +1,3025,639,128,4.13290405,0.132756748,964.169445,3008656476 +1,3026,640,128,3.41176748,0.131406487,974.076721,3008656476 +1,3027,641,128,3.56841707,0.144368339,886.620992,3008656476 +1,3028,642,128,2.9043963,0.145748485,878.225252,3008656476 +1,3029,643,128,3.49127626,0.130129652,983.634383,3008656476 +1,3030,644,128,3.83536959,0.12738166,1004.85423,3008656476 +1,3031,645,128,4.34786367,0.128764993,994.058999,3008656476 +1,3032,646,128,3.33334422,0.12885153,993.391386,3008656476 +1,3033,647,128,3.27949309,0.128691132,994.629529,3008656476 +1,3034,648,128,3.59887958,0.128771482,994.008906,3008656476 +1,3035,649,128,3.32933283,0.143177536,893.994991,3008656476 +1,3036,650,128,2.8837676,0.141727945,903.138756,3008656476 +1,3037,651,128,3.01499748,0.196113004,652.684918,3008656476 +1,3038,652,128,2.43577099,0.129605043,987.615891,3008656476 +1,3039,653,128,2.72203469,0.130599091,980.098705,3008656476 +1,3040,654,128,3.98449087,0.128679178,994.721928,3008656476 +1,3041,655,128,4.00203896,0.129223762,990.5299,3008656476 +1,3042,656,128,3.77626634,0.129069296,991.715334,3008656476 +1,3043,657,128,3.22549534,0.140684721,909.835831,3008656476 +1,3044,658,128,3.47389984,0.144490435,885.871788,3008656476 +1,3045,659,128,4.02184057,0.128394352,996.928588,3008656476 +1,3046,660,128,3.48656487,0.129488979,988.501114,3008656476 +1,3047,661,128,3.53771877,0.128434985,996.613189,3008656476 +1,3048,662,128,3.44349098,0.129121547,991.314021,3008656476 +1,3049,663,128,2.98394656,0.129789246,986.21422,3008656476 +1,3050,664,128,2.66234279,0.125946768,1016.30238,3008656476 +1,3051,665,128,4.09628677,0.146958898,870.991833,3008656476 +1,3052,666,128,3.8560195,0.144783722,884.077286,3008656476 +1,3053,667,128,3.33974481,0.133539788,958.515825,3008656476 +1,3054,668,128,2.81665063,0.139247293,919.227924,3008656476 +1,3055,669,128,2.81155539,0.14330609,893.193025,3008656476 +1,3056,670,128,3.22082233,0.138899634,921.528706,3008656476 +1,3057,671,128,2.5895164,0.132639348,965.022838,3008656476 +1,3058,672,128,3.04306769,0.146277709,875.047886,3008656476 +1,3059,673,128,3.03305554,0.14550053,879.721881,3008656476 +1,3060,674,128,3.90092969,0.131218492,975.472268,3008656476 +1,3061,675,128,3.67795348,0.131842435,970.855855,3008656476 +1,3062,676,128,3.32898879,0.130942224,977.530365,3008656476 +1,3063,677,128,3.99775243,0.131509163,973.316209,3008656476 +1,3064,678,128,3.41996264,0.130717148,979.213531,3008656476 +1,3065,679,128,3.47035551,0.130864244,978.11286,3008656476 +1,3066,680,128,3.54329062,0.145339263,880.698012,3008656476 +1,3067,681,128,3.68554664,0.143483725,892.087238,3008656476 +1,3068,682,128,3.32616758,0.130265723,982.606913,3008656476 +1,3069,683,128,3.16653967,0.129577403,987.826558,3008656476 +1,3070,684,128,3.18456101,0.128847843,993.419812,3008656476 +1,3071,685,128,2.81733012,0.128066036,999.48436,3008656476 +1,3072,686,128,3.08248878,0.128325629,997.462479,3008656476 +1,3073,687,128,2.6017518,0.127912777,1000.68189,3008656476 +1,3074,688,128,3.65933943,0.141267988,906.079302,3008656476 +1,3075,689,128,2.59011602,0.144079204,888.400244,3008656476 +1,3076,690,128,3.12003589,0.128369418,997.122227,3008656476 +1,3077,691,128,3.37299705,0.12786476,1001.05768,3008656476 +1,3078,692,128,3.44355941,0.128066238,999.482783,3008656476 +1,3079,693,128,2.82053328,0.12830557,997.61842,3008656476 +1,3080,694,128,3.63602185,0.128515485,995.988927,3008656476 +1,3081,695,128,3.46871829,0.129391262,989.247636,3008656476 +1,3082,696,128,3.92204022,0.146354244,874.590285,3008656476 +1,3083,697,128,3.71088839,0.144429818,886.243587,3008656476 +1,3084,698,128,3.1075418,0.129800941,986.125363,3008656476 +1,3085,699,128,3.02174544,0.129445781,988.830992,3008656476 +1,3086,700,128,3.91270447,0.128930034,992.786522,3008656476 +1,3087,701,128,3.31408453,0.128799549,993.7923,3008656476 +1,3088,702,128,3.14071584,0.129010338,992.16855,3008656476 +1,3089,703,128,2.54626179,0.128811994,993.696286,3008656476 +1,3090,704,128,3.42037892,0.141561475,904.200807,3008656476 +1,3091,705,128,3.80785561,0.140729973,909.543271,3008656476 +1,3092,706,128,3.44188499,0.129235549,990.439558,3008656476 +1,3093,707,128,3.44112945,0.129065603,991.74371,3008656476 +1,3094,708,128,2.79607892,0.128682248,994.698196,3008656476 +1,3095,709,128,3.74565506,0.130019106,984.470698,3008656476 +1,3096,710,128,2.43003273,0.129002474,992.229033,3008656476 +1,3097,711,128,3.51406264,0.129556763,987.983931,3008656476 +1,3098,712,128,3.39865637,0.143065754,894.693499,3008656476 +1,3099,713,128,3.56733251,0.144657965,884.84585,3008656476 +1,3100,714,128,2.43693042,0.130950601,977.467832,3008656476 +1,3101,715,128,1.97196615,0.131406444,974.07704,3008656476 +1,3102,716,128,2.61801124,0.131971888,969.90353,3008656476 +1,3103,717,128,3.47073174,0.131899195,970.438068,3008656476 +1,3104,718,128,4.03864861,0.132689496,964.658122,3008656476 +1,3105,719,128,3.91825676,0.133782448,956.77723,3008656476 +1,3106,720,128,3.69241452,0.155004878,825.780464,3008656476 +1,3107,721,128,3.79113603,0.154131465,830.459893,3008656476 +1,3108,722,128,3.08191133,0.13123432,975.354618,3008656476 +1,3109,723,128,3.94847679,0.131817602,971.038754,3008656476 +1,3110,724,128,3.11053371,0.131544145,973.057372,3008656476 +1,3111,725,128,3.46377563,0.132893119,963.180042,3008656476 +1,3112,726,128,3.12014461,0.130995765,977.130826,3008656476 +1,3113,727,128,3.54867148,0.141662337,903.557027,3008656476 +1,3114,728,128,3.1899929,0.128287527,997.75873,3008656476 +1,3115,729,128,3.55975366,0.136449622,938.075153,3008656476 +1,3116,730,128,3.39015484,0.132594136,965.351892,3008656476 +1,3117,731,128,3.92333508,0.131532964,973.140087,3008656476 +1,3118,732,128,3.26023412,0.133600307,958.081631,3008656476 +1,3119,733,128,2.8629868,0.130366744,981.845493,3008656476 +1,3120,734,128,2.23643327,0.130661507,979.63052,3008656476 +1,3121,735,128,2.25999188,0.147035973,870.535267,3008656476 +1,3122,736,128,2.17622066,0.139864941,915.168584,3008656476 +1,3123,737,128,2.18858385,0.127248277,1005.90753,3008656476 +1,3124,738,128,2.29810309,0.128627304,995.123088,3008656476 +1,3125,739,128,2.88399005,0.128858061,993.341037,3008656476 +1,3126,740,128,2.64499378,0.129035639,991.974008,3008656476 +1,3127,741,128,2.93028188,0.127260876,1005.80794,3008656476 +1,3128,742,128,3.08844829,0.128914868,992.903317,3008656476 +1,3129,743,128,3.15862942,0.141433193,905.020931,3008656476 +1,3130,744,128,2.89400744,0.14331042,893.166038,3008656476 +1,3131,745,128,2.41507936,0.122408225,1045.68137,3008656476 +1,3132,746,128,2.34061885,0.12819006,998.517358,3008656476 +1,3133,747,128,2.4236567,0.127697086,1002.37213,3008656476 +1,3134,748,128,3.20325184,0.128326512,997.455615,3008656476 +1,3135,749,128,4.06809092,0.12794984,1000.39203,3008656476 +1,3136,750,128,2.71512699,0.128086304,999.326204,3008656476 +1,3137,751,128,3.60856462,0.140802754,909.073128,3008656476 +1,3138,752,128,2.63424802,0.122551889,1044.45554,3008656476 +1,3139,753,128,3.02482677,0.13955411,917.206953,3008656476 +1,3140,754,128,3.27971816,0.128459501,996.422989,3008656476 +1,3141,755,128,3.10030532,0.128496641,996.134988,3008656476 +1,3142,756,128,3.69855738,0.128782593,993.923146,3008656476 +1,3143,757,128,2.38970423,0.128488708,996.196491,3008656476 +1,3144,758,128,3.09863234,0.12823982,998.12991,3008656476 +1,3145,759,128,2.81505156,0.129210624,990.630616,3008656476 +1,3146,760,128,3.24408102,0.134562415,951.231442,3008656476 +1,3147,761,128,3.92116261,0.141588606,904.027546,3008656476 +1,3148,762,128,4.21005154,0.128780369,993.940311,3008656476 +1,3149,763,128,3.64620876,0.128856652,993.351899,3008656476 +1,3150,764,128,3.95704746,0.127635446,1002.85621,3008656476 +1,3151,765,128,3.94172454,0.128944842,992.67251,3008656476 +1,3152,766,128,3.4942553,0.128839328,993.485467,3008656476 +1,3153,767,128,4.03149176,0.128574599,995.531007,3008656476 +1,3154,768,128,3.19741678,0.139731867,916.040147,3008656476 +1,3155,769,128,3.33782697,0.143393799,892.64669,3008656476 +1,3156,770,128,2.70638561,0.129347968,989.578746,3008656476 +1,3157,771,128,3.84609127,0.129491669,988.480579,3008656476 +1,3158,772,128,2.98753357,0.128690276,994.636145,3008656476 +1,3159,773,128,3.26421309,0.129068031,991.725054,3008656476 +1,3160,774,128,3.03351331,0.13004432,984.279821,3008656476 +1,3161,775,128,3.43936872,0.129454681,988.76301,3008656476 +1,3162,776,128,3.58107853,0.13785494,928.512246,3008656476 +1,3163,777,128,3.53573108,0.144057805,888.532211,3008656476 +1,3164,778,128,2.92159128,0.129420271,989.0259,3008656476 +1,3165,779,128,3.15197587,0.128901906,993.00316,3008656476 +1,3166,780,128,2.80954599,0.128425534,996.686531,3008656476 +1,3167,781,128,2.92680073,0.129032609,991.997302,3008656476 +1,3168,782,128,2.19892144,0.129505684,988.373607,3008656476 +1,3169,783,128,2.20916224,0.129044783,991.903718,3008656476 +1,3170,784,128,2.92473555,0.1383493,925.194417,3008656476 +1,3171,785,128,3.15088844,0.142527735,898.070821,3008656476 +1,3172,786,128,3.17708015,0.128525399,995.9121,3008656476 +1,3173,787,128,3.88401508,0.128997906,992.264169,3008656476 +1,3174,788,128,3.7889657,0.128412669,996.786384,3008656476 +1,3175,789,128,3.82730293,0.129308559,989.880337,3008656476 +1,3176,790,128,3.61611009,0.129333169,989.691979,3008656476 +1,3177,791,128,4.13552284,0.129018905,992.102669,3008656476 +1,3178,792,128,3.18917632,0.144315575,886.945155,3008656476 +1,3179,793,128,3.56041431,0.145058255,882.404107,3008656476 +1,3180,794,128,2.80281687,0.131755164,971.498924,3008656476 +1,3181,795,128,2.93807912,0.13983617,915.356878,3008656476 +1,3182,796,128,3.89067364,0.143320962,893.100341,3008656476 +1,3183,797,128,3.28174305,0.143128075,894.30393,3008656476 +1,3184,798,128,3.14742351,0.141250158,906.193677,3008656476 +1,3185,799,128,3.06104875,0.150880763,848.35202,3008656476 +1,3186,800,128,3.83234882,0.14829616,863.137656,3008656476 +1,3187,801,128,3.47088742,0.131088918,976.436467,3008656476 +1,3188,802,128,3.90528607,0.131690577,971.97539,3008656476 +1,3189,803,128,3.08110595,0.131401897,974.110747,3008656476 +1,3190,804,128,3.46201611,0.131402376,974.107196,3008656476 +1,3191,805,128,4.49776554,0.132064591,969.222704,3008656476 +1,3192,806,128,4.11021805,0.130492001,980.903036,3008656476 +1,3193,807,128,3.72283292,0.143578867,891.4961,3008656476 +1,3194,808,128,2.99904609,0.144657318,884.849808,3008656476 +1,3195,809,128,3.13385773,0.129996501,984.641887,3008656476 +1,3196,810,128,3.09161401,0.129537135,988.133634,3008656476 +1,3197,811,128,3.33140111,0.130950741,977.466787,3008656476 +1,3198,812,128,3.88879156,0.128213331,998.336125,3008656476 +1,3199,813,128,3.48228669,0.128739755,994.253873,3008656476 +1,3200,814,128,2.62653017,0.128096321,999.248058,3008656476 +1,3201,815,128,2.99588203,0.141452065,904.900187,3008656476 +1,3202,816,128,3.94220352,0.145099783,882.15156,3008656476 +1,3203,817,128,3.70705938,0.128446248,996.5258,3008656476 +1,3204,818,128,3.56649256,0.128457837,996.435897,3008656476 +1,3205,819,128,3.21284866,0.128683529,994.688295,3008656476 +1,3206,820,128,3.1753571,0.12735923,1005.0312,3008656476 +1,3207,821,128,3.24094915,0.129047862,991.880051,3008656476 +1,3208,822,128,3.04960108,0.128517141,995.976093,3008656476 +1,3209,823,128,4.26686668,0.143786639,890.207886,3008656476 +1,3210,824,128,3.59543991,0.145004558,882.730873,3008656476 +1,3211,825,128,3.25633478,0.12923791,990.421464,3008656476 +1,3212,826,128,3.58405447,0.129282274,990.081595,3008656476 +1,3213,827,128,3.45612979,0.128590842,995.405256,3008656476 +1,3214,828,128,3.2607069,0.129195996,990.742778,3008656476 +1,3215,829,128,3.37217569,0.129260288,990.249999,3008656476 +1,3216,830,128,3.52778745,0.129242329,990.3876,3008656476 +1,3217,831,128,2.46971631,0.142690515,897.04631,3008656476 +1,3218,832,128,3.74470091,0.142319156,899.387009,3008656476 +1,3219,833,128,4.22517347,0.12847333,996.315733,3008656476 +1,3220,834,128,4.23894978,0.129421076,989.019748,3008656476 +1,3221,835,128,3.80492473,0.129032676,991.996787,3008656476 +1,3222,836,128,3.14560175,0.128893517,993.067789,3008656476 +1,3223,837,128,3.8284626,0.128627397,995.122369,3008656476 +1,3224,838,128,3.72369981,0.128288192,997.753558,3008656476 +1,3225,839,128,3.52744699,0.147775635,866.177973,3008656476 +1,3226,840,128,3.52490854,0.146061958,876.340436,3008656476 +1,3227,841,128,3.20709038,0.131123964,976.175491,3008656476 +1,3228,842,128,2.84018636,0.132170531,968.445833,3008656476 +1,3229,843,128,3.91665554,0.132996022,962.434801,3008656476 +1,3230,844,128,2.88527441,0.132980677,962.545859,3008656476 +1,3231,845,128,3.42958307,0.139393782,918.261906,3008656476 +1,3232,846,128,3.06901741,0.142158345,900.404405,3008656476 +1,3233,847,128,4.06050634,0.136840846,935.393223,3008656476 +1,3234,848,128,3.18151116,0.128283422,997.790658,3008656476 +1,3235,849,128,3.08615136,0.134043876,954.911211,3008656476 +1,3236,850,128,2.87372279,0.131224973,975.424091,3008656476 +1,3237,851,128,3.16832542,0.132341182,967.197044,3008656476 +1,3238,852,128,2.44143772,0.13079649,978.619533,3008656476 +1,3239,853,128,3.15883398,0.133338118,959.965552,3008656476 +1,3240,854,128,4.21868372,0.14493831,883.134349,3008656476 +1,3241,855,128,3.25572443,0.144727103,884.423148,3008656476 +1,3242,856,128,4.0368495,0.128255722,998.006155,3008656476 +1,3243,857,128,3.35184646,0.127398431,1004.72195,3008656476 +1,3244,858,128,3.52093267,0.127846138,1001.20349,3008656476 +1,3245,859,128,3.32503557,0.128004973,999.96115,3008656476 +1,3246,860,128,3.5460453,0.128629671,995.104776,3008656476 +1,3247,861,128,3.66040277,0.129678326,987.057776,3008656476 +1,3248,862,128,3.10835671,0.142215121,900.04494,3008656476 +1,3249,863,128,2.76103497,0.14392035,889.380828,3008656476 +1,3250,864,128,3.33004928,0.128914369,992.90716,3008656476 +1,3251,865,128,3.02198935,0.128623308,995.154004,3008656476 +1,3252,866,128,3.23727751,0.129341033,989.631805,3008656476 +1,3253,867,128,3.20790243,0.129167256,990.963221,3008656476 +1,3254,868,128,3.48064137,0.129136213,991.201438,3008656476 +1,3255,869,128,3.37398577,0.129480859,988.563105,3008656476 +1,3256,870,128,3.68339396,0.142046052,901.11621,3008656476 +1,3257,871,128,2.92135692,0.142454071,898.53522,3008656476 +1,3258,872,128,3.15107322,0.129242436,990.38678,3008656476 +1,3259,873,128,2.75045276,0.129528931,988.19622,3008656476 +1,3260,874,128,3.30729699,0.129575718,987.839404,3008656476 +1,3261,875,128,2.78310752,0.129101263,991.469774,3008656476 +1,3262,876,128,3.51227307,0.129318588,989.803569,3008656476 +1,3263,877,128,2.60726905,0.128822824,993.612747,3008656476 +1,3264,878,128,2.88935423,0.14299331,895.146773,3008656476 +1,3265,879,128,3.27953172,0.141344289,905.590179,3008656476 +1,3266,880,128,3.71859384,0.128384717,997.003405,3008656476 +1,3267,881,128,4.1312294,0.129021198,992.085037,3008656476 +1,3268,882,128,4.70048952,0.129711071,986.808597,3008656476 +1,3269,883,128,3.90377998,0.129856876,985.700595,3008656476 +1,3270,884,128,2.7594533,0.130822355,978.42605,3008656476 +1,3271,885,128,3.79386115,0.131666189,972.155426,3008656476 +1,3272,886,128,3.42165637,0.145756399,878.177568,3008656476 +1,3273,887,128,3.86300826,0.145335847,880.718712,3008656476 +1,3274,888,128,2.98606801,0.133123302,961.514611,3008656476 +1,3275,889,128,3.49759364,0.132585482,965.414901,3008656476 +1,3276,890,128,2.68852234,0.132868154,963.361017,3008656476 +1,3277,891,128,2.8736763,0.131076317,976.530337,3008656476 +1,3278,892,128,3.63108349,0.132824162,963.680087,3008656476 +1,3279,893,128,3.79977846,0.131910139,970.357555,3008656476 +1,3280,894,128,3.88086152,0.144010306,888.825276,3008656476 +1,3281,895,128,3.61921072,0.145926494,877.153946,3008656476 +1,3282,896,128,2.57482338,0.130808244,978.531598,3008656476 +1,3283,897,128,3.27204108,0.131266597,975.114789,3008656476 +1,3284,898,128,2.58897829,0.132715566,964.468629,3008656476 +1,3285,899,128,3.39103651,0.130177787,983.270671,3008656476 +1,3286,900,128,2.84772706,0.129397348,989.201108,3008656476 +1,3287,901,128,2.65938282,0.130307846,982.289278,3008656476 +1,3288,902,128,2.79879284,0.141106807,907.114283,3008656476 +1,3289,903,128,3.24069643,0.144516099,885.71447,3008656476 +1,3290,904,128,2.55185413,0.128471211,996.332167,3008656476 +1,3291,905,128,2.97539878,0.127688644,1002.4384,3008656476 +1,3292,906,128,3.76929235,0.128662609,994.850027,3008656476 +1,3293,907,128,3.60709858,0.128179344,998.600835,3008656476 +1,3294,908,128,3.48338437,0.128433208,996.626978,3008656476 +1,3295,909,128,3.09461927,0.128271645,997.882268,3008656476 +1,3296,910,128,3.34621263,0.142648728,897.309088,3008656476 +1,3297,911,128,3.0783236,0.142344922,899.22421,3008656476 +1,3298,912,128,3.96739173,0.128735272,994.288496,3008656476 +1,3299,913,128,3.02815866,0.128728707,994.339204,3008656476 +1,3300,914,128,3.97476125,0.129347164,989.584897,3008656476 +1,3301,915,128,3.5025239,0.129430492,988.947798,3008656476 +1,3302,916,128,3.10794306,0.129452056,988.78306,3008656476 +1,3303,917,128,2.7105515,0.129863614,985.649452,3008656476 +1,3304,918,128,3.14086771,0.145227568,881.37536,3008656476 +1,3305,919,128,2.9435358,0.14277541,896.512922,3008656476 +1,3306,920,128,3.18305898,0.12920573,990.668138,3008656476 +1,3307,921,128,3.08663201,0.129254879,990.291438,3008656476 +1,3308,922,128,3.43949795,0.130172508,983.310547,3008656476 +1,3309,923,128,3.97559977,0.128462286,996.401387,3008656476 +1,3310,924,128,2.83764839,0.12855131,995.711362,3008656476 +1,3311,925,128,3.83248138,0.128844851,993.442881,3008656476 +1,3312,926,128,3.00715137,0.147188265,869.634546,3008656476 +1,3313,927,128,2.90026402,0.144461556,886.048881,3008656476 +1,3314,928,128,3.54420447,0.131691029,971.972054,3008656476 +1,3315,929,128,3.35394025,0.131867641,970.67028,3008656476 +1,3316,930,128,2.58490658,0.130811205,978.509448,3008656476 +1,3317,931,128,3.07719398,0.131026491,976.901686,3008656476 +1,3318,932,128,2.94703364,0.132621951,965.149427,3008656476 +1,3319,933,128,2.95733929,0.134232387,953.570169,3008656476 +1,3320,934,128,3.09686852,0.146564161,873.33765,3008656476 +1,3321,935,128,3.18575978,0.136458057,938.017167,3008656476 +1,3322,936,128,2.93701434,0.132048631,969.339849,3008656476 +1,3323,937,128,3.26267481,0.133507361,958.748634,3008656476 +1,3324,938,128,3.51346016,0.131746166,971.565275,3008656476 +1,3325,939,128,3.57094574,0.132602632,965.29004,3008656476 +1,3326,940,128,3.26097822,0.131189184,975.690191,3008656476 +1,3327,941,128,2.78576303,0.148948692,859.356321,3008656476 +1,3328,942,128,2.99716353,0.143737725,890.510824,3008656476 +1,3329,943,128,2.97749424,0.128787717,993.883601,3008656476 +1,3330,944,128,4.2397809,0.128943436,992.683334,3008656476 +1,3331,945,128,3.86124444,0.12907281,991.688335,3008656476 +1,3332,946,128,3.01663136,0.12862381,995.15012,3008656476 +1,3333,947,128,3.83311534,0.12845046,996.493123,3008656476 +1,3334,948,128,4.17966032,0.129677676,987.062723,3008656476 +1,3335,949,128,4.20746422,0.142679976,897.11257,3008656476 +1,3336,950,128,3.31590652,0.14496507,882.971325,3008656476 +1,3337,951,128,2.92307138,0.129222938,990.536216,3008656476 +1,3338,952,128,2.66736674,0.129493795,988.464351,3008656476 +1,3339,953,128,3.50382566,0.128816032,993.665136,3008656476 +1,3340,954,128,3.41712832,0.12935745,989.506209,3008656476 +1,3341,955,128,2.6237638,0.129027062,992.039949,3008656476 +1,3342,956,128,3.71487975,0.12977427,986.328029,3008656476 +1,3343,957,128,3.4667275,0.141413718,905.145567,3008656476 +1,3344,958,128,3.20582342,0.143479988,892.110473,3008656476 +1,3345,959,128,3.32829666,0.128734353,994.295594,3008656476 +1,3346,960,128,3.47649431,0.128818617,993.645196,3008656476 +1,3347,961,128,3.22327805,0.128686571,994.664781,3008656476 +1,3348,962,128,3.29420757,0.12965118,987.264443,3008656476 +1,3349,963,128,2.96559644,0.12920026,990.710081,3008656476 +1,3350,964,128,2.70427418,0.129359982,989.486841,3008656476 +1,3351,965,128,3.08390021,0.141704999,903.285,3008656476 +1,3352,966,128,3.2861352,0.143029584,894.919753,3008656476 +1,3353,967,128,4.10748625,0.12988299,985.502413,3008656476 +1,3354,968,128,3.38547421,0.129748832,986.521405,3008656476 +1,3355,969,128,3.12263227,0.130273447,982.548654,3008656476 +1,3356,970,128,2.83520603,0.132058131,969.270116,3008656476 +1,3357,971,128,3.26564646,0.131748726,971.546397,3008656476 +1,3358,972,128,2.59955239,0.133304399,960.208372,3008656476 +1,3359,973,128,2.88766766,0.147078116,870.285828,3008656476 +1,3360,974,128,3.41257524,0.145790888,877.969822,3008656476 +1,3361,975,128,3.51816702,0.131584323,972.760258,3008656476 +1,3362,976,128,3.56410336,0.133033596,962.162971,3008656476 +1,3363,977,128,3.48156118,0.133497891,958.816645,3008656476 +1,3364,978,128,3.5768199,0.139172601,919.72126,3008656476 +1,3365,979,128,3.56551147,0.142920905,895.600262,3008656476 +1,3366,980,128,3.07461166,0.143662541,890.976862,3008656476 +1,3367,981,128,3.38225842,0.146642919,872.868604,3008656476 +1,3368,982,128,2.97585368,0.145808725,877.862419,3008656476 +1,3369,983,128,3.00183749,0.132323338,967.327472,3008656476 +1,3370,984,128,3.20279026,0.133882317,956.063526,3008656476 +1,3371,985,128,3.18732238,0.131358759,974.430643,3008656476 +1,3372,986,128,2.98759985,0.13272012,964.435535,3008656476 +1,3373,987,128,2.85983396,0.131546433,973.040447,3008656476 +1,3374,988,128,3.25548863,0.150371906,851.222834,3008656476 +1,3375,989,128,3.62922835,0.144137356,888.04182,3008656476 +1,3376,990,128,2.58295107,0.127975976,1000.18772,3008656476 +1,3377,991,128,2.84969616,0.128890576,993.090449,3008656476 +1,3378,992,128,3.19898486,0.127787144,1001.66571,3008656476 +1,3379,993,128,2.23966265,0.12867668,994.741238,3008656476 +1,3380,994,128,2.65360427,0.129379649,989.33643,3008656476 +1,3381,995,128,2.23244667,0.128276321,997.845892,3008656476 +1,3382,996,128,3.24009442,0.142307941,899.457888,3008656476 +1,3383,997,128,3.00646067,0.143100902,894.473747,3008656476 +1,3384,998,128,2.87758756,0.130092799,983.91303,3008656476 +1,3385,999,128,3.03194094,0.129005129,992.208612,3008656476 +1,3386,1000,128,3.59006929,0.130242328,982.783416,3008656476 +1,3387,1001,128,2.97954226,0.128800539,993.784661,3008656476 +1,3388,1002,128,3.06022596,0.129177606,990.883822,3008656476 +1,3389,1003,128,3.07512522,0.129848857,985.761469,3008656476 +1,3390,1004,128,3.40684366,0.141484437,904.693143,3008656476 +1,3391,1005,128,3.04701686,0.144439942,886.181469,3008656476 +1,3392,1006,128,3.47111368,0.12955124,988.026051,3008656476 +1,3393,1007,128,3.38252449,0.129053188,991.839117,3008656476 +1,3394,1008,128,2.98601294,0.12895422,992.60032,3008656476 +1,3395,1009,128,2.89419031,0.129679124,987.051702,3008656476 +1,3396,1010,128,3.31446576,0.128140327,998.904896,3008656476 +1,3397,1011,128,2.50670123,0.128811969,993.696479,3008656476 +1,3398,1012,128,3.28584743,0.141207195,906.469391,3008656476 +1,3399,1013,128,2.77570367,0.142678378,897.122618,3008656476 +1,3400,1014,128,3.1513207,0.129307027,989.892065,3008656476 +1,3401,1015,128,2.04196596,0.129670797,987.115087,3008656476 +1,3402,1016,128,2.61471224,0.130637301,979.812037,3008656476 +1,3403,1017,128,2.7173562,0.130674893,979.530169,3008656476 +1,3404,1018,128,3.07649899,0.130311518,982.261599,3008656476 +1,3405,1019,128,3.60154176,0.131311309,974.782758,3008656476 +1,3406,1020,128,3.73689532,0.14566194,878.74705,3008656476 +1,3407,1021,128,3.36450601,0.145174628,881.696766,3008656476 +1,3408,1022,128,3.23354244,0.130650499,979.713059,3008656476 +1,3409,1023,128,4.16982317,0.132793736,963.900888,3008656476 +1,3410,1024,128,3.73860621,0.133089878,961.756085,3008656476 +1,3411,1025,128,3.4716866,0.139542455,917.283561,3008656476 +1,3412,1026,128,3.00333357,0.132751182,964.20987,3008656476 +1,3413,1027,128,2.89732957,0.131905637,970.390674,3008656476 +1,3414,1028,128,2.88488889,0.146670207,872.706207,3008656476 +1,3415,1029,128,3.23406863,0.145008608,882.706218,3008656476 +1,3416,1030,128,2.61142516,0.131473004,973.5839,3008656476 +1,3417,1031,128,3.3171463,0.131425941,973.932536,3008656476 +1,3418,1032,128,2.7577529,0.131463501,973.654277,3008656476 +1,3419,1033,128,3.03727579,0.131027113,976.897049,3008656476 +1,3420,1034,128,3.40055203,0.130515566,980.725931,3008656476 +1,3421,1035,128,3.56048775,0.129512064,988.324918,3008656476 +1,3422,1036,128,3.40890551,0.142734714,896.768532,3008656476 +1,3423,1037,128,3.19311142,0.144296517,887.062298,3008656476 +1,3424,1038,128,3.06840706,0.129491806,988.479534,3008656476 +1,3425,1039,128,2.88285851,0.129204245,990.679525,3008656476 +1,3426,1040,128,3.4351604,0.128060491,999.527637,3008656476 +1,3427,1041,128,3.45531511,0.129035338,991.976322,3008656476 +1,3428,1042,128,3.11785889,0.12820713,998.384411,3008656476 +1,3429,1043,128,2.18434978,0.129375657,989.366956,3008656476 +1,3430,1044,128,2.58400917,0.141580787,904.077472,3008656476 +1,3431,1045,128,2.95206261,0.143670127,890.929817,3008656476 +1,3432,1046,128,2.96807599,0.12917231,990.924448,3008656476 +1,3433,1047,128,2.867589,0.128280956,997.809839,3008656476 +1,3434,1048,128,3.56542826,0.128471816,996.327475,3008656476 +1,3435,1049,128,3.58318186,0.128947092,992.655189,3008656476 +1,3436,1050,128,3.74523354,0.129723334,986.715312,3008656476 +1,3437,1051,128,3.30641818,0.129752065,986.496824,3008656476 +1,3438,1052,128,3.03768945,0.144064284,888.492251,3008656476 +1,3439,1053,128,2.89941382,0.143691268,890.798737,3008656476 +1,3440,1054,128,3.80238152,0.129662275,987.179964,3008656476 +1,3441,1055,128,3.24042773,0.129309384,989.874022,3008656476 +1,3442,1056,128,3.68587899,0.128921922,992.84899,3008656476 +1,3443,1057,128,3.75030398,0.129270239,990.173771,3008656476 +1,3444,1058,128,3.33566499,0.129867425,985.620528,3008656476 +1,3445,1059,128,2.73509836,0.128738794,994.261295,3008656476 +1,3446,1060,128,3.83077455,0.142022812,901.263665,3008656476 +1,3447,1061,128,4.22462273,0.142819134,896.238455,3008656476 +1,3448,1062,128,3.70608377,0.128842844,993.458356,3008656476 +1,3449,1063,128,3.4617784,0.129083117,991.609151,3008656476 +1,3450,1064,128,2.94404721,0.129586137,987.759979,3008656476 +1,3451,1065,128,3.13261986,0.129738779,986.597847,3008656476 +1,3452,1066,128,3.22811246,0.130882746,977.974591,3008656476 +1,3453,1067,128,3.27003908,0.129482651,988.549424,3008656476 +1,3454,1068,128,3.51096702,0.142926973,895.562239,3008656476 +1,3455,1069,128,3.86303973,0.143466847,892.192187,3008656476 +1,3456,1070,128,3.6843679,0.131975444,969.877396,3008656476 +1,3457,1071,128,3.87884927,0.135086541,947.540732,3008656476 +1,3458,1072,128,2.86897254,0.131891252,970.496512,3008656476 +1,3459,1073,128,3.56935167,0.125466575,1020.19203,3008656476 +1,3460,1074,128,3.23840761,0.131990905,969.763788,3008656476 +1,3461,1075,128,3.42087817,0.148367308,862.723748,3008656476 +1,3462,1076,128,3.85047007,0.143439694,892.361078,3008656476 +1,3463,1077,128,3.48610234,0.129665628,987.154437,3008656476 +1,3464,1078,128,3.72520256,0.128214017,998.330783,3008656476 +1,3465,1079,128,4.21348286,0.128914467,992.906405,3008656476 +1,3466,1080,128,3.12145329,0.12820063,998.435031,3008656476 +1,3467,1081,128,1.84799159,0.128662872,994.847993,3008656476 +1,3468,1082,128,2.93955517,0.128813869,993.681822,3008656476 +1,3469,1083,128,3.373353,0.141049942,907.47999,3008656476 +1,3470,1084,128,3.45767403,0.142742279,896.721006,3008656476 +1,3471,1085,128,3.35364127,0.130165375,983.364432,3008656476 +1,3472,1086,128,3.46977758,0.129534913,988.150585,3008656476 +1,3473,1087,128,2.92255807,0.129482437,988.551057,3008656476 +1,3474,1088,128,3.14552259,0.129656988,987.220218,3008656476 +1,3475,1089,128,3.05342102,0.129062778,991.765418,3008656476 +1,3476,1090,128,3.17115998,0.12892932,992.79202,3008656476 +1,3477,1091,128,3.45691848,0.146102728,876.095893,3008656476 +1,3478,1092,128,2.91539693,0.144448635,886.128138,3008656476 +1,3479,1093,128,3.8169961,0.128826357,993.585497,3008656476 +1,3480,1094,128,3.81077313,0.129325957,989.74717,3008656476 +1,3481,1095,128,3.21605611,0.12895462,992.597241,3008656476 +1,3482,1096,128,2.97542715,0.129340807,989.633535,3008656476 +1,3483,1097,128,3.1662457,0.129666815,987.1454,3008656476 +1,3484,1098,128,3.37003636,0.148407533,862.489911,3008656476 +1,3485,1099,128,3.77985358,0.18908748,676.935353,3008656476 +1,3486,1100,128,3.5309093,0.14618417,875.607803,3008656476 +1,3487,1101,128,3.33533239,0.131231145,975.378215,3008656476 +1,3488,1102,128,3.24231958,0.130740792,979.036443,3008656476 +1,3489,1103,128,3.34166193,0.130435941,981.324618,3008656476 +1,3490,1104,128,3.08345532,0.132675319,964.7612,3008656476 +1,3491,1105,128,3.79971457,0.13304716,962.06488,3008656476 +1,3492,1106,128,2.91840363,0.138936366,921.285072,3008656476 +1,3493,1107,128,2.99205494,0.158268942,808.749957,3008656476 +1,3494,1108,128,2.99024844,0.135761807,942.827757,3008656476 +1,3495,1109,128,2.47122049,0.131268808,975.098365,3008656476 +1,3496,1110,128,2.95768929,0.131974947,969.881049,3008656476 +1,3497,1111,128,3.06897044,0.131436033,973.857755,3008656476 +1,3498,1112,128,2.74251604,0.13223732,967.956701,3008656476 +1,3499,1113,128,2.75259233,0.131611831,972.556943,3008656476 +1,3500,1114,128,3.59326291,0.145931663,877.122876,3008656476 +1,3501,1115,128,2.35638404,0.142583093,897.722144,3008656476 +1,3502,1116,128,2.66554475,0.129406109,989.134137,3008656476 +1,3503,1117,128,2.46096492,0.131702978,971.88387,3008656476 +1,3504,1118,128,3.11342311,0.128501248,996.099275,3008656476 +1,3505,1119,128,2.88042879,0.128689618,994.64123,3008656476 +1,3506,1120,128,2.19909835,0.128518521,995.965399,3008656476 +1,3507,1121,128,2.97046471,0.128879843,993.173153,3008656476 +1,3508,1122,128,2.85722899,0.144276675,887.184294,3008656476 +1,3509,1123,128,2.33256221,0.142471198,898.427204,3008656476 +1,3510,1124,128,1.86306417,0.128801951,993.773767,3008656476 +1,3511,1125,128,3.39843798,0.129705336,986.852229,3008656476 +1,3512,1126,128,2.57218146,0.129488941,988.501404,3008656476 +1,3513,1127,128,3.99670768,0.129664175,987.165499,3008656476 +1,3514,1128,128,3.58050179,0.129817135,986.002349,3008656476 +1,3515,1129,128,2.16323781,0.129273461,990.149092,3008656476 +1,3516,1130,128,3.19659925,0.140922772,908.298909,3008656476 +1,3517,1131,128,2.76529503,0.145081917,882.260192,3008656476 +1,3518,1132,128,2.78214002,0.129480722,988.564151,3008656476 +1,3519,1133,128,2.67194819,0.128671152,994.783975,3008656476 +1,3520,1134,128,3.75737023,0.129737555,986.607155,3008656476 +1,3521,1135,128,3.50368714,0.129662393,987.179066,3008656476 +1,3522,1136,128,3.19292045,0.128861031,993.318143,3008656476 +1,3523,1137,128,3.34871173,0.128389146,996.969012,3008656476 +1,3524,1138,128,3.09095383,0.143845028,889.846537,3008656476 +1,3525,1139,128,2.87509513,0.143941199,889.252006,3008656476 +1,3526,1140,128,3.02440524,0.129197248,990.733177,3008656476 +1,3527,1141,128,3.15473533,0.129369256,989.415909,3008656476 +1,3528,1142,128,3.16115165,0.128433346,996.625907,3008656476 +1,3529,1143,128,2.82482505,0.129430924,988.944497,3008656476 +1,3530,1144,128,2.99187326,0.130501488,980.831728,3008656476 +1,3531,1145,128,3.68616056,0.131122517,976.186264,3008656476 +1,3532,1146,128,3.83980894,0.148404403,862.508102,3008656476 +1,3533,1147,128,3.51011443,0.145443612,880.066152,3008656476 +1,3534,1148,128,3.66212463,0.133144692,961.360142,3008656476 +1,3535,1149,128,3.32299876,0.133161652,961.237699,3008656476 +1,3536,1150,128,3.5491426,0.139163207,919.783345,3008656476 +1,3537,1151,128,3.38670802,0.143602026,891.352327,3008656476 +1,3538,1152,128,3.68943977,0.14324056,893.601645,3008656476 +1,3539,1153,128,3.48010445,0.139176296,919.696843,3008656476 +1,3540,1154,128,3.27318001,0.146039414,876.475716,3008656476 +1,3541,1155,128,3.4547565,0.136543086,937.433039,3008656476 +1,3542,1156,128,3.37098479,0.132150731,968.590934,3008656476 +1,3543,1157,128,3.89170051,0.132333078,967.256274,3008656476 +1,3544,1158,128,3.40699434,0.13138648,974.22505,3008656476 +1,3545,1159,128,3.61600852,0.133902962,955.916121,3008656476 +1,3546,1160,128,3.61565042,0.130795933,978.623701,3008656476 +1,3547,1161,128,3.57246661,0.142612563,897.536636,3008656476 +1,3548,1162,128,2.83642793,0.139163228,919.783206,3008656476 +1,3549,1163,128,3.10199833,0.129777116,986.306399,3008656476 +1,3550,1164,128,3.28030944,0.129673879,987.091625,3008656476 +1,3551,1165,128,3.84354377,0.12943828,988.888295,3008656476 +1,3552,1166,128,3.4166429,0.129208813,990.6445,3008656476 +1,3553,1167,128,3.74866486,0.128492176,996.169603,3008656476 +1,3554,1168,128,3.16176128,0.128891316,993.084747,3008656476 +1,3555,1169,128,3.93141174,0.135228008,946.549475,3008656476 +1,3556,1170,128,3.20518017,0.125649206,1018.70918,3008656476 +1,3557,1171,128,3.71865392,0.135223857,946.578532,3008656476 +1,3558,1172,128,3.24974394,0.129915338,985.257029,3008656476 +1,3559,1173,128,3.38982987,0.131980894,969.837346,3008656476 +1,3560,1174,128,3.91678834,0.132098318,968.975245,3008656476 +1,3561,1175,128,3.96500874,0.129745599,986.545987,3008656476 +1,3562,1176,128,3.62724328,0.129822607,985.960789,3008656476 +1,3563,1177,128,3.23712707,0.129892429,985.430798,3008656476 +1,3564,1178,128,3.22343183,0.135627022,943.764731,3008656476 +1,3565,1179,128,3.56548166,0.138171553,926.384608,3008656476 +1,3566,1180,128,3.93373156,0.132134625,968.708997,3008656476 +1,3567,1181,128,3.48726034,0.131596778,972.668191,3008656476 +1,3568,1182,128,3.77131176,0.132292969,967.54953,3008656476 +1,3569,1183,128,2.7641561,0.130353976,981.941663,3008656476 +1,3570,1184,128,2.85790324,0.130362148,981.880108,3008656476 +1,3571,1185,128,3.91207886,0.14274468,896.705923,3008656476 +1,3572,1186,128,3.65233183,0.142006025,901.370206,3008656476 +1,3573,1187,128,3.68332076,0.127744873,1001.99716,3008656476 +1,3574,1188,128,3.64792585,0.129504057,988.386024,3008656476 +1,3575,1189,128,3.27958679,0.129299806,989.947348,3008656476 +1,3576,1190,128,3.07352018,0.129969083,984.849605,3008656476 +1,3577,1191,128,2.52155995,0.128828129,993.571831,3008656476 +1,3578,1192,128,3.27578402,0.129640683,987.344382,3008656476 +1,3579,1193,128,2.93555212,0.135945768,941.551928,3008656476 +1,3580,1194,128,2.42890835,0.128041519,999.675738,3008656476 +1,3581,1195,128,2.59616256,0.135524012,944.482075,3008656476 +1,3582,1196,128,2.39366722,0.131342822,974.548879,3008656476 +1,3583,1197,128,3.06908512,0.130626957,979.889626,3008656476 +1,3584,1198,128,2.75044847,0.130469294,981.073754,3008656476 +1,3585,1199,128,3.87211442,0.129665007,987.159165,3008656476 +1,3586,1200,128,3.28525543,0.130662533,979.622827,3008656476 +1,3587,1201,128,3.77213764,0.129051054,991.855518,3008656476 +1,3588,1202,128,3.29451895,0.134716976,950.140092,3008656476 +1,3589,1203,128,3.37849784,0.139863436,915.178432,3008656476 +1,3590,1204,128,3.35774016,0.131482448,973.51397,3008656476 +1,3591,1205,128,3.52328062,0.131326198,974.672243,3008656476 +1,3592,1206,128,3.44950199,0.130481075,980.985174,3008656476 +1,3593,1207,128,3.35286212,0.129653026,987.250386,3008656476 +1,3594,1208,128,3.41470361,0.129588981,987.738302,3008656476 +1,3595,1209,128,3.12911844,0.129499671,988.4195,3008656476 +1,3596,1210,128,3.30271602,0.134130263,954.296198,3008656476 +1,3597,1211,128,3.69925427,0.141062182,907.401248,3008656476 +1,3598,1212,128,3.32704806,0.13223781,967.953114,3008656476 +1,3599,1213,128,3.20021939,0.132139896,968.670355,3008656476 +1,3600,1214,128,3.8463788,0.131201546,975.59826,3008656476 +1,3601,1215,128,3.82964635,0.13130326,974.842513,3008656476 +1,3602,1216,128,3.22468638,0.131792196,971.225944,3008656476 +1,3603,1217,128,3.43975878,0.140362078,911.927223,3008656476 +1,3604,1218,128,3.25120831,0.127489304,1004.00579,3008656476 +1,3605,1219,128,3.89403009,0.134481215,951.805797,3008656476 +1,3606,1220,128,2.67939591,0.131407396,974.069983,3008656476 +1,3607,1221,128,3.16571283,0.130235717,982.833304,3008656476 +1,3608,1222,128,3.16378093,0.131450827,973.748153,3008656476 +1,3609,1223,128,3.17091608,0.132378173,966.926776,3008656476 +1,3610,1224,128,3.84221864,0.129425205,988.988196,3008656476 +1,3611,1225,128,3.99084568,0.139824409,915.433871,3008656476 +1,3612,1226,128,3.48017454,0.12649049,1011.93378,3008656476 +1,3613,1227,128,3.57343149,0.136466828,937.956878,3008656476 +1,3614,1228,128,3.68192577,0.131266422,975.116089,3008656476 +1,3615,1229,128,3.38575625,0.131191682,975.671613,3008656476 +1,3616,1230,128,3.3193872,0.13121647,975.4873,3008656476 +1,3617,1231,128,2.7446804,0.130681108,979.483584,3008656476 +1,3618,1232,128,3.76391697,0.129612245,987.561013,3008656476 +1,3619,1233,128,3.65038967,0.140412361,911.600653,3008656476 +1,3620,1234,128,2.91265321,0.125109165,1023.1065,3008656476 +1,3621,1235,128,3.3948102,0.136524136,937.563157,3008656476 +1,3622,1236,128,3.35473323,0.133300897,960.233598,3008656476 +1,3623,1237,128,3.4037149,0.131828685,970.957118,3008656476 +1,3624,1238,128,3.17456102,0.131947881,970.079997,3008656476 +1,3625,1239,128,3.57440376,0.130082251,983.992812,3008656476 +1,3626,1240,128,3.61065435,0.130803293,978.568636,3008656476 +1,3627,1241,128,2.24310255,0.138482232,924.306304,3008656476 +1,3628,1242,128,3.11976743,0.127358523,1005.03678,3008656476 +1,3629,1243,128,2.28943634,0.1353332,945.81374,3008656476 +1,3630,1244,128,3.34229684,0.131124161,976.174025,3008656476 +1,3631,1245,128,2.62969136,0.131896592,970.45722,3008656476 +1,3632,1246,128,2.96213913,0.13095773,977.414621,3008656476 +1,3633,1247,128,2.51194263,0.130794839,978.631886,3008656476 +1,3634,1248,128,1.81858361,0.12974804,986.527427,3008656476 +1,3635,1249,128,1.99568748,0.138225323,926.024242,3008656476 +1,3636,1250,128,2.30356097,0.125183493,1022.49903,3008656476 +1,3637,1251,128,1.96320951,0.136538397,937.465232,3008656476 +1,3638,1252,128,2.47750306,0.132027444,969.495403,3008656476 +1,3639,1253,128,2.66873646,0.131124334,976.172737,3008656476 +1,3640,1254,128,2.44068384,0.131229065,975.393675,3008656476 +1,3641,1255,128,2.0372777,0.132060549,969.252369,3008656476 +1,3642,1256,128,2.38278627,0.130235392,982.835756,3008656476 +1,3643,1257,128,2.68151951,0.13998353,914.393286,3008656476 +1,3644,1258,128,2.01058865,0.129503263,988.392084,3008656476 +1,3645,1259,128,3.27103043,0.119364905,1072.34199,3008656476 +1,3646,1260,128,3.82911873,0.129598679,987.664388,3008656476 +1,3647,1261,128,3.63841391,0.129633857,987.396371,3008656476 +1,3648,1262,128,3.93337107,0.131419086,973.983338,3008656476 +1,3649,1263,128,3.88886428,0.129482356,988.551676,3008656476 +1,3650,1264,128,3.5055685,0.128653957,994.916931,3008656476 +1,3651,1265,128,3.48979616,0.141901147,902.036401,3008656476 +1,3652,1266,128,3.07422471,0.141677375,903.461121,3008656476 +1,3653,1267,128,3.42238069,0.122250315,1047.03207,3008656476 +1,3654,1268,128,3.31325698,0.12921263,990.615236,3008656476 +1,3655,1269,128,3.43767667,0.1295183,988.277332,3008656476 +1,3656,1270,128,2.41330957,0.128973896,992.448891,3008656476 +1,3657,1271,128,2.83174014,0.128135626,998.941543,3008656476 +1,3658,1272,128,2.72425652,0.128466854,996.365958,3008656476 +1,3659,1273,128,4.03919458,0.140132111,913.423762,3008656476 +1,3660,1274,128,2.7645669,0.126173543,1014.47575,3008656476 +1,3661,1275,128,3.74255443,0.137614105,930.137212,3008656476 +1,3662,1276,128,3.70122242,0.130660244,979.639989,3008656476 +1,3663,1277,128,2.72771144,0.128569573,995.569924,3008656476 +1,3664,1278,128,3.16564798,0.130381541,981.734063,3008656476 +1,3665,1279,128,3.46033216,0.129362699,989.466059,3008656476 +1,3666,1280,128,3.08236814,0.128829335,993.56253,3008656476 +1,3667,1281,128,3.5296545,0.128511952,996.016308,3008656476 +1,3668,1282,128,3.50394869,0.131781645,971.303705,3008656476 +1,3669,1283,128,2.57779169,0.143017275,894.996776,3008656476 +1,3670,1284,128,3.10255742,0.127468858,1004.16684,3008656476 +1,3671,1285,128,3.52262688,0.128463127,996.394864,3008656476 +1,3672,1286,128,3.14992642,0.129233464,990.455537,3008656476 +1,3673,1287,128,3.39837742,0.128285029,997.778159,3008656476 +1,3674,1288,128,2.65160298,0.129125045,991.287167,3008656476 +1,3675,1289,128,3.20208263,0.128380664,997.034881,3008656476 +1,3676,1290,128,3.24278426,0.133713835,957.268184,3008656476 +1,3677,1291,128,3.08907819,0.143265354,893.446995,3008656476 +1,3678,1292,128,3.48825216,0.128777442,993.962902,3008656476 +1,3679,1293,128,2.86420393,0.129251976,990.31368,3008656476 +1,3680,1294,128,2.74702811,0.129463174,988.698145,3008656476 +1,3681,1295,128,2.78851318,0.128508032,996.046691,3008656476 +1,3682,1296,128,3.06097507,0.128994673,992.289038,3008656476 +1,3683,1297,128,3.45772386,0.128706981,994.50705,3008656476 +1,3684,1298,128,3.15070939,0.136982754,934.424198,3008656476 +1,3685,1299,128,3.49348521,0.143434762,892.391762,3008656476 +1,3686,1300,128,3.12496877,0.129678359,987.057524,3008656476 +1,3687,1301,128,3.14913893,0.129231379,990.471517,3008656476 +1,3688,1302,128,2.91701174,0.129714312,986.783941,3008656476 +1,3689,1303,128,3.22897673,0.128913336,992.915116,3008656476 +1,3690,1304,128,3.15998054,0.128945407,992.668161,3008656476 +1,3691,1305,128,3.43861079,0.128783211,993.918377,3008656476 +1,3692,1306,128,3.20973063,0.136344654,938.797351,3008656476 +1,3693,1307,128,3.43008447,0.142971714,895.281986,3008656476 +1,3694,1308,128,2.5015099,0.129300154,989.944683,3008656476 +1,3695,1309,128,3.4012506,0.129619629,987.504755,3008656476 +1,3696,1310,128,4.07076454,0.128761117,994.088922,3008656476 +1,3697,1311,128,3.03508711,0.128232278,998.188615,3008656476 +1,3698,1312,128,2.85445261,0.12941552,989.062208,3008656476 +1,3699,1313,128,3.4130249,0.129102279,991.461971,3008656476 +1,3700,1314,128,2.78759336,0.140565838,910.605321,3008656476 +1,3701,1315,128,2.86441445,0.141964957,901.630957,3008656476 +1,3702,1316,128,3.34879446,0.129133904,991.219161,3008656476 +1,3703,1317,128,3.15669441,0.129319236,989.79861,3008656476 +1,3704,1318,128,2.29607177,0.129127339,991.269556,3008656476 +1,3705,1319,128,3.20345879,0.129707063,986.83909,3008656476 +1,3706,1320,128,3.55842113,0.128951182,992.623705,3008656476 +1,3707,1321,128,3.19471169,0.129853395,985.727019,3008656476 +1,3708,1322,128,3.64744759,0.143533216,891.779642,3008656476 +1,3709,1323,128,3.03480768,0.145343156,880.674423,3008656476 +1,3710,1324,128,2.12187195,0.135365391,945.588817,3008656476 +1,3711,1325,128,2.72959924,0.138856537,921.814722,3008656476 +1,3712,1326,128,3.79073191,0.139136488,919.959975,3008656476 +1,3713,1327,128,3.53050017,0.143125348,894.32097,3008656476 +1,3714,1328,128,3.44853234,0.143401381,892.599493,3008656476 +1,3715,1329,128,2.99428797,0.147329788,868.799187,3008656476 +1,3716,1330,128,3.23066187,0.147015564,870.656116,3008656476 +1,3717,1331,128,2.76572251,0.133780639,956.790168,3008656476 +1,3718,1332,128,3.29108,0.132048491,969.340876,3008656476 +1,3719,1333,128,2.96658468,0.132840001,963.565184,3008656476 +1,3720,1334,128,3.61200261,0.131534647,973.127635,3008656476 +1,3721,1335,128,2.96463466,0.131031492,976.864401,3008656476 +1,3722,1336,128,3.65577221,0.130023989,984.433726,3008656476 +1,3723,1337,128,2.67285275,0.144210755,887.589833,3008656476 +1,3724,1338,128,2.90190911,0.144234595,887.443127,3008656476 +1,3725,1339,128,2.94288468,0.129873138,985.577171,3008656476 +1,3726,1340,128,2.7980392,0.129505515,988.374897,3008656476 +1,3727,1341,128,2.86719632,0.129288914,990.030746,3008656476 +1,3728,1342,128,3.05217385,0.12992161,985.209466,3008656476 +1,3729,1343,128,2.81911683,0.128588269,995.425174,3008656476 +1,3730,1344,128,3.42111588,0.127932644,1000.5265,3008656476 +1,3731,1345,128,3.08600235,0.141379052,905.367508,3008656476 +1,3732,1346,128,3.35096049,0.142077346,900.91773,3008656476 +1,3733,1347,128,2.86104846,0.128060185,999.530026,3008656476 +1,3734,1348,128,2.37504005,0.128822362,993.61631,3008656476 +1,3735,1349,128,3.4306879,0.128400495,996.880892,3008656476 +1,3736,1350,128,3.33484387,0.128905415,992.976129,3008656476 +1,3737,1351,128,3.65308022,0.127923875,1000.59508,3008656476 +1,3738,1352,128,2.90059972,0.129486454,988.52039,3008656476 +1,3739,1353,128,2.6333313,0.14380037,890.122884,3008656476 +1,3740,1354,128,3.35250354,0.142058539,901.037001,3008656476 +1,3741,1355,128,2.66298532,0.12925236,990.310738,3008656476 +1,3742,1356,128,2.7481935,0.129482795,988.548324,3008656476 +1,3743,1357,128,2.99121928,0.128490105,996.18566,3008656476 +1,3744,1358,128,3.54798913,0.127922406,1000.60657,3008656476 +1,3745,1359,128,2.78140998,0.129647515,987.292352,3008656476 +1,3746,1360,128,2.72062373,0.129118628,991.336432,3008656476 +1,3747,1361,128,3.53486586,0.141775866,902.833491,3008656476 +1,3748,1362,128,3.55893993,0.143522294,891.847506,3008656476 +1,3749,1363,128,2.80633831,0.128797313,993.809553,3008656476 +1,3750,1364,128,2.6777401,0.128408646,996.817613,3008656476 +1,3751,1365,128,3.006423,0.12800823,999.935707,3008656476 +1,3752,1366,128,3.67234612,0.127941497,1000.45726,3008656476 +1,3753,1367,128,3.57400203,0.128774502,993.985595,3008656476 +1,3754,1368,128,3.2556529,0.129275375,990.134432,3008656476 +1,3755,1369,128,3.08542705,0.145946218,877.035402,3008656476 +1,3756,1370,128,2.96394539,0.14506448,882.366242,3008656476 +1,3757,1371,128,3.50320363,0.130946592,977.497757,3008656476 +1,3758,1372,128,3.08225346,0.130319727,982.199725,3008656476 +1,3759,1373,128,3.81688356,0.132009041,969.630557,3008656476 +1,3760,1374,128,3.92860103,0.130258495,982.661438,3008656476 +1,3761,1375,128,3.86647224,0.130619141,979.94826,3008656476 +1,3762,1376,128,3.84860873,0.132076231,969.137286,3008656476 +1,3763,1377,128,3.36332989,0.146996401,870.769618,3008656476 +1,3764,1378,128,2.79239917,0.146731265,872.343055,3008656476 +1,3765,1379,128,3.06125426,0.131523795,973.207928,3008656476 +1,3766,1380,128,3.39465284,0.133219302,960.821728,3008656476 +1,3767,1381,128,2.8078084,0.130434681,981.334098,3008656476 +1,3768,1382,128,3.17938828,0.131780626,971.311215,3008656476 +1,3769,1383,128,2.96589112,0.131272246,975.072827,3008656476 +1,3770,1384,128,2.4798646,0.141051194,907.471935,3008656476 +1,3771,1385,128,3.18042111,0.124617267,1027.14498,3008656476 +1,3772,1386,128,2.16313195,0.136892836,935.037974,3008656476 +1,3773,1387,128,2.87946343,0.131088591,976.438903,3008656476 +1,3774,1388,128,3.35928774,0.130542709,980.522014,3008656476 +1,3775,1389,128,2.92492628,0.132374878,966.950844,3008656476 +1,3776,1390,128,2.65963054,0.130744347,979.009823,3008656476 +1,3777,1391,128,2.75504899,0.130912623,977.751397,3008656476 +1,3778,1392,128,2.79962325,0.144335257,886.824208,3008656476 +1,3779,1393,128,3.1476965,0.138170179,926.39382,3008656476 +1,3780,1394,128,3.59836912,0.126765234,1009.74057,3008656476 +1,3781,1395,128,3.14246798,0.130252382,982.707556,3008656476 +1,3782,1396,128,3.01478577,0.130476263,981.021353,3008656476 +1,3783,1397,128,3.83905196,0.131856589,970.75164,3008656476 +1,3784,1398,128,2.93220186,0.129888741,985.458778,3008656476 +1,3785,1399,128,3.45195436,0.129043145,991.916308,3008656476 +1,3786,1400,128,3.70587707,0.139330885,918.67643,3008656476 +1,3787,1401,128,3.59466529,0.12440301,1028.91401,3008656476 +1,3788,1402,128,3.2664361,0.134229487,953.590771,3008656476 +1,3789,1403,128,3.47584033,0.131383567,974.24665,3008656476 +1,3790,1404,128,2.59279919,0.130979277,977.253829,3008656476 +1,3791,1405,128,3.14533162,0.130514079,980.737105,3008656476 +1,3792,1406,128,3.86511612,0.130846337,978.24672,3008656476 +1,3793,1407,128,3.54009819,0.131211341,975.525431,3008656476 +1,3794,1408,128,3.87102437,0.14395658,889.156994,3008656476 +1,3795,1409,128,3.96632123,0.12634065,1013.13394,3008656476 +1,3796,1410,128,3.40665984,0.133477018,958.966584,3008656476 +1,3797,1411,128,4.03799295,0.132163465,968.49761,3008656476 +1,3798,1412,128,3.506675,0.130629024,979.87412,3008656476 +1,3799,1413,128,3.77882981,0.13369571,957.39796,3008656476 +1,3800,1414,128,3.54242015,0.130001845,984.601411,3008656476 +1,3801,1415,128,3.67807794,0.130502314,980.82552,3008656476 +1,3802,1416,128,3.42159677,0.138952115,921.180653,3008656476 +1,3803,1417,128,3.74286652,0.127126258,1006.87303,3008656476 +1,3804,1418,128,3.64950895,0.134872531,949.04425,3008656476 +1,3805,1419,128,3.83073425,0.130629012,979.87421,3008656476 +1,3806,1420,128,3.6532135,0.13010165,983.846093,3008656476 +1,3807,1421,128,3.40220165,0.130655667,979.674307,3008656476 +1,3808,1422,128,4.09955978,0.130460936,981.136606,3008656476 +1,3809,1423,128,3.46374965,0.13013046,983.628276,3008656476 +1,3810,1424,128,3.69436121,0.139208545,919.483786,3008656476 +1,3811,1425,128,4.46632576,0.126500775,1011.85151,3008656476 +1,3812,1426,128,3.40787435,0.135181228,946.877032,3008656476 +1,3813,1427,128,3.71582937,0.132458237,966.34232,3008656476 +1,3814,1428,128,3.38560653,0.131490986,973.450758,3008656476 +1,3815,1429,128,4.2379756,0.130420108,981.443751,3008656476 +1,3816,1430,128,3.8397274,0.130321823,982.183928,3008656476 +1,3817,1431,128,3.92674208,0.130677457,979.51095,3008656476 +1,3818,1432,128,4.29756212,0.140476963,911.18143,3008656476 +1,3819,1433,128,3.14216709,0.12309878,1039.81534,3008656476 +1,3820,1434,128,3.38572145,0.14106735,907.368005,3008656476 +1,3821,1435,128,3.96335936,0.130520508,980.688797,3008656476 +1,3822,1436,128,2.79841447,0.132141623,968.657695,3008656476 +1,3823,1437,128,3.88205099,0.131389069,974.205853,3008656476 +1,3824,1438,128,3.53566432,0.1310347,976.840486,3008656476 +1,3825,1439,128,3.61597848,0.130289698,982.426101,3008656476 +1,3826,1440,128,3.98881865,0.140387292,911.763438,3008656476 +1,3827,1441,128,4.16064978,0.127466662,1004.18414,3008656476 +1,3828,1442,128,3.96407151,0.134521947,951.517599,3008656476 +1,3829,1443,128,2.94857717,0.132044527,969.369976,3008656476 +1,3830,1444,128,3.99104667,0.131094204,976.397095,3008656476 +1,3831,1445,128,3.76769185,0.131164059,975.877088,3008656476 +1,3832,1446,128,3.99480557,0.130124087,983.67645,3008656476 +1,3833,1447,128,3.54006577,0.129503496,988.390306,3008656476 +1,3834,1448,128,3.1234498,0.139403247,918.19956,3008656476 +1,3835,1449,128,4.1962862,0.125212587,1022.26144,3008656476 +1,3836,1450,128,3.0459578,0.139581068,917.029808,3008656476 +1,3837,1451,128,3.48390961,0.130668581,979.577485,3008656476 +1,3838,1452,128,3.41164351,0.131616715,972.520853,3008656476 +1,3839,1453,128,3.65726376,0.131131728,976.117694,3008656476 +1,3840,1454,128,3.47577453,0.130776616,978.768253,3008656476 +1,3841,1455,128,2.52387285,0.130963921,977.368416,3008656476 +1,3842,1456,128,3.95815158,0.142761415,896.600808,3008656476 +1,3843,1457,128,3.67234707,0.131773117,971.366565,3008656476 +1,3844,1458,128,3.98390698,0.130566002,980.347089,3008656476 +1,3845,1459,128,3.83269715,0.132767616,964.09052,3008656476 +1,3846,1460,128,3.35285497,0.12951186,988.326475,3008656476 +1,3847,1461,128,2.41452932,0.131232748,975.366301,3008656476 +1,3848,1462,128,2.75500584,0.131874367,970.620773,3008656476 +1,3849,1463,128,3.52838969,0.12955512,987.996461,3008656476 +1,3850,1464,128,2.48748422,0.142842099,896.094365,3008656476 +1,3851,1465,128,3.36337972,0.140192996,913.027067,3008656476 +1,3852,1466,128,4.17789698,0.124720256,1026.2968,3008656476 +1,3853,1467,128,3.58201456,0.128601703,995.321189,3008656476 +1,3854,1468,128,3.071311,0.128623902,995.149409,3008656476 +1,3855,1469,128,4.18830299,0.128360795,997.189212,3008656476 +1,3856,1470,128,3.20827484,0.12805294,999.586577,3008656476 +1,3857,1471,128,4.2235775,0.128004639,999.963759,3008656476 +1,3858,1472,128,3.70767236,0.137690465,929.621379,3008656476 +1,3859,1473,128,3.99660349,0.121289245,1055.32852,3008656476 +1,3860,1474,128,3.2711854,0.143018719,894.987739,3008656476 +1,3861,1475,128,3.27622056,0.128849914,993.403845,3008656476 +1,3862,1476,128,3.36009812,0.12821127,998.352173,3008656476 +1,3863,1477,128,3.80553246,0.128916441,992.891202,3008656476 +1,3864,1478,128,3.57693338,0.129130157,991.247924,3008656476 +1,3865,1479,128,3.8102634,0.12859607,995.364788,3008656476 +1,3866,1480,128,3.48903537,0.12790056,1000.77748,3008656476 +1,3867,1481,128,3.97796535,0.138062655,927.115301,3008656476 +1,3868,1482,128,3.33854437,0.141968922,901.605775,3008656476 +1,3869,1483,128,3.06929064,0.128201342,998.429486,3008656476 +1,3870,1484,128,3.4152844,0.127561359,1003.43867,3008656476 +1,3871,1485,128,3.69808745,0.13104179,976.787634,3008656476 +1,3872,1486,128,3.98750591,0.128011515,999.910047,3008656476 +1,3873,1487,128,3.90508938,0.127652908,1002.71903,3008656476 +1,3874,1488,128,3.33756113,0.128190506,998.513884,3008656476 +1,3875,1489,128,3.13234043,0.13798546,927.63397,3008656476 +1,3876,1490,128,3.61226058,0.141014925,907.705337,3008656476 +1,3877,1491,128,3.50302505,0.127789896,1001.64414,3008656476 +1,3878,1492,128,3.6411097,0.127890706,1000.85459,3008656476 +1,3879,1493,128,3.35571933,0.127485182,1004.03826,3008656476 +1,3880,1494,128,2.5691278,0.12948062,988.56493,3008656476 +1,3881,1495,128,3.12398791,0.127258374,1005.82772,3008656476 +1,3882,1496,128,3.34876251,0.127259674,1005.81744,3008656476 +1,3883,1497,128,3.34780931,0.141641404,903.690562,3008656476 +1,3884,1498,128,3.53710222,0.141512935,904.510955,3008656476 +1,3885,1499,128,3.11409664,0.127686119,1002.45822,3008656476 +1,3886,1500,128,3.71838617,0.128219864,998.285258,3008656476 +1,3887,1501,128,3.99582624,0.127377332,1004.88837,3008656476 +1,3888,1502,128,3.18990755,0.128918492,992.875405,3008656476 +1,3889,1503,128,3.48568678,0.128491233,996.176914,3008656476 +1,3890,1504,128,3.29488683,0.128231701,998.193107,3008656476 +1,3891,1505,128,3.70190287,0.141250857,906.189192,3008656476 +1,3892,1506,128,3.02532935,0.142746633,896.693654,3008656476 +1,3893,1507,128,3.53688049,0.129365095,989.447733,3008656476 +1,3894,1508,128,3.13943052,0.12943727,988.896011,3008656476 +1,3895,1509,128,3.88707399,0.128187775,998.535157,3008656476 +1,3896,1510,128,4.22991419,0.128542245,995.781581,3008656476 +1,3897,1511,128,3.27641249,0.127988964,1000.08623,3008656476 +1,3898,1512,128,3.53489423,0.128652896,994.925136,3008656476 +1,3899,1513,128,3.83783364,0.14210179,900.762756,3008656476 +1,3900,1514,128,4.34522581,0.144498415,885.822865,3008656476 +1,3901,1515,128,3.39001751,0.128099375,999.224235,3008656476 +1,3902,1516,128,3.89618444,0.127433981,1004.44166,3008656476 +1,3903,1517,128,4.03006411,0.128198031,998.455273,3008656476 +1,3904,1518,128,4.0165863,0.128318818,997.515423,3008656476 +1,3905,1519,128,3.12341428,0.12813593,998.939173,3008656476 +1,3906,1520,128,3.66762614,0.129204157,990.680199,3008656476 +1,3907,1521,128,3.07916546,0.148492893,861.994116,3008656476 +1,3908,1522,128,3.96716356,0.143715855,890.646338,3008656476 +1,3909,1523,128,4.33850956,0.132182751,968.356302,3008656476 +1,3910,1524,128,4.03893757,0.131806391,971.121347,3008656476 +1,3911,1525,128,3.34025526,0.141591132,904.011418,3008656476 +1,3912,1526,128,2.82442808,0.138512814,924.102228,3008656476 +1,3913,1527,128,2.59481621,0.142463997,898.472616,3008656476 +1,3914,1528,128,3.38451648,0.146048845,876.419119,3008656476 +1,3915,1529,128,4.09602451,0.143975055,889.042897,3008656476 +1,3916,1530,128,4.06111622,0.131802812,971.147717,3008656476 +1,3917,1531,128,4.6411314,0.130976233,977.276541,3008656476 +1,3918,1532,128,4.40362358,0.131803724,971.140998,3008656476 +1,3919,1533,128,3.67383313,0.130607588,980.034943,3008656476 +1,3920,1534,128,3.6928308,0.130509357,980.772589,3008656476 +1,3921,1535,128,3.04946589,0.130561741,980.379084,3008656476 +1,3922,1536,128,3.50432301,0.144950364,883.060908,3008656476 +1,3923,1537,128,3.47026038,0.143304573,893.20248,3008656476 +1,3924,1538,128,3.68496823,0.130452974,981.196488,3008656476 +1,3925,1539,128,3.2921555,0.129337862,989.656068,3008656476 +1,3926,1540,128,4.26760817,0.12930065,989.940886,3008656476 +1,3927,1541,128,3.98459244,0.130312351,982.25532,3008656476 +1,3928,1542,128,4.14622498,0.128630847,995.095679,3008656476 +1,3929,1543,128,3.70548201,0.128791247,993.85636,3008656476 +1,3930,1544,128,4.49334955,0.13987981,915.071303,3008656476 +1,3931,1545,128,3.7607429,0.141619642,903.829428,3008656476 +1,3932,1546,128,3.20784712,0.127668675,1002.59519,3008656476 +1,3933,1547,128,3.84328771,0.128106818,999.16618,3008656476 +1,3934,1548,128,3.6381259,0.187756747,681.733158,3008656476 +1,3935,1549,128,4.02900982,0.128970298,992.476578,3008656476 +1,3936,1550,128,3.63812876,0.127814829,1001.44874,3008656476 +1,3937,1551,128,3.24772882,0.127961555,1000.30044,3008656476 +1,3938,1552,128,3.92363286,0.141159819,906.773619,3008656476 +1,3939,1553,128,4.55645132,0.142179996,900.267292,3008656476 +1,3940,1554,128,4.24352121,0.128262529,997.95319,3008656476 +1,3941,1555,128,3.45335865,0.128689036,994.645729,3008656476 +1,3942,1556,128,3.87337804,0.128632473,995.0831,3008656476 +1,3943,1557,128,4.08528614,0.126899948,1008.66866,3008656476 +1,3944,1558,128,3.61908293,0.12805939,999.536231,3008656476 +1,3945,1559,128,3.34275913,0.12830075,997.655898,3008656476 +1,3946,1560,128,3.38847828,0.142715432,896.889693,3008656476 +1,3947,1561,128,4.07966423,0.143107168,894.434582,3008656476 +1,3948,1562,128,4.41739321,0.129019737,992.096271,3008656476 +1,3949,1563,128,4.4347086,0.127843149,1001.2269,3008656476 +1,3950,1564,128,3.8904109,0.128475558,996.298455,3008656476 +1,3951,1565,128,3.87165022,0.128546018,995.752354,3008656476 +1,3952,1566,128,3.07048464,0.129760512,986.432606,3008656476 +1,3953,1567,128,2.68265533,0.128200535,998.435771,3008656476 +1,3954,1568,128,2.22029209,0.143143537,894.20733,3008656476 +1,3955,1569,128,3.09692216,0.142039966,901.15482,3008656476 +1,3956,1570,128,3.46336532,0.129049483,991.867592,3008656476 +1,3957,1571,128,3.67079854,0.128663549,994.842758,3008656476 +1,3958,1572,128,2.69914699,0.12811431,999.10775,3008656476 +1,3959,1573,128,3.45435309,0.129142572,991.152631,3008656476 +1,3960,1574,128,4.0337801,0.12915064,991.090714,3008656476 +1,3961,1575,128,4.01815128,0.128909436,992.945156,3008656476 +1,3962,1576,128,3.78133225,0.150969162,847.855273,3008656476 +1,3963,1577,128,3.90228677,0.148772173,860.375952,3008656476 +1,3964,1578,128,3.32005453,0.143199192,893.859792,3008656476 +1,3965,1579,128,3.61454439,0.143636274,891.139797,3008656476 +1,3966,1580,128,4.06620932,0.141907563,901.995618,3008656476 +1,3967,1581,128,3.45464253,0.131028267,976.888445,3008656476 +1,3968,1582,128,3.53638887,0.132209697,968.158939,3008656476 +1,3969,1583,128,3.4871335,0.146168508,875.701625,3008656476 +1,3970,1584,128,3.86856937,0.145916444,877.21436,3008656476 +1,3971,1585,128,3.93074846,0.132558965,965.608022,3008656476 +1,3972,1586,128,4.25726795,0.131438152,973.842055,3008656476 +1,3973,1587,128,3.40087008,0.13085391,978.190105,3008656476 +1,3974,1588,128,3.50137997,0.130012629,984.519742,3008656476 +1,3975,1589,128,3.86071754,0.130590053,980.166537,3008656476 +1,3976,1590,128,3.2449584,0.129713772,986.788049,3008656476 +1,3977,1591,128,3.15136886,0.144516004,885.715052,3008656476 +1,3978,1592,128,3.57760167,0.143753052,890.415878,3008656476 +1,3979,1593,128,4.12761354,0.129746661,986.537912,3008656476 +1,3980,1594,128,3.98819017,0.130069137,984.092022,3008656476 +1,3981,1595,128,3.4798615,0.128157206,998.773335,3008656476 +1,3982,1596,128,3.41975784,0.129144246,991.139783,3008656476 +1,3983,1597,128,3.7481184,0.128475518,996.298766,3008656476 +1,3984,1598,128,3.37215567,0.127313835,1005.38956,3008656476 +1,3985,1599,128,3.54534626,0.142030789,901.213046,3008656476 +1,3986,1600,128,2.76861835,0.142814414,896.268076,3008656476 +1,3987,1601,128,3.16775465,0.128730138,994.32815,3008656476 +1,3988,1602,128,3.3471427,0.128984751,992.365369,3008656476 +1,3989,1603,128,3.33192921,0.128566141,995.5965,3008656476 +1,3990,1604,128,2.94336772,0.128633429,995.075705,3008656476 +1,3991,1605,128,2.46986842,0.129920839,985.215313,3008656476 +1,3992,1606,128,2.37540483,0.128596849,995.358759,3008656476 +1,3993,1607,128,3.69595361,0.142654882,897.270379,3008656476 +1,3994,1608,128,3.64794445,0.14236576,899.092591,3008656476 +1,3995,1609,128,3.4327333,0.128490669,996.181287,3008656476 +1,3996,1610,128,3.54370236,0.128578573,995.500238,3008656476 +1,3997,1611,128,3.9394505,0.129456921,988.745901,3008656476 +1,3998,1612,128,3.94234824,0.129213085,990.611748,3008656476 +1,3999,1613,128,3.27627397,0.129783142,986.260604,3008656476 +1,4000,1614,128,3.0632689,0.129058513,991.798193,3008656476 +1,4001,1615,128,3.07377028,0.149767195,854.659794,3008656476 +1,4002,1616,128,3.26941967,0.142094942,900.806167,3008656476 +1,4003,1617,128,3.49320149,0.128911353,992.93039,3008656476 +1,4004,1618,128,2.3080616,0.129725205,986.701081,3008656476 +1,4005,1619,128,3.68611383,0.129207388,990.655426,3008656476 +1,4006,1620,128,4.29621172,0.131001495,977.088086,3008656476 +1,4007,1621,128,3.89647532,0.131486703,973.482467,3008656476 +1,4008,1622,128,3.32863879,0.13141003,974.050459,3008656476 +1,4009,1623,128,3.80685759,0.145897625,877.32751,3008656476 +1,4010,1624,128,3.50009513,0.146153433,875.791949,3008656476 +1,4011,1625,128,3.15524673,0.132386028,966.869404,3008656476 +1,4012,1626,128,3.74152112,0.132608704,965.245841,3008656476 +1,4013,1627,128,3.68341684,0.13980075,915.588793,3008656476 +1,4014,1628,128,3.50305104,0.14378439,890.221811,3008656476 +1,4015,1629,128,3.08112788,0.143287982,893.305902,3008656476 +1,4016,1630,128,3.64507246,0.152145805,841.298253,3008656476 +1,4017,1631,128,3.41714311,0.1533345,834.776257,3008656476 +1,4018,1632,128,3.68435574,0.134047642,954.884384,3008656476 +1,4019,1633,128,3.45457077,0.143534433,891.772081,3008656476 +1,4020,1634,128,3.52107811,0.144145222,887.99336,3008656476 +1,4021,1635,128,3.30619407,0.143939055,889.265252,3008656476 +1,4022,1636,128,3.1017971,0.143443408,892.337973,3008656476 +1,4023,1637,128,3.36370039,0.154077887,830.748672,3008656476 +1,4024,1638,128,3.95209694,0.153469781,834.040416,3008656476 +1,4025,1639,128,4.24325991,0.139034056,920.637746,3008656476 +1,4026,1640,128,3.41865301,0.143422198,892.469937,3008656476 +1,4027,1641,128,2.48168731,0.143418653,892.491997,3008656476 +1,4028,1642,128,3.68718195,0.13513328,947.213003,3008656476 +1,4029,1643,128,2.94850183,0.132344834,967.170354,3008656476 +1,4030,1644,128,3.0409348,0.133809157,956.586252,3008656476 +1,4031,1645,128,2.32529521,0.144805548,883.944032,3008656476 +1,4032,1646,128,4.04522991,0.146358033,874.567643,3008656476 +1,4033,1647,128,3.43617368,0.130745557,979.000763,3008656476 +1,4034,1648,128,2.95840836,0.131310954,974.785394,3008656476 +1,4035,1649,128,2.78276443,0.129832938,985.882334,3008656476 +1,4036,1650,128,3.04690766,0.130573092,980.293857,3008656476 +1,4037,1651,128,3.26131201,0.129721241,986.731232,3008656476 +1,4038,1652,128,3.53144741,0.130278933,982.507279,3008656476 +1,4039,1653,128,2.83223057,0.143460447,892.231989,3008656476 +1,4040,1654,128,3.03009439,0.142377457,899.018726,3008656476 +1,4041,1655,128,3.07025051,0.128726044,994.359774,3008656476 +1,4042,1656,128,3.57440734,0.128569104,995.573556,3008656476 +1,4043,1657,128,3.70156813,0.128370368,997.114848,3008656476 +1,4044,1658,128,3.92253256,0.127920362,1000.62256,3008656476 +1,4045,1659,128,3.72905231,0.129453472,988.772244,3008656476 +1,4046,1660,128,2.66799498,0.127352933,1005.0809,3008656476 +1,4047,1661,128,2.89896131,0.143752366,890.420127,3008656476 +1,4048,1662,128,3.29438281,0.138938617,921.270146,3008656476 +1,4049,1663,128,3.75573874,0.128939251,992.715554,3008656476 +1,4050,1664,128,3.80010986,0.12852608,995.906823,3008656476 +1,4051,1665,128,3.3537271,0.129230667,990.476974,3008656476 +1,4052,1666,128,3.62550163,0.129064123,991.755083,3008656476 +1,4053,1667,128,3.8160634,0.129072051,991.694166,3008656476 +1,4054,1668,128,3.88576961,0.12914956,991.099002,3008656476 +1,4055,1669,128,3.60581613,0.144241733,887.399211,3008656476 +1,4056,1670,128,3.78852844,0.142305122,899.475705,3008656476 +1,4057,1671,128,2.67697334,0.129711377,986.806269,3008656476 +1,4058,1672,128,3.29090977,0.129451058,988.790683,3008656476 +1,4059,1673,128,3.4550271,0.129939126,985.076658,3008656476 +1,4060,1674,128,3.71338916,0.127939198,1000.47524,3008656476 +1,4061,1675,128,3.36094236,0.128796631,993.814815,3008656476 +1,4062,1676,128,3.38004565,0.128789782,993.867666,3008656476 +1,4063,1677,128,4.15496635,0.143194427,893.889537,3008656476 +1,4064,1678,128,3.9176662,0.143713353,890.661844,3008656476 +1,4065,1679,128,3.97555161,0.128628282,995.115522,3008656476 +1,4066,1680,128,3.66405988,0.129129006,991.256759,3008656476 +1,4067,1681,128,4.06082249,0.128593105,995.387739,3008656476 +1,4068,1682,128,3.81887531,0.128649833,994.948824,3008656476 +1,4069,1683,128,3.70248199,0.128727472,994.348743,3008656476 +1,4070,1684,128,3.33045769,0.130069485,984.089389,3008656476 +1,4071,1685,128,2.73876572,0.143529594,891.802146,3008656476 +1,4072,1686,128,3.80305552,0.14408857,888.342497,3008656476 +1,4073,1687,128,3.25731134,0.136141275,940.199803,3008656476 +1,4074,1688,128,3.2083621,0.138735269,922.620477,3008656476 +1,4075,1689,128,3.49728656,0.131247771,975.254658,3008656476 +1,4076,1690,128,3.75170755,0.138926349,921.3515,3008656476 +1,4077,1691,128,3.77637506,0.143336385,893.004243,3008656476 +1,4078,1692,128,3.52254677,0.15052928,850.332905,3008656476 +1,4079,1693,128,3.75768352,0.147503296,867.777219,3008656476 +1,4080,1694,128,3.85335469,0.131601581,972.632692,3008656476 +1,4081,1695,128,3.88107395,0.133723144,957.201545,3008656476 +1,4082,1696,128,3.73081875,0.130442287,981.276877,3008656476 +1,4083,1697,128,3.76969457,0.132029635,969.479314,3008656476 +1,4084,1698,128,4.18280792,0.130939261,977.552485,3008656476 +1,4085,1699,128,3.9444325,0.131102739,976.33353,3008656476 +1,4086,1700,128,3.90026402,0.144804194,883.952298,3008656476 +1,4087,1701,128,3.706635,0.143781482,890.239815,3008656476 +1,4088,1702,128,2.35411716,0.129804473,986.09853,3008656476 +1,4089,1703,128,2.79478598,0.128717034,994.429378,3008656476 +1,4090,1704,128,2.62765408,0.129008519,992.18254,3008656476 +1,4091,1705,128,2.83693552,0.128069905,999.454165,3008656476 +1,4092,1706,128,3.25385046,0.128982215,992.38488,3008656476 +1,4093,1707,128,3.34884834,0.129024822,992.057172,3008656476 +1,4094,1708,128,4.16195202,0.142375361,899.031961,3008656476 +1,4095,1709,128,3.36839533,0.142444981,898.592559,3008656476 +1,4096,1710,128,3.85521889,0.127977973,1000.17212,3008656476 +1,4097,1711,128,3.52792716,0.129165087,990.979861,3008656476 +1,4098,1712,128,3.00653768,0.128179311,998.601092,3008656476 +1,4099,1713,128,3.35580277,0.128430599,996.647224,3008656476 +1,4100,1714,128,3.59524369,0.128998634,992.258569,3008656476 +1,4101,1715,128,3.25553608,0.128939846,992.710973,3008656476 +1,4102,1716,128,3.2672267,0.142804131,896.332614,3008656476 +1,4103,1717,128,4.09570169,0.143225092,893.698152,3008656476 +1,4104,1718,128,2.91595912,0.12972296,986.718157,3008656476 +1,4105,1719,128,3.56473112,0.128898535,993.029129,3008656476 +1,4106,1720,128,4.10625553,0.129293953,989.992162,3008656476 +1,4107,1721,128,3.44085002,0.129442833,988.853512,3008656476 +1,4108,1722,128,3.91138315,0.1284777,996.281845,3008656476 +1,4109,1723,128,3.55741525,0.128533502,995.849316,3008656476 +1,4110,1724,128,4.06818676,0.142634965,897.39567,3008656476 +1,4111,1725,128,3.15610909,0.14461151,885.130098,3008656476 +1,4112,1726,128,4.27526951,0.128036609,999.714074,3008656476 +1,4113,1727,128,3.69768405,0.12834263,997.330349,3008656476 +1,4114,1728,128,3.54276133,0.128762857,994.075489,3008656476 +1,4115,1729,128,3.8582139,0.127869424,1001.02117,3008656476 +1,4116,1730,128,2.96687889,0.128280996,997.809527,3008656476 +1,4117,1731,128,3.12036085,0.129000989,992.240455,3008656476 +1,4118,1732,128,3.61354923,0.142795959,896.38391,3008656476 +1,4119,1733,128,3.03230953,0.143947813,889.211148,3008656476 +1,4120,1734,128,3.67322445,0.130237035,982.823357,3008656476 +1,4121,1735,128,2.7896359,0.130592255,980.15001,3008656476 +1,4122,1736,128,3.2754426,0.129784941,986.246933,3008656476 +1,4123,1737,128,2.30258512,0.130677727,979.508926,3008656476 +1,4124,1738,128,2.84958529,0.131527214,973.18263,3008656476 +1,4125,1739,128,2.22708583,0.130492366,980.900293,3008656476 +1,4126,1740,128,2.43172741,0.146726033,872.374161,3008656476 +1,4127,1741,128,2.8021934,0.146716107,872.433181,3008656476 +1,4128,1742,128,3.11822009,0.139559228,917.173317,3008656476 +1,4129,1743,128,3.30720472,0.13574086,942.973251,3008656476 +1,4130,1744,128,3.85740519,0.143475355,892.139281,3008656476 +1,4131,1745,128,2.33418226,0.143639796,891.117946,3008656476 +1,4132,1746,128,3.97985101,0.13206425,969.225207,3008656476 +1,4133,1747,128,4.28067636,0.146617858,873.017801,3008656476 +1,4134,1748,128,3.33129072,0.145638437,878.888861,3008656476 +1,4135,1749,128,3.98203993,0.131950732,970.059037,3008656476 +1,4136,1750,128,3.11267018,0.131740045,971.610417,3008656476 +1,4137,1751,128,3.89236093,0.131055061,976.688722,3008656476 +1,4138,1752,128,3.24207473,0.130777128,978.764421,3008656476 +1,4139,1753,128,3.96100259,0.131268791,975.098491,3008656476 +1,4140,1754,128,3.77421761,0.131592875,972.69704,3008656476 +1,4141,1755,128,4.07102394,0.143803747,890.10198,3008656476 +1,4142,1756,128,3.24864721,0.142849052,896.050749,3008656476 +1,4143,1757,128,3.02209139,0.128890175,993.093539,3008656476 +1,4144,1758,128,3.07908106,0.129835788,985.860694,3008656476 +1,4145,1759,128,3.55575752,0.129005774,992.203651,3008656476 +1,4146,1760,128,3.84345675,0.127507152,1003.86526,3008656476 +1,4147,1761,128,3.00241518,0.12862717,995.124125,3008656476 +1,4148,1762,128,4.30015039,0.127993173,1000.05334,3008656476 +1,4149,1763,128,3.19074941,0.141961448,901.653243,3008656476 +1,4150,1764,128,3.28897095,0.142947467,895.433845,3008656476 +1,4151,1765,128,2.53198934,0.12781893,1001.41661,3008656476 +1,4152,1766,128,3.62062359,0.127198854,1006.29837,3008656476 +1,4153,1767,128,3.93737459,0.128103991,999.18823,3008656476 +1,4154,1768,128,3.37695265,0.127511098,1003.83419,3008656476 +1,4155,1769,128,3.03260279,0.12833896,997.358869,3008656476 +1,4156,1770,128,3.08677149,0.128331741,997.414973,3008656476 +1,4157,1771,128,3.01354265,0.140827176,908.915478,3008656476 +1,4158,1772,128,2.73652577,0.143262651,893.463852,3008656476 +1,4159,1773,128,2.78305197,0.130258641,982.660337,3008656476 +1,4160,1774,128,2.65050125,0.128628867,995.110996,3008656476 +1,4161,1775,128,3.27371979,0.128981454,992.390735,3008656476 +1,4162,1776,128,3.17678332,0.129954958,984.956649,3008656476 +1,4163,1777,128,3.02612972,0.129105744,991.435362,3008656476 +1,4164,1778,128,2.56052661,0.130077825,984.026293,3008656476 +1,4165,1779,128,3.47852182,0.147616833,867.109783,3008656476 +1,4166,1780,128,2.839643,0.130471345,981.058331,3008656476 +1,4167,1781,128,2.10904813,0.129597707,987.671796,3008656476 +1,4168,1782,128,2.34138036,0.128846992,993.426374,3008656476 +1,4169,1783,128,2.80807567,0.130316932,982.220791,3008656476 +1,4170,1784,128,3.12293077,0.129888442,985.461047,3008656476 +1,4171,1785,128,3.17230129,0.130066533,984.111724,3008656476 +1,4172,1786,128,2.40915895,0.130549441,980.471452,3008656476 +1,4173,1787,128,2.63832903,0.144551516,885.497458,3008656476 +1,4174,1788,128,2.41744018,0.144013943,888.802829,3008656476 +1,4175,1789,128,2.88121343,0.131343222,974.545911,3008656476 +1,4176,1790,128,2.31225538,0.132802021,963.840754,3008656476 +1,4177,1791,128,3.72912002,0.132269996,967.717577,3008656476 +1,4178,1792,128,3.27249575,0.139154501,919.84089,3008656476 +1,4179,1793,128,2.90088797,0.131611237,972.561332,3008656476 +1,4180,1794,128,3.19081521,0.132346647,967.157105,3008656476 +1,4181,1795,128,2.2194674,0.136519585,937.594412,3008656476 +1,4182,1796,128,3.18571568,0.139245947,919.236809,3008656476 +1,4183,1797,128,3.44585657,0.133842006,956.351476,3008656476 +1,4184,1798,128,3.29862332,0.131864123,970.696176,3008656476 +1,4185,1799,128,2.67451334,0.131658742,972.210413,3008656476 +1,4186,1800,128,2.68192625,0.130616767,979.966071,3008656476 +1,4187,1801,128,3.1112628,0.133073685,961.873116,3008656476 +1,4188,1802,128,2.39729142,0.141177338,906.661096,3008656476 +1,4189,1803,128,3.28817725,0.137473523,931.088381,3008656476 +1,4190,1804,128,2.71864843,0.124742704,1026.11212,3008656476 +1,4191,1805,128,3.67773271,0.130335355,982.081953,3008656476 +1,4192,1806,128,3.14995193,0.131590848,972.712023,3008656476 +1,4193,1807,128,3.5366683,0.129961499,984.907076,3008656476 +1,4194,1808,128,3.28806305,0.129476413,988.59705,3008656476 +1,4195,1809,128,4.28746986,0.129661286,987.187494,3008656476 +1,4196,1810,128,3.13588166,0.140321698,912.189646,3008656476 +1,4197,1811,128,3.00216866,0.124908536,1024.74982,3008656476 +1,4198,1812,128,2.65038133,0.13527129,946.246613,3008656476 +1,4199,1813,128,2.51900649,0.131357403,974.440702,3008656476 +1,4200,1814,128,3.60990024,0.13081415,978.487419,3008656476 +1,4201,1815,128,3.86243987,0.130682753,979.471254,3008656476 +1,4202,1816,128,3.05438638,0.131344142,974.539085,3008656476 +1,4203,1817,128,3.37069321,0.129606947,987.601382,3008656476 +1,4204,1818,128,2.26966453,0.137989248,927.608505,3008656476 +1,4205,1819,128,2.12374473,0.12590384,1016.6489,3008656476 +1,4206,1820,128,3.00004125,0.13643577,938.170393,3008656476 +1,4207,1821,128,3.44061852,0.131778262,971.32864,3008656476 +1,4208,1822,128,4.34388733,0.132534608,965.78548,3008656476 +1,4209,1823,128,3.69253683,0.131594428,972.685561,3008656476 +1,4210,1824,128,3.13058043,0.131154068,975.951428,3008656476 +1,4211,1825,128,2.70009518,0.130537254,980.562989,3008656476 +1,4212,1826,128,3.67228842,0.141744105,903.035791,3008656476 +1,4213,1827,128,2.87755156,0.124256062,1030.13083,3008656476 +1,4214,1828,128,3.01291823,0.133849872,956.295274,3008656476 +1,4215,1829,128,3.28323984,0.132907769,963.073874,3008656476 +1,4216,1830,128,3.15587378,0.131118619,976.215285,3008656476 +1,4217,1831,128,3.67481995,0.130096214,983.887202,3008656476 +1,4218,1832,128,3.07344723,0.130994296,977.141783,3008656476 +1,4219,1833,128,3.23655224,0.131153661,975.954457,3008656476 +1,4220,1834,128,3.67337751,0.140996439,907.824346,3008656476 +1,4221,1835,128,3.1879499,0.143240392,893.602693,3008656476 +1,4222,1836,128,2.40690017,0.126341034,1013.13086,3008656476 +1,4223,1837,128,3.6065352,0.130394084,981.639627,3008656476 +1,4224,1838,128,3.94495869,0.129144012,991.141579,3008656476 +1,4225,1839,128,3.7291472,0.128790185,993.864556,3008656476 +1,4226,1840,128,3.696733,0.128675052,994.753824,3008656476 +1,4227,1841,128,3.66932368,0.128110629,999.136457,3008656476 +1,4228,1842,128,3.61317468,0.137535463,930.66906,3008656476 +1,4229,1843,128,3.69267035,0.125340636,1021.21709,3008656476 +1,4230,1844,128,3.60992646,0.137938636,927.94886,3008656476 +1,4231,1845,128,2.56173658,0.131764653,971.428961,3008656476 +1,4232,1846,128,2.97284603,0.130127314,983.652056,3008656476 +1,4233,1847,128,2.45851731,0.12999997,984.615612,3008656476 +1,4234,1848,128,3.28576732,0.129115088,991.363612,3008656476 +1,4235,1849,128,3.55985618,0.128705215,994.520696,3008656476 +1,4236,1850,128,3.99920797,0.132767855,964.088785,3008656476 +1,4237,1851,128,3.12332702,0.129287538,990.041283,3008656476 +1,4238,1852,128,2.73131609,0.140263149,912.570414,3008656476 +1,4239,1853,128,3.13778925,0.130298458,982.360052,3008656476 +1,4240,1854,128,3.94612932,0.131305752,974.824012,3008656476 +1,4241,1855,128,3.31440973,0.124860953,1025.14034,3008656476 +1,4242,1856,128,3.06015635,0.132383533,966.887626,3008656476 +1,4243,1857,128,2.42228675,0.131387404,974.218198,3008656476 +1,4244,1858,128,3.56615496,0.147750086,866.327753,3008656476 +1,4245,1859,128,2.80924606,0.14388123,889.622642,3008656476 +1,4246,1860,128,3.57688403,0.128398099,996.899495,3008656476 +1,4247,1861,128,3.58931494,0.129324033,989.761895,3008656476 +1,4248,1862,128,3.46388984,0.128020797,999.83755,3008656476 +1,4249,1863,128,3.54268098,0.129078227,991.646717,3008656476 +1,4250,1864,128,3.79902411,0.128126723,999.010956,3008656476 +1,4251,1865,128,3.46582913,0.127812786,1001.46475,3008656476 +1,4252,1866,128,3.3676877,0.143464284,892.208126,3008656476 +1,4253,1867,128,4.30262613,0.141535648,904.365803,3008656476 +1,4254,1868,128,3.3334949,0.12860033,995.331816,3008656476 +1,4255,1869,128,3.16728687,0.128797796,993.805826,3008656476 +1,4256,1870,128,3.54303336,0.128847078,993.42571,3008656476 +1,4257,1871,128,2.83485079,0.129485083,988.530856,3008656476 +1,4258,1872,128,3.52947307,0.128721554,994.394459,3008656476 +1,4259,1873,128,3.24512482,0.128745278,994.211221,3008656476 +1,4260,1874,128,3.81679177,0.142527446,898.072642,3008656476 +1,4261,1875,128,3.13468027,0.141198348,906.526187,3008656476 +1,4262,1876,128,2.82395887,0.129301564,989.933888,3008656476 +1,4263,1877,128,2.89509177,0.129390655,989.252276,3008656476 +1,4264,1878,128,2.7182622,0.128713167,994.459254,3008656476 +1,4265,1879,128,2.11638117,0.128625581,995.136418,3008656476 +1,4266,1880,128,2.82172251,0.127811808,1001.47241,3008656476 +1,4267,1881,128,3.19815803,0.129102193,991.462631,3008656476 +1,4268,1882,128,3.2318368,0.141305833,905.836633,3008656476 +1,4269,1883,128,2.67016435,0.143118145,894.36598,3008656476 +1,4270,1884,128,2.8959837,0.127449459,1004.31968,3008656476 +1,4271,1885,128,2.87479734,0.128737259,994.27315,3008656476 +1,4272,1886,128,3.2592113,0.129403239,989.156075,3008656476 +1,4273,1887,128,2.49659491,0.128990601,992.320363,3008656476 +1,4274,1888,128,2.71649957,0.129620716,987.496474,3008656476 +1,4275,1889,128,3.75223827,0.130358782,981.905461,3008656476 +1,4276,1890,128,3.5673058,0.143420067,892.483198,3008656476 +1,4277,1891,128,3.19881392,0.144656879,884.852493,3008656476 +1,4278,1892,128,3.2821753,0.130288665,982.43389,3008656476 +1,4279,1893,128,2.77772975,0.132004952,969.660593,3008656476 +1,4280,1894,128,3.20017695,0.131432411,973.884592,3008656476 +1,4281,1895,128,3.30932236,0.132709057,964.515934,3008656476 +1,4282,1896,128,3.59461927,0.132153282,968.572237,3008656476 +1,4283,1897,128,3.42912459,0.131707222,971.852553,3008656476 +1,4284,1898,128,3.78843665,0.146763715,872.150177,3008656476 +1,4285,1899,128,4.95321751,0.148338318,862.892351,3008656476 +1,4286,1900,128,3.82385802,0.132012633,969.604174,3008656476 +1,4287,1901,128,3.00932002,0.132152548,968.577617,3008656476 +1,4288,1902,128,3.2588985,0.131491333,973.448189,3008656476 +1,4289,1903,128,3.79315758,0.132300708,967.492933,3008656476 +1,4290,1904,128,2.29571509,0.131125567,976.163558,3008656476 +1,4291,1905,128,3.6180892,0.13112809,976.144776,3008656476 +1,4292,1906,128,2.57488489,0.144809921,883.917339,3008656476 +1,4293,1907,128,2.80983329,0.14325604,893.505084,3008656476 +1,4294,1908,128,3.27458167,0.130059019,984.16858,3008656476 +1,4295,1909,128,2.91463685,0.129355613,989.520261,3008656476 +1,4296,1910,128,3.1316936,0.129422393,989.009684,3008656476 +1,4297,1911,128,2.83155704,0.129515236,988.300712,3008656476 +1,4298,1912,128,3.11950827,0.130088065,983.948835,3008656476 +1,4299,1913,128,3.05792618,0.127809063,1001.49392,3008656476 +1,4300,1914,128,3.30711341,0.142380547,898.999215,3008656476 +1,4301,1915,128,2.44232678,0.14265275,897.283789,3008656476 +1,4302,1916,128,3.48987746,0.126691682,1010.32679,3008656476 +1,4303,1917,128,2.90582681,0.128039166,999.694109,3008656476 +1,4304,1918,128,2.93344712,0.128995393,992.2835,3008656476 +1,4305,1919,128,2.64799428,0.128120524,999.059292,3008656476 +1,4306,1920,128,3.03065395,0.128608133,995.271427,3008656476 +1,4307,1921,128,3.32028174,0.128629025,995.109774,3008656476 +1,4308,1922,128,3.37995768,0.142892103,895.780784,3008656476 +1,4309,1923,128,3.30987573,0.143073414,894.645598,3008656476 +1,4310,1924,128,3.01668239,0.128639179,995.031226,3008656476 +1,4311,1925,128,2.58188462,0.12893762,992.728111,3008656476 +1,4312,1926,128,3.15966201,0.129017664,992.112212,3008656476 +1,4313,1927,128,3.29522038,0.128424795,996.692266,3008656476 +1,4314,1928,128,3.66780233,0.128767437,994.040131,3008656476 +1,4315,1929,128,4.53143167,0.128137293,998.928548,3008656476 +1,4316,1930,128,3.90947556,0.141437122,904.99579,3008656476 +1,4317,1931,128,2.22916317,0.144899616,883.370181,3008656476 +1,4318,1932,128,2.25150418,0.128962395,992.537398,3008656476 +1,4319,1933,128,2.73980331,0.12832366,997.477784,3008656476 +1,4320,1934,128,2.79111004,0.128478308,996.27713,3008656476 +1,4321,1935,128,2.28788304,0.128405653,996.840848,3008656476 +1,4322,1936,128,3.54257345,0.128815283,993.670914,3008656476 +1,4323,1937,128,3.25338268,0.129228387,990.494449,3008656476 +1,4324,1938,128,3.49798226,0.141877406,902.187343,3008656476 +1,4325,1939,128,2.80899143,0.142908349,895.67895,3008656476 +1,4326,1940,128,2.71379828,0.1287228,994.384833,3008656476 +1,4327,1941,128,2.10914969,0.12862359,995.151822,3008656476 +1,4328,1942,128,3.82039094,0.129828439,985.916499,3008656476 +1,4329,1943,128,3.06430101,0.129899244,985.379099,3008656476 +1,4330,1944,128,3.41582966,0.129747601,986.530764,3008656476 +1,4331,1945,128,3.53818035,0.130381275,981.736066,3008656476 +1,4332,1946,128,2.25044155,0.150451679,850.771496,3008656476 +1,4333,1947,128,2.76269722,0.139665743,916.473841,3008656476 +1,4334,1948,128,3.64606476,0.131462947,973.65838,3008656476 +1,4335,1949,128,3.31295419,0.13158741,972.737437,3008656476 +1,4336,1950,128,3.93781233,0.132145383,968.630134,3008656476 +1,4337,1951,128,3.88847089,0.131134784,976.094947,3008656476 +1,4338,1952,128,3.13336706,0.130867629,978.087561,3008656476 +1,4339,1953,128,3.05811167,0.1364207,938.27403,3008656476 +1,4340,1954,128,3.26652002,0.130674644,979.532035,3008656476 +1,4341,1955,128,3.09598017,0.134884152,948.962484,3008656476 +1,4342,1956,128,3.60390735,0.130907826,977.787226,3008656476 +1,4343,1957,128,3.2658999,0.131915142,970.320754,3008656476 +1,4344,1958,128,3.039464,0.130777311,978.763052,3008656476 +1,4345,1959,128,2.43798852,0.130999924,977.099804,3008656476 +1,4346,1960,128,3.32948089,0.131323324,974.693574,3008656476 +1,4347,1961,128,3.18525338,0.144914286,883.280755,3008656476 +1,4348,1962,128,3.18841243,0.135832926,942.334114,3008656476 +1,4349,1963,128,2.4338212,0.125648345,1018.71616,3008656476 +1,4350,1964,128,2.47834802,0.129569318,987.888197,3008656476 +1,4351,1965,128,2.8490963,0.130755638,978.925284,3008656476 +1,4352,1966,128,3.21533632,0.129069523,991.71359,3008656476 +1,4353,1967,128,3.38032651,0.12967923,987.050895,3008656476 +1,4354,1968,128,3.7165904,0.129578965,987.81465,3008656476 +1,4355,1969,128,2.97610235,0.132719943,964.436822,3008656476 +1,4356,1970,128,3.0499208,0.129975624,984.800042,3008656476 +1,4357,1971,128,3.20080638,0.134193678,953.845233,3008656476 +1,4358,1972,128,3.79957294,0.132132777,968.722545,3008656476 +1,4359,1973,128,3.07329917,0.13146768,973.623327,3008656476 +1,4360,1974,128,1.53147781,0.130720925,979.185238,3008656476 +1,4361,1975,128,2.49287462,0.13187771,970.596168,3008656476 +1,4362,1976,128,2.712044,0.131887527,970.523922,3008656476 +1,4363,1977,128,2.67039943,0.138769819,922.390769,3008656476 +1,4364,1978,128,3.06405425,0.127297987,1005.51472,3008656476 +1,4365,1979,128,3.20085502,0.136906428,934.945144,3008656476 +1,4366,1980,128,3.69939041,0.132064903,969.220414,3008656476 +1,4367,1981,128,3.62227464,0.131019273,976.955505,3008656476 +1,4368,1982,128,3.04207063,0.130941389,977.536598,3008656476 +1,4369,1983,128,3.60422635,0.13085996,978.144881,3008656476 +1,4370,1984,128,2.5677309,0.129662878,987.175373,3008656476 +1,4371,1985,128,2.44727445,0.140223717,912.827036,3008656476 +1,4372,1986,128,2.38033843,0.125139096,1022.86179,3008656476 +1,4373,1987,128,3.18313169,0.136636051,936.795224,3008656476 +1,4374,1988,128,3.45392346,0.131062314,976.634672,3008656476 +1,4375,1989,128,3.790241,0.130729832,979.118523,3008656476 +1,4376,1990,128,2.56005001,0.129258935,990.260364,3008656476 +1,4377,1991,128,2.35167098,0.128674237,994.760124,3008656476 +1,4378,1992,128,2.52765083,0.129062765,991.765518,3008656476 +1,4379,1993,128,3.15454888,0.128811409,993.700799,3008656476 +1,4380,1994,128,2.96413684,0.133177287,961.12485,3008656476 +1,4381,1995,128,2.9435246,0.198079701,646.20453,3008656476 +1,4382,1996,128,2.8373878,0.130878679,978.004981,3008656476 +1,4383,1997,128,3.36527729,0.131070595,976.572968,3008656476 +1,4384,1998,128,3.27952886,0.13038132,981.735727,3008656476 +1,4385,1999,128,4.19303799,0.131175078,975.795113,3008656476 +1,4386,2000,128,3.11440516,0.129837371,985.848674,3008656476 +1,4387,2001,128,2.35835886,0.144870706,883.546464,3008656476 +1,4388,2002,128,3.26566029,0.142216846,900.034023,3008656476 +1,4389,2003,128,3.15740347,0.129031274,992.007566,3008656476 +1,4390,2004,128,2.78414631,0.127978417,1000.16865,3008656476 +1,4391,2005,128,2.65179682,0.128254987,998.011875,3008656476 +1,4392,2006,128,2.83501577,0.127723226,1002.16698,3008656476 +1,4393,2007,128,2.77486348,0.128271846,997.880704,3008656476 +1,4394,2008,128,3.00025964,0.127703431,1002.32233,3008656476 +1,4395,2009,128,2.86262155,0.14240839,898.823447,3008656476 +1,4396,2010,128,2.99715185,0.143671653,890.920354,3008656476 +1,4397,2011,128,3.69234157,0.128170594,998.669008,3008656476 +1,4398,2012,128,4.09188795,0.129047349,991.883994,3008656476 +1,4399,2013,128,3.50432277,0.130151755,983.467338,3008656476 +1,4400,2014,128,4.21078587,0.129244099,990.374036,3008656476 +1,4401,2015,128,3.3287735,0.128452455,996.477646,3008656476 +1,4402,2016,128,3.53089023,0.129859198,985.68297,3008656476 +1,4403,2017,128,4.13599777,0.14797626,865.003616,3008656476 +1,4404,2018,128,3.57855797,0.14243689,898.643603,3008656476 +1,4405,2019,128,3.53187346,0.128334068,997.396888,3008656476 +1,4406,2020,128,3.08510208,0.129093085,991.532583,3008656476 +1,4407,2021,128,3.83287597,0.129291963,990.007399,3008656476 +1,4408,2022,128,3.86655235,0.128011898,999.907056,3008656476 +1,4409,2023,128,3.81432939,0.129887533,985.467943,3008656476 +1,4410,2024,128,3.98306561,0.129047716,991.881174,3008656476 +1,4411,2025,128,3.61748838,0.142107182,900.728578,3008656476 +1,4412,2026,128,3.43909168,0.144208892,887.6013,3008656476 +1,4413,2027,128,3.85774112,0.129985722,984.723538,3008656476 +1,4414,2028,128,3.71352434,0.130239958,982.8013,3008656476 +1,4415,2029,128,4.08691454,0.131580079,972.791634,3008656476 +1,4416,2030,128,3.83533216,0.130762854,978.871263,3008656476 +1,4417,2031,128,3.73503923,0.131332379,974.626371,3008656476 +1,4418,2032,128,3.01983094,0.132788975,963.935447,3008656476 +1,4419,2033,128,3.3326292,0.14514261,881.891265,3008656476 +1,4420,2034,128,3.16001844,0.151961633,842.317876,3008656476 +1,4421,2035,128,3.8967793,0.144041595,888.632204,3008656476 +1,4422,2036,128,2.68150496,0.131612227,972.554017,3008656476 +1,4423,2037,128,3.02147031,0.132196257,968.257369,3008656476 +1,4424,2038,128,3.29896283,0.133971259,955.428806,3008656476 +1,4425,2039,128,3.79028416,0.13082911,978.375531,3008656476 +1,4426,2040,128,3.32809567,0.148293766,863.151591,3008656476 +1,4427,2041,128,4.45992804,0.128968305,992.491915,3008656476 +1,4428,2042,128,4.13564682,0.126909994,1008.58881,3008656476 +1,4429,2043,128,4.4336319,0.130522125,980.676648,3008656476 +1,4430,2044,128,3.3069756,0.131907902,970.374011,3008656476 +1,4431,2045,128,3.30986381,0.129400593,989.176302,3008656476 +1,4432,2046,128,3.22505832,0.129718157,986.754692,3008656476 +1,4433,2047,128,3.40534067,0.129727989,986.679906,3008656476 +1,4434,2048,128,3.52812648,0.146396808,874.336003,3008656476 +1,4435,2049,128,3.3058126,0.139259845,919.14507,3008656476 +1,4436,2050,128,3.61086893,0.128656888,994.894265,3008656476 +1,4437,2051,128,3.65063167,0.12848188,996.249432,3008656476 +1,4438,2052,128,2.955127,0.129292532,990.003042,3008656476 +1,4439,2053,128,3.61125708,0.12828791,997.755751,3008656476 +1,4440,2054,128,4.1155858,0.128755578,994.131687,3008656476 +1,4441,2055,128,3.15081239,0.129235535,990.439665,3008656476 +1,4442,2056,128,3.25433064,0.142925019,895.574483,3008656476 +1,4443,2057,128,3.65680599,0.139633134,916.687869,3008656476 +1,4444,2058,128,3.23859096,0.125918471,1016.53077,3008656476 +1,4445,2059,128,3.36035347,0.128837909,993.49641,3008656476 +1,4446,2060,128,2.61576748,0.128667078,994.815473,3008656476 +1,4447,2061,128,3.9151895,0.128594988,995.373163,3008656476 +1,4448,2062,128,3.43678379,0.129330818,989.70997,3008656476 +1,4449,2063,128,2.89966512,0.129596149,987.68367,3008656476 +1,4450,2064,128,3.26642776,0.142466477,898.456975,3008656476 +1,4451,2065,128,2.88158536,0.142179275,900.271857,3008656476 +1,4452,2066,128,3.21645713,0.121701545,1051.75329,3008656476 +1,4453,2067,128,2.93219829,0.12823871,998.13855,3008656476 +1,4454,2068,128,2.99003124,0.129537715,988.12921,3008656476 +1,4455,2069,128,2.98322105,0.128476251,996.293081,3008656476 +1,4456,2070,128,3.48672056,0.128771912,994.005587,3008656476 +1,4457,2071,128,3.78403378,0.128471591,996.32922,3008656476 +1,4458,2072,128,3.05648708,0.141163683,906.748799,3008656476 +1,4459,2073,128,3.60231256,0.129889779,985.450903,3008656476 +1,4460,2074,128,3.01447868,0.13528527,946.148831,3008656476 +1,4461,2075,128,3.90202355,0.128757868,994.114006,3008656476 +1,4462,2076,128,3.61647391,0.129378298,989.34676,3008656476 +1,4463,2077,128,3.25722694,0.12972042,986.737477,3008656476 +1,4464,2078,128,2.84174442,0.129180965,990.858057,3008656476 +1,4465,2079,128,3.83435059,0.128925171,992.823969,3008656476 +1,4466,2080,128,3.42904305,0.141245918,906.220879,3008656476 +1,4467,2081,128,3.26603508,0.128759812,994.098997,3008656476 +1,4468,2082,128,3.131742,0.136894007,935.029975,3008656476 +1,4469,2083,128,3.56932998,0.128246161,998.080559,3008656476 +1,4470,2084,128,2.67620492,0.129051696,991.850584,3008656476 +1,4471,2085,128,3.36653328,0.128958225,992.569493,3008656476 +1,4472,2086,128,3.27945685,0.129340518,989.635746,3008656476 +1,4473,2087,128,2.78825545,0.128425083,996.690031,3008656476 +1,4474,2088,128,2.92778444,0.14109735,907.175082,3008656476 +1,4475,2089,128,3.60351372,0.128841743,993.466846,3008656476 +1,4476,2090,128,3.04908586,0.13802257,927.384557,3008656476 +1,4477,2091,128,2.49488187,0.128731125,994.320527,3008656476 +1,4478,2092,128,2.28699517,0.12904373,991.911812,3008656476 +1,4479,2093,128,2.23971581,0.129623034,987.478815,3008656476 +1,4480,2094,128,3.55793619,0.129920228,985.219946,3008656476 +1,4481,2095,128,2.45381284,0.128985643,992.358506,3008656476 +1,4482,2096,128,3.29962277,0.143767044,890.329219,3008656476 +1,4483,2097,128,3.30703211,0.130381392,981.735185,3008656476 +1,4484,2098,128,3.28950524,0.138533647,923.963259,3008656476 +1,4485,2099,128,3.19660664,0.131687104,972.001024,3008656476 +1,4486,2100,128,2.94444942,0.131495045,973.42071,3008656476 +1,4487,2101,128,3.09250474,0.131234228,975.355301,3008656476 +1,4488,2102,128,2.87995291,0.132578565,965.46527,3008656476 +1,4489,2103,128,2.09903073,0.132776242,964.027887,3008656476 +1,4490,2104,128,3.0150063,0.155312943,824.142519,3008656476 +1,4491,2105,128,2.73158193,0.152814999,837.614114,3008656476 +1,4492,2106,128,2.51088071,0.13923532,919.306969,3008656476 +1,4493,2107,128,3.38917685,0.141884314,902.143418,3008656476 +1,4494,2108,128,2.95297956,0.132084343,969.077766,3008656476 +1,4495,2109,128,3.345222,0.134440699,952.09264,3008656476 +1,4496,2110,128,3.2970016,0.131137506,976.074686,3008656476 +1,4497,2111,128,3.01160812,0.131300862,974.860317,3008656476 +1,4498,2112,128,3.07048035,0.146295732,874.940084,3008656476 +1,4499,2113,128,3.30186725,0.14525443,881.212366,3008656476 +1,4500,2114,128,2.20621276,0.129989869,984.692122,3008656476 +1,4501,2115,128,3.63658237,0.13141313,974.027481,3008656476 +1,4502,2116,128,2.71145272,0.131976526,969.869445,3008656476 +1,4503,2117,128,3.28668737,0.12925771,990.269749,3008656476 +1,4504,2118,128,3.07105684,0.131300502,974.86299,3008656476 +1,4505,2119,128,3.72569537,0.129808067,986.071228,3008656476 +1,4506,2120,128,2.05688095,0.138237674,925.941506,3008656476 +1,4507,2121,128,2.4387393,0.144876899,883.508695,3008656476 +1,4508,2122,128,2.658777,0.129156392,991.046576,3008656476 +1,4509,2123,128,2.12554407,0.127361545,1005.01293,3008656476 +1,4510,2124,128,2.69587564,0.12800582,999.954533,3008656476 +1,4511,2125,128,1.7705946,0.128199804,998.441464,3008656476 +1,4512,2126,128,2.01742125,0.127599097,1003.1419,3008656476 +1,4513,2127,128,4.01006174,0.128668911,994.801301,3008656476 +1,4514,2128,128,3.32921457,0.137347202,931.944722,3008656476 +1,4515,2129,128,2.55791187,0.14096093,908.053033,3008656476 +1,4516,2130,128,3.51464748,0.127237849,1005.98997,3008656476 +1,4517,2131,128,2.67480588,0.128839609,993.483301,3008656476 +1,4518,2132,128,3.40461302,0.128328288,997.441811,3008656476 +1,4519,2133,128,2.75385642,0.128463237,996.394011,3008656476 +1,4520,2134,128,3.65332055,0.1281826,998.57547,3008656476 +1,4521,2135,128,2.7356565,0.128303015,997.638286,3008656476 +1,4522,2136,128,3.47472453,0.143484151,892.08459,3008656476 +1,4523,2137,128,3.13937211,0.141844859,902.394355,3008656476 +1,4524,2138,128,3.24462914,0.12786069,1001.08955,3008656476 +1,4525,2139,128,4.18979073,0.128803819,993.759354,3008656476 +1,4526,2140,128,3.54850817,0.128467698,996.359412,3008656476 +1,4527,2141,128,3.11512518,0.129575259,987.842903,3008656476 +1,4528,2142,128,2.95616412,0.128640335,995.022284,3008656476 +1,4529,2143,128,2.79127407,0.128204179,998.407392,3008656476 +1,4530,2144,128,3.42469144,0.140547082,910.726841,3008656476 +1,4531,2145,128,3.75587249,0.144693712,884.627246,3008656476 +1,4532,2146,128,3.48797321,0.127988622,1000.0889,3008656476 +1,4533,2147,128,3.29786944,0.128619394,995.184288,3008656476 +1,4534,2148,128,3.11993957,0.129461932,988.70763,3008656476 +1,4535,2149,128,3.57601976,0.129020164,992.092988,3008656476 +1,4536,2150,128,3.61024213,0.130322468,982.179067,3008656476 +1,4537,2151,128,3.13568926,0.130151562,983.468796,3008656476 +1,4538,2152,128,3.34816217,0.142435898,898.649861,3008656476 +1,4539,2153,128,2.92491722,0.14725545,869.237777,3008656476 +1,4540,2154,128,2.66340446,0.131137611,976.073905,3008656476 +1,4541,2155,128,3.72811651,0.131620676,972.491586,3008656476 +1,4542,2156,128,3.48918343,0.130848961,978.227103,3008656476 +1,4543,2157,128,2.96571994,0.131368398,974.359145,3008656476 +1,4544,2158,128,1.65110934,0.132371095,966.978478,3008656476 +1,4545,2159,128,3.832757,0.147773998,866.187568,3008656476 +1,4546,2160,128,4.61266184,0.129297739,989.963173,3008656476 +1,4547,2161,128,3.81343365,0.139156889,919.825105,3008656476 +1,4548,2162,128,2.67873669,0.129092058,991.540471,3008656476 +1,4549,2163,128,2.20598292,0.12793241,1000.52833,3008656476 +1,4550,2164,128,2.54819775,0.128267834,997.911916,3008656476 +1,4551,2165,128,3.43252659,0.128419098,996.736482,3008656476 +1,4552,2166,128,3.17051888,0.128627388,995.122438,3008656476 +1,4553,2167,128,2.90508628,0.136820466,935.532554,3008656476 +1,4554,2168,128,3.15257931,0.128648342,994.960355,3008656476 +1,4555,2169,128,3.42960143,0.14066832,909.941912,3008656476 +1,4556,2170,128,2.80257797,0.128663312,994.844591,3008656476 +1,4557,2171,128,2.77336216,0.128252878,998.028286,3008656476 +1,4558,2172,128,3.42959189,0.128636366,995.052985,3008656476 +1,4559,2173,128,3.92334747,0.128561176,995.63495,3008656476 +1,4560,2174,128,3.44467711,0.128158803,998.760889,3008656476 +1,4561,2175,128,2.94112873,0.135815569,942.454543,3008656476 +1,4562,2176,128,1.53598094,0.123636129,1035.29608,3008656476 +1,4563,2177,128,2.46196151,0.142353293,899.171331,3008656476 +1,4564,2178,128,2.61253476,0.128411253,996.797376,3008656476 +1,4565,2179,128,3.49893832,0.128345007,997.311878,3008656476 +1,4566,2180,128,3.47415233,0.128363839,997.165565,3008656476 +1,4567,2181,128,2.51546741,0.128121804,999.049311,3008656476 +1,4568,2182,128,3.04096317,0.12873158,994.317012,3008656476 +1,4569,2183,128,3.63067746,0.129697811,986.909486,3008656476 +1,4570,2184,128,3.23633838,0.131671605,972.115438,3008656476 +1,4571,2185,128,3.33567166,0.141615683,903.854695,3008656476 +1,4572,2186,128,3.44774079,0.129240888,990.398642,3008656476 +1,4573,2187,128,3.43977928,0.129325948,989.747239,3008656476 +1,4574,2188,128,2.96330237,0.128970914,992.471837,3008656476 +1,4575,2189,128,2.96720505,0.128901625,993.005325,3008656476 +1,4576,2190,128,2.98363042,0.129808934,986.064642,3008656476 +1,4577,2191,128,3.56990695,0.129100767,991.473583,3008656476 +1,4578,2192,128,3.01558614,0.135248353,946.407089,3008656476 +1,4579,2193,128,1.99186099,0.142749657,896.674659,3008656476 +1,4580,2194,128,3.04686809,0.129379191,989.339932,3008656476 +1,4581,2195,128,2.82517242,0.128754368,994.14103,3008656476 +1,4582,2196,128,3.4414351,0.127932625,1000.52664,3008656476 +1,4583,2197,128,3.40604973,0.12946729,988.666713,3008656476 +1,4584,2198,128,3.56767821,0.129145253,991.132055,3008656476 +1,4585,2199,128,2.59826279,0.128825404,993.592848,3008656476 +1,4586,2200,128,3.24450302,0.137160009,933.21662,3008656476 +1,4587,2201,128,3.38472939,0.143422368,892.468879,3008656476 +1,4588,2202,128,2.88356805,0.127731401,1002.10284,3008656476 +1,4589,2203,128,3.75921464,0.128535798,995.831527,3008656476 +1,4590,2204,128,3.8810935,0.129485482,988.52781,3008656476 +1,4591,2205,128,2.67610407,0.12968129,987.035215,3008656476 +1,4592,2206,128,2.97882843,0.128701701,994.54785,3008656476 +1,4593,2207,128,2.9225378,0.128085524,999.33229,3008656476 +1,4594,2208,128,3.04910374,0.136920727,934.847505,3008656476 +1,4595,2209,128,3.16422439,0.144282121,887.150806,3008656476 +1,4596,2210,128,2.71980834,0.130067268,984.106163,3008656476 +1,4597,2211,128,2.35462284,0.129422525,989.008675,3008656476 +1,4598,2212,128,2.72461152,0.130131243,983.622357,3008656476 +1,4599,2213,128,2.88302755,0.131282055,974.999972,3008656476 +1,4600,2214,128,2.80195045,0.129378641,989.344138,3008656476 +1,4601,2215,128,3.2358427,0.13077375,978.789704,3008656476 +1,4602,2216,128,2.39636731,0.137687714,929.639953,3008656476 +1,4603,2217,128,3.39913893,0.1421382,900.532017,3008656476 +1,4604,2218,128,2.97972941,0.130430146,981.368218,3008656476 +1,4605,2219,128,3.7276597,0.13183807,970.887999,3008656476 +1,4606,2220,128,2.83349609,0.132490887,966.104182,3008656476 +1,4607,2221,128,2.11573458,0.133451602,959.14922,3008656476 +1,4608,2222,128,2.96560931,0.139703562,916.225744,3008656476 +1,4609,2223,128,2.88534355,0.155305769,824.180588,3008656476 +1,4610,2224,128,2.78782892,0.154880484,826.443698,3008656476 +1,4611,2225,128,2.70796275,0.139165685,919.766967,3008656476 +1,4612,2226,128,3.22141814,0.143419767,892.485064,3008656476 +1,4613,2227,128,2.99576139,0.132114899,968.853634,3008656476 +1,4614,2228,128,3.00861263,0.134397864,952.396089,3008656476 +1,4615,2229,128,2.83733535,0.132299272,967.503434,3008656476 +1,4616,2230,128,3.56026268,0.132546786,965.696747,3008656476 +1,4617,2231,128,2.27049112,0.143489645,892.050433,3008656476 +1,4618,2232,128,3.16909075,0.147556803,867.462546,3008656476 +1,4619,2233,128,2.5917356,0.130492318,980.900653,3008656476 +1,4620,2234,128,2.98103118,0.130736217,979.070704,3008656476 +1,4621,2235,128,2.25089192,0.129701437,986.881896,3008656476 +1,4622,2236,128,2.7618804,0.130615217,979.9777,3008656476 +1,4623,2237,128,3.8882997,0.129804079,986.101523,3008656476 +1,4624,2238,128,2.96590424,0.128080318,999.372909,3008656476 +1,4625,2239,128,2.83080745,0.143530039,891.799381,3008656476 +1,4626,2240,128,2.86387277,0.143774479,890.283177,3008656476 +1,4627,2241,128,2.78088999,0.127659465,1002.66753,3008656476 +1,4628,2242,128,3.62362242,0.128027499,999.78521,3008656476 +1,4629,2243,128,3.02157736,0.128612165,995.240225,3008656476 +1,4630,2244,128,3.28213263,0.128275365,997.853329,3008656476 +1,4631,2245,128,3.29118204,0.127216964,1006.15512,3008656476 +1,4632,2246,128,2.2610991,0.128260687,997.967522,3008656476 +1,4633,2247,128,2.49734211,0.1427622,896.595878,3008656476 +1,4634,2248,128,2.86946416,0.143041482,894.845315,3008656476 +1,4635,2249,128,3.18635678,0.129180156,990.864262,3008656476 +1,4636,2250,128,3.21363616,0.129601042,987.64638,3008656476 +1,4637,2251,128,2.31595111,0.129427655,988.969475,3008656476 +1,4638,2252,128,2.16820216,0.128469625,996.344467,3008656476 +1,4639,2253,128,3.0561347,0.129613599,987.550697,3008656476 +1,4640,2254,128,3.62923813,0.128321456,997.494916,3008656476 +1,4641,2255,128,2.92535949,0.142593136,897.658917,3008656476 +1,4642,2256,128,3.24298429,0.142575681,897.768814,3008656476 +1,4643,2257,128,2.88150096,0.127546864,1003.5527,3008656476 +1,4644,2258,128,3.24884748,0.128654879,994.909801,3008656476 +1,4645,2259,128,2.86977863,0.128744029,994.220866,3008656476 +1,4646,2260,128,2.84717274,0.128949582,992.636021,3008656476 +1,4647,2261,128,2.82693481,0.129083917,991.603005,3008656476 +1,4648,2262,128,2.55050063,0.128457733,996.436703,3008656476 +1,4649,2263,128,3.05064702,0.13998298,914.396879,3008656476 +1,4650,2264,128,2.29111195,0.145063848,882.370086,3008656476 +1,4651,2265,128,2.54672337,0.129661003,987.189649,3008656476 +1,4652,2266,128,3.12510157,0.129427706,988.969085,3008656476 +1,4653,2267,128,2.60035896,0.129570861,987.876433,3008656476 +1,4654,2268,128,3.01708889,0.13110069,976.34879,3008656476 +1,4655,2269,128,2.0473671,0.130926619,977.646876,3008656476 +1,4656,2270,128,2.58606458,0.130918471,977.707722,3008656476 +1,4657,2271,128,2.8007946,0.137920134,928.073344,3008656476 +1,4658,2272,128,3.115978,0.146771633,872.103126,3008656476 +1,4659,2273,128,2.42984319,0.132655073,964.908443,3008656476 +1,4660,2274,128,2.37727404,0.132217973,968.098339,3008656476 +1,4661,2275,128,2.72576714,0.139084952,920.300853,3008656476 +1,4662,2276,128,3.13592625,0.139425995,918.049751,3008656476 +1,4663,2277,128,2.34850478,0.139170358,919.736083,3008656476 +1,4664,2278,128,2.49086356,0.146692345,872.574503,3008656476 +1,4665,2279,128,2.46334982,0.145283975,881.033163,3008656476 +1,4666,2280,128,2.34379482,0.132160577,968.518774,3008656476 +1,4667,2281,128,2.91606426,0.132182129,968.360859,3008656476 +1,4668,2282,128,3.2421453,0.131872166,970.636973,3008656476 +1,4669,2283,128,2.46122169,0.131661613,972.189214,3008656476 +1,4670,2284,128,2.58280635,0.130572685,980.296913,3008656476 +1,4671,2285,128,2.05390358,0.131646183,972.303162,3008656476 +1,4672,2286,128,2.3475914,0.144470531,885.993836,3008656476 +1,4673,2287,128,2.30225968,0.144588708,885.269685,3008656476 +1,4674,2288,128,2.23511004,0.130045294,984.272449,3008656476 +1,4675,2289,128,2.32898641,0.128699397,994.565654,3008656476 +1,4676,2290,128,2.98066831,0.128518957,995.96202,3008656476 +1,4677,2291,128,3.44261241,0.128150451,998.825982,3008656476 +1,4678,2292,128,2.44528222,0.127807897,1001.50306,3008656476 +1,4679,2293,128,3.22809505,0.129007752,992.188438,3008656476 +1,4680,2294,128,3.56051183,0.142683012,897.093482,3008656476 +1,4681,2295,128,3.72192025,0.144927603,883.199593,3008656476 +1,4682,2296,128,3.81558251,0.129313559,989.842063,3008656476 +1,4683,2297,128,2.90872979,0.130059806,984.162624,3008656476 +1,4684,2298,128,2.71827459,0.129314678,989.833497,3008656476 +1,4685,2299,128,3.8274262,0.128988849,992.333841,3008656476 +1,4686,2300,128,3.14690375,0.128926274,992.815475,3008656476 +1,4687,2301,128,3.48350716,0.129559488,987.963151,3008656476 +1,4688,2302,128,4.13709545,0.148014617,864.779456,3008656476 +1,4689,2303,128,3.34359169,0.141540574,904.334329,3008656476 +1,4690,2304,128,2.98584151,0.128712635,994.463364,3008656476 +1,4691,2305,128,3.49621487,0.129024661,992.05841,3008656476 +1,4692,2306,128,4.03392076,0.128512289,996.013696,3008656476 +1,4693,2307,128,3.46949315,0.130093389,983.908567,3008656476 +1,4694,2308,128,3.43530583,0.111556176,1147.40398,3008656476 +1,4695,2309,128,3.82973814,0.111363481,1149.38936,3008656476 +1,4696,2310,128,3.20433426,0.122899153,1041.50433,3008656476 +1,4697,2311,128,3.01481295,0.11150059,1147.97599,3008656476 +1,4698,2312,128,2.90520835,0.114602413,1116.90493,3008656476 +1,4699,2313,128,3.44311213,0.111490051,1148.0845,3008656476 +1,4700,2314,128,4.09299135,0.111580397,1147.15491,3008656476 +1,4701,2315,128,3.76659012,0.111400033,1149.01223,3008656476 +1,4702,2316,128,4.30762768,0.111769587,1145.21314,3008656476 +1,4703,2317,128,3.77168632,0.111387222,1149.14438,3008656476 +1,4704,2318,128,3.87500429,0.111455335,1148.44211,3008656476 +1,4705,2319,128,3.77398014,0.111474563,1148.24402,3008656476 +1,4706,2320,128,3.84358525,0.112811566,1134.63543,3008656476 +1,4707,2321,128,3.9812324,0.124978222,1024.17844,3008656476 +1,4708,2322,128,3.73990178,0.111463846,1148.35442,3008656476 +1,4709,2323,128,3.71713614,0.111367987,1149.34285,3008656476 +1,4710,2324,128,3.33645678,0.11134849,1149.5441,3008656476 +1,4711,2325,128,4.0250349,0.111319816,1149.8402,3008656476 +1,4712,2326,128,3.70333529,0.111431709,1148.6856,3008656476 +1,4713,2327,128,4.25443649,0.111576834,1147.19154,3008656476 +1,4714,2328,128,3.77689433,0.111585148,1147.10606,3008656476 +1,4715,2329,128,3.28990746,0.127943824,1000.43907,3008656476 +1,4716,2330,128,3.85150313,0.126139802,1014.74711,3008656476 +1,4717,2331,128,3.66013265,0.111537452,1147.59659,3008656476 +1,4718,2332,128,3.08893275,0.111595697,1146.99763,3008656476 +1,4719,2333,128,3.07128978,0.111473054,1148.25956,3008656476 +1,4720,2334,128,2.7119031,0.111447495,1148.5229,3008656476 +1,4721,2335,128,3.49075079,0.111401108,1149.00114,3008656476 +1,4722,2336,128,4.05014229,0.111402927,1148.98238,3008656476 +1,4723,2337,128,3.82942796,0.111446228,1148.53596,3008656476 +1,4724,2338,128,3.25930738,0.126404466,1012.62245,3008656476 +1,4725,2339,128,3.12656784,0.123459518,1036.77709,3008656476 +1,4726,2340,128,2.97750926,0.111043566,1152.70073,3008656476 +1,4727,2341,128,3.78078151,0.111382601,1149.19205,3008656476 +1,4728,2342,128,3.59692931,0.111315166,1149.88824,3008656476 +1,4729,2343,128,3.8380568,0.111507603,1147.90379,3008656476 +1,4730,2344,128,3.51925397,0.111432788,1148.67448,3008656476 +1,4731,2345,128,3.95968485,0.11155756,1147.38974,3008656476 +1,4732,2346,128,3.84534025,0.111752317,1145.39012,3008656476 +1,4733,2347,128,3.77332187,0.125854551,1017.04705,3008656476 +1,4734,2348,128,3.79907036,0.125202061,1022.34739,3008656476 +1,4735,2349,128,3.83878708,0.107174129,1194.31808,3008656476 +1,4736,2350,128,3.4449563,0.111294735,1150.09933,3008656476 +1,4737,2351,128,3.52127051,0.111524414,1147.73076,3008656476 +1,4738,2352,128,2.84730387,0.111502383,1147.95753,3008656476 +1,4739,2353,128,3.08463907,0.111640827,1146.53396,3008656476 +1,4740,2354,128,3.70980787,0.111255081,1150.50925,3008656476 +1,4741,2355,128,3.27807069,0.111513948,1147.83847,3008656476 +1,4742,2356,128,3.55314589,0.124895146,1024.85969,3008656476 +1,4743,2357,128,2.87528682,0.111771259,1145.19601,3008656476 +1,4744,2358,128,3.08623242,0.125690274,1018.37633,3008656476 +1,4745,2359,128,3.31231117,0.111554205,1147.42425,3008656476 +1,4746,2360,128,3.43306065,0.11151201,1147.85842,3008656476 +1,4747,2361,128,2.78689051,0.111368341,1149.3392,3008656476 +1,4748,2362,128,2.73878479,0.111572009,1147.24115,3008656476 +1,4749,2363,128,2.47349882,0.111605754,1146.89427,3008656476 +1,4750,2364,128,2.40084505,0.111445319,1148.54532,3008656476 +1,4751,2365,128,2.78544712,0.111320741,1149.83065,3008656476 +1,4752,2366,128,2.63153076,0.11821287,1082.79242,3008656476 +1,4753,2367,128,3.4912622,0.125638261,1018.79793,3008656476 +1,4754,2368,128,3.06573224,0.111390654,1149.10897,3008656476 +1,4755,2369,128,2.89345622,0.111399081,1149.02205,3008656476 +1,4756,2370,128,2.75247455,0.111502277,1147.95862,3008656476 +1,4757,2371,128,2.67629862,0.111481699,1148.17052,3008656476 +1,4758,2372,128,3.75180078,0.11138828,1149.13346,3008656476 +1,4759,2373,128,3.61944985,0.111395584,1149.05812,3008656476 +1,4760,2374,128,3.75454712,0.111383413,1149.18368,3008656476 +1,4761,2375,128,2.5565474,0.128388127,996.976925,3008656476 +1,4762,2376,128,2.80032444,0.123545453,1036.05594,3008656476 +1,4763,2377,128,3.7525146,0.111307097,1149.9716,3008656476 +1,4764,2378,128,3.32542181,0.111625862,1146.68767,3008656476 +1,4765,2379,128,2.53261042,0.111611257,1146.83772,3008656476 +1,4766,2380,128,3.1366086,0.111495826,1148.02504,3008656476 +1,4767,2381,128,2.58965278,0.11157052,1147.25646,3008656476 +1,4768,2382,128,2.98246908,0.111308821,1149.95378,3008656476 +1,4769,2383,128,3.19440818,0.111554309,1147.42318,3008656476 +1,4770,2384,64,2.79381824,0.122040902,524.414348,3008656476 +2,4771,0,128,2.10250115,0.121158893,1056.46393,3008656476 +2,4772,1,128,2.79292583,0.144652632,884.878472,3008656476 +2,4773,2,128,2.58135629,0.146610145,873.06373,3008656476 +2,4774,3,128,2.98709178,0.131612535,972.551741,3008656476 +2,4775,4,128,3.52402878,0.131320534,974.714282,3008656476 +2,4776,5,128,3.8716445,0.129673123,987.09738,3008656476 +2,4777,6,128,3.60344577,0.12992747,985.165031,3008656476 +2,4778,7,128,3.85167718,0.129321787,989.779085,3008656476 +2,4779,8,128,3.99166322,0.129271872,990.161263,3008656476 +2,4780,9,128,3.65256476,0.13413846,954.237882,3008656476 +2,4781,10,128,3.16074705,0.145571069,879.295597,3008656476 +2,4782,11,128,3.4452703,0.130797602,978.611213,3008656476 +2,4783,12,128,2.78021049,0.129990425,984.687911,3008656476 +2,4784,13,128,2.42016292,0.129491577,988.481282,3008656476 +2,4785,14,128,2.55285239,0.13013806,983.570832,3008656476 +2,4786,15,128,2.69810176,0.130340993,982.039472,3008656476 +2,4787,16,128,3.48010015,0.135509768,944.581353,3008656476 +2,4788,17,128,3.35986423,0.129638055,987.364397,3008656476 +2,4789,18,128,3.2058394,0.144471921,885.985312,3008656476 +2,4790,19,128,3.38632202,0.129306703,989.894546,3008656476 +2,4791,20,128,3.14578462,0.129403054,989.157489,3008656476 +2,4792,21,128,3.59566832,0.128652854,994.92546,3008656476 +2,4793,22,128,2.93529224,0.12789344,1000.83319,3008656476 +2,4794,23,128,2.09728551,0.128718043,994.421582,3008656476 +2,4795,24,128,2.55670023,0.12880829,993.72486,3008656476 +2,4796,25,128,3.10043836,0.132442827,966.454756,3008656476 +2,4797,26,128,3.05272675,0.141486331,904.681032,3008656476 +2,4798,27,128,3.28027511,0.1310225,976.931443,3008656476 +2,4799,28,128,2.94999576,0.128191674,998.504786,3008656476 +2,4800,29,128,2.94679451,0.129224502,990.524227,3008656476 +2,4801,30,128,2.61466861,0.128309634,997.586822,3008656476 +2,4802,31,128,3.01082611,0.129330782,989.710245,3008656476 +2,4803,32,128,3.37749338,0.128572869,995.544402,3008656476 +2,4804,33,128,3.22671413,0.136013891,941.080349,3008656476 +2,4805,34,128,3.25749516,0.141747081,903.016832,3008656476 +2,4806,35,128,3.26119518,0.127871259,1001.0068,3008656476 +2,4807,36,128,3.2959187,0.128047128,999.631948,3008656476 +2,4808,37,128,2.80995703,0.128344908,997.312648,3008656476 +2,4809,38,128,2.85760283,0.128279894,997.818099,3008656476 +2,4810,39,128,2.28076863,0.12887384,993.219415,3008656476 +2,4811,40,128,3.18764782,0.128535637,995.832774,3008656476 +2,4812,41,128,3.13746786,0.141912996,901.961086,3008656476 +2,4813,42,128,3.35087061,0.14358273,891.472115,3008656476 +2,4814,43,128,3.61365795,0.129294241,989.989956,3008656476 +2,4815,44,128,3.83309984,0.129399021,989.188319,3008656476 +2,4816,45,128,3.58506322,0.130187255,983.199162,3008656476 +2,4817,46,128,2.81148982,0.129168995,990.949879,3008656476 +2,4818,47,128,3.38425112,0.129691368,986.958515,3008656476 +2,4819,48,128,2.91770911,0.128876539,993.198615,3008656476 +2,4820,49,128,3.19580173,0.136909537,934.923913,3008656476 +2,4821,50,128,2.60754061,0.142836366,896.130331,3008656476 +2,4822,51,128,3.67479181,0.129493691,988.465145,3008656476 +2,4823,52,128,2.60227919,0.12966864,987.131507,3008656476 +2,4824,53,128,3.49735475,0.128696565,994.58754,3008656476 +2,4825,54,128,2.46873236,0.128984692,992.365823,3008656476 +2,4826,55,128,2.81986165,0.129188322,990.80163,3008656476 +2,4827,56,128,3.68192315,0.128893989,993.064153,3008656476 +2,4828,57,128,3.00375462,0.13677244,935.861055,3008656476 +2,4829,58,128,2.98796773,0.145120221,882.027323,3008656476 +2,4830,59,128,3.1311543,0.128881712,993.15875,3008656476 +2,4831,60,128,2.95336914,0.128986347,992.35309,3008656476 +2,4832,61,128,3.78833246,0.129520751,988.25863,3008656476 +2,4833,62,128,2.83643484,0.129961712,984.905462,3008656476 +2,4834,63,128,3.59993887,0.130047461,984.256048,3008656476 +2,4835,64,128,2.53688383,0.129823846,985.951379,3008656476 +2,4836,65,128,3.41481924,0.14059617,910.408868,3008656476 +2,4837,66,128,3.20569515,0.144859894,883.61241,3008656476 +2,4838,67,128,3.67572594,0.131468227,973.619276,3008656476 +2,4839,68,128,4.11050606,0.13067586,979.52292,3008656476 +2,4840,69,128,3.19471502,0.131913296,970.334332,3008656476 +2,4841,70,128,3.78082967,0.133739956,957.081218,3008656476 +2,4842,71,128,3.52705121,0.136548959,937.392719,3008656476 +2,4843,72,128,3.28812814,0.152662954,838.448338,3008656476 +2,4844,73,128,3.19849777,0.151078478,847.241789,3008656476 +2,4845,74,128,2.94711709,0.135429506,945.141157,3008656476 +2,4846,75,128,2.87935543,0.143788842,890.194247,3008656476 +2,4847,76,128,3.9616611,0.135744264,942.949604,3008656476 +2,4848,77,128,3.72178221,0.132214777,968.12174,3008656476 +2,4849,78,128,3.29043818,0.132301216,967.489218,3008656476 +2,4850,79,128,3.167588,0.133805603,956.61166,3008656476 +2,4851,80,128,3.64666152,0.145810117,877.854038,3008656476 +2,4852,81,128,3.63800001,0.144629276,885.02137,3008656476 +2,4853,82,128,3.60673475,0.130908843,977.779629,3008656476 +2,4854,83,128,3.71256733,0.133359974,959.808226,3008656476 +2,4855,84,128,2.9443934,0.130460878,981.137042,3008656476 +2,4856,85,128,2.91566563,0.131826417,970.973822,3008656476 +2,4857,86,128,3.07127261,0.131957186,970.011591,3008656476 +2,4858,87,128,2.59756994,0.129466184,988.675159,3008656476 +2,4859,88,128,2.68479419,0.144247076,887.366341,3008656476 +2,4860,89,128,3.26630116,0.14537743,880.466796,3008656476 +2,4861,90,128,2.91838121,0.129198276,990.725294,3008656476 +2,4862,91,128,3.04490423,0.129144722,991.13613,3008656476 +2,4863,92,128,3.1670084,0.129563757,987.930599,3008656476 +2,4864,93,128,2.84981489,0.128724627,994.37072,3008656476 +2,4865,94,128,2.74231029,0.127474957,1004.11879,3008656476 +2,4866,95,128,3.08360362,0.128768207,994.034187,3008656476 +2,4867,96,128,2.74262619,0.142620838,897.48456,3008656476 +2,4868,97,128,3.34286356,0.144113388,888.189514,3008656476 +2,4869,98,128,3.23580265,0.128404519,996.849651,3008656476 +2,4870,99,128,3.18494129,0.128514896,995.993492,3008656476 +2,4871,100,128,3.39084816,0.129223536,990.531632,3008656476 +2,4872,101,128,2.83002567,0.128630302,995.099895,3008656476 +2,4873,102,128,3.15090418,0.129327985,989.73165,3008656476 +2,4874,103,128,3.30593729,0.128472159,996.324815,3008656476 +2,4875,104,128,2.43706393,0.141641383,903.690696,3008656476 +2,4876,105,128,3.37243748,0.144532669,885.612927,3008656476 +2,4877,106,128,3.16069221,0.12839965,996.887453,3008656476 +2,4878,107,128,2.88243794,0.129162235,991.001743,3008656476 +2,4879,108,128,3.27090788,0.128591966,995.396555,3008656476 +2,4880,109,128,2.30582404,0.129391363,989.246863,3008656476 +2,4881,110,128,2.96204948,0.129047899,991.879767,3008656476 +2,4882,111,128,3.03690386,0.128834774,993.520585,3008656476 +2,4883,112,128,3.41674852,0.142359493,899.132171,3008656476 +2,4884,113,128,3.91928935,0.145892043,877.361077,3008656476 +2,4885,114,128,3.73296285,0.128903405,992.991613,3008656476 +2,4886,115,128,3.7018714,0.129068246,991.723402,3008656476 +2,4887,116,128,2.77314425,0.129422284,989.010517,3008656476 +2,4888,117,128,3.30450392,0.130154743,983.44476,3008656476 +2,4889,118,128,3.10074711,0.130825687,978.40113,3008656476 +2,4890,119,128,3.53887391,0.131860577,970.72228,3008656476 +2,4891,120,128,3.2253201,0.138877839,921.673328,3008656476 +2,4892,121,128,3.19940972,0.145118743,882.036306,3008656476 +2,4893,122,128,2.47951341,0.133110845,961.604594,3008656476 +2,4894,123,128,2.69712424,0.133685144,957.473629,3008656476 +2,4895,124,128,2.65596747,0.139484025,917.667812,3008656476 +2,4896,125,128,2.62319207,0.142632274,897.412601,3008656476 +2,4897,126,128,2.65643001,0.132134886,968.707083,3008656476 +2,4898,127,128,3.57773972,0.14605491,876.382725,3008656476 +2,4899,128,128,3.53529,0.144157142,887.919934,3008656476 +2,4900,129,128,3.3606813,0.12335984,1037.61483,3008656476 +2,4901,130,128,3.39559722,0.131801028,971.160862,3008656476 +2,4902,131,128,3.06834078,0.130648696,979.726579,3008656476 +2,4903,132,128,2.65585279,0.131787157,971.26308,3008656476 +2,4904,133,128,3.06409097,0.130452579,981.199459,3008656476 +2,4905,134,128,3.28304315,0.129697885,986.908923,3008656476 +2,4906,135,128,2.91928387,0.145339251,880.698085,3008656476 +2,4907,136,128,2.76946378,0.141674284,903.480832,3008656476 +2,4908,137,128,2.66662407,0.128900563,993.013506,3008656476 +2,4909,138,128,2.29893494,0.128555259,995.680776,3008656476 +2,4910,139,128,2.68102741,0.128722138,994.389947,3008656476 +2,4911,140,128,2.1879077,0.127358379,1005.03792,3008656476 +2,4912,141,128,2.13297606,0.128265315,997.931514,3008656476 +2,4913,142,128,2.83532214,0.128984258,992.369162,3008656476 +2,4914,143,128,2.44668865,0.147805292,866.004175,3008656476 +2,4915,144,128,1.77448237,0.144997966,882.771004,3008656476 +2,4916,145,128,1.5388695,0.129541387,988.1012,3008656476 +2,4917,146,128,2.61894679,0.129937371,985.089963,3008656476 +2,4918,147,128,3.5617795,0.129143386,991.146384,3008656476 +2,4919,148,128,3.72558498,0.128691627,994.625703,3008656476 +2,4920,149,128,2.74762225,0.12920417,990.6801,3008656476 +2,4921,150,128,2.18125749,0.12861074,995.251252,3008656476 +2,4922,151,128,1.75218153,0.143240686,893.600859,3008656476 +2,4923,152,128,2.64286375,0.142811326,896.287456,3008656476 +2,4924,153,128,3.09531546,0.129148079,991.110367,3008656476 +2,4925,154,128,2.21683574,0.129229423,990.486509,3008656476 +2,4926,155,128,3.50775647,0.128209515,998.365839,3008656476 +2,4927,156,128,3.63278151,0.129385536,989.291415,3008656476 +2,4928,157,128,3.509552,0.12946222,988.705431,3008656476 +2,4929,158,128,2.82004237,0.130274319,982.542077,3008656476 +2,4930,159,128,2.54438329,0.142310608,899.441031,3008656476 +2,4931,160,128,2.93976545,0.145458193,879.977933,3008656476 +2,4932,161,128,2.90123963,0.12982866,985.91482,3008656476 +2,4933,162,128,2.54052854,0.130441163,981.285332,3008656476 +2,4934,163,128,3.61033297,0.130812445,978.500173,3008656476 +2,4935,164,128,3.42662954,0.131998399,969.708731,3008656476 +2,4936,165,128,2.96739602,0.130642398,979.77381,3008656476 +2,4937,166,128,3.35501981,0.131869045,970.659945,3008656476 +2,4938,167,128,2.90141392,0.146685953,872.612526,3008656476 +2,4939,168,128,2.81354618,0.147564241,867.418821,3008656476 +2,4940,169,128,2.92513776,0.131610892,972.563882,3008656476 +2,4941,170,128,3.0156703,0.13196738,969.936662,3008656476 +2,4942,171,128,2.76599288,0.131957167,970.011731,3008656476 +2,4943,172,128,2.82602668,0.132390321,966.838052,3008656476 +2,4944,173,128,2.74150944,0.131686741,972.003704,3008656476 +2,4945,174,128,2.51810718,0.130987604,977.191704,3008656476 +2,4946,175,128,3.14202571,0.144623124,885.059017,3008656476 +2,4947,176,128,2.35616565,0.143920391,889.380574,3008656476 +2,4948,177,128,3.54374027,0.129348578,989.574079,3008656476 +2,4949,178,128,2.43820953,0.131554578,972.980203,3008656476 +2,4950,179,128,3.66325355,0.129967086,984.864737,3008656476 +2,4951,180,128,3.00533676,0.129614611,987.542986,3008656476 +2,4952,181,128,2.98252821,0.128001073,999.991617,3008656476 +2,4953,182,128,3.6545887,0.12823997,998.128743,3008656476 +2,4954,183,128,2.19337034,0.138788987,922.263378,3008656476 +2,4955,184,128,2.44370556,0.14066292,909.976844,3008656476 +2,4956,185,128,3.19072199,0.129448534,988.809962,3008656476 +2,4957,186,128,2.61931348,0.127916993,1000.64891,3008656476 +2,4958,187,128,2.47022939,0.128556742,995.66929,3008656476 +2,4959,188,128,3.30706429,0.128313399,997.55755,3008656476 +2,4960,189,128,3.06757307,0.128427072,996.674595,3008656476 +2,4961,190,128,3.07035279,0.128392328,996.944303,3008656476 +2,4962,191,128,2.48034549,0.141832398,902.473637,3008656476 +2,4963,192,128,2.31437445,0.142007807,901.358895,3008656476 +2,4964,193,128,3.08544374,0.128320889,997.499324,3008656476 +2,4965,194,128,2.80529261,0.128220295,998.281902,3008656476 +2,4966,195,128,3.41817331,0.127681387,1002.49538,3008656476 +2,4967,196,128,2.95275831,0.128031921,999.750679,3008656476 +2,4968,197,128,2.73936534,0.128794065,993.834615,3008656476 +2,4969,198,128,2.77727175,0.129457027,988.745091,3008656476 +2,4970,199,128,3.34470296,0.142739033,896.741398,3008656476 +2,4971,200,128,3.16940284,0.144502536,885.797603,3008656476 +2,4972,201,128,2.80497599,0.128943319,992.684235,3008656476 +2,4973,202,128,3.7821033,0.12887081,993.242768,3008656476 +2,4974,203,128,3.1244359,0.180003855,711.095882,3008656476 +2,4975,204,128,2.93354964,0.122162186,1047.78741,3008656476 +2,4976,205,128,3.08781552,0.128918168,992.877901,3008656476 +2,4977,206,128,2.40266371,0.14253548,898.022022,3008656476 +2,4978,207,128,2.57886839,0.128422647,996.708937,3008656476 +2,4979,208,128,2.45133972,0.133640012,957.796981,3008656476 +2,4980,209,128,2.61067557,0.129174588,990.906973,3008656476 +2,4981,210,128,2.29753637,0.129756745,986.461243,3008656476 +2,4982,211,128,2.94389939,0.129382628,989.31365,3008656476 +2,4983,212,128,2.84363079,0.1283253,997.465036,3008656476 +2,4984,213,128,2.69045234,0.128952727,992.611812,3008656476 +2,4985,214,128,2.12575626,0.143207215,893.809715,3008656476 +2,4986,215,128,2.30841064,0.129417073,989.05034,3008656476 +2,4987,216,128,3.28795958,0.136273893,939.284827,3008656476 +2,4988,217,128,2.90614414,0.129437551,988.893864,3008656476 +2,4989,218,128,2.5396719,0.128493092,996.162502,3008656476 +2,4990,219,128,3.27291512,0.128937468,992.729282,3008656476 +2,4991,220,128,2.53162169,0.128771943,994.005348,3008656476 +2,4992,221,128,2.38164473,0.128904621,992.982245,3008656476 +2,4993,222,128,2.75212908,0.143380913,892.726914,3008656476 +2,4994,223,128,2.38427758,0.129116908,991.349638,3008656476 +2,4995,224,128,2.76241589,0.139407167,918.173741,3008656476 +2,4996,225,128,2.78566122,0.129017289,992.115096,3008656476 +2,4997,226,128,2.76010799,0.12826465,997.936688,3008656476 +2,4998,227,128,3.13440824,0.128717581,994.425152,3008656476 +2,4999,228,128,2.745713,0.128859958,993.326414,3008656476 +2,5000,229,128,2.73876119,0.128251699,998.037461,3008656476 +2,5001,230,128,2.96797514,0.141426307,905.064996,3008656476 +2,5002,231,128,3.32292485,0.128779127,993.949897,3008656476 +2,5003,232,128,2.8057363,0.139805711,915.556304,3008656476 +2,5004,233,128,3.22265553,0.129247128,990.350826,3008656476 +2,5005,234,128,3.11085153,0.130034865,984.351389,3008656476 +2,5006,235,128,2.43551373,0.129427388,988.971515,3008656476 +2,5007,236,128,3.30096531,0.130315985,982.227929,3008656476 +2,5008,237,128,2.48108101,0.131402232,974.108263,3008656476 +2,5009,238,128,3.09995866,0.14366158,890.982822,3008656476 +2,5010,239,128,3.38227201,0.131661131,972.192773,3008656476 +2,5011,240,128,3.16058421,0.139589038,916.977449,3008656476 +2,5012,241,128,2.58313656,0.13157765,972.809592,3008656476 +2,5013,242,128,2.76494098,0.131052646,976.70672,3008656476 +2,5014,243,128,2.99160051,0.133031799,962.175968,3008656476 +2,5015,244,128,3.35613346,0.134147677,954.172319,3008656476 +2,5016,245,128,2.47494435,0.135294106,946.087038,3008656476 +2,5017,246,128,3.03421116,0.146383404,874.416064,3008656476 +2,5018,247,128,3.12429404,0.148011657,864.79675,3008656476 +2,5019,248,128,3.12938046,0.131679575,972.0566,3008656476 +2,5020,249,128,1.68352175,0.132416879,966.644139,3008656476 +2,5021,250,128,2.52075815,0.130642928,979.769835,3008656476 +2,5022,251,128,3.38462496,0.132344843,967.170289,3008656476 +2,5023,252,128,3.18851614,0.12984205,985.813148,3008656476 +2,5024,253,128,2.83966851,0.131052356,976.708881,3008656476 +2,5025,254,128,3.1461792,0.145187844,881.616508,3008656476 +2,5026,255,128,3.18293166,0.144767979,884.173426,3008656476 +2,5027,256,128,2.71461535,0.129327188,989.737749,3008656476 +2,5028,257,128,3.09604597,0.129842389,985.810574,3008656476 +2,5029,258,128,2.64482689,0.129268769,990.185031,3008656476 +2,5030,259,128,3.01673579,0.130891092,977.912233,3008656476 +2,5031,260,128,3.26468658,0.12876616,994.04999,3008656476 +2,5032,261,128,2.83514237,0.129104238,991.446927,3008656476 +2,5033,262,128,3.19814849,0.14209284,900.819492,3008656476 +2,5034,263,128,2.27419853,0.14223562,899.915225,3008656476 +2,5035,264,128,2.62012982,0.127492861,1003.97778,3008656476 +2,5036,265,128,2.66544318,0.128290678,997.734224,3008656476 +2,5037,266,128,2.66296721,0.128907208,992.962318,3008656476 +2,5038,267,128,1.96790266,0.128615635,995.213374,3008656476 +2,5039,268,128,2.03353477,0.128667577,994.811614,3008656476 +2,5040,269,128,2.9396615,0.128584724,995.452617,3008656476 +2,5041,270,128,3.41600394,0.142597306,897.632666,3008656476 +2,5042,271,128,2.32476187,0.144192868,887.699938,3008656476 +2,5043,272,128,2.76988602,0.128559033,995.651546,3008656476 +2,5044,273,128,3.23709893,0.129307824,989.885964,3008656476 +2,5045,274,128,2.46937418,0.129534447,988.154139,3008656476 +2,5046,275,128,2.81771588,0.129241696,990.39245,3008656476 +2,5047,276,128,2.96618104,0.129781341,986.27429,3008656476 +2,5048,277,128,3.53936577,0.129429237,988.957387,3008656476 +2,5049,278,128,2.47763395,0.142430811,898.681957,3008656476 +2,5050,279,128,2.55567431,0.14202561,901.245909,3008656476 +2,5051,280,128,2.72197914,0.128556105,995.674223,3008656476 +2,5052,281,128,2.52586985,0.129227977,990.497592,3008656476 +2,5053,282,128,1.98060179,0.128953155,992.608517,3008656476 +2,5054,283,128,2.38155437,0.128932905,992.764415,3008656476 +2,5055,284,128,2.20555401,0.130517198,980.713668,3008656476 +2,5056,285,128,2.23609948,0.129909969,985.297749,3008656476 +2,5057,286,128,2.66524553,0.148407703,862.488924,3008656476 +2,5058,287,128,2.31940293,0.145843022,877.655977,3008656476 +2,5059,288,128,2.19453597,0.131667062,972.14898,3008656476 +2,5060,289,128,2.95233202,0.133555382,958.403908,3008656476 +2,5061,290,128,2.48644304,0.139036678,920.620385,3008656476 +2,5062,291,128,3.23876643,0.135430712,945.132741,3008656476 +2,5063,292,128,2.86385322,0.131536961,973.110516,3008656476 +2,5064,293,128,2.39360094,0.146914858,871.252927,3008656476 +2,5065,294,128,2.36821175,0.132238094,967.951035,3008656476 +2,5066,295,128,2.78061032,0.147124799,870.009685,3008656476 +2,5067,296,128,3.37804055,0.131377803,974.289393,3008656476 +2,5068,297,128,2.70587373,0.131319955,974.71858,3008656476 +2,5069,298,128,2.85843968,0.131625663,972.454741,3008656476 +2,5070,299,128,3.08908796,0.131666333,972.154362,3008656476 +2,5071,300,128,2.60643697,0.130446955,981.241762,3008656476 +2,5072,301,128,2.8516748,0.144612866,885.121798,3008656476 +2,5073,302,128,2.7195034,0.130063352,984.135793,3008656476 +2,5074,303,128,2.91827464,0.135928902,941.668756,3008656476 +2,5075,304,128,2.51159859,0.131614144,972.539851,3008656476 +2,5076,305,128,2.63990235,0.130925689,977.65382,3008656476 +2,5077,306,128,2.65565681,0.130993422,977.148303,3008656476 +2,5078,307,128,2.22463608,0.131965159,969.952986,3008656476 +2,5079,308,128,3.31783366,0.129876176,985.554117,3008656476 +2,5080,309,128,3.13710785,0.144161499,887.893098,3008656476 +2,5081,310,128,2.62928367,0.143399492,892.611251,3008656476 +2,5082,311,128,2.51045704,0.125096843,1023.20728,3008656476 +2,5083,312,128,2.52216697,0.129730376,986.661751,3008656476 +2,5084,313,128,2.66882539,0.129583028,987.783678,3008656476 +2,5085,314,128,1.90612829,0.129515673,988.297378,3008656476 +2,5086,315,128,2.69867849,0.130048514,984.248078,3008656476 +2,5087,316,128,2.88821483,0.12921072,990.62988,3008656476 +2,5088,317,128,2.71151948,0.142172427,900.315221,3008656476 +2,5089,318,128,2.98800015,0.1409824,907.914747,3008656476 +2,5090,319,128,3.04981375,0.121896025,1050.07526,3008656476 +2,5091,320,128,3.49080849,0.128749239,994.180634,3008656476 +2,5092,321,128,2.85943151,0.127987481,1000.09781,3008656476 +2,5093,322,128,2.86362171,0.128005472,999.957252,3008656476 +2,5094,323,128,2.87298393,0.127722822,1002.17015,3008656476 +2,5095,324,128,2.06835985,0.128196991,998.463373,3008656476 +2,5096,325,128,3.32568049,0.144965522,882.968572,3008656476 +2,5097,326,128,2.99722052,0.128448872,996.505442,3008656476 +2,5098,327,128,3.32845569,0.135380756,945.481498,3008656476 +2,5099,328,128,3.12004352,0.127325069,1005.30085,3008656476 +2,5100,329,128,3.07647896,0.128243533,998.101011,3008656476 +2,5101,330,128,3.88566589,0.129512204,988.323849,3008656476 +2,5102,331,128,3.13256621,0.127558216,1003.46339,3008656476 +2,5103,332,128,2.6392982,0.129639877,987.35052,3008656476 +2,5104,333,128,3.34250927,0.143144193,894.203232,3008656476 +2,5105,334,128,2.97856283,0.129869457,985.605107,3008656476 +2,5106,335,128,3.41082931,0.140588449,910.458867,3008656476 +2,5107,336,128,3.0726428,0.129784609,986.249456,3008656476 +2,5108,337,128,3.25356293,0.129801797,986.118859,3008656476 +2,5109,338,128,2.85172296,0.128517764,995.971265,3008656476 +2,5110,339,128,3.16800141,0.12977259,986.340798,3008656476 +2,5111,340,128,2.7375164,0.129198271,990.725333,3008656476 +2,5112,341,128,2.82523656,0.143407476,892.561557,3008656476 +2,5113,342,128,3.01866102,0.129241629,990.392964,3008656476 +2,5114,343,128,2.68910909,0.137263352,932.514019,3008656476 +2,5115,344,128,3.39923,0.128452071,996.480625,3008656476 +2,5116,345,128,2.4238801,0.128828646,993.567844,3008656476 +2,5117,346,128,2.61319804,0.129594796,987.693981,3008656476 +2,5118,347,128,3.76111579,0.129230372,990.479235,3008656476 +2,5119,348,128,3.13505554,0.12881815,993.648799,3008656476 +2,5120,349,128,3.37177014,0.14361855,891.249772,3008656476 +2,5121,350,128,3.35763359,0.129157738,991.036247,3008656476 +2,5122,351,128,3.20467496,0.13869235,922.905986,3008656476 +2,5123,352,128,3.69364452,0.129153071,991.072059,3008656476 +2,5124,353,128,3.34560919,0.128716648,994.43236,3008656476 +2,5125,354,128,2.7723434,0.129274505,990.141095,3008656476 +2,5126,355,128,3.02500653,0.128895024,993.056179,3008656476 +2,5127,356,128,3.17830896,0.129835131,985.865682,3008656476 +2,5128,357,128,2.89790916,0.144021802,888.754329,3008656476 +2,5129,358,128,1.92650497,0.129822055,985.964981,3008656476 +2,5130,359,128,2.62240195,0.138638535,923.264228,3008656476 +2,5131,360,128,2.63261986,0.130851096,978.211142,3008656476 +2,5132,361,128,2.63844609,0.131643538,972.322698,3008656476 +2,5133,362,128,2.58531761,0.130904219,977.814168,3008656476 +2,5134,363,128,2.8128593,0.130911433,977.760285,3008656476 +2,5135,364,128,3.14691997,0.132166769,968.473399,3008656476 +2,5136,365,128,3.150208,0.14603231,876.518354,3008656476 +2,5137,366,128,3.16711521,0.146384916,874.407032,3008656476 +2,5138,367,128,3.163311,0.131622774,972.476085,3008656476 +2,5139,368,128,2.54273629,0.139420982,918.08276,3008656476 +2,5140,369,128,2.94863129,0.143496263,892.009292,3008656476 +2,5141,370,128,2.83555007,0.143763433,890.351582,3008656476 +2,5142,371,128,2.51205778,0.143695596,890.771906,3008656476 +2,5143,372,128,2.98595762,0.153233502,835.326468,3008656476 +2,5144,373,128,3.44534636,0.138258556,925.801655,3008656476 +2,5145,374,128,3.14753485,0.146211633,875.443338,3008656476 +2,5146,375,128,2.53626633,0.131657493,972.219637,3008656476 +2,5147,376,128,3.59275699,0.133979516,955.369924,3008656476 +2,5148,377,128,2.20150328,0.131124533,976.171255,3008656476 +2,5149,378,128,2.91651988,0.132597389,965.328209,3008656476 +2,5150,379,128,2.00937605,0.130348104,981.985898,3008656476 +2,5151,380,128,2.60270834,0.143574735,891.521757,3008656476 +2,5152,381,128,2.40612602,0.131114952,976.242587,3008656476 +2,5153,382,128,2.14668655,0.144684643,884.682696,3008656476 +2,5154,383,128,2.3370204,0.12930859,989.8801,3008656476 +2,5155,384,128,3.65611744,0.129906035,985.327587,3008656476 +2,5156,385,128,3.83794856,0.129716106,986.770294,3008656476 +2,5157,386,128,2.89652896,0.131529558,973.165287,3008656476 +2,5158,387,128,2.33758283,0.128386431,996.990095,3008656476 +2,5159,388,128,3.15167403,0.143426497,892.443186,3008656476 +2,5160,389,128,3.64691806,0.129269069,990.182733,3008656476 +2,5161,390,128,3.18367362,0.138905923,921.486984,3008656476 +2,5162,391,128,3.27976131,0.128152234,998.812085,3008656476 +2,5163,392,128,2.38794255,0.128840261,993.478273,3008656476 +2,5164,393,128,3.2201972,0.127649865,1002.74293,3008656476 +2,5165,394,128,2.73902512,0.128447357,996.517196,3008656476 +2,5166,395,128,3.13441539,0.128964793,992.518943,3008656476 +2,5167,396,128,2.90259743,0.148632285,861.185711,3008656476 +2,5168,397,128,3.55966306,0.129952122,984.978144,3008656476 +2,5169,398,128,2.96855187,0.13708728,933.71172,3008656476 +2,5170,399,128,3.59261942,0.129753101,986.488947,3008656476 +2,5171,400,128,2.91514087,0.128930406,992.783657,3008656476 +2,5172,401,128,3.25934744,0.128853098,993.379298,3008656476 +2,5173,402,128,2.97132683,0.129196887,990.735946,3008656476 +2,5174,403,128,2.69960093,0.129586433,987.757723,3008656476 +2,5175,404,128,2.88935757,0.14197334,901.577719,3008656476 +2,5176,405,128,2.65078688,0.129306671,989.894791,3008656476 +2,5177,406,128,2.76055956,0.139368779,918.426644,3008656476 +2,5178,407,128,1.83604705,0.128448773,996.50621,3008656476 +2,5179,408,128,2.39137363,0.129461313,988.712358,3008656476 +2,5180,409,128,3.23359394,0.128866444,993.276419,3008656476 +2,5181,410,128,2.14833117,0.129835909,985.859775,3008656476 +2,5182,411,128,3.14344978,0.129748569,986.523404,3008656476 +2,5183,412,128,2.35376906,0.142509842,898.183579,3008656476 +2,5184,413,128,2.47549939,0.127948313,1000.40397,3008656476 +2,5185,414,128,2.53606772,0.138622215,923.372924,3008656476 +2,5186,415,128,3.46442509,0.128652458,994.928523,3008656476 +2,5187,416,128,2.80298924,0.127808766,1001.49625,3008656476 +2,5188,417,128,2.28102922,0.128140548,998.903173,3008656476 +2,5189,418,128,2.70143604,0.129021665,992.081446,3008656476 +2,5190,419,128,1.95255673,0.129392759,989.236191,3008656476 +2,5191,420,128,1.66670465,0.142757265,896.626872,3008656476 +2,5192,421,128,3.05194187,0.129984766,984.73078,3008656476 +2,5193,422,128,2.49165559,0.141080221,907.285225,3008656476 +2,5194,423,128,2.91623688,0.131548625,973.024233,3008656476 +2,5195,424,128,3.52059078,0.129770764,986.354677,3008656476 +2,5196,425,128,3.62884736,0.132214342,968.124926,3008656476 +2,5197,426,128,4.09972382,0.131124956,976.168106,3008656476 +2,5198,427,128,2.91707945,0.131671625,972.115291,3008656476 +2,5199,428,128,2.02721572,0.147256105,869.233911,3008656476 +2,5200,429,128,1.92389619,0.144004337,888.862118,3008656476 +2,5201,430,128,2.07953453,0.128771757,994.006784,3008656476 +2,5202,431,128,2.00312662,0.133213264,960.865278,3008656476 +2,5203,432,128,2.30430126,0.134352258,952.71938,3008656476 +2,5204,433,128,2.11432171,0.138781184,922.315233,3008656476 +2,5205,434,128,3.00196886,0.131533591,973.135448,3008656476 +2,5206,435,128,3.16618085,0.132210493,968.15311,3008656476 +2,5207,436,128,3.64084888,0.147027494,870.58547,3008656476 +2,5208,437,128,2.34557009,0.144963465,882.981101,3008656476 +2,5209,438,128,2.26319623,0.131813383,971.069834,3008656476 +2,5210,439,128,2.92448497,0.13112679,976.154453,3008656476 +2,5211,440,128,2.70428228,0.131290197,974.939507,3008656476 +2,5212,441,128,2.40442157,0.131242983,975.290237,3008656476 +2,5213,442,128,2.46884036,0.131622184,972.480444,3008656476 +2,5214,443,128,2.39804673,0.130680493,979.488193,3008656476 +2,5215,444,128,2.30854845,0.138935547,921.290503,3008656476 +2,5216,445,128,2.49924135,0.147579719,867.327847,3008656476 +2,5217,446,128,2.60111499,0.130503397,980.817381,3008656476 +2,5218,447,128,3.18761587,0.129841848,985.814681,3008656476 +2,5219,448,128,2.90491843,0.130005055,984.5771,3008656476 +2,5220,449,128,3.00182676,0.132312713,967.40515,3008656476 +2,5221,450,128,2.81919122,0.129799317,986.137701,3008656476 +2,5222,451,128,3.49208474,0.138849605,921.860743,3008656476 +2,5223,452,128,2.89317417,0.128500611,996.104213,3008656476 +2,5224,453,128,2.54858804,0.144391633,886.477958,3008656476 +2,5225,454,128,3.12994027,0.129808092,986.071038,3008656476 +2,5226,455,128,3.4772799,0.129675129,987.08211,3008656476 +2,5227,456,128,3.22659397,0.129957094,984.94046,3008656476 +2,5228,457,128,3.35665345,0.129093004,991.533205,3008656476 +2,5229,458,128,3.0990572,0.131251734,975.225211,3008656476 +2,5230,459,128,2.26963496,0.137069587,933.832244,3008656476 +2,5231,460,128,3.25050831,0.127852335,1001.15497,3008656476 +2,5232,461,128,3.24466777,0.146026606,876.552592,3008656476 +2,5233,462,128,3.05088353,0.129012929,992.148624,3008656476 +2,5234,463,128,2.35189176,0.128476882,996.288188,3008656476 +2,5235,464,128,2.40318394,0.128516755,995.979085,3008656476 +2,5236,465,128,2.3939786,0.12911975,991.327818,3008656476 +2,5237,466,128,2.33434439,0.127822779,1001.38646,3008656476 +2,5238,467,128,2.70396757,0.138332311,925.308043,3008656476 +2,5239,468,128,3.60169744,0.126144973,1014.70552,3008656476 +2,5240,469,128,3.3404696,0.142741816,896.723914,3008656476 +2,5241,470,128,3.3382318,0.128090663,999.292197,3008656476 +2,5242,471,128,2.0189395,0.127411416,1004.61955,3008656476 +2,5243,472,128,3.64943075,0.128353156,997.24856,3008656476 +2,5244,473,128,3.18679714,0.128683283,994.690196,3008656476 +2,5245,474,128,2.65931892,0.129269678,990.178068,3008656476 +2,5246,475,128,2.1233151,0.128921738,992.850407,3008656476 +2,5247,476,128,2.68279552,0.130616895,979.965111,3008656476 +2,5248,477,128,2.80326748,0.144456179,886.081862,3008656476 +2,5249,478,128,3.13486242,0.129108795,991.411933,3008656476 +2,5250,479,128,3.56363487,0.129832909,985.882555,3008656476 +2,5251,480,128,3.19156694,0.128732973,994.306253,3008656476 +2,5252,481,128,2.51674104,0.128651146,994.938669,3008656476 +2,5253,482,128,2.4503746,0.129325964,989.747117,3008656476 +2,5254,483,128,3.12074256,0.129608193,987.591888,3008656476 +2,5255,484,128,3.15916467,0.132847963,963.507434,3008656476 +2,5256,485,128,2.63206053,0.142074897,900.933259,3008656476 +2,5257,486,128,2.20881104,0.12946765,988.663964,3008656476 +2,5258,487,128,3.04744649,0.129381747,989.320387,3008656476 +2,5259,488,128,2.5048821,0.129487073,988.515664,3008656476 +2,5260,489,128,3.5442872,0.12876726,994.041498,3008656476 +2,5261,490,128,3.59265995,0.129115634,991.35942,3008656476 +2,5262,491,128,3.44201684,0.128628688,995.112381,3008656476 +2,5263,492,128,2.69944644,0.137953009,927.852179,3008656476 +2,5264,493,128,2.91298509,0.142109983,900.710825,3008656476 +2,5265,494,128,2.94429851,0.128893621,993.066988,3008656476 +2,5266,495,128,3.11604071,0.129171115,990.933615,3008656476 +2,5267,496,128,3.44994855,0.128587532,995.430879,3008656476 +2,5268,497,128,3.67722893,0.128461822,996.404986,3008656476 +2,5269,498,128,3.6358223,0.128931419,992.775857,3008656476 +2,5270,499,128,3.09184694,0.129630101,987.424981,3008656476 +2,5271,500,128,3.48371339,0.143170128,894.041249,3008656476 +2,5272,501,128,3.66615272,0.146134216,875.907118,3008656476 +2,5273,502,128,2.77049208,0.13072744,979.136438,3008656476 +2,5274,503,128,3.33956909,0.130330116,982.121431,3008656476 +2,5275,504,128,3.48505354,0.131768881,971.397792,3008656476 +2,5276,505,128,3.46158528,0.13123973,975.314411,3008656476 +2,5277,506,128,3.52163577,0.13098091,977.241645,3008656476 +2,5278,507,128,2.74335861,0.145923536,877.171726,3008656476 +2,5279,508,128,3.31254029,0.133878916,956.087813,3008656476 +2,5280,509,128,3.35196614,0.152248705,840.729647,3008656476 +2,5281,510,128,3.23448324,0.143330339,893.041912,3008656476 +2,5282,511,128,3.41508436,0.133025748,962.219735,3008656476 +2,5283,512,128,3.34558582,0.132698154,964.595182,3008656476 +2,5284,513,128,3.50871944,0.13129151,974.929757,3008656476 +2,5285,514,128,3.07682991,0.132299449,967.50214,3008656476 +2,5286,515,128,3.59344935,0.145767025,878.113551,3008656476 +2,5287,516,128,3.09059191,0.130713104,979.243825,3008656476 +2,5288,517,128,3.31301546,0.139215252,919.439488,3008656476 +2,5289,518,128,3.58613992,0.131486201,973.486184,3008656476 +2,5290,519,128,3.24063468,0.131764867,971.427384,3008656476 +2,5291,520,128,2.83848619,0.13147817,973.545646,3008656476 +2,5292,521,128,3.13065815,0.131593952,972.689079,3008656476 +2,5293,522,128,2.70235896,0.130992045,977.158575,3008656476 +2,5294,523,128,3.14273787,0.145867423,877.509161,3008656476 +2,5295,524,128,2.52162361,0.1412783,906.013167,3008656476 +2,5296,525,128,2.90980554,0.123130522,1039.54729,3008656476 +2,5297,526,128,3.43715906,0.131030805,976.869523,3008656476 +2,5298,527,128,3.00526595,0.129207371,990.655556,3008656476 +2,5299,528,128,3.5203886,0.130265782,982.606468,3008656476 +2,5300,529,128,2.67210698,0.130154725,983.444896,3008656476 +2,5301,530,128,2.45201635,0.129543335,988.086342,3008656476 +2,5302,531,128,3.43207598,0.142964369,895.327982,3008656476 +2,5303,532,128,3.93106699,0.136976406,934.467502,3008656476 +2,5304,533,128,3.51882029,0.126371522,1012.88643,3008656476 +2,5305,534,128,3.37247634,0.128860932,993.318906,3008656476 +2,5306,535,128,3.28688121,0.129064939,991.748813,3008656476 +2,5307,536,128,3.15619159,0.130189446,983.182615,3008656476 +2,5308,537,128,3.33724284,0.129343374,989.613894,3008656476 +2,5309,538,128,2.34685826,0.127655405,1002.69942,3008656476 +2,5310,539,128,2.72354865,0.142642839,897.346133,3008656476 +2,5311,540,128,2.95496225,0.128213168,998.337394,3008656476 +2,5312,541,128,3.30990934,0.134159458,954.088529,3008656476 +2,5313,542,128,3.20863557,0.130330525,982.118349,3008656476 +2,5314,543,128,3.58682299,0.129403869,989.151259,3008656476 +2,5315,544,128,2.63977766,0.128385277,996.999056,3008656476 +2,5316,545,128,2.28685236,0.128528989,995.884283,3008656476 +2,5317,546,128,2.84877467,0.128728977,994.337118,3008656476 +2,5318,547,128,3.4715457,0.145051656,882.444251,3008656476 +2,5319,548,128,3.36045527,0.128347769,997.290416,3008656476 +2,5320,549,128,3.36712456,0.135302396,946.029071,3008656476 +2,5321,550,128,2.8522954,0.128014117,999.889723,3008656476 +2,5322,551,128,2.44462562,0.129253499,990.302011,3008656476 +2,5323,552,128,2.94446731,0.12838341,997.013555,3008656476 +2,5324,553,128,3.38564992,0.128714523,994.448777,3008656476 +2,5325,554,128,3.71585035,0.128459256,996.42489,3008656476 +2,5326,555,128,3.59595227,0.149041096,858.823529,3008656476 +2,5327,556,128,2.64288235,0.129254313,990.295775,3008656476 +2,5328,557,128,2.9389379,0.13751481,930.808834,3008656476 +2,5329,558,128,3.9421804,0.129007535,992.190107,3008656476 +2,5330,559,128,3.95734715,0.129190971,990.781314,3008656476 +2,5331,560,128,3.62776732,0.129665088,987.158548,3008656476 +2,5332,561,128,3.34061766,0.130225739,982.908609,3008656476 +2,5333,562,128,3.56759763,0.129142041,991.156706,3008656476 +2,5334,563,128,3.86444688,0.145308021,880.887367,3008656476 +2,5335,564,128,3.32691789,0.128896401,993.04557,3008656476 +2,5336,565,128,2.95056248,0.13580101,942.555582,3008656476 +2,5337,566,128,2.27669263,0.128703356,994.535061,3008656476 +2,5338,567,128,3.48050594,0.129264737,990.215916,3008656476 +2,5339,568,128,3.27233434,0.128774995,993.98179,3008656476 +2,5340,569,128,3.47171426,0.129551968,988.020498,3008656476 +2,5341,570,128,3.84673738,0.129174358,990.908737,3008656476 +2,5342,571,128,2.6956799,0.141597017,903.973846,3008656476 +2,5343,572,128,2.58768725,0.129033067,991.993781,3008656476 +2,5344,573,128,3.52310991,0.138973377,921.039718,3008656476 +2,5345,574,128,3.12927461,0.128940326,992.707278,3008656476 +2,5346,575,128,3.26979876,0.129018811,992.103392,3008656476 +2,5347,576,128,2.6613884,0.128932829,992.765,3008656476 +2,5348,577,128,3.77782202,0.128859355,993.331062,3008656476 +2,5349,578,128,2.84301853,0.127659861,1002.66442,3008656476 +2,5350,579,128,2.87133431,0.142170025,900.330432,3008656476 +2,5351,580,128,2.65371609,0.129203102,990.688289,3008656476 +2,5352,581,128,3.15327597,0.143282269,893.34152,3008656476 +2,5353,582,128,3.22235346,0.131297672,974.884003,3008656476 +2,5354,583,128,2.91420436,0.131964446,969.958226,3008656476 +2,5355,584,128,3.25961852,0.130731996,979.102316,3008656476 +2,5356,585,128,2.69671345,0.131629245,972.428278,3008656476 +2,5357,586,128,3.77891064,0.132827237,963.657778,3008656476 +2,5358,587,128,3.38236189,0.148340848,862.877634,3008656476 +2,5359,588,128,3.04860044,0.149744555,854.789011,3008656476 +2,5360,589,128,3.7376225,0.140254773,912.624913,3008656476 +2,5361,590,128,3.32391787,0.132968223,962.636013,3008656476 +2,5362,591,128,3.1933701,0.131888878,970.513981,3008656476 +2,5363,592,128,3.10579896,0.131958814,969.999624,3008656476 +2,5364,593,128,2.76127577,0.131817773,971.037494,3008656476 +2,5365,594,128,2.74649358,0.131858547,970.737225,3008656476 +2,5366,595,128,2.92812133,0.140665303,909.961428,3008656476 +2,5367,596,128,3.06780195,0.144597821,885.213893,3008656476 +2,5368,597,128,3.01873541,0.131399957,974.125129,3008656476 +2,5369,598,128,2.7778635,0.131341894,974.555765,3008656476 +2,5370,599,128,3.42485237,0.131732015,971.669643,3008656476 +2,5371,600,128,3.29690838,0.13093673,977.571381,3008656476 +2,5372,601,128,2.84617662,0.132063771,969.228722,3008656476 +2,5373,602,128,3.32783484,0.138913316,921.437942,3008656476 +2,5374,603,128,2.51361465,0.127690821,1002.42131,3008656476 +2,5375,604,128,3.463799,0.145426306,880.170882,3008656476 +2,5376,605,128,2.30637908,0.130258509,982.661332,3008656476 +2,5377,606,128,2.46091676,0.129817478,985.999743,3008656476 +2,5378,607,128,2.27216244,0.130094161,983.902729,3008656476 +2,5379,608,128,3.21282244,0.128647537,994.966581,3008656476 +2,5380,609,128,2.6157999,0.12822786,998.223007,3008656476 +2,5381,610,128,2.6656394,0.141465631,904.81341,3008656476 +2,5382,611,128,2.23400235,0.123989627,1032.34442,3008656476 +2,5383,612,128,2.83151007,0.14438517,886.517639,3008656476 +2,5384,613,128,3.09610724,0.128677358,994.735997,3008656476 +2,5385,614,128,3.48160458,0.128227318,998.227226,3008656476 +2,5386,615,128,2.46131682,0.1279447,1000.43222,3008656476 +2,5387,616,128,3.18384242,0.128639361,995.029818,3008656476 +2,5388,617,128,3.3770678,0.127807559,1001.50571,3008656476 +2,5389,618,128,2.7175231,0.128866054,993.279425,3008656476 +2,5390,619,128,2.92418981,0.131054344,976.694065,3008656476 +2,5391,620,128,2.77832413,0.142521073,898.1128,3008656476 +2,5392,621,128,2.70325923,0.128640789,995.018773,3008656476 +2,5393,622,128,3.20746684,0.128370589,997.113132,3008656476 +2,5394,623,128,3.3803494,0.128361976,997.180037,3008656476 +2,5395,624,128,3.31266665,0.127806067,1001.5174,3008656476 +2,5396,625,128,3.37199903,0.128323422,997.479634,3008656476 +2,5397,626,128,3.24857354,0.129310162,989.868066,3008656476 +2,5398,627,128,2.55399108,0.134391423,952.441734,3008656476 +2,5399,628,128,3.02334809,0.143983269,888.992179,3008656476 +2,5400,629,128,3.71422338,0.129921397,985.211081,3008656476 +2,5401,630,128,3.51986027,0.129449813,988.800192,3008656476 +2,5402,631,128,2.70216155,0.129384189,989.301714,3008656476 +2,5403,632,128,3.89519644,0.129618874,987.510507,3008656476 +2,5404,633,128,3.42041206,0.128716516,994.433379,3008656476 +2,5405,634,128,3.48024464,0.129482983,988.546889,3008656476 +2,5406,635,128,2.57878065,0.139130207,920.001506,3008656476 +2,5407,636,128,2.99196148,0.141449875,904.914197,3008656476 +2,5408,637,128,2.94877124,0.129181677,990.852596,3008656476 +2,5409,638,128,2.98498893,0.128479841,996.265243,3008656476 +2,5410,639,128,3.7924993,0.129038881,991.949085,3008656476 +2,5411,640,128,3.0470221,0.129053679,991.835343,3008656476 +2,5412,641,128,3.1686368,0.130183292,983.229092,3008656476 +2,5413,642,128,2.57202673,0.129656475,987.224124,3008656476 +2,5414,643,128,3.21296072,0.139404339,918.192367,3008656476 +2,5415,644,128,3.47081184,0.142710796,896.918829,3008656476 +2,5416,645,128,4.0187068,0.1298072,986.077814,3008656476 +2,5417,646,128,3.02179503,0.128555702,995.677345,3008656476 +2,5418,647,128,2.92120528,0.129161096,991.010482,3008656476 +2,5419,648,128,3.23436928,0.129146781,991.120328,3008656476 +2,5420,649,128,3.05852413,0.128856032,993.356679,3008656476 +2,5421,650,128,2.64121127,0.129146307,991.123966,3008656476 +2,5422,651,128,2.77040219,0.139947827,914.626563,3008656476 +2,5423,652,128,2.17077231,0.161418342,792.970603,3008656476 +2,5424,653,128,2.49185944,0.171244658,747.468572,3008656476 +2,5425,654,128,3.67283106,0.131678977,972.061015,3008656476 +2,5426,655,128,3.66455984,0.132887664,963.219581,3008656476 +2,5427,656,128,3.48481917,0.132812103,963.767587,3008656476 +2,5428,657,128,2.87183499,0.140284927,912.428746,3008656476 +2,5429,658,128,3.16485834,0.147080479,870.271846,3008656476 +2,5430,659,128,3.63044739,0.147350508,868.677019,3008656476 +2,5431,660,128,3.17219877,0.130994236,977.142231,3008656476 +2,5432,661,128,3.27386212,0.132121675,968.803945,3008656476 +2,5433,662,128,3.1692884,0.130046725,984.261618,3008656476 +2,5434,663,128,2.66033745,0.129661909,987.182751,3008656476 +2,5435,664,128,2.36697745,0.129677943,987.060691,3008656476 +2,5436,665,128,3.87138367,0.123370949,1037.5214,3008656476 +2,5437,666,128,3.57120323,0.142582199,897.727773,3008656476 +2,5438,667,128,3.02735066,0.143847981,889.828269,3008656476 +2,5439,668,128,2.5757966,0.128635332,995.060984,3008656476 +2,5440,669,128,2.61160159,0.128764805,994.06045,3008656476 +2,5441,670,128,2.952775,0.129473677,988.617941,3008656476 +2,5442,671,128,2.35082841,0.128808485,993.723356,3008656476 +2,5443,672,128,2.72555184,0.129306132,989.898917,3008656476 +2,5444,673,128,2.80651498,0.129933132,985.122101,3008656476 +2,5445,674,128,3.52310705,0.1408599,908.704323,3008656476 +2,5446,675,128,3.33099127,0.142327443,899.334642,3008656476 +2,5447,676,128,2.93888927,0.128762202,994.080545,3008656476 +2,5448,677,128,3.71686864,0.129748309,986.525381,3008656476 +2,5449,678,128,3.16091013,0.129635202,987.386127,3008656476 +2,5450,679,128,3.03807139,0.128078602,999.386299,3008656476 +2,5451,680,128,3.22711635,0.129529424,988.192459,3008656476 +2,5452,681,128,3.33261228,0.129084125,991.601407,3008656476 +2,5453,682,128,3.07409954,0.143095379,894.508271,3008656476 +2,5454,683,128,2.88894725,0.14046926,911.231397,3008656476 +2,5455,684,128,2.91645598,0.128613313,995.231341,3008656476 +2,5456,685,128,2.5893383,0.128442756,996.552892,3008656476 +2,5457,686,128,2.74931979,0.128831518,993.545694,3008656476 +2,5458,687,128,2.32306099,0.128029688,999.768116,3008656476 +2,5459,688,128,3.36680436,0.129592154,987.714117,3008656476 +2,5460,689,128,2.29525924,0.129302879,989.923821,3008656476 +2,5461,690,128,2.80614519,0.148068237,864.466293,3008656476 +2,5462,691,128,3.08614898,0.146456211,873.98137,3008656476 +2,5463,692,128,3.09330702,0.132646431,964.971308,3008656476 +2,5464,693,128,2.56387472,0.131392162,974.18292,3008656476 +2,5465,694,128,3.3255868,0.1386555,923.151263,3008656476 +2,5466,695,128,3.05709863,0.131916992,970.307146,3008656476 +2,5467,696,128,3.62955546,0.131067984,976.592422,3008656476 +2,5468,697,128,3.38383198,0.14867193,860.956066,3008656476 +2,5469,698,128,2.81683612,0.1308681,978.08404,3008656476 +2,5470,699,128,2.74796319,0.144304325,887.014301,3008656476 +2,5471,700,128,3.53501344,0.129867787,985.617781,3008656476 +2,5472,701,128,3.06336856,0.128125392,999.021334,3008656476 +2,5473,702,128,2.78632903,0.128005932,999.953658,3008656476 +2,5474,703,128,2.23855734,0.128511668,996.018509,3008656476 +2,5475,704,128,3.10470176,0.128085299,999.334045,3008656476 +2,5476,705,128,3.41528344,0.141069682,907.353006,3008656476 +2,5477,706,128,3.12464643,0.12933742,989.65945,3008656476 +2,5478,707,128,3.17822576,0.14364768,891.069038,3008656476 +2,5479,708,128,2.48795342,0.12846818,996.355673,3008656476 +2,5480,709,128,3.40190125,0.128550921,995.714375,3008656476 +2,5481,710,128,2.23396611,0.128948233,992.646406,3008656476 +2,5482,711,128,3.22459507,0.127678753,1002.51606,3008656476 +2,5483,712,128,3.08229637,0.129335061,989.677501,3008656476 +2,5484,713,128,3.28717589,0.141597808,903.968796,3008656476 +2,5485,714,128,2.24068999,0.130482743,980.972633,3008656476 +2,5486,715,128,1.8282057,0.143037016,894.873254,3008656476 +2,5487,716,128,2.37571502,0.128796428,993.816381,3008656476 +2,5488,717,128,3.20747757,0.129740304,986.58625,3008656476 +2,5489,718,128,3.71886778,0.12999261,984.671359,3008656476 +2,5490,719,128,3.57438111,0.127465478,1004.19346,3008656476 +2,5491,720,128,3.39025521,0.128829231,993.563332,3008656476 +2,5492,721,128,3.43989682,0.141397048,905.252279,3008656476 +2,5493,722,128,2.77316332,0.127742908,1002.01257,3008656476 +2,5494,723,128,3.59012628,0.145082557,882.2563,3008656476 +2,5495,724,128,2.86833763,0.128769871,994.021342,3008656476 +2,5496,725,128,3.18720436,0.128848083,993.417962,3008656476 +2,5497,726,128,2.82979131,0.130009644,984.542347,3008656476 +2,5498,727,128,3.30460262,0.129077166,991.654868,3008656476 +2,5499,728,128,2.97330761,0.129675084,987.082453,3008656476 +2,5500,729,128,3.24906087,0.144474335,885.970508,3008656476 +2,5501,730,128,3.08875489,0.131900715,970.426885,3008656476 +2,5502,731,128,3.62758899,0.144030654,888.699707,3008656476 +2,5503,732,128,3.00967574,0.131779017,971.323075,3008656476 +2,5504,733,128,2.56814432,0.130782721,978.722564,3008656476 +2,5505,734,128,2.06101155,0.131615786,972.527718,3008656476 +2,5506,735,128,2.09136105,0.132867331,963.366984,3008656476 +2,5507,736,128,1.97304809,0.133494472,958.841202,3008656476 +2,5508,737,128,2.00804687,0.149992789,853.374358,3008656476 +2,5509,738,128,2.18636656,0.131951427,970.053927,3008656476 +2,5510,739,128,2.63291693,0.136724285,936.19067,3008656476 +2,5511,740,128,2.43873668,0.133665726,957.612724,3008656476 +2,5512,741,128,2.75401473,0.131460481,973.676644,3008656476 +2,5513,742,128,2.84988451,0.13234967,967.135014,3008656476 +2,5514,743,128,2.8658905,0.131123915,976.175856,3008656476 +2,5515,744,128,2.61921191,0.130989739,977.175777,3008656476 +2,5516,745,128,2.16572142,0.144980123,882.879648,3008656476 +2,5517,746,128,2.10276723,0.143990288,888.948844,3008656476 +2,5518,747,128,2.24246979,0.128882359,993.153764,3008656476 +2,5519,748,128,2.97252798,0.128740917,994.244899,3008656476 +2,5520,749,128,3.73275208,0.127646853,1002.76659,3008656476 +2,5521,750,128,2.5120151,0.128945448,992.667845,3008656476 +2,5522,751,128,3.24078751,0.128780767,993.937239,3008656476 +2,5523,752,128,2.41034484,0.128163553,998.723873,3008656476 +2,5524,753,128,2.76390982,0.141768505,902.880368,3008656476 +2,5525,754,128,2.96324468,0.143001023,895.098492,3008656476 +2,5526,755,128,2.84888172,0.129285579,990.056285,3008656476 +2,5527,756,128,3.40838814,0.128283081,997.79331,3008656476 +2,5528,757,128,2.20511818,0.129931151,985.137121,3008656476 +2,5529,758,128,2.884902,0.129415476,989.062545,3008656476 +2,5530,759,128,2.57781172,0.129677982,987.060394,3008656476 +2,5531,760,128,3.02187467,0.129549421,988.039923,3008656476 +2,5532,761,128,3.54131985,0.14248045,898.368864,3008656476 +2,5533,762,128,3.90076256,0.142010008,901.344925,3008656476 +2,5534,763,128,3.32068706,0.12905781,991.803596,3008656476 +2,5535,764,128,3.63058424,0.130372561,981.801684,3008656476 +2,5536,765,128,3.68658686,0.129232513,990.462826,3008656476 +2,5537,766,128,3.11666608,0.129634808,987.389128,3008656476 +2,5538,767,128,3.65123224,0.129292408,990.003992,3008656476 +2,5539,768,128,2.877002,0.128772424,994.001635,3008656476 +2,5540,769,128,2.93607807,0.151274628,846.143214,3008656476 +2,5541,770,128,2.4063046,0.14175791,902.94785,3008656476 +2,5542,771,128,3.49374104,0.129927718,985.16315,3008656476 +2,5543,772,128,2.75921345,0.13037133,981.810955,3008656476 +2,5544,773,128,2.91373467,0.130100381,983.855689,3008656476 +2,5545,774,128,2.80788445,0.13141395,974.021403,3008656476 +2,5546,775,128,3.09255171,0.131125707,976.162516,3008656476 +2,5547,776,128,3.34983063,0.130881227,977.985941,3008656476 +2,5548,777,128,3.2845161,0.148867512,859.824943,3008656476 +2,5549,778,128,2.6429882,0.154221888,829.97298,3008656476 +2,5550,779,128,2.90685868,0.139413351,918.133013,3008656476 +2,5551,780,128,2.52538228,0.143246732,893.563143,3008656476 +2,5552,781,128,2.6570487,0.139194271,919.578077,3008656476 +2,5553,782,128,2.06395459,0.138815513,922.087145,3008656476 +2,5554,783,128,2.02982879,0.133328189,960.037041,3008656476 +2,5555,784,128,2.7504034,0.146230215,875.332092,3008656476 +2,5556,785,128,2.83707094,0.133403823,959.492743,3008656476 +2,5557,786,128,2.80382252,0.136552202,937.370457,3008656476 +2,5558,787,128,3.47288156,0.132738805,964.299777,3008656476 +2,5559,788,128,3.41904116,0.130914787,977.735235,3008656476 +2,5560,789,128,3.4589355,0.132760372,964.143125,3008656476 +2,5561,790,128,3.3151958,0.131139646,976.058758,3008656476 +2,5562,791,128,3.79270887,0.131796438,971.194684,3008656476 +2,5563,792,128,2.93297219,0.144711757,884.516937,3008656476 +2,5564,793,128,3.27052283,0.143456134,892.258814,3008656476 +2,5565,794,128,2.57311082,0.131092892,976.406867,3008656476 +2,5566,795,128,2.73473573,0.128862881,993.303882,3008656476 +2,5567,796,128,3.56140184,0.128617875,995.196041,3008656476 +2,5568,797,128,2.98453879,0.129475382,988.604923,3008656476 +2,5569,798,128,2.89002442,0.128310299,997.581652,3008656476 +2,5570,799,128,2.82243466,0.129009045,992.178494,3008656476 +2,5571,800,128,3.48948598,0.141402959,905.214438,3008656476 +2,5572,801,128,3.19178891,0.136368041,938.636348,3008656476 +2,5573,802,128,3.6083765,0.125477648,1020.102,3008656476 +2,5574,803,128,2.87267494,0.128643406,994.998531,3008656476 +2,5575,804,128,3.17239881,0.128248418,998.062994,3008656476 +2,5576,805,128,4.10296202,0.128720103,994.405668,3008656476 +2,5577,806,128,3.81952,0.128710163,994.482464,3008656476 +2,5578,807,128,3.30708528,0.128608612,995.26772,3008656476 +2,5579,808,128,2.76585174,0.140541075,910.765767,3008656476 +2,5580,809,128,2.75925708,0.129598919,987.662559,3008656476 +2,5581,810,128,2.77886724,0.133680843,957.504435,3008656476 +2,5582,811,128,3.0157814,0.12841608,996.759907,3008656476 +2,5583,812,128,3.62566662,0.128429035,996.659361,3008656476 +2,5584,813,128,3.15056229,0.128913024,992.917519,3008656476 +2,5585,814,128,2.38490009,0.128604632,995.298521,3008656476 +2,5586,815,128,2.62598753,0.128363139,997.171002,3008656476 +2,5587,816,128,3.61286426,0.142473691,898.411483,3008656476 +2,5588,817,128,3.4070797,0.128235175,998.166065,3008656476 +2,5589,818,128,3.12382197,0.140344812,912.039413,3008656476 +2,5590,819,128,2.87027359,0.12875296,994.151901,3008656476 +2,5591,820,128,2.7882278,0.128782597,993.923115,3008656476 +2,5592,821,128,2.97475719,0.130001519,984.60388,3008656476 +2,5593,822,128,2.84405613,0.129688408,986.981042,3008656476 +2,5594,823,128,3.90815187,0.128733823,994.299688,3008656476 +2,5595,824,128,3.27575803,0.146390654,874.372759,3008656476 +2,5596,825,128,3.04498076,0.129770891,986.353712,3008656476 +2,5597,826,128,3.27069712,0.136796413,935.697049,3008656476 +2,5598,827,128,3.09320092,0.128894311,993.061672,3008656476 +2,5599,828,128,2.86016464,0.129667662,987.138952,3008656476 +2,5600,829,128,3.02407289,0.12804019,999.686114,3008656476 +2,5601,830,128,3.32490206,0.129181946,990.850533,3008656476 +2,5602,831,128,2.24919224,0.128830442,993.553992,3008656476 +2,5603,832,128,3.38687634,0.142803499,896.336581,3008656476 +2,5604,833,128,3.7665832,0.129019454,992.098447,3008656476 +2,5605,834,128,3.7655828,0.139692391,916.299013,3008656476 +2,5606,835,128,3.49631238,0.129415001,989.066175,3008656476 +2,5607,836,128,2.80827332,0.129362903,989.464499,3008656476 +2,5608,837,128,3.51138258,0.128971412,992.468005,3008656476 +2,5609,838,128,3.31650972,0.128114651,999.105091,3008656476 +2,5610,839,128,3.258708,0.128702485,994.541791,3008656476 +2,5611,840,128,3.20030403,0.141029196,907.613485,3008656476 +2,5612,841,128,2.87072325,0.129872168,985.584533,3008656476 +2,5613,842,128,2.5934875,0.142144847,900.489907,3008656476 +2,5614,843,128,3.57942557,0.130521418,980.68196,3008656476 +2,5615,844,128,2.59582877,0.131891632,970.493716,3008656476 +2,5616,845,128,3.16703081,0.13149573,973.415639,3008656476 +2,5617,846,128,2.84239507,0.133697135,957.387756,3008656476 +2,5618,847,128,3.74311852,0.132922568,962.96665,3008656476 +2,5619,848,128,2.79638696,0.146095087,876.141714,3008656476 +2,5620,849,128,2.86278391,0.142371342,899.05734,3008656476 +2,5621,850,128,2.696666,0.132584127,965.424768,3008656476 +2,5622,851,128,2.8616116,0.130400393,981.592134,3008656476 +2,5623,852,128,2.16761708,0.132934978,962.876753,3008656476 +2,5624,853,128,2.95696259,0.130728033,979.131997,3008656476 +2,5625,854,128,3.81139755,0.131055008,976.689117,3008656476 +2,5626,855,128,2.98894382,0.131618552,972.50728,3008656476 +2,5627,856,128,3.62960482,0.143317226,893.123622,3008656476 +2,5628,857,128,3.07741046,0.142618567,897.498851,3008656476 +2,5629,858,128,3.23724365,0.128850335,993.400599,3008656476 +2,5630,859,128,2.97656012,0.128436378,996.60238,3008656476 +2,5631,860,128,3.27457166,0.127692659,1002.40688,3008656476 +2,5632,861,128,3.37896633,0.128881611,993.159528,3008656476 +2,5633,862,128,2.8459568,0.127514603,1003.8066,3008656476 +2,5634,863,128,2.47625875,0.12849358,996.158719,3008656476 +2,5635,864,128,2.99861503,0.144598237,885.211346,3008656476 +2,5636,865,128,2.8110528,0.142126236,900.607823,3008656476 +2,5637,866,128,2.9784112,0.128996096,992.278092,3008656476 +2,5638,867,128,2.92741656,0.129232558,990.462481,3008656476 +2,5639,868,128,3.14639449,0.128615568,995.213892,3008656476 +2,5640,869,128,3.07205343,0.129508657,988.350918,3008656476 +2,5641,870,128,3.42040062,0.129965962,984.873255,3008656476 +2,5642,871,128,2.68555355,0.12887664,993.197836,3008656476 +2,5643,872,128,2.89784193,0.13877512,922.355535,3008656476 +2,5644,873,128,2.52065253,0.143809789,890.064584,3008656476 +2,5645,874,128,3.06671262,0.130700472,979.338468,3008656476 +2,5646,875,128,2.55318832,0.130113105,983.759476,3008656476 +2,5647,876,128,3.15265799,0.129290458,990.018923,3008656476 +2,5648,877,128,2.35593772,0.129746298,986.540672,3008656476 +2,5649,878,128,2.65835142,0.128944633,992.674119,3008656476 +2,5650,879,128,2.9536047,0.129373342,989.38466,3008656476 +2,5651,880,128,3.32378197,0.134664291,950.511818,3008656476 +2,5652,881,128,3.79450393,0.14365499,891.023695,3008656476 +2,5653,882,128,4.33866119,0.129109408,991.407226,3008656476 +2,5654,883,128,3.57711101,0.128775909,993.974735,3008656476 +2,5655,884,128,2.49663067,0.129483543,988.542613,3008656476 +2,5656,885,128,3.53298855,0.128476456,996.291492,3008656476 +2,5657,886,128,3.11762452,0.128914008,992.90994,3008656476 +2,5658,887,128,3.50839806,0.128331796,997.414546,3008656476 +2,5659,888,128,2.67399478,0.135439552,945.071053,3008656476 +2,5660,889,128,3.27087927,0.143395791,892.634289,3008656476 +2,5661,890,128,2.46410632,0.128905385,992.97636,3008656476 +2,5662,891,128,2.58973145,0.129000414,992.244878,3008656476 +2,5663,892,128,3.23491073,0.129775858,986.31596,3008656476 +2,5664,893,128,3.34063649,0.129514647,988.305207,3008656476 +2,5665,894,128,3.52961946,0.130480745,980.987655,3008656476 +2,5666,895,128,3.26880026,0.129567282,987.903721,3008656476 +2,5667,896,128,2.32894659,0.143365015,892.82591,3008656476 +2,5668,897,128,2.94747543,0.146179256,875.637238,3008656476 +2,5669,898,128,2.38078952,0.139685673,916.343081,3008656476 +2,5670,899,128,3.06508231,0.139022922,920.711478,3008656476 +2,5671,900,128,2.62238979,0.131431902,973.888364,3008656476 +2,5672,901,128,2.50412941,0.132748146,964.231922,3008656476 +2,5673,902,128,2.53011489,0.131684774,972.018223,3008656476 +2,5674,903,128,3.0101397,0.147732392,866.431514,3008656476 +2,5675,904,128,2.31519818,0.131431239,973.893277,3008656476 +2,5676,905,128,2.72041655,0.145471967,879.894612,3008656476 +2,5677,906,128,3.50860763,0.131709876,971.83297,3008656476 +2,5678,907,128,3.32583952,0.130322573,982.178275,3008656476 +2,5679,908,128,3.23267746,0.129827343,985.924822,3008656476 +2,5680,909,128,2.81618524,0.130092698,983.913794,3008656476 +2,5681,910,128,3.0826242,0.129321745,989.779406,3008656476 +2,5682,911,128,2.87118554,0.146390337,874.374652,3008656476 +2,5683,912,128,3.58965039,0.128444271,996.541138,3008656476 +2,5684,913,128,2.78604531,0.141578289,904.093424,3008656476 +2,5685,914,128,3.63724446,0.127569658,1003.37339,3008656476 +2,5686,915,128,3.25881052,0.1283648,997.158099,3008656476 +2,5687,916,128,2.8230195,0.12857266,995.54602,3008656476 +2,5688,917,128,2.46501231,0.128721905,994.391747,3008656476 +2,5689,918,128,2.8587656,0.128803499,993.761823,3008656476 +2,5690,919,128,2.63242841,0.148647606,861.096949,3008656476 +2,5691,920,128,2.88671875,0.128683409,994.689222,3008656476 +2,5692,921,128,2.7812736,0.142365859,899.091966,3008656476 +2,5693,922,128,3.12485361,0.129502057,988.401288,3008656476 +2,5694,923,128,3.61401033,0.129745072,986.549994,3008656476 +2,5695,924,128,2.60793591,0.128474427,996.307226,3008656476 +2,5696,925,128,3.48240876,0.129409122,989.111108,3008656476 +2,5697,926,128,2.75878477,0.128409465,996.811255,3008656476 +2,5698,927,128,2.57448506,0.141291993,905.925363,3008656476 +2,5699,928,128,3.16062999,0.12914692,991.119262,3008656476 +2,5700,929,128,2.96610928,0.143295671,893.257969,3008656476 +2,5701,930,128,2.39783049,0.128959324,992.561034,3008656476 +2,5702,931,128,2.78115344,0.128906776,992.965645,3008656476 +2,5703,932,128,2.76569843,0.1291605,991.015055,3008656476 +2,5704,933,128,2.70624161,0.129830368,985.90185,3008656476 +2,5705,934,128,2.82428241,0.128867907,993.265142,3008656476 +2,5706,935,128,2.90539479,0.142241671,899.876943,3008656476 +2,5707,936,128,2.62752199,0.129684229,987.012846,3008656476 +2,5708,937,128,2.88841319,0.145408237,880.280255,3008656476 +2,5709,938,128,3.21219802,0.131129806,976.132002,3008656476 +2,5710,939,128,3.23969293,0.132104063,968.933105,3008656476 +2,5711,940,128,2.96818614,0.13163438,972.390344,3008656476 +2,5712,941,128,2.58425426,0.138953553,921.17112,3008656476 +2,5713,942,128,2.74418688,0.138710493,922.785272,3008656476 +2,5714,943,128,2.69362235,0.145200311,881.540812,3008656476 +2,5715,944,128,3.80876875,0.144195629,887.682941,3008656476 +2,5716,945,128,3.55514288,0.133751508,956.998556,3008656476 +2,5717,946,128,2.79699492,0.130654774,979.681003,3008656476 +2,5718,947,128,3.5031569,0.13141017,974.049421,3008656476 +2,5719,948,128,3.86253262,0.130915599,977.72917,3008656476 +2,5720,949,128,3.8860836,0.130872263,978.052928,3008656476 +2,5721,950,128,3.07481694,0.130831726,978.355968,3008656476 +2,5722,951,128,2.64378428,0.141675373,903.473887,3008656476 +2,5723,952,128,2.4722805,0.143356859,892.876706,3008656476 +2,5724,953,128,3.22031832,0.131156615,975.932476,3008656476 +2,5725,954,128,3.17314029,0.130451401,981.20832,3008656476 +2,5726,955,128,2.41555142,0.129768117,986.374797,3008656476 +2,5727,956,128,3.3864975,0.129472772,988.624852,3008656476 +2,5728,957,128,3.17240238,0.129156254,991.047634,3008656476 +2,5729,958,128,2.94498444,0.128507606,996.049993,3008656476 +2,5730,959,128,3.05461168,0.133839967,956.366046,3008656476 +2,5731,960,128,3.09844637,0.145522803,879.587236,3008656476 +2,5732,961,128,2.9539175,0.130657037,979.664034,3008656476 +2,5733,962,128,3.04484439,0.129850118,985.751896,3008656476 +2,5734,963,128,2.7187047,0.128703881,994.531004,3008656476 +2,5735,964,128,2.47777128,0.129287967,990.037998,3008656476 +2,5736,965,128,2.7473762,0.128475315,996.30034,3008656476 +2,5737,966,128,3.0468688,0.128755149,994.135,3008656476 +2,5738,967,128,3.75935268,0.133133219,961.442989,3008656476 +2,5739,968,128,3.08808422,0.144752637,884.267138,3008656476 +2,5740,969,128,2.82604313,0.131158065,975.921687,3008656476 +2,5741,970,128,2.58734632,0.129566688,987.90825,3008656476 +2,5742,971,128,3.02196693,0.128544872,995.761231,3008656476 +2,5743,972,128,2.46319914,0.129095626,991.513066,3008656476 +2,5744,973,128,2.62389946,0.129193514,990.761812,3008656476 +2,5745,974,128,3.08959675,0.128378214,997.053908,3008656476 +2,5746,975,128,3.18811011,0.132877605,963.292498,3008656476 +2,5747,976,128,3.23581409,0.145118694,882.036604,3008656476 +2,5748,977,128,3.09422612,0.129965419,984.87737,3008656476 +2,5749,978,128,3.22285056,0.128866266,993.277791,3008656476 +2,5750,979,128,3.2506566,0.128914765,992.90411,3008656476 +2,5751,980,128,2.81096888,0.129526352,988.215896,3008656476 +2,5752,981,128,3.07951903,0.128351163,997.264045,3008656476 +2,5753,982,128,2.72044611,0.129251624,990.316377,3008656476 +2,5754,983,128,2.70296931,0.13446882,951.893532,3008656476 +2,5755,984,128,2.88894725,0.142214208,900.050718,3008656476 +2,5756,985,128,2.8659606,0.129655405,987.232272,3008656476 +2,5757,986,128,2.68552828,0.129002931,992.225518,3008656476 +2,5758,987,128,2.5673821,0.129759607,986.439486,3008656476 +2,5759,988,128,2.92542529,0.128982135,992.385496,3008656476 +2,5760,989,128,3.21594453,0.128116901,999.087544,3008656476 +2,5761,990,128,2.44391489,0.128984571,992.366754,3008656476 +2,5762,991,128,2.54802752,0.140706776,909.693219,3008656476 +2,5763,992,128,2.93353653,0.142834043,896.144906,3008656476 +2,5764,993,128,2.03822327,0.128057669,999.549664,3008656476 +2,5765,994,128,2.35694456,0.127737171,1002.05758,3008656476 +2,5766,995,128,2.04459405,0.128599215,995.340446,3008656476 +2,5767,996,128,2.97774053,0.128298536,997.673115,3008656476 +2,5768,997,128,2.80910492,0.127118184,1006.93698,3008656476 +2,5769,998,128,2.57712793,0.128152207,998.812295,3008656476 +2,5770,999,128,2.78973579,0.141650016,903.63562,3008656476 +2,5771,1000,128,3.2554028,0.142302939,899.489504,3008656476 +2,5772,1001,128,2.67149019,0.12848805,996.201592,3008656476 +2,5773,1002,128,2.68525219,0.128167651,998.69194,3008656476 +2,5774,1003,128,2.7169075,0.128495943,996.1404,3008656476 +2,5775,1004,128,3.11012721,0.129065145,991.74723,3008656476 +2,5776,1005,128,2.78837156,0.129384433,989.299849,3008656476 +2,5777,1006,128,3.07276106,0.128706889,994.507761,3008656476 +2,5778,1007,128,3.08971572,0.140059746,913.895703,3008656476 +2,5779,1008,128,2.69156241,0.142225305,899.980492,3008656476 +2,5780,1009,128,2.59751582,0.128391904,996.947596,3008656476 +2,5781,1010,128,2.93638849,0.128868092,993.263717,3008656476 +2,5782,1011,128,2.2953043,0.128186355,998.546218,3008656476 +2,5783,1012,128,2.90320516,0.129107953,991.418399,3008656476 +2,5784,1013,128,2.51738429,0.128516276,995.982797,3008656476 +2,5785,1014,128,2.89803076,0.128686172,994.667865,3008656476 +2,5786,1015,128,1.85461354,0.139292549,918.929267,3008656476 +2,5787,1016,128,2.43197942,0.142420563,898.746623,3008656476 +2,5788,1017,128,2.47196269,0.128316508,997.533381,3008656476 +2,5789,1018,128,2.78901601,0.129329347,989.721227,3008656476 +2,5790,1019,128,3.32937407,0.127936807,1000.49394,3008656476 +2,5791,1020,128,3.37682056,0.127964629,1000.27641,3008656476 +2,5792,1021,128,3.02496743,0.128095707,999.252848,3008656476 +2,5793,1022,128,2.93621016,0.128969122,992.485628,3008656476 +2,5794,1023,128,3.82440925,0.140411814,911.604204,3008656476 +2,5795,1024,128,3.38220668,0.144362719,886.655508,3008656476 +2,5796,1025,128,3.2090838,0.129378457,989.345545,3008656476 +2,5797,1026,128,2.78861547,0.129346448,989.590375,3008656476 +2,5798,1027,128,2.63356662,0.129263558,990.224948,3008656476 +2,5799,1028,128,2.5028038,0.129207575,990.653992,3008656476 +2,5800,1029,128,2.90152192,0.129643035,987.326469,3008656476 +2,5801,1030,128,2.2902,0.130663028,979.619116,3008656476 +2,5802,1031,128,3.00593495,0.142267042,899.716464,3008656476 +2,5803,1032,128,2.49805641,0.145962153,876.939654,3008656476 +2,5804,1033,128,2.77216387,0.13277318,964.050119,3008656476 +2,5805,1034,128,3.13654613,0.138908702,921.468548,3008656476 +2,5806,1035,128,3.20696473,0.142654186,897.274756,3008656476 +2,5807,1036,128,3.06636548,0.142793505,896.399315,3008656476 +2,5808,1037,128,2.89392877,0.138330712,925.318739,3008656476 +2,5809,1038,128,2.76063418,0.143546851,891.694935,3008656476 +2,5810,1039,128,2.61946464,0.143061477,894.720247,3008656476 +2,5811,1040,128,3.1001811,0.141303845,905.849377,3008656476 +2,5812,1041,128,3.08472085,0.131740083,971.610136,3008656476 +2,5813,1042,128,2.8650372,0.133688603,957.448856,3008656476 +2,5814,1043,128,1.99116051,0.131195285,975.644818,3008656476 +2,5815,1044,128,2.3986938,0.131148612,975.99203,3008656476 +2,5816,1045,128,2.70124412,0.130829337,978.373834,3008656476 +2,5817,1046,128,2.65941429,0.145280719,881.052908,3008656476 +2,5818,1047,128,2.53548789,0.142982659,895.213454,3008656476 +2,5819,1048,128,3.29679656,0.127079731,1007.24167,3008656476 +2,5820,1049,128,3.24212575,0.129147825,991.112316,3008656476 +2,5821,1050,128,3.39655614,0.129237238,990.426614,3008656476 +2,5822,1051,128,2.94383883,0.128659225,994.876193,3008656476 +2,5823,1052,128,2.68562222,0.13066511,979.603507,3008656476 +2,5824,1053,128,2.59114337,0.128383097,997.015986,3008656476 +2,5825,1054,128,3.32361364,0.142130849,900.578593,3008656476 +2,5826,1055,128,2.77597022,0.142636548,897.385711,3008656476 +2,5827,1056,128,3.37494731,0.125259331,1021.87996,3008656476 +2,5828,1057,128,3.34190845,0.128487919,996.202608,3008656476 +2,5829,1058,128,3.03373575,0.128539429,995.803397,3008656476 +2,5830,1059,128,2.39138556,0.12798487,1000.11822,3008656476 +2,5831,1060,128,3.4252162,0.128541255,995.789251,3008656476 +2,5832,1061,128,3.73222733,0.127428802,1004.48249,3008656476 +2,5833,1062,128,3.32903862,0.141691799,903.36915,3008656476 +2,5834,1063,128,3.1373477,0.127652135,1002.7251,3008656476 +2,5835,1064,128,2.66558099,0.134147662,954.172425,3008656476 +2,5836,1065,128,2.86136603,0.129178404,990.877701,3008656476 +2,5837,1066,128,2.9028492,0.129616689,987.527154,3008656476 +2,5838,1067,128,2.99962258,0.129410468,989.10082,3008656476 +2,5839,1068,128,3.15939665,0.128801151,993.779939,3008656476 +2,5840,1069,128,3.5715158,0.127910939,1000.69627,3008656476 +2,5841,1070,128,3.32561803,0.14155358,904.251238,3008656476 +2,5842,1071,128,3.57183051,0.12724381,1005.94284,3008656476 +2,5843,1072,128,2.58300567,0.138647234,923.206301,3008656476 +2,5844,1073,128,3.32718706,0.127678966,1002.51438,3008656476 +2,5845,1074,128,3.05289268,0.127318159,1005.35541,3008656476 +2,5846,1075,128,3.17885828,0.127359827,1005.02649,3008656476 +2,5847,1076,128,3.57497811,0.129096401,991.507114,3008656476 +2,5848,1077,128,3.21304297,0.127367728,1004.96415,3008656476 +2,5849,1078,128,3.36740708,0.143994916,888.920273,3008656476 +2,5850,1079,128,3.88382053,0.126941675,1008.3371,3008656476 +2,5851,1080,128,2.77450895,0.142618028,897.502243,3008656476 +2,5852,1081,128,1.66129327,0.128807114,993.733933,3008656476 +2,5853,1082,128,2.66609573,0.128044957,999.648897,3008656476 +2,5854,1083,128,3.11660743,0.12863211,995.085908,3008656476 +2,5855,1084,128,3.18092656,0.127899985,1000.78198,3008656476 +2,5856,1085,128,3.09809899,0.128364969,997.156787,3008656476 +2,5857,1086,128,3.14275408,0.142919251,895.610627,3008656476 +2,5858,1087,128,2.64932442,0.128133268,998.959927,3008656476 +2,5859,1088,128,2.84319162,0.143186276,893.940422,3008656476 +2,5860,1089,128,2.81107783,0.129376037,989.36405,3008656476 +2,5861,1090,128,2.92806673,0.128689478,994.642313,3008656476 +2,5862,1091,128,3.20223522,0.12923614,990.435028,3008656476 +2,5863,1092,128,2.61206198,0.128401109,996.876125,3008656476 +2,5864,1093,128,3.45632219,0.12874504,994.213059,3008656476 +2,5865,1094,128,3.46137428,0.146594606,873.156274,3008656476 +2,5866,1095,128,2.90703583,0.128540222,995.797253,3008656476 +2,5867,1096,128,2.73686576,0.139695951,916.275662,3008656476 +2,5868,1097,128,2.93592596,0.128371563,997.105566,3008656476 +2,5869,1098,128,3.0690589,0.128361408,997.18445,3008656476 +2,5870,1099,128,3.53523231,0.128743636,994.223901,3008656476 +2,5871,1100,128,3.19842029,0.129838739,985.838287,3008656476 +2,5872,1101,128,3.06725597,0.195268389,655.508045,3008656476 +2,5873,1102,128,2.94475603,0.12358787,1035.70035,3008656476 +2,5874,1103,128,3.13245559,0.140544023,910.746663,3008656476 +2,5875,1104,128,2.77486396,0.128291583,997.727185,3008656476 +2,5876,1105,128,3.48822141,0.128396624,996.910947,3008656476 +2,5877,1106,128,2.68822885,0.128236772,998.153634,3008656476 +2,5878,1107,128,2.75848293,0.128922495,992.844577,3008656476 +2,5879,1108,128,2.63993907,0.128729595,994.332344,3008656476 +2,5880,1109,128,2.26467037,0.12972275,986.719754,3008656476 +2,5881,1110,128,2.69864178,0.138681509,922.978131,3008656476 +2,5882,1111,128,2.84733701,0.142323136,899.361858,3008656476 +2,5883,1112,128,2.3843801,0.130840863,978.287647,3008656476 +2,5884,1113,128,2.45142317,0.131346544,974.521263,3008656476 +2,5885,1114,128,3.29172206,0.129739904,986.589292,3008656476 +2,5886,1115,128,2.10622454,0.131272349,975.072062,3008656476 +2,5887,1116,128,2.48165822,0.130636485,979.818157,3008656476 +2,5888,1117,128,2.1868701,0.130237485,982.819962,3008656476 +2,5889,1118,128,2.84765387,0.13577452,942.739477,3008656476 +2,5890,1119,128,2.64060211,0.14623166,875.323442,3008656476 +2,5891,1120,128,2.01891232,0.13239173,966.827762,3008656476 +2,5892,1121,128,2.7179985,0.132634302,965.059551,3008656476 +2,5893,1122,128,2.53093863,0.131788409,971.253853,3008656476 +2,5894,1123,128,2.06198788,0.138960696,921.123769,3008656476 +2,5895,1124,128,1.72667325,0.138917404,921.410826,3008656476 +2,5896,1125,128,3.00064659,0.154279345,829.66388,3008656476 +2,5897,1126,128,2.31336045,0.142768282,896.557682,3008656476 +2,5898,1127,128,3.63236117,0.148023716,864.726298,3008656476 +2,5899,1128,128,3.23252535,0.131889705,970.507895,3008656476 +2,5900,1129,128,1.96672761,0.132624988,965.127326,3008656476 +2,5901,1130,128,2.82421589,0.131554621,972.979885,3008656476 +2,5902,1131,128,2.58271527,0.130875219,978.030837,3008656476 +2,5903,1132,128,2.55640864,0.133172973,961.155985,3008656476 +2,5904,1133,128,2.42460275,0.146185553,875.59952,3008656476 +2,5905,1134,128,3.40568519,0.132409617,966.697155,3008656476 +2,5906,1135,128,3.14351106,0.140676584,909.888457,3008656476 +2,5907,1136,128,3.00636554,0.130953312,977.447596,3008656476 +2,5908,1137,128,3.0685575,0.131984102,969.813773,3008656476 +2,5909,1138,128,2.88539577,0.130293709,982.395858,3008656476 +2,5910,1139,128,2.53351808,0.130850817,978.213227,3008656476 +2,5911,1140,128,2.76357532,0.132615588,965.195736,3008656476 +2,5912,1141,128,2.89431334,0.145674836,878.669258,3008656476 +2,5913,1142,128,2.85106945,0.143031083,894.910374,3008656476 +2,5914,1143,128,2.56559229,0.129375714,989.366521,3008656476 +2,5915,1144,128,2.59184957,0.12859585,995.366491,3008656476 +2,5916,1145,128,3.28557658,0.128365348,997.153842,3008656476 +2,5917,1146,128,3.46009064,0.128886379,993.122788,3008656476 +2,5918,1147,128,3.15756345,0.127855293,1001.1318,3008656476 +2,5919,1148,128,3.24113989,0.128199543,998.443497,3008656476 +2,5920,1149,128,2.97258019,0.144635341,884.984258,3008656476 +2,5921,1150,128,3.2616148,0.13583124,942.345811,3008656476 +2,5922,1151,128,3.07018566,0.124303789,1029.7353,3008656476 +2,5923,1152,128,3.38346386,0.129347588,989.581653,3008656476 +2,5924,1153,128,3.1908989,0.128552278,995.703865,3008656476 +2,5925,1154,128,2.98223281,0.130277416,982.51872,3008656476 +2,5926,1155,128,3.18635058,0.128631268,995.092422,3008656476 +2,5927,1156,128,3.04197359,0.12815611,998.781876,3008656476 +2,5928,1157,128,3.55687928,0.142131303,900.575716,3008656476 +2,5929,1158,128,2.91774035,0.127067092,1007.34185,3008656476 +2,5930,1159,128,3.20962191,0.136511601,937.649248,3008656476 +2,5931,1160,128,3.32969975,0.128160857,998.744882,3008656476 +2,5932,1161,128,3.317662,0.128889729,993.096975,3008656476 +2,5933,1162,128,2.56653476,0.127672166,1002.56778,3008656476 +2,5934,1163,128,2.82536483,0.128360217,997.193702,3008656476 +2,5935,1164,128,2.960989,0.127619735,1002.97967,3008656476 +2,5936,1165,128,3.55315852,0.141909102,901.985836,3008656476 +2,5937,1166,128,3.13480115,0.127954476,1000.35578,3008656476 +2,5938,1167,128,3.47176719,0.1408625,908.68755,3008656476 +2,5939,1168,128,2.8506391,0.128138308,998.920635,3008656476 +2,5940,1169,128,3.58696055,0.128217675,998.302301,3008656476 +2,5941,1170,128,2.9796319,0.128819804,993.636041,3008656476 +2,5942,1171,128,3.37459779,0.129089851,991.557423,3008656476 +2,5943,1172,128,2.97752738,0.128773942,993.989918,3008656476 +2,5944,1173,128,3.11636758,0.142610171,897.55169,3008656476 +2,5945,1174,128,3.54451275,0.128488352,996.199251,3008656476 +2,5946,1175,128,3.49092841,0.140487292,911.114437,3008656476 +2,5947,1176,128,3.27626514,0.128062035,999.515586,3008656476 +2,5948,1177,128,3.00141954,0.129219981,990.558883,3008656476 +2,5949,1178,128,2.89290524,0.12848898,996.194382,3008656476 +2,5950,1179,128,3.18851137,0.128823175,993.610039,3008656476 +2,5951,1180,128,3.64930224,0.128693975,994.607556,3008656476 +2,5952,1181,128,3.12040114,0.145531181,879.536599,3008656476 +2,5953,1182,128,3.43116713,0.128757655,994.115651,3008656476 +2,5954,1183,128,2.50204253,0.139310591,918.810258,3008656476 +2,5955,1184,128,2.50654244,0.1288246,993.599049,3008656476 +2,5956,1185,128,3.62571192,0.128185921,998.549599,3008656476 +2,5957,1186,128,3.4055295,0.128503554,996.0814,3008656476 +2,5958,1187,128,3.38009453,0.127575539,1003.32713,3008656476 +2,5959,1188,128,3.33294702,0.128634019,995.071141,3008656476 +2,5960,1189,128,3.01088405,0.141315388,905.775385,3008656476 +2,5961,1190,128,2.85125184,0.128687039,994.661164,3008656476 +2,5962,1191,128,2.30747843,0.144410094,886.364633,3008656476 +2,5963,1192,128,2.9416573,0.129667438,987.140657,3008656476 +2,5964,1193,128,2.70238042,0.130070822,984.079273,3008656476 +2,5965,1194,128,2.20355558,0.130173733,983.301293,3008656476 +2,5966,1195,128,2.31937718,0.13071575,979.224003,3008656476 +2,5967,1196,128,2.15909576,0.131082328,976.485556,3008656476 +2,5968,1197,128,2.83167744,0.145100942,882.144514,3008656476 +2,5969,1198,128,2.51602054,0.13200023,969.69528,3008656476 +2,5970,1199,128,3.42223787,0.135717496,943.135585,3008656476 +2,5971,1200,128,3.05178785,0.133754192,956.979352,3008656476 +2,5972,1201,128,3.56204462,0.138994881,920.897224,3008656476 +2,5973,1202,128,3.01058435,0.142332521,899.302556,3008656476 +2,5974,1203,128,3.03929329,0.142624776,897.459779,3008656476 +2,5975,1204,128,3.02028465,0.147244324,869.303458,3008656476 +2,5976,1205,128,3.17907858,0.12933719,989.66121,3008656476 +2,5977,1206,128,3.14283609,0.147041129,870.504742,3008656476 +2,5978,1207,128,3.02071333,0.131834225,970.916316,3008656476 +2,5979,1208,128,3.0680573,0.131578858,972.800661,3008656476 +2,5980,1209,128,2.86498523,0.131094172,976.397334,3008656476 +2,5981,1210,128,2.92415714,0.130261852,982.636114,3008656476 +2,5982,1211,128,3.36493731,0.130572376,980.299233,3008656476 +2,5983,1212,128,2.97844601,0.147213628,869.484719,3008656476 +2,5984,1213,128,2.8710351,0.129535549,988.145733,3008656476 +2,5985,1214,128,3.47227526,0.143609789,891.304144,3008656476 +2,5986,1215,128,3.47126746,0.128323802,997.47668,3008656476 +2,5987,1216,128,2.93495822,0.127676079,1002.53705,3008656476 +2,5988,1217,128,3.18519759,0.126977739,1008.05071,3008656476 +2,5989,1218,128,2.9604075,0.126821368,1009.29364,3008656476 +2,5990,1219,128,3.53353024,0.126889168,1008.75435,3008656476 +2,5991,1220,128,2.33307886,0.141636011,903.724971,3008656476 +2,5992,1221,128,2.84855604,0.127703124,1002.32474,3008656476 +2,5993,1222,128,2.88708258,0.140638391,910.135555,3008656476 +2,5994,1223,128,2.80627251,0.127659355,1002.66839,3008656476 +2,5995,1224,128,3.46027231,0.128065103,999.491641,3008656476 +2,5996,1225,128,3.61449671,0.128087187,999.319315,3008656476 +2,5997,1226,128,3.13006997,0.128473255,996.316315,3008656476 +2,5998,1227,128,3.22983837,0.12783714,1001.27396,3008656476 +2,5999,1228,128,3.39294291,0.140940773,908.1829,3008656476 +2,6000,1229,128,3.10265326,0.129403548,989.153713,3008656476 +2,6001,1230,128,3.02807331,0.143918998,889.389183,3008656476 +2,6002,1231,128,2.4487896,0.127371883,1004.93136,3008656476 +2,6003,1232,128,3.42655253,0.128619796,995.181177,3008656476 +2,6004,1233,128,3.22512317,0.128221991,998.268698,3008656476 +2,6005,1234,128,2.7081511,0.127173419,1006.49964,3008656476 +2,6006,1235,128,3.07450914,0.128628725,995.112095,3008656476 +2,6007,1236,128,3.09084916,0.140050423,913.95654,3008656476 +2,6008,1237,128,3.05346918,0.129456952,988.745664,3008656476 +2,6009,1238,128,2.88456702,0.140139504,913.375575,3008656476 +2,6010,1239,128,3.26555562,0.127597656,1003.15322,3008656476 +2,6011,1240,128,3.29851651,0.127032962,1007.6125,3008656476 +2,6012,1241,128,1.98872149,0.12832797,997.444283,3008656476 +2,6013,1242,128,2.88174272,0.128051602,999.597022,3008656476 +2,6014,1243,128,2.0463419,0.128480867,996.257287,3008656476 +2,6015,1244,128,3.02958012,0.138514475,924.091146,3008656476 +2,6016,1245,128,2.40329313,0.125701584,1018.2847,3008656476 +2,6017,1246,128,2.62211871,0.144546795,885.526379,3008656476 +2,6018,1247,128,2.18398571,0.128643299,994.999359,3008656476 +2,6019,1248,128,1.45393062,0.129333159,989.692056,3008656476 +2,6020,1249,128,1.71849918,0.130499037,980.85015,3008656476 +2,6021,1250,128,2.10164714,0.130135034,983.593703,3008656476 +2,6022,1251,128,1.7548666,0.130824107,978.412946,3008656476 +2,6023,1252,128,2.2943449,0.144087892,888.346677,3008656476 +2,6024,1253,128,2.35695076,0.13156198,972.925461,3008656476 +2,6025,1254,128,2.1290257,0.146145401,875.840082,3008656476 +2,6026,1255,128,1.75528407,0.132731338,964.354025,3008656476 +2,6027,1256,128,2.1261487,0.136320242,938.965469,3008656476 +2,6028,1257,128,2.44914937,0.138128842,926.671057,3008656476 +2,6029,1258,128,1.7848711,0.138444153,924.560534,3008656476 +2,6030,1259,128,3.03867722,0.132983688,962.524065,3008656476 +2,6031,1260,128,3.50303364,0.146467789,873.912284,3008656476 +2,6032,1261,128,3.27454543,0.134068184,954.738076,3008656476 +2,6033,1262,128,3.63283324,0.145793482,877.954201,3008656476 +2,6034,1263,128,3.51857448,0.132018154,969.563625,3008656476 +2,6035,1264,128,3.10906386,0.131207782,975.551892,3008656476 +2,6036,1265,128,3.12200403,0.13084988,978.220232,3008656476 +2,6037,1266,128,2.7119956,0.131847979,970.815032,3008656476 +2,6038,1267,128,3.118469,0.130661756,979.628653,3008656476 +2,6039,1268,128,3.04075956,0.144288868,887.109323,3008656476 +2,6040,1269,128,3.09760308,0.129059137,991.793398,3008656476 +2,6041,1270,128,2.18935966,0.137216106,932.8351,3008656476 +2,6042,1271,128,2.60704565,0.130754048,978.937187,3008656476 +2,6043,1272,128,2.47476315,0.130650064,979.716321,3008656476 +2,6044,1273,128,3.60641384,0.131489664,973.460545,3008656476 +2,6045,1274,128,2.45122051,0.131417584,973.994469,3008656476 +2,6046,1275,128,3.35936785,0.129574568,987.848171,3008656476 +2,6047,1276,128,3.32077885,0.140994299,907.838125,3008656476 +2,6048,1277,128,2.43793964,0.128703944,994.530517,3008656476 +2,6049,1278,128,2.90006447,0.134565989,951.206177,3008656476 +2,6050,1279,128,3.22491407,0.131294719,974.905929,3008656476 +2,6051,1280,128,2.79575658,0.130527318,980.637632,3008656476 +2,6052,1281,128,3.18883324,0.129497223,988.438185,3008656476 +2,6053,1282,128,3.07650113,0.129516817,988.288648,3008656476 +2,6054,1283,128,2.30448222,0.129743044,986.565415,3008656476 +2,6055,1284,128,2.80407572,0.14313583,894.255477,3008656476 +2,6056,1285,128,3.27420688,0.129528125,988.202369,3008656476 +2,6057,1286,128,2.84413671,0.134273225,953.280149,3008656476 +2,6058,1287,128,3.07266831,0.12924094,990.398244,3008656476 +2,6059,1288,128,2.43880415,0.129200838,990.705649,3008656476 +2,6060,1289,128,2.79017735,0.128384435,997.005595,3008656476 +2,6061,1290,128,2.93314695,0.129308503,989.880766,3008656476 +2,6062,1291,128,2.89388728,0.12903943,991.944865,3008656476 +2,6063,1292,128,3.17737722,0.143336677,893.002424,3008656476 +2,6064,1293,128,2.54506421,0.127644309,1002.78658,3008656476 +2,6065,1294,128,2.52592063,0.134816101,949.441491,3008656476 +2,6066,1295,128,2.53774095,0.129632414,987.407362,3008656476 +2,6067,1296,128,2.66782475,0.128653296,994.922042,3008656476 +2,6068,1297,128,3.08170438,0.128187882,998.534323,3008656476 +2,6069,1298,128,2.88702869,0.128879678,993.174424,3008656476 +2,6070,1299,128,3.17888999,0.127807875,1001.50323,3008656476 +2,6071,1300,128,2.86769915,0.143025758,894.943693,3008656476 +2,6072,1301,128,2.81372023,0.128203224,998.414829,3008656476 +2,6073,1302,128,2.6034646,0.138762577,922.438908,3008656476 +2,6074,1303,128,2.81851888,0.12837963,997.042911,3008656476 +2,6075,1304,128,2.80362058,0.128016297,999.872696,3008656476 +2,6076,1305,128,3.10200977,0.12809953,999.223026,3008656476 +2,6077,1306,128,2.98312306,0.128082499,999.355892,3008656476 +2,6078,1307,128,3.12055731,0.128375189,997.077403,3008656476 +2,6079,1308,128,2.25656581,0.141759434,902.938142,3008656476 +2,6080,1309,128,3.1227529,0.127637604,1002.83926,3008656476 +2,6081,1310,128,3.71647644,0.142943016,895.461727,3008656476 +2,6082,1311,128,2.79587626,0.127683734,1002.47695,3008656476 +2,6083,1312,128,2.60009217,0.128358117,997.210017,3008656476 +2,6084,1313,128,3.08406925,0.128904856,992.980435,3008656476 +2,6085,1314,128,2.5703342,0.128223389,998.257814,3008656476 +2,6086,1315,128,2.58739305,0.128381219,997.03057,3008656476 +2,6087,1316,128,3.05794859,0.142889233,895.798776,3008656476 +2,6088,1317,128,2.86014795,0.128091326,999.287024,3008656476 +2,6089,1318,128,2.02824855,0.14451591,885.715628,3008656476 +2,6090,1319,128,2.91845298,0.128485846,996.218681,3008656476 +2,6091,1320,128,3.21074271,0.129167472,990.961563,3008656476 +2,6092,1321,128,2.98465729,0.129004501,992.213442,3008656476 +2,6093,1322,128,3.33803654,0.127836813,1001.27653,3008656476 +2,6094,1323,128,2.70510936,0.128343678,997.322205,3008656476 +2,6095,1324,128,1.91268051,0.145706497,878.478329,3008656476 +2,6096,1325,128,2.42039728,0.128609388,995.261714,3008656476 +2,6097,1326,128,3.40770507,0.142206609,900.098813,3008656476 +2,6098,1327,128,3.19059181,0.128665834,994.825091,3008656476 +2,6099,1328,128,3.17191553,0.129609354,987.583041,3008656476 +2,6100,1329,128,2.70558763,0.129196465,990.739182,3008656476 +2,6101,1330,128,2.93160152,0.129123189,991.301415,3008656476 +2,6102,1331,128,2.48601651,0.129747453,986.53189,3008656476 +2,6103,1332,128,3.03349829,0.144698759,884.596391,3008656476 +2,6104,1333,128,2.73731017,0.129574752,987.846768,3008656476 +2,6105,1334,128,3.27689505,0.140843246,908.811772,3008656476 +2,6106,1335,128,2.62719607,0.131736927,971.633413,3008656476 +2,6107,1336,128,3.28020072,0.132219532,968.086924,3008656476 +2,6108,1337,128,2.42150974,0.139404834,918.189107,3008656476 +2,6109,1338,128,2.63554478,0.131759941,971.463702,3008656476 +2,6110,1339,128,2.76198769,0.131922446,970.267031,3008656476 +2,6111,1340,128,2.51472187,0.145704614,878.489682,3008656476 +2,6112,1341,128,2.63666201,0.144296281,887.063749,3008656476 +2,6113,1342,128,2.8111546,0.131833877,970.918878,3008656476 +2,6114,1343,128,2.51150322,0.131332749,974.623626,3008656476 +2,6115,1344,128,3.07914138,0.13145242,973.736353,3008656476 +2,6116,1345,128,2.8182404,0.130795555,978.626529,3008656476 +2,6117,1346,128,3.04903102,0.131462399,973.662439,3008656476 +2,6118,1347,128,2.5872848,0.146161495,875.743642,3008656476 +2,6119,1348,128,2.13150692,0.124208294,1030.527,3008656476 +2,6120,1349,128,3.15361667,0.142544382,897.96594,3008656476 +2,6121,1350,128,2.99913025,0.129749142,986.519048,3008656476 +2,6122,1351,128,3.19162178,0.129897385,985.393201,3008656476 +2,6123,1352,128,2.54287696,0.129445342,988.834345,3008656476 +2,6124,1353,128,2.30501962,0.128468392,996.354029,3008656476 +2,6125,1354,128,3.01102519,0.128282112,997.800847,3008656476 +2,6126,1355,128,2.45825648,0.131270502,975.085781,3008656476 +2,6127,1356,128,2.53247881,0.130314028,982.242679,3008656476 +2,6128,1357,128,2.80173922,0.145400005,880.330094,3008656476 +2,6129,1358,128,3.154881,0.130265623,982.607668,3008656476 +2,6130,1359,128,2.53824759,0.130383235,981.721308,3008656476 +2,6131,1360,128,2.42510295,0.129586634,987.756191,3008656476 +2,6132,1361,128,3.21539855,0.128913795,992.911581,3008656476 +2,6133,1362,128,3.1772356,0.12802173,999.830263,3008656476 +2,6134,1363,128,2.60424376,0.128503003,996.085671,3008656476 +2,6135,1364,128,2.42512584,0.131414688,974.015933,3008656476 +2,6136,1365,128,2.76762342,0.145298193,880.94695,3008656476 +2,6137,1366,128,3.32059717,0.129544208,988.079683,3008656476 +2,6138,1367,128,3.29364753,0.128550487,995.717737,3008656476 +2,6139,1368,128,3.01960492,0.128906554,992.967355,3008656476 +2,6140,1369,128,2.78658581,0.128479603,996.267088,3008656476 +2,6141,1370,128,2.631881,0.12790411,1000.7497,3008656476 +2,6142,1371,128,3.18374038,0.127967435,1000.25448,3008656476 +2,6143,1372,128,2.76749206,0.132493689,966.083751,3008656476 +2,6144,1373,128,3.36695671,0.143906141,889.468643,3008656476 +2,6145,1374,128,3.53367233,0.127990351,1000.07539,3008656476 +2,6146,1375,128,3.48538685,0.127789606,1001.64641,3008656476 +2,6147,1376,128,3.57521462,0.127823139,1001.38364,3008656476 +2,6148,1377,128,3.05039811,0.127667729,1002.60262,3008656476 +2,6149,1378,128,2.6082902,0.126819618,1009.30757,3008656476 +2,6150,1379,128,2.79942203,0.127914736,1000.66657,3008656476 +2,6151,1380,128,3.15301609,0.142331353,899.309936,3008656476 +2,6152,1381,128,2.51667047,0.139249883,919.210826,3008656476 +2,6153,1382,128,2.91200089,0.129560463,987.955716,3008656476 +2,6154,1383,128,2.73703909,0.128964982,992.517488,3008656476 +2,6155,1384,128,2.21082878,0.129296462,989.972951,3008656476 +2,6156,1385,128,2.94131041,0.129031497,992.005851,3008656476 +2,6157,1386,128,1.97723877,0.12919018,990.78738,3008656476 +2,6158,1387,128,2.58607173,0.128348267,997.286547,3008656476 +2,6159,1388,128,3.12176085,0.142578731,897.749609,3008656476 +2,6160,1389,128,2.69316816,0.14131398,905.78441,3008656476 +2,6161,1390,128,2.31895328,0.128752258,994.157322,3008656476 +2,6162,1391,128,2.61182451,0.128310825,997.577562,3008656476 +2,6163,1392,128,2.60065436,0.129087907,991.572355,3008656476 +2,6164,1393,128,2.87033939,0.127876734,1000.96394,3008656476 +2,6165,1394,128,3.29199004,0.1286721,994.776645,3008656476 +2,6166,1395,128,2.79956913,0.129220393,990.555724,3008656476 +2,6167,1396,128,2.73886776,0.141304031,905.848185,3008656476 +2,6168,1397,128,3.40097618,0.142133435,900.562208,3008656476 +2,6169,1398,128,2.613482,0.12870409,994.529389,3008656476 +2,6170,1399,128,3.16273046,0.129018304,992.10729,3008656476 +2,6171,1400,128,3.42748928,0.129087096,991.578585,3008656476 +2,6172,1401,128,3.34917235,0.128904989,992.979411,3008656476 +2,6173,1402,128,2.85680437,0.129210472,990.631781,3008656476 +2,6174,1403,128,3.15019202,0.13026174,982.636958,3008656476 +2,6175,1404,128,2.3877213,0.144061367,888.510242,3008656476 +2,6176,1405,128,2.89560533,0.146705935,872.493672,3008656476 +2,6177,1406,128,3.46790075,0.135018776,948.016297,3008656476 +2,6178,1407,128,3.15084553,0.132600886,965.302751,3008656476 +2,6179,1408,128,3.37189746,0.131479641,973.534754,3008656476 +2,6180,1409,128,3.51932573,0.131679093,972.060158,3008656476 +2,6181,1410,128,3.11058164,0.131251679,975.22562,3008656476 +2,6182,1411,128,3.71647668,0.146934798,871.134692,3008656476 +2,6183,1412,128,3.22747755,0.130198917,983.111096,3008656476 +2,6184,1413,128,3.42185855,0.143554447,891.647752,3008656476 +2,6185,1414,128,3.33268428,0.127500793,1003.91532,3008656476 +2,6186,1415,128,3.37364841,0.127658437,1002.6756,3008656476 +2,6187,1416,128,3.16103053,0.1275441,1003.57445,3008656476 +2,6188,1417,128,3.43304849,0.127826846,1001.3546,3008656476 +2,6189,1418,128,3.42483521,0.127716182,1002.22226,3008656476 +2,6190,1419,128,3.51448965,0.137474425,931.082272,3008656476 +2,6191,1420,128,3.34504485,0.129002349,992.229994,3008656476 +2,6192,1421,128,3.14026713,0.14543198,880.136542,3008656476 +2,6193,1422,128,3.78867984,0.128034741,999.72866,3008656476 +2,6194,1423,128,3.1260283,0.12825438,998.016598,3008656476 +2,6195,1424,128,3.37605906,0.12941769,989.045624,3008656476 +2,6196,1425,128,4.10657978,0.128693813,994.608808,3008656476 +2,6197,1426,128,3.07691598,0.129181617,990.853056,3008656476 +2,6198,1427,128,3.35380459,0.141573398,904.124658,3008656476 +2,6199,1428,128,3.09784842,0.129480905,988.562754,3008656476 +2,6200,1429,128,3.93504167,0.143075503,894.632535,3008656476 +2,6201,1430,128,3.56955624,0.128914717,992.90448,3008656476 +2,6202,1431,128,3.52904868,0.128784352,993.909571,3008656476 +2,6203,1432,128,3.95234919,0.129157186,991.040483,3008656476 +2,6204,1433,128,2.79444504,0.129281418,990.08815,3008656476 +2,6205,1434,128,3.06038642,0.12796983,1000.23576,3008656476 +2,6206,1435,128,3.61217427,0.141667158,903.526278,3008656476 +2,6207,1436,128,2.49462318,0.129013729,992.142472,3008656476 +2,6208,1437,128,3.50716519,0.141365478,905.454442,3008656476 +2,6209,1438,128,3.26317286,0.128036956,999.711365,3008656476 +2,6210,1439,128,3.3670187,0.129816713,986.005554,3008656476 +2,6211,1440,128,3.5343852,0.129648062,987.288186,3008656476 +2,6212,1441,128,3.74502802,0.130097965,983.87396,3008656476 +2,6213,1442,128,3.53613234,0.131561742,972.927221,3008656476 +2,6214,1443,128,2.69656634,0.14204344,901.13278,3008656476 +2,6215,1444,128,3.64160824,0.131063668,976.624582,3008656476 +2,6216,1445,128,3.49572277,0.145645522,878.846107,3008656476 +2,6217,1446,128,3.74013448,0.133107314,961.630102,3008656476 +2,6218,1447,128,3.26755714,0.132107515,968.907787,3008656476 +2,6219,1448,128,2.86118317,0.132562178,965.584618,3008656476 +2,6220,1449,128,3.8283205,0.131691659,971.967405,3008656476 +2,6221,1450,128,2.80292606,0.131641644,972.336687,3008656476 +2,6222,1451,128,3.15840554,0.145986946,876.790723,3008656476 +2,6223,1452,128,3.122967,0.131950813,970.058441,3008656476 +2,6224,1453,128,3.25108719,0.146216945,875.411533,3008656476 +2,6225,1454,128,3.2087841,0.131232818,975.365781,3008656476 +2,6226,1455,128,2.29237914,0.131096716,976.378386,3008656476 +2,6227,1456,128,3.59371924,0.129885738,985.481562,3008656476 +2,6228,1457,128,3.37825227,0.128774125,993.988505,3008656476 +2,6229,1458,128,3.66216493,0.129780454,986.281031,3008656476 +2,6230,1459,128,3.57271242,0.142295896,899.534025,3008656476 +2,6231,1460,128,3.07687497,0.130595445,980.126068,3008656476 +2,6232,1461,128,2.19441509,0.142221822,900.002533,3008656476 +2,6233,1462,128,2.43576717,0.127885502,1000.89532,3008656476 +2,6234,1463,128,3.27333665,0.128467254,996.362855,3008656476 +2,6235,1464,128,2.33481002,0.128269997,997.895088,3008656476 +2,6236,1465,128,3.06504655,0.128559507,995.647875,3008656476 +2,6237,1466,128,3.89700079,0.12793006,1000.5467,3008656476 +2,6238,1467,128,3.30112839,0.143977863,889.025558,3008656476 +2,6239,1468,128,2.86737847,0.128513022,996.008015,3008656476 +2,6240,1469,128,3.82040858,0.142722953,896.84243,3008656476 +2,6241,1470,128,2.90134072,0.128047284,999.63073,3008656476 +2,6242,1471,128,3.89796567,0.129126421,991.276603,3008656476 +2,6243,1472,128,3.40802956,0.129112284,991.385142,3008656476 +2,6244,1473,128,3.69922614,0.128118859,999.072276,3008656476 +2,6245,1474,128,3.03788114,0.12880858,993.722623,3008656476 +2,6246,1475,128,3.02590299,0.149015119,858.973243,3008656476 +2,6247,1476,128,3.10935092,0.128759396,994.102209,3008656476 +2,6248,1477,128,3.56685853,0.140726878,909.563275,3008656476 +2,6249,1478,128,3.28970861,0.128164615,998.715597,3008656476 +2,6250,1479,128,3.46637344,0.128439858,996.575378,3008656476 +2,6251,1480,128,3.19709349,0.129103066,991.455927,3008656476 +2,6252,1481,128,3.65805197,0.128512718,996.010372,3008656476 +2,6253,1482,128,3.12754726,0.129366157,989.439611,3008656476 +2,6254,1483,128,2.85218024,0.143936855,889.278844,3008656476 +2,6255,1484,128,3.10064006,0.130986404,977.200657,3008656476 +2,6256,1485,128,3.38710451,0.1497507,854.753934,3008656476 +2,6257,1486,128,3.71228337,0.135363871,945.599435,3008656476 +2,6258,1487,128,3.60092473,0.140009365,914.224559,3008656476 +2,6259,1488,128,3.10004187,0.132162665,968.503473,3008656476 +2,6260,1489,128,2.84988427,0.132805252,963.817304,3008656476 +2,6261,1490,128,3.32869959,0.130966977,977.34561,3008656476 +2,6262,1491,128,3.24660969,0.143920031,889.382799,3008656476 +2,6263,1492,128,3.46075058,0.14410528,888.239487,3008656476 +2,6264,1493,128,3.08747125,0.132101959,968.948538,3008656476 +2,6265,1494,128,2.37528634,0.129637805,987.366301,3008656476 +2,6266,1495,128,2.89259696,0.128800452,993.785332,3008656476 +2,6267,1496,128,3.1126256,0.128268962,997.90314,3008656476 +2,6268,1497,128,3.06056404,0.12788506,1000.89878,3008656476 +2,6269,1498,128,3.21404958,0.128024361,999.809716,3008656476 +2,6270,1499,128,2.87849736,0.135433341,945.114394,3008656476 +2,6271,1500,128,3.40678906,0.142638502,897.373417,3008656476 +2,6272,1501,128,3.64709926,0.128956085,992.585964,3008656476 +2,6273,1502,128,2.97125888,0.127392204,1004.77106,3008656476 +2,6274,1503,128,3.2475481,0.128065915,999.485304,3008656476 +2,6275,1504,128,3.08698702,0.127727326,1002.13481,3008656476 +2,6276,1505,128,3.37989879,0.128169413,998.67821,3008656476 +2,6277,1506,128,2.7898798,0.127501779,1003.90756,3008656476 +2,6278,1507,128,3.24943399,0.14108751,907.238352,3008656476 +2,6279,1508,128,2.93174505,0.13961072,916.83504,3008656476 +2,6280,1509,128,3.55543089,0.124073958,1031.64276,3008656476 +2,6281,1510,128,3.95969033,0.128122627,999.042893,3008656476 +2,6282,1511,128,2.93216848,0.128323169,997.481601,3008656476 +2,6283,1512,128,3.26604962,0.128293071,997.715613,3008656476 +2,6284,1513,128,3.55068088,0.129600854,987.647813,3008656476 +2,6285,1514,128,4.01336765,0.129813788,986.027771,3008656476 +2,6286,1515,128,3.12821937,0.143160159,894.103505,3008656476 +2,6287,1516,128,3.54956007,0.129160253,991.01695,3008656476 +2,6288,1517,128,3.70468974,0.131453194,973.730619,3008656476 +2,6289,1518,128,3.69233727,0.128558365,995.65672,3008656476 +2,6290,1519,128,2.94296145,0.129941142,985.061375,3008656476 +2,6291,1520,128,3.47431159,0.128931007,992.779029,3008656476 +2,6292,1521,128,2.8541491,0.129298167,989.959896,3008656476 +2,6293,1522,128,3.70192695,0.128645315,994.983766,3008656476 +2,6294,1523,128,4.09432459,0.144257546,887.301937,3008656476 +2,6295,1524,128,3.77386498,0.127404447,1004.67451,3008656476 +2,6296,1525,128,3.04255176,0.138582506,923.637504,3008656476 +2,6297,1526,128,2.57040048,0.128798047,993.803889,3008656476 +2,6298,1527,128,2.47246003,0.129799179,986.138749,3008656476 +2,6299,1528,128,3.16087842,0.130216688,982.976928,3008656476 +2,6300,1529,128,3.73999023,0.129907536,985.316202,3008656476 +2,6301,1530,128,3.71658421,0.128661196,994.860952,3008656476 +2,6302,1531,128,4.30607367,0.144553315,885.486438,3008656476 +2,6303,1532,128,4.10063601,0.129366062,989.440337,3008656476 +2,6304,1533,128,3.4552052,0.136517007,937.612117,3008656476 +2,6305,1534,128,3.45664239,0.128993404,992.2988,3008656476 +2,6306,1535,128,2.80350518,0.129464996,988.684231,3008656476 +2,6307,1536,128,3.29133463,0.128709967,994.483978,3008656476 +2,6308,1537,128,3.20429087,0.12940055,989.17663,3008656476 +2,6309,1538,128,3.43284655,0.128530639,995.871498,3008656476 +2,6310,1539,128,3.0208106,0.144548226,885.517613,3008656476 +2,6311,1540,128,3.97921562,0.128830053,993.556992,3008656476 +2,6312,1541,128,3.65066791,0.136743498,936.059132,3008656476 +2,6313,1542,128,3.90328097,0.129200502,990.708225,3008656476 +2,6314,1543,128,3.38008118,0.129920934,985.214592,3008656476 +2,6315,1544,128,4.03300762,0.12903814,991.954782,3008656476 +2,6316,1545,128,3.38396668,0.129385045,989.295169,3008656476 +2,6317,1546,128,2.95954847,0.130203433,983.076998,3008656476 +2,6318,1547,128,3.50448275,0.145015499,882.664273,3008656476 +2,6319,1548,128,3.27565956,0.131862874,970.705371,3008656476 +2,6320,1549,128,3.73411345,0.13781561,928.777226,3008656476 +2,6321,1550,128,3.3637321,0.139891188,914.996876,3008656476 +2,6322,1551,128,2.947474,0.19188769,667.05686,3008656476 +2,6323,1552,128,3.50567317,0.132042689,969.38347,3008656476 +2,6324,1553,128,4.2586689,0.132231021,968.002811,3008656476 +2,6325,1554,128,3.87498546,0.144022646,888.749121,3008656476 +2,6326,1555,128,3.19368434,0.130911749,977.757925,3008656476 +2,6327,1556,128,3.59851789,0.143792034,890.174486,3008656476 +2,6328,1557,128,3.7429719,0.130906883,977.794269,3008656476 +2,6329,1558,128,3.35036278,0.131084407,976.470069,3008656476 +2,6330,1559,128,3.09478641,0.129611885,987.563756,3008656476 +2,6331,1560,128,3.17524028,0.128284184,997.784731,3008656476 +2,6332,1561,128,3.66904068,0.13039377,981.641991,3008656476 +2,6333,1562,128,4.07971001,0.14604191,876.460737,3008656476 +2,6334,1563,128,4.09102297,0.129071684,991.696986,3008656476 +2,6335,1564,128,3.53778315,0.143885258,889.597738,3008656476 +2,6336,1565,128,3.48595333,0.129135682,991.205514,3008656476 +2,6337,1566,128,2.74862385,0.129099578,991.482714,3008656476 +2,6338,1567,128,2.44043756,0.128095909,999.251272,3008656476 +2,6339,1568,128,1.98629582,0.128011157,999.912844,3008656476 +2,6340,1569,128,2.81598306,0.127323377,1005.31421,3008656476 +2,6341,1570,128,3.14580297,0.142108256,900.721771,3008656476 +2,6342,1571,128,3.33591247,0.128201658,998.427025,3008656476 +2,6343,1572,128,2.47436595,0.141664097,903.545801,3008656476 +2,6344,1573,128,3.14392757,0.127902743,1000.7604,3008656476 +2,6345,1574,128,3.70048594,0.127965099,1000.27274,3008656476 +2,6346,1575,128,3.74487233,0.127776151,1001.75188,3008656476 +2,6347,1576,128,3.47416997,0.127942316,1000.45086,3008656476 +2,6348,1577,128,3.56750703,0.128079495,999.379331,3008656476 +2,6349,1578,128,3.06959605,0.142922353,895.591189,3008656476 +2,6350,1579,128,3.29926491,0.127631609,1002.88636,3008656476 +2,6351,1580,128,3.71426845,0.141526357,904.425174,3008656476 +2,6352,1581,128,3.18479538,0.129156353,991.046875,3008656476 +2,6353,1582,128,3.1443038,0.129375583,989.367522,3008656476 +2,6354,1583,128,3.13130283,0.128029782,999.767382,3008656476 +2,6355,1584,128,3.59475541,0.12882607,993.587711,3008656476 +2,6356,1585,128,3.61623931,0.128060263,999.529417,3008656476 +2,6357,1586,128,3.83342624,0.144626475,885.03851,3008656476 +2,6358,1587,128,3.12707806,0.128376117,997.070195,3008656476 +2,6359,1588,128,3.2567122,0.141178788,906.651784,3008656476 +2,6360,1589,128,3.56815958,0.127823998,1001.37691,3008656476 +2,6361,1590,128,3.0175643,0.129131517,991.237484,3008656476 +2,6362,1591,128,2.86153555,0.128596549,995.361081,3008656476 +2,6363,1592,128,3.31528091,0.128447485,996.516203,3008656476 +2,6364,1593,128,3.76328349,0.12833367,997.399981,3008656476 +2,6365,1594,128,3.62281251,0.141687687,903.395367,3008656476 +2,6366,1595,128,3.07910037,0.129569261,987.888632,3008656476 +2,6367,1596,128,3.16447735,0.144889268,883.433271,3008656476 +2,6368,1597,128,3.19237113,0.129849423,985.757172,3008656476 +2,6369,1598,128,3.16203308,0.130367688,981.838383,3008656476 +2,6370,1599,128,3.14993978,0.13016797,983.344827,3008656476 +2,6371,1600,128,2.4790349,0.130452718,981.198414,3008656476 +2,6372,1601,128,2.87507486,0.130332816,982.101085,3008656476 +2,6373,1602,128,2.98552775,0.149043538,858.809457,3008656476 +2,6374,1603,128,3.12124991,0.1309747,977.28798,3008656476 +2,6375,1604,128,2.65042901,0.143804057,890.100062,3008656476 +2,6376,1605,128,2.28414536,0.138982747,920.977623,3008656476 +2,6377,1606,128,2.16434526,0.142715472,896.889442,3008656476 +2,6378,1607,128,3.42582798,0.133567193,958.319159,3008656476 +2,6379,1608,128,3.21582055,0.1315963,972.671724,3008656476 +2,6380,1609,128,3.17459965,0.135964693,941.420873,3008656476 +2,6381,1610,128,3.37059069,0.129149597,991.098718,3008656476 +2,6382,1611,128,3.64839005,0.14728957,869.036416,3008656476 +2,6383,1612,128,3.68380046,0.131791141,971.233719,3008656476 +2,6384,1613,128,3.07840061,0.13156573,972.89773,3008656476 +2,6385,1614,128,2.86470985,0.12931856,989.803784,3008656476 +2,6386,1615,128,2.86967611,0.128909128,992.947528,3008656476 +2,6387,1616,128,3.01371861,0.128740308,994.249602,3008656476 +2,6388,1617,128,3.29707479,0.141330248,905.680149,3008656476 +2,6389,1618,128,2.13046837,0.122527765,1044.66118,3008656476 +2,6390,1619,128,3.46093154,0.143464839,892.204675,3008656476 +2,6391,1620,128,4.03565264,0.128351089,997.26462,3008656476 +2,6392,1621,128,3.5212388,0.128384708,997.003475,3008656476 +2,6393,1622,128,3.07105494,0.127583629,1003.26351,3008656476 +2,6394,1623,128,3.52434182,0.128316955,997.529906,3008656476 +2,6395,1624,128,3.31690669,0.12836172,997.182026,3008656476 +2,6396,1625,128,2.9370079,0.127829614,1001.33291,3008656476 +2,6397,1626,128,3.43785071,0.133235073,960.707996,3008656476 +2,6398,1627,128,3.43662596,0.136704738,936.324533,3008656476 +2,6399,1628,128,3.25248241,0.127541685,1003.59345,3008656476 +2,6400,1629,128,2.8340373,0.129095738,991.512206,3008656476 +2,6401,1630,128,3.36209917,0.127482693,1004.05786,3008656476 +2,6402,1631,128,3.19526863,0.128952925,992.610288,3008656476 +2,6403,1632,128,3.39437294,0.127910972,1000.69602,3008656476 +2,6404,1633,128,3.15339327,0.127219271,1006.13688,3008656476 +2,6405,1634,128,3.28730679,0.140885527,908.53903,3008656476 +2,6406,1635,128,3.07044697,0.127758185,1001.89276,3008656476 +2,6407,1636,128,2.87669492,0.138510211,924.119594,3008656476 +2,6408,1637,128,3.16075611,0.128327302,997.449475,3008656476 +2,6409,1638,128,3.52700901,0.127770809,1001.79377,3008656476 +2,6410,1639,128,3.82524395,0.129323901,989.762905,3008656476 +2,6411,1640,128,3.01915264,0.127715239,1002.22966,3008656476 +2,6412,1641,128,2.32175231,0.127799762,1001.56681,3008656476 +2,6413,1642,128,3.4466548,0.139453702,917.867351,3008656476 +2,6414,1643,128,2.70705533,0.128013638,999.893464,3008656476 +2,6415,1644,128,2.81959963,0.140271645,912.515142,3008656476 +2,6416,1645,128,2.1521728,0.128036827,999.712372,3008656476 +2,6417,1646,128,3.72200346,0.129146243,991.124457,3008656476 +2,6418,1647,128,3.16934705,0.127446078,1004.34632,3008656476 +2,6419,1648,128,2.64695668,0.128996711,992.273361,3008656476 +2,6420,1649,128,2.52171206,0.128837663,993.498306,3008656476 +2,6421,1650,128,2.77367687,0.143659749,890.994178,3008656476 +2,6422,1651,128,2.88822269,0.129854608,985.717811,3008656476 +2,6423,1652,128,3.1742208,0.141664151,903.545457,3008656476 +2,6424,1653,128,2.57775784,0.128220866,998.277457,3008656476 +2,6425,1654,128,2.71391273,0.129168668,990.952388,3008656476 +2,6426,1655,128,2.88241482,0.12846313,996.394841,3008656476 +2,6427,1656,128,3.27009368,0.127077153,1007.2621,3008656476 +2,6428,1657,128,3.39816308,0.128537148,995.821068,3008656476 +2,6429,1658,128,3.53927183,0.144641328,884.947627,3008656476 +2,6430,1659,128,3.35463381,0.128891621,993.082397,3008656476 +2,6431,1660,128,2.47191191,0.141853413,902.339939,3008656476 +2,6432,1661,128,2.67076588,0.128736836,994.276417,3008656476 +2,6433,1662,128,3.08182907,0.127463074,1004.2124,3008656476 +2,6434,1663,128,3.45608854,0.128062811,999.50953,3008656476 +2,6435,1664,128,3.50529432,0.128269891,997.895913,3008656476 +2,6436,1665,128,3.07863832,0.12889225,993.077551,3008656476 +2,6437,1666,128,3.32444096,0.145342831,880.676392,3008656476 +2,6438,1667,128,3.4612453,0.129724928,986.703188,3008656476 +2,6439,1668,128,3.60378361,0.141769751,902.872433,3008656476 +2,6440,1669,128,3.3267355,0.131904939,970.395809,3008656476 +2,6441,1670,128,3.40479255,0.131135076,976.092773,3008656476 +2,6442,1671,128,2.43863201,0.132835702,963.596368,3008656476 +2,6443,1672,128,3.10591507,0.138761311,922.447324,3008656476 +2,6444,1673,128,3.18021178,0.138587393,923.604934,3008656476 +2,6445,1674,128,3.42980218,0.137789751,928.95153,3008656476 +2,6446,1675,128,3.1116116,0.145017727,882.650712,3008656476 +2,6447,1676,128,3.14566565,0.133855922,956.252051,3008656476 +2,6448,1677,128,3.91099882,0.130918184,977.709865,3008656476 +2,6449,1678,128,3.65878344,0.131720446,971.754985,3008656476 +2,6450,1679,128,3.67749977,0.130894256,977.888594,3008656476 +2,6451,1680,128,3.39229584,0.130458247,981.156829,3008656476 +2,6452,1681,128,3.75109696,0.149849418,854.190838,3008656476 +2,6453,1682,128,3.49497795,0.128106624,999.167693,3008656476 +2,6454,1683,128,3.43561745,0.142759715,896.611485,3008656476 +2,6455,1684,128,3.06881523,0.128413984,996.776177,3008656476 +2,6456,1685,128,2.60021758,0.128406647,996.833131,3008656476 +2,6457,1686,128,3.56424713,0.128752505,994.155415,3008656476 +2,6458,1687,128,2.99272776,0.129018415,992.106437,3008656476 +2,6459,1688,128,2.97096801,0.128627251,995.123498,3008656476 +2,6460,1689,128,3.17198777,0.142850021,896.044671,3008656476 +2,6461,1690,128,3.33425045,0.128726778,994.354104,3008656476 +2,6462,1691,128,3.40745258,0.141482658,904.704519,3008656476 +2,6463,1692,128,3.18330622,0.129753216,986.488073,3008656476 +2,6464,1693,128,3.31897902,0.127029313,1007.64144,3008656476 +2,6465,1694,128,3.43896127,0.128316575,997.53286,3008656476 +2,6466,1695,128,3.55512333,0.128166996,998.697044,3008656476 +2,6467,1696,128,3.39966321,0.128986747,992.350013,3008656476 +2,6468,1697,128,3.41029334,0.142637057,897.382508,3008656476 +2,6469,1698,128,3.79805732,0.128980878,992.395167,3008656476 +2,6470,1699,128,3.66336417,0.140769265,909.289396,3008656476 +2,6471,1700,128,3.57161999,0.128750991,994.167105,3008656476 +2,6472,1701,128,3.42524076,0.128267062,997.917922,3008656476 +2,6473,1702,128,2.13252115,0.128709054,994.491032,3008656476 +2,6474,1703,128,2.59057927,0.128869342,993.254082,3008656476 +2,6475,1704,128,2.37986279,0.128315728,997.539444,3008656476 +2,6476,1705,128,2.59997272,0.14075061,909.409913,3008656476 +2,6477,1706,128,3.01979637,0.128172922,998.650869,3008656476 +2,6478,1707,128,3.13192725,0.143023354,894.958735,3008656476 +2,6479,1708,128,3.88505149,0.129057306,991.807469,3008656476 +2,6480,1709,128,3.09586644,0.129154448,991.061493,3008656476 +2,6481,1710,128,3.60322118,0.12938153,989.322046,3008656476 +2,6482,1711,128,3.27273512,0.129503921,988.387062,3008656476 +2,6483,1712,128,2.74582434,0.129915323,985.257143,3008656476 +2,6484,1713,128,3.06309628,0.141635833,903.726107,3008656476 +2,6485,1714,128,3.3417201,0.130349464,981.975653,3008656476 +2,6486,1715,128,2.97668552,0.145230012,881.360528,3008656476 +2,6487,1716,128,3.02560282,0.13041058,981.515457,3008656476 +2,6488,1717,128,3.86894393,0.131055775,976.683401,3008656476 +2,6489,1718,128,2.68225813,0.131883821,970.551194,3008656476 +2,6490,1719,128,3.3034451,0.132578039,965.4691,3008656476 +2,6491,1720,128,3.7982676,0.132858455,963.431345,3008656476 +2,6492,1721,128,3.24689293,0.149425313,856.615238,3008656476 +2,6493,1722,128,3.5807333,0.132570958,965.520669,3008656476 +2,6494,1723,128,3.33811712,0.144891092,883.42215,3008656476 +2,6495,1724,128,3.74970078,0.133373848,959.708383,3008656476 +2,6496,1725,128,2.80308843,0.130509453,980.771868,3008656476 +2,6497,1726,128,3.99774432,0.13249399,966.081556,3008656476 +2,6498,1727,128,3.41022468,0.13005951,984.164864,3008656476 +2,6499,1728,128,3.25977397,0.130522043,980.677264,3008656476 +2,6500,1729,128,3.64285207,0.146271676,875.083977,3008656476 +2,6501,1730,128,2.78045678,0.130353692,981.943803,3008656476 +2,6502,1731,128,2.71365333,0.143781606,890.239048,3008656476 +2,6503,1732,128,3.27831388,0.129723863,986.711288,3008656476 +2,6504,1733,128,2.62967205,0.12928412,990.067458,3008656476 +2,6505,1734,128,3.23373199,0.128692572,994.6184,3008656476 +2,6506,1735,128,2.49780345,0.128691681,994.625286,3008656476 +2,6507,1736,128,2.93502903,0.129393564,989.230036,3008656476 +2,6508,1737,128,2.12065673,0.142088449,900.847331,3008656476 +2,6509,1738,128,2.59256029,0.127755079,1001.91711,3008656476 +2,6510,1739,128,1.97660553,0.143616976,891.25954,3008656476 +2,6511,1740,128,2.18648267,0.12750238,1003.90283,3008656476 +2,6512,1741,128,2.59591031,0.127084069,1007.20728,3008656476 +2,6513,1742,128,2.75656605,0.128541893,995.784308,3008656476 +2,6514,1743,128,2.98303008,0.127558581,1003.46052,3008656476 +2,6515,1744,128,3.50335526,0.128089885,999.298266,3008656476 +2,6516,1745,128,2.02870584,0.139209662,919.476408,3008656476 +2,6517,1746,128,3.7041502,0.127065657,1007.35323,3008656476 +2,6518,1747,128,3.93613195,0.143072627,894.650519,3008656476 +2,6519,1748,128,3.0352149,0.128328716,997.438484,3008656476 +2,6520,1749,128,3.71106911,0.128139768,998.909254,3008656476 +2,6521,1750,128,2.87090325,0.128996235,992.277023,3008656476 +2,6522,1751,128,3.6002388,0.129301826,989.931882,3008656476 +2,6523,1752,128,2.95962167,0.128833319,993.531805,3008656476 +2,6524,1753,128,3.57189012,0.142419305,898.754561,3008656476 +2,6525,1754,128,3.48541355,0.128339742,997.352792,3008656476 +2,6526,1755,128,3.79550219,0.142347764,899.206257,3008656476 +2,6527,1756,128,2.9242599,0.129282297,990.081418,3008656476 +2,6528,1757,128,2.80664968,0.129458563,988.73336,3008656476 +2,6529,1758,128,2.84430861,0.128611846,995.242693,3008656476 +2,6530,1759,128,3.2845459,0.128976956,992.425345,3008656476 +2,6531,1760,128,3.51680875,0.129473612,988.618438,3008656476 +2,6532,1761,128,2.74456358,0.147686829,866.698817,3008656476 +2,6533,1762,128,3.91407871,0.128241147,998.119582,3008656476 +2,6534,1763,128,2.89194918,0.141401806,905.221819,3008656476 +2,6535,1764,128,3.04682565,0.128304615,997.625845,3008656476 +2,6536,1765,128,2.30383396,0.129387577,989.27581,3008656476 +2,6537,1766,128,3.29898167,0.130592547,980.147818,3008656476 +2,6538,1767,128,3.60098839,0.130949944,977.472736,3008656476 +2,6539,1768,128,3.09933925,0.130149486,983.484483,3008656476 +2,6540,1769,128,2.76158667,0.145524475,879.57713,3008656476 +2,6541,1770,128,2.71742821,0.132608895,965.244451,3008656476 +2,6542,1771,128,2.65494466,0.138128654,926.672318,3008656476 +2,6543,1772,128,2.467103,0.132727695,964.380493,3008656476 +2,6544,1773,128,2.47483897,0.139207506,919.490649,3008656476 +2,6545,1774,128,2.34112978,0.135197322,946.764315,3008656476 +2,6546,1775,128,2.91074944,0.131892145,970.489941,3008656476 +2,6547,1776,128,2.86454654,0.134058849,954.804558,3008656476 +2,6548,1777,128,2.68886971,0.139264981,919.111173,3008656476 +2,6549,1778,128,2.24288845,0.147292988,869.016249,3008656476 +2,6550,1779,128,3.01922655,0.131395943,974.154887,3008656476 +2,6551,1780,128,2.60278082,0.130545203,980.503282,3008656476 +2,6552,1781,128,1.86885905,0.132350145,967.131543,3008656476 +2,6553,1782,128,2.08298659,0.130737249,979.062975,3008656476 +2,6554,1783,128,2.51244426,0.131153042,975.959063,3008656476 +2,6555,1784,128,2.82935095,0.141488577,904.666671,3008656476 +2,6556,1785,128,2.80050206,0.125719413,1018.14029,3008656476 +2,6557,1786,128,2.07182479,0.14490716,883.324192,3008656476 +2,6558,1787,128,2.18318295,0.130334901,982.085374,3008656476 +2,6559,1788,128,2.04067373,0.129876701,985.550133,3008656476 +2,6560,1789,128,2.55255079,0.129267597,990.194008,3008656476 +2,6561,1790,128,2.02457809,0.129067621,991.728204,3008656476 +2,6562,1791,128,3.41905808,0.129015557,992.128414,3008656476 +2,6563,1792,128,2.98511481,0.137766162,929.11059,3008656476 +2,6564,1793,128,2.55524778,0.125406694,1020.67917,3008656476 +2,6565,1794,128,2.99304342,0.14282359,896.210493,3008656476 +2,6566,1795,128,1.99585414,0.130241659,982.788464,3008656476 +2,6567,1796,128,2.9394474,0.129316871,989.816712,3008656476 +2,6568,1797,128,3.11415768,0.127734453,1002.0789,3008656476 +2,6569,1798,128,3.02690291,0.129919952,985.222039,3008656476 +2,6570,1799,128,2.37981224,0.129260914,990.245203,3008656476 +2,6571,1800,128,2.47446656,0.134080246,954.652186,3008656476 +2,6572,1801,128,2.83047152,0.126191591,1014.33066,3008656476 +2,6573,1802,128,2.14659286,0.143982599,888.996315,3008656476 +2,6574,1803,128,3.0060153,0.127008527,1007.80635,3008656476 +2,6575,1804,128,2.48161101,0.128991421,992.314055,3008656476 +2,6576,1805,128,3.43619347,0.127991643,1000.06529,3008656476 +2,6577,1806,128,2.88245368,0.128304527,997.62653,3008656476 +2,6578,1807,128,3.17115808,0.127427597,1004.49199,3008656476 +2,6579,1808,128,3.03085136,0.128029877,999.76664,3008656476 +2,6580,1809,128,3.86077499,0.134952785,948.47987,3008656476 +2,6581,1810,128,2.90866899,0.140619084,910.260516,3008656476 +2,6582,1811,128,2.77066374,0.127698787,1002.35878,3008656476 +2,6583,1812,128,2.39270663,0.12828884,997.748518,3008656476 +2,6584,1813,128,2.28582644,0.127915853,1000.65783,3008656476 +2,6585,1814,128,3.41968369,0.12806234,999.513206,3008656476 +2,6586,1815,128,3.52748442,0.129631542,987.414005,3008656476 +2,6587,1816,128,2.79852891,0.127885099,1000.89847,3008656476 +2,6588,1817,128,3.12915587,0.141958179,901.674006,3008656476 +2,6589,1818,128,2.11144233,0.141963951,901.637346,3008656476 +2,6590,1819,128,1.9774487,0.129977028,984.789404,3008656476 +2,6591,1820,128,2.80912614,0.128630667,995.097071,3008656476 +2,6592,1821,128,3.21800065,0.128029139,999.772403,3008656476 +2,6593,1822,128,4.04652596,0.129777669,986.302197,3008656476 +2,6594,1823,128,3.41413188,0.117268671,1091.51062,3008656476 +2,6595,1824,128,2.92517209,0.128806344,993.739874,3008656476 +2,6596,1825,128,2.53608012,0.1351479,947.110536,3008656476 +2,6597,1826,128,3.39430571,0.142173468,900.308629,3008656476 +2,6598,1827,128,2.67858267,0.128741469,994.240636,3008656476 +2,6599,1828,128,2.79064465,0.127819145,1001.41493,3008656476 +2,6600,1829,128,3.05587077,0.128349865,997.27413,3008656476 +2,6601,1830,128,2.93294787,0.128044842,999.649795,3008656476 +2,6602,1831,128,3.42781925,0.127903864,1000.75163,3008656476 +2,6603,1832,128,2.84935498,0.127278476,1005.66886,3008656476 +2,6604,1833,128,3.03061485,0.141982769,901.517845,3008656476 +2,6605,1834,128,3.36153769,0.143111254,894.409045,3008656476 +2,6606,1835,128,2.91497421,0.130237806,982.817539,3008656476 +2,6607,1836,128,2.20207715,0.129867289,985.62156,3008656476 +2,6608,1837,128,3.23187566,0.129146226,991.124588,3008656476 +2,6609,1838,128,3.62831926,0.131292395,974.923186,3008656476 +2,6610,1839,128,3.43023729,0.129702321,986.875169,3008656476 +2,6611,1840,128,3.46200442,0.131643564,972.322506,3008656476 +2,6612,1841,128,3.37185788,0.142174771,900.300377,3008656476 +2,6613,1842,128,3.32922602,0.143693949,890.782116,3008656476 +2,6614,1843,128,3.28873396,0.139050608,920.528158,3008656476 +2,6615,1844,128,3.26337218,0.142796417,896.381035,3008656476 +2,6616,1845,128,2.42119908,0.138919618,921.396141,3008656476 +2,6617,1846,128,2.7421608,0.132684592,964.693775,3008656476 +2,6618,1847,128,2.24264526,0.131592737,972.69806,3008656476 +2,6619,1848,128,3.03063607,0.145311722,880.864931,3008656476 +2,6620,1849,128,3.24773431,0.131551901,973.000002,3008656476 +2,6621,1850,128,3.62464094,0.144839328,883.737875,3008656476 +2,6622,1851,128,2.85482287,0.130883228,977.97099,3008656476 +2,6623,1852,128,2.4564116,0.130672297,979.549629,3008656476 +2,6624,1853,128,2.87179399,0.130196926,983.12613,3008656476 +2,6625,1854,128,3.65144038,0.130485689,980.950486,3008656476 +2,6626,1855,128,2.97488379,0.129216984,990.581857,3008656476 +2,6627,1856,128,2.86271262,0.142458318,898.508432,3008656476 +2,6628,1857,128,2.18087816,0.129267739,990.19292,3008656476 +2,6629,1858,128,3.2079556,0.145928274,877.143246,3008656476 +2,6630,1859,128,2.56954122,0.128247382,998.071056,3008656476 +2,6631,1860,128,3.23099041,0.11627917,1100.79905,3008656476 +2,6632,1861,128,3.32618117,0.128520337,995.951326,3008656476 +2,6633,1862,128,3.09378123,0.128775335,993.979165,3008656476 +2,6634,1863,128,3.06934357,0.128938354,992.72246,3008656476 +2,6635,1864,128,3.43172407,0.143016743,895.000105,3008656476 +2,6636,1865,128,3.16538095,0.128723401,994.38019,3008656476 +2,6637,1866,128,3.05698299,0.144942824,883.106845,3008656476 +2,6638,1867,128,3.97756934,0.128979553,992.405362,3008656476 +2,6639,1868,128,3.01698732,0.127788607,1001.65424,3008656476 +2,6640,1869,128,2.91740036,0.128744945,994.213792,3008656476 +2,6641,1870,128,3.27365303,0.130001503,984.604001,3008656476 +2,6642,1871,128,2.59796739,0.128205029,998.400773,3008656476 +2,6643,1872,128,3.27881646,0.147814755,865.948734,3008656476 +2,6644,1873,128,2.98761797,0.128149164,998.836013,3008656476 +2,6645,1874,128,3.58115554,0.142348918,899.198967,3008656476 +2,6646,1875,128,2.87055254,0.127643056,1002.79642,3008656476 +2,6647,1876,128,2.59091878,0.129227936,990.497906,3008656476 +2,6648,1877,128,2.71810532,0.129037012,991.963453,3008656476 +2,6649,1878,128,2.48806858,0.129369594,989.413324,3008656476 +2,6650,1879,128,1.90574551,0.129251031,990.320921,3008656476 +2,6651,1880,128,2.57598972,0.14624541,875.241144,3008656476 +2,6652,1881,128,2.84007859,0.130671857,979.552927,3008656476 +2,6653,1882,128,2.93804407,0.139419915,918.089787,3008656476 +2,6654,1883,128,2.4241662,0.130861504,978.13334,3008656476 +2,6655,1884,128,2.65884614,0.131277411,975.034463,3008656476 +2,6656,1885,128,2.65387058,0.131141485,976.045071,3008656476 +2,6657,1886,128,2.93351316,0.131651053,972.267195,3008656476 +2,6658,1887,128,2.34559536,0.132875608,963.306975,3008656476 +2,6659,1888,128,2.49455762,0.14559231,879.167313,3008656476 +2,6660,1889,128,3.29486418,0.142576703,897.762378,3008656476 +2,6661,1890,128,3.24321961,0.13660866,936.983058,3008656476 +2,6662,1891,128,2.99229312,0.142904863,895.700799,3008656476 +2,6663,1892,128,2.95683956,0.142501279,898.237552,3008656476 +2,6664,1893,128,2.60582423,0.132449233,966.408012,3008656476 +2,6665,1894,128,2.93481398,0.131097718,976.370924,3008656476 +2,6666,1895,128,2.97471285,0.144158903,887.909087,3008656476 +2,6667,1896,128,3.27960992,0.132828263,963.650334,3008656476 +2,6668,1897,128,3.13401294,0.131664611,972.167077,3008656476 +2,6669,1898,128,3.50665379,0.130677692,979.509188,3008656476 +2,6670,1899,128,4.68737984,0.128469963,996.341845,3008656476 +2,6671,1900,128,3.52043176,0.129369763,989.412031,3008656476 +2,6672,1901,128,2.74010277,0.128900248,993.015933,3008656476 +2,6673,1902,128,2.98223662,0.129336898,989.663445,3008656476 +2,6674,1903,128,3.50719476,0.144915724,883.271991,3008656476 +2,6675,1904,128,2.12783408,0.128696313,994.589488,3008656476 +2,6676,1905,128,3.29025102,0.139205199,919.505887,3008656476 +2,6677,1906,128,2.44425797,0.126773286,1009.67644,3008656476 +2,6678,1907,128,2.54311419,0.127822401,1001.38942,3008656476 +2,6679,1908,128,2.87282157,0.128283747,997.78813,3008656476 +2,6680,1909,128,2.61582661,0.12757503,1003.33114,3008656476 +2,6681,1910,128,2.90099001,0.127805477,1001.52202,3008656476 +2,6682,1911,128,2.53772068,0.140452967,911.337103,3008656476 +2,6683,1912,128,2.81321812,0.127708958,1002.27895,3008656476 +2,6684,1913,128,2.90825033,0.145538248,879.493891,3008656476 +2,6685,1914,128,3.02708912,0.127788842,1001.6524,3008656476 +2,6686,1915,128,2.21885705,0.128832505,993.538083,3008656476 +2,6687,1916,128,3.20486951,0.129129936,991.24962,3008656476 +2,6688,1917,128,2.6511848,0.128794871,993.828396,3008656476 +2,6689,1918,128,2.72140241,0.128524027,995.922731,3008656476 +2,6690,1919,128,2.44479203,0.142453645,898.537907,3008656476 +2,6691,1920,128,2.7391119,0.12819731,998.460888,3008656476 +2,6692,1921,128,2.99825764,0.141669023,903.514384,3008656476 +2,6693,1922,128,3.19706559,0.128603518,995.307142,3008656476 +2,6694,1923,128,3.05165696,0.128377895,997.056386,3008656476 +2,6695,1924,128,2.78319049,0.128622005,995.164086,3008656476 +2,6696,1925,128,2.41841745,0.128724041,994.375247,3008656476 +2,6697,1926,128,2.88184834,0.128752889,994.15245,3008656476 +2,6698,1927,128,3.00861573,0.143402729,892.591103,3008656476 +2,6699,1928,128,3.28072047,0.128484892,996.226078,3008656476 +2,6700,1929,128,4.02185535,0.143308834,893.175922,3008656476 +2,6701,1930,128,3.49035025,0.128285197,997.776852,3008656476 +2,6702,1931,128,2.06756806,0.129387244,989.278356,3008656476 +2,6703,1932,128,2.05114841,0.128595498,995.369216,3008656476 +2,6704,1933,128,2.50905323,0.129455798,988.754478,3008656476 +2,6705,1934,128,2.58821845,0.130418566,981.455355,3008656476 +2,6706,1935,128,2.10877776,0.14256779,897.818504,3008656476 +2,6707,1936,128,3.15126681,0.131025958,976.90566,3008656476 +2,6708,1937,128,3.01956725,0.144242274,887.395882,3008656476 +2,6709,1938,128,3.26203132,0.130408639,981.530066,3008656476 +2,6710,1939,128,2.62270236,0.131609335,972.575388,3008656476 +2,6711,1940,128,2.57251382,0.130572525,980.298114,3008656476 +2,6712,1941,128,1.97261333,0.131433008,973.880169,3008656476 +2,6713,1942,128,3.4885273,0.132783738,963.973465,3008656476 +2,6714,1943,128,2.88132954,0.145147938,881.858894,3008656476 +2,6715,1944,128,3.11028481,0.131930763,970.205865,3008656476 +2,6716,1945,128,3.19592857,0.155373984,823.818742,3008656476 +2,6717,1946,128,2.08057928,0.142966205,895.316484,3008656476 +2,6718,1947,128,2.57425141,0.1387864,922.280569,3008656476 +2,6719,1948,128,3.35227919,0.138994442,920.900132,3008656476 +2,6720,1949,128,3.0646112,0.13253308,965.796615,3008656476 +2,6721,1950,128,3.68350649,0.131884651,970.545086,3008656476 +2,6722,1951,128,3.63881612,0.143686668,890.827255,3008656476 +2,6723,1952,128,2.87059164,0.143646579,891.075868,3008656476 +2,6724,1953,128,2.83295655,0.132547949,965.688273,3008656476 +2,6725,1954,128,3.05062485,0.130414754,981.484043,3008656476 +2,6726,1955,128,2.88009834,0.132193095,968.280529,3008656476 +2,6727,1956,128,3.31887937,0.13028536,982.458812,3008656476 +2,6728,1957,128,2.99567199,0.130027594,984.406433,3008656476 +2,6729,1958,128,2.82045102,0.130871624,978.057703,3008656476 +2,6730,1959,128,2.16423774,0.135188975,946.822772,3008656476 +2,6731,1960,128,3.06502628,0.142177698,900.281843,3008656476 +2,6732,1961,128,2.94511294,0.130549162,980.473548,3008656476 +2,6733,1962,128,2.9399159,0.131455754,973.711657,3008656476 +2,6734,1963,128,2.2996254,0.130151275,983.470965,3008656476 +2,6735,1964,128,2.27697945,0.131585453,972.751904,3008656476 +2,6736,1965,128,2.67303967,0.129979727,984.768956,3008656476 +2,6737,1966,128,2.96089888,0.141363913,905.464466,3008656476 +2,6738,1967,128,3.07025599,0.126078128,1015.2435,3008656476 +2,6739,1968,128,3.50248957,0.147170782,869.737853,3008656476 +2,6740,1969,128,2.73231983,0.129038376,991.952968,3008656476 +2,6741,1970,128,2.82273936,0.130647062,979.738833,3008656476 +2,6742,1971,128,2.94901037,0.128918983,992.871624,3008656476 +2,6743,1972,128,3.51292658,0.12783411,1001.2977,3008656476 +2,6744,1973,128,2.86172581,0.128233788,998.176861,3008656476 +2,6745,1974,128,1.40875399,0.138294668,925.559907,3008656476 +2,6746,1975,128,2.35386658,0.123090708,1039.88353,3008656476 +2,6747,1976,128,2.55263638,0.14390258,889.490654,3008656476 +2,6748,1977,128,2.49013972,0.128313491,997.556835,3008656476 +2,6749,1978,128,2.81934166,0.128194518,998.482634,3008656476 +2,6750,1979,128,2.96302152,0.128460687,996.41379,3008656476 +2,6751,1980,128,3.41648221,0.127610463,1003.05255,3008656476 +2,6752,1981,128,3.31232667,0.127970364,1000.23158,3008656476 +2,6753,1982,128,2.8248868,0.127819055,1001.41563,3008656476 +2,6754,1983,128,3.25960732,0.135748173,942.922451,3008656476 +2,6755,1984,128,2.35891557,0.144753617,884.261151,3008656476 +2,6756,1985,128,2.2605896,0.128368715,997.127688,3008656476 +2,6757,1986,128,2.16875958,0.12845389,996.466514,3008656476 +2,6758,1987,128,2.95090246,0.128773318,993.994734,3008656476 +2,6759,1988,128,3.25577641,0.127674923,1002.54613,3008656476 +2,6760,1989,128,3.47873569,0.129141344,991.162056,3008656476 +2,6761,1990,128,2.36059785,0.128243277,998.103004,3008656476 +2,6762,1991,128,2.17971683,0.139609631,916.842191,3008656476 +2,6763,1992,128,2.2466383,0.159373628,803.144169,3008656476 +2,6764,1993,128,2.84391189,0.168949113,757.624575,3008656476 +2,6765,1994,128,2.7175808,0.128998527,992.259392,3008656476 +2,6766,1995,128,2.69819713,0.128587405,995.431862,3008656476 +2,6767,1996,128,2.60298634,0.128576851,995.51357,3008656476 +2,6768,1997,128,3.15320873,0.128958167,992.569939,3008656476 +2,6769,1998,128,2.99551845,0.143006288,895.065537,3008656476 +2,6770,1999,128,3.76211548,0.128236846,998.153058,3008656476 +2,6771,2000,128,2.88706207,0.142172853,900.312523,3008656476 +2,6772,2001,128,2.17710614,0.129108625,991.413238,3008656476 +2,6773,2002,128,2.9966929,0.129305295,989.905324,3008656476 +2,6774,2003,128,2.99659204,0.12839122,996.952907,3008656476 +2,6775,2004,128,2.46785307,0.128384602,997.004298,3008656476 +2,6776,2005,128,2.414505,0.128104425,999.184845,3008656476 +2,6777,2006,128,2.62797594,0.142275004,899.666114,3008656476 +2,6778,2007,128,2.55454683,0.12888824,993.108448,3008656476 +2,6779,2008,128,2.74903059,0.143169652,894.044221,3008656476 +2,6780,2009,128,2.57029605,0.129285734,990.055098,3008656476 +2,6781,2010,128,2.65011883,0.129507048,988.363197,3008656476 +2,6782,2011,128,3.26454163,0.129460675,988.71723,3008656476 +2,6783,2012,128,3.70297694,0.12979753,986.151277,3008656476 +2,6784,2013,128,3.10072112,0.129822444,985.962027,3008656476 +2,6785,2014,128,3.77195644,0.143738938,890.50331,3008656476 +2,6786,2015,128,3.07479358,0.130066466,984.112231,3008656476 +2,6787,2016,128,3.25953269,0.144958975,883.008451,3008656476 +2,6788,2017,128,3.8235178,0.130249318,982.730673,3008656476 +2,6789,2018,128,3.23374367,0.130819148,978.450035,3008656476 +2,6790,2019,128,3.21599627,0.131778586,971.326252,3008656476 +2,6791,2020,128,2.82342839,0.132468835,966.265009,3008656476 +2,6792,2021,128,3.53884554,0.139013149,920.776207,3008656476 +2,6793,2022,128,3.54150558,0.153723118,832.66591,3008656476 +2,6794,2023,128,3.50125909,0.146294566,874.947057,3008656476 +2,6795,2024,128,3.59231758,0.135212351,946.659081,3008656476 +2,6796,2025,128,3.28597975,0.13564031,943.672276,3008656476 +2,6797,2026,128,2.93637204,0.13165798,972.21604,3008656476 +2,6798,2027,128,3.42351484,0.132290384,967.568436,3008656476 +2,6799,2028,128,3.3747499,0.131295191,974.902424,3008656476 +2,6800,2029,128,3.72766805,0.131673253,972.103271,3008656476 +2,6801,2030,128,3.45055604,0.137244716,932.640642,3008656476 +2,6802,2031,128,3.36271453,0.146490785,873.775098,3008656476 +2,6803,2032,128,2.78362727,0.130789428,978.672374,3008656476 +2,6804,2033,128,2.96103668,0.131192137,975.668229,3008656476 +2,6805,2034,128,2.85267568,0.13276099,964.138637,3008656476 +2,6806,2035,128,3.44237018,0.130908751,977.780317,3008656476 +2,6807,2036,128,2.39161396,0.132925186,962.947684,3008656476 +2,6808,2037,128,2.73432088,0.141016906,907.692585,3008656476 +2,6809,2038,128,3.05269837,0.127773084,1001.77593,3008656476 +2,6810,2039,128,3.56274962,0.142690512,897.046329,3008656476 +2,6811,2040,128,2.99825144,0.12964885,987.282186,3008656476 +2,6812,2041,128,3.980762,0.129218499,990.570243,3008656476 +2,6813,2042,128,3.7704432,0.12904173,991.927185,3008656476 +2,6814,2043,128,3.99996972,0.128107822,999.15835,3008656476 +2,6815,2044,128,2.93049502,0.128292386,997.72094,3008656476 +2,6816,2045,128,2.98653316,0.140209828,912.91746,3008656476 +2,6817,2046,128,2.93085575,0.121373866,1054.59276,3008656476 +2,6818,2047,128,3.02182913,0.143302705,893.214123,3008656476 +2,6819,2048,128,3.2343924,0.130498532,980.853946,3008656476 +2,6820,2049,128,2.9168303,0.128772101,994.004128,3008656476 +2,6821,2050,128,3.34096766,0.129196045,990.742402,3008656476 +2,6822,2051,128,3.23051786,0.128675074,994.753654,3008656476 +2,6823,2052,128,2.67514729,0.128994634,992.289338,3008656476 +2,6824,2053,128,3.26838779,0.128334407,997.394253,3008656476 +2,6825,2054,128,3.79882479,0.132114898,968.853641,3008656476 +2,6826,2055,128,2.87428331,0.145491721,879.775145,3008656476 +2,6827,2056,128,2.93232703,0.127035487,1007.59247,3008656476 +2,6828,2057,128,3.25412107,0.127930626,1000.54228,3008656476 +2,6829,2058,128,2.90815926,0.127621178,1002.96833,3008656476 +2,6830,2059,128,3.05646801,0.127921652,1000.61247,3008656476 +2,6831,2060,128,2.39641738,0.128719897,994.407259,3008656476 +2,6832,2061,128,3.58943558,0.126835195,1009.18361,3008656476 +2,6833,2062,128,3.11743855,0.135273174,946.233434,3008656476 +2,6834,2063,128,2.66402411,0.140247648,912.671277,3008656476 +2,6835,2064,128,2.95340896,0.128520476,995.950248,3008656476 +2,6836,2065,128,2.63176584,0.128026379,999.793957,3008656476 +2,6837,2066,128,2.98397708,0.128365918,997.149415,3008656476 +2,6838,2067,128,2.64604521,0.127652593,1002.7215,3008656476 +2,6839,2068,128,2.65306282,0.128368536,997.129078,3008656476 +2,6840,2069,128,2.73510098,0.128227841,998.223155,3008656476 +2,6841,2070,128,3.04274297,0.14249667,898.266605,3008656476 +2,6842,2071,128,3.41133404,0.14213442,900.555967,3008656476 +2,6843,2072,128,2.76355267,0.129418294,989.041008,3008656476 +2,6844,2073,128,3.32313371,0.128436699,996.599889,3008656476 +2,6845,2074,128,2.72723103,0.128159157,998.75813,3008656476 +2,6846,2075,128,3.4264977,0.12839788,996.901195,3008656476 +2,6847,2076,128,3.27824998,0.128772162,994.003657,3008656476 +2,6848,2077,128,3.00234675,0.128461093,996.410641,3008656476 +2,6849,2078,128,2.50835919,0.14377529,890.278156,3008656476 +2,6850,2079,128,3.55497956,0.142729898,896.798791,3008656476 +2,6851,2080,128,3.08771563,0.129109642,991.405429,3008656476 +2,6852,2081,128,2.89254475,0.129215699,990.591708,3008656476 +2,6853,2082,128,2.85519838,0.128371477,997.106234,3008656476 +2,6854,2083,128,3.31598496,0.128338886,997.359444,3008656476 +2,6855,2084,128,2.44479585,0.129188102,990.803317,3008656476 +2,6856,2085,128,2.98729396,0.128578019,995.504527,3008656476 +2,6857,2086,128,2.96930742,0.148807299,860.17286,3008656476 +2,6858,2087,128,2.49347186,0.141889181,902.112473,3008656476 +2,6859,2088,128,2.60148549,0.130246519,982.751792,3008656476 +2,6860,2089,128,3.08042288,0.12941991,989.028659,3008656476 +2,6861,2090,128,2.76986933,0.131540919,973.081236,3008656476 +2,6862,2091,128,2.30974007,0.131263559,975.137357,3008656476 +2,6863,2092,128,2.04249287,0.130958869,977.40612,3008656476 +2,6864,2093,128,2.07914019,0.132195812,968.260628,3008656476 +2,6865,2094,128,3.25306153,0.13670265,936.338835,3008656476 +2,6866,2095,128,2.26118493,0.149381373,856.867208,3008656476 +2,6867,2096,128,3.02441216,0.142718887,896.867981,3008656476 +2,6868,2097,128,3.06976104,0.13610115,940.476991,3008656476 +2,6869,2098,128,3.03741574,0.131440465,973.824918,3008656476 +2,6870,2099,128,2.90205455,0.131063983,976.622235,3008656476 +2,6871,2100,128,2.69471097,0.1314004,974.121844,3008656476 +2,6872,2101,128,2.81098461,0.144481728,885.925174,3008656476 +2,6873,2102,128,2.69185281,0.130996044,977.128744,3008656476 +2,6874,2103,128,1.84562898,0.144825383,883.822969,3008656476 +2,6875,2104,128,2.68388772,0.12919353,990.761689,3008656476 +2,6876,2105,128,2.49391103,0.129672581,987.101506,3008656476 +2,6877,2106,128,2.2496593,0.129275872,990.130625,3008656476 +2,6878,2107,128,2.94764471,0.129487841,988.509801,3008656476 +2,6879,2108,128,2.69817376,0.129698802,986.901945,3008656476 +2,6880,2109,128,3.01759601,0.141747146,903.016418,3008656476 +2,6881,2110,128,3.02031636,0.12742234,1004.53343,3008656476 +2,6882,2111,128,2.74923515,0.144940369,883.121803,3008656476 +2,6883,2112,128,2.79815769,0.127369132,1004.95307,3008656476 +2,6884,2113,128,2.98177648,0.127820493,1001.40437,3008656476 +2,6885,2114,128,1.95728636,0.127176175,1006.47782,3008656476 +2,6886,2115,128,3.24076748,0.127929734,1000.54925,3008656476 +2,6887,2116,128,2.47750854,0.126714061,1010.14835,3008656476 +2,6888,2117,128,2.98627806,0.14671254,872.454393,3008656476 +2,6889,2118,128,2.77218318,0.128408036,996.822348,3008656476 +2,6890,2119,128,3.31161714,0.144017633,888.780057,3008656476 +2,6891,2120,128,1.85133016,0.128358708,997.205425,3008656476 +2,6892,2121,128,2.21360731,0.128690842,994.63177,3008656476 +2,6893,2122,128,2.45185399,0.127678757,1002.51603,3008656476 +2,6894,2123,128,1.98607314,0.128148575,998.840604,3008656476 +2,6895,2124,128,2.43975759,0.129328848,989.725046,3008656476 +2,6896,2125,128,1.61408448,0.142204692,900.110947,3008656476 +2,6897,2126,128,1.8123951,0.128531561,995.864354,3008656476 +2,6898,2127,128,3.70976043,0.142443094,898.604463,3008656476 +2,6899,2128,128,2.91930699,0.128003321,999.974055,3008656476 +2,6900,2129,128,2.35988498,0.127649589,1002.7451,3008656476 +2,6901,2130,128,3.13989019,0.12862361,995.151668,3008656476 +2,6902,2131,128,2.42981791,0.129719063,986.7478,3008656476 +2,6903,2132,128,3.06525922,0.12934023,989.637949,3008656476 +2,6904,2133,128,2.46827722,0.143890077,889.567944,3008656476 +2,6905,2134,128,3.37416267,0.130053208,984.212554,3008656476 +2,6906,2135,128,2.4967885,0.142614888,897.522003,3008656476 +2,6907,2136,128,3.18394947,0.130665546,979.600238,3008656476 +2,6908,2137,128,2.83876324,0.129818135,985.994753,3008656476 +2,6909,2138,128,2.95007277,0.130634692,979.831606,3008656476 +2,6910,2139,128,3.67177987,0.131711548,971.820633,3008656476 +2,6911,2140,128,3.28797984,0.131211458,975.524561,3008656476 +2,6912,2141,128,2.68118954,0.147489648,867.857519,3008656476 +2,6913,2142,128,2.65560722,0.138952171,921.180282,3008656476 +2,6914,2143,128,2.59270692,0.141503222,904.573042,3008656476 +2,6915,2144,128,3.10260129,0.131613982,972.541048,3008656476 +2,6916,2145,128,3.44648218,0.131783619,971.289155,3008656476 +2,6917,2146,128,3.24885082,0.131292446,974.922807,3008656476 +2,6918,2147,128,3.04730964,0.131414532,974.01709,3008656476 +2,6919,2148,128,2.56629801,0.129989404,984.695645,3008656476 +2,6920,2149,128,3.03051114,0.144071901,888.445277,3008656476 +2,6921,2150,128,2.93673205,0.14121521,906.417942,3008656476 +2,6922,2151,128,2.79244995,0.125802415,1017.46854,3008656476 +2,6923,2152,128,3.07593489,0.129612639,987.558011,3008656476 +2,6924,2153,128,2.6132524,0.130213713,982.999387,3008656476 +2,6925,2154,128,2.45196629,0.129819927,985.981143,3008656476 +2,6926,2155,128,3.4374783,0.129127611,991.267468,3008656476 +2,6927,2156,128,3.17672372,0.128425755,996.684816,3008656476 +2,6928,2157,128,2.78774405,0.142301028,899.501583,3008656476 +2,6929,2158,128,1.49937081,0.128574619,995.530852,3008656476 +2,6930,2159,128,3.39758325,0.124292843,1029.82599,3008656476 +2,6931,2160,128,4.03505373,0.127863441,1001.06801,3008656476 +2,6932,2161,128,3.41383147,0.127095446,1007.11712,3008656476 +2,6933,2162,128,2.40491676,0.127720027,1002.19208,3008656476 +2,6934,2163,128,2.03235292,0.127307461,1005.43989,3008656476 +2,6935,2164,128,2.37300658,0.127717665,1002.21062,3008656476 +2,6936,2165,128,3.15114737,0.140607374,910.336324,3008656476 +2,6937,2166,128,2.86046743,0.127682643,1002.48551,3008656476 +2,6938,2167,128,2.61167097,0.137233864,932.714392,3008656476 +2,6939,2168,128,2.92330527,0.127601535,1003.12273,3008656476 +2,6940,2169,128,3.12947965,0.127322955,1005.31754,3008656476 +2,6941,2170,128,2.56936789,0.128021059,999.835504,3008656476 +2,6942,2171,128,2.56208181,0.128320495,997.502387,3008656476 +2,6943,2172,128,3.04953241,0.128258821,997.982041,3008656476 +2,6944,2173,128,3.58949804,0.143612756,891.28573,3008656476 +2,6945,2174,128,3.17081499,0.127717871,1002.209,3008656476 +2,6946,2175,128,2.7043376,0.141419569,905.108118,3008656476 +2,6947,2176,128,1.36340201,0.128017579,999.862683,3008656476 +2,6948,2177,128,2.26340175,0.128322313,997.488254,3008656476 +2,6949,2178,128,2.33054757,0.128351872,997.258536,3008656476 +2,6950,2179,128,3.23361874,0.128372975,997.094599,3008656476 +2,6951,2180,128,3.14047027,0.129636897,987.373217,3008656476 +2,6952,2181,128,2.33924365,0.142348439,899.201993,3008656476 +2,6953,2182,128,2.79270625,0.128470884,996.334703,3008656476 +2,6954,2183,128,3.29728794,0.142243684,899.864208,3008656476 +2,6955,2184,128,2.90410113,0.12846997,996.341791,3008656476 +2,6956,2185,128,2.98415089,0.128422895,996.707012,3008656476 +2,6957,2186,128,3.10332274,0.128096969,999.243003,3008656476 +2,6958,2187,128,3.09885383,0.128209536,998.365675,3008656476 +2,6959,2188,128,2.65596819,0.128619797,995.18117,3008656476 +2,6960,2189,128,2.69838977,0.144663003,884.815035,3008656476 +2,6961,2190,128,2.63645434,0.128395382,996.92059,3008656476 +2,6962,2191,128,3.24191451,0.138607768,923.469167,3008656476 +2,6963,2192,128,2.65732408,0.128526668,995.902267,3008656476 +2,6964,2193,128,1.75677729,0.129139187,991.178611,3008656476 +2,6965,2194,128,2.74021268,0.128799008,993.796474,3008656476 +2,6966,2195,128,2.52897882,0.129034652,991.981596,3008656476 +2,6967,2196,128,3.10983872,0.129618683,987.511962,3008656476 +2,6968,2197,128,3.11705971,0.143992662,888.934187,3008656476 +2,6969,2198,128,3.20748448,0.129986232,984.719674,3008656476 +2,6970,2199,128,2.42960739,0.140714333,909.644364,3008656476 +2,6971,2200,128,2.94517064,0.13148011,973.531282,3008656476 +2,6972,2201,128,3.07995605,0.132427652,966.565502,3008656476 +2,6973,2202,128,2.59218717,0.138437058,924.607918,3008656476 +2,6974,2203,128,3.48595238,0.13114296,976.034093,3008656476 +2,6975,2204,128,3.53281879,0.130760609,978.888069,3008656476 +2,6976,2205,128,2.43896747,0.143923523,889.36122,3008656476 +2,6977,2206,128,2.65636063,0.148028579,864.697891,3008656476 +2,6978,2207,128,2.70621085,0.129883688,985.497116,3008656476 +2,6979,2208,128,2.73644471,0.130289686,982.426191,3008656476 +2,6980,2209,128,2.9280653,0.131238503,975.32353,3008656476 +2,6981,2210,128,2.39865708,0.129203491,990.685306,3008656476 +2,6982,2211,128,2.14994287,0.128267373,997.915503,3008656476 +2,6983,2212,128,2.47761726,0.129698912,986.901108,3008656476 +2,6984,2213,128,2.56805325,0.140378956,911.81758,3008656476 +2,6985,2214,128,2.53388071,0.144414769,886.33594,3008656476 +2,6986,2215,128,2.95913959,0.128360697,997.189973,3008656476 +2,6987,2216,128,2.06893635,0.128643623,994.996853,3008656476 +2,6988,2217,128,3.11829615,0.12774091,1002.02825,3008656476 +2,6989,2218,128,2.7982583,0.128511409,996.020517,3008656476 +2,6990,2219,128,3.43962097,0.127654295,1002.70813,3008656476 +2,6991,2220,128,2.5101428,0.128127219,999.007088,3008656476 +2,6992,2221,128,1.84844708,0.140069417,913.832603,3008656476 +2,6993,2222,128,2.64005208,0.142205166,900.107947,3008656476 +2,6994,2223,128,2.68257356,0.127837652,1001.26995,3008656476 +2,6995,2224,128,2.46883368,0.128281534,997.805343,3008656476 +2,6996,2225,128,2.46912217,0.129136523,991.199058,3008656476 +2,6997,2226,128,2.9300096,0.128562519,995.624549,3008656476 +2,6998,2227,128,2.6894362,0.128432977,996.628771,3008656476 +2,6999,2228,128,2.6919229,0.128161506,998.739824,3008656476 +2,7000,2229,128,2.59512782,0.143744503,890.468834,3008656476 +2,7001,2230,128,3.09122896,0.141230179,906.32187,3008656476 +2,7002,2231,128,2.0655961,0.129338789,989.648975,3008656476 +2,7003,2232,128,2.90851212,0.128724576,994.371114,3008656476 +2,7004,2233,128,2.30622458,0.128600358,995.331599,3008656476 +2,7005,2234,128,2.75665331,0.128724938,994.368317,3008656476 +2,7006,2235,128,2.03465819,0.128469374,996.346413,3008656476 +2,7007,2236,128,2.50912476,0.128584086,995.457556,3008656476 +2,7008,2237,128,3.53780937,0.141968649,901.607509,3008656476 +2,7009,2238,128,2.68483639,0.140033526,914.066821,3008656476 +2,7010,2239,128,2.57361555,0.128346056,997.303727,3008656476 +2,7011,2240,128,2.64245105,0.12860026,995.332358,3008656476 +2,7012,2241,128,2.52636886,0.1280144,999.887513,3008656476 +2,7013,2242,128,3.39893508,0.128591854,995.397422,3008656476 +2,7014,2243,128,2.81239152,0.128957612,992.574211,3008656476 +2,7015,2244,128,3.03466249,0.130410881,981.513191,3008656476 +2,7016,2245,128,2.97549176,0.14732809,868.8092,3008656476 +2,7017,2246,128,2.06762409,0.144813448,883.895811,3008656476 +2,7018,2247,128,2.26265931,0.13155282,972.993205,3008656476 +2,7019,2248,128,2.52061629,0.138922666,921.375926,3008656476 +2,7020,2249,128,2.87916613,0.142969187,895.29781,3008656476 +2,7021,2250,128,2.93392062,0.142946451,895.440209,3008656476 +2,7022,2251,128,2.10782766,0.131992701,969.750592,3008656476 +2,7023,2252,128,2.01390791,0.149047542,858.786386,3008656476 +2,7024,2253,128,2.8058691,0.139021711,920.719498,3008656476 +2,7025,2254,128,3.39292812,0.149849998,854.187532,3008656476 +2,7026,2255,128,2.62485957,0.132167729,968.466364,3008656476 +2,7027,2256,128,2.93567061,0.132166933,968.472197,3008656476 +2,7028,2257,128,2.67749381,0.134847696,949.219036,3008656476 +2,7029,2258,128,3.01522779,0.131653937,972.245896,3008656476 +2,7030,2259,128,2.69385862,0.130840868,978.28761,3008656476 +2,7031,2260,128,2.65215015,0.146704661,872.501249,3008656476 +2,7032,2261,128,2.53757477,0.132645475,964.978263,3008656476 +2,7033,2262,128,2.31692147,0.137029285,934.106895,3008656476 +2,7034,2263,128,2.7783246,0.13201845,969.561451,3008656476 +2,7035,2264,128,2.04756927,0.131512342,973.292682,3008656476 +2,7036,2265,128,2.31975603,0.111368199,1149.34067,3008656476 +2,7037,2266,128,2.88115382,0.111673468,1146.19884,3008656476 +2,7038,2267,128,2.42032671,0.111580642,1147.15239,3008656476 +2,7039,2268,128,2.65560794,0.125015699,1023.87141,3008656476 +2,7040,2269,128,1.80201006,0.111415789,1148.84974,3008656476 +2,7041,2270,128,2.30996203,0.123275835,1038.32191,3008656476 +2,7042,2271,128,2.56054425,0.111528008,1147.69377,3008656476 +2,7043,2272,128,2.91650724,0.111421192,1148.79403,3008656476 +2,7044,2273,128,2.2337563,0.111394348,1149.07087,3008656476 +2,7045,2274,128,2.20337033,0.111481589,1148.17165,3008656476 +2,7046,2275,128,2.51183987,0.111290712,1150.1409,3008656476 +2,7047,2276,128,2.85363698,0.111415885,1148.84875,3008656476 +2,7048,2277,128,2.12115049,0.111449423,1148.50303,3008656476 +2,7049,2278,128,2.20033121,0.113521303,1127.54167,3008656476 +2,7050,2279,128,2.20129442,0.111533511,1147.63714,3008656476 +2,7051,2280,128,2.15337777,0.120048888,1066.23228,3008656476 +2,7052,2281,128,2.70102811,0.111279825,1150.25343,3008656476 +2,7053,2282,128,3.00233102,0.111615876,1146.79026,3008656476 +2,7054,2283,128,2.24335885,0.111496055,1148.02268,3008656476 +2,7055,2284,128,2.34209085,0.111456041,1148.43483,3008656476 +2,7056,2285,128,1.91305637,0.111368862,1149.33382,3008656476 +2,7057,2286,128,2.1307559,0.111433745,1148.66462,3008656476 +2,7058,2287,128,2.14513874,0.124695478,1026.50074,3008656476 +2,7059,2288,128,1.99516213,0.111326062,1149.77569,3008656476 +2,7060,2289,128,2.03306556,0.124659042,1026.80077,3008656476 +2,7061,2290,128,2.6814034,0.111542235,1147.54738,3008656476 +2,7062,2291,128,3.1708045,0.1114342,1148.65993,3008656476 +2,7063,2292,128,2.15066195,0.111495237,1148.0311,3008656476 +2,7064,2293,128,2.86025,0.11130829,1149.95927,3008656476 +2,7065,2294,128,3.21468377,0.111586717,1147.08994,3008656476 +2,7066,2295,128,3.43637419,0.111439594,1148.60433,3008656476 +2,7067,2296,128,3.43030524,0.126868971,1008.91494,3008656476 +2,7068,2297,128,2.62555575,0.111236093,1150.70564,3008656476 +2,7069,2298,128,2.49316573,0.124575219,1027.49167,3008656476 +2,7070,2299,128,3.40260434,0.111376735,1149.25258,3008656476 +2,7071,2300,128,2.84525847,0.111369101,1149.33136,3008656476 +2,7072,2301,128,3.20195079,0.111340027,1149.63148,3008656476 +2,7073,2302,128,3.75976086,0.111362442,1149.40008,3008656476 +2,7074,2303,128,2.89018536,0.111510158,1147.87749,3008656476 +2,7075,2304,128,2.69993782,0.111401717,1148.99486,3008656476 +2,7076,2305,128,3.20645761,0.129448011,988.813957,3008656476 +2,7077,2306,128,3.74185538,0.111881048,1144.07223,3008656476 +2,7078,2307,128,3.12458634,0.12276218,1042.6664,3008656476 +2,7079,2308,128,3.11919904,0.111386504,1149.15179,3008656476 +2,7080,2309,128,3.53538251,0.111318287,1149.856,3008656476 +2,7081,2310,128,2.83444262,0.111511033,1147.86848,3008656476 +2,7082,2311,128,2.71456957,0.111368386,1149.33874,3008656476 +2,7083,2312,128,2.64661145,0.111431556,1148.68718,3008656476 +2,7084,2313,128,3.21694899,0.111401823,1148.99376,3008656476 +2,7085,2314,128,3.73470545,0.111552468,1147.44212,3008656476 +2,7086,2315,128,3.48598099,0.116556714,1098.17784,3008656476 +2,7087,2316,128,4.00834465,0.111365334,1149.37023,3008656476 +2,7088,2317,128,3.410743,0.11360532,1126.7078,3008656476 +2,7089,2318,128,3.49894762,0.11144919,1148.50543,3008656476 +2,7090,2319,128,3.39550567,0.111325751,1149.7789,3008656476 +2,7091,2320,128,3.60914874,0.111428139,1148.72241,3008656476 +2,7092,2321,128,3.64532256,0.111334089,1149.6928,3008656476 +2,7093,2322,128,3.45833349,0.111448395,1148.51362,3008656476 +2,7094,2323,128,3.41857886,0.11129163,1150.13142,3008656476 +2,7095,2324,128,3.05120015,0.125874915,1016.88251,3008656476 +2,7096,2325,128,3.76305413,0.111260156,1150.45677,3008656476 +2,7097,2326,128,3.42708421,0.124513867,1027.99795,3008656476 +2,7098,2327,128,3.93318772,0.111341625,1149.61498,3008656476 +2,7099,2328,128,3.46244836,0.111442435,1148.57505,3008656476 +2,7100,2329,128,3.02419329,0.11143655,1148.6357,3008656476 +2,7101,2330,128,3.53042102,0.111369063,1149.33175,3008656476 +2,7102,2331,128,3.34940863,0.111476683,1148.22218,3008656476 +2,7103,2332,128,2.83670044,0.111476321,1148.22591,3008656476 +2,7104,2333,128,2.85260653,0.125190208,1022.44418,3008656476 +2,7105,2334,128,2.44433355,0.11144724,1148.52553,3008656476 +2,7106,2335,128,3.19502807,0.124420999,1028.76525,3008656476 +2,7107,2336,128,3.75418162,0.111384384,1149.17366,3008656476 +2,7108,2337,128,3.53082085,0.111391773,1149.09743,3008656476 +2,7109,2338,128,3.01184225,0.11141985,1148.80787,3008656476 +2,7110,2339,128,2.86780357,0.111407045,1148.93991,3008656476 +2,7111,2340,128,2.76233315,0.111397506,1149.03829,3008656476 +2,7112,2341,128,3.50299335,0.111289224,1150.15628,3008656476 +2,7113,2342,128,3.24286842,0.124502206,1028.09423,3008656476 +2,7114,2343,128,3.45652843,0.111668312,1146.25177,3008656476 +2,7115,2344,128,3.19770074,0.122961026,1040.98025,3008656476 +2,7116,2345,128,3.63624191,0.111455519,1148.44021,3008656476 +2,7117,2346,128,3.52921987,0.111595088,1147.00389,3008656476 +2,7118,2347,128,3.47313595,0.111374063,1149.28015,3008656476 +2,7119,2348,128,3.47094607,0.111481421,1148.17338,3008656476 +2,7120,2349,128,3.48712254,0.111286748,1150.18187,3008656476 +2,7121,2350,128,3.19475579,0.111513828,1147.83971,3008656476 +2,7122,2351,128,3.31820107,0.111447012,1148.52788,3008656476 +2,7123,2352,128,2.68554902,0.120611662,1061.25724,3008656476 +2,7124,2353,128,2.89212489,0.111187679,1151.20669,3008656476 +2,7125,2354,128,3.43716717,0.114057664,1122.23936,3008656476 +2,7126,2355,128,3.00723028,0.111501894,1147.96256,3008656476 +2,7127,2356,128,3.30573678,0.111403236,1148.97919,3008656476 +2,7128,2357,128,2.64021325,0.11139541,1149.05991,3008656476 +2,7129,2358,128,2.90263009,0.111524386,1147.73104,3008656476 +2,7130,2359,128,3.08310652,0.111582094,1147.13746,3008656476 +2,7131,2360,128,3.2101686,0.111464233,1148.35043,3008656476 +2,7132,2361,128,2.58908439,0.127123377,1006.89584,3008656476 +2,7133,2362,128,2.47559071,0.111512593,1147.85242,3008656476 +2,7134,2363,128,2.27796793,0.12595079,1016.26993,3008656476 +2,7135,2364,128,2.1599741,0.111477136,1148.21751,3008656476 +2,7136,2365,128,2.52079463,0.111335387,1149.67939,3008656476 +2,7137,2366,128,2.41968536,0.111446006,1148.53824,3008656476 +2,7138,2367,128,3.11231446,0.111305042,1149.99283,3008656476 +2,7139,2368,128,2.70960736,0.111513064,1147.84757,3008656476 +2,7140,2369,128,2.72082567,0.111477735,1148.21134,3008656476 +2,7141,2370,128,2.5269289,0.127795174,1001.60277,3008656476 +2,7142,2371,128,2.43351769,0.111460239,1148.39158,3008656476 +2,7143,2372,128,3.42470694,0.125904452,1016.64395,3008656476 +2,7144,2373,128,3.38841653,0.111334954,1149.68386,3008656476 +2,7145,2374,128,3.51242518,0.111454468,1148.45104,3008656476 +2,7146,2375,128,2.39318037,0.111427211,1148.73197,3008656476 +2,7147,2376,128,2.58738494,0.111645597,1146.48498,3008656476 +2,7148,2377,128,3.50396705,0.111504075,1147.94011,3008656476 +2,7149,2378,128,3.02700663,0.111491818,1148.06631,3008656476 +2,7150,2379,128,2.30964422,0.125002888,1023.97634,3008656476 +2,7151,2380,128,2.92850757,0.111693945,1145.98871,3008656476 +2,7152,2381,128,2.40898156,0.123559134,1035.94122,3008656476 +2,7153,2382,128,2.77754426,0.111468604,1148.3054,3008656476 +2,7154,2383,128,2.97411799,0.130638517,979.802917,3008656476 +2,7155,2384,64,2.39643288,0.128529886,497.938666,3008656476 +3,7156,0,128,1.92805278,0.126686406,1010.36886,3008656476 +3,7157,1,128,2.49058771,0.141333121,905.661738,3008656476 +3,7158,2,128,2.35541105,0.132614265,965.205365,3008656476 +3,7159,3,128,2.67375588,0.132390177,966.839103,3008656476 +3,7160,4,128,3.24516869,0.133623922,957.912312,3008656476 +3,7161,5,128,3.54116607,0.149658746,855.279116,3008656476 +3,7162,6,128,3.33440065,0.149342691,857.089149,3008656476 +3,7163,7,128,3.44604683,0.133762279,956.921495,3008656476 +3,7164,8,128,3.74790716,0.133552228,958.426542,3008656476 +3,7165,9,128,3.38141036,0.132913649,963.031269,3008656476 +3,7166,10,128,2.90574503,0.133403524,959.494893,3008656476 +3,7167,11,128,3.23338509,0.132744474,964.258595,3008656476 +3,7168,12,128,2.50451946,0.14627763,875.048358,3008656476 +3,7169,13,128,2.23392916,0.131516159,973.264434,3008656476 +3,7170,14,128,2.32966781,0.144529477,885.632486,3008656476 +3,7171,15,128,2.40387511,0.131496154,973.4125,3008656476 +3,7172,16,128,3.17758799,0.130582431,980.223748,3008656476 +3,7173,17,128,3.1116612,0.133383046,959.642202,3008656476 +3,7174,18,128,2.99239588,0.1302994,982.35295,3008656476 +3,7175,19,128,3.09063625,0.129559995,987.959285,3008656476 +3,7176,20,128,2.86330318,0.14433442,886.829351,3008656476 +3,7177,21,128,3.33731198,0.129286037,990.052777,3008656476 +3,7178,22,128,2.68519044,0.141983449,901.513528,3008656476 +3,7179,23,128,1.87944508,0.129274388,990.141992,3008656476 +3,7180,24,128,2.3192811,0.130403922,981.56557,3008656476 +3,7181,25,128,2.83347964,0.12958193,987.792048,3008656476 +3,7182,26,128,2.76449394,0.129514603,988.305543,3008656476 +3,7183,27,128,3.02991056,0.12999015,984.689994,3008656476 +3,7184,28,128,2.68837571,0.142688749,897.057413,3008656476 +3,7185,29,128,2.65099502,0.129255519,990.286535,3008656476 +3,7186,30,128,2.33619237,0.138195413,926.224664,3008656476 +3,7187,31,128,2.79815698,0.129561559,987.947359,3008656476 +3,7188,32,128,3.09927464,0.12970661,986.842536,3008656476 +3,7189,33,128,2.97655964,0.128462444,996.400162,3008656476 +3,7190,34,128,2.99792719,0.130304557,982.314072,3008656476 +3,7191,35,128,3.02221537,0.129743773,986.559871,3008656476 +3,7192,36,128,3.03536272,0.14672401,872.38619,3008656476 +3,7193,37,128,2.58615637,0.129989044,984.698372,3008656476 +3,7194,38,128,2.62857723,0.137032106,934.087666,3008656476 +3,7195,39,128,2.03622937,0.129975641,984.799913,3008656476 +3,7196,40,128,2.97951531,0.128699021,994.56856,3008656476 +3,7197,41,128,2.91024661,0.129361217,989.477395,3008656476 +3,7198,42,128,3.06249857,0.129538962,988.119698,3008656476 +3,7199,43,128,3.32170963,0.12970443,986.859123,3008656476 +3,7200,44,128,3.54416442,0.150625221,849.791284,3008656476 +3,7201,45,128,3.25338602,0.128464293,996.385821,3008656476 +3,7202,46,128,2.55202055,0.132982915,962.52966,3008656476 +3,7203,47,128,3.10361743,0.129122657,991.3055,3008656476 +3,7204,48,128,2.65942025,0.130083218,983.985498,3008656476 +3,7205,49,128,3.01736999,0.129362385,989.468461,3008656476 +3,7206,50,128,2.43422747,0.129774206,986.328516,3008656476 +3,7207,51,128,3.39868927,0.12908013,991.632097,3008656476 +3,7208,52,128,2.39532852,0.141141329,906.89241,3008656476 +3,7209,53,128,3.18040967,0.129561933,987.944507,3008656476 +3,7210,54,128,2.30873084,0.137010775,934.233092,3008656476 +3,7211,55,128,2.51914096,0.129258576,990.263114,3008656476 +3,7212,56,128,3.39120388,0.129685599,987.00242,3008656476 +3,7213,57,128,2.72017908,0.12949268,988.472862,3008656476 +3,7214,58,128,2.7304256,0.129652391,987.255222,3008656476 +3,7215,59,128,2.91950703,0.128994557,992.28993,3008656476 +3,7216,60,128,2.76215577,0.143448139,892.308544,3008656476 +3,7217,61,128,3.46094179,0.130662415,979.623712,3008656476 +3,7218,62,128,2.5646019,0.136357528,938.708716,3008656476 +3,7219,63,128,3.25226283,0.129986904,984.714583,3008656476 +3,7220,64,128,2.36570001,0.12969315,986.944954,3008656476 +3,7221,65,128,3.22325611,0.130355853,981.927524,3008656476 +3,7222,66,128,2.94861126,0.130372204,981.804373,3008656476 +3,7223,67,128,3.4012084,0.131377198,974.29388,3008656476 +3,7224,68,128,3.82653952,0.145486605,879.806082,3008656476 +3,7225,69,128,2.92443609,0.130766488,978.84406,3008656476 +3,7226,70,128,3.48917198,0.132426083,966.576954,3008656476 +3,7227,71,128,3.23277783,0.12961738,987.521889,3008656476 +3,7228,72,128,3.00954843,0.130073073,984.062243,3008656476 +3,7229,73,128,2.98529935,0.130605882,980.047744,3008656476 +3,7230,74,128,2.68597603,0.131668345,972.139507,3008656476 +3,7231,75,128,2.64629292,0.131167793,975.849308,3008656476 +3,7232,76,128,3.72493339,0.145659931,878.75917,3008656476 +3,7233,77,128,3.42939758,0.142164773,900.363693,3008656476 +3,7234,78,128,2.98187375,0.125087579,1023.28306,3008656476 +3,7235,79,128,2.88443708,0.130862266,978.127645,3008656476 +3,7236,80,128,3.28860545,0.131255259,975.19902,3008656476 +3,7237,81,128,3.3855617,0.132023163,969.52684,3008656476 +3,7238,82,128,3.33657169,0.132124182,968.785563,3008656476 +3,7239,83,128,3.44533277,0.131700802,971.899928,3008656476 +3,7240,84,128,2.73679709,0.145251001,881.23317,3008656476 +3,7241,85,128,2.68913245,0.145775839,878.060458,3008656476 +3,7242,86,128,2.85927963,0.134141978,954.212856,3008656476 +3,7243,87,128,2.3078475,0.133354312,959.848977,3008656476 +3,7244,88,128,2.45520282,0.133280121,960.383282,3008656476 +3,7245,89,128,2.95558262,0.133281705,960.371868,3008656476 +3,7246,90,128,2.68304563,0.133055315,962.005915,3008656476 +3,7247,91,128,2.82474637,0.139226379,919.366006,3008656476 +3,7248,92,128,2.86200309,0.139954183,914.585025,3008656476 +3,7249,93,128,2.58134842,0.147617614,867.105195,3008656476 +3,7250,94,128,2.48975754,0.13242151,966.610334,3008656476 +3,7251,95,128,2.80418015,0.135419206,945.213045,3008656476 +3,7252,96,128,2.50098252,0.132548162,965.686721,3008656476 +3,7253,97,128,3.09053254,0.133164095,961.220065,3008656476 +3,7254,98,128,2.92586231,0.132261139,967.782381,3008656476 +3,7255,99,128,2.92068934,0.146794059,871.969894,3008656476 +3,7256,100,128,3.12970281,0.13151937,973.240672,3008656476 +3,7257,101,128,2.61265469,0.147322629,868.841405,3008656476 +3,7258,102,128,2.94069338,0.132295092,967.534003,3008656476 +3,7259,103,128,2.97843933,0.130869052,978.076925,3008656476 +3,7260,104,128,2.29056144,0.129910647,985.292607,3008656476 +3,7261,105,128,3.05932355,0.130492118,980.902157,3008656476 +3,7262,106,128,2.89873767,0.130903933,977.816304,3008656476 +3,7263,107,128,2.56638861,0.144375395,886.577661,3008656476 +3,7264,108,128,2.92826319,0.129533911,988.158228,3008656476 +3,7265,109,128,2.05387282,0.14456471,885.416641,3008656476 +3,7266,110,128,2.64121723,0.12924896,990.336789,3008656476 +3,7267,111,128,2.82749033,0.1286667,994.818395,3008656476 +3,7268,112,128,3.03986382,0.13041021,981.518242,3008656476 +3,7269,113,128,3.53212786,0.128910167,992.939525,3008656476 +3,7270,114,128,3.40511203,0.129899512,985.377066,3008656476 +3,7271,115,128,3.30999541,0.143647992,891.067102,3008656476 +3,7272,116,128,2.52178764,0.130130479,983.628132,3008656476 +3,7273,117,128,2.95522332,0.138167496,926.41181,3008656476 +3,7274,118,128,2.81607604,0.128570203,995.565046,3008656476 +3,7275,119,128,3.26197767,0.129878699,985.534972,3008656476 +3,7276,120,128,2.90407991,0.129497205,988.438322,3008656476 +3,7277,121,128,2.96048331,0.129198884,990.720632,3008656476 +3,7278,122,128,2.27293038,0.129855688,985.709613,3008656476 +3,7279,123,128,2.4874754,0.144308512,886.988565,3008656476 +3,7280,124,128,2.35914826,0.129807176,986.077996,3008656476 +3,7281,125,128,2.36545062,0.136609392,936.978037,3008656476 +3,7282,126,128,2.39848137,0.129669577,987.124374,3008656476 +3,7283,127,128,3.2808423,0.129285972,990.053275,3008656476 +3,7284,128,128,3.18033648,0.129982166,984.750477,3008656476 +3,7285,129,128,3.01104069,0.130458839,981.152377,3008656476 +3,7286,130,128,2.95871329,0.1298274,985.924389,3008656476 +3,7287,131,128,2.73189068,0.150258668,851.864333,3008656476 +3,7288,132,128,2.34567642,0.132574092,965.497844,3008656476 +3,7289,133,128,2.73400044,0.131638934,972.356704,3008656476 +3,7290,134,128,2.8483603,0.130560559,980.387959,3008656476 +3,7291,135,128,2.5768702,0.129094798,991.519426,3008656476 +3,7292,136,128,2.50666618,0.129090457,991.552768,3008656476 +3,7293,137,128,2.39614487,0.129510962,988.333327,3008656476 +3,7294,138,128,2.11933804,0.129346583,989.589342,3008656476 +3,7295,139,128,2.47234201,0.147057274,870.409171,3008656476 +3,7296,140,128,1.92382741,0.142175618,900.295014,3008656476 +3,7297,141,128,1.9142437,0.125659105,1018.62893,3008656476 +3,7298,142,128,2.59042048,0.129552209,988.01866,3008656476 +3,7299,143,128,2.11413097,0.128430412,996.648675,3008656476 +3,7300,144,128,1.54919231,0.129177073,990.887911,3008656476 +3,7301,145,128,1.34979296,0.1291472,991.117113,3008656476 +3,7302,146,128,2.36055899,0.130291152,982.415137,3008656476 +3,7303,147,128,3.17325068,0.142753963,896.647612,3008656476 +3,7304,148,128,3.3546648,0.13021254,983.008242,3008656476 +3,7305,149,128,2.53327036,0.133043962,962.088005,3008656476 +3,7306,150,128,1.9242835,0.128758531,994.108887,3008656476 +3,7307,151,128,1.52296019,0.128476005,996.294989,3008656476 +3,7308,152,128,2.43379688,0.130086373,983.961633,3008656476 +3,7309,153,128,2.74824715,0.130695106,979.378677,3008656476 +3,7310,154,128,1.96305406,0.129238926,990.413678,3008656476 +3,7311,155,128,3.18520927,0.143552838,891.657746,3008656476 +3,7312,156,128,3.20347404,0.131692098,971.964164,3008656476 +3,7313,157,128,3.18074703,0.132848779,963.501516,3008656476 +3,7314,158,128,2.45437741,0.129537543,988.130522,3008656476 +3,7315,159,128,2.21997833,0.129935202,985.106407,3008656476 +3,7316,160,128,2.51167464,0.130898599,977.85615,3008656476 +3,7317,161,128,2.61564827,0.130792061,978.652672,3008656476 +3,7318,162,128,2.30676389,0.130194198,983.14673,3008656476 +3,7319,163,128,3.23637915,0.145238184,881.310937,3008656476 +3,7320,164,128,3.05174971,0.135139101,947.172203,3008656476 +3,7321,165,128,2.68501306,0.129999427,984.619725,3008656476 +3,7322,166,128,3.02102351,0.131264888,975.127484,3008656476 +3,7323,167,128,2.59725857,0.130821919,978.42931,3008656476 +3,7324,168,128,2.47692513,0.130776106,978.77207,3008656476 +3,7325,169,128,2.58780122,0.130526943,980.640449,3008656476 +3,7326,170,128,2.71671224,0.131977514,969.862184,3008656476 +3,7327,171,128,2.47811127,0.147206367,869.527607,3008656476 +3,7328,172,128,2.50739837,0.146377372,874.452098,3008656476 +3,7329,173,128,2.46416903,0.133322108,960.080829,3008656476 +3,7330,174,128,2.0941906,0.132243591,967.9108,3008656476 +3,7331,175,128,2.83271074,0.133809659,956.582663,3008656476 +3,7332,176,128,2.01378632,0.132763317,964.121739,3008656476 +3,7333,177,128,3.21243882,0.133909643,955.868428,3008656476 +3,7334,178,128,2.11144733,0.13327728,960.403754,3008656476 +3,7335,179,128,3.32327533,0.148451276,862.235768,3008656476 +3,7336,180,128,2.6691339,0.15029551,851.655515,3008656476 +3,7337,181,128,2.71888041,0.132800417,963.852395,3008656476 +3,7338,182,128,3.15511489,0.135377776,945.502311,3008656476 +3,7339,183,128,1.94053495,0.132178228,968.389439,3008656476 +3,7340,184,128,2.10168076,0.133308253,960.180612,3008656476 +3,7341,185,128,2.76869106,0.131561029,972.932494,3008656476 +3,7342,186,128,2.28087687,0.146167226,875.709306,3008656476 +3,7343,187,128,2.18328857,0.132345725,967.163843,3008656476 +3,7344,188,128,3.00761342,0.145389684,880.392587,3008656476 +3,7345,189,128,2.76328349,0.130435503,981.327913,3008656476 +3,7346,190,128,2.70674086,0.130922918,977.674512,3008656476 +3,7347,191,128,2.15160894,0.130201461,983.091887,3008656476 +3,7348,192,128,2.0093205,0.132692831,964.633877,3008656476 +3,7349,193,128,2.79764318,0.129598581,987.665135,3008656476 +3,7350,194,128,2.5223496,0.144761426,884.213451,3008656476 +3,7351,195,128,3.06980586,0.12980667,986.08184,3008656476 +3,7352,196,128,2.66109395,0.141823691,902.529042,3008656476 +3,7353,197,128,2.49172735,0.129851106,985.744396,3008656476 +3,7354,198,128,2.45876861,0.129295279,989.982009,3008656476 +3,7355,199,128,2.89958286,0.129577527,987.825613,3008656476 +3,7356,200,128,2.78799415,0.129278417,990.111134,3008656476 +3,7357,201,128,2.50471592,0.129091849,991.542076,3008656476 +3,7358,202,128,3.36622453,0.142400559,898.872876,3008656476 +3,7359,203,128,2.66474414,0.129131362,991.238674,3008656476 +3,7360,204,128,2.6834147,0.142483931,898.346916,3008656476 +3,7361,205,128,2.67072964,0.129332642,989.696012,3008656476 +3,7362,206,128,2.06958485,0.128999535,992.251639,3008656476 +3,7363,207,128,2.36088014,0.130255913,982.680917,3008656476 +3,7364,208,128,2.1449039,0.128795519,993.823395,3008656476 +3,7365,209,128,2.38525987,0.129876984,985.547986,3008656476 +3,7366,210,128,2.094028,0.143279362,893.359645,3008656476 +3,7367,211,128,2.53689814,0.129791242,986.199053,3008656476 +3,7368,212,128,2.6372788,0.140438973,911.427913,3008656476 +3,7369,213,128,2.39948058,0.129662557,987.177817,3008656476 +3,7370,214,128,1.89104116,0.129858941,985.684921,3008656476 +3,7371,215,128,2.0307467,0.130177151,983.275475,3008656476 +3,7372,216,128,2.866009,0.130284776,982.463216,3008656476 +3,7373,217,128,2.60037112,0.131136902,976.079182,3008656476 +3,7374,218,128,2.22690272,0.146910953,871.276085,3008656476 +3,7375,219,128,2.87223816,0.129048321,991.876524,3008656476 +3,7376,220,128,2.23455954,0.136225092,939.621314,3008656476 +3,7377,221,128,2.15801048,0.129441003,988.867492,3008656476 +3,7378,222,128,2.4912343,0.129838893,985.837117,3008656476 +3,7379,223,128,2.08396912,0.129213156,990.611204,3008656476 +3,7380,224,128,2.42496634,0.129302145,989.92944,3008656476 +3,7381,225,128,2.53449798,0.128939455,992.713983,3008656476 +3,7382,226,128,2.43723345,0.145012683,882.681413,3008656476 +3,7383,227,128,2.81915307,0.129621637,987.489457,3008656476 +3,7384,228,128,2.37601495,0.135681388,943.386576,3008656476 +3,7385,229,128,2.47191262,0.129040821,991.934173,3008656476 +3,7386,230,128,2.54348755,0.129000056,992.247631,3008656476 +3,7387,231,128,2.93547034,0.129278278,990.112198,3008656476 +3,7388,232,128,2.41035652,0.129590721,987.725039,3008656476 +3,7389,233,128,2.84663224,0.129687296,986.989504,3008656476 +3,7390,234,128,2.63329792,0.144238542,887.418843,3008656476 +3,7391,235,128,2.12439966,0.131219782,975.462678,3008656476 +3,7392,236,128,2.9251318,0.135125571,947.267042,3008656476 +3,7393,237,128,2.22032118,0.129883641,985.497473,3008656476 +3,7394,238,128,2.80992818,0.143739066,890.502517,3008656476 +3,7395,239,128,3.0974319,0.173022129,739.789764,3008656476 +3,7396,240,128,2.84070873,0.130510684,980.762617,3008656476 +3,7397,241,128,2.28949833,0.145885743,877.398966,3008656476 +3,7398,242,128,2.43543744,0.131585995,972.747898,3008656476 +3,7399,243,128,2.6394577,0.14643704,874.095789,3008656476 +3,7400,244,128,3.04509377,0.132246575,967.88896,3008656476 +3,7401,245,128,2.21167755,0.133950708,955.57539,3008656476 +3,7402,246,128,2.64922452,0.132683869,964.699032,3008656476 +3,7403,247,128,2.71802497,0.134270174,953.301811,3008656476 +3,7404,248,128,2.77276111,0.133914427,955.834281,3008656476 +3,7405,249,128,1.49539506,0.15005224,853.036249,3008656476 +3,7406,250,128,2.15258408,0.134227145,953.607409,3008656476 +3,7407,251,128,3.0242393,0.146544793,873.453075,3008656476 +3,7408,252,128,2.90985894,0.132035212,969.438365,3008656476 +3,7409,253,128,2.52088928,0.132238699,967.946607,3008656476 +3,7410,254,128,2.70330906,0.133259764,960.529992,3008656476 +3,7411,255,128,2.8420732,0.132607515,965.254496,3008656476 +3,7412,256,128,2.50413918,0.131772053,971.374408,3008656476 +3,7413,257,128,2.81443429,0.143935401,889.287827,3008656476 +3,7414,258,128,2.28703189,0.131222746,975.440645,3008656476 +3,7415,259,128,2.75074077,0.135492676,944.700509,3008656476 +3,7416,260,128,2.92172718,0.133683303,957.486815,3008656476 +3,7417,261,128,2.47346783,0.132208699,968.166248,3008656476 +3,7418,262,128,2.88450241,0.131435321,973.86303,3008656476 +3,7419,263,128,2.01910973,0.132764096,964.116082,3008656476 +3,7420,264,128,2.29803038,0.131242088,975.296888,3008656476 +3,7421,265,128,2.42021537,0.144278985,887.170089,3008656476 +3,7422,266,128,2.31420374,0.147590255,867.265932,3008656476 +3,7423,267,128,1.6988914,0.129347066,989.585647,3008656476 +3,7424,268,128,1.84050262,0.128904583,992.982538,3008656476 +3,7425,269,128,2.57734776,0.129742433,986.570061,3008656476 +3,7426,270,128,3.04741478,0.129414407,989.070715,3008656476 +3,7427,271,128,2.10214734,0.128155083,998.78988,3008656476 +3,7428,272,128,2.44340825,0.129757876,986.452645,3008656476 +3,7429,273,128,2.90488505,0.143228612,893.676188,3008656476 +3,7430,274,128,2.17703772,0.142849307,896.049149,3008656476 +3,7431,275,128,2.53847337,0.130175693,983.286488,3008656476 +3,7432,276,128,2.68522787,0.129182494,990.846329,3008656476 +3,7433,277,128,3.04593563,0.129937682,985.087605,3008656476 +3,7434,278,128,2.20929909,0.130248913,982.733729,3008656476 +3,7435,279,128,2.25683141,0.129887009,985.471919,3008656476 +3,7436,280,128,2.4311583,0.129940756,985.064301,3008656476 +3,7437,281,128,2.21189141,0.137383666,931.697368,3008656476 +3,7438,282,128,1.73154056,0.144120399,888.146306,3008656476 +3,7439,283,128,2.13078952,0.128867697,993.266761,3008656476 +3,7440,284,128,1.97047865,0.130826216,978.397174,3008656476 +3,7441,285,128,2.00585866,0.13037903,981.752971,3008656476 +3,7442,286,128,2.43811989,0.130200865,983.096387,3008656476 +3,7443,287,128,2.06036592,0.129806361,986.084187,3008656476 +3,7444,288,128,1.94623327,0.129345574,989.597062,3008656476 +3,7445,289,128,2.6061089,0.134840098,949.272523,3008656476 +3,7446,290,128,2.22857738,0.143729354,890.562689,3008656476 +3,7447,291,128,2.91009188,0.13103759,976.818942,3008656476 +3,7448,292,128,2.54071164,0.129916804,985.245912,3008656476 +3,7449,293,128,2.03638458,0.129939952,985.070396,3008656476 +3,7450,294,128,2.06382823,0.13070359,979.315105,3008656476 +3,7451,295,128,2.42630172,0.130983809,977.220017,3008656476 +3,7452,296,128,3.03129435,0.130345221,982.007618,3008656476 +3,7453,297,128,2.40122175,0.132427429,966.56713,3008656476 +3,7454,298,128,2.58214426,0.140734958,909.511054,3008656476 +3,7455,299,128,2.76778316,0.129870365,985.598216,3008656476 +3,7456,300,128,2.39093971,0.12943613,988.904721,3008656476 +3,7457,301,128,2.48338556,0.129861961,985.661998,3008656476 +3,7458,302,128,2.39982533,0.129816425,986.007741,3008656476 +3,7459,303,128,2.59994411,0.13075058,978.963153,3008656476 +3,7460,304,128,2.24937153,0.129219891,990.559573,3008656476 +3,7461,305,128,2.34290433,0.133623236,957.917229,3008656476 +3,7462,306,128,2.39661717,0.14184706,902.380352,3008656476 +3,7463,307,128,2.06288624,0.130132225,983.614935,3008656476 +3,7464,308,128,2.93083334,0.129802744,986.111665,3008656476 +3,7465,309,128,2.79006481,0.130619262,979.947353,3008656476 +3,7466,310,128,2.36154342,0.129055397,991.82214,3008656476 +3,7467,311,128,2.19432092,0.130269599,982.577677,3008656476 +3,7468,312,128,2.24179363,0.13050808,980.782186,3008656476 +3,7469,313,128,2.39568639,0.133108555,961.621137,3008656476 +3,7470,314,128,1.69991708,0.143259401,893.484121,3008656476 +3,7471,315,128,2.33910227,0.129249196,990.33498,3008656476 +3,7472,316,128,2.51084089,0.12947685,988.593714,3008656476 +3,7473,317,128,2.39578629,0.130637954,979.807139,3008656476 +3,7474,318,128,2.71541071,0.12903164,992.004752,3008656476 +3,7475,319,128,2.70941448,0.129420303,989.025655,3008656476 +3,7476,320,128,3.11621165,0.129563504,987.932528,3008656476 +3,7477,321,128,2.46883392,0.133020692,962.256308,3008656476 +3,7478,322,128,2.49960828,0.143108667,894.425213,3008656476 +3,7479,323,128,2.48792601,0.13072691,979.140408,3008656476 +3,7480,324,128,1.79497969,0.129642579,987.329942,3008656476 +3,7481,325,128,2.96712089,0.129821238,985.971186,3008656476 +3,7482,326,128,2.67031693,0.129804344,986.09951,3008656476 +3,7483,327,128,2.99994421,0.129681709,987.032026,3008656476 +3,7484,328,128,2.81971622,0.129620262,987.499933,3008656476 +3,7485,329,128,2.68098187,0.13257177,965.514755,3008656476 +3,7486,330,128,3.4609251,0.143763181,890.353143,3008656476 +3,7487,331,128,2.78042269,0.128851542,993.391294,3008656476 +3,7488,332,128,2.32748652,0.128467044,996.364484,3008656476 +3,7489,333,128,2.91316628,0.129717599,986.758936,3008656476 +3,7490,334,128,2.61121035,0.130093549,983.907357,3008656476 +3,7491,335,128,3.0977006,0.130195936,983.133606,3008656476 +3,7492,336,128,2.69863701,0.130281676,982.486593,3008656476 +3,7493,337,128,2.84238529,0.132691763,964.641641,3008656476 +3,7494,338,128,2.50361776,0.143492688,892.031516,3008656476 +3,7495,339,128,2.87437463,0.130882122,977.979254,3008656476 +3,7496,340,128,2.46474791,0.130215681,982.98453,3008656476 +3,7497,341,128,2.56278348,0.131569345,972.870998,3008656476 +3,7498,342,128,2.6101799,0.130867051,978.09188,3008656476 +3,7499,343,128,2.35006738,0.132252861,967.842957,3008656476 +3,7500,344,128,3.03227639,0.140774216,909.257417,3008656476 +3,7501,345,128,2.16163373,0.127725758,1002.14712,3008656476 +3,7502,346,128,2.25698304,0.142745471,896.700954,3008656476 +3,7503,347,128,3.29314327,0.13174248,971.592458,3008656476 +3,7504,348,128,2.77728033,0.131903014,970.409971,3008656476 +3,7505,349,128,2.98864222,0.131825057,970.98384,3008656476 +3,7506,350,128,3.01502514,0.132563434,965.575469,3008656476 +3,7507,351,128,2.83157802,0.132787563,963.945697,3008656476 +3,7508,352,128,3.17487597,0.146756294,872.194279,3008656476 +3,7509,353,128,2.89819121,0.134096798,954.534351,3008656476 +3,7510,354,128,2.44780636,0.145385707,880.41667,3008656476 +3,7511,355,128,2.6426301,0.133051823,962.031163,3008656476 +3,7512,356,128,2.83272767,0.133359245,959.813472,3008656476 +3,7513,357,128,2.52713895,0.132860943,963.413303,3008656476 +3,7514,358,128,1.72616971,0.133465437,959.049795,3008656476 +3,7515,359,128,2.30301952,0.134625658,950.784582,3008656476 +3,7516,360,128,2.36118984,0.148121956,864.15278,3008656476 +3,7517,361,128,2.34009194,0.133787539,956.740822,3008656476 +3,7518,362,128,2.25590467,0.146071263,876.284612,3008656476 +3,7519,363,128,2.43672609,0.13236008,967.05895,3008656476 +3,7520,364,128,2.77123427,0.132590035,965.38175,3008656476 +3,7521,365,128,2.75970769,0.131514601,973.275963,3008656476 +3,7522,366,128,2.7649281,0.13094806,977.486799,3008656476 +3,7523,367,128,2.75923586,0.131196116,975.638639,3008656476 +3,7524,368,128,2.17679214,0.145718141,878.408132,3008656476 +3,7525,369,128,2.60896277,0.14481864,883.864121,3008656476 +3,7526,370,128,2.52991128,0.124278963,1029.941,3008656476 +3,7527,371,128,2.32334399,0.1316631,972.178234,3008656476 +3,7528,372,128,2.72023749,0.131076962,976.525532,3008656476 +3,7529,373,128,3.13157225,0.132235676,967.968735,3008656476 +3,7530,374,128,2.82298017,0.130655688,979.674149,3008656476 +3,7531,375,128,2.16312218,0.130535588,980.575504,3008656476 +3,7532,376,128,3.22082758,0.143162165,894.090977,3008656476 +3,7533,377,128,1.9169662,0.144076075,888.419538,3008656476 +3,7534,378,128,2.58315802,0.129557096,987.981392,3008656476 +3,7535,379,128,1.77674365,0.128890688,993.089586,3008656476 +3,7536,380,128,2.2169857,0.128953795,992.603591,3008656476 +3,7537,381,128,2.17050123,0.128677231,994.736979,3008656476 +3,7538,382,128,1.88284552,0.130163206,983.380818,3008656476 +3,7539,383,128,2.06864357,0.128288812,997.748736,3008656476 +3,7540,384,128,3.3165772,0.140094977,913.665877,3008656476 +3,7541,385,128,3.20514727,0.142338848,899.262582,3008656476 +3,7542,386,128,2.60229349,0.130414527,981.485751,3008656476 +3,7543,387,128,2.08008504,0.128650998,994.939814,3008656476 +3,7544,388,128,2.85364437,0.128761289,994.087594,3008656476 +3,7545,389,128,3.22221947,0.129889346,985.454188,3008656476 +3,7546,390,128,2.87751698,0.1296649,987.159979,3008656476 +3,7547,391,128,2.92534709,0.130749055,978.974571,3008656476 +3,7548,392,128,2.13624096,0.137135327,933.384583,3008656476 +3,7549,393,128,2.81893897,0.142269568,899.70049,3008656476 +3,7550,394,128,2.41388392,0.130988451,977.185386,3008656476 +3,7551,395,128,2.79002166,0.129769492,986.364345,3008656476 +3,7552,396,128,2.64352226,0.129739914,986.589216,3008656476 +3,7553,397,128,3.20446968,0.1295324,988.169755,3008656476 +3,7554,398,128,2.56261039,0.130748484,978.978846,3008656476 +3,7555,399,128,3.27314425,0.130152256,983.463552,3008656476 +3,7556,400,128,2.54974818,0.137122142,933.474333,3008656476 +3,7557,401,128,2.94034767,0.130017662,984.481631,3008656476 +3,7558,402,128,2.69263268,0.130191357,983.168184,3008656476 +3,7559,403,128,2.4721663,0.129320149,989.791622,3008656476 +3,7560,404,128,2.61553311,0.129662071,987.181517,3008656476 +3,7561,405,128,2.29949832,0.128974577,992.44365,3008656476 +3,7562,406,128,2.45552039,0.129320503,989.788912,3008656476 +3,7563,407,128,1.69020855,0.129818831,985.989467,3008656476 +3,7564,408,128,2.07784963,0.133041484,962.105925,3008656476 +3,7565,409,128,2.86264277,0.142465608,898.462456,3008656476 +3,7566,410,128,1.99424863,0.128977534,992.420897,3008656476 +3,7567,411,128,2.74335003,0.12896279,992.534358,3008656476 +3,7568,412,128,2.1032939,0.129765501,986.394681,3008656476 +3,7569,413,128,2.16718197,0.129724024,986.710064,3008656476 +3,7570,414,128,2.28055382,0.129947154,985.015801,3008656476 +3,7571,415,128,3.06177354,0.130156237,983.433472,3008656476 +3,7572,416,128,2.49465799,0.133645046,957.760903,3008656476 +3,7573,417,128,2.06380558,0.14501348,882.676562,3008656476 +3,7574,418,128,2.36778831,0.12955612,987.988834,3008656476 +3,7575,419,128,1.64705503,0.130119618,983.710235,3008656476 +3,7576,420,128,1.52709401,0.130654423,979.683635,3008656476 +3,7577,421,128,2.66314435,0.130583299,980.217233,3008656476 +3,7578,422,128,2.26309323,0.131231903,975.372581,3008656476 +3,7579,423,128,2.59329557,0.139290806,918.940766,3008656476 +3,7580,424,128,3.08115363,0.129081235,991.623608,3008656476 +3,7581,425,128,3.20749187,0.143628945,891.185269,3008656476 +3,7582,426,128,3.64121819,0.131592292,972.701349,3008656476 +3,7583,427,128,2.5421586,0.131716419,971.784695,3008656476 +3,7584,428,128,1.8065356,0.13207961,969.112492,3008656476 +3,7585,429,128,1.65200007,0.131717859,971.774071,3008656476 +3,7586,430,128,1.84716678,0.131639361,972.35355,3008656476 +3,7587,431,128,1.76014757,0.144779994,884.10005,3008656476 +3,7588,432,128,1.9870826,0.134337648,952.822994,3008656476 +3,7589,433,128,1.87670565,0.145479259,879.850508,3008656476 +3,7590,434,128,2.57742023,0.132554819,965.638224,3008656476 +3,7591,435,128,2.62033939,0.133080833,961.821452,3008656476 +3,7592,436,128,3.16184568,0.131188509,975.695211,3008656476 +3,7593,437,128,2.0728941,0.133328015,960.038294,3008656476 +3,7594,438,128,2.05561209,0.131358111,974.43545,3008656476 +3,7595,439,128,2.60627103,0.147115567,870.064281,3008656476 +3,7596,440,128,2.36503744,0.131627845,972.43862,3008656476 +3,7597,441,128,2.09382319,0.145930925,877.127312,3008656476 +3,7598,442,128,2.10896826,0.134010017,955.152479,3008656476 +3,7599,443,128,2.0209136,0.131184351,975.726137,3008656476 +3,7600,444,128,1.91964507,0.130260141,982.649021,3008656476 +3,7601,445,128,2.17343497,0.130107369,983.802847,3008656476 +3,7602,446,128,2.31212163,0.130256495,982.676526,3008656476 +3,7603,447,128,2.85488677,0.145305489,880.902717,3008656476 +3,7604,448,128,2.58688736,0.129028016,992.032614,3008656476 +3,7605,449,128,2.65177917,0.145810711,877.850462,3008656476 +3,7606,450,128,2.42419505,0.129793921,986.178698,3008656476 +3,7607,451,128,3.16354847,0.129312656,989.848975,3008656476 +3,7608,452,128,2.40846229,0.129238929,990.413655,3008656476 +3,7609,453,128,2.26633048,0.128939759,992.711643,3008656476 +3,7610,454,128,2.71844339,0.129071395,991.699206,3008656476 +3,7611,455,128,3.01645494,0.145857856,877.566718,3008656476 +3,7612,456,128,2.80061126,0.128590481,995.40805,3008656476 +3,7613,457,128,2.87081385,0.137346565,931.949044,3008656476 +3,7614,458,128,2.67358398,0.128730434,994.325864,3008656476 +3,7615,459,128,2.01893711,0.128858543,993.337322,3008656476 +3,7616,460,128,2.94480968,0.129655129,987.234373,3008656476 +3,7617,461,128,2.94006753,0.130031449,984.377249,3008656476 +3,7618,462,128,2.59106445,0.129114768,991.366069,3008656476 +3,7619,463,128,2.05913305,0.143614658,891.273926,3008656476 +3,7620,464,128,2.16018629,0.129026174,992.046776,3008656476 +3,7621,465,128,2.00573373,0.138317635,925.406222,3008656476 +3,7622,466,128,2.03017497,0.129086439,991.583632,3008656476 +3,7623,467,128,2.43680215,0.129366765,989.43496,3008656476 +3,7624,468,128,3.16026258,0.129149496,991.099493,3008656476 +3,7625,469,128,3.00061107,0.129235856,990.437205,3008656476 +3,7626,470,128,2.8874011,0.130295965,982.378848,3008656476 +3,7627,471,128,1.75066102,0.14248894,898.315336,3008656476 +3,7628,472,128,3.28903913,0.129578605,987.817395,3008656476 +3,7629,473,128,2.68313575,0.138039511,927.270744,3008656476 +3,7630,474,128,2.25710773,0.130194187,983.146813,3008656476 +3,7631,475,128,1.86078417,0.129030025,992.017168,3008656476 +3,7632,476,128,2.30072761,0.130765287,978.85305,3008656476 +3,7633,477,128,2.53273654,0.129641101,987.341198,3008656476 +3,7634,478,128,2.6874876,0.130048906,984.245112,3008656476 +3,7635,479,128,3.14175367,0.144896575,883.388721,3008656476 +3,7636,480,128,2.82802296,0.130218469,982.963484,3008656476 +3,7637,481,128,2.27187181,0.133841592,956.354434,3008656476 +3,7638,482,128,2.19252849,0.12993455,985.11135,3008656476 +3,7639,483,128,2.71462584,0.130800215,978.591664,3008656476 +3,7640,484,128,2.70890689,0.129526806,988.212432,3008656476 +3,7641,485,128,2.30090666,0.129764758,986.400329,3008656476 +3,7642,486,128,1.9080472,0.13018175,983.240738,3008656476 +3,7643,487,128,2.72749805,0.145517356,879.62016,3008656476 +3,7644,488,128,2.14836359,0.130671229,979.557635,3008656476 +3,7645,489,128,3.10615706,0.133026,962.217912,3008656476 +3,7646,490,128,3.15451217,0.129899968,985.373607,3008656476 +3,7647,491,128,2.95335865,0.129574906,987.845594,3008656476 +3,7648,492,128,2.3727107,0.129569797,987.884545,3008656476 +3,7649,493,128,2.54636359,0.130052275,984.219615,3008656476 +3,7650,494,128,2.56973171,0.130611213,980.007743,3008656476 +3,7651,495,128,2.68800449,0.14436464,886.64371,3008656476 +3,7652,496,128,3.10879564,0.130180114,983.253095,3008656476 +3,7653,497,128,3.27316213,0.133597523,958.101596,3008656476 +3,7654,498,128,3.28131509,0.12997939,984.771509,3008656476 +3,7655,499,128,2.82292414,0.130635722,979.82388,3008656476 +3,7656,500,128,3.04789448,0.130633473,979.840749,3008656476 +3,7657,501,128,3.14824247,0.129564702,987.923393,3008656476 +3,7658,502,128,2.39294863,0.129656884,987.22101,3008656476 +3,7659,503,128,3.01605701,0.145354898,880.60328,3008656476 +3,7660,504,128,3.07640839,0.129884907,985.487867,3008656476 +3,7661,505,128,3.09754252,0.133729163,957.158462,3008656476 +3,7662,506,128,3.09107494,0.129891539,985.43755,3008656476 +3,7663,507,128,2.34383559,0.128486037,996.2172,3008656476 +3,7664,508,128,2.95215702,0.130258108,982.664357,3008656476 +3,7665,509,128,2.94641256,0.12886967,993.251554,3008656476 +3,7666,510,128,2.84906983,0.12919739,990.732088,3008656476 +3,7667,511,128,3.05007195,0.145722403,878.382441,3008656476 +3,7668,512,128,2.9746089,0.12921367,990.607263,3008656476 +3,7669,513,128,3.08472967,0.13341103,959.44091,3008656476 +3,7670,514,128,2.72326326,0.129614845,987.541203,3008656476 +3,7671,515,128,3.25016403,0.129510876,988.333984,3008656476 +3,7672,516,128,2.821311,0.12948209,988.553707,3008656476 +3,7673,517,128,3.00610352,0.129615512,987.536121,3008656476 +3,7674,518,128,3.18105054,0.13002772,984.405479,3008656476 +3,7675,519,128,2.7934792,0.147826512,865.879863,3008656476 +3,7676,520,128,2.42400861,0.140502243,911.017485,3008656476 +3,7677,521,128,2.79215527,0.125140296,1022.85198,3008656476 +3,7678,522,128,2.32208824,0.129819658,985.983186,3008656476 +3,7679,523,128,2.80123043,0.1290184,992.106552,3008656476 +3,7680,524,128,2.24525523,0.130782311,978.725632,3008656476 +3,7681,525,128,2.58028388,0.130040375,984.309681,3008656476 +3,7682,526,128,3.09963012,0.131002241,977.082522,3008656476 +3,7683,527,128,2.72738123,0.150225741,852.051048,3008656476 +3,7684,528,128,3.06136417,0.147360386,868.618789,3008656476 +3,7685,529,128,2.328897,0.133305173,960.202797,3008656476 +3,7686,530,128,1.94053948,0.132790224,963.926381,3008656476 +3,7687,531,128,3.1042366,0.139873021,915.115718,3008656476 +3,7688,532,128,3.531353,0.134025646,955.041097,3008656476 +3,7689,533,128,3.20390391,0.1332175,960.834725,3008656476 +3,7690,534,128,2.99172354,0.14527088,881.112581,3008656476 +3,7691,535,128,2.8535068,0.14475299,884.264981,3008656476 +3,7692,536,128,2.82246971,0.148036609,864.650986,3008656476 +3,7693,537,128,3.02579904,0.139849933,915.266795,3008656476 +3,7694,538,128,2.11649823,0.136841841,935.386422,3008656476 +3,7695,539,128,2.38357759,0.133076369,961.853716,3008656476 +3,7696,540,128,2.5747633,0.13382965,956.439773,3008656476 +3,7697,541,128,2.87389016,0.133853532,956.269126,3008656476 +3,7698,542,128,2.79906559,0.144740793,884.339496,3008656476 +3,7699,543,128,3.20945311,0.132519489,965.895665,3008656476 +3,7700,544,128,2.28946257,0.145856308,877.576032,3008656476 +3,7701,545,128,2.03219843,0.131307824,974.80863,3008656476 +3,7702,546,128,2.53821158,0.131803787,971.140533,3008656476 +3,7703,547,128,3.10813427,0.131717755,971.774838,3008656476 +3,7704,548,128,3.03321576,0.131962821,969.970171,3008656476 +3,7705,549,128,2.95415521,0.13420553,953.760996,3008656476 +3,7706,550,128,2.55717731,0.143572735,891.534176,3008656476 +3,7707,551,128,2.22571158,0.144107726,888.224411,3008656476 +3,7708,552,128,2.62834764,0.125038632,1023.68362,3008656476 +3,7709,553,128,2.97208762,0.132051094,969.321769,3008656476 +3,7710,554,128,3.29939246,0.131404978,974.087907,3008656476 +3,7711,555,128,3.28028297,0.129871161,985.592175,3008656476 +3,7712,556,128,2.26879597,0.130635576,979.824975,3008656476 +3,7713,557,128,2.63694668,0.129677187,987.066445,3008656476 +3,7714,558,128,3.36402416,0.13607234,940.676114,3008656476 +3,7715,559,128,3.52426553,0.14341629,892.506702,3008656476 +3,7716,560,128,3.17952824,0.126851022,1009.0577,3008656476 +3,7717,561,128,3.05772734,0.132091943,969.022009,3008656476 +3,7718,562,128,3.22221327,0.129500812,988.410791,3008656476 +3,7719,563,128,3.43490505,0.131099771,976.355634,3008656476 +3,7720,564,128,2.92493796,0.13070768,979.284461,3008656476 +3,7721,565,128,2.61535454,0.130537629,980.560172,3008656476 +3,7722,566,128,1.95608425,0.136049489,940.834111,3008656476 +3,7723,567,128,3.04375982,0.143466721,892.192971,3008656476 +3,7724,568,128,2.78156662,0.125183357,1022.50014,3008656476 +3,7725,569,128,3.03779817,0.131952622,970.045142,3008656476 +3,7726,570,128,3.36295557,0.130982527,977.229581,3008656476 +3,7727,571,128,2.35887647,0.129492616,988.47335,3008656476 +3,7728,572,128,2.26797819,0.130184506,983.219923,3008656476 +3,7729,573,128,3.106323,0.129704795,986.856346,3008656476 +3,7730,574,128,2.77170181,0.133946537,955.605146,3008656476 +3,7731,575,128,2.97266006,0.143556858,891.632777,3008656476 +3,7732,576,128,2.25729752,0.127859587,1001.09818,3008656476 +3,7733,577,128,3.36695242,0.131722268,971.741543,3008656476 +3,7734,578,128,2.44871593,0.132100963,968.955843,3008656476 +3,7735,579,128,2.5702529,0.131422596,973.957325,3008656476 +3,7736,580,128,2.356565,0.130341183,982.038041,3008656476 +3,7737,581,128,2.90784788,0.139640187,916.641568,3008656476 +3,7738,582,128,2.81659245,0.132328651,967.288634,3008656476 +3,7739,583,128,2.57971191,0.142821612,896.222905,3008656476 +3,7740,584,128,2.92412853,0.129063994,991.756074,3008656476 +3,7741,585,128,2.34102798,0.130131436,983.620898,3008656476 +3,7742,586,128,3.27008128,0.128724559,994.371245,3008656476 +3,7743,587,128,3.01399088,0.129208867,990.644086,3008656476 +3,7744,588,128,2.7551918,0.129537162,988.133428,3008656476 +3,7745,589,128,3.32018995,0.144158819,887.909605,3008656476 +3,7746,590,128,2.89053154,0.129880928,985.518059,3008656476 +3,7747,591,128,2.75347018,0.140511329,910.958575,3008656476 +3,7748,592,128,2.71098685,0.130770304,978.815496,3008656476 +3,7749,593,128,2.45609903,0.129155472,991.053635,3008656476 +3,7750,594,128,2.44176245,0.129763661,986.408668,3008656476 +3,7751,595,128,2.61902189,0.130691263,979.407476,3008656476 +3,7752,596,128,2.80939674,0.129946485,985.020872,3008656476 +3,7753,597,128,2.78112435,0.144330453,886.853726,3008656476 +3,7754,598,128,2.46186161,0.130840742,978.288552,3008656476 +3,7755,599,128,3.10456538,0.144248934,887.354911,3008656476 +3,7756,600,128,2.92746568,0.130548188,980.480863,3008656476 +3,7757,601,128,2.52201104,0.130806722,978.542983,3008656476 +3,7758,602,128,2.96680737,0.129995376,984.650408,3008656476 +3,7759,603,128,2.18693018,0.129808694,986.066465,3008656476 +3,7760,604,128,3.12616181,0.129409281,989.109892,3008656476 +3,7761,605,128,2.04959607,0.143696062,890.769018,3008656476 +3,7762,606,128,2.26457477,0.130342101,982.031124,3008656476 +3,7763,607,128,2.13115287,0.14414418,887.999779,3008656476 +3,7764,608,128,2.92817521,0.130359008,981.903759,3008656476 +3,7765,609,128,2.30334234,0.129124002,991.295174,3008656476 +3,7766,610,128,2.41491151,0.129181007,990.857735,3008656476 +3,7767,611,128,1.98127222,0.129612355,987.560175,3008656476 +3,7768,612,128,2.48150206,0.129491944,988.47848,3008656476 +3,7769,613,128,2.67584896,0.143894008,889.543642,3008656476 +3,7770,614,128,3.11408067,0.128969312,992.484166,3008656476 +3,7771,615,128,2.1754601,0.144552165,885.493483,3008656476 +3,7772,616,128,2.86272502,0.130212393,983.009351,3008656476 +3,7773,617,128,3.08346653,0.130608233,980.030103,3008656476 +3,7774,618,128,2.4409914,0.131184875,975.722239,3008656476 +3,7775,619,128,2.63843441,0.130320038,982.197381,3008656476 +3,7776,620,128,2.41549134,0.131995568,969.729529,3008656476 +3,7777,621,128,2.44675231,0.144683508,884.689636,3008656476 +3,7778,622,128,2.91730142,0.133196424,960.98676,3008656476 +3,7779,623,128,2.94101572,0.145877195,877.450379,3008656476 +3,7780,624,128,3.05710554,0.13182337,970.996266,3008656476 +3,7781,625,128,2.95552468,0.133152559,961.303342,3008656476 +3,7782,626,128,2.7882483,0.133700349,957.364741,3008656476 +3,7783,627,128,2.36067533,0.132875613,963.306939,3008656476 +3,7784,628,128,2.48674655,0.133196274,960.987843,3008656476 +3,7785,629,128,3.30861115,0.153684843,832.873285,3008656476 +3,7786,630,128,3.1715374,0.134276124,953.259568,3008656476 +3,7787,631,128,2.32620668,0.142048057,901.103491,3008656476 +3,7788,632,128,3.49030995,0.131629826,972.423985,3008656476 +3,7789,633,128,3.0814476,0.132750754,964.212979,3008656476 +3,7790,634,128,3.11576128,0.132639503,965.02171,3008656476 +3,7791,635,128,2.2968452,0.132646739,964.969067,3008656476 +3,7792,636,128,2.70403695,0.136618344,936.916641,3008656476 +3,7793,637,128,2.56648731,0.13207775,969.12614,3008656476 +3,7794,638,128,2.65685821,0.143622283,891.226607,3008656476 +3,7795,639,128,3.34664321,0.125667946,1018.55727,3008656476 +3,7796,640,128,2.70080447,0.132775559,964.032846,3008656476 +3,7797,641,128,2.75829268,0.132110011,968.889481,3008656476 +3,7798,642,128,2.26632547,0.132470433,966.253353,3008656476 +3,7799,643,128,2.81753087,0.130557166,980.413438,3008656476 +3,7800,644,128,3.13488078,0.139150424,919.86784,3008656476 +3,7801,645,128,3.627316,0.128243552,998.100864,3008656476 +3,7802,646,128,2.6577456,0.141082226,907.272331,3008656476 +3,7803,647,128,2.55241561,0.130142314,983.538682,3008656476 +3,7804,648,128,2.81390262,0.130446249,981.247073,3008656476 +3,7805,649,128,2.71537471,0.129798243,986.14586,3008656476 +3,7806,650,128,2.34234309,0.129273287,990.150425,3008656476 +3,7807,651,128,2.52127886,0.128958495,992.567415,3008656476 +3,7808,652,128,1.87334061,0.139153508,919.847454,3008656476 +3,7809,653,128,2.21287584,0.126422669,1012.47665,3008656476 +3,7810,654,128,3.34828162,0.142284206,899.60793,3008656476 +3,7811,655,128,3.26194549,0.126069044,1015.31665,3008656476 +3,7812,656,128,3.09896898,0.130609539,980.020303,3008656476 +3,7813,657,128,2.50514603,0.12922837,990.494579,3008656476 +3,7814,658,128,2.78272653,0.129863926,985.647084,3008656476 +3,7815,659,128,3.14905643,0.129447416,988.818502,3008656476 +3,7816,660,128,2.86665535,0.138520663,924.049865,3008656476 +3,7817,661,128,2.9803834,0.125204819,1022.32487,3008656476 +3,7818,662,128,2.85330915,0.131331613,974.632056,3008656476 +3,7819,663,128,2.30230451,0.135589481,944.026034,3008656476 +3,7820,664,128,2.09431577,0.133915911,955.823688,3008656476 +3,7821,665,128,3.55616665,0.132131186,968.734209,3008656476 +3,7822,666,128,3.23409367,0.134079013,954.660965,3008656476 +3,7823,667,128,2.68717408,0.13100355,977.072759,3008656476 +3,7824,668,128,2.27242064,0.148952307,859.335465,3008656476 +3,7825,669,128,2.3274529,0.130113173,983.758962,3008656476 +3,7826,670,128,2.59081435,0.143079908,894.604992,3008656476 +3,7827,671,128,2.07876587,0.129294797,989.985699,3008656476 +3,7828,672,128,2.31253457,0.128683784,994.686323,3008656476 +3,7829,673,128,2.51986957,0.128973437,992.452423,3008656476 +3,7830,674,128,3.08897138,0.129362628,989.466602,3008656476 +3,7831,675,128,2.95553899,0.128875726,993.20488,3008656476 +3,7832,676,128,2.55186605,0.14471064,884.523764,3008656476 +3,7833,677,128,3.31918526,0.130093396,983.908514,3008656476 +3,7834,678,128,2.82482743,0.143829951,889.939815,3008656476 +3,7835,679,128,2.56833673,0.129712391,986.798555,3008656476 +3,7836,680,128,2.80705619,0.129787696,986.225998,3008656476 +3,7837,681,128,2.94638872,0.129778105,986.298883,3008656476 +3,7838,682,128,2.80750465,0.130298347,982.360889,3008656476 +3,7839,683,128,2.54147005,0.130569822,980.318408,3008656476 +3,7840,684,128,2.59011555,0.142457638,898.512721,3008656476 +3,7841,685,128,2.26863146,0.130686799,979.44093,3008656476 +3,7842,686,128,2.35414481,0.206926402,618.577421,3008656476 +3,7843,687,128,2.04277635,0.129622501,987.482875,3008656476 +3,7844,688,128,2.9654851,0.13012202,983.692076,3008656476 +3,7845,689,128,1.98283172,0.129032963,991.99458,3008656476 +3,7846,690,128,2.4857502,0.129797829,986.149006,3008656476 +3,7847,691,128,2.79101133,0.128959906,992.556555,3008656476 +3,7848,692,128,2.64985919,0.147600236,867.207285,3008656476 +3,7849,693,128,2.22682977,0.129408954,989.112392,3008656476 +3,7850,694,128,2.94035959,0.144765207,884.190357,3008656476 +3,7851,695,128,2.63518143,0.131990654,969.765632,3008656476 +3,7852,696,128,3.26698589,0.131490156,973.456903,3008656476 +3,7853,697,128,3.02571583,0.132639366,965.022707,3008656476 +3,7854,698,128,2.55772519,0.134116334,954.395309,3008656476 +3,7855,699,128,2.44484997,0.132876531,963.300284,3008656476 +3,7856,700,128,3.16560936,0.136543679,937.428967,3008656476 +3,7857,701,128,2.74718189,0.144047506,888.595739,3008656476 +3,7858,702,128,2.37664032,0.126665121,1010.53865,3008656476 +3,7859,703,128,1.97581637,0.131883107,970.556449,3008656476 +3,7860,704,128,2.69805455,0.131389603,974.201893,3008656476 +3,7861,705,128,2.99232721,0.131612824,972.549605,3008656476 +3,7862,706,128,2.75671935,0.131745035,971.573616,3008656476 +3,7863,707,128,2.86455989,0.140480009,911.161673,3008656476 +3,7864,708,128,2.14710927,0.127726786,1002.13905,3008656476 +3,7865,709,128,3.0160687,0.143054242,894.765497,3008656476 +3,7866,710,128,2.00538898,0.128558749,995.653746,3008656476 +3,7867,711,128,2.88970685,0.130586561,980.192747,3008656476 +3,7868,712,128,2.7138555,0.129043229,991.915663,3008656476 +3,7869,713,128,2.94859529,0.128515657,995.987594,3008656476 +3,7870,714,128,2.01887465,0.128835932,993.511655,3008656476 +3,7871,715,128,1.60939968,0.136743234,936.060939,3008656476 +3,7872,716,128,2.11871123,0.12512938,1022.94121,3008656476 +3,7873,717,128,2.89077115,0.13904595,920.558995,3008656476 +3,7874,718,128,3.3370533,0.122898646,1041.50863,3008656476 +3,7875,719,128,3.1558125,0.129979007,984.774411,3008656476 +3,7876,720,128,3.01621556,0.12964994,987.273885,3008656476 +3,7877,721,128,2.97951055,0.1289,993.017843,3008656476 +3,7878,722,128,2.47365165,0.129743214,986.564122,3008656476 +3,7879,723,128,3.07778192,0.128083153,999.350789,3008656476 +3,7880,724,128,2.56279588,0.137863923,928.451746,3008656476 +3,7881,725,128,2.78143215,0.12935796,989.502308,3008656476 +3,7882,726,128,2.5265739,0.13763215,930.015262,3008656476 +3,7883,727,128,3.02861857,0.131097281,976.374178,3008656476 +3,7884,728,128,2.72043943,0.132274125,967.687369,3008656476 +3,7885,729,128,2.86603498,0.13110365,976.326746,3008656476 +3,7886,730,128,2.66959977,0.130652175,979.700491,3008656476 +3,7887,731,128,3.22110581,0.130180398,983.25095,3008656476 +3,7888,732,128,2.6814568,0.135750185,942.908476,3008656476 +3,7889,733,128,2.27461553,0.130984921,977.21172,3008656476 +3,7890,734,128,1.80647302,0.138994513,920.899662,3008656476 +3,7891,735,128,1.92720175,0.131821767,971.008073,3008656476 +3,7892,736,128,1.73376572,0.132162165,968.507137,3008656476 +3,7893,737,128,1.78179777,0.132827721,963.654266,3008656476 +3,7894,738,128,2.05638433,0.132170927,968.442931,3008656476 +3,7895,739,128,2.37767887,0.143240745,893.600491,3008656476 +3,7896,740,128,2.19140339,0.126398209,1012.67258,3008656476 +3,7897,741,128,2.55122995,0.145880969,877.427679,3008656476 +3,7898,742,128,2.59644079,0.127499779,1003.92331,3008656476 +3,7899,743,128,2.61895752,0.13324488,960.637287,3008656476 +3,7900,744,128,2.37041903,0.12998061,984.762266,3008656476 +3,7901,745,128,1.90201604,0.130160783,983.399124,3008656476 +3,7902,746,128,1.93280256,0.130411046,981.51195,3008656476 +3,7903,747,128,2.01243138,0.146479083,873.844902,3008656476 +3,7904,748,128,2.66950917,0.129945087,985.031469,3008656476 +3,7905,749,128,3.28440142,0.144335233,886.824356,3008656476 +3,7906,750,128,2.32783031,0.130387324,981.690521,3008656476 +3,7907,751,128,2.79311132,0.128321763,997.49253,3008656476 +3,7908,752,128,2.11583233,0.128399085,996.891839,3008656476 +3,7909,753,128,2.44321728,0.129660282,987.195138,3008656476 +3,7910,754,128,2.63457131,0.128805338,993.747635,3008656476 +3,7911,755,128,2.45989084,0.145008343,882.707832,3008656476 +3,7912,756,128,3.03903937,0.129588668,987.740687,3008656476 +3,7913,757,128,1.94505119,0.143946236,889.220889,3008656476 +3,7914,758,128,2.71336913,0.129486181,988.522474,3008656476 +3,7915,759,128,2.24388719,0.129807916,986.072375,3008656476 +3,7916,760,128,2.7730279,0.130043199,984.288306,3008656476 +3,7917,761,128,3.12853003,0.130117309,983.727691,3008656476 +3,7918,762,128,3.53146052,0.129568172,987.896935,3008656476 +3,7919,763,128,2.94412422,0.143516925,891.88087,3008656476 +3,7920,764,128,3.24795508,0.129917777,985.238533,3008656476 +3,7921,765,128,3.36852407,0.143624597,891.212248,3008656476 +3,7922,766,128,2.7307806,0.130222308,982.934506,3008656476 +3,7923,767,128,3.18057609,0.130277251,982.519964,3008656476 +3,7924,768,128,2.58776712,0.129740372,986.585733,3008656476 +3,7925,769,128,2.49474454,0.129968906,984.850946,3008656476 +3,7926,770,128,2.13291216,0.129269713,990.1778,3008656476 +3,7927,771,128,3.16067195,0.142186336,900.22715,3008656476 +3,7928,772,128,2.55411458,0.128736305,994.280518,3008656476 +3,7929,773,128,2.58237696,0.142662849,897.220271,3008656476 +3,7930,774,128,2.57725906,0.129326869,989.740191,3008656476 +3,7931,775,128,2.72827959,0.128442541,996.554561,3008656476 +3,7932,776,128,3.03646135,0.130093621,983.906813,3008656476 +3,7933,777,128,2.94071937,0.129784849,986.247632,3008656476 +3,7934,778,128,2.35288739,0.130872781,978.049057,3008656476 +3,7935,779,128,2.64363837,0.143490523,892.044975,3008656476 +3,7936,780,128,2.24907231,0.130830385,978.365997,3008656476 +3,7937,781,128,2.34164858,0.144697649,884.603177,3008656476 +3,7938,782,128,1.82908309,0.1320888,969.045067,3008656476 +3,7939,783,128,1.74808097,0.131842556,970.854964,3008656476 +3,7940,784,128,2.52661633,0.132728257,964.37641,3008656476 +3,7941,785,128,2.5881362,0.132021834,969.5366,3008656476 +3,7942,786,128,2.38205671,0.131712522,971.813447,3008656476 +3,7943,787,128,3.0795002,0.146274482,875.06719,3008656476 +3,7944,788,128,3.11138463,0.133188048,961.047195,3008656476 +3,7945,789,128,3.04607177,0.147305881,868.940188,3008656476 +3,7946,790,128,2.94573236,0.133327438,960.042448,3008656476 +3,7947,791,128,3.38982177,0.132784766,963.966002,3008656476 +3,7948,792,128,2.58227348,0.134074765,954.691213,3008656476 +3,7949,793,128,2.90031576,0.132488601,966.120851,3008656476 +3,7950,794,128,2.28514361,0.131792882,971.220889,3008656476 +3,7951,795,128,2.47529149,0.144813922,883.892917,3008656476 +3,7952,796,128,3.12578201,0.131918834,970.293597,3008656476 +3,7953,797,128,2.65817451,0.144178331,887.789442,3008656476 +3,7954,798,128,2.58494759,0.132832342,963.620742,3008656476 +3,7955,799,128,2.54743648,0.132145509,968.62921,3008656476 +3,7956,800,128,3.12396479,0.132803744,963.828249,3008656476 +3,7957,801,128,2.87610197,0.132138861,968.677943,3008656476 +3,7958,802,128,3.35419631,0.142587316,897.695557,3008656476 +3,7959,803,128,2.65972304,0.129890401,985.446184,3008656476 +3,7960,804,128,2.87469649,0.143272447,893.402763,3008656476 +3,7961,805,128,3.7370894,0.123930195,1032.83949,3008656476 +3,7962,806,128,3.39107609,0.131327437,974.663048,3008656476 +3,7963,807,128,2.90829706,0.13113004,976.13026,3008656476 +3,7964,808,128,2.43870544,0.130549503,980.470987,3008656476 +3,7965,809,128,2.36539483,0.130244937,982.763729,3008656476 +3,7966,810,128,2.37568045,0.13533384,945.809267,3008656476 +3,7967,811,128,2.68277073,0.130032551,984.368906,3008656476 +3,7968,812,128,3.29897976,0.145084891,882.242107,3008656476 +3,7969,813,128,2.90947723,0.128702784,994.539481,3008656476 +3,7970,814,128,2.10870862,0.129555887,987.990611,3008656476 +3,7971,815,128,2.17984295,0.12923293,990.45963,3008656476 +3,7972,816,128,3.24280429,0.130269423,982.579005,3008656476 +3,7973,817,128,3.12065625,0.130232912,982.854472,3008656476 +3,7974,818,128,2.74193454,0.143372692,892.778103,3008656476 +3,7975,819,128,2.51252675,0.130157905,983.420869,3008656476 +3,7976,820,128,2.43137312,0.141838729,902.433354,3008656476 +3,7977,821,128,2.68353772,0.129714099,986.785561,3008656476 +3,7978,822,128,2.59192967,0.130785172,978.704222,3008656476 +3,7979,823,128,3.39198637,0.130252271,982.708394,3008656476 +3,7980,824,128,2.90111303,0.131763111,971.44033,3008656476 +3,7981,825,128,2.68457675,0.129958271,984.93154,3008656476 +3,7982,826,128,2.9232378,0.143074083,894.641415,3008656476 +3,7983,827,128,2.69336796,0.129909349,985.302451,3008656476 +3,7984,828,128,2.50600123,0.142741188,896.72786,3008656476 +3,7985,829,128,2.73469329,0.130128617,983.642207,3008656476 +3,7986,830,128,3.06104827,0.129561903,987.944736,3008656476 +3,7987,831,128,2.07535362,0.130325242,982.158161,3008656476 +3,7988,832,128,3.09915924,0.130531079,980.609377,3008656476 +3,7989,833,128,3.32723999,0.130942684,977.526931,3008656476 +3,7990,834,128,3.30064702,0.143123315,894.333673,3008656476 +3,7991,835,128,3.10493994,0.130127158,983.653236,3008656476 +3,7992,836,128,2.46548676,0.145437976,880.100257,3008656476 +3,7993,837,128,3.03025031,0.129671532,987.109491,3008656476 +3,7994,838,128,2.79693723,0.12962383,987.472751,3008656476 +3,7995,839,128,2.88328409,0.130722967,979.169942,3008656476 +3,7996,840,128,2.77884293,0.129826694,985.92975,3008656476 +3,7997,841,128,2.51259971,0.130999509,977.102899,3008656476 +3,7998,842,128,2.32032657,0.144639882,884.956474,3008656476 +3,7999,843,128,3.13675427,0.131669781,972.128905,3008656476 +3,8000,844,128,2.30058289,0.14674376,872.268777,3008656476 +3,8001,845,128,2.88327312,0.131406879,974.073815,3008656476 +3,8002,846,128,2.63548279,0.131267927,975.104909,3008656476 +3,8003,847,128,3.41664457,0.120917276,1058.57495,3008656476 +3,8004,848,128,2.48013616,0.134399218,952.386494,3008656476 +3,8005,849,128,2.56562567,0.132967013,962.644773,3008656476 +3,8006,850,128,2.49145293,0.149204653,857.882093,3008656476 +3,8007,851,128,2.4904027,0.1399502,914.611055,3008656476 +3,8008,852,128,1.92254925,0.147946438,865.177977,3008656476 +3,8009,853,128,2.62965107,0.133074651,961.866133,3008656476 +3,8010,854,128,3.37535429,0.135444781,945.034567,3008656476 +3,8011,855,128,2.72278714,0.1319042,970.401246,3008656476 +3,8012,856,128,3.15827656,0.133389599,959.595058,3008656476 +3,8013,857,128,2.72186375,0.146929056,871.168736,3008656476 +3,8014,858,128,2.94818974,0.132544324,965.714684,3008656476 +3,8015,859,128,2.56766677,0.14557404,879.277651,3008656476 +3,8016,860,128,2.95494914,0.132950357,962.765373,3008656476 +3,8017,861,128,3.00350642,0.133134651,961.432648,3008656476 +3,8018,862,128,2.52726388,0.13124193,975.298062,3008656476 +3,8019,863,128,2.14538336,0.131317666,974.73557,3008656476 +3,8020,864,128,2.64036822,0.130295781,982.380235,3008656476 +3,8021,865,128,2.45935917,0.144040707,888.637682,3008656476 +3,8022,866,128,2.67372036,0.12893122,992.777389,3008656476 +3,8023,867,128,2.57642794,0.142854517,896.01647,3008656476 +3,8024,868,128,2.74366474,0.129347781,989.580177,3008656476 +3,8025,869,128,2.70844698,0.130101297,983.848762,3008656476 +3,8026,870,128,3.09195757,0.130013146,984.515827,3008656476 +3,8027,871,128,2.41653752,0.130105916,983.813834,3008656476 +3,8028,872,128,2.56383061,0.130062551,984.141853,3008656476 +3,8029,873,128,2.22789598,0.142443349,898.602854,3008656476 +3,8030,874,128,2.80298281,0.130516318,980.720281,3008656476 +3,8031,875,128,2.33026075,0.143098862,894.486498,3008656476 +3,8032,876,128,2.74065876,0.131168287,975.845633,3008656476 +3,8033,877,128,2.05947518,0.129785213,986.244866,3008656476 +3,8034,878,128,2.39141774,0.130721233,979.18293,3008656476 +3,8035,879,128,2.64077497,0.130870097,978.069115,3008656476 +3,8036,880,128,2.9711585,0.130591611,980.154843,3008656476 +3,8037,881,128,3.34221244,0.148082898,864.380707,3008656476 +3,8038,882,128,3.90073085,0.130157859,983.421216,3008656476 +3,8039,883,128,3.18348408,0.143638997,891.122903,3008656476 +3,8040,884,128,2.20371914,0.129452699,988.778148,3008656476 +3,8041,885,128,3.19817448,0.130187356,983.198399,3008656476 +3,8042,886,128,2.75294828,0.130139485,983.560062,3008656476 +3,8043,887,128,3.00938463,0.130319854,982.198768,3008656476 +3,8044,888,128,2.31344056,0.131087827,976.444594,3008656476 +3,8045,889,128,2.96258402,0.14578224,878.021904,3008656476 +3,8046,890,128,2.23701692,0.131400902,974.118123,3008656476 +3,8047,891,128,2.23867369,0.147987939,864.935351,3008656476 +3,8048,892,128,2.83594036,0.132689948,964.654836,3008656476 +3,8049,893,128,2.85336065,0.132126146,968.771162,3008656476 +3,8050,894,128,3.08722639,0.131782038,971.300808,3008656476 +3,8051,895,128,2.83474898,0.132888172,963.215899,3008656476 +3,8052,896,128,2.06996846,0.132923554,962.959507,3008656476 +3,8053,897,128,2.54566836,0.142657634,897.25307,3008656476 +3,8054,898,128,2.07567143,0.133152217,961.305811,3008656476 +3,8055,899,128,2.67080402,0.137671682,929.748211,3008656476 +3,8056,900,128,2.25939894,0.132876128,963.303205,3008656476 +3,8057,901,128,2.27307916,0.132701649,964.569777,3008656476 +3,8058,902,128,2.26653624,0.132985624,962.510053,3008656476 +3,8059,903,128,2.81205082,0.132474189,966.225957,3008656476 +3,8060,904,128,2.08383942,0.149332418,857.148111,3008656476 +3,8061,905,128,2.31311846,0.129411268,989.094705,3008656476 +3,8062,906,128,3.10170484,0.14158923,904.023562,3008656476 +3,8063,907,128,2.96776938,0.129702274,986.875527,3008656476 +3,8064,908,128,2.84195757,0.129629391,987.430389,3008656476 +3,8065,909,128,2.45666099,0.129154881,991.05817,3008656476 +3,8066,910,128,2.78106451,0.129098807,991.488636,3008656476 +3,8067,911,128,2.59852242,0.129637779,987.366499,3008656476 +3,8068,912,128,3.20362091,0.143120335,894.352295,3008656476 +3,8069,913,128,2.46600938,0.129571636,987.870524,3008656476 +3,8070,914,128,3.20810151,0.14105385,907.454848,3008656476 +3,8071,915,128,2.99091244,0.129468709,988.655877,3008656476 +3,8072,916,128,2.4708693,0.129437104,988.897279,3008656476 +3,8073,917,128,2.18437409,0.129085566,991.590338,3008656476 +3,8074,918,128,2.57664037,0.130064224,984.129195,3008656476 +3,8075,919,128,2.38554597,0.130059517,984.164811,3008656476 +3,8076,920,128,2.58582187,0.143276979,893.374504,3008656476 +3,8077,921,128,2.48829484,0.128821746,993.621061,3008656476 +3,8078,922,128,2.80697536,0.142747892,896.685746,3008656476 +3,8079,923,128,3.24586082,0.129370078,989.409622,3008656476 +3,8080,924,128,2.37112999,0.130462879,981.121994,3008656476 +3,8081,925,128,3.04790854,0.130144827,983.519691,3008656476 +3,8082,926,128,2.38754988,0.129462034,988.706851,3008656476 +3,8083,927,128,2.21024466,0.129385975,989.288058,3008656476 +3,8084,928,128,2.68862247,0.141509584,904.532374,3008656476 +3,8085,929,128,2.55023098,0.12920685,990.659551,3008656476 +3,8086,930,128,2.15868974,0.14411574,888.175018,3008656476 +3,8087,931,128,2.50768948,0.129563555,987.932139,3008656476 +3,8088,932,128,2.56033897,0.129763581,986.409276,3008656476 +3,8089,933,128,2.4090035,0.128947748,992.650139,3008656476 +3,8090,934,128,2.53950238,0.129031738,992.003998,3008656476 +3,8091,935,128,2.54555273,0.128933021,992.763522,3008656476 +3,8092,936,128,2.29861307,0.142401653,898.86597,3008656476 +3,8093,937,128,2.507972,0.129985443,984.725651,3008656476 +3,8094,938,128,2.95498538,0.144753991,884.258866,3008656476 +3,8095,939,128,2.90655994,0.130244201,982.769283,3008656476 +3,8096,940,128,2.68057895,0.130607866,980.032857,3008656476 +3,8097,941,128,2.27812839,0.130860113,978.143737,3008656476 +3,8098,942,128,2.43668509,0.131231366,975.376573,3008656476 +3,8099,943,128,2.34404445,0.132100223,968.961271,3008656476 +3,8100,944,128,3.34285641,0.145533218,879.524288,3008656476 +3,8101,945,128,3.15488648,0.132399425,966.77157,3008656476 +3,8102,946,128,2.57449865,0.145768217,878.106371,3008656476 +3,8103,947,128,3.13069081,0.132169481,968.453527,3008656476 +3,8104,948,128,3.46322203,0.132513504,965.93929,3008656476 +3,8105,949,128,3.44875169,0.133479817,958.946475,3008656476 +3,8106,950,128,2.74841785,0.133609233,958.017624,3008656476 +3,8107,951,128,2.32630134,0.133360135,959.807067,3008656476 +3,8108,952,128,2.23721194,0.153608566,833.286862,3008656476 +3,8109,953,128,2.83330345,0.133693482,957.413915,3008656476 +3,8110,954,128,2.86512518,0.145772802,878.078752,3008656476 +3,8111,955,128,2.0937283,0.133014514,962.301001,3008656476 +3,8112,956,128,2.99278784,0.132100302,968.960692,3008656476 +3,8113,957,128,2.79028106,0.132650986,964.938172,3008656476 +3,8114,958,128,2.57738614,0.132703131,964.559005,3008656476 +3,8115,959,128,2.75136709,0.131669978,972.12745,3008656476 +3,8116,960,128,2.64500117,0.13652684,937.544588,3008656476 +3,8117,961,128,2.5770278,0.133167541,961.195191,3008656476 +3,8118,962,128,2.73825836,0.137749599,929.222306,3008656476 +3,8119,963,128,2.51381445,0.131786902,971.264959,3008656476 +3,8120,964,128,2.25888681,0.132797492,963.873625,3008656476 +3,8121,965,128,2.37763143,0.131190192,975.682694,3008656476 +3,8122,966,128,2.79794455,0.131239736,975.314367,3008656476 +3,8123,967,128,3.4064362,0.141362782,905.47171,3008656476 +3,8124,968,128,2.75179338,0.128759943,994.097986,3008656476 +3,8125,969,128,2.5105319,0.141384348,905.333595,3008656476 +3,8126,970,128,2.35524726,0.129631571,987.413784,3008656476 +3,8127,971,128,2.73458791,0.130275316,982.534558,3008656476 +3,8128,972,128,2.24464822,0.129383869,989.304161,3008656476 +3,8129,973,128,2.31954646,0.13015522,983.441156,3008656476 +3,8130,974,128,2.6913383,0.12904663,991.889521,3008656476 +3,8131,975,128,2.83497906,0.137366836,931.811518,3008656476 +3,8132,976,128,2.90412641,0.127011914,1007.77947,3008656476 +3,8133,977,128,2.67933416,0.141036472,907.566661,3008656476 +3,8134,978,128,2.82027435,0.126825386,1009.26166,3008656476 +3,8135,979,128,2.93240356,0.131528294,973.174639,3008656476 +3,8136,980,128,2.53401446,0.133383156,959.641411,3008656476 +3,8137,981,128,2.77954197,0.131055426,976.686002,3008656476 +3,8138,982,128,2.43119574,0.129566474,987.909882,3008656476 +3,8139,983,128,2.37394428,0.144342504,886.779683,3008656476 +3,8140,984,128,2.51812363,0.130156872,983.428674,3008656476 +3,8141,985,128,2.4872148,0.141375049,905.393143,3008656476 +3,8142,986,128,2.35380006,0.129886476,985.475963,3008656476 +3,8143,987,128,2.2048533,0.128627146,995.124311,3008656476 +3,8144,988,128,2.52569127,0.129590998,987.722928,3008656476 +3,8145,989,128,2.64591169,0.12933488,989.678886,3008656476 +3,8146,990,128,2.23542047,0.128926209,992.815976,3008656476 +3,8147,991,128,2.20929217,0.141429471,905.044748,3008656476 +3,8148,992,128,2.61289239,0.128889873,993.095866,3008656476 +3,8149,993,128,1.84425974,0.142511485,898.173224,3008656476 +3,8150,994,128,2.00210762,0.129782987,986.261782,3008656476 +3,8151,995,128,1.84617651,0.129114538,991.367835,3008656476 +3,8152,996,128,2.63030577,0.129813057,986.033323,3008656476 +3,8153,997,128,2.55350137,0.129885251,985.485257,3008656476 +3,8154,998,128,2.29543805,0.129994177,984.65949,3008656476 +3,8155,999,128,2.52780819,0.143475276,892.139772,3008656476 +3,8156,1000,128,2.84585261,0.129450717,988.793287,3008656476 +3,8157,1001,128,2.34000325,0.144048372,888.590397,3008656476 +3,8158,1002,128,2.22897601,0.128694588,994.602819,3008656476 +3,8159,1003,128,2.27907729,0.129570765,987.877165,3008656476 +3,8160,1004,128,2.76487398,0.130204422,983.06953,3008656476 +3,8161,1005,128,2.47365952,0.130045419,984.271503,3008656476 +3,8162,1006,128,2.66081953,0.129568249,987.896348,3008656476 +3,8163,1007,128,2.73506379,0.144794087,884.014,3008656476 +3,8164,1008,128,2.37408805,0.129685252,987.005061,3008656476 +3,8165,1009,128,2.2725327,0.142441263,898.616014,3008656476 +3,8166,1010,128,2.45201564,0.129509091,988.347606,3008656476 +3,8167,1011,128,2.0399394,0.129229036,990.489475,3008656476 +3,8168,1012,128,2.39828658,0.129575081,987.84426,3008656476 +3,8169,1013,128,2.18805003,0.130393639,981.642977,3008656476 +3,8170,1014,128,2.54314542,0.128769435,994.024708,3008656476 +3,8171,1015,128,1.63334179,0.144205096,887.624665,3008656476 +3,8172,1016,128,2.2051661,0.129572748,987.862046,3008656476 +3,8173,1017,128,2.23902845,0.142613136,897.533029,3008656476 +3,8174,1018,128,2.45906782,0.129934479,985.111889,3008656476 +3,8175,1019,128,3.01508355,0.130808734,978.527932,3008656476 +3,8176,1020,128,2.97061324,0.13114303,976.033572,3008656476 +3,8177,1021,128,2.59822011,0.131001959,977.084625,3008656476 +3,8178,1022,128,2.55653763,0.130984362,977.215891,3008656476 +3,8179,1023,128,3.26183105,0.14459689,885.219592,3008656476 +3,8180,1024,128,2.96225405,0.132203597,968.203611,3008656476 +3,8181,1025,128,2.84664869,0.144609111,885.144782,3008656476 +3,8182,1026,128,2.47977567,0.131903852,970.403806,3008656476 +3,8183,1027,128,2.31877875,0.132080419,969.106556,3008656476 +3,8184,1028,128,2.1180017,0.131300541,974.862701,3008656476 +3,8185,1029,128,2.62571573,0.132383203,966.890037,3008656476 +3,8186,1030,128,1.94572473,0.13347027,959.015068,3008656476 +3,8187,1031,128,2.69971538,0.145269871,881.118701,3008656476 +3,8188,1032,128,2.17593932,0.132954475,962.735553,3008656476 +3,8189,1033,128,2.4133513,0.148692893,860.834687,3008656476 +3,8190,1034,128,2.83487964,0.132913218,963.034391,3008656476 +3,8191,1035,128,2.81588364,0.138917335,921.411284,3008656476 +3,8192,1036,128,2.59821558,0.133849748,956.29616,3008656476 +3,8193,1037,128,2.55252528,0.132509483,965.968602,3008656476 +3,8194,1038,128,2.38884974,0.133906584,955.890265,3008656476 +3,8195,1039,128,2.37064815,0.13688344,935.102157,3008656476 +3,8196,1040,128,2.78176594,0.131701044,971.898142,3008656476 +3,8197,1041,128,2.73891377,0.137462482,931.163166,3008656476 +3,8198,1042,128,2.5850594,0.133638823,957.805502,3008656476 +3,8199,1043,128,1.79936278,0.134161879,954.071313,3008656476 +3,8200,1044,128,2.18081784,0.132526708,965.843051,3008656476 +3,8201,1045,128,2.41233969,0.133080601,961.823129,3008656476 +3,8202,1046,128,2.22740173,0.148187296,863.77175,3008656476 +3,8203,1047,128,2.13082457,0.130359855,981.897379,3008656476 +3,8204,1048,128,2.91206384,0.144721723,884.456026,3008656476 +3,8205,1049,128,2.80962563,0.129172042,990.926504,3008656476 +3,8206,1050,128,2.95268488,0.129211639,990.622834,3008656476 +3,8207,1051,128,2.60424924,0.129311122,989.860717,3008656476 +3,8208,1052,128,2.34485936,0.129083226,991.608313,3008656476 +3,8209,1053,128,2.31504393,0.129797563,986.151027,3008656476 +3,8210,1054,128,2.8540225,0.142057357,901.044499,3008656476 +3,8211,1055,128,2.27875972,0.129700033,986.892579,3008656476 +3,8212,1056,128,3.03470802,0.142190998,900.197634,3008656476 +3,8213,1057,128,2.8796823,0.128615213,995.216639,3008656476 +3,8214,1058,128,2.75251675,0.128960733,992.55019,3008656476 +3,8215,1059,128,2.02051926,0.13016562,983.362581,3008656476 +3,8216,1060,128,2.95736456,0.130082286,983.992548,3008656476 +3,8217,1061,128,3.17996407,0.129935316,985.105543,3008656476 +3,8218,1062,128,2.92299247,0.14582449,877.767514,3008656476 +3,8219,1063,128,2.71868634,0.129497997,988.432277,3008656476 +3,8220,1064,128,2.40226293,0.141757128,902.952831,3008656476 +3,8221,1065,128,2.5407021,0.131054135,976.695623,3008656476 +3,8222,1066,128,2.56427526,0.13045055,981.214721,3008656476 +3,8223,1067,128,2.65389562,0.130143216,983.531865,3008656476 +3,8224,1068,128,2.73779273,0.129978513,984.778153,3008656476 +3,8225,1069,128,3.16290689,0.129070905,991.702971,3008656476 +3,8226,1070,128,2.9334321,0.144314385,886.952468,3008656476 +3,8227,1071,128,3.18566751,0.129638681,987.359629,3008656476 +3,8228,1072,128,2.24987936,0.144009269,888.831677,3008656476 +3,8229,1073,128,3.00227046,0.130723689,979.164534,3008656476 +3,8230,1074,128,2.80129266,0.129243029,990.382236,3008656476 +3,8231,1075,128,2.7887218,0.129783047,986.261326,3008656476 +3,8232,1076,128,3.22522664,0.129602053,987.638676,3008656476 +3,8233,1077,128,2.81737494,0.129174097,990.91074,3008656476 +3,8234,1078,128,2.97506738,0.141751254,902.990248,3008656476 +3,8235,1079,128,3.47982144,0.12947433,988.612955,3008656476 +3,8236,1080,128,2.44211841,0.146251004,875.207667,3008656476 +3,8237,1081,128,1.45137846,0.130770884,978.811155,3008656476 +3,8238,1082,128,2.34376073,0.131042227,976.784377,3008656476 +3,8239,1083,128,2.88572383,0.131159947,975.907683,3008656476 +3,8240,1084,128,2.82902241,0.131924502,970.25191,3008656476 +3,8241,1085,128,2.772053,0.131504283,973.352328,3008656476 +3,8242,1086,128,2.79616427,0.145418218,880.219836,3008656476 +3,8243,1087,128,2.37885857,0.13296881,962.631763,3008656476 +3,8244,1088,128,2.46659946,0.148956747,859.309851,3008656476 +3,8245,1089,128,2.56546974,0.132200529,968.22608,3008656476 +3,8246,1090,128,2.58506203,0.132936042,962.869046,3008656476 +3,8247,1091,128,2.85263252,0.133704813,957.332778,3008656476 +3,8248,1092,128,2.23812461,0.133008708,962.343007,3008656476 +3,8249,1093,128,3.07702971,0.132507737,965.98133,3008656476 +3,8250,1094,128,3.0474577,0.145452242,880.013936,3008656476 +3,8251,1095,128,2.56933784,0.132345366,967.166467,3008656476 +3,8252,1096,128,2.49442363,0.144132395,888.072387,3008656476 +3,8253,1097,128,2.56529188,0.134146248,954.182483,3008656476 +3,8254,1098,128,2.73064876,0.132688011,964.668918,3008656476 +3,8255,1099,128,3.23080349,0.133286758,960.33546,3008656476 +3,8256,1100,128,2.80765414,0.132356111,967.08795,3008656476 +3,8257,1101,128,2.74886751,0.14211368,900.687393,3008656476 +3,8258,1102,128,2.48986411,0.128842999,993.457161,3008656476 +3,8259,1103,128,2.84280372,0.142831269,896.16231,3008656476 +3,8260,1104,128,2.39469576,0.125007673,1023.93715,3008656476 +3,8261,1105,128,3.03927565,0.131886823,970.529103,3008656476 +3,8262,1106,128,2.34566784,0.131089821,976.429741,3008656476 +3,8263,1107,128,2.46649814,0.130241406,982.790373,3008656476 +3,8264,1108,128,2.25294447,0.129781226,986.275164,3008656476 +3,8265,1109,128,2.00631452,0.146856521,871.599021,3008656476 +3,8266,1110,128,2.36536503,0.128931535,992.774964,3008656476 +3,8267,1111,128,2.54753804,0.141342114,905.604115,3008656476 +3,8268,1112,128,2.03659844,0.131971608,969.905588,3008656476 +3,8269,1113,128,2.17576218,0.128134394,998.951148,3008656476 +3,8270,1114,128,2.90842724,0.130034963,984.350647,3008656476 +3,8271,1115,128,1.86142135,0.128275842,997.849618,3008656476 +3,8272,1116,128,2.24000859,0.129252462,990.309956,3008656476 +3,8273,1117,128,1.91765249,0.144043146,888.622635,3008656476 +3,8274,1118,128,2.53121972,0.129538424,988.123802,3008656476 +3,8275,1119,128,2.3744719,0.141791838,902.731792,3008656476 +3,8276,1120,128,1.81210768,0.129777883,986.30057,3008656476 +3,8277,1121,128,2.38444209,0.128197733,998.457594,3008656476 +3,8278,1122,128,2.13715291,0.129401832,989.16683,3008656476 +3,8279,1123,128,1.71507466,0.128973123,992.454839,3008656476 +3,8280,1124,128,1.56880271,0.129817633,985.998566,3008656476 +3,8281,1125,128,2.57469082,0.143113364,894.395858,3008656476 +3,8282,1126,128,2.03470778,0.131324122,974.687651,3008656476 +3,8283,1127,128,3.24771929,0.145839724,877.675824,3008656476 +3,8284,1128,128,2.88809776,0.130661592,979.629882,3008656476 +3,8285,1129,128,1.7213335,0.131364756,974.386159,3008656476 +3,8286,1130,128,2.45615864,0.130004128,984.58412,3008656476 +3,8287,1131,128,2.42473125,0.129510624,988.335907,3008656476 +3,8288,1132,128,2.2388823,0.151533311,844.698761,3008656476 +3,8289,1133,128,2.19176841,0.166150752,770.384717,3008656476 +3,8290,1134,128,3.0646503,0.130465239,981.104246,3008656476 +3,8291,1135,128,2.78104806,0.143589019,891.43307,3008656476 +3,8292,1136,128,2.71083546,0.131533933,973.132918,3008656476 +3,8293,1137,128,2.72254753,0.130591146,980.158333,3008656476 +3,8294,1138,128,2.61707902,0.129754489,986.478395,3008656476 +3,8295,1139,128,2.24749517,0.128985881,992.356675,3008656476 +3,8296,1140,128,2.40592885,0.130454229,981.187049,3008656476 +3,8297,1141,128,2.60231137,0.143705156,890.712648,3008656476 +3,8298,1142,128,2.57295251,0.12904072,991.934949,3008656476 +3,8299,1143,128,2.26576066,0.148233297,863.503697,3008656476 +3,8300,1144,128,2.19396758,0.128782479,993.924026,3008656476 +3,8301,1145,128,2.79496431,0.130637448,979.810934,3008656476 +3,8302,1146,128,3.0468564,0.129915929,985.252547,3008656476 +3,8303,1147,128,2.75879002,0.129901895,985.35899,3008656476 +3,8304,1148,128,2.78061008,0.131117306,976.225061,3008656476 +3,8305,1149,128,2.59180999,0.143076513,894.62622,3008656476 +3,8306,1150,128,2.88180542,0.13363374,957.841934,3008656476 +3,8307,1151,128,2.60613847,0.146060591,876.348638,3008656476 +3,8308,1152,128,3.03184891,0.133757663,956.954519,3008656476 +3,8309,1153,128,2.85817838,0.13338338,959.639799,3008656476 +3,8310,1154,128,2.70082831,0.133097572,961.700488,3008656476 +3,8311,1155,128,2.95297384,0.133056037,962.000694,3008656476 +3,8312,1156,128,2.70853901,0.14623652,875.294352,3008656476 +3,8313,1157,128,3.18320179,0.132130103,968.74215,3008656476 +3,8314,1158,128,2.41184235,0.145199711,881.544454,3008656476 +3,8315,1159,128,2.77651024,0.132533254,965.795347,3008656476 +3,8316,1160,128,3.06029272,0.133021826,962.248105,3008656476 +3,8317,1161,128,2.96474242,0.131922384,970.267487,3008656476 +3,8318,1162,128,2.25259757,0.131231652,975.374447,3008656476 +3,8319,1163,128,2.47413111,0.131311474,974.781534,3008656476 +3,8320,1164,128,2.51547003,0.145119596,882.031121,3008656476 +3,8321,1165,128,3.13747072,0.133238103,960.686148,3008656476 +3,8322,1166,128,2.76515245,0.142837146,896.125438,3008656476 +3,8323,1167,128,3.08567357,0.129977705,984.784275,3008656476 +3,8324,1168,128,2.5663209,0.130783513,978.716637,3008656476 +3,8325,1169,128,3.24256015,0.129966747,984.867306,3008656476 +3,8326,1170,128,2.77290297,0.129994481,984.657187,3008656476 +3,8327,1171,128,3.04041076,0.12900079,992.241985,3008656476 +3,8328,1172,128,2.64615512,0.143759768,890.374281,3008656476 +3,8329,1173,128,2.75485349,0.12913148,991.237768,3008656476 +3,8330,1174,128,3.16050816,0.142827623,896.185187,3008656476 +3,8331,1175,128,3.03176045,0.129637394,987.369431,3008656476 +3,8332,1176,128,2.87718868,0.128743633,994.223924,3008656476 +3,8333,1177,128,2.68829894,0.130106136,983.81217,3008656476 +3,8334,1178,128,2.54445601,0.128728545,994.340455,3008656476 +3,8335,1179,128,2.72430515,0.128553332,995.695701,3008656476 +3,8336,1180,128,3.31434464,0.141190413,906.577134,3008656476 +3,8337,1181,128,2.7510283,0.129848842,985.761583,3008656476 +3,8338,1182,128,3.07778454,0.144407212,886.382323,3008656476 +3,8339,1183,128,2.19478703,0.130000676,984.610265,3008656476 +3,8340,1184,128,2.2027576,0.129733086,986.641141,3008656476 +3,8341,1185,128,3.25810266,0.129748114,986.526864,3008656476 +3,8342,1186,128,3.11588955,0.12928682,990.046781,3008656476 +3,8343,1187,128,3.00039673,0.129544866,988.074664,3008656476 +3,8344,1188,128,2.91497517,0.142780361,896.481835,3008656476 +3,8345,1189,128,2.69564629,0.130017345,984.484032,3008656476 +3,8346,1190,128,2.49738693,0.146533908,873.517957,3008656476 +3,8347,1191,128,2.05490255,0.128766719,994.045674,3008656476 +3,8348,1192,128,2.60996914,0.129858477,985.688443,3008656476 +3,8349,1193,128,2.47571945,0.129696906,986.916373,3008656476 +3,8350,1194,128,1.94838989,0.128958633,992.566353,3008656476 +3,8351,1195,128,2.08109021,0.129664837,987.160459,3008656476 +3,8352,1196,128,1.84853673,0.147689451,866.68343,3008656476 +3,8353,1197,128,2.54363894,0.12999876,984.624776,3008656476 +3,8354,1198,128,2.27452636,0.143406222,892.569361,3008656476 +3,8355,1199,128,2.925138,0.130664862,979.605366,3008656476 +3,8356,1200,128,2.73944163,0.131650268,972.272992,3008656476 +3,8357,1201,128,3.23777485,0.131430847,973.896181,3008656476 +3,8358,1202,128,2.71616077,0.131304802,974.831065,3008656476 +3,8359,1203,128,2.5815196,0.132067631,969.200394,3008656476 +3,8360,1204,128,2.53380585,0.147683004,866.721265,3008656476 +3,8361,1205,128,2.78721404,0.134228609,953.597009,3008656476 +3,8362,1206,128,2.77531195,0.146366961,874.514297,3008656476 +3,8363,1207,128,2.71698284,0.1333461,959.908089,3008656476 +3,8364,1208,128,2.67155409,0.133116889,961.560933,3008656476 +3,8365,1209,128,2.56662822,0.133431331,959.294935,3008656476 +3,8366,1210,128,2.53233743,0.133263985,960.499568,3008656476 +3,8367,1211,128,2.97695661,0.147374367,868.536385,3008656476 +3,8368,1212,128,2.64645457,0.132776428,964.026536,3008656476 +3,8369,1213,128,2.46896362,0.144758309,884.23249,3008656476 +3,8370,1214,128,3.00245738,0.132358157,967.073,3008656476 +3,8371,1215,128,3.05571055,0.133058282,961.984463,3008656476 +3,8372,1216,128,2.58707404,0.132394523,966.807366,3008656476 +3,8373,1217,128,2.88779855,0.123004623,1040.61129,3008656476 +3,8374,1218,128,2.57680941,0.133557135,958.391328,3008656476 +3,8375,1219,128,3.14686894,0.145782571,878.019911,3008656476 +3,8376,1220,128,2.02331924,0.131829669,970.94987,3008656476 +3,8377,1221,128,2.61069894,0.145849417,877.617495,3008656476 +3,8378,1222,128,2.56273866,0.130676737,979.516347,3008656476 +3,8379,1223,128,2.49684334,0.131993592,969.744046,3008656476 +3,8380,1224,128,2.99388719,0.133385437,959.625,3008656476 +3,8381,1225,128,3.16561127,0.130801461,978.582342,3008656476 +3,8382,1226,128,2.67004275,0.129973528,984.815923,3008656476 +3,8383,1227,128,2.88465524,0.14349632,892.008938,3008656476 +3,8384,1228,128,2.99710917,0.129756062,986.466436,3008656476 +3,8385,1229,128,2.7610867,0.144207791,887.608077,3008656476 +3,8386,1230,128,2.70582294,0.130112039,983.767536,3008656476 +3,8387,1231,128,2.18373871,0.128972141,992.462395,3008656476 +3,8388,1232,128,3.05221367,0.128991868,992.310616,3008656476 +3,8389,1233,128,2.78283548,0.129733416,986.638631,3008656476 +3,8390,1234,128,2.48671508,0.12839617,996.914472,3008656476 +3,8391,1235,128,2.81845641,0.143083408,894.583109,3008656476 +3,8392,1236,128,2.77302694,0.128111285,999.131341,3008656476 +3,8393,1237,128,2.62258029,0.145882668,877.41746,3008656476 +3,8394,1238,128,2.55386186,0.12820446,998.405204,3008656476 +3,8395,1239,128,2.86236906,0.129667284,987.14183,3008656476 +3,8396,1240,128,2.9459033,0.130211975,983.012507,3008656476 +3,8397,1241,128,1.72882164,0.128710048,994.483352,3008656476 +3,8398,1242,128,2.60803795,0.129515017,988.302383,3008656476 +3,8399,1243,128,1.7705934,0.143217523,893.745383,3008656476 +3,8400,1244,128,2.65141082,0.129391365,989.246848,3008656476 +3,8401,1245,128,2.14444447,0.143868611,889.700673,3008656476 +3,8402,1246,128,2.27778745,0.129958477,984.929979,3008656476 +3,8403,1247,128,1.86172616,0.130599762,980.09367,3008656476 +3,8404,1248,128,1.16765153,0.129419513,989.031693,3008656476 +3,8405,1249,128,1.46804833,0.130046335,984.26457,3008656476 +3,8406,1250,128,1.8841207,0.128840425,993.477008,3008656476 +3,8407,1251,128,1.55232859,0.147991572,864.914118,3008656476 +3,8408,1252,128,2.06397891,0.129037198,991.962023,3008656476 +3,8409,1253,128,2.00892162,0.142600552,897.612234,3008656476 +3,8410,1254,128,1.79492378,0.116879337,1095.14653,3008656476 +3,8411,1255,128,1.4920212,0.129476251,988.598287,3008656476 +3,8412,1256,128,1.85378993,0.129429063,988.958716,3008656476 +3,8413,1257,128,2.19902444,0.129815537,986.014486,3008656476 +3,8414,1258,128,1.52885449,0.128748699,994.184803,3008656476 +3,8415,1259,128,2.71446609,0.140843793,908.808243,3008656476 +3,8416,1260,128,3.07359195,0.128633139,995.077948,3008656476 +3,8417,1261,128,2.75420976,0.144767251,884.177873,3008656476 +3,8418,1262,128,3.17111945,0.130554409,980.434142,3008656476 +3,8419,1263,128,3.04614449,0.130990957,977.166691,3008656476 +3,8420,1264,128,2.59453201,0.13091822,977.709596,3008656476 +3,8421,1265,128,2.68780875,0.131378289,974.285789,3008656476 +3,8422,1266,128,2.36963391,0.133354963,959.844292,3008656476 +3,8423,1267,128,2.77828979,0.134168353,954.025276,3008656476 +3,8424,1268,128,2.66266155,0.133009806,962.335063,3008656476 +3,8425,1269,128,2.72112203,0.139948111,914.624707,3008656476 +3,8426,1270,128,1.98171389,0.134063989,954.76795,3008656476 +3,8427,1271,128,2.31277537,0.13367811,957.52401,3008656476 +3,8428,1272,128,2.19810963,0.132896222,963.157553,3008656476 +3,8429,1273,128,3.15096641,0.144063484,888.497185,3008656476 +3,8430,1274,128,2.1531117,0.145805195,877.883672,3008656476 +3,8431,1275,128,2.81200862,0.138856783,921.813089,3008656476 +3,8432,1276,128,2.87274051,0.148279824,863.232748,3008656476 +3,8433,1277,128,2.08321977,0.132262186,967.77472,3008656476 +3,8434,1278,128,2.55580544,0.133597489,958.10184,3008656476 +3,8435,1279,128,2.87656498,0.133243001,960.650834,3008656476 +3,8436,1280,128,2.4732852,0.132308773,967.433958,3008656476 +3,8437,1281,128,2.77919602,0.132637616,965.035439,3008656476 +3,8438,1282,128,2.78192401,0.144622094,885.065321,3008656476 +3,8439,1283,128,1.9675504,0.132363255,967.035753,3008656476 +3,8440,1284,128,2.49547935,0.145959546,876.955317,3008656476 +3,8441,1285,128,2.92278385,0.131625592,972.455265,3008656476 +3,8442,1286,128,2.43945479,0.13172107,971.750381,3008656476 +3,8443,1287,128,2.68159342,0.131204224,975.578347,3008656476 +3,8444,1288,128,2.18896079,0.132025666,969.508459,3008656476 +3,8445,1289,128,2.34237528,0.131081316,976.493095,3008656476 +3,8446,1290,128,2.60941172,0.144895102,883.397701,3008656476 +3,8447,1291,128,2.61673522,0.130714792,979.23118,3008656476 +3,8448,1292,128,2.77842903,0.143476617,892.131434,3008656476 +3,8449,1293,128,2.17020535,0.130268861,982.583244,3008656476 +3,8450,1294,128,2.24093509,0.133551026,958.435168,3008656476 +3,8451,1295,128,2.22497272,0.130572263,980.300081,3008656476 +3,8452,1296,128,2.35931802,0.129792959,986.186007,3008656476 +3,8453,1297,128,2.59621024,0.132735306,964.325196,3008656476 +3,8454,1298,128,2.6028378,0.142965377,895.321669,3008656476 +3,8455,1299,128,2.79860616,0.130820236,978.441898,3008656476 +3,8456,1300,128,2.54166484,0.14238479,898.972425,3008656476 +3,8457,1301,128,2.39678884,0.128467466,996.361211,3008656476 +3,8458,1302,128,2.27563596,0.129281608,990.086695,3008656476 +3,8459,1303,128,2.37047291,0.12841075,996.80128,3008656476 +3,8460,1304,128,2.40949845,0.128074686,999.416856,3008656476 +3,8461,1305,128,2.80553818,0.129010909,992.164159,3008656476 +3,8462,1306,128,2.72071981,0.140927052,908.271323,3008656476 +3,8463,1307,128,2.75165415,0.129140063,991.171888,3008656476 +3,8464,1308,128,2.04199648,0.141651518,903.626038,3008656476 +3,8465,1309,128,2.79123282,0.129153527,991.06856,3008656476 +3,8466,1310,128,3.17327213,0.129072748,991.688811,3008656476 +3,8467,1311,128,2.52560687,0.12824672,998.076208,3008656476 +3,8468,1312,128,2.2878623,0.12984821,985.766381,3008656476 +3,8469,1313,128,2.70523977,0.128193009,998.494387,3008656476 +3,8470,1314,128,2.36727071,0.139158706,919.813095,3008656476 +3,8471,1315,128,2.26155591,0.129321659,989.780065,3008656476 +3,8472,1316,128,2.73925996,0.14453239,885.614636,3008656476 +3,8473,1317,128,2.51260662,0.130051823,984.223035,3008656476 +3,8474,1318,128,1.76335442,0.129685936,986.999855,3008656476 +3,8475,1319,128,2.59969473,0.13018943,983.182736,3008656476 +3,8476,1320,128,2.7782023,0.130335683,982.079482,3008656476 +3,8477,1321,128,2.72067666,0.130369099,981.827757,3008656476 +3,8478,1322,128,3.04461646,0.133208407,960.900313,3008656476 +3,8479,1323,128,2.3875649,0.1287686,994.031154,3008656476 +3,8480,1324,128,1.6900574,0.141752069,902.985056,3008656476 +3,8481,1325,128,2.13435936,0.129305142,989.906496,3008656476 +3,8482,1326,128,2.93319654,0.130226143,982.90556,3008656476 +3,8483,1327,128,2.81660986,0.129871348,985.590756,3008656476 +3,8484,1328,128,2.8745575,0.130119816,983.708738,3008656476 +3,8485,1329,128,2.39278126,0.129341453,989.628592,3008656476 +3,8486,1330,128,2.50107431,0.134302831,953.070006,3008656476 +3,8487,1331,128,2.12845945,0.129807162,986.078103,3008656476 +3,8488,1332,128,2.65400934,0.141040073,907.543489,3008656476 +3,8489,1333,128,2.49363995,0.130783701,978.71523,3008656476 +3,8490,1334,128,2.84514213,0.129905429,985.332183,3008656476 +3,8491,1335,128,2.22639585,0.129767372,986.380459,3008656476 +3,8492,1336,128,2.80440402,0.13026508,982.611764,3008656476 +3,8493,1337,128,2.12601161,0.129682953,987.022558,3008656476 +3,8494,1338,128,2.308779,0.135896485,941.893383,3008656476 +3,8495,1339,128,2.48302937,0.129643982,987.319257,3008656476 +3,8496,1340,128,2.1904614,0.139903221,914.918178,3008656476 +3,8497,1341,128,2.38283658,0.129539576,988.115014,3008656476 +3,8498,1342,128,2.47609782,0.129806628,986.082159,3008656476 +3,8499,1343,128,2.14324141,0.12919838,990.724497,3008656476 +3,8500,1344,128,2.68502378,0.129643728,987.321192,3008656476 +3,8501,1345,128,2.52241421,0.129725329,986.700138,3008656476 +3,8502,1346,128,2.62227488,0.13744999,931.247794,3008656476 +3,8503,1347,128,2.23045182,0.130442854,981.272612,3008656476 +3,8504,1348,128,1.85207736,0.140595313,910.414418,3008656476 +3,8505,1349,128,2.82208037,0.129994369,984.658035,3008656476 +3,8506,1350,128,2.62276387,0.129233021,990.458932,3008656476 +3,8507,1351,128,2.73836637,0.129605287,987.614032,3008656476 +3,8508,1352,128,2.18735886,0.129568316,987.895837,3008656476 +3,8509,1353,128,1.99360776,0.13014501,983.518308,3008656476 +3,8510,1354,128,2.69922519,0.135655677,943.565377,3008656476 +3,8511,1355,128,2.16632867,0.129034553,991.982357,3008656476 +3,8512,1356,128,2.2760725,0.141919883,901.917316,3008656476 +3,8513,1357,128,2.52645087,0.129411828,989.090425,3008656476 +3,8514,1358,128,2.6510787,0.129862628,985.656936,3008656476 +3,8515,1359,128,2.23536849,0.129828131,985.918838,3008656476 +3,8516,1360,128,2.04619765,0.129091951,991.541293,3008656476 +3,8517,1361,128,2.7598896,0.129885798,985.481107,3008656476 +3,8518,1362,128,2.81896257,0.137061853,933.884937,3008656476 +3,8519,1363,128,2.3462615,0.129120665,991.320793,3008656476 +3,8520,1364,128,2.09391403,0.142496836,898.265559,3008656476 +3,8521,1365,128,2.453614,0.129854946,985.715246,3008656476 +3,8522,1366,128,2.85911894,0.129472532,988.626684,3008656476 +3,8523,1367,128,2.88222671,0.129031221,992.007973,3008656476 +3,8524,1368,128,2.69303894,0.128983689,992.37354,3008656476 +3,8525,1369,128,2.39443183,0.129368533,989.421438,3008656476 +3,8526,1370,128,2.25927639,0.134465662,951.915888,3008656476 +3,8527,1371,128,2.81750298,0.129250514,990.324882,3008656476 +3,8528,1372,128,2.41975045,0.141468421,904.795566,3008656476 +3,8529,1373,128,2.90207553,0.12997981,984.768327,3008656476 +3,8530,1374,128,3.10772014,0.130748011,978.982388,3008656476 +3,8531,1375,128,3.0645864,0.130694025,979.386778,3008656476 +3,8532,1376,128,3.21116781,0.130009443,984.543869,3008656476 +3,8533,1377,128,2.68359733,0.130268865,982.583214,3008656476 +3,8534,1378,128,2.35127425,0.134861153,949.124319,3008656476 +3,8535,1379,128,2.43915272,0.130594672,980.131869,3008656476 +3,8536,1380,128,2.83677363,0.142381287,898.994543,3008656476 +3,8537,1381,128,2.18399215,0.131286162,974.969472,3008656476 +3,8538,1382,128,2.52839136,0.131153189,975.957969,3008656476 +3,8539,1383,128,2.40851116,0.13182184,971.007536,3008656476 +3,8540,1384,128,1.95457256,0.133664984,957.61804,3008656476 +3,8541,1385,128,2.66429663,0.143151841,894.155458,3008656476 +3,8542,1386,128,1.78278697,0.129638612,987.360155,3008656476 +3,8543,1387,128,2.26815224,0.140272118,912.512065,3008656476 +3,8544,1388,128,2.85472035,0.125638824,1018.79336,3008656476 +3,8545,1389,128,2.35430884,0.130668421,979.578685,3008656476 +3,8546,1390,128,1.94666338,0.131796158,971.196748,3008656476 +3,8547,1391,128,2.34995961,0.131919645,970.287632,3008656476 +3,8548,1392,128,2.32342219,0.131019509,976.953745,3008656476 +3,8549,1393,128,2.54175425,0.14321803,893.742219,3008656476 +3,8550,1394,128,2.90393424,0.131817109,971.042386,3008656476 +3,8551,1395,128,2.40108347,0.143973747,889.050974,3008656476 +3,8552,1396,128,2.37930322,0.132565191,965.562672,3008656476 +3,8553,1397,128,2.93130136,0.132978148,962.564165,3008656476 +3,8554,1398,128,2.29609632,0.132106666,968.914014,3008656476 +3,8555,1399,128,2.83511066,0.133390118,959.591324,3008656476 +3,8556,1400,128,3.10161948,0.13629636,939.129996,3008656476 +3,8557,1401,128,3.03750896,0.144831854,883.78348,3008656476 +3,8558,1402,128,2.41157556,0.132694989,964.618189,3008656476 +3,8559,1403,128,2.72416162,0.149266075,857.52908,3008656476 +3,8560,1404,128,2.16798592,0.131221243,975.451818,3008656476 +3,8561,1405,128,2.60511947,0.131708094,971.846119,3008656476 +3,8562,1406,128,3.08933401,0.132980459,962.547437,3008656476 +3,8563,1407,128,2.80018473,0.131110949,976.272394,3008656476 +3,8564,1408,128,2.86371493,0.131207019,975.557565,3008656476 +3,8565,1409,128,2.99707389,0.145221489,881.412254,3008656476 +3,8566,1410,128,2.73673296,0.131765953,971.419377,3008656476 +3,8567,1411,128,3.25204897,0.146916613,871.242519,3008656476 +3,8568,1412,128,2.82927918,0.130266404,982.601777,3008656476 +3,8569,1413,128,3.01655865,0.129558492,987.970746,3008656476 +3,8570,1414,128,3.0435977,0.129888866,985.45783,3008656476 +3,8571,1415,128,3.02306199,0.129617597,987.520236,3008656476 +3,8572,1416,128,2.72933555,0.130005264,984.575517,3008656476 +3,8573,1417,128,2.93280935,0.144306645,887.000041,3008656476 +3,8574,1418,128,3.06735158,0.129328966,989.724143,3008656476 +3,8575,1419,128,3.07938099,0.141332242,905.667371,3008656476 +3,8576,1420,128,2.94957352,0.128750664,994.16963,3008656476 +3,8577,1421,128,2.85337448,0.129523881,988.234749,3008656476 +3,8578,1422,128,3.37650871,0.128979152,992.408448,3008656476 +3,8579,1423,128,2.76074934,0.129833507,985.878014,3008656476 +3,8580,1424,128,3.06319785,0.129982299,984.74947,3008656476 +3,8581,1425,128,3.60078859,0.145069612,882.335027,3008656476 +3,8582,1426,128,2.6810832,0.129122892,991.303695,3008656476 +3,8583,1427,128,2.93376446,0.142452992,898.542026,3008656476 +3,8584,1428,128,2.78760314,0.129978012,984.781949,3008656476 +3,8585,1429,128,3.64612865,0.130095812,983.890242,3008656476 +3,8586,1430,128,3.26814222,0.130515066,980.729688,3008656476 +3,8587,1431,128,3.11525273,0.130111306,983.773078,3008656476 +3,8588,1432,128,3.4406054,0.130760311,978.8903,3008656476 +3,8589,1433,128,2.53522849,0.142015468,901.310271,3008656476 +3,8590,1434,128,2.64639807,0.130790645,978.663268,3008656476 +3,8591,1435,128,3.23993349,0.143577854,891.50239,3008656476 +3,8592,1436,128,2.17888975,0.130874076,978.039379,3008656476 +3,8593,1437,128,3.09464622,0.129865468,985.635381,3008656476 +3,8594,1438,128,2.92695904,0.129681856,987.030907,3008656476 +3,8595,1439,128,3.0310688,0.130536695,980.567188,3008656476 +3,8596,1440,128,2.97978759,0.130312106,982.257166,3008656476 +3,8597,1441,128,3.25820398,0.132703359,964.557348,3008656476 +3,8598,1442,128,3.05926704,0.129222131,990.542402,3008656476 +3,8599,1443,128,2.34438324,0.141913974,901.95487,3008656476 +3,8600,1444,128,3.26520514,0.129663322,987.171993,3008656476 +3,8601,1445,128,3.08782601,0.130044917,984.275302,3008656476 +3,8602,1446,128,3.36143684,0.128515523,995.988632,3008656476 +3,8603,1447,128,2.96733379,0.130080167,984.008577,3008656476 +3,8604,1448,128,2.585495,0.12949343,988.467137,3008656476 +3,8605,1449,128,3.30957031,0.13465724,950.561589,3008656476 +3,8606,1450,128,2.51149464,0.130048704,984.24664,3008656476 +3,8607,1451,128,2.79534292,0.142530107,898.055875,3008656476 +3,8608,1452,128,2.85408068,0.128435286,996.610854,3008656476 +3,8609,1453,128,2.72857714,0.130093807,983.905406,3008656476 +3,8610,1454,128,2.82146192,0.130259417,982.654482,3008656476 +3,8611,1455,128,2.01954365,0.130292611,982.404136,3008656476 +3,8612,1456,128,3.16761756,0.130458272,981.156641,3008656476 +3,8613,1457,128,3.0194695,0.133976839,955.389013,3008656476 +3,8614,1458,128,3.26641202,0.130482434,980.974956,3008656476 +3,8615,1459,128,3.19732499,0.140840999,908.826272,3008656476 +3,8616,1460,128,2.79412675,0.130396429,981.621974,3008656476 +3,8617,1461,128,1.95236957,0.131224986,975.423994,3008656476 +3,8618,1462,128,2.10833287,0.130646303,979.744524,3008656476 +3,8619,1463,128,2.88195705,0.132238175,967.950442,3008656476 +3,8620,1464,128,2.178509,0.131284624,974.980893,3008656476 +3,8621,1465,128,2.73869801,0.132686049,964.683182,3008656476 +3,8622,1466,128,3.59515142,0.130577835,980.25825,3008656476 +3,8623,1467,128,2.99359059,0.140098128,913.645327,3008656476 +3,8624,1468,128,2.58894491,0.132403893,966.738946,3008656476 +3,8625,1469,128,3.37275004,0.131943533,970.111964,3008656476 +3,8626,1470,128,2.64072061,0.132924478,962.952813,3008656476 +3,8627,1471,128,3.4230454,0.132522525,965.873537,3008656476 +3,8628,1472,128,3.04070377,0.143434779,892.391656,3008656476 +3,8629,1473,128,3.36460519,0.134375465,952.554843,3008656476 +3,8630,1474,128,2.8398242,0.148001793,864.854387,3008656476 +3,8631,1475,128,2.74571562,0.133684998,957.474675,3008656476 +3,8632,1476,128,2.81782079,0.132706676,964.533239,3008656476 +3,8633,1477,128,3.2498033,0.134727705,950.064428,3008656476 +3,8634,1478,128,2.94529748,0.132689816,964.655795,3008656476 +3,8635,1479,128,3.07116985,0.133216421,960.842508,3008656476 +3,8636,1480,128,2.89386415,0.146221551,875.383958,3008656476 +3,8637,1481,128,3.24352455,0.132993169,962.455448,3008656476 +3,8638,1482,128,2.86348414,0.145865434,877.521127,3008656476 +3,8639,1483,128,2.6280663,0.131047292,976.746624,3008656476 +3,8640,1484,128,2.76606131,0.130969066,977.330021,3008656476 +3,8641,1485,128,3.04216337,0.13088926,977.92592,3008656476 +3,8642,1486,128,3.35837817,0.129957238,984.939369,3008656476 +3,8643,1487,128,3.23064828,0.130251186,982.71658,3008656476 +3,8644,1488,128,2.85873866,0.14527651,881.078434,3008656476 +3,8645,1489,128,2.5648663,0.130261487,982.638867,3008656476 +3,8646,1490,128,2.96616125,0.145297729,880.949764,3008656476 +3,8647,1491,128,2.93358064,0.130261631,982.637781,3008656476 +3,8648,1492,128,3.3069768,0.128472786,996.319952,3008656476 +3,8649,1493,128,2.77540255,0.130043228,984.288086,3008656476 +3,8650,1494,128,2.17794728,0.129206955,990.658746,3008656476 +3,8651,1495,128,2.66504431,0.130571008,980.309503,3008656476 +3,8652,1496,128,2.79123569,0.145124756,881.99976,3008656476 +3,8653,1497,128,2.740978,0.129240885,990.398665,3008656476 +3,8654,1498,128,2.84800291,0.147832683,865.843719,3008656476 +3,8655,1499,128,2.60261464,0.130071655,984.072971,3008656476 +3,8656,1500,128,3.09609461,0.130504579,980.808497,3008656476 +3,8657,1501,128,3.30713034,0.13063041,979.863724,3008656476 +3,8658,1502,128,2.68842435,0.131143625,976.029144,3008656476 +3,8659,1503,128,3.01397395,0.130574574,980.282731,3008656476 +3,8660,1504,128,2.83145308,0.144446086,886.143775,3008656476 +3,8661,1505,128,2.98654532,0.130483894,980.96398,3008656476 +3,8662,1506,128,2.53867841,0.142493163,898.288713,3008656476 +3,8663,1507,128,2.89755678,0.129842721,985.808053,3008656476 +3,8664,1508,128,2.70064259,0.129783495,986.257921,3008656476 +3,8665,1509,128,3.14050174,0.130445864,981.249969,3008656476 +3,8666,1510,128,3.57552552,0.129929538,985.149351,3008656476 +3,8667,1511,128,2.61410093,0.1299652,984.879029,3008656476 +3,8668,1512,128,2.93740153,0.140807625,909.04168,3008656476 +3,8669,1513,128,3.23937845,0.129109552,991.40612,3008656476 +3,8670,1514,128,3.64143562,0.144804725,883.949056,3008656476 +3,8671,1515,128,2.80747199,0.13052788,980.63341,3008656476 +3,8672,1516,128,3.16599965,0.13147532,973.56675,3008656476 +3,8673,1517,128,3.29163694,0.131694755,971.944555,3008656476 +3,8674,1518,128,3.27428079,0.131633217,972.398935,3008656476 +3,8675,1519,128,2.67217112,0.135846019,942.243291,3008656476 +3,8676,1520,128,3.24221539,0.129805747,986.088852,3008656476 +3,8677,1521,128,2.54799724,0.131944933,970.101671,3008656476 +3,8678,1522,128,3.37982535,0.142335322,899.284859,3008656476 +3,8679,1523,128,3.71277595,0.133622152,957.925,3008656476 +3,8680,1524,128,3.45715022,0.134301495,953.079487,3008656476 +3,8681,1525,128,2.71954465,0.140113638,913.54419,3008656476 +3,8682,1526,128,2.28201604,0.134501549,951.661902,3008656476 +3,8683,1527,128,2.31235003,0.146576219,873.265806,3008656476 +3,8684,1528,128,2.91438651,0.133276217,960.411414,3008656476 +3,8685,1529,128,3.41908979,0.147406189,868.348886,3008656476 +3,8686,1530,128,3.29180574,0.132566524,965.552963,3008656476 +3,8687,1531,128,3.89800072,0.133504511,958.769101,3008656476 +3,8688,1532,128,3.68508911,0.131914738,970.323725,3008656476 +3,8689,1533,128,3.25446558,0.132023457,969.524681,3008656476 +3,8690,1534,128,3.15831947,0.131972811,969.896746,3008656476 +3,8691,1535,128,2.54118943,0.145619618,879.002443,3008656476 +3,8692,1536,128,2.97880816,0.129865803,985.632838,3008656476 +3,8693,1537,128,2.84588647,0.146684855,872.619058,3008656476 +3,8694,1538,128,3.15239787,0.129237068,990.427917,3008656476 +3,8695,1539,128,2.74634576,0.129252916,990.306478,3008656476 +3,8696,1540,128,3.68386412,0.130203245,983.078417,3008656476 +3,8697,1541,128,3.30442762,0.129595703,987.687069,3008656476 +3,8698,1542,128,3.52791762,0.129574106,987.851693,3008656476 +3,8699,1543,128,3.07635188,0.14404105,888.635566,3008656476 +3,8700,1544,128,3.55333495,0.128779262,993.948855,3008656476 +3,8701,1545,128,2.94705367,0.143397862,892.621398,3008656476 +3,8702,1546,128,2.69204617,0.129776565,986.310587,3008656476 +3,8703,1547,128,3.03107071,0.130563483,980.366003,3008656476 +3,8704,1548,128,2.8915534,0.129621738,987.488688,3008656476 +3,8705,1549,128,3.35734344,0.131026881,976.898779,3008656476 +3,8706,1550,128,3.0317173,0.129980811,984.760743,3008656476 +3,8707,1551,128,2.54272842,0.143756593,890.393945,3008656476 +3,8708,1552,128,3.04801083,0.130632127,979.850845,3008656476 +3,8709,1553,128,3.95194364,0.142794483,896.393175,3008656476 +3,8710,1554,128,3.47913265,0.130816608,978.469034,3008656476 +3,8711,1555,128,2.850214,0.130628476,979.878231,3008656476 +3,8712,1556,128,3.29194522,0.131306359,974.819506,3008656476 +3,8713,1557,128,3.37833309,0.130481265,980.983745,3008656476 +3,8714,1558,128,3.06741929,0.129982769,984.745909,3008656476 +3,8715,1559,128,2.80628872,0.143241191,893.597708,3008656476 +3,8716,1560,128,2.9217732,0.130328624,982.132674,3008656476 +3,8717,1561,128,3.19627571,0.143008821,895.049684,3008656476 +3,8718,1562,128,3.7285409,0.130597283,980.112274,3008656476 +3,8719,1563,128,3.68276525,0.130201097,983.094636,3008656476 +3,8720,1564,128,3.20467544,0.130283346,982.473999,3008656476 +3,8721,1565,128,3.11705422,0.130617394,979.961367,3008656476 +3,8722,1566,128,2.42565298,0.130518638,980.702848,3008656476 +3,8723,1567,128,2.1655705,0.144092908,888.315753,3008656476 +3,8724,1568,128,1.76656961,0.132594102,965.352139,3008656476 +3,8725,1569,128,2.53154778,0.144816898,883.874753,3008656476 +3,8726,1570,128,2.74259377,0.134480756,951.809045,3008656476 +3,8727,1571,128,2.96609426,0.180465978,709.274964,3008656476 +3,8728,1572,128,2.24537659,0.144595615,885.227398,3008656476 +3,8729,1573,128,2.84891963,0.133248655,960.610071,3008656476 +3,8730,1574,128,3.34183764,0.147083208,870.255699,3008656476 +3,8731,1575,128,3.3715024,0.132710107,964.508302,3008656476 +3,8732,1576,128,3.05419827,0.14750355,867.775725,3008656476 +3,8733,1577,128,3.15717626,0.132529644,965.821654,3008656476 +3,8734,1578,128,2.78213239,0.132165245,968.484566,3008656476 +3,8735,1579,128,3.02024055,0.130706699,979.291811,3008656476 +3,8736,1580,128,3.3277514,0.1319811,969.835833,3008656476 +3,8737,1581,128,2.85876203,0.132920992,962.978067,3008656476 +3,8738,1582,128,2.70059872,0.14520485,881.513255,3008656476 +3,8739,1583,128,2.79811358,0.130951734,977.459374,3008656476 +3,8740,1584,128,3.28245616,0.14387848,889.639646,3008656476 +3,8741,1585,128,3.25606561,0.130456485,981.170081,3008656476 +3,8742,1586,128,3.40253186,0.128863935,993.295758,3008656476 +3,8743,1587,128,2.79880953,0.129489081,988.500335,3008656476 +3,8744,1588,128,2.88866496,0.129630444,987.422368,3008656476 +3,8745,1589,128,3.21792722,0.129835941,985.859532,3008656476 +3,8746,1590,128,2.68000126,0.139493608,917.604769,3008656476 +3,8747,1591,128,2.53700948,0.128493782,996.157153,3008656476 +3,8748,1592,128,3.0056932,0.142900528,895.727971,3008656476 +3,8749,1593,128,3.34455609,0.12889153,993.083099,3008656476 +3,8750,1594,128,3.18243551,0.130020617,984.459257,3008656476 +3,8751,1595,128,2.68605757,0.13023952,982.804605,3008656476 +3,8752,1596,128,2.8080194,0.130370925,981.814005,3008656476 +3,8753,1597,128,2.64814949,0.130668683,979.576721,3008656476 +3,8754,1598,128,2.96989441,0.134516614,951.555322,3008656476 +3,8755,1599,128,2.73561263,0.130876098,978.024268,3008656476 +3,8756,1600,128,2.17619228,0.141003656,907.777881,3008656476 +3,8757,1601,128,2.62252951,0.130238659,982.811102,3008656476 +3,8758,1602,128,2.60335684,0.129238742,990.415088,3008656476 +3,8759,1603,128,2.83616352,0.130988052,977.188362,3008656476 +3,8760,1604,128,2.30316234,0.13005232,984.219274,3008656476 +3,8761,1605,128,2.05602598,0.130052692,984.216459,3008656476 +3,8762,1606,128,1.89163482,0.134693906,950.30283,3008656476 +3,8763,1607,128,3.11379218,0.13067259,979.547432,3008656476 +3,8764,1608,128,2.77659178,0.140716452,909.630666,3008656476 +3,8765,1609,128,2.81442332,0.129622479,987.483043,3008656476 +3,8766,1610,128,3.14427662,0.129591394,987.71991,3008656476 +3,8767,1611,128,3.28354621,0.130261954,982.635344,3008656476 +3,8768,1612,128,3.33258247,0.130429394,981.373877,3008656476 +3,8769,1613,128,2.80154228,0.130097256,983.879322,3008656476 +3,8770,1614,128,2.66873002,0.134549499,951.322754,3008656476 +3,8771,1615,128,2.70344496,0.1294511,988.790362,3008656476 +3,8772,1616,128,2.74089837,0.141158465,906.782317,3008656476 +3,8773,1617,128,3.07808614,0.129040459,991.936955,3008656476 +3,8774,1618,128,1.92637217,0.13082514,978.405221,3008656476 +3,8775,1619,128,3.19867849,0.129732003,986.649377,3008656476 +3,8776,1620,128,3.73097157,0.128626123,995.132225,3008656476 +3,8777,1621,128,3.1110158,0.129799836,986.133758,3008656476 +3,8778,1622,128,2.80130887,0.13432416,952.918671,3008656476 +3,8779,1623,128,3.18396497,0.129738975,986.596356,3008656476 +3,8780,1624,128,3.04277182,0.142299626,899.510446,3008656476 +3,8781,1625,128,2.67602491,0.129575189,987.843437,3008656476 +3,8782,1626,128,3.09644341,0.129156233,991.047796,3008656476 +3,8783,1627,128,3.12603641,0.129278765,990.108468,3008656476 +3,8784,1628,128,2.91900849,0.130081717,983.996852,3008656476 +3,8785,1629,128,2.54351735,0.130331546,982.110655,3008656476 +3,8786,1630,128,3.10676789,0.133523851,958.63023,3008656476 +3,8787,1631,128,2.92678642,0.130339409,982.051407,3008656476 +3,8788,1632,128,3.08522987,0.144783971,884.075766,3008656476 +3,8789,1633,128,2.84314847,0.131313323,974.767808,3008656476 +3,8790,1634,128,2.96669316,0.131548717,973.023553,3008656476 +3,8791,1635,128,2.81338739,0.132966879,962.645743,3008656476 +3,8792,1636,128,2.60957336,0.131688129,971.993459,3008656476 +3,8793,1637,128,2.97236967,0.14690091,871.335651,3008656476 +3,8794,1638,128,3.0681684,0.133411716,959.435976,3008656476 +3,8795,1639,128,3.40453529,0.147013258,870.669773,3008656476 +3,8796,1640,128,2.63685107,0.143483483,892.088743,3008656476 +3,8797,1641,128,2.1427381,0.144077852,888.408581,3008656476 +3,8798,1642,128,3.12426686,0.135507796,944.595099,3008656476 +3,8799,1643,128,2.42474341,0.133763299,956.914198,3008656476 +3,8800,1644,128,2.56487608,0.13246896,966.264097,3008656476 +3,8801,1645,128,1.97033727,0.146915571,871.248698,3008656476 +3,8802,1646,128,3.27468014,0.132129287,968.748132,3008656476 +3,8803,1647,128,2.9048667,0.145505981,879.688925,3008656476 +3,8804,1648,128,2.42125463,0.131765931,971.419539,3008656476 +3,8805,1649,128,2.24502611,0.130324429,982.164288,3008656476 +3,8806,1650,128,2.44686842,0.131401086,974.116759,3008656476 +3,8807,1651,128,2.52233219,0.129915047,985.259236,3008656476 +3,8808,1652,128,2.76586413,0.130748749,978.976862,3008656476 +3,8809,1653,128,2.29497004,0.143648515,891.063858,3008656476 +3,8810,1654,128,2.38870025,0.129003243,992.223118,3008656476 +3,8811,1655,128,2.62174487,0.144362429,886.657289,3008656476 +3,8812,1656,128,2.92221045,0.128805815,993.743955,3008656476 +3,8813,1657,128,3.06512356,0.128979684,992.404354,3008656476 +3,8814,1658,128,3.14779544,0.128960856,992.549243,3008656476 +3,8815,1659,128,2.93662667,0.12964273,987.328792,3008656476 +3,8816,1660,128,2.25367761,0.129698549,986.90387,3008656476 +3,8817,1661,128,2.40676332,0.145966404,876.914115,3008656476 +3,8818,1662,128,2.81189919,0.129670834,987.114805,3008656476 +3,8819,1663,128,3.05392432,0.14525073,881.234814,3008656476 +3,8820,1664,128,3.18912601,0.128963529,992.528671,3008656476 +3,8821,1665,128,2.80023241,0.129878648,985.535359,3008656476 +3,8822,1666,128,3.04461956,0.130256703,982.674957,3008656476 +3,8823,1667,128,3.186373,0.129901022,985.365612,3008656476 +3,8824,1668,128,3.35039234,0.129125825,991.281179,3008656476 +3,8825,1669,128,3.05994105,0.137477741,931.059814,3008656476 +3,8826,1670,128,2.99412346,0.130042202,984.295852,3008656476 +3,8827,1671,128,2.14469171,0.142314881,899.414025,3008656476 +3,8828,1672,128,2.91278172,0.130036689,984.337582,3008656476 +3,8829,1673,128,2.91655016,0.13025253,982.70644,3008656476 +3,8830,1674,128,3.0938952,0.130387903,981.686161,3008656476 +3,8831,1675,128,2.80483484,0.130094845,983.897556,3008656476 +3,8832,1676,128,2.89475465,0.129067375,991.730094,3008656476 +3,8833,1677,128,3.60815859,0.132986456,962.504031,3008656476 +3,8834,1678,128,3.30220008,0.130369557,981.824307,3008656476 +3,8835,1679,128,3.33987164,0.140261596,912.580518,3008656476 +3,8836,1680,128,3.09061289,0.129345001,989.601446,3008656476 +3,8837,1681,128,3.36465883,0.129863072,985.653566,3008656476 +3,8838,1682,128,3.20092511,0.129933624,985.118371,3008656476 +3,8839,1683,128,3.17482114,0.129953076,984.970914,3008656476 +3,8840,1684,128,2.84456134,0.130773794,978.789374,3008656476 +3,8841,1685,128,2.44917679,0.131385191,974.234608,3008656476 +3,8842,1686,128,3.27760172,0.129909089,985.304423,3008656476 +3,8843,1687,128,2.72543192,0.143741441,890.487803,3008656476 +3,8844,1688,128,2.74009061,0.130861611,978.13254,3008656476 +3,8845,1689,128,2.78651762,0.131187239,975.704657,3008656476 +3,8846,1690,128,2.93845677,0.131778065,971.330092,3008656476 +3,8847,1691,128,3.0557344,0.133154986,961.285821,3008656476 +3,8848,1692,128,2.80307245,0.14058414,910.486773,3008656476 +3,8849,1693,128,2.86559272,0.13076741,978.837158,3008656476 +3,8850,1694,128,3.0141542,0.146601985,873.112325,3008656476 +3,8851,1695,128,3.19155741,0.124644806,1026.91804,3008656476 +3,8852,1696,128,3.02645183,0.1313607,974.416245,3008656476 +3,8853,1697,128,3.02163506,0.130759754,978.894469,3008656476 +3,8854,1698,128,3.38706827,0.133045571,962.07637,3008656476 +3,8855,1699,128,3.29618096,0.13140393,974.095676,3008656476 +3,8856,1700,128,3.1683166,0.145782988,878.017399,3008656476 +3,8857,1701,128,3.14780092,0.133045935,962.073738,3008656476 +3,8858,1702,128,1.90754914,0.149952413,853.604136,3008656476 +3,8859,1703,128,2.29451418,0.132969262,962.628491,3008656476 +3,8860,1704,128,2.16356921,0.132888262,963.215246,3008656476 +3,8861,1705,128,2.35125852,0.132988486,962.489339,3008656476 +3,8862,1706,128,2.7431221,0.132607353,965.255675,3008656476 +3,8863,1707,128,2.81697536,0.132041446,969.392595,3008656476 +3,8864,1708,128,3.48997331,0.145442029,880.075731,3008656476 +3,8865,1709,128,2.73879409,0.130752478,978.948942,3008656476 +3,8866,1710,128,3.28725696,0.144212756,887.577518,3008656476 +3,8867,1711,128,2.96461105,0.130303577,982.32146,3008656476 +3,8868,1712,128,2.4724915,0.130067521,984.104248,3008656476 +3,8869,1713,128,2.8120811,0.129284935,990.061216,3008656476 +3,8870,1714,128,3.08083677,0.128946346,992.660932,3008656476 +3,8871,1715,128,2.72958302,0.128624308,995.146267,3008656476 +3,8872,1716,128,2.74226093,0.142970609,895.288905,3008656476 +3,8873,1717,128,3.47449684,0.129634932,987.388183,3008656476 +3,8874,1718,128,2.36004949,0.144403149,886.407262,3008656476 +3,8875,1719,128,2.9574182,0.12887848,993.183656,3008656476 +3,8876,1720,128,3.39341807,0.128874349,993.215492,3008656476 +3,8877,1721,128,2.93296266,0.12957198,987.867902,3008656476 +3,8878,1722,128,3.17794418,0.12934039,989.636725,3008656476 +3,8879,1723,128,3.06043315,0.129375465,989.368425,3008656476 +3,8880,1724,128,3.36026168,0.143678392,890.878567,3008656476 +3,8881,1725,128,2.47664285,0.129521774,988.250825,3008656476 +3,8882,1726,128,3.62141538,0.143977624,889.027034,3008656476 +3,8883,1727,128,3.1010201,0.129831453,985.893611,3008656476 +3,8884,1728,128,2.981282,0.130020403,984.460877,3008656476 +3,8885,1729,128,3.31891418,0.129916716,985.246579,3008656476 +3,8886,1730,128,2.56335616,0.130209027,983.034763,3008656476 +3,8887,1731,128,2.3133173,0.130477281,981.013698,3008656476 +3,8888,1732,128,2.96328783,0.148373523,862.68761,3008656476 +3,8889,1733,128,2.26332808,0.129553571,988.008273,3008656476 +3,8890,1734,128,2.82782745,0.14298033,895.228036,3008656476 +3,8891,1735,128,2.19476032,0.131189161,975.690362,3008656476 +3,8892,1736,128,2.50099683,0.130933299,977.596998,3008656476 +3,8893,1737,128,1.89334369,0.133329852,960.025066,3008656476 +3,8894,1738,128,2.31679749,0.13323885,960.680762,3008656476 +3,8895,1739,128,1.70290124,0.133063758,961.944875,3008656476 +3,8896,1740,128,1.91633379,0.147799671,866.03711,3008656476 +3,8897,1741,128,2.33647823,0.135122622,947.287716,3008656476 +3,8898,1742,128,2.49021864,0.142947842,895.431496,3008656476 +3,8899,1743,128,2.64725232,0.13890672,921.481696,3008656476 +3,8900,1744,128,3.08928704,0.139458978,917.832626,3008656476 +3,8901,1745,128,1.78097582,0.132080577,969.105397,3008656476 +3,8902,1746,128,3.49016762,0.132801235,963.846458,3008656476 +3,8903,1747,128,3.51652098,0.147333472,868.777463,3008656476 +3,8904,1748,128,2.68491173,0.132680959,964.72019,3008656476 +3,8905,1749,128,3.38729644,0.145370371,880.50955,3008656476 +3,8906,1750,128,2.58867264,0.132068247,969.195873,3008656476 +3,8907,1751,128,3.25907278,0.131837386,970.893036,3008656476 +3,8908,1752,128,2.67603636,0.131172684,975.812922,3008656476 +3,8909,1753,128,3.06793976,0.129891162,985.44041,3008656476 +3,8910,1754,128,3.10302782,0.130210257,983.025477,3008656476 +3,8911,1755,128,3.52704239,0.14556471,879.334009,3008656476 +3,8912,1756,128,2.60128379,0.129412324,989.086634,3008656476 +3,8913,1757,128,2.53206491,0.144607654,885.1537,3008656476 +3,8914,1758,128,2.55724096,0.128685327,994.674397,3008656476 +3,8915,1759,128,2.89096332,0.129076882,991.65705,3008656476 +3,8916,1760,128,3.15555906,0.128686755,994.663359,3008656476 +3,8917,1761,128,2.43131185,0.128654485,994.912847,3008656476 +3,8918,1762,128,3.55814195,0.129247979,990.344305,3008656476 +3,8919,1763,128,2.56729341,0.144995724,882.784654,3008656476 +3,8920,1764,128,2.67233658,0.129672453,987.10248,3008656476 +3,8921,1765,128,2.04678178,0.143235018,893.63622,3008656476 +3,8922,1766,128,2.91111851,0.129401396,989.170163,3008656476 +3,8923,1767,128,3.12563133,0.129613411,987.552129,3008656476 +3,8924,1768,128,2.81474042,0.130742181,979.026042,3008656476 +3,8925,1769,128,2.44395781,0.128460514,996.415132,3008656476 +3,8926,1770,128,2.39772058,0.130195823,983.134459,3008656476 +3,8927,1771,128,2.30094457,0.145486791,879.804958,3008656476 +3,8928,1772,128,2.13549352,0.129235668,990.438646,3008656476 +3,8929,1773,128,2.07657814,0.143774043,890.285877,3008656476 +3,8930,1774,128,1.99865937,0.130040641,984.307667,3008656476 +3,8931,1775,128,2.45071483,0.128182665,998.574963,3008656476 +3,8932,1776,128,2.55470777,0.129699684,986.895234,3008656476 +3,8933,1777,128,2.32432914,0.130469846,981.069603,3008656476 +3,8934,1778,128,1.89333904,0.129934925,985.108507,3008656476 +3,8935,1779,128,2.50713015,0.145611702,879.050229,3008656476 +3,8936,1780,128,2.29841208,0.131283855,974.986604,3008656476 +3,8937,1781,128,1.59338546,0.145238271,881.310409,3008656476 +3,8938,1782,128,1.78969836,0.131488857,973.46652,3008656476 +3,8939,1783,128,2.19265032,0.134457167,951.97603,3008656476 +3,8940,1784,128,2.39454794,0.134249942,953.445477,3008656476 +3,8941,1785,128,2.41936731,0.135025205,947.971158,3008656476 +3,8942,1786,128,1.73289084,0.14760982,867.15098,3008656476 +3,8943,1787,128,1.85321701,0.129546253,988.064085,3008656476 +3,8944,1788,128,1.64954555,0.145487044,879.803428,3008656476 +3,8945,1789,128,2.19595122,0.127593068,1003.1893,3008656476 +3,8946,1790,128,1.76979303,0.132694485,964.621853,3008656476 +3,8947,1791,128,2.98192835,0.132656444,964.898471,3008656476 +3,8948,1792,128,2.62551117,0.132851677,963.480499,3008656476 +3,8949,1793,128,2.18454027,0.132581463,965.444166,3008656476 +3,8950,1794,128,2.6768086,0.14446693,886.015921,3008656476 +3,8951,1795,128,1.77909029,0.13107461,976.543054,3008656476 +3,8952,1796,128,2.66479301,0.144612004,885.127074,3008656476 +3,8953,1797,128,2.83735466,0.128756825,994.122059,3008656476 +3,8954,1798,128,2.69864702,0.128057472,999.551202,3008656476 +3,8955,1799,128,2.11212349,0.1290539,991.833645,3008656476 +3,8956,1800,128,2.19808006,0.128848351,993.415896,3008656476 +3,8957,1801,128,2.48054171,0.127892997,1000.83666,3008656476 +3,8958,1802,128,1.88450563,0.146272525,875.078898,3008656476 +3,8959,1803,128,2.64538288,0.128750355,994.172016,3008656476 +3,8960,1804,128,2.23710275,0.144865286,883.579521,3008656476 +3,8961,1805,128,3.14314556,0.129247578,990.347378,3008656476 +3,8962,1806,128,2.52925587,0.129928128,985.160042,3008656476 +3,8963,1807,128,2.74075103,0.130091064,983.926152,3008656476 +3,8964,1808,128,2.71938276,0.129323301,989.767498,3008656476 +3,8965,1809,128,3.4111762,0.13022833,982.889053,3008656476 +3,8966,1810,128,2.67710233,0.144652335,884.880289,3008656476 +3,8967,1811,128,2.39700484,0.13059798,980.107043,3008656476 +3,8968,1812,128,2.0743978,0.142551318,897.922249,3008656476 +3,8969,1813,128,1.98198855,0.129977987,984.782139,3008656476 +3,8970,1814,128,3.11368012,0.130018672,984.473984,3008656476 +3,8971,1815,128,3.00864911,0.129909522,985.301139,3008656476 +3,8972,1816,128,2.4560492,0.129469751,988.64792,3008656476 +3,8973,1817,128,2.83282804,0.129101152,991.470626,3008656476 +3,8974,1818,128,1.89099181,0.143070731,894.662375,3008656476 +3,8975,1819,128,1.79581344,0.129378067,989.348527,3008656476 +3,8976,1820,128,2.54595804,0.143583461,891.467576,3008656476 +3,8977,1821,128,2.95370865,0.129898918,985.381572,3008656476 +3,8978,1822,128,3.65929627,0.129562675,987.938849,3008656476 +3,8979,1823,128,3.12111306,0.130174748,983.293626,3008656476 +3,8980,1824,128,2.64655685,0.13021042,983.024246,3008656476 +3,8981,1825,128,2.30389166,0.131023126,976.926776,3008656476 +3,8982,1826,128,3.08727121,0.146427314,874.153848,3008656476 +3,8983,1827,128,2.39589524,0.131694074,971.949581,3008656476 +3,8984,1828,128,2.4204464,0.147657933,866.868426,3008656476 +3,8985,1829,128,2.70703721,0.133804334,956.620732,3008656476 +3,8986,1830,128,2.64877295,0.132408032,966.708727,3008656476 +3,8987,1831,128,3.06875706,0.134266354,953.328933,3008656476 +3,8988,1832,128,2.5679512,0.132648412,964.956897,3008656476 +3,8989,1833,128,2.7715888,0.132973318,962.599128,3008656476 +3,8990,1834,128,3.00480247,0.144970155,882.940354,3008656476 +3,8991,1835,128,2.61754107,0.132521674,965.87974,3008656476 +3,8992,1836,128,1.96478999,0.145043719,882.49254,3008656476 +3,8993,1837,128,2.86759472,0.131802766,971.148056,3008656476 +3,8994,1838,128,3.32063603,0.132071753,969.170145,3008656476 +3,8995,1839,128,3.07591653,0.131139217,976.061951,3008656476 +3,8996,1840,128,3.20063186,0.131604325,972.612412,3008656476 +3,8997,1841,128,3.05496025,0.141087092,907.241039,3008656476 +3,8998,1842,128,2.98158216,0.13088126,977.985695,3008656476 +3,8999,1843,128,2.89919043,0.136778144,935.822027,3008656476 +3,9000,1844,128,2.87317348,0.128502196,996.091927,3008656476 +3,9001,1845,128,2.21895862,0.131707194,971.85276,3008656476 +3,9002,1846,128,2.46092582,0.131586995,972.740505,3008656476 +3,9003,1847,128,1.96956253,0.130732695,979.09708,3008656476 +3,9004,1848,128,2.79922867,0.130213566,983.000496,3008656476 +3,9005,1849,128,2.89394116,0.146112641,876.036455,3008656476 +3,9006,1850,128,3.2191813,0.128882584,993.152031,3008656476 +3,9007,1851,128,2.61710882,0.14020021,912.980088,3008656476 +3,9008,1852,128,2.20214343,0.126710231,1010.17889,3008656476 +3,9009,1853,128,2.60710764,0.128731965,994.314038,3008656476 +3,9010,1854,128,3.25305724,0.128718524,994.417866,3008656476 +3,9011,1855,128,2.61376905,0.129191008,990.78103,3008656476 +3,9012,1856,128,2.60720539,0.129427826,988.968168,3008656476 +3,9013,1857,128,1.88839269,0.143134035,894.266692,3008656476 +3,9014,1858,128,2.89056873,0.129404879,989.143539,3008656476 +3,9015,1859,128,2.32650447,0.138701166,922.847325,3008656476 +3,9016,1860,128,2.80266905,0.123687589,1034.86535,3008656476 +3,9017,1861,128,3.07814479,0.129208735,990.645098,3008656476 +3,9018,1862,128,2.68512273,0.128928858,992.795577,3008656476 +3,9019,1863,128,2.6826632,0.129114563,991.367643,3008656476 +3,9020,1864,128,3.05929303,0.129139137,991.178995,3008656476 +3,9021,1865,128,2.77073431,0.142454108,898.534986,3008656476 +3,9022,1866,128,2.70993781,0.129611174,987.569174,3008656476 +3,9023,1867,128,3.58626795,0.128862521,993.306657,3008656476 +3,9024,1868,128,2.6680975,0.133210833,960.882813,3008656476 +3,9025,1869,128,2.57041383,0.129240327,990.402941,3008656476 +3,9026,1870,128,2.87221122,0.128571187,995.557426,3008656476 +3,9027,1871,128,2.28485227,0.129726362,986.692281,3008656476 +3,9028,1872,128,2.9943037,0.128255156,998.01056,3008656476 +3,9029,1873,128,2.68754053,0.136356524,938.715628,3008656476 +3,9030,1874,128,3.24301791,0.129081251,991.623485,3008656476 +3,9031,1875,128,2.55094957,0.129127829,991.265794,3008656476 +3,9032,1876,128,2.36416674,0.140318946,912.207536,3008656476 +3,9033,1877,128,2.44860411,0.128984445,992.367723,3008656476 +3,9034,1878,128,2.2518847,0.129772643,986.340395,3008656476 +3,9035,1879,128,1.68621123,0.130152934,983.458429,3008656476 +3,9036,1880,128,2.39100528,0.12920086,990.70548,3008656476 +3,9037,1881,128,2.50900149,0.13813936,926.6005,3008656476 +3,9038,1882,128,2.61985755,0.128435605,996.608378,3008656476 +3,9039,1883,128,2.2077508,0.129997977,984.630707,3008656476 +3,9040,1884,128,2.40016222,0.14070488,909.705477,3008656476 +3,9041,1885,128,2.42991781,0.129614116,987.546758,3008656476 +3,9042,1886,128,2.643013,0.130222042,982.936514,3008656476 +3,9043,1887,128,2.14455032,0.130456197,981.172247,3008656476 +3,9044,1888,128,2.24820137,0.130181663,983.241396,3008656476 +3,9045,1889,128,2.94338846,0.142417914,898.76334,3008656476 +3,9046,1890,128,2.89715505,0.131228707,975.396336,3008656476 +3,9047,1891,128,2.72770023,0.129749328,986.517633,3008656476 +3,9048,1892,128,2.6238606,0.13422285,953.637924,3008656476 +3,9049,1893,128,2.40757442,0.130257101,982.671954,3008656476 +3,9050,1894,128,2.65129662,0.129882615,985.505258,3008656476 +3,9051,1895,128,2.65589046,0.129527005,988.210914,3008656476 +3,9052,1896,128,2.89947248,0.128722578,994.386548,3008656476 +3,9053,1897,128,2.80112457,0.144010786,888.822314,3008656476 +3,9054,1898,128,3.13026285,0.12913451,991.21451,3008656476 +3,9055,1899,128,4.16403961,0.128772328,994.002376,3008656476 +3,9056,1900,128,3.12169456,0.134172381,953.996635,3008656476 +3,9057,1901,128,2.42724013,0.128749122,994.181537,3008656476 +3,9058,1902,128,2.64539814,0.128891935,993.079978,3008656476 +3,9059,1903,128,3.15481591,0.128689486,994.642251,3008656476 +3,9060,1904,128,1.88388789,0.128907049,992.963542,3008656476 +3,9061,1905,128,2.9193387,0.14225323,899.803822,3008656476 +3,9062,1906,128,2.25126028,0.129158556,991.029971,3008656476 +3,9063,1907,128,2.24448609,0.12937648,989.360663,3008656476 +3,9064,1908,128,2.50069189,0.134598972,950.973088,3008656476 +3,9065,1909,128,2.27336788,0.128921434,992.852748,3008656476 +3,9066,1910,128,2.60632205,0.128934454,992.752488,3008656476 +3,9067,1911,128,2.17446828,0.129706678,986.842019,3008656476 +3,9068,1912,128,2.49652934,0.129292976,989.999642,3008656476 +3,9069,1913,128,2.561656,0.141293479,905.915835,3008656476 +3,9070,1914,128,2.73589849,0.130452039,981.203521,3008656476 +3,9071,1915,128,1.96906352,0.130958958,977.405456,3008656476 +3,9072,1916,128,2.90139246,0.138902715,921.508266,3008656476 +3,9073,1917,128,2.3435986,0.130993799,977.145491,3008656476 +3,9074,1918,128,2.55029035,0.131436815,973.851961,3008656476 +3,9075,1919,128,2.13885331,0.131283429,974.989768,3008656476 +3,9076,1920,128,2.39711475,0.131216769,975.485077,3008656476 +3,9077,1921,128,2.61587787,0.145261649,881.168573,3008656476 +3,9078,1922,128,2.99815035,0.13365585,957.683483,3008656476 +3,9079,1923,128,2.7530036,0.145442612,880.072203,3008656476 +3,9080,1924,128,2.48041344,0.133143518,961.368619,3008656476 +3,9081,1925,128,2.15082788,0.13189281,970.485048,3008656476 +3,9082,1926,128,2.59016252,0.131580592,972.787841,3008656476 +3,9083,1927,128,2.68212628,0.131073726,976.54964,3008656476 +3,9084,1928,128,2.82014775,0.132456225,966.356998,3008656476 +3,9085,1929,128,3.42383528,0.145468846,879.91349,3008656476 +3,9086,1930,128,3.03871107,0.134190492,953.867879,3008656476 +3,9087,1931,128,1.93434191,0.144890397,883.426387,3008656476 +3,9088,1932,128,1.86487162,0.132035977,969.432748,3008656476 +3,9089,1933,128,2.27528787,0.131835298,970.908413,3008656476 +3,9090,1934,128,2.25949407,0.130346913,981.994871,3008656476 +3,9091,1935,128,1.91220403,0.129817507,985.999523,3008656476 +3,9092,1936,128,2.82996559,0.129966285,984.870807,3008656476 +3,9093,1937,128,2.73908567,0.144064458,888.491178,3008656476 +3,9094,1938,128,3.03650045,0.12867396,994.762266,3008656476 +3,9095,1939,128,2.43238688,0.142681271,897.104428,3008656476 +3,9096,1940,128,2.41899204,0.128196884,998.464206,3008656476 +3,9097,1941,128,1.83426201,0.127876779,1000.96359,3008656476 +3,9098,1942,128,3.12673783,0.128724012,994.375471,3008656476 +3,9099,1943,128,2.65761971,0.128493033,996.162959,3008656476 +3,9100,1944,128,2.8142035,0.128534301,995.843125,3008656476 +3,9101,1945,128,2.85221362,0.14392607,889.345481,3008656476 +3,9102,1946,128,1.88626409,0.128337047,997.373736,3008656476 +3,9103,1947,128,2.30726838,0.14169431,903.353141,3008656476 +3,9104,1948,128,2.9306066,0.129800431,986.129237,3008656476 +3,9105,1949,128,2.69593835,0.128306896,997.60811,3008656476 +3,9106,1950,128,3.34682012,0.129251999,990.313504,3008656476 +3,9107,1951,128,3.29589653,0.128325788,997.461243,3008656476 +3,9108,1952,128,2.593045,0.128826912,993.581217,3008656476 +3,9109,1953,128,2.59932947,0.143182578,893.96351,3008656476 +3,9110,1954,128,2.75330687,0.129234604,990.4468,3008656476 +3,9111,1955,128,2.64644694,0.143379013,892.738744,3008656476 +3,9112,1956,128,3.01491618,0.128638656,995.035272,3008656476 +3,9113,1957,128,2.67205381,0.128790084,993.865335,3008656476 +3,9114,1958,128,2.61356521,0.128721444,994.395308,3008656476 +3,9115,1959,128,1.8660115,0.129408833,989.113317,3008656476 +3,9116,1960,128,2.74501348,0.128764745,994.060913,3008656476 +3,9117,1961,128,2.57070518,0.148259451,863.351369,3008656476 +3,9118,1962,128,2.5923543,0.130194088,983.14756,3008656476 +3,9119,1963,128,2.12874699,0.144118486,888.158095,3008656476 +3,9120,1964,128,2.06629944,0.131425505,973.935767,3008656476 +3,9121,1965,128,2.38358402,0.131821714,971.008464,3008656476 +3,9122,1966,128,2.63255119,0.13149253,973.439328,3008656476 +3,9123,1967,128,2.73539424,0.132112788,968.869115,3008656476 +3,9124,1968,128,3.21449399,0.132228217,968.023338,3008656476 +3,9125,1969,128,2.4228375,0.137928163,928.01932,3008656476 +3,9126,1970,128,2.56872869,0.132224669,968.049313,3008656476 +3,9127,1971,128,2.66347051,0.149028797,858.894405,3008656476 +3,9128,1972,128,3.22894144,0.132617514,965.181718,3008656476 +3,9129,1973,128,2.66615701,0.13293324,962.889342,3008656476 +3,9130,1974,128,1.30246747,0.132045693,969.361416,3008656476 +3,9131,1975,128,2.1871593,0.131796256,971.196025,3008656476 +3,9132,1976,128,2.35710049,0.147492232,867.842315,3008656476 +3,9133,1977,128,2.30544853,0.132090512,969.032507,3008656476 +3,9134,1978,128,2.57923555,0.145683984,878.614083,3008656476 +3,9135,1979,128,2.65880561,0.121190255,1056.19053,3008656476 +3,9136,1980,128,3.07168388,0.132931361,962.902953,3008656476 +3,9137,1981,128,2.94481373,0.131980583,969.839632,3008656476 +3,9138,1982,128,2.6306417,0.131436198,973.856532,3008656476 +3,9139,1983,128,2.8894763,0.130487299,980.938382,3008656476 +3,9140,1984,128,2.11661363,0.144800709,883.973572,3008656476 +3,9141,1985,128,2.05915642,0.131822603,971.001915,3008656476 +3,9142,1986,128,1.94612062,0.147508429,867.747022,3008656476 +3,9143,1987,128,2.68034339,0.128233855,998.17634,3008656476 +3,9144,1988,128,2.96167803,0.128906408,992.96848,3008656476 +3,9145,1989,128,3.07604194,0.128325524,997.463295,3008656476 +3,9146,1990,128,2.17180419,0.127939866,1000.47002,3008656476 +3,9147,1991,128,1.99909115,0.129023167,992.069897,3008656476 +3,9148,1992,128,1.96725714,0.149611516,855.549114,3008656476 +3,9149,1993,128,2.53643918,0.128623623,995.151567,3008656476 +3,9150,1994,128,2.42672968,0.140864345,908.675648,3008656476 +3,9151,1995,128,2.4203403,0.129994572,984.656498,3008656476 +3,9152,1996,128,2.38081717,0.129506209,988.3696,3008656476 +3,9153,1997,128,2.93572283,0.129211467,990.624153,3008656476 +3,9154,1998,128,2.69258261,0.129959951,984.918808,3008656476 +3,9155,1999,128,3.29581761,0.129367237,989.43135,3008656476 +3,9156,2000,128,2.58575106,0.142845114,896.075451,3008656476 +3,9157,2001,128,2.0197866,0.128755713,994.130645,3008656476 +3,9158,2002,128,2.68772292,0.142621672,897.479312,3008656476 +3,9159,2003,128,2.77862978,0.128855929,993.357473,3008656476 +3,9160,2004,128,2.18792653,0.128502077,996.092849,3008656476 +3,9161,2005,128,2.17544699,0.128604514,995.299434,3008656476 +3,9162,2006,128,2.33817816,0.130143524,983.529538,3008656476 +3,9163,2007,128,2.30335855,0.12912596,991.280142,3008656476 +3,9164,2008,128,2.52213836,0.14191255,901.963921,3008656476 +3,9165,2009,128,2.25191617,0.129863063,985.653634,3008656476 +3,9166,2010,128,2.28094625,0.143453601,892.274569,3008656476 +3,9167,2011,128,2.89095926,0.130645344,979.751716,3008656476 +3,9168,2012,128,3.28314304,0.131612564,972.551526,3008656476 +3,9169,2013,128,2.74376798,0.13102513,976.911834,3008656476 +3,9170,2014,128,3.28727031,0.131019743,976.952,3008656476 +3,9171,2015,128,2.76046848,0.131820323,971.01871,3008656476 +3,9172,2016,128,2.92662883,0.147348334,868.689835,3008656476 +3,9173,2017,128,3.42856097,0.132539309,965.751225,3008656476 +3,9174,2018,128,2.81285024,0.211114557,606.305893,3008656476 +3,9175,2019,128,2.81359768,0.133699296,957.372281,3008656476 +3,9176,2020,128,2.51216102,0.132201203,968.221144,3008656476 +3,9177,2021,128,3.16292572,0.133171449,961.166984,3008656476 +3,9178,2022,128,3.1892755,0.132153969,968.567202,3008656476 +3,9179,2023,128,3.11068511,0.148415879,862.44141,3008656476 +3,9180,2024,128,3.22510719,0.132204815,968.194691,3008656476 +3,9181,2025,128,3.00647998,0.14763815,866.984584,3008656476 +3,9182,2026,128,2.49128056,0.130861932,978.130141,3008656476 +3,9183,2027,128,2.94700217,0.130420052,981.444172,3008656476 +3,9184,2028,128,2.99027157,0.130849247,978.224964,3008656476 +3,9185,2029,128,3.34978461,0.129302744,989.924854,3008656476 +3,9186,2030,128,3.03591657,0.129620772,987.496047,3008656476 +3,9187,2031,128,2.98983097,0.143268237,893.429016,3008656476 +3,9188,2032,128,2.51697135,0.128760414,994.09435,3008656476 +3,9189,2033,128,2.61530805,0.142642613,897.347555,3008656476 +3,9190,2034,128,2.45995331,0.127977874,1000.17289,3008656476 +3,9191,2035,128,3.05430412,0.128622008,995.164062,3008656476 +3,9192,2036,128,2.11242938,0.128135266,998.94435,3008656476 +3,9193,2037,128,2.38096547,0.128603288,995.308922,3008656476 +3,9194,2038,128,2.73891091,0.12837004,997.117396,3008656476 +3,9195,2039,128,3.26805639,0.14238293,898.984169,3008656476 +3,9196,2040,128,2.66299915,0.129186327,990.816931,3008656476 +3,9197,2041,128,3.60732126,0.145682793,878.621266,3008656476 +3,9198,2042,128,3.40022159,0.129635823,987.381397,3008656476 +3,9199,2043,128,3.48095036,0.129259937,990.252687,3008656476 +3,9200,2044,128,2.62067604,0.130461108,981.135313,3008656476 +3,9201,2045,128,2.61742878,0.129079785,991.634747,3008656476 +3,9202,2046,128,2.60833478,0.128890541,993.090719,3008656476 +3,9203,2047,128,2.69939494,0.142313193,899.424694,3008656476 +3,9204,2048,128,2.93947244,0.128897084,993.040308,3008656476 +3,9205,2049,128,2.4971149,0.142142012,900.507867,3008656476 +3,9206,2050,128,3.11353016,0.128794114,993.834237,3008656476 +3,9207,2051,128,2.8232789,0.129147864,991.112017,3008656476 +3,9208,2052,128,2.39853287,0.128483902,996.233754,3008656476 +3,9209,2053,128,2.92752934,0.129614445,987.544251,3008656476 +3,9210,2054,128,3.32183146,0.128158219,998.76544,3008656476 +3,9211,2055,128,2.56124854,0.144821,883.849718,3008656476 +3,9212,2056,128,2.64404798,0.129959181,984.924643,3008656476 +3,9213,2057,128,2.79650354,0.142998049,895.117108,3008656476 +3,9214,2058,128,2.62294269,0.130596497,980.118173,3008656476 +3,9215,2059,128,2.77897263,0.130892577,977.901138,3008656476 +3,9216,2060,128,2.13911581,0.131273472,975.06372,3008656476 +3,9217,2061,128,3.27385139,0.132009942,969.623939,3008656476 +3,9218,2062,128,2.76585412,0.131349675,974.498034,3008656476 +3,9219,2063,128,2.3367095,0.14742786,868.221244,3008656476 +3,9220,2064,128,2.69100928,0.14359366,891.404258,3008656476 +3,9221,2065,128,2.32498193,0.146974796,870.89762,3008656476 +3,9222,2066,128,2.69187665,0.132766959,964.095291,3008656476 +3,9223,2067,128,2.31664348,0.134046644,954.891493,3008656476 +3,9224,2068,128,2.26212001,0.131193634,975.657096,3008656476 +3,9225,2069,128,2.43298793,0.132784361,963.968942,3008656476 +3,9226,2070,128,2.4930234,0.145759051,878.16159,3008656476 +3,9227,2071,128,2.94128942,0.131152694,975.961653,3008656476 +3,9228,2072,128,2.44533944,0.142562764,897.850157,3008656476 +3,9229,2073,128,2.89747,0.125950719,1016.2705,3008656476 +3,9230,2074,128,2.40909648,0.132636205,965.045705,3008656476 +3,9231,2075,128,3.03097701,0.131712156,971.816147,3008656476 +3,9232,2076,128,2.88156796,0.130334767,982.086384,3008656476 +3,9233,2077,128,2.68695641,0.130070588,984.081044,3008656476 +3,9234,2078,128,2.19967818,0.142686182,897.073551,3008656476 +3,9235,2079,128,3.18437982,0.129586475,987.757403,3008656476 +3,9236,2080,128,2.67865205,0.143567296,891.567952,3008656476 +3,9237,2081,128,2.53836036,0.128761124,994.088868,3008656476 +3,9238,2082,128,2.5561595,0.128073065,999.429505,3008656476 +3,9239,2083,128,2.96823835,0.12865193,994.932606,3008656476 +3,9240,2084,128,2.19623733,0.128766948,994.043906,3008656476 +3,9241,2085,128,2.57963467,0.129067272,991.730886,3008656476 +3,9242,2086,128,2.66407228,0.146341635,874.665641,3008656476 +3,9243,2087,128,2.15774679,0.129296248,989.974589,3008656476 +3,9244,2088,128,2.32898164,0.144089074,888.339389,3008656476 +3,9245,2089,128,2.5495801,0.130658288,979.654655,3008656476 +3,9246,2090,128,2.48563147,0.129755351,986.471841,3008656476 +3,9247,2091,128,2.09943461,0.130250592,982.721061,3008656476 +3,9248,2092,128,1.78529465,0.129074594,991.674628,3008656476 +3,9249,2093,128,1.91901982,0.130291572,982.411971,3008656476 +3,9250,2094,128,2.93499804,0.143172565,894.026031,3008656476 +3,9251,2095,128,2.02684307,0.129414146,989.072709,3008656476 +3,9252,2096,128,2.7936244,0.142467413,898.451072,3008656476 +3,9253,2097,128,2.7445581,0.128328875,997.437249,3008656476 +3,9254,2098,128,2.67214274,0.128956734,992.580969,3008656476 +3,9255,2099,128,2.60001779,0.128476246,996.29312,3008656476 +3,9256,2100,128,2.35779953,0.128158206,998.765541,3008656476 +3,9257,2101,128,2.47287273,0.128804659,993.752873,3008656476 +3,9258,2102,128,2.49942374,0.141895563,902.071899,3008656476 +3,9259,2103,128,1.63619006,0.129147788,991.1126,3008656476 +3,9260,2104,128,2.39165068,0.141443964,904.952013,3008656476 +3,9261,2105,128,2.22326541,0.129683511,987.018311,3008656476 +3,9262,2106,128,1.98616731,0.13020074,983.097331,3008656476 +3,9263,2107,128,2.51721978,0.12941339,989.078487,3008656476 +3,9264,2108,128,2.45416141,0.130912947,977.748977,3008656476 +3,9265,2109,128,2.67043734,0.130744983,979.005061,3008656476 +3,9266,2110,128,2.69142175,0.147957142,865.115386,3008656476 +3,9267,2111,128,2.42127776,0.131234821,975.350894,3008656476 +3,9268,2112,128,2.49303651,0.144076443,888.417269,3008656476 +3,9269,2113,128,2.60039258,0.133671939,957.568215,3008656476 +3,9270,2114,128,1.71093702,0.133272457,960.43851,3008656476 +3,9271,2115,128,2.7892859,0.132351886,967.118821,3008656476 +3,9272,2116,128,2.21735287,0.135720402,943.115391,3008656476 +3,9273,2117,128,2.63041377,0.136116591,940.370304,3008656476 +3,9274,2118,128,2.48786521,0.146899496,871.344038,3008656476 +3,9275,2119,128,2.88305354,0.133656317,957.680137,3008656476 +3,9276,2120,128,1.62783408,0.145627693,878.953703,3008656476 +3,9277,2121,128,1.96388268,0.132537163,965.766862,3008656476 +3,9278,2122,128,2.19603229,0.131886136,970.534158,3008656476 +3,9279,2123,128,1.84644711,0.131361779,974.408241,3008656476 +3,9280,2124,128,2.1765914,0.130969761,977.324835,3008656476 +3,9281,2125,128,1.43062246,0.142216757,900.034586,3008656476 +3,9282,2126,128,1.63103998,0.127128677,1006.85387,3008656476 +3,9283,2127,128,3.34689569,0.129069325,991.715111,3008656476 +3,9284,2128,128,2.50580049,0.14511889,882.035412,3008656476 +3,9285,2129,128,2.09067607,0.129281561,990.087055,3008656476 +3,9286,2130,128,2.75012517,0.128665195,994.830032,3008656476 +3,9287,2131,128,2.18298626,0.128694269,994.605284,3008656476 +3,9288,2132,128,2.6665535,0.12794278,1000.44723,3008656476 +3,9289,2133,128,2.21281385,0.137076956,933.782043,3008656476 +3,9290,2134,128,3.04193258,0.128369843,997.118926,3008656476 +3,9291,2135,128,2.19217467,0.128107355,999.161992,3008656476 +3,9292,2136,128,2.85078287,0.143772987,890.292416,3008656476 +3,9293,2137,128,2.4916501,0.128135526,998.942323,3008656476 +3,9294,2138,128,2.67134213,0.128037092,999.710303,3008656476 +3,9295,2139,128,3.0591681,0.128457792,996.436246,3008656476 +3,9296,2140,128,2.98422647,0.127979321,1000.16158,3008656476 +3,9297,2141,128,2.30031753,0.140634748,910.159131,3008656476 +3,9298,2142,128,2.28970623,0.123993057,1032.31587,3008656476 +3,9299,2143,128,2.34896278,0.130081427,983.999045,3008656476 +3,9300,2144,128,2.74189353,0.140382383,911.795321,3008656476 +3,9301,2145,128,3.07477546,0.128137642,998.925827,3008656476 +3,9302,2146,128,2.8356812,0.129192935,990.766252,3008656476 +3,9303,2147,128,2.69170213,0.129340418,989.636511,3008656476 +3,9304,2148,128,1.97732878,0.129763598,986.409147,3008656476 +3,9305,2149,128,2.57030749,0.132471176,966.247933,3008656476 +3,9306,2150,128,2.31296992,0.12808681,999.322257,3008656476 +3,9307,2151,128,2.49392128,0.129240936,990.398274,3008656476 +3,9308,2152,128,2.74272799,0.140583467,910.491132,3008656476 +3,9309,2153,128,2.26021957,0.128582697,995.468309,3008656476 +3,9310,2154,128,2.18826938,0.129701834,986.878875,3008656476 +3,9311,2155,128,3.06871796,0.12869245,994.619342,3008656476 +3,9312,2156,128,2.83077741,0.129547543,988.054247,3008656476 +3,9313,2157,128,2.44917631,0.129585639,987.763775,3008656476 +3,9314,2158,128,1.3196907,0.131624969,972.459868,3008656476 +3,9315,2159,128,2.88714576,0.128230186,998.2049,3008656476 +3,9316,2160,128,3.35577798,0.14467162,884.762333,3008656476 +3,9317,2161,128,2.91837311,0.129243086,990.381799,3008656476 +3,9318,2162,128,2.06961846,0.129282092,990.082988,3008656476 +3,9319,2163,128,1.80063713,0.12946144,988.711388,3008656476 +3,9320,2164,128,2.17683983,0.130040194,984.311051,3008656476 +3,9321,2165,128,2.76707101,0.129052166,991.846971,3008656476 +3,9322,2166,128,2.5678668,0.134771233,949.757579,3008656476 +3,9323,2167,128,2.31332636,0.129596413,987.681658,3008656476 +3,9324,2168,128,2.67930412,0.144456086,886.082432,3008656476 +3,9325,2169,128,2.75005627,0.129479194,988.575817,3008656476 +3,9326,2170,128,2.2588954,0.129688467,986.980592,3008656476 +3,9327,2171,128,2.35355043,0.129443971,988.844818,3008656476 +3,9328,2172,128,2.59445953,0.129501685,988.404128,3008656476 +3,9329,2173,128,3.19263148,0.128005675,999.955666,3008656476 +3,9330,2174,128,2.84756541,0.136626985,936.857386,3008656476 +3,9331,2175,128,2.42253232,0.129638694,987.35953,3008656476 +3,9332,2176,128,1.14821124,0.142305344,899.474302,3008656476 +3,9333,2177,128,2.01314545,0.127881441,1000.9271,3008656476 +3,9334,2178,128,2.06690645,0.128992902,992.302662,3008656476 +3,9335,2179,128,2.91897702,0.128036899,999.71181,3008656476 +3,9336,2180,128,2.70279694,0.128959825,992.557178,3008656476 +3,9337,2181,128,2.07392073,0.130015408,984.498699,3008656476 +3,9338,2182,128,2.52739453,0.137818593,928.757124,3008656476 +3,9339,2183,128,2.92914891,0.129224765,990.522211,3008656476 +3,9340,2184,128,2.47490048,0.141851807,902.350155,3008656476 +3,9341,2185,128,2.55448771,0.12971764,986.758624,3008656476 +3,9342,2186,128,2.68320584,0.129349381,989.567936,3008656476 +3,9343,2187,128,2.65913224,0.128637867,995.041375,3008656476 +3,9344,2188,128,2.2442944,0.129433201,988.927099,3008656476 +3,9345,2189,128,2.41150546,0.127986807,1000.10308,3008656476 +3,9346,2190,128,2.19656897,0.134733217,950.025561,3008656476 +3,9347,2191,128,2.83217359,0.128594086,995.380145,3008656476 +3,9348,2192,128,2.23706436,0.144633571,884.995089,3008656476 +3,9349,2193,128,1.47500372,0.129570382,987.880085,3008656476 +3,9350,2194,128,2.35625386,0.130496129,980.872007,3008656476 +3,9351,2195,128,2.15273261,0.130982381,977.23067,3008656476 +3,9352,2196,128,2.77605987,0.131610077,972.569904,3008656476 +3,9353,2197,128,2.76635075,0.131389367,974.203643,3008656476 +3,9354,2198,128,2.82753396,0.13443926,952.102831,3008656476 +3,9355,2199,128,2.06906652,0.131039202,976.806925,3008656476 +3,9356,2200,128,2.68687105,0.146948292,871.054697,3008656476 +3,9357,2201,128,2.7871902,0.131974572,969.883805,3008656476 +3,9358,2202,128,2.28859353,0.130953086,977.449283,3008656476 +3,9359,2203,128,3.10259986,0.142820168,896.231966,3008656476 +3,9360,2204,128,3.16988945,0.139080538,920.330061,3008656476 +3,9361,2205,128,2.16495299,0.142962023,895.342674,3008656476 +3,9362,2206,128,2.3545444,0.131678096,972.067518,3008656476 +3,9363,2207,128,2.46539235,0.146576695,873.26297,3008656476 +3,9364,2208,128,2.38694739,0.13224888,967.872091,3008656476 +3,9365,2209,128,2.66700578,0.130092961,983.911804,3008656476 +3,9366,2210,128,2.03334403,0.13240988,966.695235,3008656476 +3,9367,2211,128,1.9470104,0.131906443,970.384745,3008656476 +3,9368,2212,128,2.1865778,0.130100094,983.857859,3008656476 +3,9369,2213,128,2.2748692,0.143524626,891.833015,3008656476 +3,9370,2214,128,2.19618297,0.130572514,980.298197,3008656476 +3,9371,2215,128,2.64336824,0.143465077,892.203195,3008656476 +3,9372,2216,128,1.75940847,0.132024031,969.520466,3008656476 +3,9373,2217,128,2.79339266,0.129148987,991.103399,3008656476 +3,9374,2218,128,2.52193689,0.129286696,990.047731,3008656476 +3,9375,2219,128,3.03818655,0.12821275,998.340649,3008656476 +3,9376,2220,128,2.17267632,0.12976731,986.380931,3008656476 +3,9377,2221,128,1.59979796,0.142241425,899.878499,3008656476 +3,9378,2222,128,2.28942013,0.127983733,1000.1271,3008656476 +3,9379,2223,128,2.34484005,0.140356905,911.960833,3008656476 +3,9380,2224,128,2.13815284,0.127487288,1004.02167,3008656476 +3,9381,2225,128,2.21758318,0.127756565,1001.90546,3008656476 +3,9382,2226,128,2.52955675,0.127462635,1004.21586,3008656476 +3,9383,2227,128,2.38772655,0.125175721,1022.56251,3008656476 +3,9384,2228,128,2.39595938,0.111458212,1148.41247,3008656476 +3,9385,2229,128,2.36024451,0.124999925,1024.00061,3008656476 +3,9386,2230,128,2.62437177,0.111484732,1148.13928,3008656476 +3,9387,2231,128,1.81132042,0.111495784,1148.02547,3008656476 +3,9388,2232,128,2.61378288,0.124648718,1026.88581,3008656476 +3,9389,2233,128,2.08426499,0.111461878,1148.37469,3008656476 +3,9390,2234,128,2.47866845,0.111616742,1146.78137,3008656476 +3,9391,2235,128,1.76028061,0.111551581,1147.45124,3008656476 +3,9392,2236,128,2.25220299,0.111426075,1148.74368,3008656476 +3,9393,2237,128,3.13696122,0.11151009,1147.87819,3008656476 +3,9394,2238,128,2.34393954,0.122698809,1043.20491,3008656476 +3,9395,2239,128,2.30267978,0.106786294,1198.6557,3008656476 +3,9396,2240,128,2.37996292,0.111514788,1147.82983,3008656476 +3,9397,2241,128,2.29893374,0.12596629,1016.14487,3008656476 +3,9398,2242,128,3.07978225,0.111445243,1148.54611,3008656476 +3,9399,2243,128,2.53887415,0.111389108,1149.12492,3008656476 +3,9400,2244,128,2.74983978,0.111407071,1148.93964,3008656476 +3,9401,2245,128,2.63859153,0.111714866,1145.7741,3008656476 +3,9402,2246,128,1.83954537,0.11148984,1148.08668,3008656476 +3,9403,2247,128,1.9991405,0.111501971,1147.96177,3008656476 +3,9404,2248,128,2.11528111,0.128852589,993.383222,3008656476 +3,9405,2249,128,2.49910545,0.111497345,1148.0094,3008656476 +3,9406,2250,128,2.60514808,0.123460328,1036.77029,3008656476 +3,9407,2251,128,1.87624943,0.111359424,1149.43123,3008656476 +3,9408,2252,128,1.77962101,0.111415004,1148.85783,3008656476 +3,9409,2253,128,2.45989132,0.11153592,1147.61236,3008656476 +3,9410,2254,128,3.10775495,0.111435359,1148.64798,3008656476 +3,9411,2255,128,2.27368569,0.111463674,1148.35619,3008656476 +3,9412,2256,128,2.57884812,0.111421331,1148.7926,3008656476 +3,9413,2257,128,2.38504529,0.128387747,996.979875,3008656476 +3,9414,2258,128,2.7270236,0.111511709,1147.86152,3008656476 +3,9415,2259,128,2.47216201,0.123299148,1038.12558,3008656476 +3,9416,2260,128,2.39934731,0.111061345,1152.51621,3008656476 +3,9417,2261,128,2.25662041,0.111429444,1148.70895,3008656476 +3,9418,2262,128,2.09156871,0.111374504,1149.2756,3008656476 +3,9419,2263,128,2.48220563,0.111509563,1147.88361,3008656476 +3,9420,2264,128,1.80533183,0.111404562,1148.96552,3008656476 +3,9421,2265,128,2.12201881,0.111571004,1147.25148,3008656476 +3,9422,2266,128,2.54635143,0.126684564,1010.38355,3008656476 +3,9423,2267,128,2.20785236,0.111418423,1148.82258,3008656476 +3,9424,2268,128,2.35462093,0.12600927,1015.79828,3008656476 +3,9425,2269,128,1.5513339,0.10721186,1193.89776,3008656476 +3,9426,2270,128,1.99881911,0.111467594,1148.31581,3008656476 +3,9427,2271,128,2.29180884,0.11153428,1147.62923,3008656476 +3,9428,2272,128,2.62206912,0.111274836,1150.305,3008656476 +3,9429,2273,128,2.03088498,0.111749775,1145.41618,3008656476 +3,9430,2274,128,1.9836657,0.11153675,1147.60382,3008656476 +3,9431,2275,128,2.28042674,0.124998157,1024.0151,3008656476 +3,9432,2276,128,2.48132324,0.111770476,1145.20403,3008656476 +3,9433,2277,128,1.85395432,0.111365963,1149.36374,3008656476 +3,9434,2278,128,1.88043416,0.125403176,1020.7078,3008656476 +3,9435,2279,128,1.95386529,0.111369282,1149.32949,3008656476 +3,9436,2280,128,1.93724597,0.111363728,1149.38681,3008656476 +3,9437,2281,128,2.44194126,0.111445506,1148.5434,3008656476 +3,9438,2282,128,2.73123813,0.111437726,1148.62358,3008656476 +3,9439,2283,128,2.04705262,0.111393274,1149.08195,3008656476 +3,9440,2284,128,2.06634045,0.11153495,1147.62234,3008656476 +3,9441,2285,128,1.75162649,0.113286843,1129.87525,3008656476 +3,9442,2286,128,1.85012984,0.111497279,1148.01008,3008656476 +3,9443,2287,128,1.95275068,0.124582264,1027.43357,3008656476 +3,9444,2288,128,1.80811059,0.111392171,1149.09332,3008656476 +3,9445,2289,128,1.81934345,0.11152124,1147.76342,3008656476 +3,9446,2290,128,2.35324407,0.11164711,1146.46944,3008656476 +3,9447,2291,128,2.84346056,0.111517521,1147.8017,3008656476 +3,9448,2292,128,1.86899924,0.111454461,1148.45111,3008656476 +3,9449,2293,128,2.55723667,0.111373265,1149.28839,3008656476 +3,9450,2294,128,2.81446266,0.127043947,1007.52537,3008656476 +3,9451,2295,128,3.07292056,0.111310642,1149.93497,3008656476 +3,9452,2296,128,2.97587967,0.123586892,1035.70854,3008656476 +3,9453,2297,128,2.27037048,0.111548049,1147.48757,3008656476 +3,9454,2298,128,2.20024514,0.111573102,1147.22991,3008656476 +3,9455,2299,128,2.99616766,0.111505772,1147.92264,3008656476 +3,9456,2300,128,2.49831963,0.111358505,1149.44072,3008656476 +3,9457,2301,128,2.85390759,0.111516595,1147.81123,3008656476 +3,9458,2302,128,3.33619595,0.11150932,1147.88611,3008656476 +3,9459,2303,128,2.45048046,0.126627653,1010.83766,3008656476 +3,9460,2304,128,2.38911033,0.111305065,1149.99259,3008656476 +3,9461,2305,128,2.88301396,0.125133199,1022.91,3008656476 +3,9462,2306,128,3.29874706,0.111518867,1147.78784,3008656476 +3,9463,2307,128,2.7897737,0.111465727,1148.33504,3008656476 +3,9464,2308,128,2.78464794,0.111510772,1147.87117,3008656476 +3,9465,2309,128,3.18143034,0.111557278,1147.39264,3008656476 +3,9466,2310,128,2.4454217,0.111532166,1147.65098,3008656476 +3,9467,2311,128,2.30941081,0.111393486,1149.07976,3008656476 +3,9468,2312,128,2.27958059,0.126997841,1007.89115,3008656476 +3,9469,2313,128,2.80463123,0.111461127,1148.38243,3008656476 +3,9470,2314,128,3.36357117,0.111470819,1148.28258,3008656476 +3,9471,2315,128,3.13152742,0.113549987,1127.25684,3008656476 +3,9472,2316,128,3.63014984,0.111480327,1148.18465,3008656476 +3,9473,2317,128,3.02673268,0.111480326,1148.18466,3008656476 +3,9474,2318,128,3.19357967,0.111416494,1148.84247,3008656476 +3,9475,2319,128,3.01272702,0.111384083,1149.17676,3008656476 +3,9476,2320,128,3.24059939,0.111753088,1145.38222,3008656476 +3,9477,2321,128,3.22456717,0.111466196,1148.33021,3008656476 +3,9478,2322,128,3.15627551,0.113804554,1124.73531,3008656476 +3,9479,2323,128,3.06520438,0.111388378,1149.13245,3008656476 +3,9480,2324,128,2.74830508,0.12338989,1037.36214,3008656476 +3,9481,2325,128,3.3770678,0.111402307,1148.98877,3008656476 +3,9482,2326,128,3.09935975,0.111648853,1146.45154,3008656476 +3,9483,2327,128,3.53470778,0.111340013,1149.63162,3008656476 +3,9484,2328,128,3.08778548,0.111612619,1146.82373,3008656476 +3,9485,2329,128,2.73056507,0.111506636,1147.91374,3008656476 +3,9486,2330,128,3.11734056,0.111375753,1149.26271,3008656476 +3,9487,2331,128,2.94430542,0.124912174,1024.71998,3008656476 +3,9488,2332,128,2.58139706,0.111325071,1149.78593,3008656476 +3,9489,2333,128,2.59239101,0.12379438,1033.97262,3008656476 +3,9490,2334,128,2.21151257,0.111546307,1147.50549,3008656476 +3,9491,2335,128,2.88140535,0.111481498,1148.17259,3008656476 +3,9492,2336,128,3.36984348,0.11154318,1147.53766,3008656476 +3,9493,2337,128,3.16382623,0.111467226,1148.3196,3008656476 +3,9494,2338,128,2.70171833,0.11156679,1147.29482,3008656476 +3,9495,2339,128,2.5734067,0.111409983,1148.90961,3008656476 +3,9496,2340,128,2.54091024,0.125905858,1016.6326,3008656476 +3,9497,2341,128,3.19347262,0.111417523,1148.83186,3008656476 +3,9498,2342,128,2.83705521,0.125756515,1017.83991,3008656476 +3,9499,2343,128,3.13983417,0.111417008,1148.83717,3008656476 +3,9500,2344,128,2.92836928,0.111531749,1147.65527,3008656476 +3,9501,2345,128,3.3383441,0.130017141,984.485576,3008656476 +3,9502,2346,128,3.1412971,0.131907634,970.375983,3008656476 +3,9503,2347,128,3.16872263,0.131144581,976.022029,3008656476 +3,9504,2348,128,3.10627627,0.141654252,903.608598,3008656476 +3,9505,2349,128,3.10087562,0.129633437,987.39957,3008656476 +3,9506,2350,128,2.89856553,0.14666007,872.766527,3008656476 +3,9507,2351,128,3.08053851,0.128500906,996.101926,3008656476 +3,9508,2352,128,2.40968847,0.132928656,962.922547,3008656476 +3,9509,2353,128,2.64658308,0.134111519,954.429574,3008656476 +3,9510,2354,128,3.16027498,0.133384279,959.633331,3008656476 +3,9511,2355,128,2.70116901,0.133036626,962.141057,3008656476 +3,9512,2356,128,3.00188684,0.14766935,866.801405,3008656476 +3,9513,2357,128,2.3944149,0.132588785,965.390851,3008656476 +3,9514,2358,128,2.65620065,0.147884601,865.539746,3008656476 +3,9515,2359,128,2.83856821,0.132850237,963.490942,3008656476 +3,9516,2360,128,2.92288876,0.134237109,953.536626,3008656476 +3,9517,2361,128,2.33942056,0.133471248,959.00804,3008656476 +3,9518,2362,128,2.19768453,0.134364058,952.635712,3008656476 +3,9519,2363,128,2.10245109,0.133834024,956.408514,3008656476 +3,9520,2364,128,1.96183884,0.146067669,876.306173,3008656476 +3,9521,2365,128,2.25199437,0.133447635,959.177733,3008656476 +3,9522,2366,128,2.1400795,0.146317558,874.80957,3008656476 +3,9523,2367,128,2.71635413,0.13320483,960.926117,3008656476 +3,9524,2368,128,2.34261894,0.133479165,958.951159,3008656476 +3,9525,2369,128,2.48716092,0.134499246,951.678198,3008656476 +3,9526,2370,128,2.26494551,0.132683453,964.702057,3008656476 +3,9527,2371,128,2.12427211,0.132938437,962.8517,3008656476 +3,9528,2372,128,3.07513118,0.147221064,869.440802,3008656476 +3,9529,2373,128,3.11943793,0.132832787,963.617514,3008656476 +3,9530,2374,128,3.19720817,0.142315799,899.408224,3008656476 +3,9531,2375,128,2.16572523,0.133206195,960.91627,3008656476 +3,9532,2376,128,2.35276222,0.13336329,959.78436,3008656476 +3,9533,2377,128,3.21982503,0.132836312,963.591943,3008656476 +3,9534,2378,128,2.67977762,0.134415555,952.27074,3008656476 +3,9535,2379,128,2.09947681,0.1455203,879.602365,3008656476 +3,9536,2380,128,2.70435429,0.133486597,958.897769,3008656476 +3,9537,2381,128,2.2109344,0.145352561,880.617439,3008656476 +3,9538,2382,128,2.5465529,0.133677623,957.527499,3008656476 +3,9539,2383,128,2.73841119,0.133057199,961.992293,3008656476 +3,9540,2384,64,1.95157325,0.130584346,490.104687,3008656476 +4,9541,0,128,1.77151513,0.127741939,1002.02017,3008656476 +4,9542,1,128,2.13736701,0.143528912,891.806384,3008656476 +4,9543,2,128,2.02545881,0.138138445,926.606637,3008656476 +4,9544,3,128,2.35498857,0.132875605,963.306997,3008656476 +4,9545,4,128,2.94876575,0.132721929,964.42239,3008656476 +4,9546,5,128,3.0930953,0.146401371,874.308752,3008656476 +4,9547,6,128,2.98134327,0.134533769,951.433985,3008656476 +4,9548,7,128,2.95683837,0.146672133,872.694747,3008656476 +4,9549,8,128,3.37549591,0.132880836,963.269075,3008656476 +4,9550,9,128,3.0498817,0.132246469,967.889736,3008656476 +4,9551,10,128,2.6527493,0.132060234,969.254681,3008656476 +4,9552,11,128,2.98286104,0.133451579,959.149386,3008656476 +4,9553,12,128,2.20704341,0.131907901,970.374019,3008656476 +4,9554,13,128,1.98570311,0.147359542,868.623764,3008656476 +4,9555,14,128,2.1015842,0.131781875,971.302009,3008656476 +4,9556,15,128,2.13080096,0.144552068,885.494077,3008656476 +4,9557,16,128,2.84912872,0.13116253,975.888464,3008656476 +4,9558,17,128,2.7722888,0.132957777,962.711643,3008656476 +4,9559,18,128,2.66036892,0.128723945,994.375988,3008656476 +4,9560,19,128,2.74866438,0.130211815,983.013715,3008656476 +4,9561,20,128,2.49235344,0.128961812,992.541885,3008656476 +4,9562,21,128,2.99498796,0.143459345,892.238843,3008656476 +4,9563,22,128,2.33577371,0.1298277,985.922111,3008656476 +4,9564,23,128,1.61637819,0.145132547,881.952413,3008656476 +4,9565,24,128,2.0106461,0.129209692,990.637761,3008656476 +4,9566,25,128,2.48592377,0.129666231,987.149846,3008656476 +4,9567,26,128,2.43087792,0.128812943,993.688965,3008656476 +4,9568,27,128,2.66098213,0.128746477,994.201962,3008656476 +4,9569,28,128,2.41872692,0.130503717,980.814976,3008656476 +4,9570,29,128,2.36768007,0.137486041,931.003606,3008656476 +4,9571,30,128,2.0620091,0.129340712,989.634261,3008656476 +4,9572,31,128,2.50470018,0.144720783,884.461771,3008656476 +4,9573,32,128,2.81000257,0.129778763,986.293882,3008656476 +4,9574,33,128,2.66233492,0.13041616,981.473462,3008656476 +4,9575,34,128,2.69206333,0.129862356,985.659,3008656476 +4,9576,35,128,2.71046615,0.130943189,977.523161,3008656476 +4,9577,36,128,2.7261529,0.130398655,981.605217,3008656476 +4,9578,37,128,2.33096361,0.134325532,952.908938,3008656476 +4,9579,38,128,2.33109426,0.12995834,984.931017,3008656476 +4,9580,39,128,1.76576245,0.143097505,894.494981,3008656476 +4,9581,40,128,2.73167229,0.130579372,980.246712,3008656476 +4,9582,41,128,2.6248126,0.13009456,983.899711,3008656476 +4,9583,42,128,2.64172316,0.130918905,977.70448,3008656476 +4,9584,43,128,3.01336551,0.130659373,979.64652,3008656476 +4,9585,44,128,3.20313168,0.13828415,925.630305,3008656476 +4,9586,45,128,2.85154676,0.125025856,1023.78823,3008656476 +4,9587,46,128,2.29332972,0.129949218,985.000156,3008656476 +4,9588,47,128,2.74502444,0.140270013,912.525758,3008656476 +4,9589,48,128,2.33287525,0.129481494,988.558257,3008656476 +4,9590,49,128,2.7425158,0.129460045,988.722042,3008656476 +4,9591,50,128,2.21650076,0.129260649,990.247233,3008656476 +4,9592,51,128,3.07707429,0.129677523,987.063888,3008656476 +4,9593,52,128,2.18994021,0.129156559,991.045294,3008656476 +4,9594,53,128,2.80036259,0.1336819,957.496864,3008656476 +4,9595,54,128,2.04271555,0.13004778,984.253634,3008656476 +4,9596,55,128,2.22780633,0.141466971,904.80484,3008656476 +4,9597,56,128,3.07761168,0.128906312,992.969219,3008656476 +4,9598,57,128,2.43703866,0.129708491,986.828225,3008656476 +4,9599,58,128,2.45872307,0.129553522,988.008647,3008656476 +4,9600,59,128,2.59916091,0.129255119,990.289599,3008656476 +4,9601,60,128,2.5136435,0.12873174,994.315776,3008656476 +4,9602,61,128,2.98058128,0.136074784,940.659219,3008656476 +4,9603,62,128,2.23235703,0.129573782,987.854163,3008656476 +4,9604,63,128,2.88497949,0.14181299,902.597146,3008656476 +4,9605,64,128,2.14124107,0.130115414,983.742018,3008656476 +4,9606,65,128,2.97863197,0.130282898,982.477378,3008656476 +4,9607,66,128,2.61935878,0.130315052,982.234961,3008656476 +4,9608,67,128,3.05542707,0.130457573,981.161899,3008656476 +4,9609,68,128,3.47263432,0.131971465,969.906639,3008656476 +4,9610,69,128,2.60043931,0.133114539,961.577908,3008656476 +4,9611,70,128,3.13124967,0.130485902,980.948884,3008656476 +4,9612,71,128,2.87931633,0.142052845,901.073118,3008656476 +4,9613,72,128,2.6687634,0.131376876,974.296268,3008656476 +4,9614,73,128,2.7268424,0.131771118,971.381301,3008656476 +4,9615,74,128,2.37535906,0.132451153,966.394003,3008656476 +4,9616,75,128,2.33708668,0.131475182,973.567772,3008656476 +4,9617,76,128,3.39946938,0.14644242,874.063676,3008656476 +4,9618,77,128,3.01698327,0.129170683,990.93693,3008656476 +4,9619,78,128,2.67263675,0.147782948,866.135111,3008656476 +4,9620,79,128,2.55539393,0.129547384,988.055459,3008656476 +4,9621,80,128,2.8551538,0.139276,919.038456,3008656476 +4,9622,81,128,3.03115916,0.133509846,958.730789,3008656476 +4,9623,82,128,2.97079301,0.136392045,938.471155,3008656476 +4,9624,83,128,3.11339617,0.13297204,962.60838,3008656476 +4,9625,84,128,2.42042661,0.147297463,868.989848,3008656476 +4,9626,85,128,2.43314624,0.131801159,971.159897,3008656476 +4,9627,86,128,2.60801673,0.14669058,872.585002,3008656476 +4,9628,87,128,2.00196767,0.132254751,967.829125,3008656476 +4,9629,88,128,2.20589328,0.131043243,976.776803,3008656476 +4,9630,89,128,2.61461806,0.13198558,969.802913,3008656476 +4,9631,90,128,2.3706708,0.131741244,971.601574,3008656476 +4,9632,91,128,2.49437475,0.13129923,974.872435,3008656476 +4,9633,92,128,2.5262394,0.146741902,872.279821,3008656476 +4,9634,93,128,2.2960279,0.130027259,984.408969,3008656476 +4,9635,94,128,2.15944839,0.142589339,897.68282,3008656476 +4,9636,95,128,2.44092607,0.128842211,993.463237,3008656476 +4,9637,96,128,2.21394944,0.129594177,987.698699,3008656476 +4,9638,97,128,2.7839992,0.129435171,988.912048,3008656476 +4,9639,98,128,2.57826138,0.128569807,995.568112,3008656476 +4,9640,99,128,2.56194043,0.129150071,991.09508,3008656476 +4,9641,100,128,2.86147189,0.143378837,892.73984,3008656476 +4,9642,101,128,2.34556556,0.129384492,989.299398,3008656476 +4,9643,102,128,2.66549206,0.142515825,898.145873,3008656476 +4,9644,103,128,2.52707863,0.130407646,981.53754,3008656476 +4,9645,104,128,2.11959314,0.129578487,987.818294,3008656476 +4,9646,105,128,2.62887764,0.130548681,980.47716,3008656476 +4,9647,106,128,2.56302929,0.129805517,986.090599,3008656476 +4,9648,107,128,2.19309974,0.129822219,985.963736,3008656476 +4,9649,108,128,2.49797487,0.142757412,896.625949,3008656476 +4,9650,109,128,1.75389707,0.130753449,978.941672,3008656476 +4,9651,110,128,2.24477983,0.144208799,887.601872,3008656476 +4,9652,111,128,2.58579445,0.130047828,984.25327,3008656476 +4,9653,112,128,2.62588048,0.130079872,984.010808,3008656476 +4,9654,113,128,3.02954888,0.129593023,987.707494,3008656476 +4,9655,114,128,3.00252819,0.129141065,991.164197,3008656476 +4,9656,115,128,2.89525723,0.129498576,988.427857,3008656476 +4,9657,116,128,2.19188857,0.147979353,864.985536,3008656476 +4,9658,117,128,2.51730204,0.13063552,979.825395,3008656476 +4,9659,118,128,2.49514437,0.147249744,869.27146,3008656476 +4,9660,119,128,2.86472535,0.132817596,963.727728,3008656476 +4,9661,120,128,2.58785701,0.131491091,973.449981,3008656476 +4,9662,121,128,2.66369176,0.133513925,958.701499,3008656476 +4,9663,122,128,1.99051011,0.133621776,957.927696,3008656476 +4,9664,123,128,2.18586302,0.149473158,856.341043,3008656476 +4,9665,124,128,2.08903122,0.137966377,927.762276,3008656476 +4,9666,125,128,2.10549593,0.150700997,849.363989,3008656476 +4,9667,126,128,2.08661509,0.132360229,967.057861,3008656476 +4,9668,127,128,2.90561318,0.132156511,968.548572,3008656476 +4,9669,128,128,2.77027988,0.132450272,966.400431,3008656476 +4,9670,129,128,2.53364968,0.132673506,964.774384,3008656476 +4,9671,130,128,2.38171148,0.131755986,971.492863,3008656476 +4,9672,131,128,2.34975076,0.145778093,878.046882,3008656476 +4,9673,132,128,2.03645802,0.131386726,974.223226,3008656476 +4,9674,133,128,2.43594313,0.145614721,879.032004,3008656476 +4,9675,134,128,2.41880512,0.13092701,977.643956,3008656476 +4,9676,135,128,2.22182131,0.129815686,986.013354,3008656476 +4,9677,136,128,2.19392085,0.129970083,984.842027,3008656476 +4,9678,137,128,2.09882116,0.128154767,998.792343,3008656476 +4,9679,138,128,1.88679528,0.128679921,994.716184,3008656476 +4,9680,139,128,2.21636605,0.144871277,883.542981,3008656476 +4,9681,140,128,1.62234998,0.128593257,995.386562,3008656476 +4,9682,141,128,1.68396902,0.143293693,893.270299,3008656476 +4,9683,142,128,2.26868701,0.129342724,989.618867,3008656476 +4,9684,143,128,1.80240083,0.129575387,987.841927,3008656476 +4,9685,144,128,1.30621696,0.129361737,989.473417,3008656476 +4,9686,145,128,1.1664654,0.129342683,989.619181,3008656476 +4,9687,146,128,2.08839369,0.129977018,984.78948,3008656476 +4,9688,147,128,2.73423386,0.149191397,857.958318,3008656476 +4,9689,148,128,2.88937974,0.129653309,987.248231,3008656476 +4,9690,149,128,2.28060603,0.144848864,883.679695,3008656476 +4,9691,150,128,1.61035514,0.129860789,985.670894,3008656476 +4,9692,151,128,1.29966569,0.130063241,984.136632,3008656476 +4,9693,152,128,2.15410542,0.129714212,986.784702,3008656476 +4,9694,153,128,2.33544135,0.12971517,986.777414,3008656476 +4,9695,154,128,1.66863596,0.129631137,987.417089,3008656476 +4,9696,155,128,2.75491047,0.143716551,890.642025,3008656476 +4,9697,156,128,2.74202514,0.13025102,982.717832,3008656476 +4,9698,157,128,2.80056524,0.144871006,883.544634,3008656476 +4,9699,158,128,2.06810474,0.130724568,979.15795,3008656476 +4,9700,159,128,1.8483392,0.131639329,972.353786,3008656476 +4,9701,160,128,2.12381744,0.132705444,964.542193,3008656476 +4,9702,161,128,2.28766942,0.132836105,963.593445,3008656476 +4,9703,162,128,1.96504009,0.132853208,963.469395,3008656476 +4,9704,163,128,2.82928014,0.145861883,877.54249,3008656476 +4,9705,164,128,2.62821555,0.13361176,957.999505,3008656476 +4,9706,165,128,2.32224274,0.158987041,805.097064,3008656476 +4,9707,166,128,2.63224196,0.135399561,945.350185,3008656476 +4,9708,167,128,2.2600193,0.14402811,888.715404,3008656476 +4,9709,168,128,2.11157608,0.14401129,888.819203,3008656476 +4,9710,169,128,2.18612647,0.133646791,957.748398,3008656476 +4,9711,170,128,2.35603738,0.144505454,885.779716,3008656476 +4,9712,171,128,2.12662625,0.132735906,964.320837,3008656476 +4,9713,172,128,2.16467261,0.147294703,869.006131,3008656476 +4,9714,173,128,2.18274021,0.132020612,969.545574,3008656476 +4,9715,174,128,1.7033726,0.131468827,973.614833,3008656476 +4,9716,175,128,2.48090959,0.131041756,976.787887,3008656476 +4,9717,176,128,1.60715604,0.131236045,975.341797,3008656476 +4,9718,177,128,2.78491139,0.130760753,978.886991,3008656476 +4,9719,178,128,1.77695584,0.14386305,889.735064,3008656476 +4,9720,179,128,2.86699557,0.13042764,981.387074,3008656476 +4,9721,180,128,2.23430419,0.14511373,882.066776,3008656476 +4,9722,181,128,2.28310204,0.12950728,988.361426,3008656476 +4,9723,182,128,2.66634226,0.129071494,991.698446,3008656476 +4,9724,183,128,1.64150703,0.128528275,995.889815,3008656476 +4,9725,184,128,1.73473346,0.129363252,989.46183,3008656476 +4,9726,185,128,2.28614306,0.128403301,996.859107,3008656476 +4,9727,186,128,1.96261644,0.14387671,889.65059,3008656476 +4,9728,187,128,1.8838501,0.129463902,988.692586,3008656476 +4,9729,188,128,2.64621449,0.142377887,899.016011,3008656476 +4,9730,189,128,2.38205886,0.128419927,996.730048,3008656476 +4,9731,190,128,2.18952942,0.12932661,989.742173,3008656476 +4,9732,191,128,1.74670684,0.129499988,988.41708,3008656476 +4,9733,192,128,1.6712811,0.130730206,979.115722,3008656476 +4,9734,193,128,2.42911077,0.130021087,984.455698,3008656476 +4,9735,194,128,2.2002368,0.143685537,890.834267,3008656476 +4,9736,195,128,2.59958744,0.1298465,985.779363,3008656476 +4,9737,196,128,2.28704119,0.143362164,892.843666,3008656476 +4,9738,197,128,2.15266991,0.129799146,986.139,3008656476 +4,9739,198,128,2.03861117,0.130235135,982.837696,3008656476 +4,9740,199,128,2.39724469,0.129445444,988.833566,3008656476 +4,9741,200,128,2.24770021,0.1299011,985.36502,3008656476 +4,9742,201,128,2.14967012,0.129752353,986.494634,3008656476 +4,9743,202,128,2.93479228,0.14626885,875.100884,3008656476 +4,9744,203,128,2.2082026,0.130362886,981.87455,3008656476 +4,9745,204,128,2.3802917,0.148168564,863.880951,3008656476 +4,9746,205,128,2.17272019,0.131815122,971.057023,3008656476 +4,9747,206,128,1.78832471,0.132534535,965.786012,3008656476 +4,9748,207,128,2.10992217,0.132552079,965.658185,3008656476 +4,9749,208,128,1.77686989,0.132764954,964.109851,3008656476 +4,9750,209,128,2.0966804,0.137088202,933.70544,3008656476 +4,9751,210,128,1.8263433,0.144906538,883.327983,3008656476 +4,9752,211,128,1.98552167,0.147062593,870.37769,3008656476 +4,9753,212,128,2.23421764,0.133291825,960.298953,3008656476 +4,9754,213,128,1.90570831,0.132229897,968.011039,3008656476 +4,9755,214,128,1.60646546,0.131017788,976.966578,3008656476 +4,9756,215,128,1.68721437,0.131155562,975.940311,3008656476 +4,9757,216,128,2.38760257,0.131586676,972.742863,3008656476 +4,9758,217,128,2.32595062,0.146314755,874.826329,3008656476 +4,9759,218,128,1.84398317,0.129487145,988.515115,3008656476 +4,9760,219,128,2.44734693,0.144085031,888.364316,3008656476 +4,9761,220,128,1.88617957,0.129135695,991.205414,3008656476 +4,9762,221,128,1.9107641,0.129580708,987.801363,3008656476 +4,9763,222,128,2.21875787,0.129709923,986.817331,3008656476 +4,9764,223,128,1.76925051,0.129646204,987.302336,3008656476 +4,9765,224,128,2.10121202,0.130066102,984.114985,3008656476 +4,9766,225,128,2.18622422,0.143253536,893.520702,3008656476 +4,9767,226,128,2.12302709,0.130542275,980.525274,3008656476 +4,9768,227,128,2.4131403,0.143083589,894.581978,3008656476 +4,9769,228,128,1.82899654,0.129669098,987.12802,3008656476 +4,9770,229,128,2.06664705,0.130141416,983.545469,3008656476 +4,9771,230,128,2.05114985,0.117955099,1085.15868,3008656476 +4,9772,231,128,2.49743032,0.130584142,980.210905,3008656476 +4,9773,232,128,2.00238156,0.129488929,988.501496,3008656476 +4,9774,233,128,2.39411259,0.143907818,889.458278,3008656476 +4,9775,234,128,2.26993537,0.129469565,988.64934,3008656476 +4,9776,235,128,1.74936986,0.143807874,890.076436,3008656476 +4,9777,236,128,2.44329667,0.129589196,987.736663,3008656476 +4,9778,237,128,1.86158872,0.130048878,984.245324,3008656476 +4,9779,238,128,2.41551685,0.130648354,979.729144,3008656476 +4,9780,239,128,2.57288814,0.131382845,974.252004,3008656476 +4,9781,240,128,2.4532733,0.131893064,970.483179,3008656476 +4,9782,241,128,1.97200525,0.14644662,874.038609,3008656476 +4,9783,242,128,2.02761722,0.131774354,971.357446,3008656476 +4,9784,243,128,2.27209878,0.146465507,873.9259,3008656476 +4,9785,244,128,2.57229352,0.133968855,955.44595,3008656476 +4,9786,245,128,1.89946675,0.136124978,940.312365,3008656476 +4,9787,246,128,2.20022249,0.132293578,967.545076,3008656476 +4,9788,247,128,2.31720424,0.134331854,952.864091,3008656476 +4,9789,248,128,2.30829549,0.132727457,964.382223,3008656476 +4,9790,249,128,1.27810943,0.14501021,882.696467,3008656476 +4,9791,250,128,1.75954771,0.131246448,975.264489,3008656476 +4,9792,251,128,2.60070038,0.14104406,907.517835,3008656476 +4,9793,252,128,2.58736515,0.132408822,966.702959,3008656476 +4,9794,253,128,2.17569351,0.138282645,925.64038,3008656476 +4,9795,254,128,2.24303246,0.17757237,720.832864,3008656476 +4,9796,255,128,2.35887694,0.131599016,972.65165,3008656476 +4,9797,256,128,2.16279292,0.145083154,882.25267,3008656476 +4,9798,257,128,2.54215288,0.131451823,973.740775,3008656476 +4,9799,258,128,1.90820384,0.144179713,887.780932,3008656476 +4,9800,259,128,2.40143442,0.131068359,976.589628,3008656476 +4,9801,260,128,2.49897718,0.12990806,985.312228,3008656476 +4,9802,261,128,2.13826156,0.130750974,978.960203,3008656476 +4,9803,262,128,2.60245919,0.129280993,990.091405,3008656476 +4,9804,263,128,1.78345096,0.12912799,991.264559,3008656476 +4,9805,264,128,1.99973047,0.144863365,883.591238,3008656476 +4,9806,265,128,2.11761522,0.12904723,991.884909,3008656476 +4,9807,266,128,1.99316442,0.142656076,897.262869,3008656476 +4,9808,267,128,1.41660118,0.129503415,988.390924,3008656476 +4,9809,268,128,1.65318525,0.12903899,991.948248,3008656476 +4,9810,269,128,2.23312473,0.129157022,991.041741,3008656476 +4,9811,270,128,2.66038108,0.130712824,979.245923,3008656476 +4,9812,271,128,1.87020934,0.129543224,988.087189,3008656476 +4,9813,272,128,2.11453724,0.149653048,855.311681,3008656476 +4,9814,273,128,2.51535273,0.129760569,986.432173,3008656476 +4,9815,274,128,1.84297907,0.145149827,881.847417,3008656476 +4,9816,275,128,2.15948868,0.129593742,987.702014,3008656476 +4,9817,276,128,2.28315139,0.130349176,981.977822,3008656476 +4,9818,277,128,2.52345824,0.130567208,980.338034,3008656476 +4,9819,278,128,1.92240751,0.128651675,994.934578,3008656476 +4,9820,279,128,2.01919031,0.129542151,988.095373,3008656476 +4,9821,280,128,2.21330237,0.143930645,889.317212,3008656476 +4,9822,281,128,1.93588912,0.129974366,984.809574,3008656476 +4,9823,282,128,1.49839509,0.147811003,865.970715,3008656476 +4,9824,283,128,1.90232933,0.132740271,964.289127,3008656476 +4,9825,284,128,1.74775028,0.13193413,970.181105,3008656476 +4,9826,285,128,1.76565552,0.132848894,963.500682,3008656476 +4,9827,286,128,2.1114099,0.133886858,956.031099,3008656476 +4,9828,287,128,1.73063874,0.136443031,938.120467,3008656476 +4,9829,288,128,1.63821208,0.157017511,815.195701,3008656476 +4,9830,289,128,2.15267515,0.15270769,838.202713,3008656476 +4,9831,290,128,1.9142971,0.132660721,964.867363,3008656476 +4,9832,291,128,2.52189159,0.132978913,962.558628,3008656476 +4,9833,292,128,2.21190739,0.132188942,968.31095,3008656476 +4,9834,293,128,1.7089175,0.132115223,968.851258,3008656476 +4,9835,294,128,1.73175216,0.132166518,968.475238,3008656476 +4,9836,295,128,2.01733136,0.144823464,883.83468,3008656476 +4,9837,296,128,2.5889504,0.130814846,978.482213,3008656476 +4,9838,297,128,2.0054636,0.144220936,887.527176,3008656476 +4,9839,298,128,2.21266222,0.129798997,986.140132,3008656476 +4,9840,299,128,2.36146593,0.130452636,981.199031,3008656476 +4,9841,300,128,2.13218999,0.129140326,991.169869,3008656476 +4,9842,301,128,2.0862987,0.128768447,994.032335,3008656476 +4,9843,302,128,2.0505147,0.129462967,988.699726,3008656476 +4,9844,303,128,2.24592304,0.145612115,879.047736,3008656476 +4,9845,304,128,1.85915709,0.130148477,983.492108,3008656476 +4,9846,305,128,1.88995552,0.142183183,900.247113,3008656476 +4,9847,306,128,2.13940191,0.128389693,996.964764,3008656476 +4,9848,307,128,1.84184587,0.12850165,996.096159,3008656476 +4,9849,308,128,2.5271337,0.129329457,989.720385,3008656476 +4,9850,309,128,2.2924335,0.129803931,986.102647,3008656476 +4,9851,310,128,2.0736177,0.130498667,980.852931,3008656476 +4,9852,311,128,1.83778059,0.143948947,889.204143,3008656476 +4,9853,312,128,1.86707997,0.130631603,979.854775,3008656476 +4,9854,313,128,2.02065706,0.145245831,881.264537,3008656476 +4,9855,314,128,1.47060442,0.128367889,997.134104,3008656476 +4,9856,315,128,1.94950056,0.129947495,985.013216,3008656476 +4,9857,316,128,2.14025283,0.129599401,987.658886,3008656476 +4,9858,317,128,1.97141743,0.129624669,987.46636,3008656476 +4,9859,318,128,2.35126352,0.130040581,984.308121,3008656476 +4,9860,319,128,2.37018824,0.14547991,879.846571,3008656476 +4,9861,320,128,2.69859171,0.131196622,975.634876,3008656476 +4,9862,321,128,2.06349111,0.146053442,876.391533,3008656476 +4,9863,322,128,2.08577514,0.131615167,972.532292,3008656476 +4,9864,323,128,2.13929033,0.13291638,963.011481,3008656476 +4,9865,324,128,1.50468636,0.131990232,969.768733,3008656476 +4,9866,325,128,2.50360084,0.132282364,967.627098,3008656476 +4,9867,326,128,2.24209237,0.134384708,952.489326,3008656476 +4,9868,327,128,2.56888413,0.15350477,833.85031,3008656476 +4,9869,328,128,2.40067816,0.154311857,829.489078,3008656476 +4,9870,329,128,2.25412226,0.132330195,967.277347,3008656476 +4,9871,330,128,2.96748257,0.132318578,967.36227,3008656476 +4,9872,331,128,2.37192249,0.13910476,920.169806,3008656476 +4,9873,332,128,1.93655682,0.136416549,938.302581,3008656476 +4,9874,333,128,2.47450709,0.144006748,888.847237,3008656476 +4,9875,334,128,2.25687742,0.147197548,869.579703,3008656476 +4,9876,335,128,2.60665751,0.133822611,956.490081,3008656476 +4,9877,336,128,2.31591392,0.146944025,871.079991,3008656476 +4,9878,337,128,2.31825924,0.131922133,970.269333,3008656476 +4,9879,338,128,2.06384802,0.131744787,971.575445,3008656476 +4,9880,339,128,2.44131804,0.130938218,977.560272,3008656476 +4,9881,340,128,2.15829515,0.13174607,971.565983,3008656476 +4,9882,341,128,2.23291397,0.130783526,978.71654,3008656476 +4,9883,342,128,2.17647314,0.143884292,889.60371,3008656476 +4,9884,343,128,1.97482336,0.130433598,981.342246,3008656476 +4,9885,344,128,2.5365026,0.145938848,877.079693,3008656476 +4,9886,345,128,1.89628816,0.130310508,982.269212,3008656476 +4,9887,346,128,1.91489112,0.130550916,980.460375,3008656476 +4,9888,347,128,2.70816755,0.128807019,993.734666,3008656476 +4,9889,348,128,2.27032661,0.129782987,986.261782,3008656476 +4,9890,349,128,2.53835511,0.129782049,986.26891,3008656476 +4,9891,350,128,2.56117225,0.14108444,907.258093,3008656476 +4,9892,351,128,2.31944847,0.129331369,989.705753,3008656476 +4,9893,352,128,2.61980534,0.14178098,902.800926,3008656476 +4,9894,353,128,2.40182662,0.130110139,983.781902,3008656476 +4,9895,354,128,2.02122784,0.128780237,993.94133,3008656476 +4,9896,355,128,2.21703362,0.12912811,991.263637,3008656476 +4,9897,356,128,2.51531148,0.128879192,993.17817,3008656476 +4,9898,357,128,2.11449146,0.129591029,987.722692,3008656476 +4,9899,358,128,1.50554979,0.143553466,891.653846,3008656476 +4,9900,359,128,1.81353295,0.129610891,987.57133,3008656476 +4,9901,360,128,1.98852575,0.143511787,891.912802,3008656476 +4,9902,361,128,1.9688375,0.130944291,977.514934,3008656476 +4,9903,362,128,1.90776598,0.130039348,984.317454,3008656476 +4,9904,363,128,2.04447865,0.130092854,983.912614,3008656476 +4,9905,364,128,2.25339317,0.129747889,986.528575,3008656476 +4,9906,365,128,2.3611393,0.129976606,984.792602,3008656476 +4,9907,366,128,2.32629919,0.149304967,857.305705,3008656476 +4,9908,367,128,2.22513318,0.129095845,991.511384,3008656476 +4,9909,368,128,1.78957152,0.142205146,900.108073,3008656476 +4,9910,369,128,2.1480124,0.130806726,978.542954,3008656476 +4,9911,370,128,2.18087602,0.129845319,985.788329,3008656476 +4,9912,371,128,2.07010579,0.130631381,979.85644,3008656476 +4,9913,372,128,2.37359524,0.131507448,973.328902,3008656476 +4,9914,373,128,2.63249898,0.131521634,973.223918,3008656476 +4,9915,374,128,2.45540452,0.147415036,868.296773,3008656476 +4,9916,375,128,1.67485237,0.147669152,866.802567,3008656476 +4,9917,376,128,2.72334266,0.129947701,985.011655,3008656476 +4,9918,377,128,1.60748494,0.133399771,959.521887,3008656476 +4,9919,378,128,2.14803076,0.144220009,887.53288,3008656476 +4,9920,379,128,1.52088368,0.144105508,888.238082,3008656476 +4,9921,380,128,1.83764601,0.131739398,971.615188,3008656476 +4,9922,381,128,1.7916193,0.151539479,844.66438,3008656476 +4,9923,382,128,1.5901109,0.143884887,889.600031,3008656476 +4,9924,383,128,1.72539198,0.149436241,856.552595,3008656476 +4,9925,384,128,2.7757082,0.132581952,965.440605,3008656476 +4,9926,385,128,2.51331449,0.132377437,966.932152,3008656476 +4,9927,386,128,2.04908228,0.13230477,967.463229,3008656476 +4,9928,387,128,1.76033616,0.132677106,964.748206,3008656476 +4,9929,388,128,2.42415786,0.131494437,973.42521,3008656476 +4,9930,389,128,2.6905508,0.144591948,885.249848,3008656476 +4,9931,390,128,2.582057,0.132004971,969.660453,3008656476 +4,9932,391,128,2.49962401,0.143964903,889.10559,3008656476 +4,9933,392,128,1.87444139,0.131325309,974.678841,3008656476 +4,9934,393,128,2.35710907,0.131995887,969.727186,3008656476 +4,9935,394,128,2.05124474,0.132363876,967.031216,3008656476 +4,9936,395,128,2.36579871,0.130132281,983.614511,3008656476 +4,9937,396,128,2.25235248,0.130799757,978.59509,3008656476 +4,9938,397,128,2.80606174,0.137034024,934.074592,3008656476 +4,9939,398,128,2.12765813,0.131706542,971.857571,3008656476 +4,9940,399,128,2.8439033,0.136191873,939.8505,3008656476 +4,9941,400,128,2.14451885,0.132073077,969.160429,3008656476 +4,9942,401,128,2.4938364,0.131274879,975.05327,3008656476 +4,9943,402,128,2.34187841,0.131849259,970.805608,3008656476 +4,9944,403,128,2.12646794,0.132060509,969.252663,3008656476 +4,9945,404,128,2.25844121,0.130687391,979.436494,3008656476 +4,9946,405,128,1.92359567,0.135364722,945.593491,3008656476 +4,9947,406,128,2.09112048,0.145922236,877.179541,3008656476 +4,9948,407,128,1.56193042,0.126981924,1008.01749,3008656476 +4,9949,408,128,1.74377584,0.12966065,987.192336,3008656476 +4,9950,409,128,2.39272428,0.130252726,982.704961,3008656476 +4,9951,410,128,1.78055704,0.129733448,986.638388,3008656476 +4,9952,411,128,2.33343577,0.130293156,982.400027,3008656476 +4,9953,412,128,1.79636586,0.129050512,991.859684,3008656476 +4,9954,413,128,1.81153572,0.13284605,963.521309,3008656476 +4,9955,414,128,2.02128911,0.131266502,975.115494,3008656476 +4,9956,415,128,2.60761714,0.134756566,949.860951,3008656476 +4,9957,416,128,2.11575842,0.130792826,978.646948,3008656476 +4,9958,417,128,1.78086555,0.131538991,973.095498,3008656476 +4,9959,418,128,1.949664,0.132175946,968.406158,3008656476 +4,9960,419,128,1.2861774,0.131005594,977.057514,3008656476 +4,9961,420,128,1.36989045,0.147029296,870.5748,3008656476 +4,9962,421,128,2.2010529,0.124302698,1029.74434,3008656476 +4,9963,422,128,1.953444,0.141424944,905.073719,3008656476 +4,9964,423,128,2.16187286,0.126931119,1008.42095,3008656476 +4,9965,424,128,2.54954553,0.131114239,976.247896,3008656476 +4,9966,425,128,2.70029616,0.129948045,985.009047,3008656476 +4,9967,426,128,3.06874299,0.129580125,987.805807,3008656476 +4,9968,427,128,2.09764099,0.130000211,984.613787,3008656476 +4,9969,428,128,1.59365427,0.142406963,898.832454,3008656476 +4,9970,429,128,1.32072616,0.124596025,1027.32009,3008656476 +4,9971,430,128,1.59097207,0.140251235,912.647935,3008656476 +4,9972,431,128,1.48559976,0.126254289,1013.82694,3008656476 +4,9973,432,128,1.58021677,0.132539298,965.751305,3008656476 +4,9974,433,128,1.6413492,0.130481632,980.980986,3008656476 +4,9975,434,128,2.07310724,0.129673343,987.095706,3008656476 +4,9976,435,128,2.02244449,0.130310949,982.265888,3008656476 +4,9977,436,128,2.56751275,0.132108075,968.90368,3008656476 +4,9978,437,128,1.70325458,0.130795989,978.623282,3008656476 +4,9979,438,128,1.74297249,0.137582864,930.348419,3008656476 +4,9980,439,128,2.25696945,0.131442391,973.810648,3008656476 +4,9981,440,128,1.98449075,0.1315506,973.009625,3008656476 +4,9982,441,128,1.77611327,0.131666119,972.155942,3008656476 +4,9983,442,128,1.69992757,0.132024726,969.515362,3008656476 +4,9984,443,128,1.60371339,0.131375971,974.30298,3008656476 +4,9985,444,128,1.5786643,0.140965267,908.025095,3008656476 +4,9986,445,128,1.85187936,0.128802389,993.770387,3008656476 +4,9987,446,128,1.96894455,0.143774611,890.28236,3008656476 +4,9988,447,128,2.42335415,0.12995566,984.951329,3008656476 +4,9989,448,128,2.21015644,0.131017142,976.971395,3008656476 +4,9990,449,128,2.1691308,0.128643315,994.999235,3008656476 +4,9991,450,128,1.97024274,0.129696458,986.919782,3008656476 +4,9992,451,128,2.68584013,0.128878539,993.183202,3008656476 +4,9993,452,128,2.00383258,0.138549446,923.857898,3008656476 +4,9994,453,128,1.85752261,0.129175169,990.902516,3008656476 +4,9995,454,128,2.31073856,0.144913442,883.2859,3008656476 +4,9996,455,128,2.36246347,0.128530347,995.87376,3008656476 +4,9997,456,128,2.27689552,0.129866085,985.630698,3008656476 +4,9998,457,128,2.27822733,0.130259475,982.654045,3008656476 +4,9999,458,128,2.39647484,0.128971841,992.464704,3008656476 +4,10000,459,128,1.79459262,0.129653432,987.247295,3008656476 +4,10001,460,128,2.62940264,0.1447083,884.538067,3008656476 +4,10002,461,128,2.58905816,0.129783509,986.257815,3008656476 +4,10003,462,128,2.12312412,0.144899966,883.368047,3008656476 +4,10004,463,128,1.76390016,0.130691037,979.409169,3008656476 +4,10005,464,128,1.8957237,0.130443854,981.265089,3008656476 +4,10006,465,128,1.58842087,0.130679635,979.494624,3008656476 +4,10007,466,128,1.71224201,0.13097151,977.311783,3008656476 +4,10008,467,128,2.12448525,0.130365862,981.852135,3008656476 +4,10009,468,128,2.69071746,0.143836263,889.900762,3008656476 +4,10010,469,128,2.60313725,0.129905954,985.328201,3008656476 +4,10011,470,128,2.40004134,0.143303792,893.207348,3008656476 +4,10012,471,128,1.47244549,0.130218613,982.962397,3008656476 +4,10013,472,128,2.85081887,0.130470974,981.061121,3008656476 +4,10014,473,128,2.18315578,0.129506066,988.370691,3008656476 +4,10015,474,128,1.86076891,0.12951186,988.326475,3008656476 +4,10016,475,128,1.60562277,0.129908612,985.308041,3008656476 +4,10017,476,128,1.85341203,0.145183901,881.640451,3008656476 +4,10018,477,128,2.10477471,0.129368172,989.424199,3008656476 +4,10019,478,128,2.23165607,0.142326172,899.342673,3008656476 +4,10020,479,128,2.67054367,0.130065161,984.122105,3008656476 +4,10021,480,128,2.34916329,0.130640535,979.787782,3008656476 +4,10022,481,128,1.95542037,0.131006523,977.050585,3008656476 +4,10023,482,128,1.85101211,0.131210242,975.533602,3008656476 +4,10024,483,128,2.23284364,0.132415881,966.651425,3008656476 +4,10025,484,128,2.25250316,0.145596272,879.143389,3008656476 +4,10026,485,128,1.85366142,0.133382364,959.647109,3008656476 +4,10027,486,128,1.56931841,0.145565656,879.328294,3008656476 +4,10028,487,128,2.26480865,0.132200313,968.227662,3008656476 +4,10029,488,128,1.83485138,0.133012389,962.316375,3008656476 +4,10030,489,128,2.6293478,0.13509668,947.46962,3008656476 +4,10031,490,128,2.70943284,0.139537092,917.318816,3008656476 +4,10032,491,128,2.55578828,0.135022087,947.993049,3008656476 +4,10033,492,128,2.05355191,0.145633809,878.916791,3008656476 +4,10034,493,128,2.09683919,0.133129577,961.469291,3008656476 +4,10035,494,128,2.13498211,0.141111301,907.085394,3008656476 +4,10036,495,128,2.2425952,0.135070663,947.652119,3008656476 +4,10037,496,128,2.73826599,0.133214506,960.85632,3008656476 +4,10038,497,128,2.75593638,0.132921018,962.977879,3008656476 +4,10039,498,128,2.74284887,0.133050038,962.044069,3008656476 +4,10040,499,128,2.38058662,0.142546184,897.954589,3008656476 +4,10041,500,128,2.41566014,0.124767702,1025.90653,3008656476 +4,10042,501,128,2.65933275,0.143896324,889.529325,3008656476 +4,10043,502,128,1.93691468,0.129922713,985.201102,3008656476 +4,10044,503,128,2.67649055,0.131977474,969.862478,3008656476 +4,10045,504,128,2.56904173,0.130146205,983.509277,3008656476 +4,10046,505,128,2.6587379,0.130612707,979.996533,3008656476 +4,10047,506,128,2.62218761,0.130911276,977.761457,3008656476 +4,10048,507,128,1.92358387,0.144255467,887.314725,3008656476 +4,10049,508,128,2.50479031,0.129303562,989.918592,3008656476 +4,10050,509,128,2.49141836,0.144940139,883.123204,3008656476 +4,10051,510,128,2.39350796,0.12941887,989.036606,3008656476 +4,10052,511,128,2.60440612,0.129536128,988.141316,3008656476 +4,10053,512,128,2.50424051,0.129132126,991.232809,3008656476 +4,10054,513,128,2.50912476,0.129890272,985.447163,3008656476 +4,10055,514,128,2.33222008,0.130246401,982.752683,3008656476 +4,10056,515,128,2.72311974,0.143326039,893.068705,3008656476 +4,10057,516,128,2.40874314,0.129815227,986.016841,3008656476 +4,10058,517,128,2.62558031,0.144040159,888.641063,3008656476 +4,10059,518,128,2.73123646,0.130296238,982.37679,3008656476 +4,10060,519,128,2.36908436,0.129670489,987.117431,3008656476 +4,10061,520,128,1.98003924,0.129955046,984.955982,3008656476 +4,10062,521,128,2.29706907,0.13060099,980.084454,3008656476 +4,10063,522,128,1.78812361,0.13026506,982.611915,3008656476 +4,10064,523,128,2.2924962,0.144510745,885.747285,3008656476 +4,10065,524,128,1.87118948,0.129977725,984.784124,3008656476 +4,10066,525,128,2.0943296,0.143240454,893.602306,3008656476 +4,10067,526,128,2.53852892,0.130392502,981.651537,3008656476 +4,10068,527,128,2.30015588,0.129183811,990.836228,3008656476 +4,10069,528,128,2.62277842,0.12986627,985.629294,3008656476 +4,10070,529,128,2.07312155,0.130296927,982.371595,3008656476 +4,10071,530,128,1.48709834,0.1287464,994.202556,3008656476 +4,10072,531,128,2.78361344,0.143937404,889.275452,3008656476 +4,10073,532,128,3.10963726,0.129493756,988.464648,3008656476 +4,10074,533,128,2.66989589,0.142509915,898.183119,3008656476 +4,10075,534,128,2.56674123,0.131148267,975.994597,3008656476 +4,10076,535,128,2.28122497,0.130564112,980.36128,3008656476 +4,10077,536,128,2.39223766,0.130837802,978.310534,3008656476 +4,10078,537,128,2.51236606,0.131304755,974.831414,3008656476 +4,10079,538,128,1.78327227,0.131770584,971.385237,3008656476 +4,10080,539,128,1.9807415,0.147247911,869.282281,3008656476 +4,10081,540,128,2.18797469,0.131896791,970.455756,3008656476 +4,10082,541,128,2.4551549,0.144840903,883.728266,3008656476 +4,10083,542,128,2.34227586,0.133557693,958.387324,3008656476 +4,10084,543,128,2.84414506,0.137594409,930.270357,3008656476 +4,10085,544,128,1.95122826,0.133201811,960.947896,3008656476 +4,10086,545,128,1.68052244,0.132363364,967.034957,3008656476 +4,10087,546,128,2.09960341,0.133035666,962.148,3008656476 +4,10088,547,128,2.66654181,0.145951601,877.003055,3008656476 +4,10089,548,128,2.3194654,0.132623212,965.14025,3008656476 +4,10090,549,128,2.49778533,0.143538695,891.745602,3008656476 +4,10091,550,128,2.09477901,0.131371431,974.33665,3008656476 +4,10092,551,128,1.96524596,0.132224317,968.05189,3008656476 +4,10093,552,128,2.28884673,0.13223099,968.003038,3008656476 +4,10094,553,128,2.51792288,0.131302924,974.845008,3008656476 +4,10095,554,128,2.835181,0.129670153,987.119989,3008656476 +4,10096,555,128,2.87208843,0.137059093,933.903743,3008656476 +4,10097,556,128,1.85910797,0.131976112,969.872487,3008656476 +4,10098,557,128,2.25711918,0.13884017,921.923389,3008656476 +4,10099,558,128,2.8183434,0.132145506,968.629232,3008656476 +4,10100,559,128,3.08896589,0.133348226,959.892785,3008656476 +4,10101,560,128,2.58628106,0.132626535,965.116068,3008656476 +4,10102,561,128,2.56952214,0.132459355,966.334163,3008656476 +4,10103,562,128,2.73337531,0.143164545,894.076114,3008656476 +4,10104,563,128,2.98591733,0.129325167,989.753216,3008656476 +4,10105,564,128,2.48217106,0.14643684,874.096983,3008656476 +4,10106,565,128,2.16814876,0.129792695,986.188013,3008656476 +4,10107,566,128,1.628335,0.12931796,989.808376,3008656476 +4,10108,567,128,2.57825613,0.129661557,987.185431,3008656476 +4,10109,568,128,2.31305218,0.129325674,989.749336,3008656476 +4,10110,569,128,2.63324237,0.129482805,988.548248,3008656476 +4,10111,570,128,2.85383129,0.142635716,897.390945,3008656476 +4,10112,571,128,1.89876938,0.130530035,980.61722,3008656476 +4,10113,572,128,1.89906526,0.143131232,894.284205,3008656476 +4,10114,573,128,2.5897038,0.129248693,990.338835,3008656476 +4,10115,574,128,2.31598854,0.130272749,982.553918,3008656476 +4,10116,575,128,2.53372884,0.130416009,981.474598,3008656476 +4,10117,576,128,1.8019985,0.130861348,978.134506,3008656476 +4,10118,577,128,2.85424066,0.130468824,981.077288,3008656476 +4,10119,578,128,1.89200234,0.140957012,908.078273,3008656476 +4,10120,579,128,2.12577057,0.129147988,991.111066,3008656476 +4,10121,580,128,2.00870728,0.143678759,890.876292,3008656476 +4,10122,581,128,2.53753591,0.13022318,982.927924,3008656476 +4,10123,582,128,2.45593166,0.129147583,991.114174,3008656476 +4,10124,583,128,2.10933614,0.129754755,986.476372,3008656476 +4,10125,584,128,2.51077056,0.129740396,986.58555,3008656476 +4,10126,585,128,1.91565633,0.130122606,983.687646,3008656476 +4,10127,586,128,2.69691038,0.143337076,892.999938,3008656476 +4,10128,587,128,2.52987742,0.128954057,992.601574,3008656476 +4,10129,588,128,2.32160997,0.141093036,907.202819,3008656476 +4,10130,589,128,2.79004049,0.129682404,987.026736,3008656476 +4,10131,590,128,2.44095826,0.129543789,988.082879,3008656476 +4,10132,591,128,2.23420668,0.13045219,981.202385,3008656476 +4,10133,592,128,2.27748775,0.130533533,980.590941,3008656476 +4,10134,593,128,1.9714216,0.132017335,969.56964,3008656476 +4,10135,594,128,1.98993814,0.144612877,885.121731,3008656476 +4,10136,595,128,2.25671172,0.132199388,968.234437,3008656476 +4,10137,596,128,2.4783895,0.145233215,881.34109,3008656476 +4,10138,597,128,2.46746445,0.132039928,969.40374,3008656476 +4,10139,598,128,2.11895251,0.132159893,968.523787,3008656476 +4,10140,599,128,2.55691028,0.132815341,963.74409,3008656476 +4,10141,600,128,2.5054884,0.133687641,957.455746,3008656476 +4,10142,601,128,2.13140988,0.133926443,955.748522,3008656476 +4,10143,602,128,2.61010003,0.159587878,802.065931,3008656476 +4,10144,603,128,1.79822111,0.133007281,962.353332,3008656476 +4,10145,604,128,2.67767239,0.148089841,864.340181,3008656476 +4,10146,605,128,1.76303208,0.131886898,970.528551,3008656476 +4,10147,606,128,2.00818777,0.133791574,956.711968,3008656476 +4,10148,607,128,1.83929908,0.132208078,968.170795,3008656476 +4,10149,608,128,2.54210448,0.131705259,971.867038,3008656476 +4,10150,609,128,1.96962726,0.132174076,968.419859,3008656476 +4,10151,610,128,2.06586862,0.139881484,915.060352,3008656476 +4,10152,611,128,1.73218286,0.132375423,966.946863,3008656476 +4,10153,612,128,2.10136199,0.136142013,940.194707,3008656476 +4,10154,613,128,2.29309201,0.133263858,960.500483,3008656476 +4,10155,614,128,2.59650874,0.132679662,964.729621,3008656476 +4,10156,615,128,1.80090511,0.132514689,965.930652,3008656476 +4,10157,616,128,2.5122962,0.131793407,971.21702,3008656476 +4,10158,617,128,2.68527699,0.145021391,882.628412,3008656476 +4,10159,618,128,2.06818342,0.129769568,986.363768,3008656476 +4,10160,619,128,2.28001499,0.145199912,881.543234,3008656476 +4,10161,620,128,2.03554988,0.130136277,983.584308,3008656476 +4,10162,621,128,2.1179738,0.12926905,990.182878,3008656476 +4,10163,622,128,2.48131204,0.12876691,994.0442,3008656476 +4,10164,623,128,2.42936039,0.129504534,988.382384,3008656476 +4,10165,624,128,2.66328049,0.129294126,989.990837,3008656476 +4,10166,625,128,2.46703649,0.143426872,892.440853,3008656476 +4,10167,626,128,2.37568331,0.129558157,987.973301,3008656476 +4,10168,627,128,2.05307531,0.143355432,892.885594,3008656476 +4,10169,628,128,2.0220499,0.130029926,984.388778,3008656476 +4,10170,629,128,2.70125699,0.130552811,980.446143,3008656476 +4,10171,630,128,2.65010285,0.130732099,979.101544,3008656476 +4,10172,631,128,1.94085252,0.130050933,984.229771,3008656476 +4,10173,632,128,3.02566433,0.131136117,976.085025,3008656476 +4,10174,633,128,2.73237205,0.14213869,900.528913,3008656476 +4,10175,634,128,2.65379429,0.129931717,985.132829,3008656476 +4,10176,635,128,1.99335611,0.142857625,895.996976,3008656476 +4,10177,636,128,2.33235359,0.129658892,987.205721,3008656476 +4,10178,637,128,2.17782211,0.129541156,988.102962,3008656476 +4,10179,638,128,2.26508403,0.1298125,986.037554,3008656476 +4,10180,639,128,2.8954289,0.128783806,993.913784,3008656476 +4,10181,640,128,2.26940417,0.1300522,984.220182,3008656476 +4,10182,641,128,2.24094605,0.143047202,894.809533,3008656476 +4,10183,642,128,1.99957752,0.129806382,986.084028,3008656476 +4,10184,643,128,2.39820886,0.143378632,892.741116,3008656476 +4,10185,644,128,2.69472504,0.131351933,974.481282,3008656476 +4,10186,645,128,3.16576266,0.130071476,984.074325,3008656476 +4,10187,646,128,2.29848742,0.130970762,977.317365,3008656476 +4,10188,647,128,2.18686223,0.131053834,976.697866,3008656476 +4,10189,648,128,2.43627882,0.13283098,963.630623,3008656476 +4,10190,649,128,2.28046322,0.146006332,876.674308,3008656476 +4,10191,650,128,1.97249997,0.133120541,961.534554,3008656476 +4,10192,651,128,2.23141336,0.148021525,864.739098,3008656476 +4,10193,652,128,1.55187273,0.134408907,952.31784,3008656476 +4,10194,653,128,1.80114245,0.139209344,919.478509,3008656476 +4,10195,654,128,2.93340516,0.133916493,955.819534,3008656476 +4,10196,655,128,2.79949141,0.133608392,958.023655,3008656476 +4,10197,656,128,2.5519731,0.132591272,965.372743,3008656476 +4,10198,657,128,2.11995077,0.147952816,865.140681,3008656476 +4,10199,658,128,2.29427481,0.131653075,972.252262,3008656476 +4,10200,659,128,2.60329652,0.144476146,885.959403,3008656476 +4,10201,660,128,2.5504787,0.132674491,964.767221,3008656476 +4,10202,661,128,2.52500534,0.133102827,961.66252,3008656476 +4,10203,662,128,2.47115898,0.131959058,969.997831,3008656476 +4,10204,663,128,1.96948302,0.132584976,965.418586,3008656476 +4,10205,664,128,1.83680177,0.130497202,980.863942,3008656476 +4,10206,665,128,3.13311505,0.136190073,939.862922,3008656476 +4,10207,666,128,2.82908845,0.147655609,866.88207,3008656476 +4,10208,667,128,2.29498529,0.12609254,1015.12746,3008656476 +4,10209,668,128,1.93061316,0.131838582,970.884229,3008656476 +4,10210,669,128,1.93735981,0.131199726,975.611794,3008656476 +4,10211,670,128,2.22838807,0.130603925,980.062429,3008656476 +4,10212,671,128,1.72040427,0.129948054,985.008979,3008656476 +4,10213,672,128,1.894171,0.139705825,916.210902,3008656476 +4,10214,673,128,2.10630631,0.126798643,1009.47453,3008656476 +4,10215,674,128,2.59731841,0.141549538,904.27706,3008656476 +4,10216,675,128,2.56873226,0.127674579,1002.54883,3008656476 +4,10217,676,128,2.09877372,0.13001697,984.486871,3008656476 +4,10218,677,128,2.76721883,0.130095803,983.89031,3008656476 +4,10219,678,128,2.30316782,0.129276928,990.122538,3008656476 +4,10220,679,128,2.10331607,0.128286802,997.764369,3008656476 +4,10221,680,128,2.40016651,0.135857432,942.164136,3008656476 +4,10222,681,128,2.44300914,0.125763512,1017.78328,3008656476 +4,10223,682,128,2.36201692,0.13035917,981.902539,3008656476 +4,10224,683,128,2.18963432,0.135926804,941.68329,3008656476 +4,10225,684,128,2.16115117,0.132470452,966.253214,3008656476 +4,10226,685,128,1.75534034,0.1308842,977.963727,3008656476 +4,10227,686,128,1.95331931,0.130830846,978.362549,3008656476 +4,10228,687,128,1.75811112,0.130282946,982.477016,3008656476 +4,10229,688,128,2.40069699,0.135348377,945.707683,3008656476 +4,10230,689,128,1.68107605,0.128739548,994.255472,3008656476 +4,10231,690,128,1.98004806,0.130606691,980.041673,3008656476 +4,10232,691,128,2.43211412,0.136766877,935.899121,3008656476 +4,10233,692,128,2.2122438,0.131289524,974.944505,3008656476 +4,10234,693,128,1.89748299,0.131810713,971.089505,3008656476 +4,10235,694,128,2.32184744,0.132003998,969.667601,3008656476 +4,10236,695,128,2.1894753,0.131603552,972.618125,3008656476 +4,10237,696,128,2.82984328,0.14210169,900.76339,3008656476 +4,10238,697,128,2.51532722,0.1253403,1021.21983,3008656476 +4,10239,698,128,2.17057467,0.131940798,970.132074,3008656476 +4,10240,699,128,2.0222075,0.199523784,641.527528,3008656476 +4,10241,700,128,2.741014,0.132518595,965.902182,3008656476 +4,10242,701,128,2.28289628,0.131752061,971.521804,3008656476 +4,10243,702,128,1.94326699,0.132052575,969.310898,3008656476 +4,10244,703,128,1.68568563,0.131122075,976.189555,3008656476 +4,10245,704,128,2.18145847,0.145704615,878.489676,3008656476 +4,10246,705,128,2.45580125,0.1305046,980.808339,3008656476 +4,10247,706,128,2.34901285,0.142697273,897.003827,3008656476 +4,10248,707,128,2.45314407,0.129652511,987.254308,3008656476 +4,10249,708,128,1.79527223,0.128995557,992.282238,3008656476 +4,10250,709,128,2.5766449,0.129523411,988.238335,3008656476 +4,10251,710,128,1.77224028,0.129097316,991.500087,3008656476 +4,10252,711,128,2.50676489,0.129357608,989.505001,3008656476 +4,10253,712,128,2.33939362,0.143575569,891.516578,3008656476 +4,10254,713,128,2.53439593,0.130021245,984.454502,3008656476 +4,10255,714,128,1.76937461,0.143813284,890.042953,3008656476 +4,10256,715,128,1.38747811,0.130135892,983.587218,3008656476 +4,10257,716,128,1.82818758,0.131140196,976.054664,3008656476 +4,10258,717,128,2.44849896,0.13038807,981.684904,3008656476 +4,10259,718,128,2.86747169,0.130158143,983.41907,3008656476 +4,10260,719,128,2.69278121,0.130155332,983.44031,3008656476 +4,10261,720,128,2.55925322,0.143160952,894.098553,3008656476 +4,10262,721,128,2.38013506,0.130590997,980.159452,3008656476 +4,10263,722,128,2.17183471,0.14486137,883.603406,3008656476 +4,10264,723,128,2.50622368,0.129176258,990.894163,3008656476 +4,10265,724,128,2.15776944,0.129597511,987.673289,3008656476 +4,10266,725,128,2.29291081,0.130016554,984.490021,3008656476 +4,10267,726,128,2.15256619,0.129477106,988.591759,3008656476 +4,10268,727,128,2.55832291,0.129758632,986.446898,3008656476 +4,10269,728,128,2.30178857,0.145744929,878.24668,3008656476 +4,10270,729,128,2.40078974,0.12905156,991.851629,3008656476 +4,10271,730,128,2.17588162,0.141091622,907.211911,3008656476 +4,10272,731,128,2.76916337,0.130116681,983.732439,3008656476 +4,10273,732,128,2.33210969,0.130042865,984.290834,3008656476 +4,10274,733,128,1.8757509,0.130624799,979.905814,3008656476 +4,10275,734,128,1.52393854,0.131840309,970.871511,3008656476 +4,10276,735,128,1.7805897,0.131540993,973.080688,3008656476 +4,10277,736,128,1.51702464,0.139488199,917.640352,3008656476 +4,10278,737,128,1.49785781,0.131548571,973.024633,3008656476 +4,10279,738,128,1.90552127,0.138436358,924.612593,3008656476 +4,10280,739,128,2.09454322,0.134634667,950.720961,3008656476 +4,10281,740,128,1.90238798,0.139471683,917.749017,3008656476 +4,10282,741,128,2.22794032,0.132819399,963.714645,3008656476 +4,10283,742,128,2.23054647,0.133584965,958.191665,3008656476 +4,10284,743,128,2.26053357,0.146296639,874.934659,3008656476 +4,10285,744,128,2.09027004,0.133820524,956.504998,3008656476 +4,10286,745,128,1.54893947,0.144207008,887.612896,3008656476 +4,10287,746,128,1.70121717,0.131146662,976.006541,3008656476 +4,10288,747,128,1.70819473,0.13217904,968.38349,3008656476 +4,10289,748,128,2.42769098,0.131319119,974.724785,3008656476 +4,10290,749,128,2.80749989,0.132194475,968.270421,3008656476 +4,10291,750,128,2.05351281,0.133658172,957.666846,3008656476 +4,10292,751,128,2.35204458,0.143988518,888.959771,3008656476 +4,10293,752,128,1.80469537,0.130693522,979.390547,3008656476 +4,10294,753,128,2.03637838,0.144483977,885.911384,3008656476 +4,10295,754,128,2.25205302,0.128977625,992.420197,3008656476 +4,10296,755,128,2.02430224,0.130731764,979.104053,3008656476 +4,10297,756,128,2.58696961,0.128130166,998.984111,3008656476 +4,10298,757,128,1.59779656,0.128291633,997.726796,3008656476 +4,10299,758,128,2.39937067,0.12800907,999.929146,3008656476 +4,10300,759,128,1.90873492,0.14060718,910.33758,3008656476 +4,10301,760,128,2.48159075,0.127511551,1003.83063,3008656476 +4,10302,761,128,2.56731415,0.142539874,897.994339,3008656476 +4,10303,762,128,3.15648055,0.129018014,992.10952,3008656476 +4,10304,763,128,2.57852125,0.127915746,1000.65867,3008656476 +4,10305,764,128,2.85553575,0.128668409,994.805182,3008656476 +4,10306,765,128,2.97912288,0.128603832,995.304712,3008656476 +4,10307,766,128,2.23620701,0.128035344,999.723951,3008656476 +4,10308,767,128,2.61582398,0.147519026,867.684688,3008656476 +4,10309,768,128,2.1578939,0.128496085,996.139299,3008656476 +4,10310,769,128,2.07698011,0.145269388,881.12163,3008656476 +4,10311,770,128,1.80591667,0.128030265,999.763611,3008656476 +4,10312,771,128,2.71388912,0.127552627,1003.50736,3008656476 +4,10313,772,128,2.15621066,0.128279679,997.819772,3008656476 +4,10314,773,128,2.17667794,0.128087321,999.31827,3008656476 +4,10315,774,128,2.2341392,0.128686431,994.665863,3008656476 +4,10316,775,128,2.35154271,0.14046981,911.227829,3008656476 +4,10317,776,128,2.66662717,0.12840877,996.81665,3008656476 +4,10318,777,128,2.60773492,0.143122657,894.337785,3008656476 +4,10319,778,128,2.01122475,0.128228394,998.21885,3008656476 +4,10320,779,128,2.36793113,0.128600747,995.328589,3008656476 +4,10321,780,128,2.06251025,0.128358886,997.204042,3008656476 +4,10322,781,128,2.02513027,0.128568907,995.575081,3008656476 +4,10323,782,128,1.59383202,0.127427548,1004.49237,3008656476 +4,10324,783,128,1.49804235,0.144624507,885.050554,3008656476 +4,10325,784,128,2.20733547,0.128656676,994.895904,3008656476 +4,10326,785,128,2.26283383,0.143631778,891.167691,3008656476 +4,10327,786,128,2.04447889,0.129827675,985.9223,3008656476 +4,10328,787,128,2.53546596,0.130787412,978.68746,3008656476 +4,10329,788,128,2.6325345,0.129522648,988.244156,3008656476 +4,10330,789,128,2.63582325,0.130768485,978.829112,3008656476 +4,10331,790,128,2.54188228,0.131233394,975.3615,3008656476 +4,10332,791,128,2.82847762,0.145901349,877.305117,3008656476 +4,10333,792,128,2.15653276,0.130849807,978.220778,3008656476 +4,10334,793,128,2.48774123,0.144042819,888.624653,3008656476 +4,10335,794,128,1.94279468,0.131779882,971.316699,3008656476 +4,10336,795,128,2.19372225,0.131638658,972.358743,3008656476 +4,10337,796,128,2.75683737,0.13259425,965.351062,3008656476 +4,10338,797,128,2.33805561,0.132527142,965.839888,3008656476 +4,10339,798,128,2.30833054,0.132989022,962.48546,3008656476 +4,10340,799,128,2.23271608,0.152388399,839.958953,3008656476 +4,10341,800,128,2.68834925,0.133368816,959.744593,3008656476 +4,10342,801,128,2.4597559,0.146493986,873.756005,3008656476 +4,10343,802,128,2.94224167,0.131521297,973.226412,3008656476 +4,10344,803,128,2.28405571,0.130746399,978.994458,3008656476 +4,10345,804,128,2.42245245,0.132613542,965.210627,3008656476 +4,10346,805,128,3.10146546,0.130064829,984.124617,3008656476 +4,10347,806,128,2.79975533,0.131377797,974.289438,3008656476 +4,10348,807,128,2.46114421,0.134593157,951.014174,3008656476 +4,10349,808,128,2.02562714,0.132101124,968.954662,3008656476 +4,10350,809,128,1.97267962,0.136599642,937.044916,3008656476 +4,10351,810,128,2.03085041,0.132358743,967.068719,3008656476 +4,10352,811,128,2.24482775,0.131436184,973.856636,3008656476 +4,10353,812,128,2.93410802,0.130931021,977.614006,3008656476 +4,10354,813,128,2.48822451,0.13226909,967.724205,3008656476 +4,10355,814,128,1.79050565,0.142764019,896.584454,3008656476 +4,10356,815,128,1.72482324,0.125157179,1022.71401,3008656476 +4,10357,816,128,2.74080682,0.134243668,953.490037,3008656476 +4,10358,817,128,2.47949481,0.131520316,973.233671,3008656476 +4,10359,818,128,2.25157261,0.131942696,970.118119,3008656476 +4,10360,819,128,2.12516546,0.130667755,979.583678,3008656476 +4,10361,820,128,1.98908436,0.130882826,977.973993,3008656476 +4,10362,821,128,2.2710166,0.130522152,980.676445,3008656476 +4,10363,822,128,2.26632476,0.144738233,884.355138,3008656476 +4,10364,823,128,2.81160259,0.128582568,995.469308,3008656476 +4,10365,824,128,2.54337692,0.142970675,895.288492,3008656476 +4,10366,825,128,2.32303643,0.126576313,1011.24766,3008656476 +4,10367,826,128,2.47853112,0.129664495,987.163063,3008656476 +4,10368,827,128,2.17816567,0.129090546,991.552085,3008656476 +4,10369,828,128,2.05641127,0.128414053,996.775641,3008656476 +4,10370,829,128,2.32072067,0.128779777,993.94488,3008656476 +4,10371,830,128,2.77082253,0.140256853,912.611379,3008656476 +4,10372,831,128,1.74972546,0.125455203,1020.28451,3008656476 +4,10373,832,128,2.56676531,0.129341648,989.6271,3008656476 +4,10374,833,128,2.68531966,0.137233017,932.720149,3008656476 +4,10375,834,128,2.59408092,0.130299907,982.349128,3008656476 +4,10376,835,128,2.70558,0.131362896,974.399955,3008656476 +4,10377,836,128,2.11162996,0.130563823,980.36345,3008656476 +4,10378,837,128,2.53433728,0.13012838,983.643998,3008656476 +4,10379,838,128,2.34043145,0.139681648,916.369486,3008656476 +4,10380,839,128,2.33703923,0.126252464,1013.8416,3008656476 +4,10381,840,128,2.37604928,0.130812936,978.4965,3008656476 +4,10382,841,128,2.15979075,0.135235542,946.496743,3008656476 +4,10383,842,128,1.97821844,0.132256608,967.815536,3008656476 +4,10384,843,128,2.70309901,0.131005888,977.055321,3008656476 +4,10385,844,128,2.00963664,0.131017665,976.967495,3008656476 +4,10386,845,128,2.46146703,0.131301241,974.857503,3008656476 +4,10387,846,128,2.38432193,0.14205578,901.054501,3008656476 +4,10388,847,128,2.8362751,0.125924437,1016.48261,3008656476 +4,10389,848,128,1.88100708,0.130991735,977.160887,3008656476 +4,10390,849,128,2.19664025,0.134540056,951.389525,3008656476 +4,10391,850,128,2.11436152,0.131860023,970.726359,3008656476 +4,10392,851,128,2.10964394,0.131936913,970.16064,3008656476 +4,10393,852,128,1.580428,0.13047638,981.020473,3008656476 +4,10394,853,128,2.28194594,0.131623969,972.467256,3008656476 +4,10395,854,128,2.77393508,0.141284604,905.972741,3008656476 +4,10396,855,128,2.40063763,0.124521869,1027.93189,3008656476 +4,10397,856,128,2.55060482,0.130279958,982.499549,3008656476 +4,10398,857,128,2.22934222,0.134027654,955.026789,3008656476 +4,10399,858,128,2.55127954,0.131861158,970.718003,3008656476 +4,10400,859,128,2.17066193,0.131283797,974.987035,3008656476 +4,10401,860,128,2.59485674,0.130266015,982.604711,3008656476 +4,10402,861,128,2.46530294,0.132248942,967.871637,3008656476 +4,10403,862,128,2.1214366,0.144995388,882.786699,3008656476 +4,10404,863,128,1.77453113,0.126386051,1012.76999,3008656476 +4,10405,864,128,2.21877956,0.141417097,905.12394,3008656476 +4,10406,865,128,2.08652639,0.127747468,1001.97681,3008656476 +4,10407,866,128,2.24425578,0.129787407,986.228194,3008656476 +4,10408,867,128,2.24169731,0.1307068,979.291054,3008656476 +4,10409,868,128,2.26020861,0.129542851,988.090034,3008656476 +4,10410,869,128,2.33413649,0.129653692,987.245315,3008656476 +4,10411,870,128,2.70916486,0.137251246,932.596269,3008656476 +4,10412,871,128,2.18395281,0.125737477,1017.99402,3008656476 +4,10413,872,128,2.28092504,0.130514429,980.734475,3008656476 +4,10414,873,128,1.94754326,0.135023323,947.984372,3008656476 +4,10415,874,128,2.47106028,0.131784426,971.283208,3008656476 +4,10416,875,128,2.01810312,0.131277529,975.033587,3008656476 +4,10417,876,128,2.30601072,0.130432194,981.352809,3008656476 +4,10418,877,128,1.71711659,0.131744529,971.577347,3008656476 +4,10419,878,128,2.03978753,0.1445004,885.810697,3008656476 +4,10420,879,128,2.27769685,0.122088494,1048.41985,3008656476 +4,10421,880,128,2.4781661,0.13050263,980.823145,3008656476 +4,10422,881,128,2.82612228,0.134835437,949.305337,3008656476 +4,10423,882,128,3.3278234,0.13181174,971.081939,3008656476 +4,10424,883,128,2.62371016,0.131396343,974.151921,3008656476 +4,10425,884,128,1.86964428,0.132573953,965.498856,3008656476 +4,10426,885,128,2.66402388,0.132786334,963.954619,3008656476 +4,10427,886,128,2.32035136,0.141975661,901.56298,3008656476 +4,10428,887,128,2.59469724,0.124772633,1025.86598,3008656476 +4,10429,888,128,2.04673338,0.134981651,948.277037,3008656476 +4,10430,889,128,2.67008901,0.130792372,978.650345,3008656476 +4,10431,890,128,1.97446072,0.131267487,975.108177,3008656476 +4,10432,891,128,1.80302298,0.130723908,979.162893,3008656476 +4,10433,892,128,2.389117,0.131903222,970.408441,3008656476 +4,10434,893,128,2.39453197,0.129901046,985.36543,3008656476 +4,10435,894,128,2.60835266,0.144642745,884.938958,3008656476 +4,10436,895,128,2.29971337,0.125747767,1017.91072,3008656476 +4,10437,896,128,1.76780486,0.139397191,918.23945,3008656476 +4,10438,897,128,2.18072104,0.118129564,1083.55602,3008656476 +4,10439,898,128,1.73347533,0.130145618,983.513713,3008656476 +4,10440,899,128,2.13758087,0.129806396,986.083921,3008656476 +4,10441,900,128,1.88908541,0.128852681,993.382513,3008656476 +4,10442,901,128,2.0697999,0.129307616,989.887556,3008656476 +4,10443,902,128,1.86789238,0.136783124,935.787956,3008656476 +4,10444,903,128,2.42341089,0.127553708,1003.49886,3008656476 +4,10445,904,128,1.77653956,0.131257956,975.178983,3008656476 +4,10446,905,128,1.91567314,0.135685289,943.359453,3008656476 +4,10447,906,128,2.52593255,0.131350412,974.492566,3008656476 +4,10448,907,128,2.55425954,0.130759659,978.895181,3008656476 +4,10449,908,128,2.47860694,0.131372813,974.3264,3008656476 +4,10450,909,128,2.07725906,0.130309597,982.276079,3008656476 +4,10451,910,128,2.37689233,0.130199097,983.109737,3008656476 +4,10452,911,128,2.33378792,0.134057835,954.81178,3008656476 +4,10453,912,128,2.78780913,0.130507094,980.789596,3008656476 +4,10454,913,128,2.12119675,0.135487846,944.734187,3008656476 +4,10455,914,128,2.77137423,0.130522198,980.676099,3008656476 +4,10456,915,128,2.59292006,0.13088167,977.982631,3008656476 +4,10457,916,128,2.09579659,0.131777908,971.331249,3008656476 +4,10458,917,128,1.83282256,0.131169989,975.83297,3008656476 +4,10459,918,128,2.19336987,0.130444505,981.260192,3008656476 +4,10460,919,128,2.04923868,0.134088619,954.592574,3008656476 +4,10461,920,128,2.23619199,0.131416057,974.005787,3008656476 +4,10462,921,128,2.13066816,0.134680723,950.395848,3008656476 +4,10463,922,128,2.40868378,0.130762201,978.876151,3008656476 +4,10464,923,128,2.76244664,0.132017454,969.568766,3008656476 +4,10465,924,128,2.07650805,0.131176897,975.781581,3008656476 +4,10466,925,128,2.56900787,0.130329673,982.124769,3008656476 +4,10467,926,128,2.05381989,0.129959495,984.922264,3008656476 +4,10468,927,128,1.72290802,0.135200556,946.741669,3008656476 +4,10469,928,128,2.10973692,0.130226319,982.904232,3008656476 +4,10470,929,128,2.07560992,0.136381199,938.545789,3008656476 +4,10471,930,128,1.80719745,0.130954742,977.436922,3008656476 +4,10472,931,128,2.12007999,0.130650222,979.715136,3008656476 +4,10473,932,128,2.26906085,0.131524332,973.203954,3008656476 +4,10474,933,128,2.08612037,0.131249378,975.242717,3008656476 +4,10475,934,128,2.11232114,0.134701969,950.245946,3008656476 +4,10476,935,128,2.07755709,0.129105016,991.440952,3008656476 +4,10477,936,128,1.95201349,0.130306969,982.295889,3008656476 +4,10478,937,128,2.09026742,0.136497304,937.747459,3008656476 +4,10479,938,128,2.59028602,0.130149309,983.485821,3008656476 +4,10480,939,128,2.48027992,0.13155071,973.008812,3008656476 +4,10481,940,128,2.3113029,0.131238336,975.324771,3008656476 +4,10482,941,128,1.9814961,0.129838756,985.838158,3008656476 +4,10483,942,128,2.12657666,0.130450949,981.21172,3008656476 +4,10484,943,128,1.97618139,0.134511495,951.591535,3008656476 +4,10485,944,128,2.84178448,0.130781731,978.729973,3008656476 +4,10486,945,128,2.71654987,0.137612615,930.147283,3008656476 +4,10487,946,128,2.26741719,0.130650211,979.715218,3008656476 +4,10488,947,128,2.66105199,0.130795788,978.624786,3008656476 +4,10489,948,128,2.99590564,0.131057699,976.669062,3008656476 +4,10490,949,128,2.89255786,0.130954306,977.440177,3008656476 +4,10491,950,128,2.37464142,0.129745462,986.547029,3008656476 +4,10492,951,128,1.97285509,0.135056925,947.748514,3008656476 +4,10493,952,128,2.01298237,0.129915796,985.253556,3008656476 +4,10494,953,128,2.42478633,0.137421219,931.442764,3008656476 +4,10495,954,128,2.46573114,0.130996881,977.122501,3008656476 +4,10496,955,128,1.71878886,0.130745687,978.999789,3008656476 +4,10497,956,128,2.5023675,0.131110007,976.279408,3008656476 +4,10498,957,128,2.39580607,0.130916938,977.71917,3008656476 +4,10499,958,128,2.11400175,0.130299582,982.351578,3008656476 +4,10500,959,128,2.34780073,0.134739452,949.981599,3008656476 +4,10501,960,128,2.10217309,0.130677073,979.513828,3008656476 +4,10502,961,128,2.13968468,0.13819666,926.216307,3008656476 +4,10503,962,128,2.34970689,0.131148185,975.995207,3008656476 +4,10504,963,128,2.18748736,0.130465481,981.102427,3008656476 +4,10505,964,128,1.9340111,0.131788911,971.250153,3008656476 +4,10506,965,128,1.86791635,0.13052327,980.668045,3008656476 +4,10507,966,128,2.45696402,0.143115253,894.384053,3008656476 +4,10508,967,128,2.88427877,0.122315694,1046.47242,3008656476 +4,10509,968,128,2.34578562,0.12995885,984.927152,3008656476 +4,10510,969,128,2.04916382,0.136748123,936.027473,3008656476 +4,10511,970,128,1.99951434,0.130694583,979.382596,3008656476 +4,10512,971,128,2.42494702,0.131347997,974.510483,3008656476 +4,10513,972,128,1.90269494,0.130202698,983.082547,3008656476 +4,10514,973,128,1.93456864,0.130535789,980.573994,3008656476 +4,10515,974,128,2.26757741,0.139076781,920.354923,3008656476 +4,10516,975,128,2.45804954,0.125997769,1015.891,3008656476 +4,10517,976,128,2.59139657,0.132615953,965.193079,3008656476 +4,10518,977,128,2.18787575,0.134788577,949.635369,3008656476 +4,10519,978,128,2.47961235,0.11161315,1146.81827,3008656476 +4,10520,979,128,2.49655724,0.111859562,1144.29198,3008656476 +4,10521,980,128,2.17280579,0.111592323,1147.03231,3008656476 +4,10522,981,128,2.41453147,0.111715148,1145.77121,3008656476 +4,10523,982,128,2.0825417,0.111492899,1148.05518,3008656476 +4,10524,983,128,2.06852722,0.124918982,1024.66413,3008656476 +4,10525,984,128,2.10982633,0.111852252,1144.36677,3008656476 +4,10526,985,128,2.09801435,0.111559688,1147.36786,3008656476 +4,10527,986,128,1.95799363,0.122340688,1046.25862,3008656476 +4,10528,987,128,1.76175487,0.11179245,1144.97893,3008656476 +4,10529,988,128,2.05688286,0.111705992,1145.86512,3008656476 +4,10530,989,128,2.1674397,0.111730844,1145.61025,3008656476 +4,10531,990,128,1.9672488,0.111665062,1146.28513,3008656476 +4,10532,991,128,1.71745336,0.111765876,1145.25117,3008656476 +4,10533,992,128,2.17312741,0.111593899,1147.01611,3008656476 +4,10534,993,128,1.62772775,0.113874145,1124.04796,3008656476 +4,10535,994,128,1.65488374,0.111760816,1145.30302,3008656476 +4,10536,995,128,1.54905546,0.182896159,699.850673,3008656476 +4,10537,996,128,2.26510668,0.123441124,1036.93158,3008656476 +4,10538,997,128,2.32288408,0.123921478,1032.91215,3008656476 +4,10539,998,128,2.01483536,0.123601977,1035.58214,3008656476 +4,10540,999,128,2.15869212,0.12324637,1038.57014,3008656476 +4,10541,1000,128,2.317904,0.123381174,1037.43542,3008656476 +4,10542,1001,128,2.04229283,0.141570079,904.145854,3008656476 +4,10543,1002,128,1.73463774,0.137772374,929.068697,3008656476 +4,10544,1003,128,1.86963093,0.123889742,1033.17674,3008656476 +4,10545,1004,128,2.34263992,0.123911226,1032.99761,3008656476 +4,10546,1005,128,2.13331532,0.124140756,1031.08765,3008656476 +4,10547,1006,128,2.16900992,0.123686176,1034.87717,3008656476 +4,10548,1007,128,2.31027699,0.124981163,1024.15434,3008656476 +4,10549,1008,128,2.00982141,0.124257878,1030.11577,3008656476 +4,10550,1009,128,1.87856448,0.132340421,967.202605,3008656476 +4,10551,1010,128,1.99864709,0.120943594,1058.3446,3008656476 +4,10552,1011,128,1.73448873,0.138200405,926.191208,3008656476 +4,10553,1012,128,1.93307734,0.123514528,1036.31534,3008656476 +4,10554,1013,128,1.81921804,0.123162394,1039.27827,3008656476 +4,10555,1014,128,2.05784631,0.123915277,1032.96384,3008656476 +4,10556,1015,128,1.38898396,0.1235531,1035.99181,3008656476 +4,10557,1016,128,1.85655749,0.123650597,1035.17495,3008656476 +4,10558,1017,128,1.94896042,0.124084526,1031.55489,3008656476 +4,10559,1018,128,2.00493717,0.142736864,896.755025,3008656476 +4,10560,1019,128,2.52100182,0.137193583,932.988243,3008656476 +4,10561,1020,128,2.3838551,0.123408956,1037.20187,3008656476 +4,10562,1021,128,2.15163827,0.124591179,1027.36005,3008656476 +4,10563,1022,128,2.17711616,0.123459309,1036.77885,3008656476 +4,10564,1023,128,2.68487,0.123115136,1039.6772,3008656476 +4,10565,1024,128,2.62184715,0.124063285,1031.73151,3008656476 +4,10566,1025,128,2.3367846,0.124404586,1028.90098,3008656476 +4,10567,1026,128,2.17841721,0.139164354,919.775764,3008656476 +4,10568,1027,128,1.95971692,0.137087703,933.708839,3008656476 +4,10569,1028,128,1.78129876,0.124637369,1026.97932,3008656476 +4,10570,1029,128,2.35885215,0.12442742,1028.71216,3008656476 +4,10571,1030,128,1.58614743,0.125013781,1023.88712,3008656476 +4,10572,1031,128,2.34933257,0.126430125,1012.41694,3008656476 +4,10573,1032,128,1.8903476,0.126588267,1011.15216,3008656476 +4,10574,1033,128,2.01893044,0.125533054,1019.65176,3008656476 +4,10575,1034,128,2.42655301,0.139225247,919.373481,3008656476 +4,10576,1035,128,2.39047623,0.12510814,1023.11488,3008656476 +4,10577,1036,128,2.14565182,0.130822868,978.422213,3008656476 +4,10578,1037,128,2.09103537,0.125699273,1018.30342,3008656476 +4,10579,1038,128,1.91465771,0.125475579,1020.11882,3008656476 +4,10580,1039,128,1.99622941,0.126423616,1012.46906,3008656476 +4,10581,1040,128,2.27333665,0.126898056,1008.68369,3008656476 +4,10582,1041,128,2.25620842,0.126368969,1012.90689,3008656476 +4,10583,1042,128,2.15168285,0.127751623,1001.94422,3008656476 +4,10584,1043,128,1.47922087,0.135227361,946.554004,3008656476 +4,10585,1044,128,1.84791076,0.144906507,883.328172,3008656476 +4,10586,1045,128,2.11125517,0.130547489,980.486113,3008656476 +4,10587,1046,128,1.80909121,0.129486189,988.522413,3008656476 +4,10588,1047,128,1.69460797,0.132588822,965.390582,3008656476 +4,10589,1048,128,2.50837517,0.1316146,972.536482,3008656476 +4,10590,1049,128,2.26396012,0.127439772,1004.39602,3008656476 +4,10591,1050,128,2.34608293,0.128075983,999.406735,3008656476 +4,10592,1051,128,2.2293458,0.130694617,979.382341,3008656476 +4,10593,1052,128,1.92971909,0.142200581,900.136969,3008656476 +4,10594,1053,128,2.02357554,0.126954568,1008.23469,3008656476 +4,10595,1054,128,2.31932974,0.126457333,1012.19911,3008656476 +4,10596,1055,128,1.71877885,0.125580448,1019.26695,3008656476 +4,10597,1056,128,2.58754563,0.125755938,1017.84458,3008656476 +4,10598,1057,128,2.34316921,0.125992911,1015.93017,3008656476 +4,10599,1058,128,2.35700893,0.124904341,1024.78424,3008656476 +4,10600,1059,128,1.6770854,0.139854164,915.239106,3008656476 +4,10601,1060,128,2.5208025,0.141862084,902.284785,3008656476 +4,10602,1061,128,2.61863947,0.125159541,1022.69471,3008656476 +4,10603,1062,128,2.47046661,0.124779428,1025.81012,3008656476 +4,10604,1063,128,2.20717216,0.125517013,1019.78208,3008656476 +4,10605,1064,128,2.06537461,0.124572096,1027.51743,3008656476 +4,10606,1065,128,2.23059273,0.178347516,717.699931,3008656476 +4,10607,1066,128,2.14626884,0.125704453,1018.26146,3008656476 +4,10608,1067,128,2.1485877,0.12970876,986.826179,3008656476 +4,10609,1068,128,2.1795547,0.1402342,912.758799,3008656476 +4,10610,1069,128,2.56772041,0.126256272,1013.81102,3008656476 +4,10611,1070,128,2.23360157,0.125990855,1015.94675,3008656476 +4,10612,1071,128,2.70973563,0.126236389,1013.9707,3008656476 +4,10613,1072,128,1.90496063,0.12599246,1015.93381,3008656476 +4,10614,1073,128,2.60998821,0.12562275,1018.92372,3008656476 +4,10615,1074,128,2.42945266,0.124765466,1025.92491,3008656476 +4,10616,1075,128,2.32313919,0.139562743,917.150217,3008656476 +4,10617,1076,128,2.76879573,0.136248512,939.459801,3008656476 +4,10618,1077,128,2.37458539,0.124225933,1030.38067,3008656476 +4,10619,1078,128,2.55901623,0.125491554,1019.98896,3008656476 +4,10620,1079,128,2.91643381,0.12363678,1035.29063,3008656476 +4,10621,1080,128,2.13702846,0.122805501,1042.29859,3008656476 +4,10622,1081,128,1.23644233,0.125072461,1023.40674,3008656476 +4,10623,1082,128,2.01622796,0.123413563,1037.16315,3008656476 +4,10624,1083,128,2.53258467,0.135802461,942.545511,3008656476 +4,10625,1084,128,2.4119966,0.136655139,936.664372,3008656476 +4,10626,1085,128,2.4381156,0.12295558,1041.02636,3008656476 +4,10627,1086,128,2.30565667,0.122848404,1041.93458,3008656476 +4,10628,1087,128,1.98059678,0.122224838,1047.25031,3008656476 +4,10629,1088,128,2.00638223,0.123561008,1035.92551,3008656476 +4,10630,1089,128,2.2048533,0.122335352,1046.30426,3008656476 +4,10631,1090,128,2.0673635,0.12273861,1042.86663,3008656476 +4,10632,1091,128,2.52231789,0.1342784,953.243411,3008656476 +4,10633,1092,128,1.88334119,0.122268839,1046.87344,3008656476 +4,10634,1093,128,2.6008594,0.13688805,935.070665,3008656476 +4,10635,1094,128,2.5489862,0.123071668,1040.04441,3008656476 +4,10636,1095,128,2.16335726,0.122833512,1042.0609,3008656476 +4,10637,1096,128,2.07669878,0.123464263,1036.73725,3008656476 +4,10638,1097,128,2.12529182,0.122753432,1042.7407,3008656476 +4,10639,1098,128,2.29473972,0.122959487,1040.99328,3008656476 +4,10640,1099,128,2.68076706,0.122004329,1049.1431,3008656476 +4,10641,1100,128,2.30699682,0.137102303,933.609408,3008656476 +4,10642,1101,128,2.4107492,0.140864678,908.6735,3008656476 +4,10643,1102,128,2.00973821,0.123753723,1034.31232,3008656476 +4,10644,1103,128,2.51258492,0.124024154,1032.05703,3008656476 +4,10645,1104,128,1.98591232,0.122851506,1041.90827,3008656476 +4,10646,1105,128,2.53944039,0.122763486,1042.65531,3008656476 +4,10647,1106,128,2.00287867,0.123673661,1034.98189,3008656476 +4,10648,1107,128,2.12439895,0.123390394,1037.3579,3008656476 +4,10649,1108,128,1.84019172,0.137308209,932.209377,3008656476 +4,10650,1109,128,1.67563164,0.137298669,932.27415,3008656476 +4,10651,1110,128,2.03966451,0.123399308,1037.28296,3008656476 +4,10652,1111,128,2.17186594,0.124361056,1029.26112,3008656476 +4,10653,1112,128,1.64733243,0.123165515,1039.25194,3008656476 +4,10654,1113,128,1.86162555,0.123120243,1039.63408,3008656476 +4,10655,1114,128,2.51760268,0.123031528,1040.38373,3008656476 +4,10656,1115,128,1.54755914,0.122142638,1047.9551,3008656476 +4,10657,1116,128,1.90009594,0.130714689,979.231952,3008656476 +4,10658,1117,128,1.60976005,0.121913735,1049.92272,3008656476 +4,10659,1118,128,2.18153715,0.137440019,931.315354,3008656476 +4,10660,1119,128,1.99436986,0.12396701,1032.53277,3008656476 +4,10661,1120,128,1.59088898,0.124008175,1032.19001,3008656476 +4,10662,1121,128,2.03876281,0.124153664,1030.98045,3008656476 +4,10663,1122,128,1.82453191,0.124822748,1025.45411,3008656476 +4,10664,1123,128,1.43438852,0.124524618,1027.9092,3008656476 +4,10665,1124,128,1.42731714,0.125382237,1020.87826,3008656476 +4,10666,1125,128,2.08790064,0.138004225,927.507835,3008656476 +4,10667,1126,128,1.72086084,0.136863975,935.235149,3008656476 +4,10668,1127,128,2.80538392,0.12486662,1025.09382,3008656476 +4,10669,1128,128,2.49804521,0.126036314,1015.58032,3008656476 +4,10670,1129,128,1.55661869,0.126001018,1015.86481,3008656476 +4,10671,1130,128,2.06369829,0.125870298,1016.91981,3008656476 +4,10672,1131,128,2.14782596,0.125710937,1018.20894,3008656476 +4,10673,1132,128,1.91086316,0.126386579,1012.76576,3008656476 +4,10674,1133,128,1.88783038,0.140341576,912.060443,3008656476 +4,10675,1134,128,2.65142918,0.140939436,908.191516,3008656476 +4,10676,1135,128,2.44818592,0.126012007,1015.77622,3008656476 +4,10677,1136,128,2.41448236,0.127794989,1001.60422,3008656476 +4,10678,1137,128,2.27725196,0.127971621,1000.22176,3008656476 +4,10679,1138,128,2.24221253,0.128253644,998.022325,3008656476 +4,10680,1139,128,1.87441874,0.128186092,998.548267,3008656476 +4,10681,1140,128,1.97172928,0.128078246,999.389077,3008656476 +4,10682,1141,128,2.20760798,0.142875985,895.881838,3008656476 +4,10683,1142,128,2.17898393,0.145087465,882.226456,3008656476 +4,10684,1143,128,1.94404471,0.129122031,991.310306,3008656476 +4,10685,1144,128,1.84157491,0.127582254,1003.27433,3008656476 +4,10686,1145,128,2.21664166,0.127743438,1002.00842,3008656476 +4,10687,1146,128,2.61197042,0.128347488,997.2926,3008656476 +4,10688,1147,128,2.38134623,0.12832079,997.500093,3008656476 +4,10689,1148,128,2.31675506,0.128095195,999.256842,3008656476 +4,10690,1149,128,2.2121973,0.142797124,896.376596,3008656476 +4,10691,1150,128,2.42226434,0.141345487,905.582504,3008656476 +4,10692,1151,128,2.09235215,0.127635187,1002.85825,3008656476 +4,10693,1152,128,2.58159375,0.127762703,1001.85733,3008656476 +4,10694,1153,128,2.37404752,0.131130356,976.127907,3008656476 +4,10695,1154,128,2.28727722,0.127685074,1002.46643,3008656476 +4,10696,1155,128,2.49367452,0.127947536,1000.41004,3008656476 +4,10697,1156,128,2.13584113,0.127427345,1004.49397,3008656476 +4,10698,1157,128,2.70960736,0.141457617,904.864671,3008656476 +4,10699,1158,128,1.96434951,0.14002876,914.097932,3008656476 +4,10700,1159,128,2.33761024,0.127802907,1001.54216,3008656476 +4,10701,1160,128,2.62746525,0.127999834,1000.0013,3008656476 +4,10702,1161,128,2.56101394,0.12773661,1002.06198,3008656476 +4,10703,1162,128,1.94456756,0.127371922,1004.93106,3008656476 +4,10704,1163,128,2.01838946,0.127466736,1004.18355,3008656476 +4,10705,1164,128,2.06211209,0.127586086,1003.24419,3008656476 +4,10706,1165,128,2.71274066,0.139121007,920.062345,3008656476 +4,10707,1166,128,2.34875584,0.138945725,921.223017,3008656476 +4,10708,1167,128,2.71583652,0.126734336,1009.98675,3008656476 +4,10709,1168,128,2.09709907,0.125916014,1016.5506,3008656476 +4,10710,1169,128,2.78413367,0.125808631,1017.41827,3008656476 +4,10711,1170,128,2.44168854,0.125805589,1017.44287,3008656476 +4,10712,1171,128,2.57559443,0.126389221,1012.74459,3008656476 +4,10713,1172,128,2.29864526,0.125285492,1021.66658,3008656476 +4,10714,1173,128,2.41522336,0.137586223,930.325706,3008656476 +4,10715,1174,128,2.71973062,0.126346825,1013.08442,3008656476 +4,10716,1175,128,2.57755756,0.128576772,995.514182,3008656476 +4,10717,1176,128,2.47718573,0.12593501,1016.39727,3008656476 +4,10718,1177,128,2.31429315,0.125705179,1018.25558,3008656476 +4,10719,1178,128,2.15511155,0.12597199,1016.0989,3008656476 +4,10720,1179,128,2.28043485,0.125799781,1017.48985,3008656476 +4,10721,1180,128,2.87364554,0.126354922,1013.0195,3008656476 +4,10722,1181,128,2.35215402,0.124861778,1025.13357,3008656476 +4,10723,1182,128,2.55239749,0.129919707,985.223897,3008656476 +4,10724,1183,128,1.82069445,0.138428674,924.663918,3008656476 +4,10725,1184,128,1.83488929,0.125511405,1019.82764,3008656476 +4,10726,1185,128,2.82802796,0.126542102,1011.52105,3008656476 +4,10727,1186,128,2.70009732,0.125497351,1019.94185,3008656476 +4,10728,1187,128,2.58690882,0.126004028,1015.84054,3008656476 +4,10729,1188,128,2.50955009,0.126070981,1015.30105,3008656476 +4,10730,1189,128,2.39202332,0.124790958,1025.71534,3008656476 +4,10731,1190,128,2.12608647,0.13904809,920.544827,3008656476 +4,10732,1191,128,1.68924212,0.138945078,921.227307,3008656476 +4,10733,1192,128,2.1839056,0.12559755,1019.12816,3008656476 +4,10734,1193,128,2.22258329,0.124056659,1031.78661,3008656476 +4,10735,1194,128,1.65146995,0.124091475,1031.49713,3008656476 +4,10736,1195,128,1.65040147,0.124731778,1026.202,3008656476 +4,10737,1196,128,1.5469687,0.123541485,1036.08921,3008656476 +4,10738,1197,128,2.1909821,0.123482711,1036.58236,3008656476 +4,10739,1198,128,1.88881707,0.135287782,946.131263,3008656476 +4,10740,1199,128,2.41301394,0.138418418,924.73243,3008656476 +4,10741,1200,128,2.32940531,0.122685886,1043.31479,3008656476 +4,10742,1201,128,2.83568001,0.122336609,1046.29351,3008656476 +4,10743,1202,128,2.41491413,0.122492216,1044.96436,3008656476 +4,10744,1203,128,2.07105756,0.11104094,1152.72799,3008656476 +4,10745,1204,128,2.02985573,0.122797469,1042.36676,3008656476 +4,10746,1205,128,2.32290983,0.122880821,1041.65971,3008656476 +4,10747,1206,128,2.34801173,0.135259837,946.326736,3008656476 +4,10748,1207,128,2.2737422,0.123128067,1039.56801,3008656476 +4,10749,1208,128,2.13598442,0.137774227,929.056201,3008656476 +4,10750,1209,128,2.10704803,0.12383231,1033.65592,3008656476 +4,10751,1210,128,2.03643703,0.123718254,1034.60885,3008656476 +4,10752,1211,128,2.56843281,0.123188876,1039.05486,3008656476 +4,10753,1212,128,2.19733906,0.123417866,1037.12699,3008656476 +4,10754,1213,128,2.00217843,0.122704295,1043.15827,3008656476 +4,10755,1214,128,2.58631897,0.123900419,1033.08771,3008656476 +4,10756,1215,128,2.57658505,0.137396596,931.609688,3008656476 +4,10757,1216,128,2.17417026,0.138193282,926.238947,3008656476 +4,10758,1217,128,2.41413546,0.122983754,1040.78788,3008656476 +4,10759,1218,128,2.15400863,0.122790273,1042.42785,3008656476 +4,10760,1219,128,2.59923196,0.123431504,1037.0124,3008656476 +4,10761,1220,128,1.78764343,0.123031635,1040.38283,3008656476 +4,10762,1221,128,2.1830585,0.122900555,1041.49245,3008656476 +4,10763,1222,128,2.11087346,0.123093466,1039.86023,3008656476 +4,10764,1223,128,2.09175348,0.13889697,921.546381,3008656476 +4,10765,1224,128,2.50482965,0.136089474,940.55768,3008656476 +4,10766,1225,128,2.65628529,0.122976002,1040.85348,3008656476 +4,10767,1226,128,2.19012237,0.124549947,1027.70016,3008656476 +4,10768,1227,128,2.52920794,0.123487041,1036.54601,3008656476 +4,10769,1228,128,2.55714989,0.124059511,1031.76289,3008656476 +4,10770,1229,128,2.36863351,0.12395068,1032.6688,3008656476 +4,10771,1230,128,2.27394414,0.124209686,1030.51545,3008656476 +4,10772,1231,128,1.9381001,0.138138656,926.605222,3008656476 +4,10773,1232,128,2.56490445,0.125723167,1018.10989,3008656476 +4,10774,1233,128,2.24454927,0.136527407,937.540695,3008656476 +4,10775,1234,128,2.13718891,0.126902552,1008.64796,3008656476 +4,10776,1235,128,2.41503835,0.126800907,1009.4565,3008656476 +4,10777,1236,128,2.27982736,0.127616785,1003.00286,3008656476 +4,10778,1237,128,2.15590525,0.12805127,999.599613,3008656476 +4,10779,1238,128,2.13070965,0.127490587,1003.99569,3008656476 +4,10780,1239,128,2.36901116,0.132520075,965.891394,3008656476 +4,10781,1240,128,2.46846747,0.128729817,994.33063,3008656476 +4,10782,1241,128,1.48736322,0.141138904,906.907992,3008656476 +4,10783,1242,128,2.25673175,0.123092729,1039.86646,3008656476 +4,10784,1243,128,1.43300736,0.128258349,997.985714,3008656476 +4,10785,1244,128,2.2331965,0.128287357,997.760052,3008656476 +4,10786,1245,128,1.82959926,0.127683871,1002.47587,3008656476 +4,10787,1246,128,1.9137677,0.127493483,1003.97289,3008656476 +4,10788,1247,128,1.56985521,0.128045025,999.648366,3008656476 +4,10789,1248,128,0.930493176,0.140068983,913.835435,3008656476 +4,10790,1249,128,1.16770387,0.14793801,865.227266,3008656476 +4,10791,1250,128,1.64055133,0.127562072,1003.43306,3008656476 +4,10792,1251,128,1.29298413,0.127958817,1000.32185,3008656476 +4,10793,1252,128,1.74496579,0.127708995,1002.27866,3008656476 +4,10794,1253,128,1.66966343,0.128048562,999.620753,3008656476 +4,10795,1254,128,1.46934927,0.128162821,998.729577,3008656476 +4,10796,1255,128,1.26654375,0.128119055,999.070747,3008656476 +4,10797,1256,128,1.55484092,0.140388703,911.754274,3008656476 +4,10798,1257,128,1.9067812,0.141424677,905.075428,3008656476 +4,10799,1258,128,1.21154332,0.127925616,1000.58146,3008656476 +4,10800,1259,128,2.30045772,0.127580655,1003.2869,3008656476 +4,10801,1260,128,2.54516602,0.127703517,1002.32165,3008656476 +4,10802,1261,128,2.19674563,0.127498357,1003.93451,3008656476 +4,10803,1262,128,2.66576552,0.127636413,1002.84861,3008656476 +4,10804,1263,128,2.57524276,0.127406923,1004.65498,3008656476 +4,10805,1264,128,2.06545353,0.143353603,892.896986,3008656476 +4,10806,1265,128,2.23221564,0.139456522,917.84879,3008656476 +4,10807,1266,128,1.95752966,0.126300756,1013.45395,3008656476 +4,10808,1267,128,2.31808019,0.125977727,1016.05262,3008656476 +4,10809,1268,128,2.17205811,0.125885647,1016.79582,3008656476 +4,10810,1269,128,2.24603152,0.125890132,1016.7596,3008656476 +4,10811,1270,128,1.63341928,0.125880949,1016.83377,3008656476 +4,10812,1271,128,1.94812953,0.12519755,1022.38422,3008656476 +4,10813,1272,128,1.90353537,0.140940821,908.182591,3008656476 +4,10814,1273,128,2.59805131,0.13857156,923.710464,3008656476 +4,10815,1274,128,1.78516889,0.125179488,1022.53174,3008656476 +4,10816,1275,128,2.29462123,0.125226236,1022.15002,3008656476 +4,10817,1276,128,2.37660551,0.124987027,1024.10629,3008656476 +4,10818,1277,128,1.69764948,0.124526458,1027.89401,3008656476 +4,10819,1278,128,2.08442998,0.123276783,1038.31392,3008656476 +4,10820,1279,128,2.47309136,0.124772042,1025.87084,3008656476 +4,10821,1280,128,2.2119,0.138700916,922.848988,3008656476 +4,10822,1281,128,2.28524446,0.138669438,923.058475,3008656476 +4,10823,1282,128,2.32260251,0.123073125,1040.03209,3008656476 +4,10824,1283,128,1.60375392,0.123239863,1038.62498,3008656476 +4,10825,1284,128,2.16241097,0.12304051,1040.30778,3008656476 +4,10826,1285,128,2.5332067,0.122108904,1048.24461,3008656476 +4,10827,1286,128,2.07593346,0.123079426,1039.97885,3008656476 +4,10828,1287,128,2.256073,0.122112702,1048.212,3008656476 +4,10829,1288,128,1.83656037,0.135385743,945.446671,3008656476 +4,10830,1289,128,1.82671177,0.121764396,1051.2104,3008656476 +4,10831,1290,128,2.19037771,0.135395004,945.382002,3008656476 +4,10832,1291,128,2.1885941,0.122785742,1042.46632,3008656476 +4,10833,1292,128,2.30986786,0.123577015,1035.79132,3008656476 +4,10834,1293,128,1.74677134,0.123390226,1037.35931,3008656476 +4,10835,1294,128,1.9094758,0.122477494,1045.08997,3008656476 +4,10836,1295,128,1.75557542,0.12290869,1041.42352,3008656476 +4,10837,1296,128,1.92672145,0.12305343,1040.19855,3008656476 +4,10838,1297,128,2.09400821,0.136119891,940.347506,3008656476 +4,10839,1298,128,2.18518043,0.137125114,933.454101,3008656476 +4,10840,1299,128,2.36488271,0.122860445,1041.83246,3008656476 +4,10841,1300,128,2.15490937,0.123165744,1039.25,3008656476 +4,10842,1301,128,1.97934353,0.123699452,1034.7661,3008656476 +4,10843,1302,128,1.98837662,0.123097774,1039.82384,3008656476 +4,10844,1303,128,1.89239192,0.122976717,1040.84743,3008656476 +4,10845,1304,128,1.97735596,0.12326155,1038.44224,3008656476 +4,10846,1305,128,2.46876025,0.140724471,909.578832,3008656476 +4,10847,1306,128,2.3350997,0.134278775,953.240749,3008656476 +4,10848,1307,128,2.29947805,0.124029508,1032.01248,3008656476 +4,10849,1308,128,1.66117465,0.123234831,1038.66739,3008656476 +4,10850,1309,128,2.40448904,0.122531739,1044.6273,3008656476 +4,10851,1310,128,2.63883543,0.123273531,1038.34131,3008656476 +4,10852,1311,128,2.14947438,0.122875951,1041.70099,3008656476 +4,10853,1312,128,1.85928047,0.12323081,1038.70128,3008656476 +4,10854,1313,128,2.28340387,0.136815283,935.567995,3008656476 +4,10855,1314,128,2.13009715,0.123269578,1038.37461,3008656476 +4,10856,1315,128,1.77452862,0.136521964,937.578074,3008656476 +4,10857,1316,128,2.3386538,0.12232795,1046.36757,3008656476 +4,10858,1317,128,2.14822268,0.123441616,1036.92745,3008656476 +4,10859,1318,128,1.46104062,0.123438743,1036.95158,3008656476 +4,10860,1319,128,2.13460112,0.124315249,1029.64038,3008656476 +4,10861,1320,128,2.31086135,0.123989793,1032.34304,3008656476 +4,10862,1321,128,2.34726191,0.12386891,1033.3505,3008656476 +4,10863,1322,128,2.5655973,0.142138823,900.52807,3008656476 +4,10864,1323,128,1.98021829,0.138907842,921.474253,3008656476 +4,10865,1324,128,1.46059358,0.124616784,1027.14896,3008656476 +4,10866,1325,128,1.86057603,0.124455582,1028.47938,3008656476 +4,10867,1326,128,2.39945984,0.125982714,1016.0124,3008656476 +4,10868,1327,128,2.39884281,0.125284543,1021.67432,3008656476 +4,10869,1328,128,2.48483014,0.125158822,1022.70058,3008656476 +4,10870,1329,128,1.99833405,0.125669195,1018.54715,3008656476 +4,10871,1330,128,1.93255639,0.141802312,902.665113,3008656476 +4,10872,1331,128,1.75512338,0.139919407,914.812339,3008656476 +4,10873,1332,128,2.16795015,0.126672432,1010.48032,3008656476 +4,10874,1333,128,2.15822816,0.126578956,1011.22654,3008656476 +4,10875,1334,128,2.3804059,0.127952218,1000.37344,3008656476 +4,10876,1335,128,1.79898202,0.127854606,1001.13718,3008656476 +4,10877,1336,128,2.22270846,0.130476302,981.021059,3008656476 +4,10878,1337,128,1.75879204,0.130926354,977.648854,3008656476 +4,10879,1338,128,1.87621748,0.140194027,913.020353,3008656476 +4,10880,1339,128,2.11583376,0.142446571,898.582529,3008656476 +4,10881,1340,128,1.85482383,0.129313488,989.842606,3008656476 +4,10882,1341,128,2.0156095,0.129890468,985.445676,3008656476 +4,10883,1342,128,2.18136859,0.131041237,976.791756,3008656476 +4,10884,1343,128,1.74233425,0.129040537,991.936356,3008656476 +4,10885,1344,128,2.24935055,0.131234816,975.350931,3008656476 +4,10886,1345,128,2.12639809,0.127349627,1005.10699,3008656476 +4,10887,1346,128,2.1970048,0.141645009,903.667562,3008656476 +4,10888,1347,128,1.87280142,0.141424418,905.077085,3008656476 +4,10889,1348,128,1.58487582,0.128004859,999.962041,3008656476 +4,10890,1349,128,2.42221928,0.127826999,1001.3534,3008656476 +4,10891,1350,128,2.24256325,0.129973029,984.819704,3008656476 +4,10892,1351,128,2.23631072,0.130580849,980.235624,3008656476 +4,10893,1352,128,1.77944636,0.127318035,1005.35639,3008656476 +4,10894,1353,128,1.6085304,0.127867771,1001.03411,3008656476 +4,10895,1354,128,2.36593056,0.141897508,902.059534,3008656476 +4,10896,1355,128,1.83617699,0.140481087,911.154681,3008656476 +4,10897,1356,128,1.90208936,0.127707201,1002.29274,3008656476 +4,10898,1357,128,2.22121859,0.127604621,1003.09847,3008656476 +4,10899,1358,128,2.11449337,0.128040103,999.686793,3008656476 +4,10900,1359,128,1.8824389,0.127389889,1004.78932,3008656476 +4,10901,1360,128,1.63607788,0.129843511,985.802055,3008656476 +4,10902,1361,128,2.2418828,0.127713976,1002.23957,3008656476 +4,10903,1362,128,2.3488555,0.143012422,895.027147,3008656476 +4,10904,1363,128,2.0460155,0.142587099,897.696923,3008656476 +4,10905,1364,128,1.70143366,0.127758626,1001.8893,3008656476 +4,10906,1365,128,2.02513671,0.128326398,997.456502,3008656476 +4,10907,1366,128,2.3105824,0.127801809,1001.55077,3008656476 +4,10908,1367,128,2.34618425,0.128317373,997.526656,3008656476 +4,10909,1368,128,2.24132442,0.127627223,1002.92083,3008656476 +4,10910,1369,128,1.98581004,0.127927316,1000.56817,3008656476 +4,10911,1370,128,1.88092661,0.143721449,890.611672,3008656476 +4,10912,1371,128,2.40947509,0.141098436,907.168099,3008656476 +4,10913,1372,128,2.0910089,0.127468282,1004.17137,3008656476 +4,10914,1373,128,2.36741233,0.127601586,1003.12233,3008656476 +4,10915,1374,128,2.57195568,0.127741257,1002.02552,3008656476 +4,10916,1375,128,2.57469535,0.128036587,999.714246,3008656476 +4,10917,1376,128,2.7596736,0.128061492,999.519824,3008656476 +4,10918,1377,128,2.30969357,0.127602858,1003.11233,3008656476 +4,10919,1378,128,2.12135124,0.140918144,908.328739,3008656476 +4,10920,1379,128,2.05214953,0.142168459,900.340349,3008656476 +4,10921,1380,128,2.48873472,0.125750121,1017.89166,3008656476 +4,10922,1381,128,1.88444304,0.12634847,1013.07123,3008656476 +4,10923,1382,128,2.02533078,0.125636516,1018.81208,3008656476 +4,10924,1383,128,2.01457,0.126340865,1013.13221,3008656476 +4,10925,1384,128,1.66035569,0.125902843,1016.65695,3008656476 +4,10926,1385,128,2.31606197,0.126463873,1012.14677,3008656476 +4,10927,1386,128,1.53436589,0.14077317,909.264173,3008656476 +4,10928,1387,128,1.87466228,0.137296861,932.286427,3008656476 +4,10929,1388,128,2.50018573,0.125502327,1019.90141,3008656476 +4,10930,1389,128,1.98481631,0.124148175,1031.02603,3008656476 +4,10931,1390,128,1.54120648,0.124212614,1030.49115,3008656476 +4,10932,1391,128,2.02961373,0.12418085,1030.75474,3008656476 +4,10933,1392,128,2.08076024,0.123406214,1037.22492,3008656476 +4,10934,1393,128,2.19603062,0.124709884,1026.38216,3008656476 +4,10935,1394,128,2.48583126,0.137824904,928.714596,3008656476 +4,10936,1395,128,2.01465154,0.123487511,1036.54207,3008656476 +4,10937,1396,128,1.99571812,0.133056896,961.994484,3008656476 +4,10938,1397,128,2.41352963,0.122854261,1041.8849,3008656476 +4,10939,1398,128,1.89237416,0.123202838,1038.93711,3008656476 +4,10940,1399,128,2.40111446,0.123681859,1034.91329,3008656476 +4,10941,1400,128,2.59808874,0.122497678,1044.91777,3008656476 +4,10942,1401,128,2.63827133,0.122511832,1044.79704,3008656476 +4,10943,1402,128,2.00391221,0.122628511,1043.80294,3008656476 +4,10944,1403,128,2.18257785,0.13535645,945.651279,3008656476 +4,10945,1404,128,1.84474051,0.137053025,933.945092,3008656476 +4,10946,1405,128,2.28233147,0.122440569,1045.40514,3008656476 +4,10947,1406,128,2.66358519,0.122686105,1043.31293,3008656476 +4,10948,1407,128,2.48196268,0.122048141,1048.76649,3008656476 +4,10949,1408,128,2.317523,0.123016791,1040.50836,3008656476 +4,10950,1409,128,2.48665142,0.123154214,1039.3473,3008656476 +4,10951,1410,128,2.39316273,0.122603413,1044.01661,3008656476 +4,10952,1411,128,2.81006551,0.141540203,904.336699,3008656476 +4,10953,1412,128,2.41116691,0.138677335,923.005912,3008656476 +4,10954,1413,128,2.50502491,0.124684667,1026.58974,3008656476 +4,10955,1414,128,2.61076665,0.12411683,1031.28641,3008656476 +4,10956,1415,128,2.66277266,0.123052047,1040.21025,3008656476 +4,10957,1416,128,2.25223327,0.122775241,1042.55548,3008656476 +4,10958,1417,128,2.33971357,0.123383765,1037.41363,3008656476 +4,10959,1418,128,2.57891965,0.123537235,1036.12486,3008656476 +4,10960,1419,128,2.61048341,0.134854334,949.172312,3008656476 +4,10961,1420,128,2.49264073,0.116778211,1096.09489,3008656476 +4,10962,1421,128,2.48514652,0.139074863,920.367615,3008656476 +4,10963,1422,128,2.88543797,0.123619914,1035.43188,3008656476 +4,10964,1423,128,2.34510541,0.123086206,1039.92157,3008656476 +4,10965,1424,128,2.66603065,0.12330409,1038.08398,3008656476 +4,10966,1425,128,3.04074693,0.123095426,1039.84367,3008656476 +4,10967,1426,128,2.20805454,0.12348497,1036.5634,3008656476 +4,10968,1427,128,2.51241136,0.125168953,1022.61781,3008656476 +4,10969,1428,128,2.39290571,0.140773728,909.260569,3008656476 +4,10970,1429,128,3.10991073,0.139342058,918.602767,3008656476 +4,10971,1430,128,2.85172415,0.123301132,1038.10888,3008656476 +4,10972,1431,128,2.65678668,0.12358043,1035.7627,3008656476 +4,10973,1432,128,2.85400295,0.123844841,1033.55133,3008656476 +4,10974,1433,128,2.19584155,0.123409923,1037.19374,3008656476 +4,10975,1434,128,2.20775366,0.123319627,1037.95319,3008656476 +4,10976,1435,128,2.80503774,0.123609502,1035.5191,3008656476 +4,10977,1436,128,1.84081244,0.135446214,945.024569,3008656476 +4,10978,1437,128,2.64658093,0.13573625,943.005277,3008656476 +4,10979,1438,128,2.58077145,0.123998971,1032.26663,3008656476 +4,10980,1439,128,2.58111,0.123630737,1035.34124,3008656476 +4,10981,1440,128,2.33098531,0.124735424,1026.172,3008656476 +4,10982,1441,128,2.68406677,0.123525197,1036.22583,3008656476 +4,10983,1442,128,2.59868646,0.124088422,1031.52251,3008656476 +4,10984,1443,128,1.93310821,0.124377586,1029.12433,3008656476 +4,10985,1444,128,2.74866033,0.130966324,977.350483,3008656476 +4,10986,1445,128,2.65283203,0.120260442,1064.35664,3008656476 +4,10987,1446,128,2.94739532,0.139246082,919.235918,3008656476 +4,10988,1447,128,2.61020827,0.12457191,1027.51896,3008656476 +4,10989,1448,128,2.25540042,0.125543414,1019.56762,3008656476 +4,10990,1449,128,2.86245346,0.125433859,1020.45812,3008656476 +4,10991,1450,128,2.19616699,0.125091251,1023.25302,3008656476 +4,10992,1451,128,2.35326934,0.124474418,1028.32375,3008656476 +4,10993,1452,128,2.47640181,0.124240418,1030.26054,3008656476 +4,10994,1453,128,2.28395605,0.13987767,915.085303,3008656476 +4,10995,1454,128,2.28821397,0.139695447,916.278968,3008656476 +4,10996,1455,128,1.68189609,0.125862532,1016.98256,3008656476 +4,10997,1456,128,2.61273956,0.124889147,1024.90891,3008656476 +4,10998,1457,128,2.51291108,0.12549879,1019.93015,3008656476 +4,10999,1458,128,2.74983001,0.127317885,1005.35757,3008656476 +4,11000,1459,128,2.87582493,0.125946855,1016.30168,3008656476 +4,11001,1460,128,2.52745366,0.126841617,1009.13252,3008656476 +4,11002,1461,128,1.6609093,0.143625351,891.20757,3008656476 +4,11003,1462,128,1.7956655,0.144586819,885.281251,3008656476 +4,11004,1463,128,2.4360373,0.131369747,974.34914,3008656476 +4,11005,1464,128,1.8989408,0.127144024,1006.73233,3008656476 +4,11006,1465,128,2.26920819,0.128004433,999.965368,3008656476 +4,11007,1466,128,3.09833527,0.130470474,981.064881,3008656476 +4,11008,1467,128,2.57062244,0.127081753,1007.22564,3008656476 +4,11009,1468,128,2.22491336,0.127882379,1000.91976,3008656476 +4,11010,1469,128,2.91351223,0.142128252,900.595048,3008656476 +4,11011,1470,128,2.3444705,0.139769297,915.794833,3008656476 +4,11012,1471,128,2.92251801,0.125490236,1019.99968,3008656476 +4,11013,1472,128,2.59965229,0.124920189,1024.65423,3008656476 +4,11014,1473,128,2.89419746,0.125346683,1021.16783,3008656476 +4,11015,1474,128,2.47698069,0.126076826,1015.25398,3008656476 +4,11016,1475,128,2.48511243,0.124891632,1024.88852,3008656476 +4,11017,1476,128,2.46258688,0.126373716,1012.86885,3008656476 +4,11018,1477,128,2.81459761,0.138538861,923.928485,3008656476 +4,11019,1478,128,2.66617942,0.137179816,933.081876,3008656476 +4,11020,1479,128,2.60559058,0.125944473,1016.3209,3008656476 +4,11021,1480,128,2.5028801,0.125287292,1021.6519,3008656476 +4,11022,1481,128,2.82105064,0.125099769,1023.18334,3008656476 +4,11023,1482,128,2.48047781,0.124486088,1028.22735,3008656476 +4,11024,1483,128,2.43227124,0.124347473,1029.37355,3008656476 +4,11025,1484,128,2.42123032,0.124475138,1028.3178,3008656476 +4,11026,1485,128,2.70289135,0.140279251,912.465665,3008656476 +4,11027,1486,128,2.99339247,0.136071024,940.685212,3008656476 +4,11028,1487,128,2.76492691,0.119494968,1071.17481,3008656476 +4,11029,1488,128,2.53076005,0.122148052,1047.90865,3008656476 +4,11030,1489,128,2.12882853,0.122831298,1042.07968,3008656476 +4,11031,1490,128,2.5698173,0.123855729,1033.46047,3008656476 +4,11032,1491,128,2.50935555,0.12307972,1039.97637,3008656476 +4,11033,1492,128,3.03335524,0.122089199,1048.41379,3008656476 +4,11034,1493,128,2.42232919,0.122579485,1044.22041,3008656476 +4,11035,1494,128,1.88029456,0.135234062,946.507101,3008656476 +4,11036,1495,128,2.32830548,0.137933285,927.984859,3008656476 +4,11037,1496,128,2.43847418,0.122314208,1046.48513,3008656476 +4,11038,1497,128,2.42911744,0.122607217,1043.98422,3008656476 +4,11039,1498,128,2.37498093,0.12313178,1039.53667,3008656476 +4,11040,1499,128,2.24736905,0.123338156,1037.79726,3008656476 +4,11041,1500,128,2.68995595,0.122751079,1042.76069,3008656476 +4,11042,1501,128,2.89968657,0.123018447,1040.49436,3008656476 +4,11043,1502,128,2.36666155,0.140567308,910.595798,3008656476 +4,11044,1503,128,2.66167116,0.137889325,928.280706,3008656476 +4,11045,1504,128,2.46153975,0.123874119,1033.30705,3008656476 +4,11046,1505,128,2.61605573,0.123290866,1038.19532,3008656476 +4,11047,1506,128,2.2495532,0.124064749,1031.71933,3008656476 +4,11048,1507,128,2.52749634,0.123630206,1035.34568,3008656476 +4,11049,1508,128,2.41751719,0.123629599,1035.35077,3008656476 +4,11050,1509,128,2.6796751,0.124464155,1028.40854,3008656476 +4,11051,1510,128,3.15826869,0.13738821,931.666553,3008656476 +4,11052,1511,128,2.30550647,0.123528615,1036.19716,3008656476 +4,11053,1512,128,2.58456516,0.127140499,1006.76025,3008656476 +4,11054,1513,128,2.79359198,0.122945748,1041.10961,3008656476 +4,11055,1514,128,3.15475869,0.123039677,1040.31482,3008656476 +4,11056,1515,128,2.39859438,0.123573863,1035.81774,3008656476 +4,11057,1516,128,2.73428464,0.124859776,1025.15001,3008656476 +4,11058,1517,128,2.78081679,0.123728718,1034.52135,3008656476 +4,11059,1518,128,2.82913423,0.122781723,1042.50044,3008656476 +4,11060,1519,128,2.29705071,0.138969482,921.065533,3008656476 +4,11061,1520,128,2.86538529,0.140393993,911.71992,3008656476 +4,11062,1521,128,2.26971006,0.123481008,1036.59666,3008656476 +4,11063,1522,128,2.92563462,0.122922396,1041.3074,3008656476 +4,11064,1523,128,3.21976995,0.123085899,1039.92416,3008656476 +4,11065,1524,128,3.07955122,0.122679319,1043.37064,3008656476 +4,11066,1525,128,2.37119555,0.122927361,1041.26534,3008656476 +4,11067,1526,128,1.96055973,0.122266989,1046.88928,3008656476 +4,11068,1527,128,2.12862873,0.137175647,933.110233,3008656476 +4,11069,1528,128,2.57117653,0.137160339,933.214375,3008656476 +4,11070,1529,128,3.00618958,0.123475123,1036.64606,3008656476 +4,11071,1530,128,2.90369511,0.145607095,879.078042,3008656476 +4,11072,1531,128,3.37797928,0.153005887,836.569118,3008656476 +4,11073,1532,128,3.15256596,0.122619963,1043.8757,3008656476 +4,11074,1533,128,2.77959991,0.123734165,1034.47581,3008656476 +4,11075,1534,128,2.88441086,0.12361897,1035.43979,3008656476 +4,11076,1535,128,2.16907287,0.138762679,922.43823,3008656476 +4,11077,1536,128,2.53023195,0.136094522,940.522793,3008656476 +4,11078,1537,128,2.4205339,0.124559541,1027.621,3008656476 +4,11079,1538,128,2.81570458,0.124662188,1026.77485,3008656476 +4,11080,1539,128,2.38324022,0.125418652,1020.58185,3008656476 +4,11081,1540,128,3.16262102,0.124703968,1026.43085,3008656476 +4,11082,1541,128,2.89382243,0.124974533,1024.20867,3008656476 +4,11083,1542,128,3.00792861,0.12494697,1024.43461,3008656476 +4,11084,1543,128,2.73954535,0.137744751,929.25501,3008656476 +4,11085,1544,128,3.01333427,0.137300781,932.25981,3008656476 +4,11086,1545,128,2.5578444,0.125378307,1020.91026,3008656476 +4,11087,1546,128,2.39988995,0.125413475,1020.62398,3008656476 +4,11088,1547,128,2.59576964,0.125986886,1015.97876,3008656476 +4,11089,1548,128,2.4987464,0.12759264,1003.19266,3008656476 +4,11090,1549,128,2.87593484,0.127246094,1005.92479,3008656476 +4,11091,1550,128,2.66082716,0.128038087,999.702534,3008656476 +4,11092,1551,128,2.12356615,0.140192901,913.027686,3008656476 +4,11093,1552,128,2.56234097,0.127815325,1001.44486,3008656476 +4,11094,1553,128,3.45776582,0.132302575,967.47928,3008656476 +4,11095,1554,128,3.0913403,0.126931588,1008.41723,3008656476 +4,11096,1555,128,2.4394598,0.131920735,970.279615,3008656476 +4,11097,1556,128,2.80869436,0.127480873,1004.0722,3008656476 +4,11098,1557,128,3.03671384,0.130911176,977.762204,3008656476 +4,11099,1558,128,2.66692019,0.131811077,971.086823,3008656476 +4,11100,1559,128,2.38645816,0.145983049,876.814129,3008656476 +4,11101,1560,128,2.67068291,0.128392227,996.945088,3008656476 +4,11102,1561,128,2.75884438,0.133718451,957.235139,3008656476 +4,11103,1562,128,3.28510046,0.127637325,1002.84145,3008656476 +4,11104,1563,128,3.24858856,0.127629664,1002.90165,3008656476 +4,11105,1564,128,2.68997049,0.12726877,1005.74556,3008656476 +4,11106,1565,128,2.71075916,0.126963161,1008.16646,3008656476 +4,11107,1566,128,2.12187219,0.127601606,1003.12217,3008656476 +4,11108,1567,128,1.85929704,0.127637911,1002.83685,3008656476 +4,11109,1568,128,1.59133887,0.13389747,955.955329,3008656476 +4,11110,1569,128,2.1158886,0.140925025,908.284387,3008656476 +4,11111,1570,128,2.33210707,0.128079373,999.380283,3008656476 +4,11112,1571,128,2.59057713,0.127790197,1001.64178,3008656476 +4,11113,1572,128,2.03592253,0.126723577,1010.0725,3008656476 +4,11114,1573,128,2.49396157,0.130639506,979.795499,3008656476 +4,11115,1574,128,2.89176273,0.129419679,989.030424,3008656476 +4,11116,1575,128,3.02228069,0.128841556,993.468288,3008656476 +4,11117,1576,128,2.5903666,0.137506875,930.862548,3008656476 +4,11118,1577,128,2.68249536,0.142158934,900.400674,3008656476 +4,11119,1578,128,2.42596936,0.125426575,1020.51738,3008656476 +4,11120,1579,128,2.66206264,0.125932126,1016.42054,3008656476 +4,11121,1580,128,2.96382141,0.125812671,1017.3856,3008656476 +4,11122,1581,128,2.44388556,0.126388729,1012.74853,3008656476 +4,11123,1582,128,2.31246758,0.125601682,1019.09463,3008656476 +4,11124,1583,128,2.36541367,0.12539304,1020.79031,3008656476 +4,11125,1584,128,2.85337281,0.138425652,924.684104,3008656476 +4,11126,1585,128,2.80710125,0.139248442,919.220339,3008656476 +4,11127,1586,128,2.91530943,0.124377511,1029.12495,3008656476 +4,11128,1587,128,2.38141632,0.125177666,1022.54663,3008656476 +4,11129,1588,128,2.42359161,0.125434338,1020.45422,3008656476 +4,11130,1589,128,2.79199791,0.126258415,1013.79381,3008656476 +4,11131,1590,128,2.30044842,0.124506939,1028.05515,3008656476 +4,11132,1591,128,2.24853396,0.123279106,1038.29436,3008656476 +4,11133,1592,128,2.6903038,0.136067661,940.708461,3008656476 +4,11134,1593,128,2.81882286,0.136900941,934.982616,3008656476 +4,11135,1594,128,2.61855316,0.123694963,1034.80366,3008656476 +4,11136,1595,128,2.18900299,0.123772826,1034.15268,3008656476 +4,11137,1596,128,2.33714008,0.12381008,1033.84151,3008656476 +4,11138,1597,128,2.19805121,0.123283225,1038.25967,3008656476 +4,11139,1598,128,2.50401354,0.123271905,1038.35501,3008656476 +4,11140,1599,128,2.25560832,0.123503826,1036.40514,3008656476 +4,11141,1600,128,1.88004291,0.139611932,916.82708,3008656476 +4,11142,1601,128,2.37149429,0.122605048,1044.00269,3008656476 +4,11143,1602,128,2.25358653,0.127843298,1001.22573,3008656476 +4,11144,1603,128,2.50657034,0.122356448,1046.12386,3008656476 +4,11145,1604,128,1.95592451,0.123214184,1038.84144,3008656476 +4,11146,1605,128,1.80321348,0.122753703,1042.7384,3008656476 +4,11147,1606,128,1.64312434,0.123304482,1038.08068,3008656476 +4,11148,1607,128,2.74581838,0.122497336,1044.92068,3008656476 +4,11149,1608,128,2.31274676,0.122361252,1046.08279,3008656476 +4,11150,1609,128,2.43622303,0.13799082,927.597937,3008656476 +4,11151,1610,128,2.79347181,0.137565553,930.465492,3008656476 +4,11152,1611,128,2.85856152,0.122229098,1047.21381,3008656476 +4,11153,1612,128,2.97130346,0.123099862,1039.8062,3008656476 +4,11154,1613,128,2.46144915,0.123065366,1040.09767,3008656476 +4,11155,1614,128,2.41109037,0.123372941,1037.50465,3008656476 +4,11156,1615,128,2.43313813,0.123039003,1040.32052,3008656476 +4,11157,1616,128,2.34336829,0.122950276,1041.07127,3008656476 +4,11158,1617,128,2.73007464,0.142706697,896.944591,3008656476 +4,11159,1618,128,1.70575881,0.137376535,931.745731,3008656476 +4,11160,1619,128,2.925349,0.123994244,1032.30598,3008656476 +4,11161,1620,128,3.37133646,0.124006269,1032.20588,3008656476 +4,11162,1621,128,2.72060466,0.123535972,1036.13545,3008656476 +4,11163,1622,128,2.4336772,0.1229522,1041.05498,3008656476 +4,11164,1623,128,2.78171277,0.123393287,1037.33358,3008656476 +4,11165,1624,128,2.69287181,0.123079091,1039.98168,3008656476 +4,11166,1625,128,2.32478905,0.136672009,936.548756,3008656476 +4,11167,1626,128,2.81370378,0.123237945,1038.64114,3008656476 +4,11168,1627,128,2.74103665,0.132960483,962.69205,3008656476 +4,11169,1628,128,2.43708897,0.123470139,1036.68791,3008656476 +4,11170,1629,128,2.14629006,0.123041387,1040.30037,3008656476 +4,11171,1630,128,2.74859619,0.122727759,1042.95883,3008656476 +4,11172,1631,128,2.54715061,0.122840595,1042.00081,3008656476 +4,11173,1632,128,2.62525415,0.123328893,1037.8752,3008656476 +4,11174,1633,128,2.46269822,0.124168325,1030.85872,3008656476 +4,11175,1634,128,2.63554144,0.140993594,907.842664,3008656476 +4,11176,1635,128,2.43743467,0.137503359,930.88635,3008656476 +4,11177,1636,128,2.24543929,0.12465671,1026.81998,3008656476 +4,11178,1637,128,2.74446011,0.125421228,1020.56089,3008656476 +4,11179,1638,128,2.6671555,0.125729861,1018.05569,3008656476 +4,11180,1639,128,2.99506974,0.125727113,1018.07794,3008656476 +4,11181,1640,128,2.19685841,0.125484194,1020.04879,3008656476 +4,11182,1641,128,1.90532446,0.124877025,1025.0084,3008656476 +4,11183,1642,128,2.77858567,0.139498759,917.570887,3008656476 +4,11184,1643,128,2.08198833,0.140085232,913.729436,3008656476 +4,11185,1644,128,2.21448421,0.125306816,1021.49272,3008656476 +4,11186,1645,128,1.72315967,0.126503627,1011.8287,3008656476 +4,11187,1646,128,2.76763153,0.126332149,1013.20211,3008656476 +4,11188,1647,128,2.52391219,0.12658795,1011.1547,3008656476 +4,11189,1648,128,2.13867998,0.126916515,1008.53699,3008656476 +4,11190,1649,128,1.95351124,0.127773366,1001.77372,3008656476 +4,11191,1650,128,2.15791368,0.140258693,912.599407,3008656476 +4,11192,1651,128,2.15445375,0.141279496,906.005497,3008656476 +4,11193,1652,128,2.32614279,0.125543129,1019.56994,3008656476 +4,11194,1653,128,2.02596307,0.125902026,1016.66354,3008656476 +4,11195,1654,128,2.08924747,0.125928101,1016.45303,3008656476 +4,11196,1655,128,2.28111744,0.125910311,1016.59665,3008656476 +4,11197,1656,128,2.48339987,0.125669139,1018.5476,3008656476 +4,11198,1657,128,2.66447783,0.125172901,1022.58555,3008656476 +4,11199,1658,128,2.77977014,0.139411152,918.147495,3008656476 +4,11200,1659,128,2.49921536,0.135839395,942.289238,3008656476 +4,11201,1660,128,1.95069182,0.120579652,1061.53897,3008656476 +4,11202,1661,128,2.11036277,0.124277343,1029.95443,3008656476 +4,11203,1662,128,2.54150748,0.124554196,1027.6651,3008656476 +4,11204,1663,128,2.67370653,0.123689881,1034.84617,3008656476 +4,11205,1664,128,2.74754477,0.123910576,1033.00303,3008656476 +4,11206,1665,128,2.43247509,0.123402506,1037.25608,3008656476 +4,11207,1666,128,2.7063899,0.123764595,1034.22146,3008656476 +4,11208,1667,128,2.70900846,0.1335523,958.426025,3008656476 +4,11209,1668,128,2.93042874,0.139073679,920.375451,3008656476 +4,11210,1669,128,2.70489097,0.123436987,1036.96633,3008656476 +4,11211,1670,128,2.55995464,0.124358049,1029.28601,3008656476 +4,11212,1671,128,1.88380337,0.123493058,1036.49551,3008656476 +4,11213,1672,128,2.68689752,0.123898911,1033.10028,3008656476 +4,11214,1673,128,2.71983242,0.123666788,1035.03942,3008656476 +4,11215,1674,128,2.6540277,0.122915199,1041.36837,3008656476 +4,11216,1675,128,2.42829156,0.134974878,948.324621,3008656476 +4,11217,1676,128,2.58985162,0.136415156,938.312162,3008656476 +4,11218,1677,128,3.21551776,0.123339763,1037.78374,3008656476 +4,11219,1678,128,2.87813354,0.122877644,1041.68664,3008656476 +4,11220,1679,128,2.91784477,0.122856237,1041.86815,3008656476 +4,11221,1680,128,2.70614052,0.122050374,1048.7473,3008656476 +4,11222,1681,128,2.89227581,0.122991146,1040.72532,3008656476 +4,11223,1682,128,2.75106645,0.122916246,1041.3595,3008656476 +4,11224,1683,128,2.7516737,0.135278849,946.193739,3008656476 +4,11225,1684,128,2.51268673,0.123044037,1040.27796,3008656476 +4,11226,1685,128,2.27045703,0.128586175,995.441384,3008656476 +4,11227,1686,128,2.86693263,0.122859091,1041.84394,3008656476 +4,11228,1687,128,2.39051843,0.123003003,1040.625,3008656476 +4,11229,1688,128,2.41338444,0.122456425,1045.26978,3008656476 +4,11230,1689,128,2.41233349,0.123449379,1036.86224,3008656476 +4,11231,1690,128,2.59612608,0.123621858,1035.4156,3008656476 +4,11232,1691,128,2.69782281,0.123197401,1038.98296,3008656476 +4,11233,1692,128,2.39148641,0.137086296,933.718422,3008656476 +4,11234,1693,128,2.43892765,0.13655938,937.321186,3008656476 +4,11235,1694,128,2.60339451,0.12284315,1041.97914,3008656476 +4,11236,1695,128,2.75682759,0.122809454,1042.26504,3008656476 +4,11237,1696,128,2.62284088,0.123430591,1037.02007,3008656476 +4,11238,1697,128,2.60550404,0.123082238,1039.95509,3008656476 +4,11239,1698,128,2.87136555,0.123429481,1037.02939,3008656476 +4,11240,1699,128,2.82919335,0.123706371,1034.70823,3008656476 +4,11241,1700,128,2.77548504,0.141483926,904.696411,3008656476 +4,11242,1701,128,2.80853033,0.137165348,933.180296,3008656476 +4,11243,1702,128,1.64855719,0.122974895,1040.86285,3008656476 +4,11244,1703,128,2.01858115,0.122992371,1040.71496,3008656476 +4,11245,1704,128,1.8927815,0.122717396,1043.0469,3008656476 +4,11246,1705,128,2.06475258,0.122922395,1041.3074,3008656476 +4,11247,1706,128,2.45484805,0.123339617,1037.78496,3008656476 +4,11248,1707,128,2.4227376,0.123056966,1040.16866,3008656476 +4,11249,1708,128,3.1689713,0.136705522,936.319163,3008656476 +4,11250,1709,128,2.37908268,0.123594127,1035.64792,3008656476 +4,11251,1710,128,2.96945858,0.134454221,951.996888,3008656476 +4,11252,1711,128,2.62006426,0.123263489,1038.4259,3008656476 +4,11253,1712,128,2.15229011,0.122521392,1044.71552,3008656476 +4,11254,1713,128,2.46028113,0.123295279,1038.15816,3008656476 +4,11255,1714,128,2.73562908,0.122807243,1042.2838,3008656476 +4,11256,1715,128,2.47078776,0.124213483,1030.48395,3008656476 +4,11257,1716,128,2.40537882,0.123963507,1032.56195,3008656476 +4,11258,1717,128,3.09001708,0.14201863,901.290204,3008656476 +4,11259,1718,128,2.03623486,0.139605333,916.870418,3008656476 +4,11260,1719,128,2.61657643,0.125675364,1018.49715,3008656476 +4,11261,1720,128,2.99242592,0.125068353,1023.44036,3008656476 +4,11262,1721,128,2.5563705,0.125225434,1022.15657,3008656476 +4,11263,1722,128,2.77307129,0.125985401,1015.99073,3008656476 +4,11264,1723,128,2.69868946,0.126884724,1008.78968,3008656476 +4,11265,1724,128,2.89165688,0.126265487,1013.73703,3008656476 +4,11266,1725,128,2.0522635,0.138898825,921.534073,3008656476 +4,11267,1726,128,3.09332705,0.14138726,905.314948,3008656476 +4,11268,1727,128,2.75781012,0.131650671,972.270016,3008656476 +4,11269,1728,128,2.59592533,0.128058668,999.541866,3008656476 +4,11270,1729,128,2.91763115,0.125953013,1016.25199,3008656476 +4,11271,1730,128,2.33103776,0.126317643,1013.31846,3008656476 +4,11272,1731,128,1.90798509,0.125555048,1019.47315,3008656476 +4,11273,1732,128,2.61608338,0.125613716,1018.997,3008656476 +4,11274,1733,128,1.8826865,0.139102783,920.182884,3008656476 +4,11275,1734,128,2.49306345,0.138414348,924.759621,3008656476 +4,11276,1735,128,1.91225183,0.126638882,1010.74803,3008656476 +4,11277,1736,128,1.97938955,0.125483672,1020.05303,3008656476 +4,11278,1737,128,1.61520004,0.125184126,1022.49386,3008656476 +4,11279,1738,128,2.05261946,0.124963617,1024.29814,3008656476 +4,11280,1739,128,1.40027988,0.124249498,1030.18525,3008656476 +4,11281,1740,128,1.59720373,0.124922862,1024.6323,3008656476 +4,11282,1741,128,2.00472307,0.13828859,925.600586,3008656476 +4,11283,1742,128,2.1575613,0.139062142,920.451808,3008656476 +4,11284,1743,128,2.23467231,0.122270467,1046.8595,3008656476 +4,11285,1744,128,2.62005305,0.122347013,1046.20454,3008656476 +4,11286,1745,128,1.53362036,0.122480618,1045.06331,3008656476 +4,11287,1746,128,2.97471428,0.122325611,1046.38758,3008656476 +4,11288,1747,128,3.0004499,0.123132113,1039.53385,3008656476 +4,11289,1748,128,2.25769043,0.122903715,1041.46567,3008656476 +4,11290,1749,128,2.9448154,0.123204475,1038.9233,3008656476 +4,11291,1750,128,2.27120495,0.127362514,1005.00529,3008656476 +4,11292,1751,128,2.85509539,0.138763968,922.429661,3008656476 +4,11293,1752,128,2.33290315,0.123067805,1040.07705,3008656476 +4,11294,1753,128,2.53518748,0.122893657,1041.55091,3008656476 +4,11295,1754,128,2.69879794,0.124073556,1031.6461,3008656476 +4,11296,1755,128,3.15423727,0.123600363,1035.59566,3008656476 +4,11297,1756,128,2.31289196,0.123259548,1038.45911,3008656476 +4,11298,1757,128,2.16778755,0.123457686,1036.79248,3008656476 +4,11299,1758,128,2.13996792,0.136060046,940.761111,3008656476 +4,11300,1759,128,2.38748026,0.138382884,924.969883,3008656476 +4,11301,1760,128,2.63901615,0.122349343,1046.18461,3008656476 +4,11302,1761,128,2.1512723,0.123278293,1038.3012,3008656476 +4,11303,1762,128,3.12788367,0.123168959,1039.22288,3008656476 +4,11304,1763,128,2.19882512,0.123204648,1038.92184,3008656476 +4,11305,1764,128,2.26568127,0.123116976,1039.66166,3008656476 +4,11306,1765,128,1.76426458,0.123726335,1034.54127,3008656476 +4,11307,1766,128,2.44001579,0.138745037,922.555522,3008656476 +4,11308,1767,128,2.60870743,0.123311489,1038.02169,3008656476 +4,11309,1768,128,2.52219486,0.126381513,1012.80636,3008656476 +4,11310,1769,128,2.03370929,0.123040196,1040.31044,3008656476 +4,11311,1770,128,2.05779791,0.123629682,1035.35007,3008656476 +4,11312,1771,128,1.94327116,0.123348761,1037.70803,3008656476 +4,11313,1772,128,1.74438083,0.122861851,1041.82054,3008656476 +4,11314,1773,128,1.64527929,0.12322795,1038.72539,3008656476 +4,11315,1774,128,1.64235544,0.122977473,1040.84103,3008656476 +4,11316,1775,128,2.05004907,0.13821667,926.082216,3008656476 +4,11317,1776,128,2.19472218,0.135861309,942.13725,3008656476 +4,11318,1777,128,1.96120107,0.124205241,1030.55233,3008656476 +4,11319,1778,128,1.6069355,0.123742583,1034.40543,3008656476 +4,11320,1779,128,2.0658567,0.122581542,1044.20289,3008656476 +4,11321,1780,128,1.84396148,0.122871819,1041.73602,3008656476 +4,11322,1781,128,1.39088273,0.123938455,1032.77066,3008656476 +4,11323,1782,128,1.51719689,0.123683761,1034.89738,3008656476 +4,11324,1783,128,1.81998813,0.136884707,935.093502,3008656476 +4,11325,1784,128,1.99515569,0.135327556,945.853186,3008656476 +4,11326,1785,128,1.91632664,0.123339225,1037.78826,3008656476 +4,11327,1786,128,1.42451847,0.123328918,1037.87499,3008656476 +4,11328,1787,128,1.45134997,0.124459874,1028.44391,3008656476 +4,11329,1788,128,1.32651114,0.123580676,1035.76064,3008656476 +4,11330,1789,128,1.7764641,0.123641636,1035.24997,3008656476 +4,11331,1790,128,1.52678609,0.124106883,1031.36907,3008656476 +4,11332,1791,128,2.45504332,0.138818516,922.067197,3008656476 +4,11333,1792,128,2.26708245,0.123578857,1035.77589,3008656476 +4,11334,1793,128,1.75974214,0.129989132,984.697705,3008656476 +4,11335,1794,128,2.23798084,0.123778699,1034.10361,3008656476 +4,11336,1795,128,1.47829556,0.122444255,1045.37367,3008656476 +4,11337,1796,128,2.25552225,0.124162047,1030.91084,3008656476 +4,11338,1797,128,2.50816274,0.123768069,1034.19243,3008656476 +4,11339,1798,128,2.35337019,0.123307131,1038.05837,3008656476 +4,11340,1799,128,1.70470619,0.123586207,1035.71428,3008656476 +4,11341,1800,128,1.92053044,0.137371692,931.778579,3008656476 +4,11342,1801,128,2.1032548,0.140476037,911.187436,3008656476 +4,11343,1802,128,1.61614573,0.123862484,1033.40411,3008656476 +4,11344,1803,128,2.23121572,0.123774454,1034.13908,3008656476 +4,11345,1804,128,2.01535583,0.124416638,1028.80131,3008656476 +4,11346,1805,128,2.79392076,0.123401561,1037.26403,3008656476 +4,11347,1806,128,2.16673493,0.124568337,1027.54844,3008656476 +4,11348,1807,128,2.31991196,0.123099308,1039.81088,3008656476 +4,11349,1808,128,2.38131547,0.135233298,946.512448,3008656476 +4,11350,1809,128,2.81276393,0.137930946,928.000595,3008656476 +4,11351,1810,128,2.44850063,0.123772961,1034.15155,3008656476 +4,11352,1811,128,1.9363327,0.123620466,1035.42726,3008656476 +4,11353,1812,128,1.7486527,0.123162193,1039.27997,3008656476 +4,11354,1813,128,1.66192627,0.123373348,1037.50123,3008656476 +4,11355,1814,128,2.68987775,0.123092815,1039.86573,3008656476 +4,11356,1815,128,2.48089528,0.123080614,1039.96881,3008656476 +4,11357,1816,128,2.08270717,0.136921695,934.840896,3008656476 +4,11358,1817,128,2.43678498,0.123543722,1036.07045,3008656476 +4,11359,1818,128,1.59614265,0.129804089,986.101447,3008656476 +4,11360,1819,128,1.57907557,0.123597157,1035.62253,3008656476 +4,11361,1820,128,2.23410797,0.123522101,1036.2518,3008656476 +4,11362,1821,128,2.54368448,0.123361646,1037.59964,3008656476 +4,11363,1822,128,3.14308596,0.123038024,1040.3288,3008656476 +4,11364,1823,128,2.71608353,0.124488711,1028.20568,3008656476 +4,11365,1824,128,2.305197,0.124589965,1027.37006,3008656476 +4,11366,1825,128,2.0683279,0.141697206,903.334678,3008656476 +4,11367,1826,128,2.71115232,0.138539357,923.925177,3008656476 +4,11368,1827,128,2.09075499,0.125405736,1020.68696,3008656476 +4,11369,1828,128,2.0005331,0.126145101,1014.70449,3008656476 +4,11370,1829,128,2.26749182,0.124284148,1029.89804,3008656476 +4,11371,1830,128,2.2562294,0.126196049,1014.29483,3008656476 +4,11372,1831,128,2.61832762,0.126957609,1008.21054,3008656476 +4,11373,1832,128,2.18326426,0.127755918,1001.91053,3008656476 +4,11374,1833,128,2.42056084,0.143840619,889.873812,3008656476 +4,11375,1834,128,2.62309933,0.143783465,890.227538,3008656476 +4,11376,1835,128,2.31367803,0.128234885,998.168322,3008656476 +4,11377,1836,128,1.70803583,0.129276917,990.122622,3008656476 +4,11378,1837,128,2.39488244,0.129124755,991.289393,3008656476 +4,11379,1838,128,2.89930296,0.128594014,995.380703,3008656476 +4,11380,1839,128,2.61011505,0.129012017,992.155638,3008656476 +4,11381,1840,128,2.82583189,0.129080559,991.628801,3008656476 +4,11382,1841,128,2.65124369,0.141706445,903.275783,3008656476 +4,11383,1842,128,2.59331203,0.142220363,900.011766,3008656476 +4,11384,1843,128,2.35613036,0.1283669,997.141787,3008656476 +4,11385,1844,128,2.44943118,0.127321296,1005.33064,3008656476 +4,11386,1845,128,2.02994156,0.12601849,1015.72396,3008656476 +4,11387,1846,128,2.14356589,0.126633579,1010.79035,3008656476 +4,11388,1847,128,1.74519634,0.126480054,1012.01728,3008656476 +4,11389,1848,128,2.49254274,0.125102166,1023.16374,3008656476 +4,11390,1849,128,2.51434231,0.139353079,918.530117,3008656476 +4,11391,1850,128,2.69347191,0.139938328,914.688648,3008656476 +4,11392,1851,128,2.29378653,0.126288263,1013.5542,3008656476 +4,11393,1852,128,1.88222599,0.126198892,1014.27198,3008656476 +4,11394,1853,128,2.29199433,0.124983593,1024.13442,3008656476 +4,11395,1854,128,2.64765382,0.127152782,1006.66299,3008656476 +4,11396,1855,128,2.28397584,0.125743007,1017.94925,3008656476 +4,11397,1856,128,2.31356335,0.125787443,1017.58965,3008656476 +4,11398,1857,128,1.59199011,0.138620827,923.38217,3008656476 +4,11399,1858,128,2.45244908,0.137037631,934.050006,3008656476 +4,11400,1859,128,2.03148866,0.125037147,1023.69578,3008656476 +4,11401,1860,128,2.45401478,0.124355433,1029.30766,3008656476 +4,11402,1861,128,2.73293376,0.125455664,1020.28076,3008656476 +4,11403,1862,128,2.29595685,0.125029841,1023.7556,3008656476 +4,11404,1863,128,2.26089811,0.125706165,1018.24759,3008656476 +4,11405,1864,128,2.59957147,0.124659646,1026.79579,3008656476 +4,11406,1865,128,2.35938358,0.139451182,917.883937,3008656476 +4,11407,1866,128,2.3277986,0.123175966,1039.16376,3008656476 +4,11408,1867,128,3.2272346,0.128242286,998.110717,3008656476 +4,11409,1868,128,2.22258878,0.124517818,1027.96533,3008656476 +4,11410,1869,128,2.19935274,0.123947646,1032.69408,3008656476 +4,11411,1870,128,2.35389209,0.123186474,1039.07512,3008656476 +4,11412,1871,128,1.9124651,0.123734819,1034.47034,3008656476 +4,11413,1872,128,2.64434719,0.12471115,1026.37174,3008656476 +4,11414,1873,128,2.37238526,0.124261675,1030.0843,3008656476 +4,11415,1874,128,2.77690077,0.137553235,930.548816,3008656476 +4,11416,1875,128,2.20834541,0.139618029,916.787043,3008656476 +4,11417,1876,128,2.02228928,0.124738267,1026.14862,3008656476 +4,11418,1877,128,2.15502834,0.124522118,1027.92983,3008656476 +4,11419,1878,128,1.98217297,0.123784203,1034.05763,3008656476 +4,11420,1879,128,1.40703356,0.124321013,1029.59264,3008656476 +4,11421,1880,128,2.03738022,0.124864884,1025.10807,3008656476 +4,11422,1881,128,2.19192553,0.124946838,1024.43569,3008656476 +4,11423,1882,128,2.31295395,0.138047519,927.216953,3008656476 +4,11424,1883,128,1.94221473,0.14147432,904.757839,3008656476 +4,11425,1884,128,2.22515249,0.125240221,1022.03588,3008656476 +4,11426,1885,128,2.18346858,0.124342993,1029.41064,3008656476 +4,11427,1886,128,2.34519506,0.124716881,1026.32458,3008656476 +4,11428,1887,128,1.98989046,0.1260626,1015.36855,3008656476 +4,11429,1888,128,1.98910213,0.125237256,1022.06008,3008656476 +4,11430,1889,128,2.59883618,0.125958372,1016.20875,3008656476 +4,11431,1890,128,2.52204967,0.140306245,912.290112,3008656476 +4,11432,1891,128,2.29313135,0.140743308,909.457095,3008656476 +4,11433,1892,128,2.24485517,0.125900915,1016.67252,3008656476 +4,11434,1893,128,2.15980101,0.125794931,1017.52908,3008656476 +4,11435,1894,128,2.18843627,0.124456471,1028.47204,3008656476 +4,11436,1895,128,2.30036736,0.125479848,1020.08412,3008656476 +4,11437,1896,128,2.43882632,0.124554074,1027.6661,3008656476 +4,11438,1897,128,2.42092586,0.124365823,1029.22167,3008656476 +4,11439,1898,128,2.6979084,0.136842781,935.379996,3008656476 +4,11440,1899,128,3.60191274,0.124461735,1028.42854,3008656476 +4,11441,1900,128,2.7260263,0.131959959,969.991208,3008656476 +4,11442,1901,128,2.13254666,0.124516583,1027.97553,3008656476 +4,11443,1902,128,2.29139686,0.125247158,1021.97928,3008656476 +4,11444,1903,128,2.77473855,0.124845474,1025.26744,3008656476 +4,11445,1904,128,1.62459946,0.125546344,1019.54383,3008656476 +4,11446,1905,128,2.50715709,0.126591886,1011.12326,3008656476 +4,11447,1906,128,1.96693122,0.125794661,1017.53126,3008656476 +4,11448,1907,128,1.96835279,0.129660739,987.191659,3008656476 +4,11449,1908,128,2.13903022,0.138896074,921.552326,3008656476 +4,11450,1909,128,1.91697252,0.125937345,1016.37842,3008656476 +4,11451,1910,128,2.25465274,0.126530096,1011.61703,3008656476 +4,11452,1911,128,1.89794505,0.125840859,1017.15771,3008656476 +4,11453,1912,128,2.14770222,0.126854242,1009.03208,3008656476 +4,11454,1913,128,2.15306926,0.126500772,1011.85153,3008656476 +4,11455,1914,128,2.38926458,0.127523277,1003.73832,3008656476 +4,11456,1915,128,1.73409462,0.142030974,901.211872,3008656476 +4,11457,1916,128,2.59962249,0.139742821,915.968342,3008656476 +4,11458,1917,128,1.99764776,0.126790548,1009.53898,3008656476 +4,11459,1918,128,2.29613304,0.127306437,1005.44798,3008656476 +4,11460,1919,128,1.72850859,0.129070023,991.709748,3008656476 +4,11461,1920,128,1.96902323,0.129496592,988.443001,3008656476 +4,11462,1921,128,2.16942859,0.13507309,947.635091,3008656476 +4,11463,1922,128,2.63256741,0.136627783,936.851914,3008656476 +4,11464,1923,128,2.34081769,0.14950449,856.161577,3008656476 +4,11465,1924,128,2.07723904,0.143759366,890.37677,3008656476 +4,11466,1925,128,1.83375847,0.127103919,1007.04999,3008656476 +4,11467,1926,128,2.23732281,0.127105491,1007.03753,3008656476 +4,11468,1927,128,2.36451244,0.127469571,1004.16122,3008656476 +4,11469,1928,128,2.40534759,0.127019872,1007.71634,3008656476 +4,11470,1929,128,2.84901834,0.128343642,997.322485,3008656476 +4,11471,1930,128,2.58969092,0.125707773,1018.23457,3008656476 +4,11472,1931,128,1.66859221,0.139943193,914.656849,3008656476 +4,11473,1932,128,1.59489775,0.139907001,914.893458,3008656476 +4,11474,1933,128,2.00554514,0.126221775,1014.0881,3008656476 +4,11475,1934,128,1.8998313,0.124816472,1025.50567,3008656476 +4,11476,1935,128,1.64625978,0.124918894,1024.66485,3008656476 +4,11477,1936,128,2.4794569,0.125051079,1023.58173,3008656476 +4,11478,1937,128,2.37543464,0.124040514,1031.92091,3008656476 +4,11479,1938,128,2.71248317,0.125054046,1023.55745,3008656476 +4,11480,1939,128,2.14352083,0.137793588,928.925662,3008656476 +4,11481,1940,128,2.20116305,0.141211594,906.441152,3008656476 +4,11482,1941,128,1.63458323,0.124627512,1027.06054,3008656476 +4,11483,1942,128,2.6481626,0.12540166,1020.72014,3008656476 +4,11484,1943,128,2.31782031,0.126102069,1015.05075,3008656476 +4,11485,1944,128,2.4621129,0.125109465,1023.10405,3008656476 +4,11486,1945,128,2.4688015,0.125205596,1022.31852,3008656476 +4,11487,1946,128,1.69105291,0.124493375,1028.16716,3008656476 +4,11488,1947,128,2.00343299,0.13770664,929.512186,3008656476 +4,11489,1948,128,2.51237059,0.136549581,937.388449,3008656476 +4,11490,1949,128,2.32996964,0.124786277,1025.75382,3008656476 +4,11491,1950,128,2.9605844,0.124382874,1029.08058,3008656476 +4,11492,1951,128,2.92059731,0.124708376,1026.39457,3008656476 +4,11493,1952,128,2.26137805,0.125540322,1019.59273,3008656476 +4,11494,1953,128,2.29504371,0.124036316,1031.95583,3008656476 +4,11495,1954,128,2.42661476,0.12513641,1022.88375,3008656476 +4,11496,1955,128,2.29071617,0.136548398,937.396571,3008656476 +4,11497,1956,128,2.67157936,0.126338765,1013.14905,3008656476 +4,11498,1957,128,2.22712374,0.136144409,940.17816,3008656476 +4,11499,1958,128,2.21367359,0.12548515,1020.04102,3008656476 +4,11500,1959,128,1.51958561,0.126452427,1012.23838,3008656476 +4,11501,1960,128,2.34170389,0.12599512,1015.91236,3008656476 +4,11502,1961,128,2.21630025,0.127160489,1006.60198,3008656476 +4,11503,1962,128,2.25559092,0.126929869,1008.43088,3008656476 +4,11504,1963,128,1.87776721,0.138107066,926.81717,3008656476 +4,11505,1964,128,1.80187201,0.12646663,1012.1247,3008656476 +4,11506,1965,128,2.01869965,0.145938454,877.082061,3008656476 +4,11507,1966,128,2.30159211,0.126887851,1008.76482,3008656476 +4,11508,1967,128,2.34097075,0.128353131,997.248754,3008656476 +4,11509,1968,128,2.87271643,0.12825475,998.013719,3008656476 +4,11510,1969,128,2.09708881,0.126866646,1008.93343,3008656476 +4,11511,1970,128,2.31749368,0.127438706,1004.40442,3008656476 +4,11512,1971,128,2.40316534,0.126537915,1011.55452,3008656476 +4,11513,1972,128,2.80140209,0.133839024,956.372784,3008656476 +4,11514,1973,128,2.3593204,0.142268606,899.706573,3008656476 +4,11515,1974,128,1.19869792,0.126822708,1009.28297,3008656476 +4,11516,1975,128,1.97008073,0.127222965,1006.10766,3008656476 +4,11517,1976,128,2.12642765,0.125417731,1020.58935,3008656476 +4,11518,1977,128,2.08762002,0.124950759,1024.40354,3008656476 +4,11519,1978,128,2.28731918,0.117726489,1087.26593,3008656476 +4,11520,1979,128,2.30776954,0.124496113,1028.14455,3008656476 +4,11521,1980,128,2.7037077,0.137565024,930.46907,3008656476 +4,11522,1981,128,2.51915574,0.139208144,919.486435,3008656476 +4,11523,1982,128,2.39347696,0.124562434,1027.59713,3008656476 +4,11524,1983,128,2.50373912,0.124131655,1031.16324,3008656476 +4,11525,1984,128,1.84338105,0.125106468,1023.12856,3008656476 +4,11526,1985,128,1.75678933,0.124595238,1027.32658,3008656476 +4,11527,1986,128,1.67321539,0.12430185,1029.75137,3008656476 +4,11528,1987,128,2.35394335,0.125429751,1020.49154,3008656476 +4,11529,1988,128,2.57319903,0.135674234,943.43632,3008656476 +4,11530,1989,128,2.6421473,0.198488594,644.873327,3008656476 +4,11531,1990,128,1.87039971,0.125471573,1020.15139,3008656476 +4,11532,1991,128,1.75402665,0.125663224,1018.59554,3008656476 +4,11533,1992,128,1.63227725,0.124820912,1025.46919,3008656476 +4,11534,1993,128,2.22732306,0.125126326,1022.96618,3008656476 +4,11535,1994,128,2.14584279,0.125059268,1023.51471,3008656476 +4,11536,1995,128,2.08992243,0.124127066,1031.20137,3008656476 +4,11537,1996,128,2.07754087,0.141547809,904.288105,3008656476 +4,11538,1997,128,2.65124631,0.139238276,919.287452,3008656476 +4,11539,1998,128,2.38991427,0.126401144,1012.64906,3008656476 +4,11540,1999,128,2.76650381,0.125538276,1019.60935,3008656476 +4,11541,2000,128,2.27749777,0.126440678,1012.33244,3008656476 +4,11542,2001,128,1.80072212,0.126029286,1015.63695,3008656476 +4,11543,2002,128,2.29605198,0.126860083,1008.98562,3008656476 +4,11544,2003,128,2.5394628,0.127300298,1005.49647,3008656476 +4,11545,2004,128,1.85850286,0.13952366,917.407127,3008656476 +4,11546,2005,128,1.88542855,0.140319133,912.20632,3008656476 +4,11547,2006,128,1.96185291,0.128798093,993.803534,3008656476 +4,11548,2007,128,2.02155542,0.13286565,963.379173,3008656476 +4,11549,2008,128,2.25971794,0.136174517,939.970288,3008656476 +4,11550,2009,128,1.9446528,0.136604916,937.008738,3008656476 +4,11551,2010,128,1.95412898,0.136297743,939.120467,3008656476 +4,11552,2011,128,2.60794306,0.136643306,936.745485,3008656476 +4,11553,2012,128,2.84564877,0.140350892,911.999904,3008656476 +4,11554,2013,128,2.33813095,0.140923587,908.293656,3008656476 +4,11555,2014,128,2.7607193,0.127152607,1006.66438,3008656476 +4,11556,2015,128,2.39490509,0.133384389,959.63254,3008656476 +4,11557,2016,128,2.46570897,0.136487924,937.811905,3008656476 +4,11558,2017,128,2.95999312,0.135883438,941.98382,3008656476 +4,11559,2018,128,2.34954405,0.135841063,942.277668,3008656476 +4,11560,2019,128,2.376055,0.14928928,857.395789,3008656476 +4,11561,2020,128,2.19383955,0.135947649,941.538901,3008656476 +4,11562,2021,128,2.73694015,0.140391354,911.737058,3008656476 +4,11563,2022,128,2.7650969,0.136803173,935.650813,3008656476 +4,11564,2023,128,2.64676642,0.136574339,937.218521,3008656476 +4,11565,2024,128,2.80199647,0.1361595,940.073957,3008656476 +4,11566,2025,128,2.64134288,0.13672738,936.169478,3008656476 +4,11567,2026,128,2.09848452,0.134740337,949.975359,3008656476 +4,11568,2027,128,2.47570944,0.140099955,913.633413,3008656476 +4,11569,2028,128,2.55843282,0.143449559,892.299711,3008656476 +4,11570,2029,128,2.93368793,0.127887385,1000.88058,3008656476 +4,11571,2030,128,2.50875616,0.127462448,1004.21734,3008656476 +4,11572,2031,128,2.4542861,0.126101805,1015.05288,3008656476 +4,11573,2032,128,2.18831825,0.126112674,1014.9654,3008656476 +4,11574,2033,128,2.32132888,0.125213944,1022.25037,3008656476 +4,11575,2034,128,2.09858847,0.126006177,1015.82322,3008656476 +4,11576,2035,128,2.56844997,0.137278413,932.411711,3008656476 +4,11577,2036,128,1.77498317,0.123374322,1037.49304,3008656476 +4,11578,2037,128,2.01690102,0.128206093,998.392487,3008656476 +4,11579,2038,128,2.34925675,0.125529344,1019.6819,3008656476 +4,11580,2039,128,2.78372765,0.125195764,1022.39881,3008656476 +4,11581,2040,128,2.32472849,0.12527845,1021.72401,3008656476 +4,11582,2041,128,3.06971645,0.125512979,1019.81485,3008656476 +4,11583,2042,128,2.89089251,0.125008307,1023.93195,3008656476 +4,11584,2043,128,2.95440507,0.13851966,924.056556,3008656476 +4,11585,2044,128,2.27766347,0.119143118,1074.33818,3008656476 +4,11586,2045,128,2.20720363,0.137516856,930.794986,3008656476 +4,11587,2046,128,2.2479198,0.124345852,1029.38697,3008656476 +4,11588,2047,128,2.2750845,0.124847792,1025.24841,3008656476 +4,11589,2048,128,2.5492909,0.123280195,1038.28518,3008656476 +4,11590,2049,128,2.1141324,0.124415626,1028.80968,3008656476 +4,11591,2050,128,2.77263904,0.123699721,1034.76385,3008656476 +4,11592,2051,128,2.28318143,0.12240386,1045.71866,3008656476 +4,11593,2052,128,1.99101508,0.13794363,927.915265,3008656476 +4,11594,2053,128,2.44365501,0.136517066,937.611712,3008656476 +4,11595,2054,128,2.8319006,0.122335768,1046.3007,3008656476 +4,11596,2055,128,2.19018412,0.122837957,1042.02319,3008656476 +4,11597,2056,128,2.30415273,0.122957901,1041.00671,3008656476 +4,11598,2057,128,2.34249878,0.122899376,1041.50244,3008656476 +4,11599,2058,128,2.17328477,0.12302522,1040.43707,3008656476 +4,11600,2059,128,2.50423002,0.122261237,1046.93853,3008656476 +4,11601,2060,128,1.791067,0.141987145,901.490061,3008656476 +4,11602,2061,128,2.88933086,0.137784818,928.984788,3008656476 +4,11603,2062,128,2.43990088,0.116802878,1095.86341,3008656476 +4,11604,2063,128,1.96576059,0.123069413,1040.06346,3008656476 +4,11605,2064,128,2.34778261,0.122912902,1041.38783,3008656476 +4,11606,2065,128,2.03584576,0.124025835,1032.04304,3008656476 +4,11607,2066,128,2.40987396,0.123925768,1032.87639,3008656476 +4,11608,2067,128,1.97902632,0.124300987,1029.75852,3008656476 +4,11609,2068,128,1.84995329,0.123887454,1033.19582,3008656476 +4,11610,2069,128,2.07879043,0.128374108,997.085799,3008656476 +4,11611,2070,128,1.97079492,0.137906148,928.167466,3008656476 +4,11612,2071,128,2.40556312,0.123745946,1034.37732,3008656476 +4,11613,2072,128,2.0473423,0.122755701,1042.72143,3008656476 +4,11614,2073,128,2.3564868,0.123321043,1037.94127,3008656476 +4,11615,2074,128,2.04343319,0.12391705,1032.94906,3008656476 +4,11616,2075,128,2.50241423,0.123157278,1039.32144,3008656476 +4,11617,2076,128,2.37955046,0.124338939,1029.4442,3008656476 +4,11618,2077,128,2.29032612,0.137606635,930.187705,3008656476 +4,11619,2078,128,1.90589774,0.138893616,921.568634,3008656476 +4,11620,2079,128,2.77297688,0.123165139,1039.25511,3008656476 +4,11621,2080,128,2.33875251,0.12433167,1029.50439,3008656476 +4,11622,2081,128,2.25306463,0.12454122,1027.77217,3008656476 +4,11623,2082,128,2.21498466,0.123867951,1033.3585,3008656476 +4,11624,2083,128,2.48000813,0.123326908,1037.89191,3008656476 +4,11625,2084,128,1.8693893,0.123577387,1035.78821,3008656476 +4,11626,2085,128,2.12084389,0.1346337,950.72779,3008656476 +4,11627,2086,128,2.30358291,0.123288439,1038.21576,3008656476 +4,11628,2087,128,1.87209523,0.133697016,957.388608,3008656476 +4,11629,2088,128,2.00486588,0.123070366,1040.05541,3008656476 +4,11630,2089,128,2.0161097,0.123996799,1032.28471,3008656476 +4,11631,2090,128,2.21187067,0.123307628,1038.05419,3008656476 +4,11632,2091,128,1.80410933,0.123181197,1039.11963,3008656476 +4,11633,2092,128,1.51753449,0.122792663,1042.40756,3008656476 +4,11634,2093,128,1.67088079,0.123303748,1038.08686,3008656476 +4,11635,2094,128,2.49555349,0.133038879,962.124764,3008656476 +4,11636,2095,128,1.74414122,0.137666302,929.784545,3008656476 +4,11637,2096,128,2.48983335,0.123043687,1040.28092,3008656476 +4,11638,2097,128,2.38805127,0.122917062,1041.35258,3008656476 +4,11639,2098,128,2.29849195,0.122839473,1042.01033,3008656476 +4,11640,2099,128,2.31587267,0.123126961,1039.57735,3008656476 +4,11641,2100,128,2.05639458,0.122112387,1048.21471,3008656476 +4,11642,2101,128,2.16995049,0.122896874,1041.52364,3008656476 +4,11643,2102,128,2.12910128,0.136874193,935.165331,3008656476 +4,11644,2103,128,1.34752893,0.134772848,949.746198,3008656476 +4,11645,2104,128,2.01653767,0.123594065,1035.64844,3008656476 +4,11646,2105,128,1.90806067,0.123137839,1039.48552,3008656476 +4,11647,2106,128,1.70646155,0.1240921,1031.49193,3008656476 +4,11648,2107,128,2.06931543,0.123499687,1036.43987,3008656476 +4,11649,2108,128,2.12523842,0.123759187,1034.26665,3008656476 +4,11650,2109,128,2.2995379,0.124048064,1031.8581,3008656476 +4,11651,2110,128,2.36346555,0.138623203,923.366343,3008656476 +4,11652,2111,128,2.08720994,0.12538835,1020.82849,3008656476 +4,11653,2112,128,2.12675762,0.136142377,940.192193,3008656476 +4,11654,2113,128,2.16886067,0.126826641,1009.25168,3008656476 +4,11655,2114,128,1.46967375,0.126936504,1008.37817,3008656476 +4,11656,2115,128,2.32028151,0.128379054,997.047384,3008656476 +4,11657,2116,128,1.87391543,0.131408473,974.062,3008656476 +4,11658,2117,128,2.24446774,0.128407993,996.822682,3008656476 +4,11659,2118,128,2.17640114,0.141956877,901.682276,3008656476 +4,11660,2119,128,2.30027151,0.132054905,969.293795,3008656476 +4,11661,2120,128,1.39569879,0.141639971,903.699705,3008656476 +4,11662,2121,128,1.61789799,0.127933263,1000.52165,3008656476 +4,11663,2122,128,1.89931333,0.127847685,1001.19138,3008656476 +4,11664,2123,128,1.63269603,0.12799448,1000.04313,3008656476 +4,11665,2124,128,1.85781181,0.127968683,1000.24472,3008656476 +4,11666,2125,128,1.22803974,0.128311729,997.570534,3008656476 +4,11667,2126,128,1.40861654,0.139969075,914.487718,3008656476 +4,11668,2127,128,2.87472034,0.127783973,1001.69056,3008656476 +4,11669,2128,128,2.07555699,0.142081116,900.893825,3008656476 +4,11670,2129,128,1.77603054,0.12793309,1000.52301,3008656476 +4,11671,2130,128,2.29734635,0.131962936,969.969325,3008656476 +4,11672,2131,128,1.83412802,0.12747157,1004.14547,3008656476 +4,11673,2132,128,2.23901367,0.127861932,1001.07982,3008656476 +4,11674,2133,128,1.92719162,0.127474802,1004.12001,3008656476 +4,11675,2134,128,2.57170415,0.14117839,906.65434,3008656476 +4,11676,2135,128,1.84702718,0.132308212,967.43806,3008656476 +4,11677,2136,128,2.36844063,0.14064721,910.078486,3008656476 +4,11678,2137,128,2.09446669,0.12719285,1006.34588,3008656476 +4,11679,2138,128,2.32783842,0.129420279,989.025839,3008656476 +4,11680,2139,128,2.56401014,0.130168736,983.339041,3008656476 +4,11681,2140,128,2.49606204,0.132034125,969.446346,3008656476 +4,11682,2141,128,1.94767106,0.127910414,1000.70038,3008656476 +4,11683,2142,128,1.95976412,0.141759339,902.938747,3008656476 +4,11684,2143,128,2.06401873,0.131593077,972.695547,3008656476 +4,11685,2144,128,2.29708505,0.139067401,920.417,3008656476 +4,11686,2145,128,2.68770766,0.126094096,1015.11493,3008656476 +4,11687,2146,128,2.33504415,0.125781029,1017.64154,3008656476 +4,11688,2147,128,2.32663751,0.125636413,1018.81291,3008656476 +4,11689,2148,128,1.47190988,0.124994943,1024.04143,3008656476 +4,11690,2149,128,2.03603649,0.125111378,1023.0884,3008656476 +4,11691,2150,128,1.7742269,0.125398112,1020.74902,3008656476 +4,11692,2151,128,2.12320876,0.128696594,994.587316,3008656476 +4,11693,2152,128,2.39679885,0.139250406,919.207374,3008656476 +4,11694,2153,128,1.82013166,0.125059755,1023.51072,3008656476 +4,11695,2154,128,1.89079905,0.126082782,1015.20603,3008656476 +4,11696,2155,128,2.67003036,0.125416285,1020.60111,3008656476 +4,11697,2156,128,2.39084816,0.126090311,1015.14541,3008656476 +4,11698,2157,128,2.13902521,0.126082072,1015.21174,3008656476 +4,11699,2158,128,1.1508249,0.125476674,1020.10992,3008656476 +4,11700,2159,128,2.32874489,0.138603019,923.500808,3008656476 +4,11701,2160,128,2.61457109,0.139875246,915.101161,3008656476 +4,11702,2161,128,2.33752203,0.123108323,1039.73474,3008656476 +4,11703,2162,128,1.63950849,0.124273967,1029.98241,3008656476 +4,11704,2163,128,1.53380525,0.124013736,1032.14373,3008656476 +4,11705,2164,128,1.78281391,0.123444674,1036.90176,3008656476 +4,11706,2165,128,2.28790236,0.122151316,1047.88065,3008656476 +4,11707,2166,128,2.20100379,0.122772019,1042.58284,3008656476 +4,11708,2167,128,1.87893748,0.133677507,957.52833,3008656476 +4,11709,2168,128,2.40203953,0.108365618,1181.18645,3008656476 +4,11710,2169,128,2.27540612,0.113513686,1127.61733,3008656476 +4,11711,2170,128,1.8947264,0.101689984,1258.7277,3008656476 +4,11712,2171,128,2.04741597,0.108584573,1178.80465,3008656476 +4,11713,2172,128,2.13118577,0.108548605,1179.19526,3008656476 +4,11714,2173,128,2.73740578,0.10850833,1179.63294,3008656476 +4,11715,2174,128,2.38966417,0.108635387,1178.25327,3008656476 +4,11716,2175,128,2.1165719,0.108625242,1178.36331,3008656476 +4,11717,2176,128,0.933643103,0.108595564,1178.68535,3008656476 +4,11718,2177,128,1.72315729,0.110872522,1154.47902,3008656476 +4,11719,2178,128,1.74714577,0.121052745,1057.39031,3008656476 +4,11720,2179,128,2.52825308,0.108438791,1180.38941,3008656476 +4,11721,2180,128,2.24849844,0.108444586,1180.32633,3008656476 +4,11722,2181,128,1.77068269,0.10852588,1179.44218,3008656476 +4,11723,2182,128,2.20585346,0.108394226,1180.87471,3008656476 +4,11724,2183,128,2.49252534,0.108461574,1180.14146,3008656476 +4,11725,2184,128,2.04766655,0.108481318,1179.92667,3008656476 +4,11726,2185,128,2.14104056,0.108487317,1179.86142,3008656476 +4,11727,2186,128,2.2093668,0.123645213,1035.22002,3008656476 +4,11728,2187,128,2.16772747,0.108346601,1181.39378,3008656476 +4,11729,2188,128,1.76492095,0.117810281,1086.49261,3008656476 +4,11730,2189,128,2.05732417,0.108446543,1180.30503,3008656476 +4,11731,2190,128,1.77547836,0.108505995,1179.65832,3008656476 +4,11732,2191,128,2.33752012,0.108528437,1179.41439,3008656476 +4,11733,2192,128,1.69137931,0.108536845,1179.32302,3008656476 +4,11734,2193,128,1.16882908,0.108590175,1178.74384,3008656476 +4,11735,2194,128,1.90168321,0.108628287,1178.33028,3008656476 +4,11736,2195,128,1.76797163,0.108615736,1178.46644,3008656476 +4,11737,2196,128,2.43622851,0.117159667,1092.52615,3008656476 +4,11738,2197,128,2.38409853,0.121620487,1052.45426,3008656476 +4,11739,2198,128,2.38937807,0.10830018,1181.90016,3008656476 +4,11740,2199,128,1.82229793,0.10855595,1179.11547,3008656476 +4,11741,2200,128,2.34474349,0.108305136,1181.84608,3008656476 +4,11742,2201,128,2.39236164,0.108549576,1179.18471,3008656476 +4,11743,2202,128,1.9245851,0.108465035,1180.1038,3008656476 +4,11744,2203,128,2.56468725,0.108519979,1179.50631,3008656476 +4,11745,2204,128,2.72115231,0.10844559,1180.3154,3008656476 +4,11746,2205,128,1.91715646,0.121906829,1049.9822,3008656476 +4,11747,2206,128,1.96405053,0.108319612,1181.68813,3008656476 +4,11748,2207,128,2.09501505,0.119109105,1074.64497,3008656476 +4,11749,2208,128,1.98981273,0.108415223,1180.64601,3008656476 +4,11750,2209,128,2.35951114,0.108388901,1180.93272,3008656476 +4,11751,2210,128,1.59328842,0.108293577,1181.97222,3008656476 +4,11752,2211,128,1.67948425,0.108520511,1179.50053,3008656476 +4,11753,2212,128,1.85942876,0.108352546,1181.32896,3008656476 +4,11754,2213,128,2.00559688,0.108410898,1180.69311,3008656476 +4,11755,2214,128,1.83716238,0.108364194,1181.20198,3008656476 +4,11756,2215,128,2.24935555,0.11388558,1123.93509,3008656476 +4,11757,2216,128,1.512007,0.120640383,1061.00459,3008656476 +4,11758,2217,128,2.44329476,0.108393165,1180.88627,3008656476 +4,11759,2218,128,2.21701837,0.108254729,1182.39638,3008656476 +4,11760,2219,128,2.52531004,0.108464565,1180.10891,3008656476 +4,11761,2220,128,1.85260844,0.108345526,1181.4055,3008656476 +4,11762,2221,128,1.3164649,0.108502135,1179.70029,3008656476 +4,11763,2222,128,1.94672441,0.10820192,1182.97346,3008656476 +4,11764,2223,128,1.97898805,0.108448534,1180.28336,3008656476 +4,11765,2224,128,1.82570434,0.123549817,1036.01934,3008656476 +4,11766,2225,128,1.8451966,0.108446806,1180.30217,3008656476 +4,11767,2226,128,2.12392092,0.115303464,1110.11409,3008656476 +4,11768,2227,128,2.01841283,0.108603166,1178.60284,3008656476 +4,11769,2228,128,2.0935905,0.108516598,1179.54306,3008656476 +4,11770,2229,128,2.07075953,0.108691179,1177.64846,3008656476 +4,11771,2230,128,2.16352797,0.108472138,1180.02652,3008656476 +4,11772,2231,128,1.52151453,0.108597277,1178.66675,3008656476 +4,11773,2232,128,2.21429181,0.108524804,1179.45387,3008656476 +4,11774,2233,128,1.7952137,0.108634074,1178.26751,3008656476 +4,11775,2234,128,2.14247131,0.120239041,1064.54608,3008656476 +4,11776,2235,128,1.44637704,0.121960014,1049.52431,3008656476 +4,11777,2236,128,1.93836939,0.108268762,1182.24313,3008656476 +4,11778,2237,128,2.71426582,0.108547426,1179.20806,3008656476 +4,11779,2238,128,1.9691658,0.108499765,1179.72606,3008656476 +4,11780,2239,128,2.0765326,0.108541329,1179.2743,3008656476 +4,11781,2240,128,2.08228922,0.108483363,1179.90442,3008656476 +4,11782,2241,128,2.02380538,0.108536963,1179.32174,3008656476 +4,11783,2242,128,2.72753811,0.108444663,1180.32549,3008656476 +4,11784,2243,128,2.149189,0.122609858,1043.96173,3008656476 +4,11785,2244,128,2.43302608,0.108310084,1181.79209,3008656476 +4,11786,2245,128,2.22036171,0.115805988,1105.2969,3008656476 +4,11787,2246,128,1.61419082,0.108292271,1181.98648,3008656476 +4,11788,2247,128,1.73201931,0.108517501,1179.53324,3008656476 +4,11789,2248,128,1.69249701,0.10829074,1182.00319,3008656476 +4,11790,2249,128,2.10214043,0.108401763,1180.7926,3008656476 +4,11791,2250,128,2.2357378,0.108345314,1181.40781,3008656476 +4,11792,2251,128,1.65322518,0.108514487,1179.56601,3008656476 +4,11793,2252,128,1.52532494,0.108465074,1180.10338,3008656476 +4,11794,2253,128,2.03630114,0.118519034,1079.9953,3008656476 +4,11795,2254,128,2.6839242,0.120146638,1065.36481,3008656476 +4,11796,2255,128,1.87868893,0.108475413,1179.9909,3008656476 +4,11797,2256,128,2.2103405,0.108322904,1181.65222,3008656476 +4,11798,2257,128,2.0770452,0.108335504,1181.51479,3008656476 +4,11799,2258,128,2.34087634,0.108292714,1181.98164,3008656476 +4,11800,2259,128,2.16899729,0.108486131,1179.87432,3008656476 +4,11801,2260,128,2.08171678,0.108342742,1181.43585,3008656476 +4,11802,2261,128,1.93601358,0.108549211,1179.18867,3008656476 +4,11803,2262,128,1.80182374,0.124185601,1030.71531,3008656476 +4,11804,2263,128,2.09736753,0.108386792,1180.9557,3008656476 +4,11805,2264,128,1.55612791,0.113926646,1123.52996,3008656476 +4,11806,2265,128,1.88152039,0.108410893,1180.69316,3008656476 +4,11807,2266,128,2.18254328,0.108341744,1181.44674,3008656476 +4,11808,2267,128,1.97816086,0.108333346,1181.53832,3008656476 +4,11809,2268,128,2.00121117,0.108373533,1181.10019,3008656476 +4,11810,2269,128,1.28756285,0.108515754,1179.55223,3008656476 +4,11811,2270,128,1.68596339,0.108400708,1180.8041,3008656476 +4,11812,2271,128,1.9566766,0.108531049,1179.386,3008656476 +4,11813,2272,128,2.28681231,0.124391962,1029.0054,3008656476 +4,11814,2273,128,1.77075791,0.122123504,1048.11929,3008656476 +4,11815,2274,128,1.69944084,0.108405573,1180.7511,3008656476 +4,11816,2275,128,1.98910868,0.108477415,1179.96912,3008656476 +4,11817,2276,128,1.97827339,0.108417511,1180.62109,3008656476 +4,11818,2277,128,1.50182748,0.108665011,1177.93206,3008656476 +4,11819,2278,128,1.5435189,0.108260701,1182.33116,3008656476 +4,11820,2279,128,1.70550251,0.108317427,1181.71197,3008656476 +4,11821,2280,128,1.70244455,0.108535583,1179.33673,3008656476 +4,11822,2281,128,2.12703466,0.125112523,1023.07904,3008656476 +4,11823,2282,128,2.41606236,0.108548881,1179.19226,3008656476 +4,11824,2283,128,1.7086972,0.111426071,1148.74373,3008656476 +4,11825,2284,128,1.72949052,0.108409515,1180.70817,3008656476 +4,11826,2285,128,1.5830127,0.1085226,1179.47782,3008656476 +4,11827,2286,128,1.60991442,0.108442603,1180.34791,3008656476 +4,11828,2287,128,1.77125967,0.108410678,1180.6955,3008656476 +4,11829,2288,128,1.64348531,0.108478782,1179.95425,3008656476 +4,11830,2289,128,1.55673778,0.12592856,1016.44933,3008656476 +4,11831,2290,128,1.95393848,0.13985598,915.227222,3008656476 +4,11832,2291,128,2.48735285,0.127543592,1003.57845,3008656476 +4,11833,2292,128,1.64540625,0.135633732,943.718042,3008656476 +4,11834,2293,128,2.22494507,0.129034942,991.979366,3008656476 +4,11835,2294,128,2.38916445,0.127656211,1002.69308,3008656476 +4,11836,2295,128,2.76347208,0.128835417,993.515626,3008656476 +4,11837,2296,128,2.57729101,0.127830099,1001.32912,3008656476 +4,11838,2297,128,1.96636391,0.128602678,995.313643,3008656476 +4,11839,2298,128,1.86565852,0.134553278,951.296036,3008656476 +4,11840,2299,128,2.4973228,0.124143946,1031.06115,3008656476 +4,11841,2300,128,2.12361884,0.140933527,908.229594,3008656476 +4,11842,2301,128,2.35210085,0.127469342,1004.16302,3008656476 +4,11843,2302,128,2.8463552,0.127440942,1004.3868,3008656476 +4,11844,2303,128,2.01179147,0.12725831,1005.82822,3008656476 +4,11845,2304,128,2.03210974,0.128525319,995.91272,3008656476 +4,11846,2305,128,2.4796896,0.128205365,998.398156,3008656476 +4,11847,2306,128,2.75718927,0.128387252,996.983719,3008656476 +4,11848,2307,128,2.34708929,0.134254087,953.41604,3008656476 +4,11849,2308,128,2.33974147,0.142267892,899.711089,3008656476 +4,11850,2309,128,2.83443832,0.127913482,1000.67638,3008656476 +4,11851,2310,128,2.01939654,0.127617526,1002.99703,3008656476 +4,11852,2311,128,2.00408697,0.128212849,998.339878,3008656476 +4,11853,2312,128,1.91402555,0.127760027,1001.87831,3008656476 +4,11854,2313,128,2.39722395,0.126760648,1009.7771,3008656476 +4,11855,2314,128,2.94178152,0.128252249,998.033181,3008656476 +4,11856,2315,128,2.68111396,0.14117939,906.647918,3008656476 +4,11857,2316,128,3.09375787,0.142962864,895.337407,3008656476 +4,11858,2317,128,2.47301126,0.127307499,1005.43959,3008656476 +4,11859,2318,128,2.79269218,0.127351307,1005.09373,3008656476 +4,11860,2319,128,2.55178523,0.127180699,1006.44202,3008656476 +4,11861,2320,128,2.76255965,0.12731992,1005.34151,3008656476 +4,11862,2321,128,2.74009299,0.12706727,1007.34044,3008656476 +4,11863,2322,128,2.80585551,0.127456233,1004.2663,3008656476 +4,11864,2323,128,2.62756562,0.141012271,907.722421,3008656476 +4,11865,2324,128,2.3560307,0.141714769,903.222726,3008656476 +4,11866,2325,128,2.86194992,0.128838014,993.4956,3008656476 +4,11867,2326,128,2.64297605,0.128144894,998.869296,3008656476 +4,11868,2327,128,2.96520329,0.127204303,1006.25527,3008656476 +4,11869,2328,128,2.64103723,0.127071531,1007.30666,3008656476 +4,11870,2329,128,2.34485745,0.128330383,997.425528,3008656476 +4,11871,2330,128,2.62778568,0.127730927,1002.10656,3008656476 +4,11872,2331,128,2.51986265,0.14044128,911.412941,3008656476 +4,11873,2332,128,2.18953037,0.140046254,913.983747,3008656476 +4,11874,2333,128,2.23905635,0.127721803,1002.17815,3008656476 +4,11875,2334,128,1.90636575,0.12852279,995.932317,3008656476 +4,11876,2335,128,2.45790267,0.127917034,1000.64859,3008656476 +4,11877,2336,128,2.90306807,0.12796246,1000.29337,3008656476 +4,11878,2337,128,2.73822355,0.128261328,997.962535,3008656476 +4,11879,2338,128,2.33878994,0.128096248,999.248627,3008656476 +4,11880,2339,128,2.30085135,0.140643932,910.099698,3008656476 +4,11881,2340,128,2.24261904,0.141236797,906.279403,3008656476 +4,11882,2341,128,2.79161596,0.128290711,997.733967,3008656476 +4,11883,2342,128,2.42453074,0.127055434,1007.43428,3008656476 +4,11884,2343,128,2.68807006,0.128506267,996.060371,3008656476 +4,11885,2344,128,2.57883334,0.127412941,1004.60753,3008656476 +4,11886,2345,128,2.82652855,0.127647593,1002.76078,3008656476 +4,11887,2346,128,2.68476748,0.128255636,998.006824,3008656476 +4,11888,2347,128,2.79202914,0.141980059,901.535053,3008656476 +4,11889,2348,128,2.6728406,0.141973355,901.577623,3008656476 +4,11890,2349,128,2.67182398,0.128081799,999.361353,3008656476 +4,11891,2350,128,2.53458858,0.12751188,1003.82804,3008656476 +4,11892,2351,128,2.74179554,0.128443439,996.547593,3008656476 +4,11893,2352,128,2.10160375,0.128230507,998.202401,3008656476 +4,11894,2353,128,2.33924603,0.128196895,998.46412,3008656476 +4,11895,2354,128,2.84526587,0.127656313,1002.69228,3008656476 +4,11896,2355,128,2.36029959,0.143408011,892.558227,3008656476 +4,11897,2356,128,2.59845924,0.144443657,886.158677,3008656476 +4,11898,2357,128,2.12611842,0.128096943,999.243206,3008656476 +4,11899,2358,128,2.32883978,0.127626302,1002.92806,3008656476 +4,11900,2359,128,2.49955273,0.127855369,1001.13121,3008656476 +4,11901,2360,128,2.55161834,0.127559257,1003.4552,3008656476 +4,11902,2361,128,1.99392903,0.12777954,1001.72532,3008656476 +4,11903,2362,128,1.88845384,0.128330857,997.421844,3008656476 +4,11904,2363,128,1.88314891,0.142302889,899.48982,3008656476 +4,11905,2364,128,1.69255769,0.140811195,909.018633,3008656476 +4,11906,2365,128,1.95877361,0.127612665,1003.03524,3008656476 +4,11907,2366,128,1.805035,0.128082791,999.353613,3008656476 +4,11908,2367,128,2.19191432,0.128079024,999.383006,3008656476 +4,11909,2368,128,1.89659989,0.127246984,1005.91775,3008656476 +4,11910,2369,128,2.19772339,0.127061609,1007.38532,3008656476 +4,11911,2370,128,1.90532339,0.128514073,995.99987,3008656476 +4,11912,2371,128,1.79234731,0.142142708,900.503457,3008656476 +4,11913,2372,128,2.70970154,0.141077387,907.30345,3008656476 +4,11914,2373,128,2.79011989,0.128066956,999.47718,3008656476 +4,11915,2374,128,2.80550432,0.127483824,1004.04895,3008656476 +4,11916,2375,128,1.89169443,0.127690638,1002.42275,3008656476 +4,11917,2376,128,2.10542107,0.128569479,995.570652,3008656476 +4,11918,2377,128,2.91898251,0.12754101,1003.59876,3008656476 +4,11919,2378,128,2.23039603,0.123289103,1038.21017,3008656476 +4,11920,2379,128,1.8698312,0.140950179,908.122295,3008656476 +4,11921,2380,128,2.37761593,0.14010914,913.573518,3008656476 +4,11922,2381,128,1.90616381,0.116338794,1100.23489,3008656476 +4,11923,2382,128,2.22851968,0.108485491,1179.88128,3008656476 +4,11924,2383,128,2.42911267,0.10856892,1178.97461,3008656476 +4,11925,2384,64,1.48267293,0.105027266,609.365572,3008656476 diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/summary.json b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/summary.json new file mode 100644 index 0000000..fbc5403 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr2e-5/summary.json @@ -0,0 +1,32 @@ +{ + "status": "complete", + "run_state": "complete", + "resumed": true, + "device": "cuda", + "epoch": 5, + "global_step": 11925, + "next_batch": 0, + "train_mean_loss": 2.2658238163732287, + "validation_mean_loss": 4.3182362814938715, + "validation_perplexity": 75.056133592876421, + "validation_perplexity_overflow": false, + "best_validation_loss": 3.710212669260581, + "train_tokens_per_second": 967.54265701511542, + "cuda_async_pool_peak_bytes": 3008656476, + "wall_seconds_this_process": 281.19626247000002, + "config": {"block_size": 1024, "vocab_size": 50257, "n_layer": 12, "n_head": 12, "n_embd": 768, "batch_size": 2, "sequence_length": 64, "max_epochs": 8, "learning_rate": 2.0000000000000002e-05, "seed": 1337}, + "dataset_coverage": { + "train": {"samples": 4769, "raw_tokens": 305260, "usable_target_tokens": 305216, "dropped_tokens": 43}, + "validation": {"samples": 511, "raw_tokens": 32768, "usable_target_tokens": 32704, "dropped_tokens": 63} + }, + "artifacts": { + "steps_csv": {"path": "steps.csv", "exists": true}, + "epochs_csv": {"path": "epochs.csv", "exists": true}, + "latest_checkpoint": {"path": "latest.ckpt", "exists": true}, + "best_checkpoint": {"path": "best.ckpt", "exists": true}, + "final_checkpoint": {"path": "final.ckpt", "exists": true}, + "baseline_generation": {"path": "baseline.txt", "exists": true}, + "best_generation": {"path": "best.txt", "exists": true}, + "final_generation": {"path": "final.txt", "exists": true} + } +} diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/baseline.txt b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/baseline.txt new file mode 100644 index 0000000..06bec4d --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/baseline.txt @@ -0,0 +1,5 @@ +The meaning of life is that's what matters us. It's about everything that actually matters to you. + +It means you are prepared to do anything and everything to live a fulfilling, happy life. + +For many North Koreans, living a fulfilling life means living a full life, coping with hunger, and taking diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/best.txt b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/best.txt new file mode 100644 index 0000000..ee966bc --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/best.txt @@ -0,0 +1,10 @@ +The meaning of life is of this order and no other. + +<|endoftext|>ANTONIO: +O, I speak for liberty. +Go on, good powers; I'll be hanged. + +<|endoftext|>BAGOT: +Take good leave of me; I'll question +What lack of pious submission there is, + diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/epochs.csv b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/epochs.csv new file mode 100644 index 0000000..766906b --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/epochs.csv @@ -0,0 +1,6 @@ +epoch,global_step,train_tokens,val_tokens,train_mean_loss,val_mean_loss,val_perplexity,val_perplexity_overflow,train_tokens_per_second,cuda_async_pool_peak_bytes,improved +0,2385,305216,32704,3.62040055036,3.8443079578,46.7263365623,0,968.808471442,3008656476,1 +1,4770,305216,32704,3.07557422321,3.81177762063,45.2307705965,0,975.415964238,3008656476,1 +2,7155,305216,32704,2.52584860792,4.11912962695,61.5056860694,0,980.241359127,3008656476,0 +3,9540,305216,32704,1.89321888605,4.82585793512,124.693401354,0,977.90841562,3008656476,0 +4,11925,305216,32704,1.31160235175,5.57148814435,262.824929795,0,998.310820578,3008656476,0 diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/final.txt b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/final.txt new file mode 100644 index 0000000..2723018 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/final.txt @@ -0,0 +1,7 @@ +The meaning of life is the end; whereof that I care +Is dim for its continuance. + +<|endoftext|>ALONSO: +So, my meaning in this place, concerns me a goodly +I know not how I shall fare in this place: but +The ends I suffer are mine, and I diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/steps.csv b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/steps.csv new file mode 100644 index 0000000..17350a0 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/steps.csv @@ -0,0 +1,11926 @@ +epoch,global_step,batch_index,tokens,loss,compute_seconds,tokens_per_second,cuda_async_pool_peak_bytes +0,1,0,128,5.43915796,0.109352736,1170.52398,3008656476 +0,2,1,128,4.76175833,0.122582017,1044.19884,3008656476 +0,3,2,128,4.01450634,0.131414004,974.021003,3008656476 +0,4,3,128,4.45687723,0.129957867,984.934602,3008656476 +0,5,4,128,4.34562063,0.162852802,785.985862,3008656476 +0,6,5,128,4.91529751,0.130235735,982.833168,3008656476 +0,7,6,128,4.35404158,0.130302532,982.329338,3008656476 +0,8,7,128,4.83548594,0.13124784,975.254145,3008656476 +0,9,8,128,4.73530912,0.130656542,979.667746,3008656476 +0,10,9,128,4.47452497,0.130472646,981.048549,3008656476 +0,11,10,128,4.10514116,0.13220567,968.188429,3008656476 +0,12,11,128,4.3549428,0.131962753,969.97067,3008656476 +0,13,12,128,3.9146843,0.156727978,816.701661,3008656476 +0,14,13,128,3.57572889,0.132534545,965.785939,3008656476 +0,15,14,128,3.5027194,0.132899242,963.135666,3008656476 +0,16,15,128,3.81042981,0.135030385,947.934793,3008656476 +0,17,16,128,4.26758957,0.137253447,932.581314,3008656476 +0,18,17,128,4.12068701,0.145143595,881.885281,3008656476 +0,19,18,128,3.92891526,0.145419982,880.209159,3008656476 +0,20,19,128,4.48937654,0.150501469,850.490037,3008656476 +0,21,20,128,3.93550181,0.146649433,872.829832,3008656476 +0,22,21,128,4.5752039,0.13407232,954.708623,3008656476 +0,23,22,128,3.94279194,0.132046398,969.356241,3008656476 +0,24,23,128,3.05836821,0.130696415,979.368868,3008656476 +0,25,24,128,3.36289835,0.132559862,965.601488,3008656476 +0,26,25,128,3.96740079,0.131432048,973.887282,3008656476 +0,27,26,128,4.03314257,0.131132578,976.111367,3008656476 +0,28,27,128,4.16472101,0.15294815,836.884918,3008656476 +0,29,28,128,3.74521685,0.13043442,981.336061,3008656476 +0,30,29,128,3.88957906,0.130234357,982.843567,3008656476 +0,31,30,128,3.5978024,0.130544829,980.506091,3008656476 +0,32,31,128,3.86698389,0.131972693,969.897614,3008656476 +0,33,32,128,4.1606884,0.129336098,989.669566,3008656476 +0,34,33,128,4.05943918,0.128253894,998.02038,3008656476 +0,35,34,128,3.92738867,0.127825994,1001.36127,3008656476 +0,36,35,128,3.92171931,0.156824761,816.197641,3008656476 +0,37,36,128,3.9682889,0.129044538,991.905601,3008656476 +0,38,37,128,3.6022284,0.127100947,1007.07354,3008656476 +0,39,38,128,3.50168824,0.127797882,1001.58154,3008656476 +0,40,39,128,3.10213542,0.126394763,1012.70019,3008656476 +0,41,40,128,3.81049395,0.128120026,999.063175,3008656476 +0,42,41,128,3.89310169,0.126800234,1009.46186,3008656476 +0,43,42,128,4.09084415,0.127219262,1006.13695,3008656476 +0,44,43,128,4.2136507,0.152475248,839.480517,3008656476 +0,45,44,128,4.46868038,0.124524511,1027.91008,3008656476 +0,46,45,128,4.28972721,0.127741541,1002.0233,3008656476 +0,47,46,128,3.43626714,0.126448739,1012.2679,3008656476 +0,48,47,128,3.87442303,0.126554575,1011.42136,3008656476 +0,49,48,128,3.50032806,0.127375208,1004.90513,3008656476 +0,50,49,128,3.71880412,0.127926974,1000.57084,3008656476 +0,51,50,128,3.10434818,0.126469759,1012.09966,3008656476 +0,52,51,128,4.26918936,0.142954276,895.391195,3008656476 +0,53,52,128,3.0025177,0.132155128,968.558708,3008656476 +0,54,53,128,4.02489758,0.126998856,1007.88309,3008656476 +0,55,54,128,3.06549597,0.127076649,1007.26609,3008656476 +0,56,55,128,3.49249363,0.127679749,1002.50824,3008656476 +0,57,56,128,4.62538958,0.127395092,1004.74828,3008656476 +0,58,57,128,3.79839206,0.126161766,1014.57045,3008656476 +0,59,58,128,3.65042806,0.124317553,1029.6213,3008656476 +0,60,59,128,3.74456525,0.14395432,889.170954,3008656476 +0,61,60,128,3.40458369,0.140018243,914.166592,3008656476 +0,62,61,128,4.57583952,0.126791762,1009.52931,3008656476 +0,63,62,128,3.54980326,0.126087058,1015.1716,3008656476 +0,64,63,128,4.7026186,0.126523799,1011.66738,3008656476 +0,65,64,128,3.05901504,0.126227263,1014.04401,3008656476 +0,66,65,128,3.97681952,0.126052615,1015.44899,3008656476 +0,67,66,128,3.86700964,0.125298711,1021.55879,3008656476 +0,68,67,128,4.77910709,0.14164095,903.693459,3008656476 +0,69,68,128,4.89685392,0.139041786,920.586564,3008656476 +0,70,69,128,3.99190426,0.125628198,1018.87954,3008656476 +0,71,70,128,4.42439651,0.125980883,1016.02717,3008656476 +0,72,71,128,4.30975103,0.126889414,1008.75239,3008656476 +0,73,72,128,4.23992062,0.126720682,1010.09557,3008656476 +0,74,73,128,3.82878804,0.12737609,1004.89817,3008656476 +0,75,74,128,3.69858217,0.127857218,1001.11673,3008656476 +0,76,75,128,3.62936115,0.142003005,901.389376,3008656476 +0,77,76,128,4.70963955,0.144139627,888.027829,3008656476 +0,78,77,128,4.41674662,0.127256085,1005.84581,3008656476 +0,79,78,128,3.92009854,0.127594934,1003.17462,3008656476 +0,80,79,128,3.85318851,0.127592725,1003.19199,3008656476 +0,81,80,128,4.39176989,0.128765313,994.056528,3008656476 +0,82,81,128,4.22622061,0.12895397,992.602244,3008656476 +0,83,82,128,4.23839855,0.128992681,992.304362,3008656476 +0,84,83,128,4.36341143,0.146837352,871.712805,3008656476 +0,85,84,128,3.60295653,0.144291053,887.095889,3008656476 +0,86,85,128,3.53210926,0.127992622,1000.05764,3008656476 +0,87,86,128,3.59649801,0.128689508,994.642081,3008656476 +0,88,87,128,3.41287422,0.130411039,981.512002,3008656476 +0,89,88,128,3.44923782,0.129699683,986.895242,3008656476 +0,90,89,128,4.09656,0.130278142,982.513245,3008656476 +0,91,90,128,3.50965285,0.129875635,985.558223,3008656476 +0,92,91,128,3.7399168,0.145803848,877.891782,3008656476 +0,93,92,128,4.25962734,0.142252018,899.811488,3008656476 +0,94,93,128,3.57823062,0.131996592,969.722006,3008656476 +0,95,94,128,3.39931393,0.132325473,967.311864,3008656476 +0,96,95,128,4.00829315,0.138291428,925.581591,3008656476 +0,97,96,128,3.47342563,0.131577679,972.809377,3008656476 +0,98,97,128,4.05721378,0.131496115,973.412789,3008656476 +0,99,98,128,4.20768452,0.13072086,979.185724,3008656476 +0,100,99,128,3.88224149,0.144825504,883.822231,3008656476 +0,101,100,128,3.90572786,0.141054908,907.448041,3008656476 +0,102,101,128,3.54824924,0.132239427,967.941278,3008656476 +0,103,102,128,3.80340219,0.130864358,978.112008,3008656476 +0,104,103,128,4.07581186,0.130270331,982.572156,3008656476 +0,105,104,128,3.0855267,0.131344541,974.536125,3008656476 +0,106,105,128,4.07911301,0.129664445,987.163443,3008656476 +0,107,106,128,3.81872225,0.129899487,985.377256,3008656476 +0,108,107,128,3.52293777,0.141594585,903.989372,3008656476 +0,109,108,128,4.09467602,0.131105382,976.313848,3008656476 +0,110,109,128,2.9379034,0.126163846,1014.55373,3008656476 +0,111,110,128,3.62632227,0.127163223,1006.58034,3008656476 +0,112,111,128,3.64199114,0.126946893,1008.29565,3008656476 +0,113,112,128,4.30972052,0.125931323,1016.42703,3008656476 +0,114,113,128,4.93235254,0.126618003,1010.9147,3008656476 +0,115,114,128,4.61468697,0.126678973,1010.42815,3008656476 +0,116,115,128,4.87855387,0.139206637,919.496389,3008656476 +0,117,116,128,3.83959436,0.142588285,897.689456,3008656476 +0,118,117,128,4.32557487,0.127135746,1006.79788,3008656476 +0,119,118,128,4.0002017,0.127305307,1005.45691,3008656476 +0,120,119,128,4.24121523,0.126028057,1015.64686,3008656476 +0,121,120,128,4.32950306,0.126905925,1008.62115,3008656476 +0,122,121,128,3.91631794,0.127516241,1003.7937,3008656476 +0,123,122,128,3.22760201,0.127146419,1006.71337,3008656476 +0,124,123,128,3.48621964,0.139688413,916.325107,3008656476 +0,125,124,128,3.53973079,0.142041303,901.146338,3008656476 +0,126,125,128,3.36730766,0.126339877,1013.14013,3008656476 +0,127,126,128,3.33611488,0.127253559,1005.86578,3008656476 +0,128,127,128,4.38917685,0.127623559,1002.94962,3008656476 +0,129,128,128,4.36252594,0.126928797,1008.4394,3008656476 +0,130,129,128,4.32256222,0.126475383,1012.05465,3008656476 +0,131,130,128,4.41091967,0.126607116,1011.00162,3008656476 +0,132,131,128,3.82262516,0.141167011,906.727422,3008656476 +0,133,132,128,3.44471312,0.142167032,900.349386,3008656476 +0,134,133,128,3.89277196,0.126863399,1008.95925,3008656476 +0,135,134,128,4.41246986,0.126473696,1012.06815,3008656476 +0,136,135,128,3.85553956,0.125919912,1016.51913,3008656476 +0,137,136,128,3.43526816,0.125832577,1017.22466,3008656476 +0,138,137,128,3.44118881,0.125992554,1015.93305,3008656476 +0,139,138,128,2.79255104,0.126263928,1013.74955,3008656476 +0,140,139,128,3.38710761,0.142584008,897.716383,3008656476 +0,141,140,128,2.62172556,0.135956672,941.476414,3008656476 +0,142,141,128,2.56689286,0.128838473,993.49206,3008656476 +0,143,142,128,3.47187138,0.129841983,985.813656,3008656476 +0,144,143,128,3.05380106,0.131314731,974.757356,3008656476 +0,145,144,128,2.34381771,0.132404515,966.734405,3008656476 +0,146,145,128,2.07316017,0.132797752,963.871738,3008656476 +0,147,146,128,3.41967654,0.132803074,963.833111,3008656476 +0,148,147,128,4.52840805,0.146388007,874.388569,3008656476 +0,149,148,128,4.54792452,0.14449635,885.835525,3008656476 +0,150,149,128,3.44210958,0.135890163,941.937203,3008656476 +0,151,150,128,2.75891972,0.132379969,966.913657,3008656476 +0,152,151,128,2.07564259,0.132573338,965.503335,3008656476 +0,153,152,128,3.03360105,0.139105893,920.162311,3008656476 +0,154,153,128,3.95268416,0.136092799,940.534701,3008656476 +0,155,154,128,3.03787756,0.144073628,888.434627,3008656476 +0,156,155,128,4.1483922,0.168642158,759.00357,3008656476 +0,157,156,128,4.62038755,0.138884955,921.626104,3008656476 +0,158,157,128,4.30969572,0.143954632,889.169027,3008656476 +0,159,158,128,3.87543035,0.135296694,946.068941,3008656476 +0,160,159,128,3.48770761,0.130170169,983.328216,3008656476 +0,161,160,128,4.00656843,0.132217518,968.10167,3008656476 +0,162,161,128,3.7550981,0.130538039,980.557093,3008656476 +0,163,162,128,3.31066251,0.130705991,979.297116,3008656476 +0,164,163,128,4.21993208,0.152138988,841.33595,3008656476 +0,165,164,128,4.27653217,0.130106189,983.811769,3008656476 +0,166,165,128,3.73581123,0.129651333,987.263278,3008656476 +0,167,166,128,4.00252056,0.129299757,989.947723,3008656476 +0,168,167,128,3.61983371,0.13024269,982.780684,3008656476 +0,169,168,128,3.50664139,0.128578885,995.497822,3008656476 +0,170,169,128,3.86123586,0.129178472,990.87718,3008656476 +0,171,170,128,3.70452619,0.128248304,998.063881,3008656476 +0,172,171,128,3.43430376,0.129519575,988.267604,3008656476 +0,173,172,128,3.79769087,0.127156872,1006.63061,3008656476 +0,174,173,128,3.5571928,0.127360451,1005.02157,3008656476 +0,175,174,128,3.20889997,0.126412617,1012.55716,3008656476 +0,176,175,128,3.85929084,0.127002667,1007.85285,3008656476 +0,177,176,128,3.19424701,0.126106106,1015.01826,3008656476 +0,178,177,128,4.2040863,0.126636363,1010.76813,3008656476 +0,179,178,128,3.19959927,0.126712851,1010.158,3008656476 +0,180,179,128,4.41043234,0.154220116,829.982517,3008656476 +0,181,180,128,3.81987977,0.127495194,1003.95941,3008656476 +0,182,181,128,3.7336874,0.126388192,1012.75284,3008656476 +0,183,182,128,4.5116415,0.126855672,1009.02071,3008656476 +0,184,183,128,2.84197211,0.12707013,1007.31777,3008656476 +0,185,184,128,3.06259251,0.127657564,1002.68246,3008656476 +0,186,185,128,3.91807103,0.126760115,1009.78135,3008656476 +0,187,186,128,3.30521321,0.127581354,1003.2814,3008656476 +0,188,187,128,3.06503344,0.155948881,820.781779,3008656476 +0,189,188,128,3.88528275,0.126856951,1009.01054,3008656476 +0,190,189,128,3.68015289,0.128067678,999.471545,3008656476 +0,191,190,128,3.7486167,0.126895263,1008.7059,3008656476 +0,192,191,128,3.09418106,0.12635826,1012.99274,3008656476 +0,193,192,128,2.96666026,0.126861227,1008.97653,3008656476 +0,194,193,128,3.72230506,0.126901198,1008.65872,3008656476 +0,195,194,128,3.37898588,0.127605954,1003.08799,3008656476 +0,196,195,128,4.35348415,0.151121441,847.000923,3008656476 +0,197,196,128,3.76858139,0.12682231,1009.28614,3008656476 +0,198,197,128,3.49477124,0.12605726,1015.41157,3008656476 +0,199,198,128,3.57423353,0.126200143,1014.26193,3008656476 +0,200,199,128,4.41445065,0.125171631,1022.59593,3008656476 +0,201,200,128,4.1299324,0.125628753,1018.87503,3008656476 +0,202,201,128,3.55454278,0.126566501,1011.32605,3008656476 +0,203,202,128,4.59414291,0.125890358,1016.75777,3008656476 +0,204,203,128,4.10906458,0.140414088,911.589441,3008656476 +0,205,204,128,3.3987906,0.133907956,955.880471,3008656476 +0,206,205,128,3.97178292,0.129863798,985.648056,3008656476 +0,207,206,128,3.03848457,0.12999649,984.64197,3008656476 +0,208,207,128,3.34317255,0.130529803,980.618963,3008656476 +0,209,208,128,3.28923893,0.129957447,984.937785,3008656476 +0,210,209,128,3.1905334,0.129929035,985.153165,3008656476 +0,211,210,128,2.95476174,0.130341129,982.038448,3008656476 +0,212,211,128,3.93343019,0.144881403,883.481229,3008656476 +0,213,212,128,3.77844429,0.139245896,919.237146,3008656476 +0,214,213,128,3.37035608,0.139187236,919.624555,3008656476 +0,215,214,128,2.69189858,0.132426218,966.575969,3008656476 +0,216,215,128,2.92867041,0.138879661,921.661236,3008656476 +0,217,216,128,4.22849655,0.132889265,963.207976,3008656476 +0,218,217,128,3.53103065,0.130513457,980.741779,3008656476 +0,219,218,128,3.25322104,0.133154402,961.290037,3008656476 +0,220,219,128,3.97011948,0.1632191,784.221945,3008656476 +0,221,220,128,3.09145617,0.130617172,979.963033,3008656476 +0,222,221,128,2.95963216,0.131155204,975.942975,3008656476 +0,223,222,128,3.45651746,0.13031013,982.272061,3008656476 +0,224,223,128,3.02426124,0.128950622,992.628015,3008656476 +0,225,224,128,3.41966772,0.130002864,984.593693,3008656476 +0,226,225,128,3.27290988,0.128978894,992.410433,3008656476 +0,227,226,128,3.39059544,0.128629056,995.109534,3008656476 +0,228,227,128,4.02552938,0.155414704,823.602894,3008656476 +0,229,228,128,3.66155744,0.130445428,981.253249,3008656476 +0,230,229,128,3.55004334,0.131322404,974.700402,3008656476 +0,231,230,128,3.94702792,0.128735199,994.28906,3008656476 +0,232,231,128,3.97290301,0.14839699,862.551188,3008656476 +0,233,232,128,3.64294338,0.155453768,823.395931,3008656476 +0,234,233,128,3.95425725,0.12704984,1007.47864,3008656476 +0,235,234,128,3.89133358,0.141176683,906.665303,3008656476 +0,236,235,128,3.0406158,0.145627361,878.955707,3008656476 +0,237,236,128,3.97743392,0.127194348,1006.33402,3008656476 +0,238,237,128,3.19512105,0.126410806,1012.57166,3008656476 +0,239,238,128,3.6159575,0.126658513,1010.59137,3008656476 +0,240,239,128,4.05181932,0.127733654,1002.08517,3008656476 +0,241,240,128,3.72055387,0.127004237,1007.84039,3008656476 +0,242,241,128,3.50966239,0.125781647,1017.63654,3008656476 +0,243,242,128,3.63182092,0.14016625,913.201288,3008656476 +0,244,243,128,3.95831656,0.142617821,897.503546,3008656476 +0,245,244,128,4.01789713,0.126468771,1012.10757,3008656476 +0,246,245,128,3.00530267,0.126397263,1012.68016,3008656476 +0,247,246,128,3.70140576,0.126357733,1012.99696,3008656476 +0,248,247,128,3.83229947,0.127055646,1007.4326,3008656476 +0,249,248,128,3.94048667,0.126618174,1010.91333,3008656476 +0,250,249,128,2.17729974,0.128039089,999.69471,3008656476 +0,251,250,128,3.24679279,0.138903358,921.504,3008656476 +0,252,251,128,4.15540934,0.14111457,907.06438,3008656476 +0,253,252,128,3.82499456,0.126737629,1009.96051,3008656476 +0,254,253,128,3.6616888,0.126859572,1008.98969,3008656476 +0,255,254,128,3.95950723,0.127052189,1007.46001,3008656476 +0,256,255,128,3.76826048,0.12715169,1006.67164,3008656476 +0,257,256,128,3.18363905,0.12788131,1000.92813,3008656476 +0,258,257,128,3.79502988,0.127996929,1000.02399,3008656476 +0,259,258,128,3.28826046,0.142094074,900.811669,3008656476 +0,260,259,128,3.79652739,0.139931838,914.731071,3008656476 +0,261,260,128,3.97861218,0.127296715,1005.52477,3008656476 +0,262,261,128,3.53245759,0.126871834,1008.89217,3008656476 +0,263,262,128,3.90545869,0.127859694,1001.09734,3008656476 +0,264,263,128,2.89796567,0.12669032,1010.33765,3008656476 +0,265,264,128,3.45512605,0.127217654,1006.14967,3008656476 +0,266,265,128,3.18033361,0.127302443,1005.47953,3008656476 +0,267,266,128,3.42171049,0.126903291,1008.64208,3008656476 +0,268,267,128,2.55706978,0.153373091,834.566215,3008656476 +0,269,268,128,2.70739722,0.127501011,1003.91361,3008656476 +0,270,269,128,3.45169663,0.126682873,1010.39704,3008656476 +0,271,270,128,4.15687799,0.126617205,1010.92107,3008656476 +0,272,271,128,2.8703537,0.126574246,1011.26417,3008656476 +0,273,272,128,3.40194082,0.125966887,1016.14006,3008656476 +0,274,273,128,4.04879808,0.126402514,1012.63809,3008656476 +0,275,274,128,3.30000854,0.126604481,1011.02267,3008656476 +0,276,275,128,3.59604001,0.160439962,797.806222,3008656476 +0,277,276,128,3.79066324,0.126747106,1009.88499,3008656476 +0,278,277,128,4.45564365,0.126733216,1009.99567,3008656476 +0,279,278,128,3.147825,0.126110737,1014.98098,3008656476 +0,280,279,128,3.35309625,0.126552467,1011.4382,3008656476 +0,281,280,128,3.34182906,0.126377083,1012.84186,3008656476 +0,282,281,128,3.27353907,0.126580806,1011.21176,3008656476 +0,283,282,128,2.66367817,0.127294763,1005.54019,3008656476 +0,284,283,128,2.87900376,0.159222098,803.908513,3008656476 +0,285,284,128,2.65987849,0.126300629,1013.45497,3008656476 +0,286,285,128,2.72112083,0.127334682,1005.22496,3008656476 +0,287,286,128,3.24456429,0.126838984,1009.15346,3008656476 +0,288,287,128,2.87824678,0.12835776,997.21279,3008656476 +0,289,288,128,2.63997173,0.128023602,999.815643,3008656476 +0,290,289,128,3.77745581,0.128331056,997.420297,3008656476 +0,291,290,128,3.10137367,0.128538243,995.812585,3008656476 +0,292,291,128,3.92300248,0.158670347,806.703977,3008656476 +0,293,292,128,3.59262896,0.127705009,1002.30994,3008656476 +0,294,293,128,3.02321672,0.127694565,1002.39192,3008656476 +0,295,294,128,3.08433986,0.127903949,1000.75096,3008656476 +0,296,295,128,3.51038671,0.128234751,998.169365,3008656476 +0,297,296,128,4.06086969,0.129024869,992.05681,3008656476 +0,298,297,128,3.49112487,0.129200127,990.7111,3008656476 +0,299,298,128,3.4417963,0.130314203,982.24136,3008656476 +0,300,299,128,3.70471191,0.16166758,791.748104,3008656476 +0,301,300,128,3.04037809,0.12951654,988.290762,3008656476 +0,302,301,128,3.5293076,0.129277942,990.114771,3008656476 +0,303,302,128,3.35148501,0.129329165,989.72262,3008656476 +0,304,303,128,3.79739904,0.129890369,985.446427,3008656476 +0,305,304,128,3.25137639,0.130669063,979.573872,3008656476 +0,306,305,128,3.33525562,0.129903421,985.347414,3008656476 +0,307,306,128,3.1156311,0.130687813,979.433331,3008656476 +0,308,307,128,2.72899437,0.157285818,813.805095,3008656476 +0,309,308,128,4.27539778,0.139448674,917.900446,3008656476 +0,310,309,128,3.96971107,0.133374692,959.70231,3008656476 +0,311,310,128,3.2222805,0.130453376,981.193465,3008656476 +0,312,311,128,2.99308419,0.132346748,967.156367,3008656476 +0,313,312,128,3.10622168,0.130478074,981.007736,3008656476 +0,314,313,128,3.23549271,0.130171621,983.317247,3008656476 +0,315,314,128,2.54959393,0.14554547,879.45025,3008656476 +0,316,315,128,3.36955214,0.144545398,885.534938,3008656476 +0,317,316,128,3.61213398,0.129672591,987.10143,3008656476 +0,318,317,128,3.16398907,0.130897448,977.864748,3008656476 +0,319,318,128,3.54148149,0.128675933,994.747013,3008656476 +0,320,319,128,3.92232251,0.127994888,1000.03994,3008656476 +0,321,320,128,4.23465014,0.12899655,992.2746,3008656476 +0,322,321,128,3.57751608,0.127674706,1002.54783,3008656476 +0,323,322,128,3.47146654,0.142683519,897.090294,3008656476 +0,324,323,128,3.66123772,0.141252521,906.178517,3008656476 +0,325,324,128,2.71897602,0.128594811,995.374533,3008656476 +0,326,325,128,4.09114599,0.127360255,1005.02311,3008656476 +0,327,326,128,3.78155994,0.127648962,1002.75003,3008656476 +0,328,327,128,3.94332099,0.127692008,1002.41199,3008656476 +0,329,328,128,3.9224062,0.125764063,1017.77882,3008656476 +0,330,329,128,3.7150197,0.127340496,1005.17906,3008656476 +0,331,330,128,4.63339329,0.13968886,916.322175,3008656476 +0,332,331,128,3.9129591,0.136469915,937.935661,3008656476 +0,333,332,128,3.52909589,0.125905388,1016.6364,3008656476 +0,334,333,128,4.0795126,0.127321301,1005.3306,3008656476 +0,335,334,128,3.60699725,0.127016151,1007.74586,3008656476 +0,336,335,128,4.06296158,0.128237675,998.146606,3008656476 +0,337,336,128,3.87995076,0.126279333,1013.62588,3008656476 +0,338,337,128,4.12581158,0.127243164,1005.94795,3008656476 +0,339,338,128,3.63146281,0.127538941,1003.61504,3008656476 +0,340,339,128,3.73902392,0.151747447,843.506777,3008656476 +0,341,340,128,3.36675,0.126673447,1010.47223,3008656476 +0,342,341,128,3.39115071,0.127721783,1002.17831,3008656476 +0,343,342,128,3.85381651,0.126787225,1009.56544,3008656476 +0,344,343,128,3.27779269,0.126493974,1011.90591,3008656476 +0,345,344,128,4.04296541,0.12610726,1015.00897,3008656476 +0,346,345,128,2.96125889,0.126783768,1009.59296,3008656476 +0,347,346,128,3.37817383,0.12547028,1020.16191,3008656476 +0,348,347,128,4.54961681,0.148975289,859.202898,3008656476 +0,349,348,128,3.81714153,0.124827733,1025.41316,3008656476 +0,350,349,128,4.07954311,0.127810806,1001.48027,3008656476 +0,351,350,128,4.10285378,0.12857266,995.54602,3008656476 +0,352,351,128,3.84780931,0.129309617,989.872238,3008656476 +0,353,352,128,4.82390642,0.130115068,983.744634,3008656476 +0,354,353,128,4.11041212,0.130821912,978.429363,3008656476 +0,355,354,128,3.2322104,0.130008796,984.548769,3008656476 +0,356,355,128,3.63031936,0.158344985,808.361566,3008656476 +0,357,356,128,3.8883996,0.123628629,1035.35889,3008656476 +0,358,357,128,3.4009459,0.131324656,974.683688,3008656476 +0,359,358,128,2.3599534,0.133244225,960.642009,3008656476 +0,360,359,128,3.27848744,0.144499123,885.818525,3008656476 +0,361,360,128,3.23565078,0.144146437,887.985875,3008656476 +0,362,361,128,3.0922761,0.139774727,915.759256,3008656476 +0,363,362,128,3.24579239,0.1564251,818.282999,3008656476 +0,364,363,128,3.67428923,0.143315088,893.136946,3008656476 +0,365,364,128,3.75202847,0.130441953,981.279389,3008656476 +0,366,365,128,3.86190104,0.130636059,979.821352,3008656476 +0,367,366,128,3.76416302,0.13076471,978.857369,3008656476 +0,368,367,128,3.93288136,0.131533142,973.13877,3008656476 +0,369,368,128,3.08580041,0.128716847,994.430822,3008656476 +0,370,369,128,3.63108039,0.129592016,987.715169,3008656476 +0,371,370,128,3.64066267,0.144758025,884.234225,3008656476 +0,372,371,128,3.13235712,0.143155073,894.135271,3008656476 +0,373,372,128,3.58851147,0.129129512,991.252875,3008656476 +0,374,373,128,4.08735228,0.129806683,986.081741,3008656476 +0,375,374,128,3.85090685,0.127610497,1003.05228,3008656476 +0,376,375,128,3.26670933,0.127120388,1006.91952,3008656476 +0,377,376,128,4.21803808,0.128531557,995.864385,3008656476 +0,378,377,128,2.99206805,0.129115718,991.358775,3008656476 +0,379,378,128,3.59203315,0.139977657,914.431651,3008656476 +0,380,379,128,2.42929029,0.140257921,912.60443,3008656476 +0,381,380,128,3.18419814,0.127075332,1007.27653,3008656476 +0,382,381,128,2.93941855,0.126673811,1010.46932,3008656476 +0,383,382,128,2.51082873,0.126737516,1009.96141,3008656476 +0,384,383,128,2.90791726,0.126654241,1010.62546,3008656476 +0,385,384,128,4.48128653,0.126974354,1008.07758,3008656476 +0,386,385,128,4.78205109,0.12711298,1006.9782,3008656476 +0,387,386,128,3.37896895,0.141000728,907.796731,3008656476 +0,388,387,128,2.81898117,0.13949336,917.606401,3008656476 +0,389,388,128,3.72614551,0.12628452,1013.58425,3008656476 +0,390,389,128,4.52128601,0.127606638,1003.08261,3008656476 +0,391,390,128,3.86858511,0.127420291,1004.54958,3008656476 +0,392,391,128,4.07263613,0.127752459,1001.93766,3008656476 +0,393,392,128,2.91571474,0.127772404,1001.78126,3008656476 +0,394,393,128,4.04162836,0.126229837,1014.02333,3008656476 +0,395,394,128,3.48304319,0.141091394,907.213377,3008656476 +0,396,395,128,3.88693762,0.146866094,871.542209,3008656476 +0,397,396,128,3.52885199,0.126912835,1008.56623,3008656476 +0,398,397,128,4.2843008,0.12734654,1005.13135,3008656476 +0,399,398,128,3.68584967,0.126950067,1008.27044,3008656476 +0,400,399,128,4.22991753,0.126972846,1008.08956,3008656476 +0,401,400,128,3.82025576,0.127889193,1000.86643,3008656476 +0,402,401,128,3.91256237,0.127239971,1005.97319,3008656476 +0,403,402,128,3.51721072,0.138287144,925.610265,3008656476 +0,404,403,128,3.36755896,0.146634997,872.915761,3008656476 +0,405,404,128,3.45602512,0.126310415,1013.37645,3008656476 +0,406,405,128,3.23831987,0.126520633,1011.69269,3008656476 +0,407,406,128,3.34076834,0.126569942,1011.29856,3008656476 +0,408,407,128,2.18363094,0.127046875,1007.50215,3008656476 +0,409,408,128,3.06451631,0.125822051,1017.30976,3008656476 +0,410,409,128,4.0748148,0.126292089,1013.5235,3008656476 +0,411,410,128,2.58135629,0.125974623,1016.07766,3008656476 +0,412,411,128,3.88838267,0.151642605,844.089957,3008656476 +0,413,412,128,2.8660984,0.125294973,1021.58927,3008656476 +0,414,413,128,3.01306987,0.126083185,1015.20278,3008656476 +0,415,414,128,2.93421936,0.126594251,1011.10437,3008656476 +0,416,415,128,4.08555794,0.127493753,1003.97076,3008656476 +0,417,416,128,3.45146823,0.127130316,1006.84089,3008656476 +0,418,417,128,2.61933398,0.127643545,1002.79258,3008656476 +0,419,418,128,3.19640732,0.128308727,997.593874,3008656476 +0,420,419,128,2.31741905,0.163225551,784.190951,3008656476 +0,421,420,128,1.90288806,0.126726474,1010.04941,3008656476 +0,422,421,128,3.78207588,0.126771586,1009.68998,3008656476 +0,423,422,128,2.8797431,0.12643388,1012.38687,3008656476 +0,424,423,128,3.50272274,0.127458216,1004.25068,3008656476 +0,425,424,128,4.18805933,0.128883794,993.142707,3008656476 +0,426,425,128,4.48010206,0.129046664,991.88926,3008656476 +0,427,426,128,4.9469471,0.129959213,984.924401,3008656476 +0,428,427,128,3.45098543,0.161769582,791.248876,3008656476 +0,429,428,128,2.23609805,0.127855152,1001.13291,3008656476 +0,430,429,128,2.40346193,0.128545089,995.75955,3008656476 +0,431,430,128,2.55644608,0.128997785,992.2651,3008656476 +0,432,431,128,2.49365258,0.129002453,992.229194,3008656476 +0,433,432,128,2.9028337,0.12928914,990.029016,3008656476 +0,434,433,128,2.68133855,0.12956814,987.897179,3008656476 +0,435,434,128,3.57071137,0.13025529,982.685617,3008656476 +0,436,435,128,4.08937788,0.155747283,821.844192,3008656476 +0,437,436,128,4.4427166,0.133305189,960.202682,3008656476 +0,438,437,128,2.91688228,0.13283345,963.612704,3008656476 +0,439,438,128,2.59985471,0.133153452,961.296895,3008656476 +0,440,439,128,3.73995161,0.132678591,964.737408,3008656476 +0,441,440,128,3.53355694,0.139143925,919.910805,3008656476 +0,442,441,128,2.9909718,0.143600665,891.360775,3008656476 +0,443,442,128,3.00384164,0.146543545,873.460513,3008656476 +0,444,443,128,3.16673398,0.143169173,894.047212,3008656476 +0,445,444,128,3.09910369,0.130932405,977.603673,3008656476 +0,446,445,128,3.10257268,0.130984805,977.212586,3008656476 +0,447,446,128,3.2101059,0.131479085,973.538871,3008656476 +0,448,447,128,4.09518719,0.13027135,982.56447,3008656476 +0,449,448,128,3.74632621,0.130476143,981.022255,3008656476 +0,450,449,128,3.78751159,0.129322949,989.770192,3008656476 +0,451,450,128,3.45728397,0.143724787,890.590988,3008656476 +0,452,451,128,4.20531416,0.142783077,896.464782,3008656476 +0,453,452,128,3.83804488,0.128908706,992.950779,3008656476 +0,454,453,128,3.25731039,0.127928096,1000.56207,3008656476 +0,455,454,128,3.8979876,0.129012945,992.148501,3008656476 +0,456,455,128,4.21404696,0.127279894,1005.65766,3008656476 +0,457,456,128,3.98215652,0.127428655,1004.48365,3008656476 +0,458,457,128,4.31525993,0.128817512,993.65372,3008656476 +0,459,458,128,3.90850616,0.140137301,913.389933,3008656476 +0,460,459,128,2.90939879,0.141832153,902.475195,3008656476 +0,461,460,128,3.92939711,0.125682904,1018.43605,3008656476 +0,462,461,128,3.97121572,0.1271298,1006.84497,3008656476 +0,463,462,128,3.7882998,0.126817144,1009.32726,3008656476 +0,464,463,128,3.07632852,0.125949853,1016.27749,3008656476 +0,465,464,128,2.97914743,0.126820388,1009.30144,3008656476 +0,466,465,128,3.10302305,0.126238934,1013.95026,3008656476 +0,467,466,128,2.97397661,0.141418662,905.113923,3008656476 +0,468,467,128,3.20611358,0.141487221,904.675342,3008656476 +0,469,468,128,4.44336033,0.127176311,1006.47675,3008656476 +0,470,469,128,4.06571674,0.12856818,995.580711,3008656476 +0,471,470,128,4.08662081,0.126914087,1008.55628,3008656476 +0,472,471,128,2.82710576,0.127544852,1003.56853,3008656476 +0,473,472,128,4.37605095,0.114453373,1118.35935,3008656476 +0,474,473,128,3.9851768,0.127013018,1007.77072,3008656476 +0,475,474,128,3.36297321,0.141745562,903.026509,3008656476 +0,476,475,128,2.57720494,0.144277518,887.17911,3008656476 +0,477,476,128,3.53659368,0.126818207,1009.3188,3008656476 +0,478,477,128,3.3721168,0.126815616,1009.33942,3008656476 +0,479,478,128,3.80503488,0.128167384,998.69402,3008656476 +0,480,479,128,4.24095297,0.126813058,1009.35978,3008656476 +0,481,480,128,3.72695613,0.128665161,994.830294,3008656476 +0,482,481,128,3.14943981,0.126965222,1008.15009,3008656476 +0,483,482,128,3.02544641,0.138404626,924.824579,3008656476 +0,484,483,128,3.7532258,0.145334765,880.725269,3008656476 +0,485,484,128,3.90665269,0.126755401,1009.8189,3008656476 +0,486,485,128,3.34522557,0.126384702,1012.7808,3008656476 +0,487,486,128,2.74982476,0.127054994,1007.43777,3008656476 +0,488,487,128,3.62764287,0.126438443,1012.35033,3008656476 +0,489,488,128,3.14525867,0.126783486,1009.59521,3008656476 +0,490,489,128,4.27202272,0.126055222,1015.42798,3008656476 +0,491,490,128,4.42103148,0.136896417,935.013515,3008656476 +0,492,491,128,4.25236988,0.144442124,886.168082,3008656476 +0,493,492,128,3.72737217,0.127312653,1005.39889,3008656476 +0,494,493,128,4.17199183,0.125964792,1016.15696,3008656476 +0,495,494,128,3.9601841,0.126095045,1015.10729,3008656476 +0,496,495,128,3.8973949,0.125389979,1020.81523,3008656476 +0,497,496,128,4.152174,0.126206775,1014.20863,3008656476 +0,498,497,128,4.43898582,0.125800218,1017.48631,3008656476 +0,499,498,128,4.25451803,0.127375422,1004.90344,3008656476 +0,500,499,128,3.66402507,0.151799718,843.216323,3008656476 +0,501,500,128,4.24639463,0.126983446,1008.00541,3008656476 +0,502,501,128,4.44794178,0.1276428,1002.79843,3008656476 +0,503,502,128,3.41572952,0.127334716,1005.22469,3008656476 +0,504,503,128,4.02113676,0.127341854,1005.16834,3008656476 +0,505,504,128,4.14522362,0.127957326,1000.3335,3008656476 +0,506,505,128,4.12680912,0.128590603,995.407106,3008656476 +0,507,506,128,4.37511349,0.129688425,986.980912,3008656476 +0,508,507,128,3.38699341,0.156778542,816.43826,3008656476 +0,509,508,128,4.04633427,0.127629238,1002.90499,3008656476 +0,510,509,128,4.05534267,0.127168752,1006.53657,3008656476 +0,511,510,128,4.05114651,0.121062465,1057.30542,3008656476 +0,512,511,128,3.99682498,0.129698168,986.90677,3008656476 +0,513,512,128,4.14496136,0.129407157,989.126127,3008656476 +0,514,513,128,4.26116896,0.129079163,991.639526,3008656476 +0,515,514,128,3.8781352,0.129636617,987.375349,3008656476 +0,516,515,128,4.18746328,0.157890831,810.686721,3008656476 +0,517,516,128,3.59514236,0.129728389,986.676864,3008656476 +0,518,517,128,4.08216333,0.128048796,999.618927,3008656476 +0,519,518,128,4.41066694,0.129416644,989.053618,3008656476 +0,520,519,128,4.1095171,0.12986254,985.657604,3008656476 +0,521,520,128,3.64279389,0.132206908,968.179363,3008656476 +0,522,521,128,3.6229198,0.131005715,977.056612,3008656476 +0,523,522,128,3.3848505,0.131733969,971.65523,3008656476 +0,524,523,128,3.88530588,0.150935121,848.046493,3008656476 +0,525,524,128,3.19282293,0.138660584,923.117416,3008656476 +0,526,525,128,3.47070384,0.141158868,906.779728,3008656476 +0,527,526,128,4.28165579,0.134239146,953.522157,3008656476 +0,528,527,128,3.69055676,0.130474648,981.033495,3008656476 +0,529,528,128,4.14101028,0.130929875,977.622563,3008656476 +0,530,529,128,3.33651352,0.131395764,974.156214,3008656476 +0,531,530,128,3.30898976,0.14799432,864.898058,3008656476 +0,532,531,128,4.02524948,0.145568377,879.311858,3008656476 +0,533,532,128,4.62802505,0.130912627,977.751367,3008656476 +0,534,533,128,4.2156167,0.130961618,977.385603,3008656476 +0,535,534,128,3.95808101,0.129936347,985.097726,3008656476 +0,536,535,128,4.11300421,0.129193203,990.764197,3008656476 +0,537,536,128,3.73828125,0.12993246,985.127196,3008656476 +0,538,537,128,4.20436144,0.129773851,986.331214,3008656476 +0,539,538,128,2.84022546,0.142838836,896.114835,3008656476 +0,540,539,128,3.38333702,0.143168129,894.053732,3008656476 +0,541,540,128,3.6648953,0.130792485,978.6495,3008656476 +0,542,541,128,4.01875877,0.127356526,1005.05254,3008656476 +0,543,542,128,3.62416506,0.127991631,1000.06539,3008656476 +0,544,543,128,4.2995224,0.128797462,993.808403,3008656476 +0,545,544,128,3.04861498,0.127388644,1004.79914,3008656476 +0,546,545,128,2.72482204,0.128209234,998.368027,3008656476 +0,547,546,128,3.38246202,0.141029118,907.613986,3008656476 +0,548,547,128,4.01848555,0.140867031,908.658322,3008656476 +0,549,548,128,4.27872944,0.126697426,1010.28098,3008656476 +0,550,549,128,4.0630374,0.127205413,1006.24649,3008656476 +0,551,550,128,3.34417391,0.127119061,1006.93003,3008656476 +0,552,551,128,2.97782087,0.127760426,1001.87518,3008656476 +0,553,552,128,3.55102658,0.126637509,1010.75898,3008656476 +0,554,553,128,4.10207033,0.127727886,1002.13042,3008656476 +0,555,554,128,4.58680296,0.138649376,923.192038,3008656476 +0,556,555,128,4.24444103,0.139493674,917.604335,3008656476 +0,557,556,128,3.50492501,0.127660494,1002.65944,3008656476 +0,558,557,128,3.53124547,0.127156001,1006.63751,3008656476 +0,559,558,128,4.78336573,0.128062584,999.511301,3008656476 +0,560,559,128,4.70034409,0.127731242,1002.10409,3008656476 +0,561,560,128,4.55099678,0.127813249,1001.46112,3008656476 +0,562,561,128,4.09089041,0.126748938,1009.87039,3008656476 +0,563,562,128,4.34663725,0.139926192,914.76798,3008656476 +0,564,563,128,4.54452515,0.139776764,915.74591,3008656476 +0,565,564,128,4.07198334,0.127702842,1002.32695,3008656476 +0,566,565,128,3.4590652,0.127558942,1003.45768,3008656476 +0,567,566,128,2.78522134,0.127637745,1002.83815,3008656476 +0,568,567,128,4.25513887,0.127560595,1003.44468,3008656476 +0,569,568,128,4.04713249,0.126810394,1009.38098,3008656476 +0,570,569,128,4.1703887,0.126830707,1009.21932,3008656476 +0,571,570,128,4.67116308,0.139939393,914.681687,3008656476 +0,572,571,128,3.24464321,0.143301615,893.220917,3008656476 +0,573,572,128,3.15249372,0.12675401,1009.82998,3008656476 +0,574,573,128,4.17400026,0.126763672,1009.75302,3008656476 +0,575,574,128,3.86516666,0.126014347,1015.75736,3008656476 +0,576,575,128,3.68365669,0.125580893,1019.26334,3008656476 +0,577,576,128,3.34827542,0.126126247,1014.85617,3008656476 +0,578,577,128,4.48974466,0.126462057,1012.1613,3008656476 +0,579,578,128,3.47242165,0.126450479,1012.25397,3008656476 +0,580,579,128,3.73538971,0.151570145,844.493485,3008656476 +0,581,580,128,3.36805987,0.127219224,1006.13725,3008656476 +0,582,581,128,3.77214098,0.127710795,1002.26453,3008656476 +0,583,582,128,3.95674276,0.126570968,1011.29036,3008656476 +0,584,583,128,3.72779441,0.127808342,1001.49957,3008656476 +0,585,584,128,3.6803093,0.128903591,992.99018,3008656476 +0,586,585,128,3.29272389,0.128950799,992.626653,3008656476 +0,587,586,128,4.71079874,0.13024548,982.759632,3008656476 +0,588,587,128,4.10781813,0.159353001,803.24813,3008656476 +0,589,588,128,3.67606235,0.12808049,999.371567,3008656476 +0,590,589,128,4.59457254,0.129090975,991.54879,3008656476 +0,591,590,128,4.05532217,0.128285205,997.77679,3008656476 +0,592,591,128,3.88337541,0.128747154,994.196734,3008656476 +0,593,592,128,3.79337144,0.129742573,986.568996,3008656476 +0,594,593,128,3.5316925,0.131998717,969.706395,3008656476 +0,595,594,128,3.3920083,0.132935059,962.876166,3008656476 +0,596,595,128,3.49809694,0.149992719,853.374756,3008656476 +0,597,596,128,3.66295958,0.132340918,967.198973,3008656476 +0,598,597,128,3.48288107,0.138730316,922.653416,3008656476 +0,599,598,128,3.38833046,0.143678267,890.879342,3008656476 +0,600,599,128,3.99410796,0.143788139,890.1986,3008656476 +0,601,600,128,3.85452986,0.134624522,950.792605,3008656476 +0,602,601,128,3.43910861,0.133896865,955.959648,3008656476 +0,603,602,128,4.07586384,0.146928999,871.169074,3008656476 +0,604,603,128,3.05499697,0.147325666,868.823495,3008656476 +0,605,604,128,4.13338614,0.144593743,885.238859,3008656476 +0,606,605,128,2.95448351,0.13236873,966.995755,3008656476 +0,607,606,128,3.03360152,0.130656044,979.67148,3008656476 +0,608,607,128,2.75363183,0.131117256,976.225433,3008656476 +0,609,608,128,3.78508735,0.132567583,965.545249,3008656476 +0,610,609,128,3.25568867,0.130656815,979.665699,3008656476 +0,611,610,128,3.26276302,0.145024938,882.606824,3008656476 +0,612,611,128,2.70665503,0.142399182,898.881568,3008656476 +0,613,612,128,3.32526898,0.130399946,981.595499,3008656476 +0,614,613,128,3.91767406,0.131178213,975.771792,3008656476 +0,615,614,128,4.02839804,0.130848372,978.231506,3008656476 +0,616,615,128,3.00012255,0.1298529,985.730777,3008656476 +0,617,616,128,3.77526522,0.129524962,988.226501,3008656476 +0,618,617,128,3.89041781,0.129288713,990.032285,3008656476 +0,619,618,128,3.29790783,0.144170584,887.837147,3008656476 +0,620,619,128,3.46608281,0.136036329,940.925126,3008656476 +0,621,620,128,3.3616786,0.129646314,987.301498,3008656476 +0,622,621,128,3.28372622,0.129863175,985.652784,3008656476 +0,623,622,128,4.047575,0.118115054,1083.68913,3008656476 +0,624,623,128,4.18525219,0.130675456,979.525949,3008656476 +0,625,624,128,3.94474506,0.129939183,985.076226,3008656476 +0,626,625,128,4.1256609,0.128415851,996.761685,3008656476 +0,627,626,128,4.00371265,0.145092484,882.195938,3008656476 +0,628,627,128,3.01847887,0.134568228,951.190351,3008656476 +0,629,628,128,3.90429258,0.128982046,992.386181,3008656476 +0,630,629,128,4.47939205,0.127077041,1007.26299,3008656476 +0,631,630,128,4.26295137,0.128859498,993.32996,3008656476 +0,632,631,128,3.4415071,0.127292761,1005.556,3008656476 +0,633,632,128,4.81389713,0.128124191,999.030698,3008656476 +0,634,633,128,4.00494766,0.128590618,995.40699,3008656476 +0,635,634,128,4.14831638,0.14468012,884.710353,3008656476 +0,636,635,128,3.19908142,0.141475091,904.752908,3008656476 +0,637,636,128,3.52057004,0.130352936,981.949497,3008656476 +0,638,637,128,3.85370517,0.12859918,995.340717,3008656476 +0,639,638,128,3.81222463,0.129250852,990.322292,3008656476 +0,640,639,128,4.59003687,0.12784538,1001.20943,3008656476 +0,641,640,128,3.88369083,0.128861805,993.312177,3008656476 +0,642,641,128,4.13798952,0.127060407,1007.39485,3008656476 +0,643,642,128,3.3092382,0.145923548,877.171654,3008656476 +0,644,643,128,3.88538384,0.138384993,924.955786,3008656476 +0,645,644,128,4.23659897,0.129959346,984.923393,3008656476 +0,646,645,128,4.75966263,0.128844901,993.442496,3008656476 +0,647,646,128,3.68373346,0.127384308,1004.83334,3008656476 +0,648,647,128,3.65410495,0.128664619,994.834485,3008656476 +0,649,648,128,3.99683642,0.127242767,1005.95109,3008656476 +0,650,649,128,3.60201883,0.12806751,999.472856,3008656476 +0,651,650,128,3.20429611,0.143535217,891.76721,3008656476 +0,652,651,128,3.3403542,0.144461978,886.046292,3008656476 +0,653,652,128,2.72954226,0.129437228,988.896332,3008656476 +0,654,653,128,3.09227777,0.129986714,984.716023,3008656476 +0,655,654,128,4.37182331,0.12982851,985.915959,3008656476 +0,656,655,128,4.41204834,0.13004787,984.252952,3008656476 +0,657,656,128,4.05718422,0.131285637,974.97337,3008656476 +0,658,657,128,3.60379767,0.1286235,995.152519,3008656476 +0,659,658,128,3.85024977,0.140334733,912.104917,3008656476 +0,660,659,128,4.45802069,0.142682546,897.096411,3008656476 +0,661,660,128,3.87624621,0.13047105,981.060549,3008656476 +0,662,661,128,3.85212636,0.130337235,982.067787,3008656476 +0,663,662,128,3.70032501,0.129975352,984.802103,3008656476 +0,664,663,128,3.40207887,0.132164824,968.487651,3008656476 +0,665,664,128,3.0843811,0.129692936,986.946583,3008656476 +0,666,665,128,4.40362453,0.128255932,998.004521,3008656476 +0,667,666,128,4.13542891,0.134488008,951.757721,3008656476 +0,668,667,128,3.71640301,0.135094093,947.487763,3008656476 +0,669,668,128,3.08302188,0.126114475,1014.9509,3008656476 +0,670,669,128,2.94086313,0.127576061,1003.32303,3008656476 +0,671,670,128,3.49028778,0.126078725,1015.23869,3008656476 +0,672,671,128,2.86480474,0.128113307,999.115572,3008656476 +0,673,672,128,3.39851356,0.126908522,1008.60051,3008656476 +0,674,673,128,3.38127542,0.127535561,1003.64164,3008656476 +0,675,674,128,4.26496458,0.140937927,908.20124,3008656476 +0,676,675,128,4.08523512,0.143743282,890.476398,3008656476 +0,677,676,128,3.79881763,0.126757225,1009.80437,3008656476 +0,678,677,128,4.37887859,0.127105508,1007.0374,3008656476 +0,679,678,128,3.78203368,0.127529507,1003.68929,3008656476 +0,680,679,128,3.84583521,0.127209148,1006.21694,3008656476 +0,681,680,128,3.8728106,0.126182703,1014.40211,3008656476 +0,682,681,128,4.01087952,0.126812177,1009.36679,3008656476 +0,683,682,128,3.61605859,0.140101949,913.620409,3008656476 +0,684,683,128,3.4700942,0.143161898,894.092645,3008656476 +0,685,684,128,3.50617456,0.175945524,727.497904,3008656476 +0,686,685,128,3.20783329,0.126340599,1013.13434,3008656476 +0,687,686,128,3.4557879,0.126005203,1015.83107,3008656476 +0,688,687,128,3.04200745,0.126493744,1011.90775,3008656476 +0,689,688,128,4.04288673,0.127170737,1006.52086,3008656476 +0,690,689,128,3.25853229,0.128152438,998.810495,3008656476 +0,691,690,128,3.62616205,0.134280869,953.225884,3008656476 +0,692,691,128,3.71283031,0.139026324,920.688948,3008656476 +0,693,692,128,3.74665952,0.132113509,968.863828,3008656476 +0,694,693,128,3.22649097,0.131887672,970.522855,3008656476 +0,695,694,128,3.95844746,0.139333932,918.65634,3008656476 +0,696,695,128,3.8751924,0.143736504,890.518389,3008656476 +0,697,696,128,4.31249857,0.131891254,970.496497,3008656476 +0,698,697,128,4.12879181,0.142973722,895.269412,3008656476 +0,699,698,128,3.45824957,0.145743804,878.253459,3008656476 +0,700,699,128,3.35654473,0.13897348,921.039036,3008656476 +0,701,700,128,4.29465294,0.14413541,888.05381,3008656476 +0,702,701,128,3.53074408,0.14420932,887.598666,3008656476 +0,703,702,128,3.50404835,0.143730968,890.552689,3008656476 +0,704,703,128,2.80208874,0.132373045,966.964234,3008656476 +0,705,704,128,3.80869818,0.130945919,977.502781,3008656476 +0,706,705,128,4.15428305,0.146331238,874.727787,3008656476 +0,707,706,128,3.75590634,0.143136239,894.252922,3008656476 +0,708,707,128,3.73384595,0.130960425,977.394507,3008656476 +0,709,708,128,3.06805086,0.134884052,948.963188,3008656476 +0,710,709,128,4.09717035,0.130238828,982.809827,3008656476 +0,711,710,128,2.65270877,0.131202797,975.588958,3008656476 +0,712,711,128,3.83496761,0.129222289,990.541191,3008656476 +0,713,712,128,3.70954299,0.129896776,985.397821,3008656476 +0,714,713,128,3.90468264,0.135850195,942.214327,3008656476 +0,715,714,128,2.56909466,0.138224428,926.030238,3008656476 +0,716,715,128,2.11494517,0.130064913,984.123981,3008656476 +0,717,716,128,2.95888066,0.129465797,988.678114,3008656476 +0,718,717,128,3.77633715,0.129649332,987.278515,3008656476 +0,719,718,128,4.38165617,0.128529018,995.884058,3008656476 +0,720,719,128,4.2818923,0.12769485,1002.38968,3008656476 +0,721,720,128,4.10067606,0.129322955,989.770146,3008656476 +0,722,721,128,4.12115717,0.142805153,896.326199,3008656476 +0,723,722,128,3.36532879,0.142863108,895.962588,3008656476 +0,724,723,128,4.32143164,0.129485272,988.529414,3008656476 +0,725,724,128,3.37031078,0.130094714,983.898546,3008656476 +0,726,725,128,3.7343266,0.131008595,977.035133,3008656476 +0,727,726,128,3.35107708,0.129181586,990.853294,3008656476 +0,728,727,128,3.81257367,0.129558566,987.970182,3008656476 +0,729,728,128,3.56086516,0.129277197,990.120477,3008656476 +0,730,729,128,3.99945521,0.136121637,940.335444,3008656476 +0,731,730,128,3.76359797,0.145749595,878.218564,3008656476 +0,732,731,128,4.26841974,0.129605989,987.608682,3008656476 +0,733,732,128,3.59300447,0.128732444,994.310339,3008656476 +0,734,733,128,3.18463707,0.129063738,991.758041,3008656476 +0,735,734,128,2.39334369,0.12768917,1002.43427,3008656476 +0,736,735,128,2.49528027,0.128552986,995.698381,3008656476 +0,737,736,128,2.48242545,0.127686977,1002.45149,3008656476 +0,738,737,128,2.40016079,0.141254836,906.163666,3008656476 +0,739,738,128,2.5015955,0.144866114,883.574471,3008656476 +0,740,739,128,3.23406124,0.132086527,969.061742,3008656476 +0,741,740,128,2.88439822,0.129337317,989.660239,3008656476 +0,742,741,128,3.13626933,0.128753994,994.143918,3008656476 +0,743,742,128,3.32667756,0.128649603,994.950602,3008656476 +0,744,743,128,3.57455397,0.12814517,998.867144,3008656476 +0,745,744,128,3.2696085,0.127903385,1000.75537,3008656476 +0,746,745,128,2.65498495,0.139202438,919.524125,3008656476 +0,747,746,128,2.54129052,0.147538887,867.567884,3008656476 +0,748,747,128,2.56366301,0.129913509,985.270901,3008656476 +0,749,748,128,3.54415011,0.129919409,985.226157,3008656476 +0,750,749,128,4.65900135,0.129767622,986.378559,3008656476 +0,751,750,128,2.94957566,0.130199436,983.107177,3008656476 +0,752,751,128,3.94770312,0.131006455,977.051093,3008656476 +0,753,752,128,2.90029764,0.129197401,990.732004,3008656476 +0,754,753,128,3.38347006,0.12997289,984.820758,3008656476 +0,755,754,128,3.53624225,0.139737069,916.006046,3008656476 +0,756,755,128,3.39343786,0.126937494,1008.37031,3008656476 +0,757,756,128,3.96120048,0.12635213,1013.04189,3008656476 +0,758,757,128,2.56361318,0.127238457,1005.98516,3008656476 +0,759,758,128,3.321383,0.126461036,1012.16947,3008656476 +0,760,759,128,3.22032833,0.127675062,1002.54504,3008656476 +0,761,760,128,3.55153656,0.126299518,1013.46388,3008656476 +0,762,761,128,4.27481174,0.140054793,913.928022,3008656476 +0,763,762,128,4.54389572,0.141475146,904.752556,3008656476 +0,764,763,128,4.05869198,0.12783082,1001.32347,3008656476 +0,765,764,128,4.38548231,0.127334053,1005.22992,3008656476 +0,766,765,128,4.33506775,0.128031394,999.754795,3008656476 +0,767,766,128,3.89007068,0.128004296,999.966439,3008656476 +0,768,767,128,4.42111111,0.127124306,1006.88849,3008656476 +0,769,768,128,3.61519742,0.127847908,1001.18963,3008656476 +0,770,769,128,3.62362623,0.142639611,897.366441,3008656476 +0,771,770,128,3.16828728,0.141925531,901.881424,3008656476 +0,772,771,128,4.36143589,0.126743665,1009.91241,3008656476 +0,773,772,128,3.28289819,0.12696489,1008.15273,3008656476 +0,774,773,128,3.74569082,0.125840035,1017.16437,3008656476 +0,775,774,128,3.32529521,0.126669196,1010.50614,3008656476 +0,776,775,128,3.83820319,0.1258792,1016.8479,3008656476 +0,777,776,128,3.82783175,0.126104471,1015.03142,3008656476 +0,778,777,128,4.04504776,0.14075063,909.409784,3008656476 +0,779,778,128,3.61689806,0.13975543,915.885701,3008656476 +0,780,779,128,3.80593681,0.126600552,1011.05404,3008656476 +0,781,780,128,3.3232615,0.127378109,1004.88224,3008656476 +0,782,781,128,3.38533902,0.127708162,1002.28519,3008656476 +0,783,782,128,2.53792214,0.127210602,1006.20544,3008656476 +0,784,783,128,2.4154222,0.128481907,996.249223,3008656476 +0,785,784,128,3.64463711,0.128004576,999.964251,3008656476 +0,786,785,128,3.81300879,0.14341528,892.512987,3008656476 +0,787,786,128,3.97559214,0.141995713,901.435665,3008656476 +0,788,787,128,4.45537901,0.129636334,987.377505,3008656476 +0,789,788,128,4.24238539,0.130789877,978.669014,3008656476 +0,790,789,128,4.33921576,0.130197472,983.122007,3008656476 +0,791,790,128,4.15918493,0.130001662,984.602797,3008656476 +0,792,791,128,4.64122391,0.131093582,976.401728,3008656476 +0,793,792,128,3.64839697,0.131390751,974.193381,3008656476 +0,794,793,128,3.99237299,0.14539465,880.362517,3008656476 +0,795,794,128,3.34997725,0.149205798,857.87551,3008656476 +0,796,795,128,3.39860916,0.130968005,977.337938,3008656476 +0,797,796,128,4.26683712,0.130840319,978.291714,3008656476 +0,798,797,128,3.7187891,0.131001222,977.090122,3008656476 +0,799,798,128,3.55386448,0.130333491,982.095999,3008656476 +0,800,799,128,3.416888,0.13114009,976.055453,3008656476 +0,801,800,128,4.30541039,0.128724773,994.369592,3008656476 +0,802,801,128,3.85721731,0.144329802,886.857726,3008656476 +0,803,802,128,4.22342682,0.147216235,869.469322,3008656476 +0,804,803,128,3.52428675,0.130668724,979.576413,3008656476 +0,805,804,128,3.88139725,0.131001611,977.087221,3008656476 +0,806,805,128,4.96005154,0.130593723,980.138992,3008656476 +0,807,806,128,4.42401981,0.129892072,985.433507,3008656476 +0,808,807,128,4.34398794,0.129276833,990.123265,3008656476 +0,809,808,128,3.37628007,0.130496935,980.865949,3008656476 +0,810,809,128,3.67005897,0.13271984,964.43757,3008656476 +0,811,810,128,3.84167695,0.146338451,874.684672,3008656476 +0,812,811,128,3.83548069,0.130025805,984.419977,3008656476 +0,813,812,128,4.25865126,0.129926896,985.169383,3008656476 +0,814,813,128,3.83690262,0.129375656,989.366964,3008656476 +0,815,814,128,3.19141793,0.12965584,987.228959,3008656476 +0,816,815,128,3.5369463,0.129700477,986.8892,3008656476 +0,817,816,128,4.2691741,0.128866107,993.279016,3008656476 +0,818,817,128,4.05274343,0.131464534,973.646626,3008656476 +0,819,818,128,3.95514441,0.150087917,852.833476,3008656476 +0,820,819,128,3.63049579,0.128185302,998.554421,3008656476 +0,821,820,128,3.59236622,0.127203246,1006.26363,3008656476 +0,822,821,128,3.56477427,0.126676132,1010.45081,3008656476 +0,823,822,128,3.3349247,0.126281938,1013.60497,3008656476 +0,824,823,128,4.66160727,0.128149694,998.831882,3008656476 +0,825,824,128,3.90374207,0.126660976,1010.57172,3008656476 +0,826,825,128,3.54264832,0.138804526,922.160132,3008656476 +0,827,826,128,4.07941008,0.143668534,890.939696,3008656476 +0,828,827,128,4.03921223,0.127656715,1002.68913,3008656476 +0,829,828,128,3.80853248,0.126309275,1013.3856,3008656476 +0,830,829,128,3.8158071,0.128432925,996.629174,3008656476 +0,831,830,128,3.86118484,0.126409625,1012.58112,3008656476 +0,832,831,128,2.85235214,0.126494641,1011.90058,3008656476 +0,833,832,128,4.38429928,0.127275858,1005.68955,3008656476 +0,834,833,128,4.78956318,0.143360332,892.855075,3008656476 +0,835,834,128,4.82794809,0.143982871,888.994636,3008656476 +0,836,835,128,4.24847221,0.12784304,1001.22776,3008656476 +0,837,836,128,3.56664562,0.127794962,1001.60443,3008656476 +0,838,837,128,4.1886673,0.126644915,1010.69988,3008656476 +0,839,838,128,4.22403431,0.127639549,1002.82398,3008656476 +0,840,839,128,3.90018821,0.127438654,1004.40483,3008656476 +0,841,840,128,3.82101297,0.12764741,1002.76222,3008656476 +0,842,841,128,3.68273115,0.13986731,915.153083,3008656476 +0,843,842,128,3.16921163,0.140735393,909.508243,3008656476 +0,844,843,128,4.33532381,0.127438826,1004.40348,3008656476 +0,845,844,128,3.3185389,0.126735081,1009.98081,3008656476 +0,846,845,128,3.81502318,0.126684553,1010.38364,3008656476 +0,847,846,128,3.4335525,0.126401443,1012.64667,3008656476 +0,848,847,128,4.53594065,0.113439365,1128.3561,3008656476 +0,849,848,128,3.6129427,0.126564239,1011.34413,3008656476 +0,850,849,128,3.34926009,0.139105826,920.162754,3008656476 +0,851,850,128,3.07313657,0.140870132,908.638319,3008656476 +0,852,851,128,3.45188832,0.126334359,1013.18439,3008656476 +0,853,852,128,2.72027421,0.127171122,1006.51782,3008656476 +0,854,853,128,3.3736577,0.125288712,1021.64032,3008656476 +0,855,854,128,4.55935812,0.126859221,1008.99248,3008656476 +0,856,855,128,3.58467817,0.12725014,1005.8928,3008656476 +0,857,856,128,4.47094631,0.127368,1004.962,3008656476 +0,858,857,128,3.680583,0.143223924,893.70544,3008656476 +0,859,858,128,3.84434056,0.141074976,907.318956,3008656476 +0,860,859,128,3.70450568,0.128336847,997.37529,3008656476 +0,861,860,128,3.86483121,0.129549605,988.03852,3008656476 +0,862,861,128,4.06638622,0.128399075,996.891917,3008656476 +0,863,862,128,3.41443253,0.129756885,986.460179,3008656476 +0,864,863,128,3.10183978,0.130513582,980.74084,3008656476 +0,865,864,128,3.73278189,0.130473119,981.044992,3008656476 +0,866,865,128,3.16413617,0.146578769,873.250614,3008656476 +0,867,866,128,3.48565555,0.145229173,881.365619,3008656476 +0,868,867,128,3.51467824,0.129983522,984.740204,3008656476 +0,869,868,128,3.84725261,0.130024799,984.427594,3008656476 +0,870,869,128,3.73094392,0.13016924,983.335233,3008656476 +0,871,870,128,4.05227661,0.131303317,974.84209,3008656476 +0,872,871,128,3.13739395,0.131984436,969.811319,3008656476 +0,873,872,128,3.43093634,0.138700298,922.8531,3008656476 +0,874,873,128,2.98512936,0.158004363,810.104212,3008656476 +0,875,874,128,3.58686423,0.142656651,897.259252,3008656476 +0,876,875,128,3.00045729,0.130008973,984.547428,3008656476 +0,877,876,128,3.90473771,0.130551804,980.453706,3008656476 +0,878,877,128,2.85981655,0.130537756,980.559218,3008656476 +0,879,878,128,3.08671689,0.130875242,978.030665,3008656476 +0,880,879,128,3.67942786,0.130183015,983.231184,3008656476 +0,881,880,128,4.46508646,0.129477688,988.587316,3008656476 +0,882,881,128,4.47678185,0.129442583,988.855422,3008656476 +0,883,882,128,5.24773502,0.14585912,877.559113,3008656476 +0,884,883,128,4.55734062,0.127500763,1003.91556,3008656476 +0,885,884,128,3.33502722,0.128446316,996.525272,3008656476 +0,886,885,128,4.21779108,0.127951347,1000.38025,3008656476 +0,887,886,128,3.85576034,0.127441718,1004.38068,3008656476 +0,888,887,128,4.29506874,0.12772627,1002.1431,3008656476 +0,889,888,128,3.34002233,0.126076944,1015.25303,3008656476 +0,890,889,128,3.79822516,0.139391259,918.278527,3008656476 +0,891,890,128,3.03484154,0.148101065,864.274676,3008656476 +0,892,891,128,3.28143835,0.12789036,1000.8573,3008656476 +0,893,892,128,4.19951916,0.130912757,977.750396,3008656476 +0,894,893,128,4.35286808,0.128027926,999.781876,3008656476 +0,895,894,128,4.30895329,0.127007007,1007.81841,3008656476 +0,896,895,128,4.06949997,0.126256857,1013.80632,3008656476 +0,897,896,128,2.80988526,0.126497224,1011.87991,3008656476 +0,898,897,128,3.64912271,0.138288487,925.601276,3008656476 +0,899,898,128,2.87720776,0.147934598,865.247222,3008656476 +0,900,899,128,3.68744993,0.127414658,1004.59399,3008656476 +0,901,900,128,3.10108829,0.128826087,993.58758,3008656476 +0,902,901,128,2.87928104,0.12794214,1000.45224,3008656476 +0,903,902,128,3.11664939,0.127758457,1001.89062,3008656476 +0,904,903,128,3.49172521,0.126855733,1009.02022,3008656476 +0,905,904,128,2.83832049,0.126523928,1011.66635,3008656476 +0,906,905,128,3.15710354,0.140691519,909.791869,3008656476 +0,907,906,128,4.05547667,0.142823838,896.208937,3008656476 +0,908,907,128,4.03003645,0.128314024,997.552692,3008656476 +0,909,908,128,3.8557992,0.129041664,991.927692,3008656476 +0,910,909,128,3.44724631,0.129233967,990.451682,3008656476 +0,911,910,128,3.67288637,0.127657215,1002.6852,3008656476 +0,912,911,128,3.38261843,0.127273791,1005.70588,3008656476 +0,913,912,128,4.3030653,0.127344964,1005.14379,3008656476 +0,914,913,128,3.34025025,0.144141149,888.018452,3008656476 +0,915,914,128,4.54990244,0.140914631,908.351383,3008656476 +0,916,915,128,3.85491705,0.128214809,998.324616,3008656476 +0,917,916,128,3.430264,0.128693249,994.613167,3008656476 +0,918,917,128,3.03036809,0.128883059,993.14837,3008656476 +0,919,918,128,3.49073148,0.126961158,1008.18236,3008656476 +0,920,919,128,3.35319114,0.127264935,1005.77586,3008656476 +0,921,920,128,3.5203855,0.126486062,1011.96921,3008656476 +0,922,921,128,3.43076968,0.145956164,876.975638,3008656476 +0,923,922,128,3.80753779,0.141962839,901.644409,3008656476 +0,924,923,128,4.36792707,0.128314758,997.546985,3008656476 +0,925,924,128,3.09241009,0.127505652,1003.87707,3008656476 +0,926,925,128,4.24100399,0.126270591,1013.69606,3008656476 +0,927,926,128,3.25733542,0.126796658,1009.49033,3008656476 +0,928,927,128,3.34117198,0.126280818,1013.61396,3008656476 +0,929,928,128,4.07758856,0.126119862,1014.90755,3008656476 +0,930,929,128,3.84632111,0.144262884,887.269105,3008656476 +0,931,930,128,2.86365438,0.140980348,907.927962,3008656476 +0,932,931,128,3.4808712,0.127168638,1006.53748,3008656476 +0,933,932,128,3.19965863,0.126132504,1014.80583,3008656476 +0,934,933,128,3.30572534,0.126375188,1012.85705,3008656476 +0,935,934,128,3.46341562,0.12691117,1008.57947,3008656476 +0,936,935,128,3.5060215,0.126025266,1015.66935,3008656476 +0,937,936,128,3.33619666,0.12736777,1004.96381,3008656476 +0,938,937,128,3.76623964,0.141752181,902.984343,3008656476 +0,939,938,128,3.79268265,0.142349955,899.192416,3008656476 +0,940,939,128,3.9754827,0.125971784,1016.10056,3008656476 +0,941,940,128,3.52563548,0.127665451,1002.62051,3008656476 +0,942,941,128,3.02124858,0.126398246,1012.67228,3008656476 +0,943,942,128,3.37747455,0.126958148,1008.20626,3008656476 +0,944,943,128,3.28318453,0.127667646,1002.60328,3008656476 +0,945,944,128,4.74029303,0.127026689,1007.66226,3008656476 +0,946,945,128,4.2965641,0.142455413,898.526755,3008656476 +0,947,946,128,3.29750228,0.140903247,908.424772,3008656476 +0,948,947,128,4.21240759,0.127458167,1004.25107,3008656476 +0,949,948,128,4.57431078,0.127254455,1005.85869,3008656476 +0,950,949,128,4.58789682,0.127385668,1004.82261,3008656476 +0,951,950,128,3.54684091,0.125982251,1016.01614,3008656476 +0,952,951,128,3.28563046,0.126634275,1010.7848,3008656476 +0,953,952,128,2.87885976,0.12740172,1004.69601,3008656476 +0,954,953,128,3.69166327,0.141509151,904.535142,3008656476 +0,955,954,128,3.74460649,0.141423715,905.081584,3008656476 +0,956,955,128,2.90430355,0.127714811,1002.23301,3008656476 +0,957,956,128,4.13964415,0.128141896,998.892665,3008656476 +0,958,957,128,3.84657884,0.126410951,1012.5705,3008656476 +0,959,958,128,3.55387568,0.12753176,1003.67156,3008656476 +0,960,959,128,3.6622479,0.127902481,1000.76245,3008656476 +0,961,960,128,3.95087862,0.126165498,1014.54044,3008656476 +0,962,961,128,3.48465252,0.144222043,887.520363,3008656476 +0,963,962,128,3.62937188,0.140659756,909.997313,3008656476 +0,964,963,128,3.24281764,0.126482268,1011.99956,3008656476 +0,965,964,128,2.91699481,0.127016653,1007.74187,3008656476 +0,966,965,128,3.3833828,0.1271031,1007.05648,3008656476 +0,967,966,128,3.57610965,0.126958427,1008.20405,3008656476 +0,968,967,128,4.48627138,0.125820561,1017.3218,3008656476 +0,969,968,128,3.8401196,0.126924506,1008.47349,3008656476 +0,970,969,128,3.4855206,0.14165792,903.5852,3008656476 +0,971,970,128,3.14845824,0.138634253,923.292745,3008656476 +0,972,971,128,3.566921,0.127448278,1004.32899,3008656476 +0,973,972,128,2.78854203,0.127245059,1005.93297,3008656476 +0,974,973,128,3.17410398,0.125713247,1018.19023,3008656476 +0,975,974,128,3.70252991,0.12553865,1019.60631,3008656476 +0,976,975,128,3.9952991,0.126369275,1012.90444,3008656476 +0,977,976,128,3.87055206,0.126519043,1011.70541,3008656476 +0,978,977,128,3.99419308,0.14081181,909.014663,3008656476 +0,979,978,128,3.87498903,0.138622194,923.373064,3008656476 +0,980,979,128,3.95307779,0.122934838,1041.20201,3008656476 +0,981,980,128,3.32876015,0.12764859,1002.75295,3008656476 +0,982,981,128,3.68555045,0.126570083,1011.29743,3008656476 +0,983,982,128,3.29067039,0.127039217,1007.56289,3008656476 +0,984,983,128,3.36475992,0.127802558,1001.5449,3008656476 +0,985,984,128,3.57147288,0.128980891,992.395067,3008656476 +0,986,985,128,3.55171394,0.138264836,925.759605,3008656476 +0,987,986,128,3.49864125,0.12632096,1013.29186,3008656476 +0,988,987,128,3.22618628,0.141198623,906.524421,3008656476 +0,989,988,128,3.62794876,0.131118603,976.215404,3008656476 +0,990,989,128,4.02926922,0.130719483,979.196039,3008656476 +0,991,990,128,2.72404671,0.131478924,973.540063,3008656476 +0,992,991,128,3.12335467,0.131480785,973.526284,3008656476 +0,993,992,128,3.49749017,0.13250805,965.979048,3008656476 +0,994,993,128,2.5404048,0.145114645,882.061214,3008656476 +0,995,994,128,2.92708945,0.146475852,873.864178,3008656476 +0,996,995,128,2.48335242,0.12856635,995.594882,3008656476 +0,997,996,128,3.51849985,0.132301943,967.483902,3008656476 +0,998,997,128,3.33021951,0.129772127,986.344317,3008656476 +0,999,998,128,3.21624684,0.131031373,976.865289,3008656476 +0,1000,999,128,3.31626916,0.129961314,984.908478,3008656476 +0,1001,1000,128,3.94464993,0.130308698,982.282856,3008656476 +0,1002,1001,128,3.28231311,0.145705781,878.482646,3008656476 +0,1003,1002,128,3.54001355,0.142507642,898.197445,3008656476 +0,1004,1003,128,3.54087472,0.128794575,993.83068,3008656476 +0,1005,1004,128,3.81280112,0.128689905,994.639012,3008656476 +0,1006,1005,128,3.26985073,0.128123403,999.036843,3008656476 +0,1007,1006,128,3.89423704,0.127273851,1005.70541,3008656476 +0,1008,1007,128,3.77644491,0.127989854,1000.07927,3008656476 +0,1009,1008,128,3.23628449,0.127687458,1002.44771,3008656476 +0,1010,1009,128,3.16967797,0.141757019,902.953525,3008656476 +0,1011,1010,128,3.70833564,0.140237682,912.736136,3008656476 +0,1012,1011,128,2.78568816,0.126960579,1008.18696,3008656476 +0,1013,1012,128,3.65768528,0.126281129,1013.61146,3008656476 +0,1014,1013,128,3.09507704,0.127154633,1006.64834,3008656476 +0,1015,1014,128,3.35628319,0.126256098,1013.81242,3008656476 +0,1016,1015,128,2.2731061,0.126720153,1010.09979,3008656476 +0,1017,1016,128,2.78366971,0.126761112,1009.77341,3008656476 +0,1018,1017,128,2.94473195,0.138369211,925.061284,3008656476 +0,1019,1018,128,3.34009576,0.12788296,1000.91521,3008656476 +0,1020,1019,128,3.90073442,0.129839607,985.831696,3008656476 +0,1021,1020,128,4.10862064,0.126822035,1009.28833,3008656476 +0,1022,1021,128,3.74858427,0.127205265,1006.24766,3008656476 +0,1023,1022,128,3.53836346,0.12760165,1003.12182,3008656476 +0,1024,1023,128,4.62026787,0.127323411,1005.31394,3008656476 +0,1025,1024,128,4.14807749,0.126465721,1012.13198,3008656476 +0,1026,1025,128,3.69027448,0.126638949,1010.74749,3008656476 +0,1027,1026,128,3.32594204,0.130528416,980.629383,3008656476 +0,1028,1027,128,3.216501,0.140887637,908.525423,3008656476 +0,1029,1028,128,3.25551367,0.126492446,1011.91813,3008656476 +0,1030,1029,128,3.57303429,0.126393706,1012.70865,3008656476 +0,1031,1030,128,3.05087757,0.127050236,1007.4755,3008656476 +0,1032,1031,128,3.61830211,0.127078772,1007.24927,3008656476 +0,1033,1032,128,3.0264914,0.126913189,1008.56342,3008656476 +0,1034,1033,128,3.34228182,0.128909845,992.942005,3008656476 +0,1035,1034,128,3.70144439,0.140986794,907.886451,3008656476 +0,1036,1035,128,3.91610384,0.145276116,881.080824,3008656476 +0,1037,1036,128,3.91240883,0.128117812,999.08044,3008656476 +0,1038,1037,128,3.54001427,0.130346164,982.000514,3008656476 +0,1039,1038,128,3.47671771,0.130751401,978.957006,3008656476 +0,1040,1039,128,3.20029855,0.129768727,986.37016,3008656476 +0,1041,1040,128,3.77245736,0.130418312,981.457267,3008656476 +0,1042,1041,128,3.8162632,0.130336876,982.070492,3008656476 +0,1043,1042,128,3.3865571,0.142257171,899.778894,3008656476 +0,1044,1043,128,2.37954521,0.147545886,867.52673,3008656476 +0,1045,1044,128,2.80803943,0.132177463,968.395043,3008656476 +0,1046,1045,128,3.23951554,0.133213565,960.863107,3008656476 +0,1047,1046,128,3.33455539,0.13963337,916.686319,3008656476 +0,1048,1047,128,3.24292874,0.133987605,955.312247,3008656476 +0,1049,1048,128,3.89879775,0.130411741,981.506719,3008656476 +0,1050,1049,128,3.92640996,0.146305552,874.881358,3008656476 +0,1051,1050,128,4.09835243,0.149673761,855.193316,3008656476 +0,1052,1051,128,3.68280244,0.126514615,1011.74082,3008656476 +0,1053,1052,128,3.64356923,0.132385322,966.87456,3008656476 +0,1054,1053,128,3.37286544,0.132120878,968.809789,3008656476 +0,1055,1054,128,4.44593143,0.130307918,982.288736,3008656476 +0,1056,1055,128,3.69021273,0.131099431,976.358166,3008656476 +0,1057,1056,128,3.96208572,0.129302699,989.925199,3008656476 +0,1058,1057,128,4.15421486,0.143310706,893.164255,3008656476 +0,1059,1058,128,3.84674025,0.144787384,884.054926,3008656476 +0,1060,1059,128,3.26581836,0.12908117,991.624108,3008656476 +0,1061,1060,128,4.23568344,0.128935272,992.74619,3008656476 +0,1062,1061,128,4.62072659,0.12935853,989.497948,3008656476 +0,1063,1062,128,4.15203476,0.128121994,999.047829,3008656476 +0,1064,1063,128,3.79997945,0.12939462,989.221963,3008656476 +0,1065,1064,128,3.27878833,0.127192448,1006.34906,3008656476 +0,1066,1065,128,3.5145123,0.140887874,908.523895,3008656476 +0,1067,1066,128,3.50457764,0.141757471,902.950646,3008656476 +0,1068,1067,128,3.67756724,0.128843143,993.456051,3008656476 +0,1069,1068,128,3.88414836,0.127544763,1003.56923,3008656476 +0,1070,1069,128,4.12823582,0.12760455,1003.09903,3008656476 +0,1071,1070,128,4.04725122,0.126455352,1012.21497,3008656476 +0,1072,1071,128,4.23878098,0.126549845,1011.45916,3008656476 +0,1073,1072,128,3.15035629,0.126488141,1011.95258,3008656476 +0,1074,1073,128,3.97715998,0.142066821,900.984474,3008656476 +0,1075,1074,128,3.50351739,0.137281822,932.388558,3008656476 +0,1076,1075,128,3.59092522,0.118739644,1077.98875,3008656476 +0,1077,1076,128,4.18228579,0.127025699,1007.67011,3008656476 +0,1078,1077,128,3.74802995,0.127616794,1003.00279,3008656476 +0,1079,1078,128,4.09663916,0.127434839,1004.4349,3008656476 +0,1080,1079,128,4.54826021,0.127015005,1007.75495,3008656476 +0,1081,1080,128,3.50805831,0.127482262,1004.06126,3008656476 +0,1082,1081,128,2.13990927,0.139190782,919.601127,3008656476 +0,1083,1082,128,3.20854902,0.12373307,1034.48496,3008656476 +0,1084,1083,128,3.61899066,0.14009802,913.646032,3008656476 +0,1085,1084,128,3.73002553,0.126480487,1012.01381,3008656476 +0,1086,1085,128,3.73155117,0.127214441,1006.17508,3008656476 +0,1087,1086,128,3.81229401,0.12579595,1017.52083,3008656476 +0,1088,1087,128,3.28542447,0.125742542,1017.95302,3008656476 +0,1089,1088,128,3.44768739,0.125750559,1017.88812,3008656476 +0,1090,1089,128,3.3030293,0.125599154,1019.11514,3008656476 +0,1091,1090,128,3.41531515,0.137990595,927.59945,3008656476 +0,1092,1091,128,3.70948696,0.142756293,896.632977,3008656476 +0,1093,1092,128,3.1469326,0.12892896,992.794792,3008656476 +0,1094,1093,128,4.12140799,0.127045162,1007.51574,3008656476 +0,1095,1094,128,4.05274439,0.127604784,1003.09719,3008656476 +0,1096,1095,128,3.58420753,0.128005468,999.957283,3008656476 +0,1097,1096,128,3.23084164,0.128339678,997.353289,3008656476 +0,1098,1097,128,3.41451144,0.130205006,983.065121,3008656476 +0,1099,1098,128,3.64130759,0.144885889,883.453875,3008656476 +0,1100,1099,128,4.02987766,0.144548063,885.518611,3008656476 +0,1101,1100,128,3.99490237,0.131156503,975.933309,3008656476 +0,1102,1101,128,3.66612482,0.131185107,975.720514,3008656476 +0,1103,1102,128,3.71667266,0.129965396,984.877544,3008656476 +0,1104,1103,128,3.70205474,0.130537501,980.561134,3008656476 +0,1105,1104,128,3.52140951,0.131653377,972.250032,3008656476 +0,1106,1105,128,4.36282301,0.131688881,971.987908,3008656476 +0,1107,1106,128,3.5225637,0.147810399,865.974254,3008656476 +0,1108,1107,128,3.47218227,0.144711889,884.51613,3008656476 +0,1109,1108,128,3.3282907,0.13027608,982.528796,3008656476 +0,1110,1109,128,2.83709288,0.130315855,982.228908,3008656476 +0,1111,1110,128,3.34924102,0.130919127,977.702823,3008656476 +0,1112,1111,128,3.30276513,0.130406784,981.544028,3008656476 +0,1113,1112,128,3.18165994,0.131350274,974.49359,3008656476 +0,1114,1113,128,3.1094501,0.145158177,881.79669,3008656476 +0,1115,1114,128,3.94438577,0.129349531,989.566789,3008656476 +0,1116,1115,128,2.67444897,0.133279144,960.390322,3008656476 +0,1117,1116,128,2.91622472,0.130092042,983.918755,3008656476 +0,1118,1117,128,2.81092882,0.129014476,992.136727,3008656476 +0,1119,1118,128,3.38839293,0.129999423,984.619755,3008656476 +0,1120,1119,128,3.07950664,0.128484166,996.231707,3008656476 +0,1121,1120,128,2.38956141,0.128972456,992.459971,3008656476 +0,1122,1121,128,3.26606059,0.138181823,926.315757,3008656476 +0,1123,1122,128,3.25498486,0.12609164,1015.13471,3008656476 +0,1124,1123,128,2.59712529,0.137630726,930.024884,3008656476 +0,1125,1124,128,2.12244987,0.126548185,1011.47243,3008656476 +0,1126,1125,128,3.83769011,0.126505674,1011.81232,3008656476 +0,1127,1126,128,2.84711456,0.126092182,1015.13034,3008656476 +0,1128,1127,128,4.43739986,0.127259031,1005.82253,3008656476 +0,1129,1128,128,3.95141101,0.126270666,1013.69545,3008656476 +0,1130,1129,128,2.35539579,0.126906707,1008.61493,3008656476 +0,1131,1130,128,3.52316093,0.138032949,927.314825,3008656476 +0,1132,1131,128,3.0955801,0.141125628,906.993307,3008656476 +0,1133,1132,128,3.00423908,0.126686444,1010.36856,3008656476 +0,1134,1133,128,2.95350718,0.126895519,1008.70386,3008656476 +0,1135,1134,128,4.03077984,0.127559717,1003.45158,3008656476 +0,1136,1135,128,3.80987287,0.12620486,1014.22402,3008656476 +0,1137,1136,128,3.40345478,0.126846229,1009.09582,3008656476 +0,1138,1137,128,3.67078042,0.206907993,618.632457,3008656476 +0,1139,1138,128,3.3087697,0.140701709,909.725979,3008656476 +0,1140,1139,128,3.34754038,0.127649389,1002.74667,3008656476 +0,1141,1140,128,3.39770913,0.12801375,999.89259,3008656476 +0,1142,1141,128,3.49225426,0.12745051,1004.3114,3008656476 +0,1143,1142,128,3.50819898,0.127565181,1003.4086,3008656476 +0,1144,1143,128,3.08716297,0.127111686,1006.98845,3008656476 +0,1145,1144,128,3.56015563,0.12727932,1005.66219,3008656476 +0,1146,1145,128,4.20996428,0.139940548,914.674137,3008656476 +0,1147,1146,128,4.30552721,0.137714061,929.462098,3008656476 +0,1148,1147,128,3.80835867,0.123956816,1032.61768,3008656476 +0,1149,1148,128,4.14870119,0.124290699,1029.84375,3008656476 +0,1150,1149,128,3.60984707,0.125901331,1016.66916,3008656476 +0,1151,1150,128,3.84900331,0.12658371,1011.18856,3008656476 +0,1152,1151,128,3.6836803,0.12645085,1012.25101,3008656476 +0,1153,1152,128,4.04893494,0.128071364,999.442779,3008656476 +0,1154,1153,128,3.79215646,0.141971873,901.587035,3008656476 +0,1155,1154,128,3.575423,0.124428512,1028.70313,3008656476 +0,1156,1155,128,3.71536517,0.143400149,892.607162,3008656476 +0,1157,1156,128,3.73307943,0.130739856,979.043453,3008656476 +0,1158,1157,128,4.3647151,0.130884662,977.960275,3008656476 +0,1159,1158,128,3.80356979,0.130318345,982.210141,3008656476 +0,1160,1159,128,3.9535799,0.131826349,970.974323,3008656476 +0,1161,1160,128,3.94929361,0.132771896,964.059442,3008656476 +0,1162,1161,128,3.81217933,0.146321104,874.78837,3008656476 +0,1163,1162,128,3.07520652,0.146975852,870.891362,3008656476 +0,1164,1163,128,3.40924501,0.126894923,1008.7086,3008656476 +0,1165,1164,128,3.60492849,0.132140869,968.663223,3008656476 +0,1166,1165,128,4.16838837,0.132845703,963.523826,3008656476 +0,1167,1166,128,3.7571888,0.133090359,961.752609,3008656476 +0,1168,1167,128,4.03901005,0.132662745,964.852642,3008656476 +0,1169,1168,128,3.49978089,0.138933257,921.305689,3008656476 +0,1170,1169,128,4.21348715,0.153335719,834.769621,3008656476 +0,1171,1170,128,3.53531647,0.143059568,894.732186,3008656476 +0,1172,1171,128,4.0566535,0.130776664,978.767894,3008656476 +0,1173,1172,128,3.53468084,0.131495576,973.416779,3008656476 +0,1174,1173,128,3.66158056,0.131016442,976.976615,3008656476 +0,1175,1174,128,4.28633213,0.130575594,980.275073,3008656476 +0,1176,1175,128,4.38279438,0.129251604,990.31653,3008656476 +0,1177,1176,128,4.00118542,0.130119016,983.714786,3008656476 +0,1178,1177,128,3.44651294,0.142730901,896.792489,3008656476 +0,1179,1178,128,3.59735823,0.141598103,903.966913,3008656476 +0,1180,1179,128,3.83517027,0.128888704,993.104873,3008656476 +0,1181,1180,128,4.19438696,0.128194766,998.480702,3008656476 +0,1182,1181,128,3.85133839,0.128748105,994.18939,3008656476 +0,1183,1182,128,4.09196043,0.127189887,1006.36932,3008656476 +0,1184,1183,128,3.03882527,0.127981685,1000.14311,3008656476 +0,1185,1184,128,3.28666115,0.127194549,1006.33243,3008656476 +0,1186,1185,128,4.29610872,0.139021756,920.7192,3008656476 +0,1187,1186,128,3.97018528,0.128951624,992.620302,3008656476 +0,1188,1187,128,4.09217644,0.127672798,1002.56282,3008656476 +0,1189,1188,128,3.95455647,0.126063422,1015.36193,3008656476 +0,1190,1189,128,3.57282424,0.126821431,1009.29314,3008656476 +0,1191,1190,128,3.31041312,0.127173354,1006.50015,3008656476 +0,1192,1191,128,2.75239539,0.1270169,1007.73991,3008656476 +0,1193,1192,128,3.61021924,0.126877479,1008.84728,3008656476 +0,1194,1193,128,3.10968041,0.139633575,916.684974,3008656476 +0,1195,1194,128,2.59690881,0.140458883,911.298718,3008656476 +0,1196,1195,128,2.86128712,0.12717538,1006.48412,3008656476 +0,1197,1196,128,2.5783031,0.126379002,1012.82648,3008656476 +0,1198,1197,128,3.27969003,0.127479511,1004.08292,3008656476 +0,1199,1198,128,2.98600507,0.12639085,1012.73154,3008656476 +0,1200,1199,128,4.40201902,0.127126035,1006.87479,3008656476 +0,1201,1200,128,3.54634237,0.126706584,1010.20796,3008656476 +0,1202,1201,128,4.05528688,0.143816647,890.02214,3008656476 +0,1203,1202,128,3.60381889,0.140583082,910.493625,3008656476 +0,1204,1203,128,3.74748468,0.127868294,1001.03001,3008656476 +0,1205,1204,128,3.68197513,0.126462275,1012.15956,3008656476 +0,1206,1205,128,3.96332645,0.127418271,1004.56551,3008656476 +0,1207,1206,128,3.74869633,0.127753771,1001.92737,3008656476 +0,1208,1207,128,3.63952971,0.126477275,1012.03951,3008656476 +0,1209,1208,128,3.81963801,0.128159376,998.756423,3008656476 +0,1210,1209,128,3.30707574,0.143249306,893.547086,3008656476 +0,1211,1210,128,3.74401736,0.140004088,914.259018,3008656476 +0,1212,1211,128,4.05151033,0.127783422,1001.69488,3008656476 +0,1213,1212,128,3.80907488,0.126542757,1011.51582,3008656476 +0,1214,1213,128,3.6220448,0.127517353,1003.78495,3008656476 +0,1215,1214,128,4.34074402,0.127475196,1004.11691,3008656476 +0,1216,1215,128,4.18331099,0.126465132,1012.13669,3008656476 +0,1217,1216,128,3.44244432,0.125540767,1019.58912,3008656476 +0,1218,1217,128,3.72408748,0.139611061,916.8328,3008656476 +0,1219,1218,128,3.5037744,0.134550557,951.315274,3008656476 +0,1220,1219,128,4.11833191,0.121341625,1054.87297,3008656476 +0,1221,1220,128,3.01226997,0.127997368,1000.02056,3008656476 +0,1222,1221,128,3.54360366,0.128805499,993.746393,3008656476 +0,1223,1222,128,3.52970719,0.128363009,997.172012,3008656476 +0,1224,1223,128,3.47173953,0.129750537,986.508441,3008656476 +0,1225,1224,128,4.2797761,0.130041376,984.302104,3008656476 +0,1226,1225,128,4.31867123,0.143044717,894.825078,3008656476 +0,1227,1226,128,3.76209521,0.129753954,986.482462,3008656476 +0,1228,1227,128,4.01135254,0.134146714,954.179168,3008656476 +0,1229,1228,128,3.91520929,0.131427813,973.918664,3008656476 +0,1230,1229,128,3.7245934,0.132440574,966.471196,3008656476 +0,1231,1230,128,3.53009796,0.135515291,944.542856,3008656476 +0,1232,1231,128,3.10415888,0.144030988,888.697646,3008656476 +0,1233,1232,128,4.09943485,0.13129837,974.87882,3008656476 +0,1234,1233,128,4.07838821,0.14343053,892.418093,3008656476 +0,1235,1234,128,3.13498688,0.146689255,872.592884,3008656476 +0,1236,1235,128,3.83907032,0.130602331,980.074391,3008656476 +0,1237,1236,128,3.63039255,0.130772123,978.801881,3008656476 +0,1238,1237,128,3.78124237,0.131375362,974.307496,3008656476 +0,1239,1238,128,3.50094914,0.129266204,990.204679,3008656476 +0,1240,1239,128,3.9034338,0.131081624,976.490801,3008656476 +0,1241,1240,128,3.99691486,0.130910453,977.767604,3008656476 +0,1242,1241,128,2.50576925,0.143477614,892.125234,3008656476 +0,1243,1242,128,3.43641949,0.144373995,886.586258,3008656476 +0,1244,1243,128,2.57913327,0.128186446,998.545509,3008656476 +0,1245,1244,128,3.67078662,0.12838359,997.012157,3008656476 +0,1246,1245,128,2.91932917,0.127556061,1003.48034,3008656476 +0,1247,1246,128,3.36253548,0.12787309,1000.99247,3008656476 +0,1248,1247,128,3.09841323,0.129063678,991.758502,3008656476 +0,1249,1248,128,2.54725647,0.127169271,1006.53247,3008656476 +0,1250,1249,128,2.53243208,0.143621266,891.232918,3008656476 +0,1251,1250,128,2.62231064,0.1393883,918.298021,3008656476 +0,1252,1251,128,2.1855371,0.12680381,1009.43339,3008656476 +0,1253,1252,128,2.67985201,0.128364811,997.158014,3008656476 +0,1254,1253,128,2.88721681,0.126379001,1012.82649,3008656476 +0,1255,1254,128,2.71594143,0.127757353,1001.89928,3008656476 +0,1256,1255,128,2.27731657,0.126366849,1012.92389,3008656476 +0,1257,1256,128,2.62190819,0.12687163,1008.89379,3008656476 +0,1258,1257,128,2.89025664,0.142672867,897.157271,3008656476 +0,1259,1258,128,2.23209119,0.138821148,922.049715,3008656476 +0,1260,1259,128,3.54799104,0.127401663,1004.69646,3008656476 +0,1261,1260,128,4.10026121,0.126138866,1014.75464,3008656476 +0,1262,1261,128,3.89043951,0.12733028,1005.25971,3008656476 +0,1263,1262,128,4.22604895,0.127501184,1003.91225,3008656476 +0,1264,1263,128,4.21750164,0.127159608,1006.60895,3008656476 +0,1265,1264,128,3.84327435,0.126918569,1008.52067,3008656476 +0,1266,1265,128,3.81676054,0.14059887,910.391385,3008656476 +0,1267,1266,128,3.67197561,0.14060703,910.338551,3008656476 +0,1268,1267,128,3.87787557,0.127124804,1006.88454,3008656476 +0,1269,1268,128,3.76626945,0.126622531,1010.87855,3008656476 +0,1270,1269,128,3.73856974,0.127424708,1004.51476,3008656476 +0,1271,1270,128,2.93034697,0.126146828,1014.6906,3008656476 +0,1272,1271,128,3.27874184,0.126985618,1007.98816,3008656476 +0,1273,1272,128,3.14090085,0.126645246,1010.69724,3008656476 +0,1274,1273,128,4.49604321,0.139407578,918.171034,3008656476 +0,1275,1274,128,3.18120193,0.13737241,931.773709,3008656476 +0,1276,1275,128,4.12789345,0.119083062,1074.87999,3008656476 +0,1277,1276,128,4.10158157,0.126895741,1008.7021,3008656476 +0,1278,1277,128,3.13670921,0.127673267,1002.55913,3008656476 +0,1279,1278,128,3.53952599,0.128231045,998.198213,3008656476 +0,1280,1279,128,3.8276546,0.128003593,999.97193,3008656476 +0,1281,1280,128,3.44703484,0.129966879,984.866306,3008656476 +0,1282,1281,128,3.88243341,0.12970642,986.843982,3008656476 +0,1283,1282,128,3.89556146,0.135835317,942.317527,3008656476 +0,1284,1283,128,2.90530109,0.153811826,832.185686,3008656476 +0,1285,1284,128,3.43836021,0.141085803,907.249328,3008656476 +0,1286,1285,128,3.80790544,0.143903082,889.487551,3008656476 +0,1287,1286,128,3.43090153,0.143744468,890.469051,3008656476 +0,1288,1287,128,3.74632263,0.131959508,969.994523,3008656476 +0,1289,1288,128,2.89964104,0.13187433,970.621045,3008656476 +0,1290,1289,128,3.61549497,0.144170629,887.83687,3008656476 +0,1291,1290,128,3.59972596,0.146193855,875.549797,3008656476 +0,1292,1291,128,3.28409338,0.130921644,977.684026,3008656476 +0,1293,1292,128,3.79720736,0.1311197,976.207237,3008656476 +0,1294,1293,128,3.11203742,0.130591474,980.155871,3008656476 +0,1295,1294,128,3.05785632,0.12929751,989.964927,3008656476 +0,1296,1295,128,3.02655792,0.130073805,984.056705,3008656476 +0,1297,1296,128,3.34554863,0.12993002,985.145696,3008656476 +0,1298,1297,128,3.82920241,0.143456824,892.254523,3008656476 +0,1299,1298,128,3.46128035,0.142129301,900.588402,3008656476 +0,1300,1299,128,3.76754951,0.128436342,996.602659,3008656476 +0,1301,1300,128,3.43380046,0.128203045,998.416223,3008656476 +0,1302,1301,128,3.40123796,0.126626685,1010.84538,3008656476 +0,1303,1302,128,3.1694746,0.128818544,993.64576,3008656476 +0,1304,1303,128,3.52364588,0.129142789,991.150965,3008656476 +0,1305,1304,128,3.50392318,0.128290694,997.734099,3008656476 +0,1306,1305,128,3.88440561,0.142015632,901.309231,3008656476 +0,1307,1306,128,3.43789744,0.140666871,909.951285,3008656476 +0,1308,1307,128,3.68170595,0.127371338,1004.93566,3008656476 +0,1309,1308,128,2.79021931,0.126540911,1011.53057,3008656476 +0,1310,1309,128,3.6676116,0.127513711,1003.81362,3008656476 +0,1311,1310,128,4.48290539,0.126665096,1010.53885,3008656476 +0,1312,1311,128,3.30893135,0.126814763,1009.34621,3008656476 +0,1313,1312,128,3.14308643,0.127409799,1004.6323,3008656476 +0,1314,1313,128,3.68764281,0.141055382,907.444992,3008656476 +0,1315,1314,128,3.02387023,0.141298418,905.884169,3008656476 +0,1316,1315,128,3.24704289,0.126218111,1014.11754,3008656476 +0,1317,1316,128,3.57852817,0.126996342,1007.90305,3008656476 +0,1318,1317,128,3.3638463,0.127275761,1005.69031,3008656476 +0,1319,1318,128,2.51871991,0.126898243,1008.68221,3008656476 +0,1320,1319,128,3.50313759,0.127546786,1003.55332,3008656476 +0,1321,1320,128,3.88547873,0.12626399,1013.74905,3008656476 +0,1322,1321,128,3.4511621,0.139416368,918.113144,3008656476 +0,1323,1322,128,3.95588255,0.14165137,903.626982,3008656476 +0,1324,1323,128,3.32897973,0.125393275,1020.7884,3008656476 +0,1325,1324,128,2.36051059,0.127292274,1005.55985,3008656476 +0,1326,1325,128,3.09135556,0.127303674,1005.4698,3008656476 +0,1327,1326,128,4.15317345,0.126770125,1009.70162,3008656476 +0,1328,1327,128,3.82465291,0.127530476,1003.68166,3008656476 +0,1329,1328,128,3.76960063,0.127288568,1005.58913,3008656476 +0,1330,1329,128,3.28767967,0.140367358,911.89292,3008656476 +0,1331,1330,128,3.49885273,0.140798798,909.09867,3008656476 +0,1332,1331,128,3.01491475,0.125498746,1019.93051,3008656476 +0,1333,1332,128,3.5466032,0.126137542,1014.76529,3008656476 +0,1334,1333,128,3.18638039,0.125322894,1021.36167,3008656476 +0,1335,1334,128,3.98819137,0.125173873,1022.57761,3008656476 +0,1336,1335,128,3.2545073,0.12554142,1019.58382,3008656476 +0,1337,1336,128,3.88930774,0.126023894,1015.68041,3008656476 +0,1338,1337,128,2.87636781,0.140344675,912.040304,3008656476 +0,1339,1338,128,3.15091228,0.139045584,920.561418,3008656476 +0,1340,1339,128,3.06123972,0.120335138,1063.69596,3008656476 +0,1341,1340,128,3.06492352,0.128945648,992.666305,3008656476 +0,1342,1341,128,3.10195994,0.129363855,989.457217,3008656476 +0,1343,1342,128,3.29567099,0.130772132,978.801814,3008656476 +0,1344,1343,128,3.1085875,0.130732727,979.096841,3008656476 +0,1345,1344,128,3.70366836,0.129920469,985.218118,3008656476 +0,1346,1345,128,3.39710212,0.143231014,893.661201,3008656476 +0,1347,1346,128,3.7151351,0.126044434,1015.51489,3008656476 +0,1348,1347,128,3.06024027,0.1357281,943.061901,3008656476 +0,1349,1348,128,2.62634182,0.132256208,967.818463,3008656476 +0,1350,1349,128,3.74755836,0.138378407,924.999809,3008656476 +0,1351,1350,128,3.61173153,0.131029269,976.880975,3008656476 +0,1352,1351,128,4.13781691,0.130827923,978.384408,3008656476 +0,1353,1352,128,3.21937251,0.131981228,969.834892,3008656476 +0,1354,1353,128,2.92084837,0.145509599,879.667052,3008656476 +0,1355,1354,128,3.62992978,0.143439841,892.360164,3008656476 +0,1356,1355,128,2.86080837,0.131196757,975.633872,3008656476 +0,1357,1356,128,2.98485518,0.129814407,986.023069,3008656476 +0,1358,1357,128,3.16463256,0.129762093,986.420587,3008656476 +0,1359,1358,128,3.88827991,0.129709942,986.817186,3008656476 +0,1360,1359,128,2.97270346,0.129802225,986.115608,3008656476 +0,1361,1360,128,2.97615123,0.131158546,975.918108,3008656476 +0,1362,1361,128,3.80164075,0.142998551,895.113965,3008656476 +0,1363,1362,128,3.93464375,0.142280373,899.632165,3008656476 +0,1364,1363,128,2.98763227,0.128147907,998.84581,3008656476 +0,1365,1364,128,2.89431024,0.127372883,1004.92347,3008656476 +0,1366,1365,128,3.28042626,0.128573451,995.539896,3008656476 +0,1367,1366,128,4.04057217,0.126784784,1009.58487,3008656476 +0,1368,1367,128,3.92069721,0.127292722,1005.55631,3008656476 +0,1369,1368,128,3.4129374,0.127168295,1006.54019,3008656476 +0,1370,1369,128,3.32886934,0.138905735,921.488231,3008656476 +0,1371,1370,128,3.25900412,0.142247142,899.842332,3008656476 +0,1372,1371,128,3.82074881,0.126461335,1012.16708,3008656476 +0,1373,1372,128,3.38759995,0.12639789,1012.67513,3008656476 +0,1374,1373,128,4.25536585,0.127340866,1005.17614,3008656476 +0,1375,1374,128,4.34046125,0.126964486,1008.15593,3008656476 +0,1376,1375,128,4.1712265,0.126906867,1008.61366,3008656476 +0,1377,1376,128,4.1411171,0.127258404,1005.82748,3008656476 +0,1378,1377,128,3.72205567,0.136995878,934.334681,3008656476 +0,1379,1378,128,2.94063902,0.1233346,1037.82718,3008656476 +0,1380,1379,128,3.30970979,0.129872506,985.581968,3008656476 +0,1381,1380,128,3.69561648,0.12585785,1017.02039,3008656476 +0,1382,1381,128,3.07780361,0.127269119,1005.7428,3008656476 +0,1383,1382,128,3.41510177,0.125549309,1019.51975,3008656476 +0,1384,1383,128,3.20466495,0.125324629,1021.34753,3008656476 +0,1385,1384,128,2.80622625,0.125344541,1021.18528,3008656476 +0,1386,1385,128,3.48836803,0.125015406,1023.87381,3008656476 +0,1387,1386,128,2.31452918,0.141004799,907.770522,3008656476 +0,1388,1387,128,3.09923267,0.142262453,899.745487,3008656476 +0,1389,1388,128,3.61830378,0.127320087,1005.34019,3008656476 +0,1390,1389,128,3.08607125,0.127046913,1007.50185,3008656476 +0,1391,1390,128,2.87266803,0.126963948,1008.16021,3008656476 +0,1392,1391,128,2.89580035,0.127369177,1004.95271,3008656476 +0,1393,1392,128,3.0444572,0.128797336,993.809375,3008656476 +0,1394,1393,128,3.43656659,0.128800897,993.781899,3008656476 +0,1395,1394,128,3.89971161,0.145024879,882.607184,3008656476 +0,1396,1395,128,3.40191126,0.142414483,898.784992,3008656476 +0,1397,1396,128,3.24700427,0.130615334,979.976823,3008656476 +0,1398,1397,128,4.29546309,0.129777096,986.306551,3008656476 +0,1399,1398,128,3.18066645,0.131173799,975.804627,3008656476 +0,1400,1399,128,3.71338439,0.131864139,970.696059,3008656476 +0,1401,1400,128,3.90534139,0.131594005,972.688687,3008656476 +0,1402,1401,128,3.88424635,0.129857059,985.699206,3008656476 +0,1403,1402,128,3.72597957,0.146528429,873.55062,3008656476 +0,1404,1403,128,3.83778358,0.142884654,895.827483,3008656476 +0,1405,1404,128,2.72450948,0.131675498,972.086698,3008656476 +0,1406,1405,128,3.394279,0.132327306,967.298465,3008656476 +0,1407,1406,128,4.61514711,0.130655607,979.674757,3008656476 +0,1408,1407,128,4.28694868,0.130556518,980.418304,3008656476 +0,1409,1408,128,4.60329437,0.132116984,968.838344,3008656476 +0,1410,1409,128,4.56524611,0.129626443,987.452846,3008656476 +0,1411,1410,128,3.85384655,0.135771304,942.761808,3008656476 +0,1412,1411,128,4.7541914,0.140572873,910.559749,3008656476 +0,1413,1412,128,4.34497595,0.12901295,992.148463,3008656476 +0,1414,1413,128,4.43989801,0.128763741,994.068664,3008656476 +0,1415,1414,128,4.12541246,0.129669959,987.121466,3008656476 +0,1416,1415,128,4.18784523,0.127395038,1004.74871,3008656476 +0,1417,1416,128,3.98260403,0.128608107,995.271628,3008656476 +0,1418,1417,128,4.17330647,0.127535756,1003.64011,3008656476 +0,1419,1418,128,4.04668283,0.141053535,907.456874,3008656476 +0,1420,1419,128,4.32971382,0.143189353,893.921212,3008656476 +0,1421,1420,128,4.03621435,0.128583359,995.463184,3008656476 +0,1422,1421,128,3.77223206,0.130192996,983.155807,3008656476 +0,1423,1422,128,4.47326946,0.127178245,1006.46144,3008656476 +0,1424,1423,128,3.86413789,0.128565678,995.600085,3008656476 +0,1425,1424,128,4.20332432,0.128034541,999.730221,3008656476 +0,1426,1425,128,4.98774815,0.127707235,1002.29247,3008656476 +0,1427,1426,128,3.82528329,0.139132464,919.986582,3008656476 +0,1428,1427,128,4.11484957,0.149984929,853.419079,3008656476 +0,1429,1428,128,3.71990037,0.131618985,972.504081,3008656476 +0,1430,1429,128,4.56391382,0.129526859,988.212028,3008656476 +0,1431,1430,128,4.087924,0.128131856,998.970935,3008656476 +0,1432,1431,128,4.26330662,0.128856906,993.349941,3008656476 +0,1433,1432,128,4.60273933,0.127766551,1001.82715,3008656476 +0,1434,1433,128,3.55624962,0.128662946,994.847421,3008656476 +0,1435,1434,128,3.76611853,0.133037449,962.135105,3008656476 +0,1436,1435,128,4.28917456,0.145085773,882.236744,3008656476 +0,1437,1436,128,3.12966704,0.125952645,1016.25496,3008656476 +0,1438,1437,128,4.25246477,0.128023391,999.817291,3008656476 +0,1439,1438,128,3.91595769,0.126828284,1009.2386,3008656476 +0,1440,1439,128,3.86886668,0.127415271,1004.58916,3008656476 +0,1441,1440,128,4.53428078,0.126245266,1013.8994,3008656476 +0,1442,1441,128,4.5387249,0.12708797,1007.17637,3008656476 +0,1443,1442,128,4.44675303,0.141368175,905.437168,3008656476 +0,1444,1443,128,3.29289818,0.147125139,870.007674,3008656476 +0,1445,1444,128,4.40309668,0.126687808,1010.35768,3008656476 +0,1446,1445,128,4.11059523,0.12639493,1012.69885,3008656476 +0,1447,1446,128,4.28365898,0.127173757,1006.49696,3008656476 +0,1448,1447,128,3.8253274,0.127269522,1005.73961,3008656476 +0,1449,1448,128,3.38281393,0.126944087,1008.31794,3008656476 +0,1450,1449,128,4.67200756,0.127089029,1007.16798,3008656476 +0,1451,1450,128,3.30827785,0.14114285,906.882637,3008656476 +0,1452,1451,128,3.74477601,0.14547531,879.874392,3008656476 +0,1453,1452,128,3.76685286,0.126532626,1011.5968,3008656476 +0,1454,1453,128,4.04471827,0.126467873,1012.11475,3008656476 +0,1455,1454,128,3.71169138,0.126975645,1008.06733,3008656476 +0,1456,1455,128,2.80976892,0.126163216,1014.55879,3008656476 +0,1457,1456,128,4.33545923,0.127454536,1004.27968,3008656476 +0,1458,1457,128,4.03426075,0.127131445,1006.83194,3008656476 +0,1459,1458,128,4.24767876,0.144889174,883.433844,3008656476 +0,1460,1459,128,4.11653996,0.141596086,903.979789,3008656476 +0,1461,1460,128,3.62608075,0.126581351,1011.20741,3008656476 +0,1462,1461,128,2.62241387,0.126563193,1011.35249,3008656476 +0,1463,1462,128,3.04510999,0.126243091,1013.91687,3008656476 +0,1464,1463,128,3.79388762,0.12701645,1007.74349,3008656476 +0,1465,1464,128,2.66057634,0.126298473,1013.47227,3008656476 +0,1466,1465,128,3.69008732,0.126858288,1008.9999,3008656476 +0,1467,1466,128,4.48328447,0.145086625,882.231563,3008656476 +0,1468,1467,128,3.815063,0.141731519,903.115982,3008656476 +0,1469,1468,128,3.39952278,0.126774805,1009.66434,3008656476 +0,1470,1469,128,4.55077553,0.126693539,1010.31198,3008656476 +0,1471,1470,128,3.47251844,0.127568364,1003.38357,3008656476 +0,1472,1471,128,4.57717609,0.127105614,1007.03656,3008656476 +0,1473,1472,128,3.98687768,0.126681173,1010.4106,3008656476 +0,1474,1473,128,4.33023453,0.127483787,1004.04924,3008656476 +0,1475,1474,128,3.54465461,0.142101439,900.764981,3008656476 +0,1476,1475,128,3.47125983,0.139700177,916.247944,3008656476 +0,1477,1476,128,3.63682389,0.126391115,1012.72942,3008656476 +0,1478,1477,128,4.06901646,0.127364597,1004.98885,3008656476 +0,1479,1478,128,3.9104588,0.127604005,1003.10331,3008656476 +0,1480,1479,128,4.17339516,0.127022539,1007.69518,3008656476 +0,1481,1480,128,3.86781502,0.127018481,1007.72737,3008656476 +0,1482,1481,128,4.39723635,0.128012868,999.899479,3008656476 +0,1483,1482,128,3.59493637,0.141821982,902.539918,3008656476 +0,1484,1483,128,3.46732688,0.139800535,915.590201,3008656476 +0,1485,1484,128,3.85313559,0.126706212,1010.21093,3008656476 +0,1486,1485,128,4.12030411,0.127970432,1000.23105,3008656476 +0,1487,1486,128,4.2619133,0.128117147,999.085626,3008656476 +0,1488,1487,128,4.21065235,0.126820994,1009.29662,3008656476 +0,1489,1488,128,3.67745113,0.127787578,1001.66231,3008656476 +0,1490,1489,128,3.39738202,0.127140296,1006.76185,3008656476 +0,1491,1490,128,3.78322482,0.144396719,886.446734,3008656476 +0,1492,1491,128,3.81352568,0.139547673,917.249261,3008656476 +0,1493,1492,128,3.88159919,0.126808868,1009.39313,3008656476 +0,1494,1493,128,3.68549013,0.127076188,1007.26975,3008656476 +0,1495,1494,128,2.76247978,0.127384719,1004.8301,3008656476 +0,1496,1495,128,3.37724495,0.127160675,1006.60051,3008656476 +0,1497,1496,128,3.54466748,0.126570977,1011.29029,3008656476 +0,1498,1497,128,3.61874533,0.127219067,1006.13849,3008656476 +0,1499,1498,128,3.84019589,0.142745256,896.702304,3008656476 +0,1500,1499,128,3.37681842,0.142645611,897.328695,3008656476 +0,1501,1500,128,3.97995663,0.126322959,1013.27582,3008656476 +0,1502,1501,128,4.39728594,0.127689612,1002.4308,3008656476 +0,1503,1502,128,3.37000442,0.127032454,1007.61653,3008656476 +0,1504,1503,128,3.79192901,0.12717399,1006.49512,3008656476 +0,1505,1504,128,3.51680565,0.127283265,1005.63102,3008656476 +0,1506,1505,128,3.93841028,0.126590457,1011.13467,3008656476 +0,1507,1506,128,3.27970171,0.141608461,903.900792,3008656476 +0,1508,1507,128,3.78980446,0.141232345,906.307971,3008656476 +0,1509,1508,128,3.44956756,0.127875613,1000.97272,3008656476 +0,1510,1509,128,4.17685175,0.127017294,1007.73679,3008656476 +0,1511,1510,128,4.55384493,0.12566003,1018.62143,3008656476 +0,1512,1511,128,3.62260628,0.125970917,1016.10755,3008656476 +0,1513,1512,128,3.99410725,0.126000639,1015.86786,3008656476 +0,1514,1513,128,4.244524,0.126271541,1013.68843,3008656476 +0,1515,1514,128,4.73498631,0.140839956,908.833002,3008656476 +0,1516,1515,128,3.65942359,0.124445384,1028.56366,3008656476 +0,1517,1516,128,4.28863144,0.129671842,987.107132,3008656476 +0,1518,1517,128,4.27561092,0.127296575,1005.52588,3008656476 +0,1519,1518,128,4.27178097,0.127380045,1004.86697,3008656476 +0,1520,1519,128,3.33346367,0.128970078,992.478271,3008656476 +0,1521,1520,128,3.95388746,0.129704848,986.855942,3008656476 +0,1522,1521,128,3.30242491,0.129595973,987.685011,3008656476 +0,1523,1522,128,4.26027393,0.144011009,888.820937,3008656476 +0,1524,1523,128,4.59164906,0.128503159,996.084462,3008656476 +0,1525,1524,128,4.30153418,0.135559204,944.236881,3008656476 +0,1526,1525,128,3.6850431,0.130136497,983.582646,3008656476 +0,1527,1526,128,3.0653944,0.130396542,981.621123,3008656476 +0,1528,1527,128,2.71342659,0.13003195,984.373456,3008656476 +0,1529,1528,128,3.64595199,0.130073432,984.059527,3008656476 +0,1530,1529,128,4.43775177,0.131609668,972.572927,3008656476 +0,1531,1530,128,4.43133736,0.146143887,875.849155,3008656476 +0,1532,1531,128,5.05162001,0.141335618,905.645738,3008656476 +0,1533,1532,128,4.76100731,0.126436397,1012.36672,3008656476 +0,1534,1533,128,3.91055202,0.130984011,977.21851,3008656476 +0,1535,1534,128,3.96422553,0.130266965,982.597545,3008656476 +0,1536,1535,128,3.30495882,0.130904376,977.812995,3008656476 +0,1537,1536,128,3.69955587,0.12908052,991.629101,3008656476 +0,1538,1537,128,3.79640126,0.129912053,985.281943,3008656476 +0,1539,1538,128,3.99435973,0.144994973,882.789226,3008656476 +0,1540,1539,128,3.55976009,0.138385286,924.953828,3008656476 +0,1541,1540,128,4.56753445,0.120121586,1065.587,3008656476 +0,1542,1541,128,4.44705582,0.126646787,1010.68494,3008656476 +0,1543,1542,128,4.37308168,0.126248187,1013.87595,3008656476 +0,1544,1543,128,4.14603567,0.126868151,1008.92146,3008656476 +0,1545,1544,128,4.981359,0.126075215,1015.26696,3008656476 +0,1546,1545,128,4.29013109,0.126553995,1011.42599,3008656476 +0,1547,1546,128,3.6111455,0.125897896,1016.6969,3008656476 +0,1548,1547,128,4.23954582,0.13473088,950.042039,3008656476 +0,1549,1548,128,4.09471416,0.142165969,900.356118,3008656476 +0,1550,1549,128,4.37856531,0.127542575,1003.58645,3008656476 +0,1551,1550,128,3.97582078,0.12787915,1000.94503,3008656476 +0,1552,1551,128,3.68994164,0.126386096,1012.76963,3008656476 +0,1553,1552,128,4.32105207,0.127504803,1003.88375,3008656476 +0,1554,1553,128,4.87431955,0.127570226,1003.36892,3008656476 +0,1555,1554,128,4.74138069,0.125728072,1018.07017,3008656476 +0,1556,1555,128,3.72320914,0.141524175,904.439118,3008656476 +0,1557,1556,128,4.19687653,0.142504266,898.218724,3008656476 +0,1558,1557,128,4.50175285,0.127531082,1003.67689,3008656476 +0,1559,1558,128,3.99528241,0.126974843,1008.0737,3008656476 +0,1560,1559,128,3.66531873,0.126778294,1009.63655,3008656476 +0,1561,1560,128,3.82537675,0.126723674,1010.07173,3008656476 +0,1562,1561,128,4.46048546,0.126565289,1011.33574,3008656476 +0,1563,1562,128,4.75168753,0.126506869,1011.80277,3008656476 +0,1564,1563,128,4.92825985,0.139034304,920.636104,3008656476 +0,1565,1564,128,4.47357798,0.139772464,915.774083,3008656476 +0,1566,1565,128,4.35087919,0.126043312,1015.52393,3008656476 +0,1567,1566,128,3.54074097,0.12633734,1013.16048,3008656476 +0,1568,1567,128,3.12677956,0.126038548,1015.56232,3008656476 +0,1569,1568,128,2.57429504,0.127818581,1001.41935,3008656476 +0,1570,1569,128,3.51051521,0.126449843,1012.25907,3008656476 +0,1571,1570,128,3.85314965,0.127247959,1005.91004,3008656476 +0,1572,1571,128,4.09072733,0.140790307,909.153497,3008656476 +0,1573,1572,128,3.02190447,0.140964435,908.030455,3008656476 +0,1574,1573,128,3.84244561,0.128634808,995.065037,3008656476 +0,1575,1574,128,4.72388601,0.130201409,983.09228,3008656476 +0,1576,1575,128,4.60694742,0.129753256,986.487769,3008656476 +0,1577,1576,128,4.16614628,0.130288516,982.435014,3008656476 +0,1578,1577,128,4.27748728,0.130514178,980.736361,3008656476 +0,1579,1578,128,3.5903039,0.130111388,983.772458,3008656476 +0,1580,1579,128,4.08938122,0.146416619,874.217701,3008656476 +0,1581,1580,128,4.35985804,0.145610757,879.055934,3008656476 +0,1582,1581,128,3.89534116,0.131897697,970.44909,3008656476 +0,1583,1582,128,4.01625633,0.138898866,921.533801,3008656476 +0,1584,1583,128,3.95228195,0.143452535,892.281199,3008656476 +0,1585,1584,128,4.17446518,0.143578478,891.498516,3008656476 +0,1586,1585,128,4.26667929,0.133579547,958.230529,3008656476 +0,1587,1586,128,4.62672663,0.14484885,883.679781,3008656476 +0,1588,1587,128,3.63618112,0.131424476,973.943392,3008656476 +0,1589,1588,128,3.73999596,0.13317352,961.152037,3008656476 +0,1590,1589,128,4.09816885,0.129584094,987.775552,3008656476 +0,1591,1590,128,3.58925605,0.129694434,986.935183,3008656476 +0,1592,1591,128,3.46977615,0.179157906,714.453539,3008656476 +0,1593,1592,128,3.8340919,0.128449559,996.500113,3008656476 +0,1594,1593,128,4.52017307,0.127382474,1004.84781,3008656476 +0,1595,1594,128,4.46610022,0.141844149,902.398872,3008656476 +0,1596,1595,128,4.0919404,0.143394995,892.639244,3008656476 +0,1597,1596,128,3.71453547,0.126328768,1013.22923,3008656476 +0,1598,1597,128,4.24357557,0.127568241,1003.38453,3008656476 +0,1599,1598,128,3.81563282,0.126871066,1008.89828,3008656476 +0,1600,1599,128,4.04804039,0.126435326,1012.37529,3008656476 +0,1601,1600,128,3.22482967,0.127118588,1006.93378,3008656476 +0,1602,1601,128,3.52314043,0.127354975,1005.06478,3008656476 +0,1603,1602,128,3.74571347,0.138761292,922.44745,3008656476 +0,1604,1603,128,3.63464665,0.141776173,902.831536,3008656476 +0,1605,1604,128,3.23673368,0.126728812,1010.03077,3008656476 +0,1606,1605,128,2.72931194,0.127333639,1005.23319,3008656476 +0,1607,1606,128,2.62271833,0.126274961,1013.66097,3008656476 +0,1608,1607,128,4.06822729,0.126645597,1010.69443,3008656476 +0,1609,1608,128,4.03609943,0.126584129,1011.18522,3008656476 +0,1610,1609,128,3.78815842,0.126816041,1009.33604,3008656476 +0,1611,1610,128,3.7429285,0.140941102,908.18078,3008656476 +0,1612,1611,128,4.27312469,0.139776296,915.748976,3008656476 +0,1613,1612,128,4.19995165,0.127572563,1003.35054,3008656476 +0,1614,1613,128,3.54855847,0.128162616,998.731174,3008656476 +0,1615,1614,128,3.3046937,0.127315254,1005.37835,3008656476 +0,1616,1615,128,3.31738305,0.127065954,1007.35088,3008656476 +0,1617,1616,128,3.58596253,0.127553745,1003.49856,3008656476 +0,1618,1617,128,3.72299528,0.126449725,1012.26001,3008656476 +0,1619,1618,128,2.58314371,0.140616884,910.274758,3008656476 +0,1620,1619,128,3.98278356,0.126934876,1008.39111,3008656476 +0,1621,1620,128,4.60139513,0.128467638,996.359877,3008656476 +0,1622,1621,128,4.33657408,0.125574932,1019.31172,3008656476 +0,1623,1622,128,3.5699656,0.127049303,1007.4829,3008656476 +0,1624,1623,128,4.09963369,0.126410056,1012.57767,3008656476 +0,1625,1624,128,3.70998502,0.127054106,1007.44481,3008656476 +0,1626,1625,128,3.41685367,0.128165355,998.709831,3008656476 +0,1627,1626,128,4.07876635,0.129281345,990.088709,3008656476 +0,1628,1627,128,3.92374897,0.134506498,951.626887,3008656476 +0,1629,1628,128,3.75514627,0.144438937,886.187635,3008656476 +0,1630,1629,128,3.39647388,0.132227759,968.026691,3008656476 +0,1631,1630,128,3.9064548,0.138266515,925.748364,3008656476 +0,1632,1631,128,3.64437985,0.143644174,891.090787,3008656476 +0,1633,1632,128,4.00286627,0.143302814,893.213444,3008656476 +0,1634,1633,128,3.73385334,0.13360379,958.056654,3008656476 +0,1635,1634,128,3.75275588,0.146006507,876.673257,3008656476 +0,1636,1635,128,3.58931184,0.143344963,892.950804,3008656476 +0,1637,1636,128,3.3783567,0.130539064,980.549393,3008656476 +0,1638,1637,128,3.63617849,0.130665187,979.60293,3008656476 +0,1639,1638,128,4.59920835,0.13103254,976.856588,3008656476 +0,1640,1639,128,4.67148876,0.118405309,1081.03261,3008656476 +0,1641,1640,128,3.85887432,0.131421355,973.966522,3008656476 +0,1642,1641,128,2.69426465,0.130050384,984.233926,3008656476 +0,1643,1642,128,3.99271131,0.146793007,871.976143,3008656476 +0,1644,1643,128,3.18263674,0.144769037,884.166965,3008656476 +0,1645,1644,128,3.3085568,0.129391519,989.245671,3008656476 +0,1646,1645,128,2.51009607,0.129819502,985.984371,3008656476 +0,1647,1646,128,4.46370745,0.13000403,984.584862,3008656476 +0,1648,1647,128,3.75542092,0.131325711,974.675858,3008656476 +0,1649,1648,128,3.36139059,0.128913199,992.916171,3008656476 +0,1650,1649,128,3.06739783,0.127848807,1001.18259,3008656476 +0,1651,1650,128,3.36355877,0.142388889,898.946546,3008656476 +0,1652,1651,128,3.73519492,0.142016137,901.306026,3008656476 +0,1653,1652,128,4.06467199,0.128538306,995.812097,3008656476 +0,1654,1653,128,3.11704373,0.127446323,1004.34439,3008656476 +0,1655,1654,128,3.37368631,0.127285664,1005.61207,3008656476 +0,1656,1655,128,3.27491093,0.127993219,1000.05298,3008656476 +0,1657,1656,128,3.93505359,0.127031181,1007.62662,3008656476 +0,1658,1657,128,3.99156857,0.126656793,1010.60509,3008656476 +0,1659,1658,128,4.29434633,0.140144657,913.341991,3008656476 +0,1660,1659,128,4.11969757,0.139412916,918.135878,3008656476 +0,1661,1660,128,2.85674262,0.127795473,1001.60042,3008656476 +0,1662,1661,128,3.10152078,0.126775076,1009.66218,3008656476 +0,1663,1662,128,3.4913311,0.127324445,1005.30578,3008656476 +0,1664,1663,128,4.11171198,0.126116598,1014.93382,3008656476 +0,1665,1664,128,4.11913443,0.127119435,1006.92707,3008656476 +0,1666,1665,128,3.69128323,0.127329513,1005.26576,3008656476 +0,1667,1666,128,4.02566099,0.142042277,901.140158,3008656476 +0,1668,1667,128,4.16766214,0.14059121,910.440987,3008656476 +0,1669,1668,128,4.23163652,0.125950164,1016.27498,3008656476 +0,1670,1669,128,3.89940715,0.126657615,1010.59853,3008656476 +0,1671,1670,128,4.08238173,0.127419958,1004.55221,3008656476 +0,1672,1671,128,2.93573236,0.127406371,1004.65934,3008656476 +0,1673,1672,128,3.53137994,0.127806122,1001.51697,3008656476 +0,1674,1673,128,3.67857552,0.126724667,1010.06381,3008656476 +0,1675,1674,128,4.07328796,0.14049919,911.037281,3008656476 +0,1676,1675,128,3.63783431,0.140091486,913.688645,3008656476 +0,1677,1676,128,3.5886333,0.126899682,1008.67077,3008656476 +0,1678,1677,128,4.33996153,0.12633875,1013.14917,3008656476 +0,1679,1678,128,4.1883235,0.127164319,1006.57166,3008656476 +0,1680,1679,128,4.21099949,0.126459181,1012.18432,3008656476 +0,1681,1680,128,3.92364287,0.126989232,1007.95948,3008656476 +0,1682,1681,128,4.3725462,0.126124264,1014.87213,3008656476 +0,1683,1682,128,4.06983042,0.142511804,898.171214,3008656476 +0,1684,1683,128,3.94999981,0.140718258,909.618992,3008656476 +0,1685,1684,128,3.60801983,0.127019349,1007.72049,3008656476 +0,1686,1685,128,2.89400268,0.126361619,1012.96581,3008656476 +0,1687,1686,128,4.04309177,0.12652752,1011.63763,3008656476 +0,1688,1687,128,3.48707962,0.12647193,1012.08229,3008656476 +0,1689,1688,128,3.50787354,0.126281232,1013.61064,3008656476 +0,1690,1689,128,4.01640987,0.125668939,1018.54922,3008656476 +0,1691,1690,128,4.2232585,0.140135003,913.404911,3008656476 +0,1692,1691,128,4.12976074,0.139107192,920.153719,3008656476 +0,1693,1692,128,3.89257765,0.121438831,1054.02859,3008656476 +0,1694,1693,128,4.27604771,0.128074147,999.421062,3008656476 +0,1695,1694,128,4.30532312,0.127964833,1000.27482,3008656476 +0,1696,1695,128,4.20847702,0.127392938,1004.76527,3008656476 +0,1697,1696,128,4.10941362,0.128271426,997.883971,3008656476 +0,1698,1697,128,4.15462065,0.129276317,990.127217,3008656476 +0,1699,1698,128,4.65658283,0.1426389,897.370914,3008656476 +0,1700,1699,128,4.26594639,0.128292462,997.720349,3008656476 +0,1701,1700,128,4.16844702,0.136189572,939.86638,3008656476 +0,1702,1701,128,3.95167661,0.130320056,982.197245,3008656476 +0,1703,1702,128,2.69304156,0.131719262,971.76372,3008656476 +0,1704,1703,128,3.03195691,0.131162366,975.889685,3008656476 +0,1705,1704,128,2.88249993,0.131680874,972.047011,3008656476 +0,1706,1705,128,3.13408422,0.138719249,922.727025,3008656476 +0,1707,1706,128,3.53124857,0.155338004,824.009558,3008656476 +0,1708,1707,128,3.58089304,0.145705781,878.482646,3008656476 +0,1709,1708,128,4.45520973,0.131218178,975.474602,3008656476 +0,1710,1709,128,3.61709309,0.131067987,976.5924,3008656476 +0,1711,1710,128,4.18796635,0.133015736,962.292161,3008656476 +0,1712,1711,128,3.80045915,0.130804841,978.557055,3008656476 +0,1713,1712,128,3.25009251,0.130926175,977.650191,3008656476 +0,1714,1713,128,3.57320285,0.130654759,979.681115,3008656476 +0,1715,1714,128,3.83376741,0.144622186,885.064758,3008656476 +0,1716,1715,128,3.46303701,0.142657937,897.251164,3008656476 +0,1717,1716,128,3.48604465,0.132276245,967.67186,3008656476 +0,1718,1717,128,4.33148098,0.129327154,989.73801,3008656476 +0,1719,1718,128,3.15096736,0.128864593,993.290686,3008656476 +0,1720,1719,128,3.87646699,0.128614632,995.221135,3008656476 +0,1721,1720,128,4.45733833,0.128276728,997.842726,3008656476 +0,1722,1721,128,3.6264472,0.128472246,996.32414,3008656476 +0,1723,1722,128,4.09599972,0.141399363,905.237459,3008656476 +0,1724,1723,128,4.21253538,0.143483974,892.08569,3008656476 +0,1725,1724,128,4.58803749,0.127738004,1002.05104,3008656476 +0,1726,1725,128,3.94337177,0.127927573,1000.56616,3008656476 +0,1727,1726,128,4.63077211,0.1272672,1005.75796,3008656476 +0,1728,1727,128,4.12704659,0.126735891,1009.97436,3008656476 +0,1729,1728,128,3.90447378,0.125523532,1019.72911,3008656476 +0,1730,1729,128,4.13534212,0.127389093,1004.7956,3008656476 +0,1731,1730,128,3.19397998,0.140455521,911.320531,3008656476 +0,1732,1731,128,3.55938816,0.140301119,912.323443,3008656476 +0,1733,1732,128,3.8262372,0.125482644,1020.06139,3008656476 +0,1734,1733,128,3.33815098,0.125742648,1017.95216,3008656476 +0,1735,1734,128,4.11820841,0.127716783,1002.21754,3008656476 +0,1736,1735,128,3.03012061,0.127587871,1003.23016,3008656476 +0,1737,1736,128,3.93450618,0.126463212,1012.15206,3008656476 +0,1738,1737,128,2.90735579,0.126800334,1009.46106,3008656476 +0,1739,1738,128,3.3743794,0.138642785,923.235926,3008656476 +0,1740,1739,128,2.89567995,0.141979766,901.536913,3008656476 +0,1741,1740,128,3.04910398,0.12787111,1001.00797,3008656476 +0,1742,1741,128,3.31800389,0.127453442,1004.2883,3008656476 +0,1743,1742,128,3.7242465,0.128328965,997.436549,3008656476 +0,1744,1743,128,3.80970263,0.126048472,1015.48236,3008656476 +0,1745,1744,128,4.44975805,0.127667734,1002.60258,3008656476 +0,1746,1745,128,2.75436115,0.126984092,1008.00028,3008656476 +0,1747,1746,128,4.30337,0.141534034,904.376116,3008656476 +0,1748,1747,128,4.65001345,0.14105326,907.458644,3008656476 +0,1749,1748,128,3.65845013,0.128392208,996.945235,3008656476 +0,1750,1749,128,4.24523687,0.127255597,1005.84967,3008656476 +0,1751,1750,128,3.4752841,0.126728178,1010.03583,3008656476 +0,1752,1751,128,4.23668575,0.125917497,1016.53863,3008656476 +0,1753,1752,128,3.54029846,0.126928779,1008.43954,3008656476 +0,1754,1753,128,4.48579931,0.126134241,1014.79185,3008656476 +0,1755,1754,128,4.11006308,0.140042824,914.006133,3008656476 +0,1756,1755,128,4.45843983,0.126380224,1012.81669,3008656476 +0,1757,1756,128,3.8902967,0.129646041,987.303577,3008656476 +0,1758,1757,128,3.35727286,0.127755042,1001.9174,3008656476 +0,1759,1758,128,3.42082787,0.127566619,1003.39729,3008656476 +0,1760,1759,128,3.89425087,0.128531829,995.862278,3008656476 +0,1761,1760,128,4.32744455,0.128899193,993.02406,3008656476 +0,1762,1761,128,3.26873636,0.130312084,982.257332,3008656476 +0,1763,1762,128,4.67479944,0.144704767,884.559663,3008656476 +0,1764,1763,128,3.55134177,0.125195821,1022.39834,3008656476 +0,1765,1764,128,3.55795741,0.136549276,937.390543,3008656476 +0,1766,1765,128,2.78883171,0.131565505,972.899393,3008656476 +0,1767,1766,128,3.94115829,0.1313584,974.433306,3008656476 +0,1768,1767,128,4.2644515,0.138563423,923.764708,3008656476 +0,1769,1768,128,3.65318608,0.142488386,898.318829,3008656476 +0,1770,1769,128,3.47063804,0.143974303,889.047541,3008656476 +0,1771,1770,128,3.80640149,0.153158562,835.735191,3008656476 +0,1772,1771,128,3.56573701,0.149233373,857.716993,3008656476 +0,1773,1772,128,3.10270071,0.13291092,963.051042,3008656476 +0,1774,1773,128,3.2312274,0.133272944,960.435,3008656476 +0,1775,1774,128,3.06443548,0.144283179,887.144301,3008656476 +0,1776,1775,128,3.65132666,0.134134856,954.263521,3008656476 +0,1777,1776,128,3.68703794,0.13291496,963.02177,3008656476 +0,1778,1777,128,3.40509129,0.130231053,982.868502,3008656476 +0,1779,1778,128,2.91042161,0.143799896,890.125818,3008656476 +0,1780,1779,128,3.92384076,0.147035363,870.538878,3008656476 +0,1781,1780,128,3.13530922,0.130769729,978.8198,3008656476 +0,1782,1781,128,2.32213473,0.131028765,976.884732,3008656476 +0,1783,1782,128,2.53973818,0.129537002,988.134649,3008656476 +0,1784,1783,128,3.05034041,0.129872083,985.585178,3008656476 +0,1785,1784,128,3.49516129,0.129957963,984.933874,3008656476 +0,1786,1785,128,3.54379869,0.129063208,991.762114,3008656476 +0,1787,1786,128,2.73393774,0.142367405,899.082202,3008656476 +0,1788,1787,128,3.12078261,0.144440344,886.179003,3008656476 +0,1789,1788,128,2.78607249,0.130311781,982.259616,3008656476 +0,1790,1789,128,3.21325278,0.130066364,984.113002,3008656476 +0,1791,1790,128,2.62563372,0.130455045,981.180912,3008656476 +0,1792,1791,128,3.96562314,0.131550693,973.008937,3008656476 +0,1793,1792,128,3.60177779,0.129116398,991.353554,3008656476 +0,1794,1793,128,3.23710775,0.12797996,1000.15659,3008656476 +0,1795,1794,128,3.39978719,0.133463869,959.061062,3008656476 +0,1796,1795,128,2.35466838,0.146550339,873.42002,3008656476 +0,1797,1796,128,3.55985999,0.127423773,1004.52213,3008656476 +0,1798,1797,128,3.88692474,0.128244071,998.096824,3008656476 +0,1799,1798,128,3.61026812,0.128406147,996.837013,3008656476 +0,1800,1799,128,3.04486418,0.127417217,1004.57382,3008656476 +0,1801,1800,128,2.92172265,0.128228928,998.214693,3008656476 +0,1802,1801,128,3.33183098,0.127319151,1005.34758,3008656476 +0,1803,1802,128,2.6567409,0.142917492,895.62165,3008656476 +0,1804,1803,128,3.61722136,0.146042213,876.458918,3008656476 +0,1805,1804,128,2.9483726,0.12909124,991.546754,3008656476 +0,1806,1805,128,3.88127017,0.128415972,996.760746,3008656476 +0,1807,1806,128,3.40047193,0.128227739,998.223949,3008656476 +0,1808,1807,128,3.85613537,0.126912238,1008.57098,3008656476 +0,1809,1808,128,3.51040244,0.128924747,992.827234,3008656476 +0,1810,1809,128,4.75835943,0.127748721,1001.96698,3008656476 +0,1811,1810,128,3.42153811,0.141716587,903.211139,3008656476 +0,1812,1811,128,3.20531154,0.143470005,892.172549,3008656476 +0,1813,1812,128,2.89384246,0.128437922,996.5904,3008656476 +0,1814,1813,128,2.78408718,0.127131735,1006.82965,3008656476 +0,1815,1814,128,3.88663626,0.128308906,997.592482,3008656476 +0,1816,1815,128,4.08150196,0.127192441,1006.34911,3008656476 +0,1817,1816,128,3.39589357,0.128048059,999.62468,3008656476 +0,1818,1817,128,3.6379509,0.128947256,992.653927,3008656476 +0,1819,1818,128,2.42531466,0.145477775,879.859484,3008656476 +0,1820,1819,128,2.39670253,0.143813861,890.039382,3008656476 +0,1821,1820,128,3.09385657,0.129580006,987.806715,3008656476 +0,1822,1821,128,3.71195674,0.131302661,974.846961,3008656476 +0,1823,1822,128,4.68601847,0.129243992,990.374856,3008656476 +0,1824,1823,128,4.02327824,0.127443622,1004.36568,3008656476 +0,1825,1824,128,3.33374143,0.129232325,990.464267,3008656476 +0,1826,1825,128,2.8867445,0.127376417,1004.89559,3008656476 +0,1827,1826,128,3.95482159,0.13948222,917.679687,3008656476 +0,1828,1827,128,3.05889082,0.14483238,883.780271,3008656476 +0,1829,1828,128,3.16623402,0.128480809,996.257737,3008656476 +0,1830,1829,128,3.47034597,0.128938535,992.721067,3008656476 +0,1831,1830,128,3.3459332,0.128067774,999.470796,3008656476 +0,1832,1831,128,3.93578553,0.127983633,1000.12788,3008656476 +0,1833,1832,128,3.28519392,0.12784869,1001.18351,3008656476 +0,1834,1833,128,3.40965319,0.127001909,1007.85887,3008656476 +0,1835,1834,128,3.99387479,0.142017255,901.29893,3008656476 +0,1836,1835,128,3.47323203,0.147126261,870.001039,3008656476 +0,1837,1836,128,2.59728932,0.129340121,989.638783,3008656476 +0,1838,1837,128,3.99464226,0.129708799,986.825882,3008656476 +0,1839,1838,128,4.24786901,0.131434134,973.871825,3008656476 +0,1840,1839,128,4.01475382,0.12883375,993.528481,3008656476 +0,1841,1840,128,3.92178082,0.127946952,1000.41461,3008656476 +0,1842,1841,128,3.97388291,0.128043145,999.663043,3008656476 +0,1843,1842,128,3.92552042,0.135179174,946.89142,3008656476 +0,1844,1843,128,4.1713953,0.147330868,868.792818,3008656476 +0,1845,1844,128,3.96802878,0.128926279,992.815437,3008656476 +0,1846,1845,128,2.75295281,0.126974887,1008.07335,3008656476 +0,1847,1846,128,3.24089193,0.12747092,1004.15059,3008656476 +0,1848,1847,128,2.727633,0.128602234,995.31708,3008656476 +0,1849,1848,128,3.49697185,0.128376429,997.067772,3008656476 +0,1850,1849,128,3.85824776,0.12833498,997.3898,3008656476 +0,1851,1850,128,4.36293983,0.13692519,934.817034,3008656476 +0,1852,1851,128,3.4034884,0.144634062,884.992084,3008656476 +0,1853,1852,128,2.9959631,0.128630383,995.099268,3008656476 +0,1854,1853,128,3.46956301,0.127889247,1000.86601,3008656476 +0,1855,1854,128,4.27242804,0.127733056,1002.08986,3008656476 +0,1856,1855,128,3.66631985,0.127238863,1005.98195,3008656476 +0,1857,1856,128,3.26234341,0.127928523,1000.55873,3008656476 +0,1858,1857,128,2.65410304,0.126807192,1009.40647,3008656476 +0,1859,1858,128,4.06398344,0.143030597,894.913415,3008656476 +0,1860,1859,128,3.03594255,0.143458839,892.24199,3008656476 +0,1861,1860,128,3.84623003,0.129318179,989.8067,3008656476 +0,1862,1861,128,3.86806273,0.127388035,1004.80394,3008656476 +0,1863,1862,128,3.79611015,0.128568711,995.576599,3008656476 +0,1864,1863,128,3.98990321,0.127693427,1002.40085,3008656476 +0,1865,1864,128,4.22506714,0.127305752,1005.45339,3008656476 +0,1866,1865,128,3.79992366,0.125443797,1020.37728,3008656476 +0,1867,1866,128,3.74006677,0.144499184,885.818151,3008656476 +0,1868,1867,128,4.6112361,0.141054923,907.447945,3008656476 +0,1869,1868,128,3.68587685,0.128629464,995.106378,3008656476 +0,1870,1869,128,3.43860865,0.126589425,1011.14291,3008656476 +0,1871,1870,128,3.96399236,0.128844883,993.442634,3008656476 +0,1872,1871,128,3.09133863,0.126991663,1007.94018,3008656476 +0,1873,1872,128,3.80848861,0.127623763,1002.94802,3008656476 +0,1874,1873,128,3.52835894,0.1266943,1010.30591,3008656476 +0,1875,1874,128,4.05428457,0.143308615,893.177287,3008656476 +0,1876,1875,128,3.44615388,0.14295078,895.413093,3008656476 +0,1877,1876,128,3.12476683,0.127419776,1004.55364,3008656476 +0,1878,1877,128,3.0771153,0.128196993,998.463357,3008656476 +0,1879,1878,128,2.95514131,0.126934298,1008.3957,3008656476 +0,1880,1879,128,2.3453505,0.126819217,1009.31076,3008656476 +0,1881,1880,128,3.0706923,0.126011549,1015.77991,3008656476 +0,1882,1881,128,3.60538292,0.126356019,1013.01071,3008656476 +0,1883,1882,128,3.5123961,0.142289211,899.576286,3008656476 +0,1884,1883,128,2.86254454,0.14581962,877.796829,3008656476 +0,1885,1884,128,3.18664408,0.126917154,1008.53191,3008656476 +0,1886,1885,128,3.17644119,0.127560287,1003.4471,3008656476 +0,1887,1886,128,3.6180985,0.127671925,1002.56967,3008656476 +0,1888,1887,128,2.6652658,0.126449564,1012.2613,3008656476 +0,1889,1888,128,2.89829874,0.126227459,1014.04244,3008656476 +0,1890,1889,128,4.12354517,0.128181447,998.584452,3008656476 +0,1891,1890,128,3.95802879,0.143311271,893.160734,3008656476 +0,1892,1891,128,3.52550793,0.140369284,911.880408,3008656476 +0,1893,1892,128,3.69204497,0.125686043,1018.41061,3008656476 +0,1894,1893,128,3.00644684,0.127070169,1007.31746,3008656476 +0,1895,1894,128,3.35110784,0.126225626,1014.05716,3008656476 +0,1896,1895,128,3.63015103,0.127086318,1007.18946,3008656476 +0,1897,1896,128,3.93785381,0.127729193,1002.12017,3008656476 +0,1898,1897,128,3.73855639,0.127943132,1000.44448,3008656476 +0,1899,1898,128,4.03959179,0.141523075,904.446148,3008656476 +0,1900,1899,128,5.47437239,0.139062562,920.449028,3008656476 +0,1901,1900,128,4.11349726,0.126364037,1012.94643,3008656476 +0,1902,1901,128,3.29276514,0.127471006,1004.14992,3008656476 +0,1903,1902,128,3.55951786,0.127956743,1000.33806,3008656476 +0,1904,1903,128,4.00171852,0.127236868,1005.99773,3008656476 +0,1905,1904,128,2.51644921,0.126982932,1008.00949,3008656476 +0,1906,1905,128,4.02064323,0.126729817,1010.02276,3008656476 +0,1907,1906,128,2.73020196,0.143723024,890.601912,3008656476 +0,1908,1907,128,3.10516453,0.140034992,914.057252,3008656476 +0,1909,1908,128,3.67095065,0.126888623,1008.75868,3008656476 +0,1910,1909,128,3.28943014,0.127638194,1002.83462,3008656476 +0,1911,1910,128,3.50837255,0.127975613,1000.19056,3008656476 +0,1912,1911,128,3.37556529,0.127546462,1003.55586,3008656476 +0,1913,1912,128,3.42238665,0.128107886,999.15785,3008656476 +0,1914,1913,128,3.43037367,0.127917288,1000.64661,3008656476 +0,1915,1914,128,3.66057158,0.143048527,894.801245,3008656476 +0,1916,1915,128,2.69449091,0.143628949,891.185244,3008656476 +0,1917,1916,128,3.82234454,0.126603618,1011.02956,3008656476 +0,1918,1917,128,3.20005083,0.127343614,1005.15445,3008656476 +0,1919,1918,128,3.16695189,0.126777511,1009.64279,3008656476 +0,1920,1919,128,2.97197843,0.125507704,1019.85771,3008656476 +0,1921,1920,128,3.2634654,0.126412934,1012.55462,3008656476 +0,1922,1921,128,3.6316309,0.127817747,1001.42588,3008656476 +0,1923,1922,128,3.63295555,0.141516638,904.487287,3008656476 +0,1924,1923,128,3.52303481,0.138436067,924.614537,3008656476 +0,1925,1924,128,3.31718373,0.128523127,995.929705,3008656476 +0,1926,1925,128,2.7949369,0.1271374,1006.78479,3008656476 +0,1927,1926,128,3.43075109,0.127021024,1007.7072,3008656476 +0,1928,1927,128,3.59830213,0.126561142,1011.36888,3008656476 +0,1929,1928,128,4.04224539,0.127327629,1005.28064,3008656476 +0,1930,1929,128,5.13196898,0.126021526,1015.69949,3008656476 +0,1931,1930,128,4.32875776,0.14204394,901.129608,3008656476 +0,1932,1931,128,2.55517817,0.139171904,919.725867,3008656476 +0,1933,1932,128,2.50188899,0.125531178,1019.667,3008656476 +0,1934,1933,128,3.0551908,0.126625271,1010.85667,3008656476 +0,1935,1934,128,3.0424335,0.126989364,1007.95843,3008656476 +0,1936,1935,128,2.51139092,0.126293017,1013.51605,3008656476 +0,1937,1936,128,3.94456363,0.12617018,1014.50279,3008656476 +0,1938,1937,128,3.52544308,0.126672002,1010.48375,3008656476 +0,1939,1938,128,3.74321175,0.141244513,906.229894,3008656476 +0,1940,1939,128,3.01342368,0.136832433,935.450735,3008656476 +0,1941,1940,128,2.87774682,0.124244032,1030.23057,3008656476 +0,1942,1941,128,2.2777133,0.128229605,998.209423,3008656476 +0,1943,1942,128,4.11785889,0.128389054,996.969726,3008656476 +0,1944,1943,128,3.18795848,0.127924625,1000.58921,3008656476 +0,1945,1944,128,3.65915251,0.128002018,999.984235,3008656476 +0,1946,1945,128,3.85721803,0.129312371,989.851157,3008656476 +0,1947,1946,128,2.40824318,0.143603205,891.345009,3008656476 +0,1948,1947,128,2.93527079,0.127550719,1003.52237,3008656476 +0,1949,1948,128,3.98844409,0.132734452,964.331401,3008656476 +0,1950,1949,128,3.52226734,0.131572669,972.84642,3008656476 +0,1951,1950,128,4.19381809,0.131015807,976.98135,3008656476 +0,1952,1951,128,4.20694017,0.133967791,955.453539,3008656476 +0,1953,1952,128,3.4739244,0.135661753,943.523117,3008656476 +0,1954,1953,128,3.31005287,0.144303488,887.019446,3008656476 +0,1955,1954,128,3.50596881,0.144768947,884.167514,3008656476 +0,1956,1955,128,3.35809541,0.145434176,880.123252,3008656476 +0,1957,1956,128,3.94107533,0.131686159,972.008,3008656476 +0,1958,1957,128,3.49610567,0.131021599,976.938161,3008656476 +0,1959,1958,128,3.2058351,0.130639595,979.794832,3008656476 +0,1960,1959,128,2.60095978,0.130404107,981.564177,3008656476 +0,1961,1960,128,3.5670073,0.130816264,978.471607,3008656476 +0,1962,1961,128,3.43266463,0.130626474,979.893249,3008656476 +0,1963,1962,128,3.45305371,0.143838626,889.886142,3008656476 +0,1964,1963,128,2.56702518,0.14186284,902.279977,3008656476 +0,1965,1964,128,2.62440133,0.129348972,989.571065,3008656476 +0,1966,1965,128,3.04857898,0.12870401,994.530007,3008656476 +0,1967,1966,128,3.5652945,0.130750946,978.960412,3008656476 +0,1968,1967,128,3.74859214,0.128112883,999.118879,3008656476 +0,1969,1968,128,3.94327664,0.128662935,994.847506,3008656476 +0,1970,1969,128,3.30254626,0.128380591,997.035448,3008656476 +0,1971,1970,128,3.26573253,0.141053461,907.457351,3008656476 +0,1972,1971,128,3.53122187,0.14177236,902.855818,3008656476 +0,1973,1972,128,4.05409002,0.127564032,1003.41764,3008656476 +0,1974,1973,128,3.3660481,0.125552842,1019.49106,3008656476 +0,1975,1974,128,1.70045424,0.127162706,1006.58443,3008656476 +0,1976,1975,128,2.68763661,0.126626129,1010.84982,3008656476 +0,1977,1976,128,2.86220932,0.127040348,1007.55392,3008656476 +0,1978,1977,128,2.88009548,0.125771151,1017.72146,3008656476 +0,1979,1978,128,3.33057928,0.139570175,917.101379,3008656476 +0,1980,1979,128,3.45049334,0.140125017,913.470005,3008656476 +0,1981,1980,128,3.97963667,0.127057636,1007.41682,3008656476 +0,1982,1981,128,3.91948557,0.127076141,1007.27012,3008656476 +0,1983,1982,128,3.29329324,0.126330407,1013.21608,3008656476 +0,1984,1983,128,4.07492447,0.126275957,1013.65298,3008656476 +0,1985,1984,128,2.80810118,0.127458951,1004.24489,3008656476 +0,1986,1985,128,2.59585023,0.127768371,1001.81288,3008656476 +0,1987,1986,128,2.54310703,0.141593003,903.999472,3008656476 +0,1988,1987,128,3.40194297,0.139770839,915.78473,3008656476 +0,1989,1988,128,3.6447165,0.127229553,1006.05557,3008656476 +0,1990,1989,128,4.10157251,0.127783707,1001.69265,3008656476 +0,1991,1990,128,2.78373289,0.127780774,1001.71564,3008656476 +0,1992,1991,128,2.49363661,0.126341348,1013.12834,3008656476 +0,1993,1992,128,2.80615473,0.127667492,1002.60448,3008656476 +0,1994,1993,128,3.55550313,0.126991604,1007.94065,3008656476 +0,1995,1994,128,3.19348264,0.141062253,907.400791,3008656476 +0,1996,1995,128,3.16638827,0.136973547,934.487007,3008656476 +0,1997,1996,128,3.10696936,0.120380099,1063.29868,3008656476 +0,1998,1997,128,3.57280254,0.126615547,1010.9343,3008656476 +0,1999,1998,128,3.55025816,0.126753997,1009.83009,3008656476 +0,2000,1999,128,4.67332697,0.126918706,1008.51958,3008656476 +0,2001,2000,128,3.3340292,0.127408189,1004.645,3008656476 +0,2002,2001,128,2.56637979,0.128470486,996.337789,3008656476 +0,2003,2002,128,3.5220871,0.129160005,991.018853,3008656476 +0,2004,2003,128,3.34679461,0.136608261,936.985795,3008656476 +0,2005,2004,128,3.12364268,0.145800447,877.91226,3008656476 +0,2006,2005,128,2.90331626,0.137832362,928.664344,3008656476 +0,2007,2006,128,3.04812288,0.131060857,976.645529,3008656476 +0,2008,2007,128,3.00133109,0.131033583,976.848813,3008656476 +0,2009,2008,128,3.24766397,0.131856592,970.751618,3008656476 +0,2010,2009,128,3.15766191,0.130599951,980.092251,3008656476 +0,2011,2010,128,3.24538612,0.142973911,895.268228,3008656476 +0,2012,2011,128,4.07572699,0.138576736,923.675962,3008656476 +0,2013,2012,128,4.56390762,0.130504293,980.810647,3008656476 +0,2014,2013,128,3.99999666,0.130020487,984.460241,3008656476 +0,2015,2014,128,4.5717597,0.131663239,972.177207,3008656476 +0,2016,2015,128,3.65066218,0.128936782,992.734564,3008656476 +0,2017,2016,128,3.8217721,0.124197665,1030.61519,3008656476 +0,2018,2017,128,4.50538731,0.128569789,995.568251,3008656476 +0,2019,2018,128,3.9667244,0.141161842,906.760624,3008656476 +0,2020,2019,128,3.81139731,0.140475823,911.188824,3008656476 +0,2021,2020,128,3.28801656,0.127758281,1001.892,3008656476 +0,2022,2021,128,4.07018423,0.12842224,996.712096,3008656476 +0,2023,2022,128,4.18525505,0.127317103,1005.36375,3008656476 +0,2024,2023,128,4.08349037,0.127170324,1006.52413,3008656476 +0,2025,2024,128,4.39703703,0.125822399,1017.30694,3008656476 +0,2026,2025,128,3.97959256,0.126526363,1011.64688,3008656476 +0,2027,2026,128,3.96557999,0.138681528,922.978005,3008656476 +0,2028,2027,128,4.33057165,0.12295117,1041.0637,3008656476 +0,2029,2028,128,4.10031176,0.130351872,981.957513,3008656476 +0,2030,2029,128,4.39214659,0.127664199,1002.63035,3008656476 +0,2031,2030,128,4.29927015,0.12754292,1003.58373,3008656476 +0,2032,2031,128,4.1221776,0.127463491,1004.20912,3008656476 +0,2033,2032,128,3.31913018,0.127576864,1003.31671,3008656476 +0,2034,2033,128,3.61813712,0.127209934,1006.21073,3008656476 +0,2035,2034,128,3.43542838,0.127803205,1001.53983,3008656476 +0,2036,2035,128,4.32392645,0.141980238,901.533916,3008656476 +0,2037,2036,128,2.92056108,0.140785686,909.183338,3008656476 +0,2038,2037,128,3.29584312,0.127330211,1005.26025,3008656476 +0,2039,2038,128,3.56469297,0.126717085,1010.12425,3008656476 +0,2040,2039,128,4.06565332,0.126472309,1012.07925,3008656476 +0,2041,2040,128,3.6855545,0.126574125,1011.26514,3008656476 +0,2042,2041,128,5.10873652,0.126392401,1012.71911,3008656476 +0,2043,2042,128,4.72986364,0.126123622,1014.87729,3008656476 +0,2044,2043,128,4.88460684,0.140549207,910.713071,3008656476 +0,2045,2044,128,4.15556717,0.197716407,647.391898,3008656476 +0,2046,2045,128,3.9527123,0.116835977,1095.55296,3008656476 +0,2047,2046,128,3.81593394,0.128642636,995.004487,3008656476 +0,2048,2047,128,3.92744851,0.130259871,982.651058,3008656476 +0,2049,2048,128,4.1232605,0.130136755,983.580696,3008656476 +0,2050,2049,128,3.95999241,0.129613627,987.550483,3008656476 +0,2051,2050,128,3.97477055,0.144690706,884.645625,3008656476 +0,2052,2051,128,4.21504259,0.145425704,880.174525,3008656476 +0,2053,2052,128,3.38620973,0.133045649,962.075806,3008656476 +0,2054,2053,128,4.01539707,0.132124003,968.786875,3008656476 +0,2055,2054,128,4.4918375,0.13300759,962.351096,3008656476 +0,2056,2055,128,3.48322582,0.139047245,920.550422,3008656476 +0,2057,2056,128,3.66961646,0.143619009,891.246924,3008656476 +0,2058,2057,128,3.99032521,0.143955901,889.161188,3008656476 +0,2059,2058,128,3.66351724,0.152040556,841.880636,3008656476 +0,2060,2059,128,3.68515635,0.155132604,825.10057,3008656476 +0,2061,2060,128,2.77991772,0.13727542,932.432041,3008656476 +0,2062,2061,128,4.21601534,0.132598331,965.321351,3008656476 +0,2063,2062,128,3.82321477,0.133309223,960.173626,3008656476 +0,2064,2063,128,3.35071301,0.132743908,964.262707,3008656476 +0,2065,2064,128,3.49802113,0.133114429,961.578703,3008656476 +0,2066,2065,128,3.315238,0.133058574,961.982352,3008656476 +0,2067,2066,128,3.4203887,0.13828004,925.657817,3008656476 +0,2068,2067,128,3.44503927,0.141906698,902.001116,3008656476 +0,2069,2068,128,3.64886308,0.131668271,972.140053,3008656476 +0,2070,2069,128,3.53641701,0.131467685,973.62329,3008656476 +0,2071,2070,128,4.17946482,0.130625544,979.900225,3008656476 +0,2072,2071,128,4.23942184,0.133015137,962.296494,3008656476 +0,2073,2072,128,3.50010037,0.131203835,975.58124,3008656476 +0,2074,2073,128,4.00064087,0.142248771,899.832027,3008656476 +0,2075,2074,128,3.32843256,0.14314694,894.186072,3008656476 +0,2076,2075,128,4.4492588,0.123402958,1037.25228,3008656476 +0,2077,2076,128,3.98088741,0.128340989,997.343101,3008656476 +0,2078,2077,128,3.55195999,0.128219564,998.287594,3008656476 +0,2079,2078,128,3.26219106,0.131851353,970.79019,3008656476 +0,2080,2079,128,4.18122816,0.128954506,992.598118,3008656476 +0,2081,2080,128,3.78350973,0.129452364,988.780707,3008656476 +0,2082,2081,128,3.70099688,0.142640829,897.358778,3008656476 +0,2083,2082,128,3.41136956,0.12250646,1044.84286,3008656476 +0,2084,2083,128,3.87171006,0.130791335,978.658105,3008656476 +0,2085,2084,128,2.90642118,0.126570322,1011.29552,3008656476 +0,2086,2085,128,3.87088871,0.126821342,1009.29385,3008656476 +0,2087,2086,128,3.62829471,0.127856157,1001.12504,3008656476 +0,2088,2087,128,2.98141098,0.127196631,1006.31596,3008656476 +0,2089,2088,128,3.17481732,0.126860391,1008.98317,3008656476 +0,2090,2089,128,4.01488543,0.126673761,1010.46972,3008656476 +0,2091,2090,128,3.36217523,0.140528361,910.848167,3008656476 +0,2092,2091,128,2.76310325,0.142477884,898.385043,3008656476 +0,2093,2092,128,2.54832292,0.126703934,1010.22909,3008656476 +0,2094,2093,128,2.44678926,0.127713138,1002.24614,3008656476 +0,2095,2094,128,3.82165551,0.127423676,1004.5229,3008656476 +0,2096,2095,128,2.68272352,0.127165079,1006.56565,3008656476 +0,2097,2096,128,3.52423191,0.127127401,1006.86397,3008656476 +0,2098,2097,128,3.63173318,0.126630899,1010.81175,3008656476 +0,2099,2098,128,3.54583573,0.142016966,901.300764,3008656476 +0,2100,2099,128,3.55080462,0.142089929,900.837947,3008656476 +0,2101,2100,128,3.25883937,0.126587633,1011.15723,3008656476 +0,2102,2101,128,3.4369812,0.12662333,1010.87217,3008656476 +0,2103,2102,128,3.17828584,0.126098064,1015.08299,3008656476 +0,2104,2103,128,2.39117432,0.126181236,1014.4139,3008656476 +0,2105,2104,128,3.33799815,0.12632912,1013.2264,3008656476 +0,2106,2105,128,2.97201085,0.12666179,1010.56522,3008656476 +0,2107,2106,128,2.80648994,0.142452148,898.547349,3008656476 +0,2108,2107,128,3.8639586,0.140147995,913.320237,3008656476 +0,2109,2108,128,3.21538663,0.128362234,997.178033,3008656476 +0,2110,2109,128,3.68595982,0.128450371,996.493813,3008656476 +0,2111,2110,128,3.52984476,0.128186729,998.543305,3008656476 +0,2112,2111,128,3.31447649,0.128550345,995.718837,3008656476 +0,2113,2112,128,3.36627555,0.130002021,984.600078,3008656476 +0,2114,2113,128,3.56701398,0.130260612,982.645468,3008656476 +0,2115,2114,128,2.42932892,0.143515175,891.891746,3008656476 +0,2116,2115,128,4.11352825,0.143865089,889.722454,3008656476 +0,2117,2116,128,3.00255728,0.130008726,984.549299,3008656476 +0,2118,2117,128,3.57300234,0.131339836,974.571036,3008656476 +0,2119,2118,128,3.43011737,0.13134283,974.54882,3008656476 +0,2120,2119,128,4.27250481,0.131777269,971.335959,3008656476 +0,2121,2120,128,2.24910021,0.13814207,926.582322,3008656476 +0,2122,2121,128,2.66150069,0.139809846,915.529225,3008656476 +0,2123,2122,128,2.93355131,0.144928305,883.195315,3008656476 +0,2124,2123,128,2.30298805,0.154184864,830.172279,3008656476 +0,2125,2124,128,2.90328193,0.138245886,925.886503,3008656476 +0,2126,2125,128,1.87006259,0.134627629,950.770662,3008656476 +0,2127,2126,128,2.20501137,0.130802119,978.577419,3008656476 +0,2128,2127,128,4.24257326,0.130552573,980.44793,3008656476 +0,2129,2128,128,3.70129228,0.133115712,961.569435,3008656476 +0,2130,2129,128,2.71300745,0.143282297,893.341346,3008656476 +0,2131,2130,128,3.88067055,0.145865905,877.518293,3008656476 +0,2132,2131,128,2.90902662,0.131016548,976.975824,3008656476 +0,2133,2132,128,3.70749974,0.129712011,986.801446,3008656476 +0,2134,2133,128,3.07927775,0.131037829,976.81716,3008656476 +0,2135,2134,128,3.95801854,0.130320165,982.196424,3008656476 +0,2136,2135,128,3.06072044,0.130001681,984.602653,3008656476 +0,2137,2136,128,3.77778482,0.129751083,986.50429,3008656476 +0,2138,2137,128,3.40855742,0.144490992,885.868373,3008656476 +0,2139,2138,128,3.55659604,0.144226476,887.493084,3008656476 +0,2140,2139,128,4.81552362,0.127871625,1001.00394,3008656476 +0,2141,2140,128,3.82245374,0.131349033,974.502797,3008656476 +0,2142,2141,128,3.47954869,0.126947638,1008.28973,3008656476 +0,2143,2142,128,3.25884628,0.127836092,1001.28217,3008656476 +0,2144,2143,128,3.08850884,0.129185912,990.820114,3008656476 +0,2145,2144,128,3.69119287,0.126841515,1009.13333,3008656476 +0,2146,2145,128,3.99027896,0.142564012,897.842297,3008656476 +0,2147,2146,128,3.74586391,0.139627389,916.725586,3008656476 +0,2148,2147,128,3.56628823,0.127632619,1002.87843,3008656476 +0,2149,2148,128,3.79605412,0.126727205,1010.04358,3008656476 +0,2150,2149,128,4.18362427,0.126607292,1011.00022,3008656476 +0,2151,2150,128,4.24391317,0.127392418,1004.76937,3008656476 +0,2152,2151,128,3.46540093,0.127334723,1005.22463,3008656476 +0,2153,2152,128,3.50553775,0.126155669,1014.61949,3008656476 +0,2154,2153,128,3.19058156,0.140113979,913.541967,3008656476 +0,2155,2154,128,2.84604454,0.138908424,921.470393,3008656476 +0,2156,2155,128,3.96642137,0.127196383,1006.31792,3008656476 +0,2157,2156,128,3.79613686,0.126124135,1014.87316,3008656476 +0,2158,2157,128,3.21698809,0.127109758,1007.00373,3008656476 +0,2159,2158,128,1.90042794,0.127618662,1002.98811,3008656476 +0,2160,2159,128,4.30021429,0.127653272,1002.71617,3008656476 +0,2161,2160,128,5.21493483,0.127044785,1007.51873,3008656476 +0,2162,2161,128,4.21330833,0.139267221,919.09639,3008656476 +0,2163,2162,128,3.01021719,0.140210853,912.910786,3008656476 +0,2164,2163,128,2.39315581,0.127339918,1005.18362,3008656476 +0,2165,2164,128,2.71241832,0.127629627,1002.90194,3008656476 +0,2166,2165,128,3.75406766,0.126612926,1010.95523,3008656476 +0,2167,2166,128,3.50449324,0.127361283,1005.015,3008656476 +0,2168,2167,128,3.18015552,0.127342986,1005.1594,3008656476 +0,2169,2168,128,3.36853862,0.127027724,1007.65405,3008656476 +0,2170,2169,128,3.70805478,0.137075909,933.789175,3008656476 +0,2171,2170,128,3.01440215,0.123504646,1036.39826,3008656476 +0,2172,2171,128,3.00083327,0.132010438,969.620296,3008656476 +0,2173,2172,128,3.74589205,0.127683394,1002.47962,3008656476 +0,2174,2173,128,4.2580514,0.128512357,996.013169,3008656476 +0,2175,2174,128,3.62120247,0.130409775,981.521516,3008656476 +0,2176,2175,128,3.08736324,0.129765085,986.397843,3008656476 +0,2177,2176,128,1.70726562,0.13021257,983.008015,3008656476 +0,2178,2177,128,2.65434766,0.13053253,980.598476,3008656476 +0,2179,2178,128,2.81898165,0.138545452,923.884531,3008656476 +0,2180,2179,128,3.72346544,0.152004852,842.078383,3008656476 +0,2181,2180,128,3.81277013,0.132960472,962.69213,3008656476 +0,2182,2181,128,2.63651156,0.13092377,977.66815,3008656476 +0,2183,2182,128,3.4108386,0.130958428,977.409411,3008656476 +0,2184,2183,128,4.00336742,0.130624079,979.911215,3008656476 +0,2185,2184,128,3.89293408,0.131670159,972.126114,3008656476 +0,2186,2185,128,3.81297064,0.142622988,897.47103,3008656476 +0,2187,2186,128,3.85787964,0.143037649,894.869294,3008656476 +0,2188,2187,128,3.8591435,0.132276474,967.670184,3008656476 +0,2189,2188,128,3.33462334,0.130231419,982.86574,3008656476 +0,2190,2189,128,3.27032256,0.129800141,986.13144,3008656476 +0,2191,2190,128,3.28093672,0.128939482,992.713776,3008656476 +0,2192,2191,128,3.94759727,0.12797469,1000.19777,3008656476 +0,2193,2192,128,3.3160522,0.128296101,997.69205,3008656476 +0,2194,2193,128,2.44288683,0.141874911,902.203209,3008656476 +0,2195,2194,128,3.47032428,0.140676168,909.891148,3008656476 +0,2196,2195,128,3.14699483,0.129069247,991.715711,3008656476 +0,2197,2196,128,3.84954023,0.127428913,1004.48161,3008656476 +0,2198,2197,128,3.68095827,0.127482679,1004.05797,3008656476 +0,2199,2198,128,3.9536376,0.126533107,1011.59296,3008656476 +0,2200,2199,128,2.84656358,0.127153071,1006.6607,3008656476 +0,2201,2200,128,3.50781417,0.12645313,1012.23275,3008656476 +0,2202,2201,128,3.70116901,0.136937812,934.730869,3008656476 +0,2203,2202,128,3.26312041,0.136018931,941.045478,3008656476 +0,2204,2203,128,3.93480039,0.119126308,1074.48978,3008656476 +0,2205,2204,128,4.16006804,0.127627635,1002.91759,3008656476 +0,2206,2205,128,2.96839857,0.1282913,997.729386,3008656476 +0,2207,2206,128,3.28761029,0.1274866,1004.02709,3008656476 +0,2208,2207,128,3.19308043,0.127149333,1006.6903,3008656476 +0,2209,2208,128,3.36123419,0.126987884,1007.97018,3008656476 +0,2210,2209,128,3.38617754,0.127047402,1007.49797,3008656476 +0,2211,2210,128,3.02027869,0.143175641,894.006823,3008656476 +0,2212,2211,128,2.60719991,0.137008862,934.246137,3008656476 +0,2213,2212,128,2.99097514,0.125154036,1022.73969,3008656476 +0,2214,2213,128,3.24129725,0.125830477,1017.24163,3008656476 +0,2215,2214,128,3.16134071,0.127720811,1002.18593,3008656476 +0,2216,2215,128,3.54095006,0.126013393,1015.76505,3008656476 +0,2217,2216,128,2.76347613,0.126833925,1009.19372,3008656476 +0,2218,2217,128,3.64282918,0.127304498,1005.46329,3008656476 +0,2219,2218,128,3.11495113,0.142409482,898.816555,3008656476 +0,2220,2219,128,3.99382854,0.143919422,889.386562,3008656476 +0,2221,2220,128,3.16996408,0.129782987,986.261782,3008656476 +0,2222,2221,128,2.43359733,0.130341133,982.038418,3008656476 +0,2223,2222,128,3.20311213,0.130651458,979.705867,3008656476 +0,2224,2223,128,3.1407876,0.129766784,986.384929,3008656476 +0,2225,2224,128,3.02415657,0.131373903,974.318316,3008656476 +0,2226,2225,128,2.91248274,0.131444102,973.797972,3008656476 +0,2227,2226,128,3.53410792,0.148327725,862.953976,3008656476 +0,2228,2227,128,3.27427697,0.150279845,851.744291,3008656476 +0,2229,2228,128,3.32000542,0.134518225,951.543926,3008656476 +0,2230,2229,128,3.06982994,0.132118834,968.824778,3008656476 +0,2231,2230,128,4.12908316,0.133213829,960.861203,3008656476 +0,2232,2231,128,2.52616692,0.133348445,959.891208,3008656476 +0,2233,2232,128,3.51990867,0.133370639,959.731474,3008656476 +0,2234,2233,128,2.94223309,0.144509367,885.755731,3008656476 +0,2235,2234,128,3.20927119,0.146259589,875.156295,3008656476 +0,2236,2235,128,2.39965701,0.132666769,964.823376,3008656476 +0,2237,2236,128,2.98891163,0.132630992,965.083636,3008656476 +0,2238,2237,128,4.26031399,0.131698606,971.916134,3008656476 +0,2239,2238,128,3.23403358,0.1314454,973.788356,3008656476 +0,2240,2239,128,3.03201628,0.131589207,972.724154,3008656476 +0,2241,2240,128,3.04926467,0.131404681,974.090109,3008656476 +0,2242,2241,128,3.06087756,0.144437697,886.195243,3008656476 +0,2243,2242,128,3.94703293,0.143518166,891.873158,3008656476 +0,2244,2243,128,3.34018874,0.129945151,985.030984,3008656476 +0,2245,2244,128,3.5150876,0.131535917,973.11824,3008656476 +0,2246,2245,128,3.71419787,0.129271919,990.160903,3008656476 +0,2247,2246,128,2.47261024,0.129252512,990.309573,3008656476 +0,2248,2247,128,2.75351262,0.128977412,992.421836,3008656476 +0,2249,2248,128,3.20031738,0.129753534,986.485655,3008656476 +0,2250,2249,128,3.47127938,0.143254077,893.517327,3008656476 +0,2251,2250,128,3.34475636,0.143262847,893.46263,3008656476 +0,2252,2251,128,2.49143696,0.129823209,985.956217,3008656476 +0,2253,2252,128,2.3042357,0.128114291,999.107898,3008656476 +0,2254,2253,128,3.22975492,0.128733403,994.302932,3008656476 +0,2255,2254,128,3.8571322,0.127719352,1002.19738,3008656476 +0,2256,2255,128,3.24040747,0.12781758,1001.42719,3008656476 +0,2257,2256,128,3.51264262,0.129435574,988.908969,3008656476 +0,2258,2257,128,3.11283994,0.142564975,897.836232,3008656476 +0,2259,2258,128,3.51708984,0.142217226,900.031618,3008656476 +0,2260,2259,128,3.00654173,0.127934894,1000.5089,3008656476 +0,2261,2260,128,3.01957798,0.127558857,1003.45835,3008656476 +0,2262,2261,128,3.07361007,0.12970403,986.862166,3008656476 +0,2263,2262,128,2.71371651,0.128369336,997.122864,3008656476 +0,2264,2263,128,3.24484777,0.128387779,996.979627,3008656476 +0,2265,2264,128,2.55688429,0.129240996,990.397815,3008656476 +0,2266,2265,128,2.71339893,0.142538551,898.002674,3008656476 +0,2267,2266,128,3.42441702,0.140541893,910.760466,3008656476 +0,2268,2267,128,2.79833055,0.127743098,1002.01108,3008656476 +0,2269,2268,128,3.33319902,0.128398887,996.893376,3008656476 +0,2270,2269,128,2.34499288,0.128390483,996.95863,3008656476 +0,2271,2270,128,2.87736297,0.128408056,996.822193,3008656476 +0,2272,2271,128,3.0189929,0.128930609,992.782094,3008656476 +0,2273,2272,128,3.32403326,0.127949625,1000.39371,3008656476 +0,2274,2273,128,2.61134887,0.142566385,897.827352,3008656476 +0,2275,2274,128,2.553864,0.144930131,883.184188,3008656476 +0,2276,2275,128,2.94211984,0.129239132,990.412099,3008656476 +0,2277,2276,128,3.46608186,0.128583738,995.46025,3008656476 +0,2278,2277,128,2.60996032,0.129030831,992.010971,3008656476 +0,2279,2278,128,2.75041318,0.129640269,987.347535,3008656476 +0,2280,2279,128,2.79255605,0.128321151,997.497287,3008656476 +0,2281,2280,128,2.57171774,0.129070596,991.705345,3008656476 +0,2282,2281,128,3.10772133,0.145451697,880.017233,3008656476 +0,2283,2282,128,3.50504255,0.145922749,877.176457,3008656476 +0,2284,2283,128,2.69511485,0.127988424,1000.09045,3008656476 +0,2285,2284,128,2.81768298,0.128613161,995.232517,3008656476 +0,2286,2285,128,2.20132065,0.127481863,1004.0644,3008656476 +0,2287,2286,128,2.51274753,0.128749049,994.182101,3008656476 +0,2288,2287,128,2.4671042,0.128471071,996.333252,3008656476 +0,2289,2288,128,2.38827443,0.129200384,990.70913,3008656476 +0,2290,2289,128,2.5543766,0.145857995,877.565882,3008656476 +0,2291,2290,128,3.25748372,0.145458931,879.973468,3008656476 +0,2292,2291,128,3.70830321,0.127686448,1002.45564,3008656476 +0,2293,2292,128,2.69640756,0.128093639,999.26898,3008656476 +0,2294,2293,128,3.61408782,0.128712545,994.464059,3008656476 +0,2295,2294,128,3.97617292,0.128287691,997.757454,3008656476 +0,2296,2295,128,3.95664215,0.129222908,990.536446,3008656476 +0,2297,2296,128,4.14137936,0.128608491,995.268656,3008656476 +0,2298,2297,128,3.03787923,0.144542777,885.550995,3008656476 +0,2299,2298,128,2.9938693,0.146874948,871.48967,3008656476 +0,2300,2299,128,4.35206842,0.128686786,994.663119,3008656476 +0,2301,2300,128,3.63505602,0.127276531,1005.68423,3008656476 +0,2302,2301,128,3.93784738,0.128372282,997.099981,3008656476 +0,2303,2302,128,4.51135397,0.127932576,1000.52703,3008656476 +0,2304,2303,128,3.76967835,0.127798543,1001.57636,3008656476 +0,2305,2304,128,3.35036373,0.127307141,1005.44242,3008656476 +0,2306,2305,128,3.80581045,0.143012943,895.023886,3008656476 +0,2307,2306,128,4.3363986,0.146036475,876.493356,3008656476 +0,2308,2307,128,3.81962276,0.127966202,1000.26412,3008656476 +0,2309,2308,128,3.81046724,0.127890909,1000.853,3008656476 +0,2310,2309,128,4.17767572,0.128136451,998.935112,3008656476 +0,2311,2310,128,3.64339876,0.128054776,999.572246,3008656476 +0,2312,2311,128,3.39322543,0.128024257,999.810528,3008656476 +0,2313,2312,128,3.23033333,0.128535974,995.830163,3008656476 +0,2314,2313,128,3.69701505,0.143808797,890.070724,3008656476 +0,2315,2314,128,4.46627665,0.145089464,882.214301,3008656476 +0,2316,2315,128,4.09444141,0.129022858,992.072273,3008656476 +0,2317,2316,128,4.58769083,0.128312339,997.565791,3008656476 +0,2318,2317,128,4.08887768,0.128353914,997.242671,3008656476 +0,2319,2318,128,4.29540157,0.12746817,1004.17226,3008656476 +0,2320,2319,128,4.14855194,0.128017966,999.85966,3008656476 +0,2321,2320,128,4.07889891,0.128800095,993.788087,3008656476 +0,2322,2321,128,4.28324604,0.145480621,879.842271,3008656476 +0,2323,2322,128,3.96620202,0.143323943,893.081765,3008656476 +0,2324,2323,128,4.04405308,0.12802418,999.811129,3008656476 +0,2325,2324,128,3.59094119,0.128313104,997.559844,3008656476 +0,2326,2325,128,4.33591223,0.128815037,993.672812,3008656476 +0,2327,2326,128,4.00966501,0.128519094,995.960958,3008656476 +0,2328,2327,128,4.62926245,0.1289998,992.2496,3008656476 +0,2329,2328,128,4.11996841,0.12874277,994.230589,3008656476 +0,2330,2329,128,3.66393328,0.145755063,878.185617,3008656476 +0,2331,2330,128,4.16953182,0.146873793,871.496524,3008656476 +0,2332,2331,128,3.94768214,0.129797524,986.151323,3008656476 +0,2333,2332,128,3.31944418,0.127938704,1000.4791,3008656476 +0,2334,2333,128,3.25148606,0.130616731,979.966341,3008656476 +0,2335,2334,128,3.02803493,0.128050029,999.609301,3008656476 +0,2336,2335,128,3.81112003,0.128746529,994.20156,3008656476 +0,2337,2336,128,4.4180603,0.127873131,1000.99215,3008656476 +0,2338,2337,128,4.17467737,0.147676241,866.760957,3008656476 +0,2339,2338,128,3.48385954,0.146609236,873.069143,3008656476 +0,2340,2339,128,3.40739012,0.13051238,980.749872,3008656476 +0,2341,2340,128,3.2023325,0.129741658,986.575954,3008656476 +0,2342,2341,128,4.13383961,0.129797744,986.149651,3008656476 +0,2343,2342,128,3.97927046,0.129713383,986.791008,3008656476 +0,2344,2343,128,4.14076757,0.128985367,992.36063,3008656476 +0,2345,2344,128,3.73272491,0.128838788,993.489631,3008656476 +0,2346,2345,128,4.28800964,0.145376277,880.473779,3008656476 +0,2347,2346,128,4.14888763,0.145546573,879.443585,3008656476 +0,2348,2347,128,4.04505444,0.131346605,974.520811,3008656476 +0,2349,2348,128,4.18976593,0.130702116,979.32615,3008656476 +0,2350,2349,128,4.36303711,0.131464667,973.645641,3008656476 +0,2351,2350,128,3.61950183,0.131615824,972.527437,3008656476 +0,2352,2351,128,3.81729412,0.131046633,976.751535,3008656476 +0,2353,2352,128,3.20686603,0.132848834,963.501117,3008656476 +0,2354,2353,128,3.29502153,0.128077824,999.392369,3008656476 +0,2355,2354,128,3.92016602,0.135734498,943.017449,3008656476 +0,2356,2355,128,3.54577136,0.128252402,998.03199,3008656476 +0,2357,2356,128,3.75865817,0.127782541,1001.70179,3008656476 +0,2358,2357,128,3.09855509,0.127961692,1000.29937,3008656476 +0,2359,2358,128,3.26013684,0.12934333,989.614231,3008656476 +0,2360,2359,128,3.54082108,0.128734325,994.29581,3008656476 +0,2361,2360,128,3.63558793,0.128448597,996.507576,3008656476 +0,2362,2361,128,3.04448128,0.13892493,921.360911,3008656476 +0,2363,2362,128,3.07930422,0.144424144,886.278405,3008656476 +0,2364,2363,128,2.71220613,0.128108719,999.151354,3008656476 +0,2365,2364,128,2.64372087,0.128543253,995.773773,3008656476 +0,2366,2365,128,3.07924628,0.128733557,994.301742,3008656476 +0,2367,2366,128,2.82797909,0.128096857,999.243877,3008656476 +0,2368,2367,128,3.83398604,0.128752837,994.152851,3008656476 +0,2369,2368,128,3.51402402,0.127771484,1001.78847,3008656476 +0,2370,2369,128,3.08777356,0.140283938,912.435178,3008656476 +0,2371,2370,128,2.98180199,0.143954187,889.171775,3008656476 +0,2372,2371,128,2.92222285,0.126597773,1011.07624,3008656476 +0,2373,2372,128,4.08760643,0.126872464,1008.88716,3008656476 +0,2374,2373,128,3.88337111,0.12662145,1010.88718,3008656476 +0,2375,2374,128,4.02545977,0.126179559,1014.42738,3008656476 +0,2376,2375,128,2.83381248,0.12579771,1017.5066,3008656476 +0,2377,2376,128,3.06717467,0.125654814,1018.66372,3008656476 +0,2378,2377,128,3.96734405,0.141014637,907.707191,3008656476 +0,2379,2378,128,3.62627912,0.139964987,914.514428,3008656476 +0,2380,2379,128,2.79006863,0.126021629,1015.69866,3008656476 +0,2381,2380,128,3.36988974,0.127343809,1005.15291,3008656476 +0,2382,2381,128,2.797786,0.127160119,1006.60491,3008656476 +0,2383,2382,128,3.16875863,0.12760921,1003.0624,3008656476 +0,2384,2383,128,3.47329903,0.129065336,991.745762,3008656476 +0,2385,2384,64,3.14953017,0.125494071,509.984253,3008656476 +1,2386,0,128,2.27338672,0.095317886,1342.87494,3008656476 +1,2387,1,128,3.04972267,0.109252467,1171.59826,3008656476 +1,2388,2,128,2.69006991,0.109488594,1169.07155,3008656476 +1,2389,3,128,3.18437243,0.109471709,1169.25187,3008656476 +1,2390,4,128,3.63595271,0.109283281,1171.26791,3008656476 +1,2391,5,128,3.99079776,0.109398105,1170.03855,3008656476 +1,2392,6,128,3.65294409,0.109336483,1170.69798,3008656476 +1,2393,7,128,3.99207401,0.109359783,1170.44856,3008656476 +1,2394,8,128,4.03593874,0.112910949,1133.63674,3008656476 +1,2395,9,128,3.76947093,0.125266916,1021.81808,3008656476 +1,2396,10,128,3.20173669,0.109145982,1172.74129,3008656476 +1,2397,11,128,3.47500992,0.109500434,1168.94514,3008656476 +1,2398,12,128,2.92177129,0.10932611,1170.80906,3008656476 +1,2399,13,128,2.55383968,0.109246075,1171.66681,3008656476 +1,2400,14,128,2.63654971,0.109172327,1172.45829,3008656476 +1,2401,15,128,2.84061813,0.108069984,1184.41768,3008656476 +1,2402,16,128,3.48537159,0.108094393,1184.15023,3008656476 +1,2403,17,128,3.43427992,0.136269305,939.316451,3008656476 +1,2404,18,128,3.26153946,0.146349321,874.619705,3008656476 +1,2405,19,128,3.48776197,0.131062952,976.629918,3008656476 +1,2406,20,128,3.2181592,0.131525879,973.192508,3008656476 +1,2407,21,128,3.73307633,0.132264612,967.756969,3008656476 +1,2408,22,128,3.07464361,0.132202871,968.208928,3008656476 +1,2409,23,128,2.26839495,0.131226252,975.414584,3008656476 +1,2410,24,128,2.63357806,0.131251551,975.226571,3008656476 +1,2411,25,128,3.27374315,0.145884592,877.405888,3008656476 +1,2412,26,128,3.17012239,0.145441422,880.079404,3008656476 +1,2413,27,128,3.42635894,0.131432102,973.886882,3008656476 +1,2414,28,128,3.02425098,0.132633095,965.068334,3008656476 +1,2415,29,128,2.98523378,0.131927668,970.228626,3008656476 +1,2416,30,128,2.78499317,0.133181186,961.096712,3008656476 +1,2417,31,128,3.07306242,0.132372498,966.968229,3008656476 +1,2418,32,128,3.47518659,0.132592171,965.366198,3008656476 +1,2419,33,128,3.32987809,0.142332185,899.304679,3008656476 +1,2420,34,128,3.37088275,0.141679652,903.446601,3008656476 +1,2421,35,128,3.37311363,0.131880849,970.573066,3008656476 +1,2422,36,128,3.3593061,0.132022871,969.528984,3008656476 +1,2423,37,128,2.92118096,0.132487729,966.12721,3008656476 +1,2424,38,128,2.9710741,0.132032878,969.455502,3008656476 +1,2425,39,128,2.4159801,0.125483694,1020.05285,3008656476 +1,2426,40,128,3.2706399,0.125584997,1019.23003,3008656476 +1,2427,41,128,3.23534584,0.133604119,958.054295,3008656476 +1,2428,42,128,3.41740727,0.141681371,903.435639,3008656476 +1,2429,43,128,3.70618153,0.129188338,990.801507,3008656476 +1,2430,44,128,3.87297964,0.130626487,979.893151,3008656476 +1,2431,45,128,3.65411448,0.131192102,975.66849,3008656476 +1,2432,46,128,2.89124632,0.138583883,923.628327,3008656476 +1,2433,47,128,3.41416264,0.136008246,941.119408,3008656476 +1,2434,48,128,3.04186153,0.144433599,886.220387,3008656476 +1,2435,49,128,3.26836038,0.151954134,842.359445,3008656476 +1,2436,50,128,2.70528984,0.139826178,915.42229,3008656476 +1,2437,51,128,3.70591879,0.143713562,890.660549,3008656476 +1,2438,52,128,2.67571378,0.133766696,956.889897,3008656476 +1,2439,53,128,3.65281177,0.130913018,977.748447,3008656476 +1,2440,54,128,2.62311435,0.131915733,970.316406,3008656476 +1,2441,55,128,3.01636314,0.134662537,950.524198,3008656476 +1,2442,56,128,3.80080533,0.144059057,888.524489,3008656476 +1,2443,57,128,3.2339468,0.147448619,868.099009,3008656476 +1,2444,58,128,3.1020658,0.129047783,991.880659,3008656476 +1,2445,59,128,3.18394375,0.129937796,985.086741,3008656476 +1,2446,60,128,3.030159,0.131863888,970.697906,3008656476 +1,2447,61,128,3.90347886,0.130317834,982.213992,3008656476 +1,2448,62,128,2.95865822,0.130262008,982.634937,3008656476 +1,2449,63,128,3.82929087,0.128332074,997.412385,3008656476 +1,2450,64,128,2.57391667,0.143614135,891.277171,3008656476 +1,2451,65,128,3.46204066,0.140501837,911.020117,3008656476 +1,2452,66,128,3.28345227,0.126593196,1011.11279,3008656476 +1,2453,67,128,3.85799313,0.126457838,1012.19507,3008656476 +1,2454,68,128,4.19259739,0.126904415,1008.63315,3008656476 +1,2455,69,128,3.33640552,0.1258219,1017.31098,3008656476 +1,2456,70,128,3.82920837,0.12596637,1016.14423,3008656476 +1,2457,71,128,3.64085054,0.116637568,1097.41657,3008656476 +1,2458,72,128,3.34527326,0.139105825,920.162761,3008656476 +1,2459,73,128,3.28016806,0.138404713,924.823998,3008656476 +1,2460,74,128,3.0463295,0.124716532,1026.32745,3008656476 +1,2461,75,128,2.98025656,0.125431008,1020.48132,3008656476 +1,2462,76,128,4.10366678,0.125177822,1022.54535,3008656476 +1,2463,77,128,3.77928185,0.125331609,1021.29065,3008656476 +1,2464,78,128,3.3666575,0.126444997,1012.29786,3008656476 +1,2465,79,128,3.32728934,0.125741936,1017.95792,3008656476 +1,2466,80,128,3.75848126,0.140368705,911.88417,3008656476 +1,2467,81,128,3.65485334,0.140122837,913.484217,3008656476 +1,2468,82,128,3.71363378,0.125819102,1017.3336,3008656476 +1,2469,83,128,3.77039218,0.125603643,1019.07872,3008656476 +1,2470,84,128,3.14529586,0.125829737,1017.24762,3008656476 +1,2471,85,128,2.98157501,0.125039403,1023.67731,3008656476 +1,2472,86,128,3.1014359,0.125030976,1023.74631,3008656476 +1,2473,87,128,2.76715708,0.125276321,1021.74137,3008656476 +1,2474,88,128,2.74566436,0.136674022,936.534962,3008656476 +1,2475,89,128,3.37310266,0.139604893,916.873308,3008656476 +1,2476,90,128,2.95439863,0.125259699,1021.87696,3008656476 +1,2477,91,128,3.11217999,0.12457324,1027.50799,3008656476 +1,2478,92,128,3.25479674,0.126942583,1008.32988,3008656476 +1,2479,93,128,3.06604934,0.127818303,1001.42153,3008656476 +1,2480,94,128,2.80743217,0.127648705,1002.75205,3008656476 +1,2481,95,128,3.1984551,0.127131248,1006.8335,3008656476 +1,2482,96,128,2.85619116,0.142638133,897.375739,3008656476 +1,2483,97,128,3.39713597,0.122962438,1040.9683,3008656476 +1,2484,98,128,3.39286184,0.136031309,940.959849,3008656476 +1,2485,99,128,3.35897183,0.131596611,972.669425,3008656476 +1,2486,100,128,3.51365376,0.132766411,964.099271,3008656476 +1,2487,101,128,2.95461059,0.139512172,917.48267,3008656476 +1,2488,102,128,3.23123956,0.140214389,912.887764,3008656476 +1,2489,103,128,3.3970542,0.138076574,927.021842,3008656476 +1,2490,104,128,2.50901866,0.15383451,832.062975,3008656476 +1,2491,105,128,3.49298668,0.153937079,831.508567,3008656476 +1,2492,106,128,3.22677588,0.132104354,968.930971,3008656476 +1,2493,107,128,3.01136565,0.13050168,980.830285,3008656476 +1,2494,108,128,3.4387219,0.131394302,974.167053,3008656476 +1,2495,109,128,2.42342615,0.133804666,956.618359,3008656476 +1,2496,110,128,3.09440184,0.133818164,956.521866,3008656476 +1,2497,111,128,3.13679838,0.131323371,974.693225,3008656476 +1,2498,112,128,3.59762096,0.147116523,870.058627,3008656476 +1,2499,113,128,4.15892982,0.143482073,892.09751,3008656476 +1,2500,114,128,3.87799573,0.130687922,979.432514,3008656476 +1,2501,115,128,3.95406961,0.130098923,983.866715,3008656476 +1,2502,116,128,2.93974352,0.131115923,976.235358,3008656476 +1,2503,117,128,3.45021129,0.130801243,978.583973,3008656476 +1,2504,118,128,3.21423244,0.127393905,1004.75765,3008656476 +1,2505,119,128,3.68194008,0.128177643,998.614087,3008656476 +1,2506,120,128,3.4178791,0.142407641,898.828175,3008656476 +1,2507,121,128,3.24592113,0.142674658,897.146009,3008656476 +1,2508,122,128,2.59567189,0.125980066,1016.03376,3008656476 +1,2509,123,128,2.82905483,0.126519378,1011.70273,3008656476 +1,2510,124,128,2.82057953,0.125306138,1021.49824,3008656476 +1,2511,125,128,2.71416616,0.126826005,1009.25674,3008656476 +1,2512,126,128,2.79570246,0.125711606,1018.20352,3008656476 +1,2513,127,128,3.65485573,0.124588193,1027.38467,3008656476 +1,2514,128,128,3.72625136,0.137540763,930.633197,3008656476 +1,2515,129,128,3.44312,0.139302469,918.863829,3008656476 +1,2516,130,128,3.53579283,0.12551879,1019.76764,3008656476 +1,2517,131,128,3.21893215,0.126024151,1015.67834,3008656476 +1,2518,132,128,2.77064347,0.125865879,1016.95552,3008656476 +1,2519,133,128,3.20947695,0.12588831,1016.77431,3008656476 +1,2520,134,128,3.39827132,0.126135359,1014.78286,3008656476 +1,2521,135,128,3.087394,0.125066965,1023.45172,3008656476 +1,2522,136,128,2.77706838,0.139041122,920.59096,3008656476 +1,2523,137,128,2.79426432,0.139860658,915.196609,3008656476 +1,2524,138,128,2.3490119,0.126507865,1011.7948,3008656476 +1,2525,139,128,2.79475689,0.125401693,1020.71987,3008656476 +1,2526,140,128,2.31369114,0.125164172,1022.65687,3008656476 +1,2527,141,128,2.2218523,0.126038673,1015.56131,3008656476 +1,2528,142,128,2.89973879,0.125947525,1016.29627,3008656476 +1,2529,143,128,2.57589412,0.125162446,1022.67097,3008656476 +1,2530,144,128,1.82729542,0.139544742,917.268527,3008656476 +1,2531,145,128,1.64915013,0.139634648,916.677929,3008656476 +1,2532,146,128,2.70396209,0.125329705,1021.30616,3008656476 +1,2533,147,128,3.71508002,0.124999705,1024.00242,3008656476 +1,2534,148,128,3.79547977,0.124384264,1029.06908,3008656476 +1,2535,149,128,2.8126986,0.125746469,1017.92123,3008656476 +1,2536,150,128,2.23520446,0.125340291,1021.2199,3008656476 +1,2537,151,128,1.81886947,0.126036149,1015.58165,3008656476 +1,2538,152,128,2.68771791,0.128165932,998.705335,3008656476 +1,2539,153,128,3.215101,0.134447304,952.045866,3008656476 +1,2540,154,128,2.29562187,0.146055373,876.379947,3008656476 +1,2541,155,128,3.60063243,0.136700464,936.353808,3008656476 +1,2542,156,128,3.86774683,0.129258569,990.263168,3008656476 +1,2543,157,128,3.60888529,0.13019687,983.126553,3008656476 +1,2544,158,128,3.03237176,0.129756998,986.45932,3008656476 +1,2545,159,128,2.75158858,0.129924207,985.189773,3008656476 +1,2546,160,128,3.10547376,0.141975439,901.56439,3008656476 +1,2547,161,128,3.06285262,0.134546108,951.346731,3008656476 +1,2548,162,128,2.68612027,0.123204994,1038.91893,3008656476 +1,2549,163,128,3.76804543,0.125617452,1018.9667,3008656476 +1,2550,164,128,3.603163,0.125102851,1023.15814,3008656476 +1,2551,165,128,3.09863567,0.125316784,1021.41147,3008656476 +1,2552,166,128,3.58800793,0.124618331,1027.13621,3008656476 +1,2553,167,128,3.04201174,0.126141107,1014.73662,3008656476 +1,2554,168,128,3.00046873,0.125493835,1019.97042,3008656476 +1,2555,169,128,3.09742284,0.141262541,906.11424,3008656476 +1,2556,170,128,3.1422441,0.142146946,900.47661,3008656476 +1,2557,171,128,2.90994,0.124639862,1026.95878,3008656476 +1,2558,172,128,2.98759365,0.125593741,1019.15907,3008656476 +1,2559,173,128,2.96280408,0.126183932,1014.39223,3008656476 +1,2560,174,128,2.68659735,0.126459377,1012.18275,3008656476 +1,2561,175,128,3.21313,0.125745127,1017.93209,3008656476 +1,2562,176,128,2.52880025,0.125192666,1022.42411,3008656476 +1,2563,177,128,3.60965276,0.141101873,907.146002,3008656476 +1,2564,178,128,2.58389592,0.140806841,909.046742,3008656476 +1,2565,179,128,3.76707578,0.125182782,1022.50484,3008656476 +1,2566,180,128,3.16461873,0.126000274,1015.87081,3008656476 +1,2567,181,128,3.08786154,0.125519473,1019.76209,3008656476 +1,2568,182,128,3.7919271,0.125214931,1022.24231,3008656476 +1,2569,183,128,2.26729298,0.125991329,1015.94293,3008656476 +1,2570,184,128,2.57525826,0.125158194,1022.70571,3008656476 +1,2571,185,128,3.26173592,0.125130401,1022.93287,3008656476 +1,2572,186,128,2.7893784,0.138920177,921.392434,3008656476 +1,2573,187,128,2.55353189,0.12414271,1031.07142,3008656476 +1,2574,188,128,3.38354635,0.123581086,1035.7572,3008656476 +1,2575,189,128,3.21219182,0.125464515,1020.20878,3008656476 +1,2576,190,128,3.16680598,0.125871996,1016.9061,3008656476 +1,2577,191,128,2.56523371,0.127503814,1003.89154,3008656476 +1,2578,192,128,2.45429707,0.126690212,1010.33851,3008656476 +1,2579,193,128,3.15213633,0.140024135,914.128125,3008656476 +1,2580,194,128,2.87925386,0.140644685,910.094825,3008656476 +1,2581,195,128,3.44420075,0.128710106,994.482904,3008656476 +1,2582,196,128,3.04238057,0.12907336,991.684109,3008656476 +1,2583,197,128,2.85539818,0.130810258,978.516532,3008656476 +1,2584,198,128,2.83278584,0.129583474,987.780278,3008656476 +1,2585,199,128,3.4971931,0.130828161,978.382628,3008656476 +1,2586,200,128,3.26249528,0.138708679,922.79734,3008656476 +1,2587,201,128,2.85787225,0.141401979,905.220711,3008656476 +1,2588,202,128,3.95201969,0.144167681,887.855025,3008656476 +1,2589,203,128,3.22240877,0.129166399,990.969795,3008656476 +1,2590,204,128,2.97223115,0.130705651,979.299663,3008656476 +1,2591,205,128,3.19414186,0.127547286,1003.54938,3008656476 +1,2592,206,128,2.46929669,0.127534952,1003.64644,3008656476 +1,2593,207,128,2.61571336,0.128097431,999.239399,3008656476 +1,2594,208,128,2.51798677,0.126853118,1009.04102,3008656476 +1,2595,209,128,2.5970614,0.142393786,898.915631,3008656476 +1,2596,210,128,2.36489129,0.142882671,895.839916,3008656476 +1,2597,211,128,3.15052938,0.125236965,1022.06246,3008656476 +1,2598,212,128,2.94726753,0.126660476,1010.57571,3008656476 +1,2599,213,128,2.75842428,0.125493385,1019.97408,3008656476 +1,2600,214,128,2.22033143,0.126179035,1014.4316,3008656476 +1,2601,215,128,2.46134043,0.124827562,1025.41456,3008656476 +1,2602,216,128,3.37041259,0.126547493,1011.47796,3008656476 +1,2603,217,128,3.02290392,0.140224197,912.823912,3008656476 +1,2604,218,128,2.64654684,0.141668313,903.518912,3008656476 +1,2605,219,128,3.34712648,0.125747691,1017.91133,3008656476 +1,2606,220,128,2.62237501,0.127019925,1007.71592,3008656476 +1,2607,221,128,2.475734,0.125274625,1021.7552,3008656476 +1,2608,222,128,2.87583828,0.126070983,1015.30104,3008656476 +1,2609,223,128,2.52603436,0.126683882,1010.38899,3008656476 +1,2610,224,128,2.84979939,0.125894649,1016.72312,3008656476 +1,2611,225,128,2.85976362,0.138253981,925.832291,3008656476 +1,2612,226,128,2.84075642,0.141129103,906.970974,3008656476 +1,2613,227,128,3.34370303,0.125466195,1020.19512,3008656476 +1,2614,228,128,2.91742277,0.125694343,1018.34336,3008656476 +1,2615,229,128,2.80813169,0.126124387,1014.87114,3008656476 +1,2616,230,128,3.22849441,0.125270156,1021.79165,3008656476 +1,2617,231,128,3.45662785,0.126153066,1014.64042,3008656476 +1,2618,232,128,2.91063213,0.125631746,1018.85076,3008656476 +1,2619,233,128,3.40918756,0.127037167,1007.57914,3008656476 +1,2620,234,128,3.21319675,0.128263373,997.946623,3008656476 +1,2621,235,128,2.55998659,0.136985976,934.402219,3008656476 +1,2622,236,128,3.36508441,0.128601447,995.323171,3008656476 +1,2623,237,128,2.55264521,0.128287602,997.758147,3008656476 +1,2624,238,128,3.20084333,0.128791426,993.854979,3008656476 +1,2625,239,128,3.48620081,0.128911301,992.93079,3008656476 +1,2626,240,128,3.26015043,0.129540405,988.108691,3008656476 +1,2627,241,128,2.66995502,0.131076217,976.531082,3008656476 +1,2628,242,128,2.85747218,0.142532362,898.041667,3008656476 +1,2629,243,128,3.07634783,0.151154656,846.814801,3008656476 +1,2630,244,128,3.45533419,0.129774491,986.32635,3008656476 +1,2631,245,128,2.49993825,0.130423137,981.420958,3008656476 +1,2632,246,128,3.09717727,0.173941727,735.878631,3008656476 +1,2633,247,128,3.21031737,0.125657778,1018.63969,3008656476 +1,2634,248,128,3.27707815,0.12610809,1015.00229,3008656476 +1,2635,249,128,1.8139714,0.139528411,917.375888,3008656476 +1,2636,250,128,2.60891914,0.138793732,922.231848,3008656476 +1,2637,251,128,3.52810192,0.125400449,1020.73,3008656476 +1,2638,252,128,3.23090696,0.125683394,1018.43208,3008656476 +1,2639,253,128,2.95441556,0.125850255,1017.08177,3008656476 +1,2640,254,128,3.34948087,0.126498832,1011.86705,3008656476 +1,2641,255,128,3.31799388,0.12561897,1018.95438,3008656476 +1,2642,256,128,2.74146461,0.126587229,1011.16045,3008656476 +1,2643,257,128,3.24524546,0.140899142,908.451238,3008656476 +1,2644,258,128,2.74562311,0.142096595,900.795688,3008656476 +1,2645,259,128,3.10194874,0.127366381,1004.97477,3008656476 +1,2646,260,128,3.34727359,0.126987401,1007.97401,3008656476 +1,2647,261,128,2.99470115,0.127437135,1004.41681,3008656476 +1,2648,262,128,3.32560277,0.126110961,1014.97918,3008656476 +1,2649,263,128,2.38857412,0.126201973,1014.24722,3008656476 +1,2650,264,128,2.78383303,0.125917749,1016.5366,3008656476 +1,2651,265,128,2.71715975,0.126789158,1009.55004,3008656476 +1,2652,266,128,2.80596399,0.128513331,996.005621,3008656476 +1,2653,267,128,2.04022932,0.134692256,950.314471,3008656476 +1,2654,268,128,2.06067014,0.126357808,1012.99636,3008656476 +1,2655,269,128,3.00642109,0.126017649,1015.73074,3008656476 +1,2656,270,128,3.53203654,0.12623482,1013.98331,3008656476 +1,2657,271,128,2.42838287,0.127851394,1001.16233,3008656476 +1,2658,272,128,2.87985778,0.128719446,994.410744,3008656476 +1,2659,273,128,3.41593552,0.129520543,988.260218,3008656476 +1,2660,274,128,2.60098004,0.143579423,891.492648,3008656476 +1,2661,275,128,2.91411924,0.143204633,893.82583,3008656476 +1,2662,276,128,3.09607124,0.130182378,983.235995,3008656476 +1,2663,277,128,3.76443148,0.130680935,979.48488,3008656476 +1,2664,278,128,2.57607722,0.131554499,972.980787,3008656476 +1,2665,279,128,2.6673677,0.138913311,921.437975,3008656476 +1,2666,280,128,2.78636932,0.143188501,893.926531,3008656476 +1,2667,281,128,2.63049626,0.154088098,830.69362,3008656476 +1,2668,282,128,2.11232114,0.148007494,864.821075,3008656476 +1,2669,283,128,2.42796063,0.129300014,989.945755,3008656476 +1,2670,284,128,2.23459578,0.129462686,988.701872,3008656476 +1,2671,285,128,2.29461598,0.130380229,981.743942,3008656476 +1,2672,286,128,2.75843549,0.129715261,986.776722,3008656476 +1,2673,287,128,2.37285924,0.128450505,996.492774,3008656476 +1,2674,288,128,2.249228,0.12897274,992.457786,3008656476 +1,2675,289,128,3.04869175,0.14051854,910.911827,3008656476 +1,2676,290,128,2.58914828,0.142235791,899.914143,3008656476 +1,2677,291,128,3.38020372,0.127273216,1005.71042,3008656476 +1,2678,292,128,2.9527638,0.127840221,1001.24983,3008656476 +1,2679,293,128,2.47054386,0.127008654,1007.80534,3008656476 +1,2680,294,128,2.4218986,0.130147822,983.497058,3008656476 +1,2681,295,128,2.96072102,0.126162152,1014.56735,3008656476 +1,2682,296,128,3.49740553,0.126766612,1009.7296,3008656476 +1,2683,297,128,2.76085806,0.140640522,910.121764,3008656476 +1,2684,298,128,2.92933917,0.139044119,920.571117,3008656476 +1,2685,299,128,3.17763925,0.127215744,1006.16477,3008656476 +1,2686,300,128,2.67690206,0.126669953,1010.5001,3008656476 +1,2687,301,128,2.99170256,0.125667376,1018.56189,3008656476 +1,2688,302,128,2.80000997,0.126382209,1012.80078,3008656476 +1,2689,303,128,3.03992319,0.126617486,1010.91882,3008656476 +1,2690,304,128,2.57870626,0.126679682,1010.42249,3008656476 +1,2691,305,128,2.81875801,0.131611548,972.559034,3008656476 +1,2692,306,128,2.71795034,0.123523063,1036.24373,3008656476 +1,2693,307,128,2.27098083,0.131030744,976.869978,3008656476 +1,2694,308,128,3.52232623,0.125129559,1022.93975,3008656476 +1,2695,309,128,3.27646852,0.125140089,1022.85368,3008656476 +1,2696,310,128,2.6730001,0.125864248,1016.96869,3008656476 +1,2697,311,128,2.51560402,0.126335697,1013.17366,3008656476 +1,2698,312,128,2.57213831,0.126353614,1013.02999,3008656476 +1,2699,313,128,2.73300481,0.127255386,1005.85134,3008656476 +1,2700,314,128,2.00234866,0.141401635,905.222913,3008656476 +1,2701,315,128,2.76290464,0.14264698,897.320083,3008656476 +1,2702,316,128,2.9452703,0.127864193,1001.06212,3008656476 +1,2703,317,128,2.7779572,0.128446262,996.525691,3008656476 +1,2704,318,128,3.09569931,0.129193678,990.760554,3008656476 +1,2705,319,128,3.15688515,0.129473974,988.615673,3008656476 +1,2706,320,128,3.59445381,0.128669147,994.799476,3008656476 +1,2707,321,128,2.9275198,0.129571961,987.868047,3008656476 +1,2708,322,128,2.93242455,0.144542503,885.552674,3008656476 +1,2709,323,128,3.05687475,0.144815651,883.882364,3008656476 +1,2710,324,128,2.19072175,0.13892831,921.338495,3008656476 +1,2711,325,128,3.42772388,0.128651585,994.935274,3008656476 +1,2712,326,128,3.14605427,0.129832693,985.884195,3008656476 +1,2713,327,128,3.33037663,0.130757646,978.91025,3008656476 +1,2714,328,128,3.18718791,0.130326753,982.146774,3008656476 +1,2715,329,128,3.10006094,0.129131296,991.23918,3008656476 +1,2716,330,128,4.03630209,0.141242831,906.240686,3008656476 +1,2717,331,128,3.26849914,0.139935825,914.705009,3008656476 +1,2718,332,128,2.7318449,0.131679179,972.059524,3008656476 +1,2719,333,128,3.5086422,0.129539554,988.115182,3008656476 +1,2720,334,128,3.07762742,0.130622053,979.926414,3008656476 +1,2721,335,128,3.35871959,0.128273099,997.870957,3008656476 +1,2722,336,128,3.24294567,0.129895177,985.409951,3008656476 +1,2723,337,128,3.41272116,0.127944405,1000.43452,3008656476 +1,2724,338,128,2.89828086,0.142804761,896.32866,3008656476 +1,2725,339,128,3.26522207,0.139144451,919.907327,3008656476 +1,2726,340,128,2.8690846,0.129199939,990.712542,3008656476 +1,2727,341,128,2.93537951,0.130651873,979.702756,3008656476 +1,2728,342,128,3.20676804,0.129337106,989.661853,3008656476 +1,2729,343,128,2.76924181,0.128424585,996.693896,3008656476 +1,2730,344,128,3.38326311,0.128809368,993.716544,3008656476 +1,2731,345,128,2.51120734,0.128962142,992.539345,3008656476 +1,2732,346,128,2.76240587,0.142332271,899.304136,3008656476 +1,2733,347,128,3.78321838,0.137074795,933.796764,3008656476 +1,2734,348,128,3.18720245,0.12922744,990.501708,3008656476 +1,2735,349,128,3.44553185,0.12737439,1004.91158,3008656476 +1,2736,350,128,3.54425597,0.127178796,1006.45708,3008656476 +1,2737,351,128,3.34287286,0.126944514,1008.31455,3008656476 +1,2738,352,128,3.87394166,0.127337606,1005.20187,3008656476 +1,2739,353,128,3.42498398,0.126342662,1013.1178,3008656476 +1,2740,354,128,2.77119851,0.143960792,889.130979,3008656476 +1,2741,355,128,3.08874679,0.14540567,880.295796,3008656476 +1,2742,356,128,3.31619716,0.128719311,994.411786,3008656476 +1,2743,357,128,2.870121,0.1283676,997.136349,3008656476 +1,2744,358,128,1.95996678,0.129300104,989.945066,3008656476 +1,2745,359,128,2.68440723,0.127725995,1002.14526,3008656476 +1,2746,360,128,2.81869698,0.130070466,984.081967,3008656476 +1,2747,361,128,2.72778416,0.126674863,1010.46093,3008656476 +1,2748,362,128,2.77384782,0.143761852,890.361373,3008656476 +1,2749,363,128,2.95054913,0.14475878,884.229613,3008656476 +1,2750,364,128,3.19561291,0.130282641,982.479316,3008656476 +1,2751,365,128,3.2684207,0.128610221,995.255268,3008656476 +1,2752,366,128,3.29149795,0.128807209,993.7332,3008656476 +1,2753,367,128,3.34594798,0.129177447,990.885042,3008656476 +1,2754,368,128,2.60704947,0.127325669,1005.29611,3008656476 +1,2755,369,128,3.08772707,0.12796412,1000.28039,3008656476 +1,2756,370,128,3.01262307,0.141085831,907.249148,3008656476 +1,2757,371,128,2.64561558,0.146108877,876.059023,3008656476 +1,2758,372,128,3.078439,0.130509869,980.768742,3008656476 +1,2759,373,128,3.55307055,0.129710868,986.810141,3008656476 +1,2760,374,128,3.27368069,0.128690009,994.638208,3008656476 +1,2761,375,128,2.5897429,0.127931487,1000.53554,3008656476 +1,2762,376,128,3.65325594,0.127132986,1006.81974,3008656476 +1,2763,377,128,2.31441784,0.128111346,999.130865,3008656476 +1,2764,378,128,2.94876933,0.138131968,926.650086,3008656476 +1,2765,379,128,2.04537463,0.147260581,869.20749,3008656476 +1,2766,380,128,2.67070627,0.129319214,989.798778,3008656476 +1,2767,381,128,2.46585178,0.128701885,994.546428,3008656476 +1,2768,382,128,2.19452596,0.129112966,991.379905,3008656476 +1,2769,383,128,2.36824536,0.128521146,995.945056,3008656476 +1,2770,384,128,3.77272296,0.129682665,987.02475,3008656476 +1,2771,385,128,4.07327461,0.127828849,1001.33891,3008656476 +1,2772,386,128,2.95569754,0.137718268,929.433704,3008656476 +1,2773,387,128,2.43795204,0.14709725,870.172624,3008656476 +1,2774,388,128,3.23677087,0.129030191,992.015892,3008656476 +1,2775,389,128,3.81734729,0.128752699,994.153917,3008656476 +1,2776,390,128,3.19934726,0.128812867,993.689551,3008656476 +1,2777,391,128,3.36403871,0.128412363,996.788759,3008656476 +1,2778,392,128,2.50670815,0.130550312,980.464911,3008656476 +1,2779,393,128,3.30346656,0.127816671,1001.43431,3008656476 +1,2780,394,128,2.81787372,0.141660289,903.570089,3008656476 +1,2781,395,128,3.26456809,0.144661629,884.823439,3008656476 +1,2782,396,128,3.06495023,0.131287274,974.961214,3008656476 +1,2783,397,128,3.65016222,0.130255957,982.680585,3008656476 +1,2784,398,128,3.03491282,0.128272205,997.877911,3008656476 +1,2785,399,128,3.61090827,0.129057756,991.804011,3008656476 +1,2786,400,128,3.0551405,0.129459388,988.727059,3008656476 +1,2787,401,128,3.3135922,0.128275273,997.854045,3008656476 +1,2788,402,128,3.04032469,0.13375332,956.985591,3008656476 +1,2789,403,128,2.74633121,0.145606926,879.079062,3008656476 +1,2790,404,128,2.92735624,0.126852717,1009.04421,3008656476 +1,2791,405,128,2.7856288,0.128504361,996.075145,3008656476 +1,2792,406,128,2.80614853,0.126862718,1008.96467,3008656476 +1,2793,407,128,1.90263951,0.125965423,1016.15187,3008656476 +1,2794,408,128,2.52353954,0.1255692,1019.35825,3008656476 +1,2795,409,128,3.32669282,0.125738324,1017.98717,3008656476 +1,2796,410,128,2.18750262,0.141535709,904.365414,3008656476 +1,2797,411,128,3.27771306,0.144732784,884.388433,3008656476 +1,2798,412,128,2.39101052,0.126775747,1009.65684,3008656476 +1,2799,413,128,2.53695798,0.12808469,999.338797,3008656476 +1,2800,414,128,2.58194327,0.126656486,1010.60754,3008656476 +1,2801,415,128,3.55593824,0.12672697,1010.04545,3008656476 +1,2802,416,128,2.85915327,0.126472004,1012.08169,3008656476 +1,2803,417,128,2.32337976,0.126373942,1012.86704,3008656476 +1,2804,418,128,2.76521158,0.143667293,890.947392,3008656476 +1,2805,419,128,1.98176265,0.14045793,911.304901,3008656476 +1,2806,420,128,1.68584657,0.127157144,1006.62846,3008656476 +1,2807,421,128,3.0561893,0.126701281,1010.25024,3008656476 +1,2808,422,128,2.49283481,0.129940964,985.062724,3008656476 +1,2809,423,128,3.01270461,0.1273176,1005.35982,3008656476 +1,2810,424,128,3.65307736,0.12653208,1011.60117,3008656476 +1,2811,425,128,3.72308612,0.126297652,1013.47886,3008656476 +1,2812,426,128,4.17824936,0.14019855,912.990898,3008656476 +1,2813,427,128,2.93149734,0.140370375,911.873321,3008656476 +1,2814,428,128,2.03529215,0.127018656,1007.72598,3008656476 +1,2815,429,128,2.03371072,0.126382148,1012.80127,3008656476 +1,2816,430,128,2.15815568,0.127076317,1007.26873,3008656476 +1,2817,431,128,2.08906651,0.125310044,1021.4664,3008656476 +1,2818,432,128,2.41257334,0.126286292,1013.57002,3008656476 +1,2819,433,128,2.20679784,0.125484197,1020.04876,3008656476 +1,2820,434,128,3.14218616,0.138590787,923.582316,3008656476 +1,2821,435,128,3.35197496,0.139355067,918.517014,3008656476 +1,2822,436,128,3.73101068,0.125590316,1019.18686,3008656476 +1,2823,437,128,2.43168926,0.125893281,1016.73417,3008656476 +1,2824,438,128,2.3703959,0.125309847,1021.46801,3008656476 +1,2825,439,128,3.05547071,0.125575654,1019.30586,3008656476 +1,2826,440,128,2.88721514,0.125976556,1016.06207,3008656476 +1,2827,441,128,2.54214597,0.126887546,1008.76724,3008656476 +1,2828,442,128,2.5816021,0.140607971,910.332459,3008656476 +1,2829,443,128,2.51469994,0.140716878,909.627913,3008656476 +1,2830,444,128,2.46311975,0.127225345,1006.08884,3008656476 +1,2831,445,128,2.56441998,0.126006839,1015.81788,3008656476 +1,2832,446,128,2.73345542,0.126852315,1009.04741,3008656476 +1,2833,447,128,3.43365526,0.126740977,1009.93383,3008656476 +1,2834,448,128,3.07543969,0.126141425,1014.73406,3008656476 +1,2835,449,128,3.13141227,0.125168066,1022.62505,3008656476 +1,2836,450,128,2.90948915,0.141797329,902.696834,3008656476 +1,2837,451,128,3.60786843,0.139917822,914.822702,3008656476 +1,2838,452,128,3.09109378,0.125772793,1017.70818,3008656476 +1,2839,453,128,2.70274663,0.125316789,1021.41142,3008656476 +1,2840,454,128,3.35697412,0.12574857,1017.90422,3008656476 +1,2841,455,128,3.65215135,0.124694376,1026.50981,3008656476 +1,2842,456,128,3.31351542,0.125047543,1023.61068,3008656476 +1,2843,457,128,3.51052713,0.126136815,1014.77114,3008656476 +1,2844,458,128,3.27968478,0.140729564,909.545915,3008656476 +1,2845,459,128,2.36750269,0.126374433,1012.8631,3008656476 +1,2846,460,128,3.30690694,0.130562079,980.376546,3008656476 +1,2847,461,128,3.27758574,0.129850515,985.748882,3008656476 +1,2848,462,128,3.16994739,0.12866195,994.855122,3008656476 +1,2849,463,128,2.41262937,0.130972493,977.304448,3008656476 +1,2850,464,128,2.45896792,0.130907928,977.786464,3008656476 +1,2851,465,128,2.47970557,0.131426977,973.924859,3008656476 +1,2852,466,128,2.42696333,0.150229999,852.026898,3008656476 +1,2853,467,128,2.69831181,0.142997786,895.118754,3008656476 +1,2854,468,128,3.72170115,0.123484362,1036.5685,3008656476 +1,2855,469,128,3.44534802,0.133037163,962.137174,3008656476 +1,2856,470,128,3.39332581,0.129286066,990.052555,3008656476 +1,2857,471,128,2.2130971,0.130298127,982.362548,3008656476 +1,2858,472,128,3.80383515,0.129528792,988.19728,3008656476 +1,2859,473,128,3.2862556,0.128740622,994.247177,3008656476 +1,2860,474,128,2.78550291,0.141082732,907.269077,3008656476 +1,2861,475,128,2.12892199,0.140855957,908.72976,3008656476 +1,2862,476,128,2.81134367,0.124291205,1029.83956,3008656476 +1,2863,477,128,2.91212344,0.128140342,998.904779,3008656476 +1,2864,478,128,3.23895264,0.127156504,1006.63353,3008656476 +1,2865,479,128,3.62568736,0.126792973,1009.51967,3008656476 +1,2866,480,128,3.21796894,0.126334202,1013.18565,3008656476 +1,2867,481,128,2.59659314,0.125793139,1017.54357,3008656476 +1,2868,482,128,2.4848218,0.139785059,915.691569,3008656476 +1,2869,483,128,3.20146179,0.120696453,1060.5117,3008656476 +1,2870,484,128,3.28956938,0.140003009,914.266064,3008656476 +1,2871,485,128,2.71686506,0.126725233,1010.0593,3008656476 +1,2872,486,128,2.29363632,0.126090708,1015.14221,3008656476 +1,2873,487,128,3.1473248,0.127100387,1007.07797,3008656476 +1,2874,488,128,2.62600517,0.126874876,1008.86798,3008656476 +1,2875,489,128,3.60705996,0.126886345,1008.77679,3008656476 +1,2876,490,128,3.75456715,0.126671089,1010.49104,3008656476 +1,2877,491,128,3.75456858,0.140238253,912.73242,3008656476 +1,2878,492,128,2.86097383,0.140808052,909.038923,3008656476 +1,2879,493,128,3.12793517,0.125863203,1016.97714,3008656476 +1,2880,494,128,3.07728004,0.126059597,1015.39274,3008656476 +1,2881,495,128,3.27159214,0.126253184,1013.83582,3008656476 +1,2882,496,128,3.56407714,0.125982185,1016.01667,3008656476 +1,2883,497,128,3.73537302,0.126110742,1014.98094,3008656476 +1,2884,498,128,3.66075063,0.125048001,1023.60693,3008656476 +1,2885,499,128,3.19798827,0.140233948,912.760439,3008656476 +1,2886,500,128,3.6456852,0.140413119,911.595732,3008656476 +1,2887,501,128,3.71292615,0.124944645,1024.45367,3008656476 +1,2888,502,128,2.89698696,0.124970515,1024.2416,3008656476 +1,2889,503,128,3.44718242,0.1261168,1014.93219,3008656476 +1,2890,504,128,3.68904591,0.126226819,1014.04758,3008656476 +1,2891,505,128,3.59600091,0.12700155,1007.86172,3008656476 +1,2892,506,128,3.71092033,0.127494295,1003.96649,3008656476 +1,2893,507,128,2.88527155,0.142640754,897.35925,3008656476 +1,2894,508,128,3.43692946,0.143812114,890.050194,3008656476 +1,2895,509,128,3.38205147,0.127925416,1000.58303,3008656476 +1,2896,510,128,3.37451506,0.129624912,987.464508,3008656476 +1,2897,511,128,3.49347258,0.130293855,982.394757,3008656476 +1,2898,512,128,3.56155491,0.129097627,991.497698,3008656476 +1,2899,513,128,3.57395411,0.130651602,979.704788,3008656476 +1,2900,514,128,3.24676275,0.130995834,977.130311,3008656476 +1,2901,515,128,3.66365194,0.144375804,886.575149,3008656476 +1,2902,516,128,3.09815645,0.153521889,833.757328,3008656476 +1,2903,517,128,3.38771391,0.1431007,894.47501,3008656476 +1,2904,518,128,3.70262361,0.138930469,921.324177,3008656476 +1,2905,519,128,3.37261891,0.142930697,895.538906,3008656476 +1,2906,520,128,2.94185448,0.142934473,895.515248,3008656476 +1,2907,521,128,3.12973142,0.131092836,976.407284,3008656476 +1,2908,522,128,2.732862,0.143521524,891.852291,3008656476 +1,2909,523,128,3.2105,0.14364218,891.103156,3008656476 +1,2910,524,128,2.58791256,0.130171382,983.319052,3008656476 +1,2911,525,128,2.95581412,0.129170355,990.939446,3008656476 +1,2912,526,128,3.54831457,0.129351916,989.548543,3008656476 +1,2913,527,128,3.07893705,0.127972642,1000.21378,3008656476 +1,2914,528,128,3.60101867,0.127386969,1004.81235,3008656476 +1,2915,529,128,2.73356056,0.127466788,1004.18314,3008656476 +1,2916,530,128,2.46465683,0.140616503,910.277224,3008656476 +1,2917,531,128,3.42187452,0.135213763,946.649196,3008656476 +1,2918,532,128,3.97938561,0.121841554,1050.54471,3008656476 +1,2919,533,128,3.52581024,0.126973548,1008.08398,3008656476 +1,2920,534,128,3.38662529,0.126556384,1011.4069,3008656476 +1,2921,535,128,3.43083358,0.125515536,1019.79408,3008656476 +1,2922,536,128,3.27434707,0.126163954,1014.55286,3008656476 +1,2923,537,128,3.47877336,0.126211429,1014.17123,3008656476 +1,2924,538,128,2.37920523,0.126367148,1012.92149,3008656476 +1,2925,539,128,2.83095145,0.130527893,980.633312,3008656476 +1,2926,540,128,3.06089902,0.140909559,908.384079,3008656476 +1,2927,541,128,3.36289287,0.126238584,1013.95307,3008656476 +1,2928,542,128,3.24928856,0.12634702,1013.08286,3008656476 +1,2929,543,128,3.66108346,0.126150509,1014.66099,3008656476 +1,2930,544,128,2.77290154,0.125670444,1018.53702,3008656476 +1,2931,545,128,2.34838986,0.125267584,1021.81263,3008656476 +1,2932,546,128,2.81191301,0.124867159,1025.08939,3008656476 +1,2933,547,128,3.57393909,0.140185595,913.07527,3008656476 +1,2934,548,128,3.50606275,0.139312371,918.798518,3008656476 +1,2935,549,128,3.49358344,0.125822945,1017.30253,3008656476 +1,2936,550,128,2.88392544,0.126175502,1014.46,3008656476 +1,2937,551,128,2.55775952,0.125950686,1016.27076,3008656476 +1,2938,552,128,3.03048277,0.127056396,1007.42665,3008656476 +1,2939,553,128,3.43364191,0.127600905,1003.12768,3008656476 +1,2940,554,128,3.92632055,0.129163292,990.993633,3008656476 +1,2941,555,128,3.6926744,0.142028452,901.227875,3008656476 +1,2942,556,128,2.74059725,0.143841527,889.868195,3008656476 +1,2943,557,128,3.01949334,0.129332832,989.694558,3008656476 +1,2944,558,128,4.0444293,0.130510857,980.761317,3008656476 +1,2945,559,128,4.02442074,0.131472734,973.5859,3008656476 +1,2946,560,128,3.82548618,0.139028408,920.675147,3008656476 +1,2947,561,128,3.43716693,0.143397939,892.620918,3008656476 +1,2948,562,128,3.68803287,0.138757586,922.472087,3008656476 +1,2949,563,128,3.9899323,0.146549893,873.422678,3008656476 +1,2950,564,128,3.41243291,0.140026723,914.11123,3008656476 +1,2951,565,128,3.05826139,0.130402406,981.576981,3008656476 +1,2952,566,128,2.3742013,0.129711575,986.804763,3008656476 +1,2953,567,128,3.61587286,0.130141847,983.542211,3008656476 +1,2954,568,128,3.4117527,0.128963667,992.527609,3008656476 +1,2955,569,128,3.61973262,0.130001353,984.605137,3008656476 +1,2956,570,128,4.01157904,0.141316091,905.770879,3008656476 +1,2957,571,128,2.77092838,0.124032558,1031.9871,3008656476 +1,2958,572,128,2.69031191,0.141206018,906.476946,3008656476 +1,2959,573,128,3.71806979,0.127244449,1005.93779,3008656476 +1,2960,574,128,3.2631402,0.127572654,1003.34982,3008656476 +1,2961,575,128,3.35840106,0.126636387,1010.76794,3008656476 +1,2962,576,128,2.79907393,0.128266621,997.921353,3008656476 +1,2963,577,128,3.95870161,0.126315538,1013.33535,3008656476 +1,2964,578,128,2.92470956,0.125964488,1016.15941,3008656476 +1,2965,579,128,2.96509576,0.135287713,946.131745,3008656476 +1,2966,580,128,2.76849604,0.144917395,883.261806,3008656476 +1,2967,581,128,3.29004097,0.126424183,1012.46452,3008656476 +1,2968,582,128,3.40138578,0.126357391,1012.99971,3008656476 +1,2969,583,128,3.03121614,0.125992406,1015.93425,3008656476 +1,2970,584,128,3.3000977,0.126467485,1012.11786,3008656476 +1,2971,585,128,2.81223631,0.125977517,1016.05432,3008656476 +1,2972,586,128,3.83753133,0.126326158,1013.25016,3008656476 +1,2973,587,128,3.45769453,0.143070686,894.662656,3008656476 +1,2974,588,128,3.16330981,0.140430249,911.484534,3008656476 +1,2975,589,128,3.8505795,0.125471059,1020.15557,3008656476 +1,2976,590,128,3.45687246,0.125956919,1016.22047,3008656476 +1,2977,591,128,3.47291088,0.126730924,1010.01394,3008656476 +1,2978,592,128,3.17128181,0.126825859,1009.2579,3008656476 +1,2979,593,128,2.80268168,0.125715424,1018.1726,3008656476 +1,2980,594,128,2.82459807,0.126997486,1007.89397,3008656476 +1,2981,595,128,3.02089334,0.144802102,883.965068,3008656476 +1,2982,596,128,3.18232131,0.141073741,907.326899,3008656476 +1,2983,597,128,3.00339675,0.12616466,1014.54718,3008656476 +1,2984,598,128,2.9375875,0.125513293,1019.8123,3008656476 +1,2985,599,128,3.44214368,0.125763225,1017.7856,3008656476 +1,2986,600,128,3.28687334,0.125892454,1016.74084,3008656476 +1,2987,601,128,2.82141066,0.126368782,1012.90839,3008656476 +1,2988,602,128,3.33210945,0.126580197,1011.21663,3008656476 +1,2989,603,128,2.55880165,0.140314058,912.239314,3008656476 +1,2990,604,128,3.58586335,0.140195569,913.010311,3008656476 +1,2991,605,128,2.39105701,0.126555105,1011.41712,3008656476 +1,2992,606,128,2.52169251,0.126612664,1010.95732,3008656476 +1,2993,607,128,2.2986114,0.126652133,1010.64228,3008656476 +1,2994,608,128,3.27599216,0.126196933,1014.28772,3008656476 +1,2995,609,128,2.72923493,0.12626706,1013.7244,3008656476 +1,2996,610,128,2.77128315,0.12666134,1010.56881,3008656476 +1,2997,611,128,2.3500433,0.142446503,898.582958,3008656476 +1,2998,612,128,2.92771626,0.140932562,908.235813,3008656476 +1,2999,613,128,3.17735672,0.126155497,1014.62087,3008656476 +1,3000,614,128,3.48281837,0.127017294,1007.73679,3008656476 +1,3001,615,128,2.53038836,0.126810859,1009.37728,3008656476 +1,3002,616,128,3.26526785,0.126121598,1014.89358,3008656476 +1,3003,617,128,3.40874076,0.126630884,1010.81186,3008656476 +1,3004,618,128,2.80129409,0.12659565,1011.09319,3008656476 +1,3005,619,128,3.07356548,0.141761564,902.924576,3008656476 +1,3006,620,128,2.87908149,0.137708905,929.496898,3008656476 +1,3007,621,128,2.7505784,0.1258595,1017.00706,3008656476 +1,3008,622,128,3.31723428,0.126144578,1014.70869,3008656476 +1,3009,623,128,3.4906311,0.12600221,1015.8552,3008656476 +1,3010,624,128,3.40528202,0.126503259,1011.83164,3008656476 +1,3011,625,128,3.54955792,0.125132177,1022.91835,3008656476 +1,3012,626,128,3.33391953,0.124733101,1026.19112,3008656476 +1,3013,627,128,2.66371155,0.140071565,913.81859,3008656476 +1,3014,628,128,3.16001725,0.125785872,1017.60236,3008656476 +1,3015,629,128,3.89128923,0.129550249,988.033608,3008656476 +1,3016,630,128,3.64647818,0.127631134,1002.89009,3008656476 +1,3017,631,128,2.87051272,0.128821472,993.623175,3008656476 +1,3018,632,128,4.10019827,0.12838148,997.028543,3008656476 +1,3019,633,128,3.64380503,0.132268502,967.728507,3008656476 +1,3020,634,128,3.63250947,0.129646297,987.301627,3008656476 +1,3021,635,128,2.65498567,0.143393087,892.651122,3008656476 +1,3022,636,128,3.08420467,0.137174717,933.11656,3008656476 +1,3023,637,128,3.10131311,0.145110942,882.083723,3008656476 +1,3024,638,128,3.1203897,0.143549982,891.675486,3008656476 +1,3025,639,128,3.90963769,0.118949858,1076.08367,3008656476 +1,3026,640,128,3.19679117,0.130838484,978.305435,3008656476 +1,3027,641,128,3.34557986,0.129772507,986.341429,3008656476 +1,3028,642,128,2.68290901,0.130406498,981.54618,3008656476 +1,3029,643,128,3.29212046,0.144638505,884.964899,3008656476 +1,3030,644,128,3.63768148,0.143953422,889.1765,3008656476 +1,3031,645,128,4.21437168,0.129142412,991.153859,3008656476 +1,3032,646,128,3.20057964,0.129576705,987.831879,3008656476 +1,3033,647,128,3.06250858,0.128326888,997.452693,3008656476 +1,3034,648,128,3.31949687,0.127069458,1007.3231,3008656476 +1,3035,649,128,3.15277362,0.126038837,1015.55999,3008656476 +1,3036,650,128,2.75413108,0.128271548,997.883022,3008656476 +1,3037,651,128,2.96827936,0.140284208,912.433422,3008656476 +1,3038,652,128,2.29062915,0.141537041,904.356903,3008656476 +1,3039,653,128,2.63855672,0.125647351,1018.72422,3008656476 +1,3040,654,128,3.79858637,0.126625158,1010.85757,3008656476 +1,3041,655,128,3.77543569,0.125566457,1019.38052,3008656476 +1,3042,656,128,3.52480316,0.124720181,1026.29742,3008656476 +1,3043,657,128,3.04593921,0.125590539,1019.18505,3008656476 +1,3044,658,128,3.39266801,0.126539254,1011.54382,3008656476 +1,3045,659,128,3.70802879,0.140129868,913.438383,3008656476 +1,3046,660,128,3.27186251,0.137907879,928.155816,3008656476 +1,3047,661,128,3.38527966,0.123618569,1035.44315,3008656476 +1,3048,662,128,3.20349002,0.126113122,1014.96179,3008656476 +1,3049,663,128,2.7964952,0.126033064,1015.60651,3008656476 +1,3050,664,128,2.44969535,0.126468704,1012.1081,3008656476 +1,3051,665,128,3.9161644,0.125841657,1017.15126,3008656476 +1,3052,666,128,3.59277415,0.126228826,1014.03145,3008656476 +1,3053,667,128,3.08098507,0.12591696,1016.54297,3008656476 +1,3054,668,128,2.61820698,0.128054378,999.575352,3008656476 +1,3055,669,128,2.61266994,0.138295029,925.557491,3008656476 +1,3056,670,128,2.99959326,0.125463048,1020.22071,3008656476 +1,3057,671,128,2.4155755,0.125379262,1020.90248,3008656476 +1,3058,672,128,2.82272148,0.126569802,1011.29968,3008656476 +1,3059,673,128,2.88928103,0.127650568,1002.73741,3008656476 +1,3060,674,128,3.69674873,0.128810653,993.706631,3008656476 +1,3061,675,128,3.38476777,0.128157127,998.77395,3008656476 +1,3062,676,128,3.02618957,0.144208976,887.600783,3008656476 +1,3063,677,128,3.86883521,0.141728819,903.133187,3008656476 +1,3064,678,128,3.21725702,0.129771576,986.348505,3008656476 +1,3065,679,128,3.26363444,0.129674447,987.087302,3008656476 +1,3066,680,128,3.2826829,0.129375621,989.367232,3008656476 +1,3067,681,128,3.46764517,0.129415309,989.063821,3008656476 +1,3068,682,128,3.13969636,0.131179086,975.765298,3008656476 +1,3069,683,128,2.96254754,0.139061048,920.459049,3008656476 +1,3070,684,128,3.05676913,0.149070204,858.655832,3008656476 +1,3071,685,128,2.63307381,0.14939697,856.777751,3008656476 +1,3072,686,128,2.89366102,0.129228733,990.491797,3008656476 +1,3073,687,128,2.44216108,0.130683025,979.469216,3008656476 +1,3074,688,128,3.48865485,0.129640562,987.345303,3008656476 +1,3075,689,128,2.38520598,0.130776848,978.766517,3008656476 +1,3076,690,128,2.94904971,0.131018406,976.96197,3008656476 +1,3077,691,128,3.15515995,0.142718509,896.870356,3008656476 +1,3078,692,128,3.15838838,0.129748597,986.523191,3008656476 +1,3079,693,128,2.74657679,0.130216678,982.977004,3008656476 +1,3080,694,128,3.40113139,0.126192834,1014.32067,3008656476 +1,3081,695,128,3.20760679,0.127004492,1007.83837,3008656476 +1,3082,696,128,3.78402233,0.125109662,1023.10244,3008656476 +1,3083,697,128,3.53027487,0.125150058,1022.7722,3008656476 +1,3084,698,128,2.95167685,0.126506369,1011.80677,3008656476 +1,3085,699,128,2.9437263,0.125757008,1017.83592,3008656476 +1,3086,700,128,3.67556357,0.135971609,941.372989,3008656476 +1,3087,701,128,3.16815543,0.157318207,813.637547,3008656476 +1,3088,702,128,2.97627735,0.17126417,747.383414,3008656476 +1,3089,703,128,2.37938881,0.126543081,1011.51323,3008656476 +1,3090,704,128,3.2389462,0.125970503,1016.11089,3008656476 +1,3091,705,128,3.59290791,0.125986668,1015.98052,3008656476 +1,3092,706,128,3.24789166,0.12580521,1017.44594,3008656476 +1,3093,707,128,3.25590348,0.138600057,923.520544,3008656476 +1,3094,708,128,2.60384512,0.133654161,957.695586,3008656476 +1,3095,709,128,3.59144115,0.12436658,1029.2154,3008656476 +1,3096,710,128,2.27976513,0.124987768,1024.10021,3008656476 +1,3097,711,128,3.32567143,0.125393964,1020.78279,3008656476 +1,3098,712,128,3.15848112,0.124993994,1024.0492,3008656476 +1,3099,713,128,3.4109602,0.126215631,1014.13746,3008656476 +1,3100,714,128,2.23688722,0.126047688,1015.48868,3008656476 +1,3101,715,128,1.84882891,0.127669314,1002.59018,3008656476 +1,3102,716,128,2.44420958,0.133856951,956.2447,3008656476 +1,3103,717,128,3.30627155,0.142488167,898.320209,3008656476 +1,3104,718,128,3.8145833,0.131607924,972.585815,3008656476 +1,3105,719,128,3.72391343,0.138770611,922.385504,3008656476 +1,3106,720,128,3.5330863,0.143181519,893.970122,3008656476 +1,3107,721,128,3.62527466,0.138717915,922.735899,3008656476 +1,3108,722,128,2.84343815,0.130526665,980.642538,3008656476 +1,3109,723,128,3.79101205,0.144972778,882.924379,3008656476 +1,3110,724,128,2.9481318,0.145070172,882.331621,3008656476 +1,3111,725,128,3.25845361,0.129786437,986.235565,3008656476 +1,3112,726,128,2.9200809,0.129993359,984.665686,3008656476 +1,3113,727,128,3.44730091,0.129449487,988.802683,3008656476 +1,3114,728,128,3.10158753,0.12899857,992.259061,3008656476 +1,3115,729,128,3.41168499,0.129145978,991.126491,3008656476 +1,3116,730,128,3.21205878,0.128432501,996.632465,3008656476 +1,3117,731,128,3.76257563,0.143533714,891.776548,3008656476 +1,3118,732,128,3.08791113,0.141314689,905.779866,3008656476 +1,3119,733,128,2.70236802,0.128010569,999.917437,3008656476 +1,3120,734,128,2.18130898,0.127129734,1006.8455,3008656476 +1,3121,735,128,2.2139771,0.127555828,1003.48218,3008656476 +1,3122,736,128,2.13666844,0.126012763,1015.77012,3008656476 +1,3123,737,128,2.06033731,0.127046449,1007.50553,3008656476 +1,3124,738,128,2.21552587,0.124753429,1026.0239,3008656476 +1,3125,739,128,2.7031188,0.139884016,915.043789,3008656476 +1,3126,740,128,2.45386767,0.141497256,904.611182,3008656476 +1,3127,741,128,2.78735518,0.126083844,1015.19747,3008656476 +1,3128,742,128,2.91698027,0.125461098,1020.23657,3008656476 +1,3129,743,128,3.04745555,0.126530405,1011.61456,3008656476 +1,3130,744,128,2.71206236,0.12584389,1017.13321,3008656476 +1,3131,745,128,2.23695564,0.1257062,1018.24731,3008656476 +1,3132,746,128,2.20474935,0.126733713,1009.99171,3008656476 +1,3133,747,128,2.26239562,0.139826825,915.418054,3008656476 +1,3134,748,128,3.09423923,0.124044287,1031.88952,3008656476 +1,3135,749,128,3.87601376,0.134927653,948.656537,3008656476 +1,3136,750,128,2.5313158,0.125832622,1017.22429,3008656476 +1,3137,751,128,3.46281838,0.126419925,1012.49862,3008656476 +1,3138,752,128,2.48295879,0.126430852,1012.41112,3008656476 +1,3139,753,128,2.83907175,0.126427682,1012.4365,3008656476 +1,3140,754,128,3.0496006,0.126111912,1014.97153,3008656476 +1,3141,755,128,3.01088214,0.12540954,1020.656,3008656476 +1,3142,756,128,3.50685334,0.138385951,924.949383,3008656476 +1,3143,757,128,2.27868867,0.138242223,925.911037,3008656476 +1,3144,758,128,2.99821997,0.125970627,1016.10989,3008656476 +1,3145,759,128,2.70140505,0.125637656,1018.80283,3008656476 +1,3146,760,128,3.05616498,0.126096899,1015.09237,3008656476 +1,3147,761,128,3.66308475,0.126888731,1008.75782,3008656476 +1,3148,762,128,3.9939003,0.126967452,1008.13238,3008656476 +1,3149,763,128,3.45252013,0.126648591,1010.67054,3008656476 +1,3150,764,128,3.79799128,0.141839255,902.430008,3008656476 +1,3151,765,128,3.78481078,0.142156163,900.418225,3008656476 +1,3152,766,128,3.29035091,0.128931642,992.77414,3008656476 +1,3153,767,128,3.76865983,0.129233708,990.453667,3008656476 +1,3154,768,128,3.05507398,0.129555072,987.996827,3008656476 +1,3155,769,128,3.10703826,0.130177932,983.269576,3008656476 +1,3156,770,128,2.5434413,0.131038038,976.815602,3008656476 +1,3157,771,128,3.62457418,0.132118328,968.828488,3008656476 +1,3158,772,128,2.87488198,0.154797396,826.887295,3008656476 +1,3159,773,128,3.11579084,0.154031973,830.996302,3008656476 +1,3160,774,128,2.86121655,0.128991715,992.311793,3008656476 +1,3161,775,128,3.34249997,0.130139862,983.557213,3008656476 +1,3162,776,128,3.45281339,0.129240824,990.399133,3008656476 +1,3163,777,128,3.48202968,0.130938902,977.555165,3008656476 +1,3164,778,128,2.84696269,0.128632141,995.085668,3008656476 +1,3165,779,128,3.10214138,0.129256095,990.282122,3008656476 +1,3166,780,128,2.6925993,0.133983096,955.344397,3008656476 +1,3167,781,128,2.74283338,0.146983465,870.846255,3008656476 +1,3168,782,128,2.1381948,0.130965998,977.352916,3008656476 +1,3169,783,128,2.08810759,0.129773539,986.333585,3008656476 +1,3170,784,128,2.86740851,0.131631598,972.410895,3008656476 +1,3171,785,128,3.08703256,0.128727275,994.350265,3008656476 +1,3172,786,128,3.04424763,0.128121403,999.052438,3008656476 +1,3173,787,128,3.66782498,0.127639,1002.82829,3008656476 +1,3174,788,128,3.54722166,0.132844915,963.529541,3008656476 +1,3175,789,128,3.60836244,0.144494799,885.845033,3008656476 +1,3176,790,128,3.40924048,0.116459363,1099.09583,3008656476 +1,3177,791,128,3.90209508,0.126911342,1008.5781,3008656476 +1,3178,792,128,3.02736068,0.126925616,1008.46467,3008656476 +1,3179,793,128,3.35773611,0.125095334,1023.21962,3008656476 +1,3180,794,128,2.6925745,0.126524594,1011.66102,3008656476 +1,3181,795,128,2.86056113,0.126621172,1010.8894,3008656476 +1,3182,796,128,3.67820811,0.14011728,913.520445,3008656476 +1,3183,797,128,3.15359473,0.149074792,858.629405,3008656476 +1,3184,798,128,3.0136261,0.126071117,1015.29996,3008656476 +1,3185,799,128,2.92803359,0.12603835,1015.56391,3008656476 +1,3186,800,128,3.61663413,0.125497667,1019.93928,3008656476 +1,3187,801,128,3.29720831,0.125667359,1018.56203,3008656476 +1,3188,802,128,3.75333405,0.125597923,1019.12513,3008656476 +1,3189,803,128,2.98203397,0.126827553,1009.24442,3008656476 +1,3190,804,128,3.38574719,0.140417841,911.565077,3008656476 +1,3191,805,128,4.1983223,0.140758651,909.357962,3008656476 +1,3192,806,128,3.95965981,0.126239482,1013.94586,3008656476 +1,3193,807,128,3.52240658,0.126200049,1014.26268,3008656476 +1,3194,808,128,2.77340674,0.126565671,1011.33269,3008656476 +1,3195,809,128,2.88994575,0.125680463,1018.45583,3008656476 +1,3196,810,128,2.91407013,0.125770228,1017.72893,3008656476 +1,3197,811,128,3.06942129,0.12615362,1014.63597,3008656476 +1,3198,812,128,3.73257232,0.142924806,895.575818,3008656476 +1,3199,813,128,3.26991177,0.139161534,919.794402,3008656476 +1,3200,814,128,2.5696559,0.126868753,1008.91667,3008656476 +1,3201,815,128,2.82280612,0.126432381,1012.39887,3008656476 +1,3202,816,128,3.68863583,0.126021907,1015.69642,3008656476 +1,3203,817,128,3.49399686,0.126396265,1012.68815,3008656476 +1,3204,818,128,3.29962707,0.125972666,1016.09344,3008656476 +1,3205,819,128,3.02439475,0.126477708,1012.03605,3008656476 +1,3206,820,128,2.9778986,0.142019707,901.283369,3008656476 +1,3207,821,128,3.05061746,0.141271088,906.05942,3008656476 +1,3208,822,128,2.90652108,0.126771191,1009.69312,3008656476 +1,3209,823,128,4.05248117,0.126549208,1011.46425,3008656476 +1,3210,824,128,3.39388585,0.125663641,1018.59216,3008656476 +1,3211,825,128,3.04688478,0.126598052,1011.07401,3008656476 +1,3212,826,128,3.38751101,0.125978309,1016.04793,3008656476 +1,3213,827,128,3.2076757,0.126403635,1012.62911,3008656476 +1,3214,828,128,3.05915785,0.142784679,896.454724,3008656476 +1,3215,829,128,3.13629079,0.141172451,906.692482,3008656476 +1,3216,830,128,3.42674541,0.125974543,1016.0783,3008656476 +1,3217,831,128,2.33583808,0.125965419,1016.1519,3008656476 +1,3218,832,128,3.51407695,0.125585421,1019.22659,3008656476 +1,3219,833,128,3.921314,0.126211292,1014.17233,3008656476 +1,3220,834,128,3.8892436,0.126192629,1014.32232,3008656476 +1,3221,835,128,3.54872298,0.126100391,1015.06426,3008656476 +1,3222,836,128,2.94971514,0.141573543,904.123732,3008656476 +1,3223,837,128,3.58960533,0.139093924,920.241491,3008656476 +1,3224,838,128,3.38105989,0.125679556,1018.46318,3008656476 +1,3225,839,128,3.36313653,0.124673344,1026.68298,3008656476 +1,3226,840,128,3.20763922,0.125948208,1016.29076,3008656476 +1,3227,841,128,2.9232502,0.12545595,1020.27843,3008656476 +1,3228,842,128,2.6098094,0.126644214,1010.70547,3008656476 +1,3229,843,128,3.68164945,0.125967844,1016.13234,3008656476 +1,3230,844,128,2.70871067,0.140549233,910.712903,3008656476 +1,3231,845,128,3.33567977,0.123254321,1038.50315,3008656476 +1,3232,846,128,2.90628147,0.134567638,951.194521,3008656476 +1,3233,847,128,3.87197852,0.130884786,977.959348,3008656476 +1,3234,848,128,2.91886282,0.139601326,916.896735,3008656476 +1,3235,849,128,2.91320133,0.143218715,893.737945,3008656476 +1,3236,850,128,2.76694083,0.142962644,895.338785,3008656476 +1,3237,851,128,2.9881618,0.141164771,906.74181,3008656476 +1,3238,852,128,2.37310338,0.150797691,848.819363,3008656476 +1,3239,853,128,3.00232792,0.14778494,866.123436,3008656476 +1,3240,854,128,3.82764435,0.128869421,993.253473,3008656476 +1,3241,855,128,3.06814408,0.130423936,981.414945,3008656476 +1,3242,856,128,3.74840665,0.129641425,987.338731,3008656476 +1,3243,857,128,3.19389176,0.129589729,987.7326,3008656476 +1,3244,858,128,3.32993722,0.13025115,982.716851,3008656476 +1,3245,859,128,3.1048646,0.128440798,996.568084,3008656476 +1,3246,860,128,3.42860603,0.13973121,916.044454,3008656476 +1,3247,861,128,3.52439785,0.143538703,891.745552,3008656476 +1,3248,862,128,2.90927625,0.128004703,999.963259,3008656476 +1,3249,863,128,2.54904175,0.127429638,1004.4759,3008656476 +1,3250,864,128,3.13934064,0.128394293,996.929046,3008656476 +1,3251,865,128,2.88402987,0.126394549,1012.7019,3008656476 +1,3252,866,128,3.07928157,0.126696452,1010.28875,3008656476 +1,3253,867,128,3.06643057,0.125932503,1016.4175,3008656476 +1,3254,868,128,3.32555294,0.138456796,924.476109,3008656476 +1,3255,869,128,3.20387101,0.141903618,902.020694,3008656476 +1,3256,870,128,3.5205822,0.125969149,1016.12181,3008656476 +1,3257,871,128,2.75414228,0.127347898,1005.12063,3008656476 +1,3258,872,128,2.99951172,0.125776759,1017.67609,3008656476 +1,3259,873,128,2.67305088,0.126477339,1012.039,3008656476 +1,3260,874,128,3.2011776,0.126716218,1010.13116,3008656476 +1,3261,875,128,2.62793016,0.125901309,1016.66933,3008656476 +1,3262,876,128,3.19448185,0.140459156,911.296947,3008656476 +1,3263,877,128,2.43522382,0.141255828,906.157302,3008656476 +1,3264,878,128,2.74643421,0.126555783,1011.4117,3008656476 +1,3265,879,128,3.09491992,0.126640813,1010.73261,3008656476 +1,3266,880,128,3.50337005,0.125413683,1020.62229,3008656476 +1,3267,881,128,3.9078505,0.126542728,1011.51605,3008656476 +1,3268,882,128,4.50107384,0.125846378,1017.1131,3008656476 +1,3269,883,128,3.67172813,0.125667881,1018.5578,3008656476 +1,3270,884,128,2.57579613,0.139838349,915.342615,3008656476 +1,3271,885,128,3.6350584,0.13865515,923.153594,3008656476 +1,3272,886,128,3.26824331,0.126057844,1015.40686,3008656476 +1,3273,887,128,3.66980457,0.12616581,1014.53793,3008656476 +1,3274,888,128,2.75822258,0.126013467,1015.76445,3008656476 +1,3275,889,128,3.31761956,0.125227882,1022.13659,3008656476 +1,3276,890,128,2.59077454,0.125013081,1023.89285,3008656476 +1,3277,891,128,2.72518611,0.124962046,1024.31101,3008656476 +1,3278,892,128,3.44994617,0.125726269,1018.08477,3008656476 +1,3279,893,128,3.60795808,0.132397201,966.78781,3008656476 +1,3280,894,128,3.70810413,0.141805421,902.645323,3008656476 +1,3281,895,128,3.50495481,0.129014383,992.137443,3008656476 +1,3282,896,128,2.42213345,0.130086296,983.962215,3008656476 +1,3283,897,128,3.01670766,0.131107267,976.299811,3008656476 +1,3284,898,128,2.46111178,0.131246905,975.261093,3008656476 +1,3285,899,128,3.09451604,0.13914036,919.934374,3008656476 +1,3286,900,128,2.61853337,0.14197727,901.552763,3008656476 +1,3287,901,128,2.56776786,0.127556918,1003.4736,3008656476 +1,3288,902,128,2.72714806,0.134182197,953.926846,3008656476 +1,3289,903,128,2.98329186,0.132992208,962.462402,3008656476 +1,3290,904,128,2.42404389,0.129667119,987.143086,3008656476 +1,3291,905,128,2.79134774,0.130525318,980.652658,3008656476 +1,3292,906,128,3.53250456,0.128697709,994.578699,3008656476 +1,3293,907,128,3.4356811,0.131479027,973.539301,3008656476 +1,3294,908,128,3.37356257,0.139593759,916.946437,3008656476 +1,3295,909,128,2.88939238,0.118054885,1084.24145,3008656476 +1,3296,910,128,3.1409812,0.13422748,953.605029,3008656476 +1,3297,911,128,2.91070509,0.126292753,1013.51817,3008656476 +1,3298,912,128,3.67709517,0.125313124,1021.4413,3008656476 +1,3299,913,128,2.88458276,0.126200955,1014.2554,3008656476 +1,3300,914,128,3.81751633,0.125803135,1017.46272,3008656476 +1,3301,915,128,3.36018586,0.127051574,1007.46489,3008656476 +1,3302,916,128,2.94466615,0.126355482,1013.01501,3008656476 +1,3303,917,128,2.51077652,0.141136541,906.923176,3008656476 +1,3304,918,128,2.99380755,0.14222721,899.968438,3008656476 +1,3305,919,128,2.70851231,0.12608365,1015.19904,3008656476 +1,3306,920,128,3.04078913,0.126366303,1012.92826,3008656476 +1,3307,921,128,2.87100816,0.126400001,1012.65822,3008656476 +1,3308,922,128,3.27114153,0.126823944,1009.27314,3008656476 +1,3309,923,128,3.82308125,0.126195189,1014.30174,3008656476 +1,3310,924,128,2.69045377,0.126114432,1014.95125,3008656476 +1,3311,925,128,3.65772009,0.140705184,909.703512,3008656476 +1,3312,926,128,2.79957867,0.139421085,918.082082,3008656476 +1,3313,927,128,2.70048523,0.126459157,1012.18451,3008656476 +1,3314,928,128,3.20043659,0.126377786,1012.83623,3008656476 +1,3315,929,128,3.15128088,0.125586037,1019.22159,3008656476 +1,3316,930,128,2.48878956,0.12575514,1017.85104,3008656476 +1,3317,931,128,2.86699438,0.125410165,1020.65092,3008656476 +1,3318,932,128,2.81329823,0.125843664,1017.13504,3008656476 +1,3319,933,128,2.80920124,0.140942184,908.173808,3008656476 +1,3320,934,128,2.87959123,0.138915836,921.421227,3008656476 +1,3321,935,128,2.98043251,0.125937077,1016.38059,3008656476 +1,3322,936,128,2.74695563,0.125944654,1016.31944,3008656476 +1,3323,937,128,3.08428264,0.126018249,1015.7259,3008656476 +1,3324,938,128,3.27113461,0.127303302,1005.47274,3008656476 +1,3325,939,128,3.3341229,0.127373441,1004.91907,3008656476 +1,3326,940,128,3.0372467,0.128931218,992.777405,3008656476 +1,3327,941,128,2.60304713,0.143569616,891.553544,3008656476 +1,3328,942,128,2.80015111,0.14318659,893.938462,3008656476 +1,3329,943,128,2.79075718,0.130770595,978.813318,3008656476 +1,3330,944,128,3.95553184,0.130337402,982.066529,3008656476 +1,3331,945,128,3.63813043,0.130579562,980.245285,3008656476 +1,3332,946,128,2.87605786,0.128764287,994.064449,3008656476 +1,3333,947,128,3.61695576,0.131062152,976.635879,3008656476 +1,3334,948,128,3.91056466,0.130044728,984.276733,3008656476 +1,3335,949,128,4.04895735,0.142155208,900.424274,3008656476 +1,3336,950,128,3.17700267,0.143160155,894.10353,3008656476 +1,3337,951,128,2.70971966,0.128481047,996.255891,3008656476 +1,3338,952,128,2.51515007,0.129357654,989.504649,3008656476 +1,3339,953,128,3.30772352,0.131482627,973.512645,3008656476 +1,3340,954,128,3.28879428,0.128232692,998.185393,3008656476 +1,3341,955,128,2.45070434,0.127492489,1003.98071,3008656476 +1,3342,956,128,3.52346492,0.128292189,997.722472,3008656476 +1,3343,957,128,3.23519564,0.139661347,916.502688,3008656476 +1,3344,958,128,3.1098702,0.142692585,897.033297,3008656476 +1,3345,959,128,3.16776133,0.126454215,1012.22407,3008656476 +1,3346,960,128,3.26488137,0.125934923,1016.39797,3008656476 +1,3347,961,128,3.01786017,0.125731346,1018.04366,3008656476 +1,3348,962,128,3.13310742,0.126478127,1012.0327,3008656476 +1,3349,963,128,2.84529972,0.125831735,1017.23146,3008656476 +1,3350,964,128,2.56430173,0.126261501,1013.76903,3008656476 +1,3351,965,128,2.81352162,0.139946406,914.63585,3008656476 +1,3352,966,128,3.08846545,0.14022925,912.791019,3008656476 +1,3353,967,128,3.86331439,0.126054908,1015.43051,3008656476 +1,3354,968,128,3.249295,0.126323815,1013.26895,3008656476 +1,3355,969,128,2.89794683,0.125937964,1016.37343,3008656476 +1,3356,970,128,2.66789293,0.126579839,1011.21949,3008656476 +1,3357,971,128,3.11245775,0.126525092,1011.65704,3008656476 +1,3358,972,128,2.49362707,0.126160602,1014.57981,3008656476 +1,3359,973,128,2.69463801,0.141302496,905.858025,3008656476 +1,3360,974,128,3.19627714,0.140167002,913.196388,3008656476 +1,3361,975,128,3.33462572,0.125671575,1018.52786,3008656476 +1,3362,976,128,3.2840488,0.12553073,1019.67064,3008656476 +1,3363,977,128,3.21466088,0.125923384,1016.49111,3008656476 +1,3364,978,128,3.27579451,0.126566661,1011.32478,3008656476 +1,3365,979,128,3.31464005,0.125408333,1020.66583,3008656476 +1,3366,980,128,2.93441439,0.125089726,1023.26549,3008656476 +1,3367,981,128,3.24508953,0.138486636,924.27691,3008656476 +1,3368,982,128,2.80793071,0.122302556,1046.58483,3008656476 +1,3369,983,128,2.82661748,0.131214282,975.503566,3008656476 +1,3370,984,128,2.953547,0.129287731,990.039805,3008656476 +1,3371,985,128,2.9560318,0.130708356,979.279397,3008656476 +1,3372,986,128,2.81018209,0.129354032,989.532356,3008656476 +1,3373,987,128,2.69309688,0.129313914,989.839346,3008656476 +1,3374,988,128,3.00674558,0.129948412,985.006265,3008656476 +1,3375,989,128,3.3931284,0.132393801,966.812638,3008656476 +1,3376,990,128,2.5059104,0.149403736,856.738951,3008656476 +1,3377,991,128,2.66890073,0.131730438,971.681275,3008656476 +1,3378,992,128,2.99712873,0.130601252,980.082488,3008656476 +1,3379,993,128,2.07688522,0.132042626,969.383932,3008656476 +1,3380,994,128,2.45470285,0.129372854,989.388392,3008656476 +1,3381,995,128,2.10361171,0.13087293,978.047943,3008656476 +1,3382,996,128,2.96670485,0.129154957,991.057587,3008656476 +1,3383,997,128,2.83814454,0.129463802,988.693349,3008656476 +1,3384,998,128,2.62986779,0.130463251,981.119197,3008656476 +1,3385,999,128,2.8093071,0.133009125,962.33999,3008656476 +1,3386,1000,128,3.35674739,0.125564384,1019.39735,3008656476 +1,3387,1001,128,2.77992082,0.126615764,1010.93257,3008656476 +1,3388,1002,128,2.87812352,0.126078675,1015.2391,3008656476 +1,3389,1003,128,2.77624345,0.126952968,1008.2474,3008656476 +1,3390,1004,128,3.17653656,0.126013643,1015.76303,3008656476 +1,3391,1005,128,2.84758997,0.126603302,1011.03208,3008656476 +1,3392,1006,128,3.28424335,0.140134719,913.406763,3008656476 +1,3393,1007,128,3.18583274,0.143598624,891.373444,3008656476 +1,3394,1008,128,2.70591927,0.126269243,1013.70688,3008656476 +1,3395,1009,128,2.70428348,0.126315845,1013.33289,3008656476 +1,3396,1010,128,3.05592299,0.125886418,1016.7896,3008656476 +1,3397,1011,128,2.44143152,0.126265026,1013.74073,3008656476 +1,3398,1012,128,3.01590967,0.126748116,1009.87694,3008656476 +1,3399,1013,128,2.62219381,0.126543787,1011.50758,3008656476 +1,3400,1014,128,2.95741463,0.139328074,918.694965,3008656476 +1,3401,1015,128,1.89409196,0.141961026,901.655924,3008656476 +1,3402,1016,128,2.48876643,0.12592659,1016.46523,3008656476 +1,3403,1017,128,2.57289386,0.125437746,1020.4265,3008656476 +1,3404,1018,128,2.85058165,0.125768446,1017.74335,3008656476 +1,3405,1019,128,3.48197031,0.126009109,1015.79958,3008656476 +1,3406,1020,128,3.44347262,0.125053158,1023.56471,3008656476 +1,3407,1021,128,3.08547592,0.125885099,1016.80025,3008656476 +1,3408,1022,128,2.95481801,0.138375502,925.019228,3008656476 +1,3409,1023,128,4.01036978,0.141012987,907.717812,3008656476 +1,3410,1024,128,3.58996582,0.126236176,1013.97241,3008656476 +1,3411,1025,128,3.2197721,0.126388792,1012.74803,3008656476 +1,3412,1026,128,2.8268652,0.127424121,1004.51939,3008656476 +1,3413,1027,128,2.65648437,0.128970394,992.475839,3008656476 +1,3414,1028,128,2.66700053,0.129490885,988.486564,3008656476 +1,3415,1029,128,2.9649179,0.131390638,974.194219,3008656476 +1,3416,1030,128,2.39086604,0.146915765,871.247548,3008656476 +1,3417,1031,128,3.13186908,0.144397102,886.444383,3008656476 +1,3418,1032,128,2.60332227,0.129802515,986.113405,3008656476 +1,3419,1033,128,2.86759353,0.131076672,976.527692,3008656476 +1,3420,1034,128,3.28925896,0.131754792,971.501667,3008656476 +1,3421,1035,128,3.34719491,0.139125503,920.032613,3008656476 +1,3422,1036,128,3.2224412,0.143020165,894.978691,3008656476 +1,3423,1037,128,3.04857898,0.143303567,893.20875,3008656476 +1,3424,1038,128,2.80432916,0.146877069,871.477085,3008656476 +1,3425,1039,128,2.68287945,0.144781664,884.089853,3008656476 +1,3426,1040,128,3.17361355,0.129577564,987.825331,3008656476 +1,3427,1041,128,3.20437789,0.132868865,963.355862,3008656476 +1,3428,1042,128,2.89074945,0.129681548,987.033252,3008656476 +1,3429,1043,128,2.07944083,0.130594982,980.129543,3008656476 +1,3430,1044,128,2.46486926,0.129754451,986.478683,3008656476 +1,3431,1045,128,2.81832266,0.131773337,971.364943,3008656476 +1,3432,1046,128,2.7361238,0.130773841,978.789022,3008656476 +1,3433,1047,128,2.71367455,0.135367217,945.576062,3008656476 +1,3434,1048,128,3.38092446,0.126171678,1014.49075,3008656476 +1,3435,1049,128,3.33318686,0.125276488,1021.74001,3008656476 +1,3436,1050,128,3.45926476,0.125641448,1018.77209,3008656476 +1,3437,1051,128,3.0200026,0.126824083,1009.27203,3008656476 +1,3438,1052,128,2.78010225,0.12646213,1012.16072,3008656476 +1,3439,1053,128,2.75644922,0.126270189,1013.69928,3008656476 +1,3440,1054,128,3.45229721,0.140278898,912.467961,3008656476 +1,3441,1055,128,2.86304331,0.142595393,897.644709,3008656476 +1,3442,1056,128,3.39522529,0.126595738,1011.09249,3008656476 +1,3443,1057,128,3.45644379,0.12624933,1013.86677,3008656476 +1,3444,1058,128,3.15757895,0.126317082,1013.32296,3008656476 +1,3445,1059,128,2.47954321,0.126282625,1013.59946,3008656476 +1,3446,1060,128,3.59441805,0.127147037,1006.70848,3008656476 +1,3447,1061,128,3.85611534,0.125613847,1018.99594,3008656476 +1,3448,1062,128,3.49677777,0.139498378,917.573393,3008656476 +1,3449,1063,128,3.2634387,0.141686794,903.401061,3008656476 +1,3450,1064,128,2.76365757,0.125429903,1020.49031,3008656476 +1,3451,1065,128,3.00631523,0.12627216,1013.68346,3008656476 +1,3452,1066,128,2.99557781,0.12611041,1014.98362,3008656476 +1,3453,1067,128,3.10690689,0.125158954,1022.6995,3008656476 +1,3454,1068,128,3.2589829,0.12474694,1026.07727,3008656476 +1,3455,1069,128,3.67194843,0.125135104,1022.89442,3008656476 +1,3456,1070,128,3.39160824,0.137995167,927.568717,3008656476 +1,3457,1071,128,3.62678504,0.140413817,911.5912,3008656476 +1,3458,1072,128,2.7036221,0.126757987,1009.7983,3008656476 +1,3459,1073,128,3.50937676,0.127078814,1007.24893,3008656476 +1,3460,1074,128,3.18901467,0.127804444,1001.53012,3008656476 +1,3461,1075,128,3.16458392,0.127246759,1005.91953,3008656476 +1,3462,1076,128,3.64066601,0.128004497,999.964868,3008656476 +1,3463,1077,128,3.31528974,0.128847763,993.420429,3008656476 +1,3464,1078,128,3.49391103,0.143691051,890.800082,3008656476 +1,3465,1079,128,3.99961185,0.142566458,897.826893,3008656476 +1,3466,1080,128,2.85677052,0.128173149,998.649101,3008656476 +1,3467,1081,128,1.72596037,0.130846315,978.246885,3008656476 +1,3468,1082,128,2.68921971,0.131342007,974.554927,3008656476 +1,3469,1083,128,3.19235301,0.138812529,922.106966,3008656476 +1,3470,1084,128,3.21863031,0.130821545,978.432108,3008656476 +1,3471,1085,128,3.25598645,0.130406667,981.544908,3008656476 +1,3472,1086,128,3.27344155,0.145439738,880.089594,3008656476 +1,3473,1087,128,2.80702519,0.144523388,885.669799,3008656476 +1,3474,1088,128,2.89833689,0.130109693,983.785274,3008656476 +1,3475,1089,128,2.86938739,0.12907077,991.704009,3008656476 +1,3476,1090,128,3.03994203,0.128961615,992.543401,3008656476 +1,3477,1091,128,3.30951214,0.128862021,993.310512,3008656476 +1,3478,1092,128,2.65167046,0.128549179,995.727868,3008656476 +1,3479,1093,128,3.5497942,0.127808329,1001.49968,3008656476 +1,3480,1094,128,3.41122389,0.141211979,906.438681,3008656476 +1,3481,1095,128,2.99529076,0.141780429,902.804434,3008656476 +1,3482,1096,128,2.73878336,0.127057229,1007.42005,3008656476 +1,3483,1097,128,2.95104814,0.127920986,1000.61768,3008656476 +1,3484,1098,128,3.18166065,0.126748673,1009.87251,3008656476 +1,3485,1099,128,3.59634876,0.127208593,1006.22133,3008656476 +1,3486,1100,128,3.28291202,0.12575106,1017.88406,3008656476 +1,3487,1101,128,3.27962875,0.125980235,1016.0324,3008656476 +1,3488,1102,128,3.13886833,0.138916915,921.41407,3008656476 +1,3489,1103,128,3.29371643,0.140673158,909.910617,3008656476 +1,3490,1104,128,2.91436267,0.126620657,1010.89351,3008656476 +1,3491,1105,128,3.65415335,0.125749966,1017.89292,3008656476 +1,3492,1106,128,2.73045588,0.125590768,1019.18319,3008656476 +1,3493,1107,128,2.87065673,0.126367334,1012.92,3008656476 +1,3494,1108,128,2.76933885,0.12649664,1011.88458,3008656476 +1,3495,1109,128,2.32300353,0.126203572,1014.23437,3008656476 +1,3496,1110,128,2.80461097,0.139082617,920.316304,3008656476 +1,3497,1111,128,2.87426639,0.14011996,913.502973,3008656476 +1,3498,1112,128,2.52465415,0.126019748,1015.71382,3008656476 +1,3499,1113,128,2.57907534,0.126945629,1008.30569,3008656476 +1,3500,1114,128,3.42672396,0.126568421,1011.31071,3008656476 +1,3501,1115,128,2.20227909,0.125659867,1018.62276,3008656476 +1,3502,1116,128,2.51888728,0.125757788,1017.82961,3008656476 +1,3503,1117,128,2.29266477,0.126321398,1013.28834,3008656476 +1,3504,1118,128,2.93985415,0.139139208,919.941991,3008656476 +1,3505,1119,128,2.65541053,0.139209276,919.478958,3008656476 +1,3506,1120,128,2.0553472,0.125714517,1018.17994,3008656476 +1,3507,1121,128,2.7601769,0.125293507,1021.60122,3008656476 +1,3508,1122,128,2.6566112,0.125307869,1021.48413,3008656476 +1,3509,1123,128,2.11518073,0.126560499,1011.37401,3008656476 +1,3510,1124,128,1.81551015,0.126353151,1013.0337,3008656476 +1,3511,1125,128,3.1181283,0.127523057,1003.74005,3008656476 +1,3512,1126,128,2.40708113,0.139779316,915.729191,3008656476 +1,3513,1127,128,3.78773594,0.12283128,1042.07984,3008656476 +1,3514,1128,128,3.29063654,0.134924779,948.676744,3008656476 +1,3515,1129,128,2.11081052,0.13130287,974.845409,3008656476 +1,3516,1130,128,3.0504868,0.13385756,956.24035,3008656476 +1,3517,1131,128,2.65559268,0.129988692,984.701038,3008656476 +1,3518,1132,128,2.55919147,0.121823371,1050.70151,3008656476 +1,3519,1133,128,2.56164384,0.130668076,979.581271,3008656476 +1,3520,1134,128,3.58000755,0.141953569,901.703289,3008656476 +1,3521,1135,128,3.22245812,0.119845493,1068.04183,3008656476 +1,3522,1136,128,3.04070807,0.130706502,979.293287,3008656476 +1,3523,1137,128,3.04968596,0.125303629,1021.5187,3008656476 +1,3524,1138,128,2.91601348,0.127150958,1006.67743,3008656476 +1,3525,1139,128,2.66735125,0.125942765,1016.33468,3008656476 +1,3526,1140,128,2.92134643,0.126802541,1009.44349,3008656476 +1,3527,1141,128,2.96070838,0.125791127,1017.55985,3008656476 +1,3528,1142,128,3.0172081,0.12581644,1017.35512,3008656476 +1,3529,1143,128,2.65173697,0.139961041,914.540211,3008656476 +1,3530,1144,128,2.74573517,0.141123619,907.006218,3008656476 +1,3531,1145,128,3.44294453,0.126501923,1011.84233,3008656476 +1,3532,1146,128,3.58625388,0.127095286,1007.11839,3008656476 +1,3533,1147,128,3.29418325,0.12665214,1010.64222,3008656476 +1,3534,1148,128,3.41641402,0.127181983,1006.43186,3008656476 +1,3535,1149,128,3.07926226,0.126464987,1012.13785,3008656476 +1,3536,1150,128,3.28497529,0.125661556,1018.60906,3008656476 +1,3537,1151,128,3.19307446,0.142716059,896.885753,3008656476 +1,3538,1152,128,3.46714425,0.14227928,899.639076,3008656476 +1,3539,1153,128,3.2415967,0.125978259,1016.04833,3008656476 +1,3540,1154,128,3.11364079,0.126713231,1010.15497,3008656476 +1,3541,1155,128,3.26377249,0.127269435,1005.7403,3008656476 +1,3542,1156,128,3.22142172,0.126072366,1015.2899,3008656476 +1,3543,1157,128,3.67041588,0.125966923,1016.13977,3008656476 +1,3544,1158,128,3.13675547,0.189414148,675.767895,3008656476 +1,3545,1159,128,3.37805557,0.13046718,981.08965,3008656476 +1,3546,1160,128,3.40763855,0.133973566,955.412354,3008656476 +1,3547,1161,128,3.41613173,0.129291479,990.011105,3008656476 +1,3548,1162,128,2.71161103,0.128662833,994.848295,3008656476 +1,3549,1163,128,2.8518858,0.128914613,992.905281,3008656476 +1,3550,1164,128,2.99129629,0.130128689,983.641663,3008656476 +1,3551,1165,128,3.66797805,0.131250479,975.234536,3008656476 +1,3552,1166,128,3.2117281,0.13880093,922.184023,3008656476 +1,3553,1167,128,3.53627157,0.16006364,799.681927,3008656476 +1,3554,1168,128,3.00340009,0.134107801,954.456035,3008656476 +1,3555,1169,128,3.61521935,0.128944856,992.672403,3008656476 +1,3556,1170,128,3.03620577,0.130237053,982.823222,3008656476 +1,3557,1171,128,3.48034525,0.129179277,990.871005,3008656476 +1,3558,1172,128,3.08038449,0.130469814,981.069843,3008656476 +1,3559,1173,128,3.23484111,0.129804783,986.096175,3008656476 +1,3560,1174,128,3.58371139,0.138873339,921.703193,3008656476 +1,3561,1175,128,3.66416073,0.13788819,928.288347,3008656476 +1,3562,1176,128,3.45285296,0.126569596,1011.30132,3008656476 +1,3563,1177,128,3.05507636,0.13078924,978.673781,3008656476 +1,3564,1178,128,3.02208424,0.126274069,1013.66813,3008656476 +1,3565,1179,128,3.29549098,0.127009314,1007.80011,3008656476 +1,3566,1180,128,3.65031242,0.126109118,1014.99401,3008656476 +1,3567,1181,128,3.16709638,0.125223624,1022.17134,3008656476 +1,3568,1182,128,3.50556922,0.126425102,1012.45716,3008656476 +1,3569,1183,128,2.52113128,0.133464273,959.058159,3008656476 +1,3570,1184,128,2.70744205,0.134610236,950.893512,3008656476 +1,3571,1185,128,3.71445513,0.126999698,1007.87641,3008656476 +1,3572,1186,128,3.50029325,0.126639877,1010.74008,3008656476 +1,3573,1187,128,3.46620607,0.12688001,1008.82716,3008656476 +1,3574,1188,128,3.38659549,0.125620167,1018.94467,3008656476 +1,3575,1189,128,3.05398321,0.127474276,1004.12416,3008656476 +1,3576,1190,128,2.81767726,0.126268138,1013.71575,3008656476 +1,3577,1191,128,2.31004453,0.138652171,923.173428,3008656476 +1,3578,1192,128,3.01960325,0.143188321,893.927655,3008656476 +1,3579,1193,128,2.74693823,0.125857717,1017.02147,3008656476 +1,3580,1194,128,2.15283275,0.125556834,1019.45865,3008656476 +1,3581,1195,128,2.36636329,0.126641674,1010.72574,3008656476 +1,3582,1196,128,2.24882627,0.125537737,1019.61373,3008656476 +1,3583,1197,128,2.88629055,0.124817763,1025.49507,3008656476 +1,3584,1198,128,2.57020378,0.124806407,1025.58837,3008656476 +1,3585,1199,128,3.58224559,0.141433801,905.01704,3008656476 +1,3586,1200,128,3.20164609,0.14176084,902.929187,3008656476 +1,3587,1201,128,3.68698716,0.126837289,1009.16695,3008656476 +1,3588,1202,128,3.07946873,0.125778636,1017.6609,3008656476 +1,3589,1203,128,3.15462589,0.125841396,1017.15337,3008656476 +1,3590,1204,128,3.08399868,0.127199001,1006.29721,3008656476 +1,3591,1205,128,3.30645466,0.127422361,1004.53326,3008656476 +1,3592,1206,128,3.12132955,0.128480061,996.263537,3008656476 +1,3593,1207,128,3.16322637,0.145531731,879.533275,3008656476 +1,3594,1208,128,3.11408067,0.142957011,895.374065,3008656476 +1,3595,1209,128,2.81754231,0.130546767,980.491535,3008656476 +1,3596,1210,128,3.06782007,0.131628292,972.435318,3008656476 +1,3597,1211,128,3.43610835,0.139142545,919.919928,3008656476 +1,3598,1212,128,3.10003018,0.14341082,892.540744,3008656476 +1,3599,1213,128,2.96955585,0.14308496,894.573406,3008656476 +1,3600,1214,128,3.59504366,0.138739935,922.589448,3008656476 +1,3601,1215,128,3.58391905,0.144403791,886.403322,3008656476 +1,3602,1216,128,3.02195311,0.134467318,951.904165,3008656476 +1,3603,1217,128,3.32252574,0.12997721,984.788026,3008656476 +1,3604,1218,128,3.0020628,0.130379006,981.753151,3008656476 +1,3605,1219,128,3.65309286,0.129500023,988.416813,3008656476 +1,3606,1220,128,2.4310534,0.131976884,969.866814,3008656476 +1,3607,1221,128,2.96431518,0.129553904,988.005734,3008656476 +1,3608,1222,128,2.93664837,0.130039054,984.31968,3008656476 +1,3609,1223,128,2.92014265,0.136170241,939.999805,3008656476 +1,3610,1224,128,3.62873888,0.137625315,930.06145,3008656476 +1,3611,1225,128,3.66800714,0.127178016,1006.46326,3008656476 +1,3612,1226,128,3.13580728,0.127996707,1000.02573,3008656476 +1,3613,1227,128,3.30821157,0.127344452,1005.14783,3008656476 +1,3614,1228,128,3.49666667,0.126434577,1012.38129,3008656476 +1,3615,1229,128,3.15978074,0.126042668,1015.52912,3008656476 +1,3616,1230,128,3.07285261,0.125728014,1018.07064,3008656476 +1,3617,1231,128,2.5787189,0.141969695,901.600866,3008656476 +1,3618,1232,128,3.49409747,0.148423076,862.399591,3008656476 +1,3619,1233,128,3.41254878,0.128456761,996.444243,3008656476 +1,3620,1234,128,2.79139447,0.12999256,984.671738,3008656476 +1,3621,1235,128,3.07294345,0.131174878,975.7966,3008656476 +1,3622,1236,128,3.18960214,0.128101566,999.207145,3008656476 +1,3623,1237,128,3.14822364,0.128259079,997.980034,3008656476 +1,3624,1238,128,2.86883354,0.128158184,998.765713,3008656476 +1,3625,1239,128,3.35206437,0.145034296,882.549876,3008656476 +1,3626,1240,128,3.44464397,0.14407291,888.439055,3008656476 +1,3627,1241,128,2.05069113,0.129870415,985.597836,3008656476 +1,3628,1242,128,2.98581576,0.129167639,990.960282,3008656476 +1,3629,1243,128,2.11224174,0.130019927,984.464481,3008656476 +1,3630,1244,128,3.16789675,0.128579173,995.495592,3008656476 +1,3631,1245,128,2.52458835,0.115625507,1107.02217,3008656476 +1,3632,1246,128,2.70087337,0.127874771,1000.97931,3008656476 +1,3633,1247,128,2.35189867,0.140442085,911.407717,3008656476 +1,3634,1248,128,1.70844126,0.142391027,898.933049,3008656476 +1,3635,1249,128,1.87041855,0.127563458,1003.42216,3008656476 +1,3636,1250,128,2.20277357,0.12695994,1008.19203,3008656476 +1,3637,1251,128,1.84325743,0.126747758,1009.8798,3008656476 +1,3638,1252,128,2.3345716,0.127019569,1007.71874,3008656476 +1,3639,1253,128,2.39964366,0.127511596,1003.83027,3008656476 +1,3640,1254,128,2.23556781,0.126966679,1008.13852,3008656476 +1,3641,1255,128,1.87036991,0.142234522,899.922172,3008656476 +1,3642,1256,128,2.20753884,0.147663912,866.833326,3008656476 +1,3643,1257,128,2.46057844,0.128954229,992.60025,3008656476 +1,3644,1258,128,1.81694078,0.128109138,999.148086,3008656476 +1,3645,1259,128,3.04801631,0.128017829,999.86073,3008656476 +1,3646,1260,128,3.55034781,0.127123624,1006.89389,3008656476 +1,3647,1261,128,3.40803528,0.127531258,1003.67551,3008656476 +1,3648,1262,128,3.74537992,0.126686363,1010.36921,3008656476 +1,3649,1263,128,3.60991693,0.146626021,872.969198,3008656476 +1,3650,1264,128,3.27750301,0.146038552,876.48089,3008656476 +1,3651,1265,128,3.17828989,0.128920101,992.863014,3008656476 +1,3652,1266,128,2.9191618,0.128837579,993.498954,3008656476 +1,3653,1267,128,3.29249954,0.128354699,997.236572,3008656476 +1,3654,1268,128,3.19701886,0.127971763,1000.22065,3008656476 +1,3655,1269,128,3.21393204,0.127539467,1003.61091,3008656476 +1,3656,1270,128,2.31234694,0.127884744,1000.90125,3008656476 +1,3657,1271,128,2.73245406,0.144265698,887.251798,3008656476 +1,3658,1272,128,2.59402704,0.146540275,873.480004,3008656476 +1,3659,1273,128,3.83457685,0.129827845,985.921009,3008656476 +1,3660,1274,128,2.57820082,0.130138493,983.56756,3008656476 +1,3661,1275,128,3.48332119,0.128647554,994.966449,3008656476 +1,3662,1276,128,3.41329789,0.129170957,990.934828,3008656476 +1,3663,1277,128,2.61555433,0.129569259,987.888647,3008656476 +1,3664,1278,128,3.01189971,0.128690117,994.637374,3008656476 +1,3665,1279,128,3.30090666,0.136510109,937.659496,3008656476 +1,3666,1280,128,2.94798326,0.145592259,879.167621,3008656476 +1,3667,1281,128,3.33056498,0.129264253,990.219624,3008656476 +1,3668,1282,128,3.30435205,0.128850396,993.400129,3008656476 +1,3669,1283,128,2.36785936,0.129586235,987.759232,3008656476 +1,3670,1284,128,2.93414807,0.129458522,988.733673,3008656476 +1,3671,1285,128,3.35920668,0.127416064,1004.58291,3008656476 +1,3672,1286,128,2.94612002,0.126979066,1008.04018,3008656476 +1,3673,1287,128,3.21183467,0.139489081,917.634549,3008656476 +1,3674,1288,128,2.47906804,0.146616408,873.026435,3008656476 +1,3675,1289,128,2.90261531,0.128698926,994.569294,3008656476 +1,3676,1290,128,3.06385541,0.128751141,994.165947,3008656476 +1,3677,1291,128,2.9756546,0.129237004,990.428407,3008656476 +1,3678,1292,128,3.25247431,0.128894541,993.0599,3008656476 +1,3679,1293,128,2.61997056,0.12718651,1006.39604,3008656476 +1,3680,1294,128,2.58197236,0.127188128,1006.38324,3008656476 +1,3681,1295,128,2.62929153,0.143209046,893.798287,3008656476 +1,3682,1296,128,2.81793976,0.146019745,876.593778,3008656476 +1,3683,1297,128,3.19426107,0.1307581,978.906852,3008656476 +1,3684,1298,128,3.00465107,0.130120381,983.704467,3008656476 +1,3685,1299,128,3.28028321,0.129414026,989.073626,3008656476 +1,3686,1300,128,2.99914765,0.128259103,997.979847,3008656476 +1,3687,1301,128,3.02066755,0.128511088,996.023005,3008656476 +1,3688,1302,128,2.66005397,0.127567208,1003.39266,3008656476 +1,3689,1303,128,2.76663065,0.136005558,941.138008,3008656476 +1,3690,1304,128,2.98755312,0.146743888,872.268016,3008656476 +1,3691,1305,128,3.28566647,0.128994156,992.293015,3008656476 +1,3692,1306,128,3.03225636,0.129312635,989.849136,3008656476 +1,3693,1307,128,3.2175138,0.128377574,997.058879,3008656476 +1,3694,1308,128,2.33944774,0.128223149,998.259682,3008656476 +1,3695,1309,128,3.13810039,0.127455954,1004.2685,3008656476 +1,3696,1310,128,3.84335923,0.127803473,1001.53773,3008656476 +1,3697,1311,128,2.92670107,0.139629684,916.710518,3008656476 +1,3698,1312,128,2.68064094,0.145019548,882.639629,3008656476 +1,3699,1313,128,3.11390781,0.129810806,986.050422,3008656476 +1,3700,1314,128,2.66457987,0.12911485,991.365439,3008656476 +1,3701,1315,128,2.7475841,0.129512586,988.320934,3008656476 +1,3702,1316,128,3.1076622,0.129695383,986.927962,3008656476 +1,3703,1317,128,2.8719511,0.128367091,997.140303,3008656476 +1,3704,1318,128,2.11650372,0.127624526,1002.94202,3008656476 +1,3705,1319,128,3.02455044,0.137496423,930.933309,3008656476 +1,3706,1320,128,3.33145428,0.143726451,890.580677,3008656476 +1,3707,1321,128,3.07127094,0.127315125,1005.37937,3008656476 +1,3708,1322,128,3.37095165,0.127271552,1005.72357,3008656476 +1,3709,1323,128,2.83513832,0.130498051,980.857561,3008656476 +1,3710,1324,128,1.96503556,0.127391252,1004.77857,3008656476 +1,3711,1325,128,2.56773639,0.126586169,1011.16892,3008656476 +1,3712,1326,128,3.59503984,0.125632944,1018.84105,3008656476 +1,3713,1327,128,3.33857131,0.141775277,902.837242,3008656476 +1,3714,1328,128,3.32508492,0.147930277,865.272496,3008656476 +1,3715,1329,128,2.82867002,0.127856213,1001.1246,3008656476 +1,3716,1330,128,3.03045082,0.127184704,1006.41033,3008656476 +1,3717,1331,128,2.54247212,0.127153126,1006.66027,3008656476 +1,3718,1332,128,3.10629797,0.127127624,1006.86221,3008656476 +1,3719,1333,128,2.71732402,0.126593294,1011.11201,3008656476 +1,3720,1334,128,3.38884377,0.125897048,1016.70374,3008656476 +1,3721,1335,128,2.67143536,0.142928939,895.549921,3008656476 +1,3722,1336,128,3.3165288,0.143431249,892.413619,3008656476 +1,3723,1337,128,2.48543048,0.128572732,995.545463,3008656476 +1,3724,1338,128,2.79797268,0.127184491,1006.41202,3008656476 +1,3725,1339,128,2.71817732,0.127798284,1001.57839,3008656476 +1,3726,1340,128,2.53461456,0.126835323,1009.18259,3008656476 +1,3727,1341,128,2.6968658,0.125233088,1022.0941,3008656476 +1,3728,1342,128,2.90227079,0.126572912,1011.27483,3008656476 +1,3729,1343,128,2.58151293,0.141875945,902.196634,3008656476 +1,3730,1344,128,3.19151783,0.140690628,909.797631,3008656476 +1,3731,1345,128,2.81376839,0.125295813,1021.58242,3008656476 +1,3732,1346,128,3.12366056,0.126040021,1015.55045,3008656476 +1,3733,1347,128,2.64241624,0.127121559,1006.91024,3008656476 +1,3734,1348,128,2.2501483,0.126028227,1015.64549,3008656476 +1,3735,1349,128,3.18399239,0.127012311,1007.77632,3008656476 +1,3736,1350,128,3.01707149,0.125818031,1017.34226,3008656476 +1,3737,1351,128,3.31927443,0.141265653,906.094279,3008656476 +1,3738,1352,128,2.61822939,0.140413666,911.592181,3008656476 +1,3739,1353,128,2.4248929,0.126605744,1011.01258,3008656476 +1,3740,1354,128,3.04661584,0.126855128,1009.02504,3008656476 +1,3741,1355,128,2.5586462,0.127136357,1006.79305,3008656476 +1,3742,1356,128,2.61670208,0.125144526,1022.81741,3008656476 +1,3743,1357,128,2.87246299,0.126034177,1015.59754,3008656476 +1,3744,1358,128,3.23986053,0.126599738,1011.06054,3008656476 +1,3745,1359,128,2.57181239,0.141046168,907.504272,3008656476 +1,3746,1360,128,2.49304438,0.140301038,912.32397,3008656476 +1,3747,1361,128,3.39722276,0.127502089,1003.90512,3008656476 +1,3748,1362,128,3.2865386,0.1264808,1012.01131,3008656476 +1,3749,1363,128,2.71397209,0.126274962,1013.66097,3008656476 +1,3750,1364,128,2.48976278,0.126224592,1014.06547,3008656476 +1,3751,1365,128,2.89208388,0.126352318,1013.04038,3008656476 +1,3752,1366,128,3.3902545,0.126762266,1009.76421,3008656476 +1,3753,1367,128,3.39578867,0.140794525,909.12626,3008656476 +1,3754,1368,128,3.03993487,0.139601943,916.892683,3008656476 +1,3755,1369,128,2.84690547,0.126745148,1009.90059,3008656476 +1,3756,1370,128,2.67419243,0.126056276,1015.41949,3008656476 +1,3757,1371,128,3.24189639,0.126195833,1014.29657,3008656476 +1,3758,1372,128,2.8055191,0.125771745,1017.71666,3008656476 +1,3759,1373,128,3.4830091,0.125430032,1020.48926,3008656476 +1,3760,1374,128,3.7350781,0.12546245,1020.22557,3008656476 +1,3761,1375,128,3.68104649,0.143048125,894.803759,3008656476 +1,3762,1376,128,3.65968251,0.137997282,927.554501,3008656476 +1,3763,1377,128,3.16260028,0.125924246,1016.48415,3008656476 +1,3764,1378,128,2.62179279,0.124981853,1024.14868,3008656476 +1,3765,1379,128,2.85224867,0.125603826,1019.07724,3008656476 +1,3766,1380,128,3.2270925,0.124999687,1024.00256,3008656476 +1,3767,1381,128,2.6134932,0.126169446,1014.50869,3008656476 +1,3768,1382,128,2.94782567,0.125928447,1016.45024,3008656476 +1,3769,1383,128,2.76480985,0.138875048,921.691851,3008656476 +1,3770,1384,128,2.32551026,0.123591561,1035.66942,3008656476 +1,3771,1385,128,3.03876567,0.135694224,943.297336,3008656476 +1,3772,1386,128,2.07132077,0.134493576,951.718319,3008656476 +1,3773,1387,128,2.74899411,0.138659406,923.125258,3008656476 +1,3774,1388,128,3.19777775,0.138879515,921.662205,3008656476 +1,3775,1389,128,2.72809124,0.142953141,895.398304,3008656476 +1,3776,1390,128,2.40448761,0.143195658,893.881852,3008656476 +1,3777,1391,128,2.60840821,0.144806089,883.94073,3008656476 +1,3778,1392,128,2.61311603,0.145620887,878.994783,3008656476 +1,3779,1393,128,2.90781403,0.13276782,964.089039,3008656476 +1,3780,1394,128,3.34931898,0.130586201,980.19545,3008656476 +1,3781,1395,128,2.89455414,0.131124612,976.170667,3008656476 +1,3782,1396,128,2.82956719,0.12947302,988.622958,3008656476 +1,3783,1397,128,3.55263996,0.129267678,990.193388,3008656476 +1,3784,1398,128,2.69895148,0.128256682,997.998685,3008656476 +1,3785,1399,128,3.20896363,0.142007084,901.363484,3008656476 +1,3786,1400,128,3.40417838,0.142858125,895.99384,3008656476 +1,3787,1401,128,3.51696444,0.12781255,1001.4666,3008656476 +1,3788,1402,128,3.00073934,0.127800493,1001.56108,3008656476 +1,3789,1403,128,3.23258877,0.126795384,1009.50047,3008656476 +1,3790,1404,128,2.41718078,0.128472465,996.322442,3008656476 +1,3791,1405,128,2.94567752,0.125802014,1017.47179,3008656476 +1,3792,1406,128,3.57234311,0.125707113,1018.23991,3008656476 +1,3793,1407,128,3.38653612,0.138737842,922.603366,3008656476 +1,3794,1408,128,3.62702584,0.139565911,917.129398,3008656476 +1,3795,1409,128,3.71309185,0.12579605,1017.52003,3008656476 +1,3796,1410,128,3.27305532,0.126920844,1008.50259,3008656476 +1,3797,1411,128,3.88765883,0.125354781,1021.10186,3008656476 +1,3798,1412,128,3.30146122,0.126287659,1013.55905,3008656476 +1,3799,1413,128,3.67416763,0.125886138,1016.79186,3008656476 +1,3800,1414,128,3.43823028,0.126781961,1009.60735,3008656476 +1,3801,1415,128,3.51728058,0.140239517,912.724193,3008656476 +1,3802,1416,128,3.35951638,0.139269762,919.07962,3008656476 +1,3803,1417,128,3.58575416,0.127004735,1007.83644,3008656476 +1,3804,1418,128,3.50582552,0.126625905,1010.85161,3008656476 +1,3805,1419,128,3.70993638,0.126162581,1014.5639,3008656476 +1,3806,1420,128,3.55313706,0.125771499,1017.71865,3008656476 +1,3807,1421,128,3.27275944,0.125208619,1022.29384,3008656476 +1,3808,1422,128,3.95671844,0.127063538,1007.37003,3008656476 +1,3809,1423,128,3.26241779,0.139312626,918.796836,3008656476 +1,3810,1424,128,3.59769297,0.135574218,944.132313,3008656476 +1,3811,1425,128,4.26608658,0.123036142,1040.34471,3008656476 +1,3812,1426,128,3.21400261,0.12562232,1018.92721,3008656476 +1,3813,1427,128,3.483706,0.124722992,1026.27429,3008656476 +1,3814,1428,128,3.25931144,0.125007352,1023.93978,3008656476 +1,3815,1429,128,4.05600262,0.124633377,1027.01221,3008656476 +1,3816,1430,128,3.62033629,0.125947313,1016.29798,3008656476 +1,3817,1431,128,3.71314907,0.125826695,1017.27221,3008656476 +1,3818,1432,128,4.01705742,0.140987906,907.87929,3008656476 +1,3819,1433,128,2.95778799,0.142659962,897.238428,3008656476 +1,3820,1434,128,3.16813564,0.128294439,997.704975,3008656476 +1,3821,1435,128,3.67458558,0.128883217,993.147153,3008656476 +1,3822,1436,128,2.69431829,0.129888841,985.458019,3008656476 +1,3823,1437,128,3.67838335,0.128667607,994.811382,3008656476 +1,3824,1438,128,3.43420911,0.128853414,993.376862,3008656476 +1,3825,1439,128,3.3747921,0.129478009,988.584865,3008656476 +1,3826,1440,128,3.76780677,0.143610953,891.296919,3008656476 +1,3827,1441,128,3.92363262,0.146001259,876.704769,3008656476 +1,3828,1442,128,3.67801356,0.130317909,982.213427,3008656476 +1,3829,1443,128,2.7809999,0.13231352,967.39925,3008656476 +1,3830,1444,128,3.89671373,0.129625655,987.458848,3008656476 +1,3831,1445,128,3.61171818,0.129922327,985.204029,3008656476 +1,3832,1446,128,3.87223172,0.129290372,990.019582,3008656476 +1,3833,1447,128,3.36102295,0.129146913,991.119315,3008656476 +1,3834,1448,128,2.96324801,0.135729492,943.052229,3008656476 +1,3835,1449,128,3.88854671,0.14269168,897.038986,3008656476 +1,3836,1450,128,2.85335827,0.130128246,983.645011,3008656476 +1,3837,1451,128,3.27550435,0.129453004,988.775819,3008656476 +1,3838,1452,128,3.16638398,0.13042478,981.408594,3008656476 +1,3839,1453,128,3.3885169,0.129913403,985.271704,3008656476 +1,3840,1454,128,3.26511002,0.128978676,992.41211,3008656476 +1,3841,1455,128,2.38971376,0.131377575,974.291084,3008656476 +1,3842,1456,128,3.62106776,0.133903024,955.915678,3008656476 +1,3843,1457,128,3.4816227,0.143326257,893.067346,3008656476 +1,3844,1458,128,3.74862337,0.12895643,992.583309,3008656476 +1,3845,1459,128,3.67014456,0.128367428,997.137685,3008656476 +1,3846,1460,128,3.15986443,0.13096794,977.338423,3008656476 +1,3847,1461,128,2.28903627,0.128876414,993.199578,3008656476 +1,3848,1462,128,2.55142045,0.12673339,1009.99429,3008656476 +1,3849,1463,128,3.37346387,0.127370241,1004.94432,3008656476 +1,3850,1464,128,2.4023447,0.140192374,913.031118,3008656476 +1,3851,1465,128,3.1580205,0.144574978,885.353757,3008656476 +1,3852,1466,128,3.96491885,0.129860058,985.676443,3008656476 +1,3853,1467,128,3.38862753,0.129388593,989.268042,3008656476 +1,3854,1468,128,2.92113853,0.128199536,998.443551,3008656476 +1,3855,1469,128,3.9639349,0.128710883,994.476901,3008656476 +1,3856,1470,128,2.91664124,0.129180499,990.861632,3008656476 +1,3857,1471,128,4.0044179,0.128473634,996.313376,3008656476 +1,3858,1472,128,3.51240659,0.139636865,916.663375,3008656476 +1,3859,1473,128,3.80147743,0.144237719,887.423906,3008656476 +1,3860,1474,128,3.0919888,0.130489367,980.922836,3008656476 +1,3861,1475,128,3.09201312,0.128418167,996.743708,3008656476 +1,3862,1476,128,3.22298908,0.132063279,969.232333,3008656476 +1,3863,1477,128,3.56451559,0.128333912,997.3981,3008656476 +1,3864,1478,128,3.32427454,0.128285807,997.772107,3008656476 +1,3865,1479,128,3.65124607,0.127667292,1002.60606,3008656476 +1,3866,1480,128,3.29457426,0.136542087,937.439897,3008656476 +1,3867,1481,128,3.80065489,0.145694779,878.548984,3008656476 +1,3868,1482,128,3.16365385,0.128696841,994.585407,3008656476 +1,3869,1483,128,2.91756892,0.128250675,998.045429,3008656476 +1,3870,1484,128,3.17203712,0.12858298,995.466118,3008656476 +1,3871,1485,128,3.47600722,0.128403741,996.855691,3008656476 +1,3872,1486,128,3.70188737,0.128247484,998.070262,3008656476 +1,3873,1487,128,3.67977953,0.127327744,1005.27973,3008656476 +1,3874,1488,128,3.19254255,0.140207673,912.931491,3008656476 +1,3875,1489,128,2.98034859,0.144595072,885.230722,3008656476 +1,3876,1490,128,3.36426115,0.130364161,981.864947,3008656476 +1,3877,1491,128,3.34920192,0.129727368,986.684629,3008656476 +1,3878,1492,128,3.44640446,0.128132719,998.964207,3008656476 +1,3879,1493,128,3.1992383,0.129252979,990.305995,3008656476 +1,3880,1494,128,2.422472,0.128540835,995.792504,3008656476 +1,3881,1495,128,2.99126792,0.128225941,998.237946,3008656476 +1,3882,1496,128,3.20863652,0.138998305,920.874539,3008656476 +1,3883,1497,128,3.16703486,0.148135416,864.07426,3008656476 +1,3884,1498,128,3.29291558,0.129414849,989.067336,3008656476 +1,3885,1499,128,2.95158172,0.130335258,982.082684,3008656476 +1,3886,1500,128,3.45936871,0.1295095,988.344484,3008656476 +1,3887,1501,128,3.85313606,0.12908374,991.604365,3008656476 +1,3888,1502,128,3.04886723,0.128914127,992.909024,3008656476 +1,3889,1503,128,3.35210967,0.128312498,997.564555,3008656476 +1,3890,1504,128,3.13216734,0.135737263,942.998239,3008656476 +1,3891,1505,128,3.48572636,0.145595179,879.149989,3008656476 +1,3892,1506,128,2.82061744,0.130023461,984.437724,3008656476 +1,3893,1507,128,3.31240177,0.129567053,987.905467,3008656476 +1,3894,1508,128,3.07746649,0.129181379,990.854882,3008656476 +1,3895,1509,128,3.59542489,0.128908084,992.95557,3008656476 +1,3896,1510,128,4.050488,0.128595954,995.365686,3008656476 +1,3897,1511,128,2.99097347,0.127666063,1002.61571,3008656476 +1,3898,1512,128,3.35563517,0.138328281,925.335001,3008656476 +1,3899,1513,128,3.62410045,0.147841676,865.791051,3008656476 +1,3900,1514,128,4.12158871,0.129418463,989.039717,3008656476 +1,3901,1515,128,3.15407562,0.129791463,986.197374,3008656476 +1,3902,1516,128,3.72790504,0.129743116,986.564867,3008656476 +1,3903,1517,128,3.76060319,0.12931456,989.834401,3008656476 +1,3904,1518,128,3.75323772,0.128837646,993.498438,3008656476 +1,3905,1519,128,3.03480029,0.128974517,992.444112,3008656476 +1,3906,1520,128,3.62835097,0.131095329,976.388716,3008656476 +1,3907,1521,128,2.96452093,0.147887709,865.521556,3008656476 +1,3908,1522,128,3.81997275,0.131266989,975.111877,3008656476 +1,3909,1523,128,4.07227421,0.128059628,999.534373,3008656476 +1,3910,1524,128,3.8146677,0.129483593,988.542232,3008656476 +1,3911,1525,128,3.14685154,0.130769553,978.821117,3008656476 +1,3912,1526,128,2.59839201,0.127929046,1000.55464,3008656476 +1,3913,1527,128,2.5293355,0.126959947,1008.19198,3008656476 +1,3914,1528,128,3.19479942,0.133577024,958.248628,3008656476 +1,3915,1529,128,3.90871,0.145945749,877.038221,3008656476 +1,3916,1530,128,3.85361576,0.127415722,1004.5856,3008656476 +1,3917,1531,128,4.40658045,0.126352196,1013.04136,3008656476 +1,3918,1532,128,4.21787262,0.127089216,1007.16649,3008656476 +1,3919,1533,128,3.50745177,0.126104828,1015.02854,3008656476 +1,3920,1534,128,3.55957818,0.125654327,1018.66767,3008656476 +1,3921,1535,128,2.81594682,0.125636628,1018.81117,3008656476 +1,3922,1536,128,3.37997437,0.144585544,885.289058,3008656476 +1,3923,1537,128,3.26842284,0.142989583,895.170105,3008656476 +1,3924,1538,128,3.54989791,0.12775781,1001.8957,3008656476 +1,3925,1539,128,3.06848288,0.126961789,1008.17735,3008656476 +1,3926,1540,128,4.0154829,0.12776081,1001.87217,3008656476 +1,3927,1541,128,3.77870727,0.126240783,1013.93541,3008656476 +1,3928,1542,128,3.95201325,0.126868717,1008.91696,3008656476 +1,3929,1543,128,3.4899137,0.126227472,1014.04233,3008656476 +1,3930,1544,128,4.11750793,0.145075295,882.300463,3008656476 +1,3931,1545,128,3.58532834,0.141357725,905.504103,3008656476 +1,3932,1546,128,3.0484736,0.126363973,1012.94694,3008656476 +1,3933,1547,128,3.5694561,0.126997106,1007.89698,3008656476 +1,3934,1548,128,3.45440531,0.129952156,984.977887,3008656476 +1,3935,1549,128,3.84833336,0.126744359,1009.90688,3008656476 +1,3936,1550,128,3.45833468,0.126414484,1012.5422,3008656476 +1,3937,1551,128,3.12239408,0.127190335,1006.36577,3008656476 +1,3938,1552,128,3.71235323,0.140122997,913.483174,3008656476 +1,3939,1553,128,4.41239119,0.140366888,911.895974,3008656476 +1,3940,1554,128,4.02263451,0.126537127,1011.56082,3008656476 +1,3941,1555,128,3.2384429,0.126699385,1010.26536,3008656476 +1,3942,1556,128,3.66622829,0.125874436,1016.88638,3008656476 +1,3943,1557,128,3.84262753,0.126743817,1009.9112,3008656476 +1,3944,1558,128,3.46014047,0.125401107,1020.72464,3008656476 +1,3945,1559,128,3.21695065,0.125207757,1022.30088,3008656476 +1,3946,1560,128,3.25761509,0.138891256,921.584293,3008656476 +1,3947,1561,128,3.82305908,0.138884791,921.627192,3008656476 +1,3948,1562,128,4.12649488,0.12492541,1024.61141,3008656476 +1,3949,1563,128,4.23005295,0.125639694,1018.78631,3008656476 +1,3950,1564,128,3.67582321,0.125139099,1022.86177,3008656476 +1,3951,1565,128,3.59218144,0.126102298,1015.04891,3008656476 +1,3952,1566,128,2.77712822,0.126538458,1011.55018,3008656476 +1,3953,1567,128,2.50348568,0.126336658,1013.16595,3008656476 +1,3954,1568,128,2.03689694,0.139140189,919.935505,3008656476 +1,3955,1569,128,2.90505528,0.139040796,920.593119,3008656476 +1,3956,1570,128,3.27999115,0.126915579,1008.54443,3008656476 +1,3957,1571,128,3.44779372,0.12654427,1011.50372,3008656476 +1,3958,1572,128,2.58194613,0.126277827,1013.63797,3008656476 +1,3959,1573,128,3.12864542,0.125876054,1016.87331,3008656476 +1,3960,1574,128,3.79552937,0.125898873,1016.68901,3008656476 +1,3961,1575,128,3.7959342,0.125213096,1022.25729,3008656476 +1,3962,1576,128,3.50234938,0.139447214,917.910056,3008656476 +1,3963,1577,128,3.49079657,0.140502897,911.013244,3008656476 +1,3964,1578,128,3.15492702,0.126365057,1012.93825,3008656476 +1,3965,1579,128,3.44485331,0.12465653,1026.82146,3008656476 +1,3966,1580,128,3.79656339,0.124878371,1024.99736,3008656476 +1,3967,1581,128,3.24821234,0.124949826,1024.41119,3008656476 +1,3968,1582,128,3.3100791,0.124347255,1029.37536,3008656476 +1,3969,1583,128,3.26511812,0.125595606,1019.14393,3008656476 +1,3970,1584,128,3.76615882,0.125895501,1016.71624,3008656476 +1,3971,1585,128,3.77028012,0.131693768,971.951839,3008656476 +1,3972,1586,128,4.01166105,0.141569005,904.152713,3008656476 +1,3973,1587,128,3.20403957,0.130389306,981.675598,3008656476 +1,3974,1588,128,3.26982403,0.130432807,981.348197,3008656476 +1,3975,1589,128,3.56852698,0.141117183,907.047585,3008656476 +1,3976,1590,128,3.05624914,0.138233583,925.968909,3008656476 +1,3977,1591,128,2.94192839,0.142246258,899.847924,3008656476 +1,3978,1592,128,3.38804364,0.14487809,883.501432,3008656476 +1,3979,1593,128,3.78877854,0.142956768,895.375587,3008656476 +1,3980,1594,128,3.74404979,0.130349338,981.976602,3008656476 +1,3981,1595,128,3.23582673,0.129434778,988.91505,3008656476 +1,3982,1596,128,3.18357682,0.129919978,985.221842,3008656476 +1,3983,1597,128,3.36734796,0.128690096,994.637536,3008656476 +1,3984,1598,128,3.22968125,0.12885148,993.391772,3008656476 +1,3985,1599,128,3.32754016,0.12919148,990.77741,3008656476 +1,3986,1600,128,2.61611295,0.14364127,891.108802,3008656476 +1,3987,1601,128,2.95805883,0.141363927,905.464376,3008656476 +1,3988,1602,128,3.10156178,0.128663407,994.843856,3008656476 +1,3989,1603,128,3.15336275,0.12792758,1000.5661,3008656476 +1,3990,1604,128,2.69177151,0.127325656,1005.29621,3008656476 +1,3991,1605,128,2.32232881,0.128347579,997.291893,3008656476 +1,3992,1606,128,2.18883443,0.127169351,1006.53183,3008656476 +1,3993,1607,128,3.44677877,0.127463754,1004.20705,3008656476 +1,3994,1608,128,3.28518605,0.13881659,922.079991,3008656476 +1,3995,1609,128,3.29988146,0.139651142,916.569662,3008656476 +1,3996,1610,128,3.4029789,0.125862152,1016.98563,3008656476 +1,3997,1611,128,3.71343446,0.125825736,1017.27996,3008656476 +1,3998,1612,128,3.74543571,0.143523702,891.838757,3008656476 +1,3999,1613,128,3.14402342,0.162740526,786.52812,3008656476 +1,4000,1614,128,2.95594668,0.125359224,1021.06567,3008656476 +1,4001,1615,128,2.89812207,0.126027516,1015.65122,3008656476 +1,4002,1616,128,3.03704,0.138829089,921.996974,3008656476 +1,4003,1617,128,3.35867143,0.140996533,907.823741,3008656476 +1,4004,1618,128,2.21063972,0.125383633,1020.86689,3008656476 +1,4005,1619,128,3.52124834,0.126203553,1014.23452,3008656476 +1,4006,1620,128,4.12456512,0.126293302,1013.51376,3008656476 +1,4007,1621,128,3.66547036,0.125820375,1017.32331,3008656476 +1,4008,1622,128,3.16289949,0.126043541,1015.52209,3008656476 +1,4009,1623,128,3.61576295,0.126435716,1012.37217,3008656476 +1,4010,1624,128,3.38141203,0.140698769,909.744989,3008656476 +1,4011,1625,128,2.99340224,0.140212671,912.898949,3008656476 +1,4012,1626,128,3.58192658,0.126555889,1011.41086,3008656476 +1,4013,1627,128,3.5505352,0.12585337,1017.0566,3008656476 +1,4014,1628,128,3.33622575,0.125635021,1018.8242,3008656476 +1,4015,1629,128,2.95628119,0.125106094,1023.13161,3008656476 +1,4016,1630,128,3.41902757,0.125698196,1018.31215,3008656476 +1,4017,1631,128,3.26089716,0.12663579,1010.7727,3008656476 +1,4018,1632,128,3.53559875,0.13984037,915.329386,3008656476 +1,4019,1633,128,3.24125671,0.137391936,931.641286,3008656476 +1,4020,1634,128,3.35085845,0.125721846,1018.12059,3008656476 +1,4021,1635,128,3.11109829,0.125682325,1018.44074,3008656476 +1,4022,1636,128,2.99304175,0.125795221,1017.52673,3008656476 +1,4023,1637,128,3.25397086,0.126118967,1014.91475,3008656476 +1,4024,1638,128,3.78626418,0.126619126,1010.90573,3008656476 +1,4025,1639,128,3.93560815,0.126641405,1010.72789,3008656476 +1,4026,1640,128,3.23600006,0.127217327,1006.15225,3008656476 +1,4027,1641,128,2.35689473,0.137473766,931.086735,3008656476 +1,4028,1642,128,3.59590626,0.145045479,882.481832,3008656476 +1,4029,1643,128,2.76744866,0.143100443,894.476616,3008656476 +1,4030,1644,128,2.88209987,0.143308167,893.18008,3008656476 +1,4031,1645,128,2.23169851,0.140867389,908.656013,3008656476 +1,4032,1646,128,3.82655072,0.12946928,988.651516,3008656476 +1,4033,1647,128,3.2472508,0.130467791,981.085056,3008656476 +1,4034,1648,128,2.77335429,0.144674364,884.745552,3008656476 +1,4035,1649,128,2.66359162,0.144838599,883.742323,3008656476 +1,4036,1650,128,2.88293028,0.130795465,978.627202,3008656476 +1,4037,1651,128,3.0962224,0.129185231,990.825337,3008656476 +1,4038,1652,128,3.41728902,0.12914703,991.118418,3008656476 +1,4039,1653,128,2.64133573,0.128201123,998.431192,3008656476 +1,4040,1654,128,2.78921151,0.128334067,997.396895,3008656476 +1,4041,1655,128,2.86893177,0.12765881,1002.67267,3008656476 +1,4042,1656,128,3.39283848,0.14305674,894.749873,3008656476 +1,4043,1657,128,3.44659281,0.141602352,903.939788,3008656476 +1,4044,1658,128,3.64037418,0.127322868,1005.31823,3008656476 +1,4045,1659,128,3.38392925,0.128127312,999.006363,3008656476 +1,4046,1660,128,2.50505114,0.12610909,1014.99424,3008656476 +1,4047,1661,128,2.73206544,0.126884172,1008.79407,3008656476 +1,4048,1662,128,3.10750675,0.125931371,1016.42664,3008656476 +1,4049,1663,128,3.46842265,0.125917912,1016.53528,3008656476 +1,4050,1664,128,3.60854101,0.138213785,926.101546,3008656476 +1,4051,1665,128,3.24203801,0.140184177,913.084506,3008656476 +1,4052,1666,128,3.50337887,0.126681802,1010.40558,3008656476 +1,4053,1667,128,3.54407859,0.12648219,1012.00019,3008656476 +1,4054,1668,128,3.72724199,0.126414715,1012.54035,3008656476 +1,4055,1669,128,3.46913648,0.126159417,1014.58934,3008656476 +1,4056,1670,128,3.5254972,0.126997774,1007.89168,3008656476 +1,4057,1671,128,2.50080895,0.126670549,1010.49534,3008656476 +1,4058,1672,128,3.20383406,0.138655183,923.153374,3008656476 +1,4059,1673,128,3.27113414,0.139946972,914.632151,3008656476 +1,4060,1674,128,3.50609207,0.126743043,1009.91736,3008656476 +1,4061,1675,128,3.21764445,0.126336703,1013.16559,3008656476 +1,4062,1676,128,3.15744686,0.126403627,1012.62917,3008656476 +1,4063,1677,128,3.9887681,0.127268816,1005.74519,3008656476 +1,4064,1678,128,3.75345111,0.126216234,1014.13262,3008656476 +1,4065,1679,128,3.70451641,0.125356727,1021.08601,3008656476 +1,4066,1680,128,3.49229789,0.126210662,1014.17739,3008656476 +1,4067,1681,128,3.87054586,0.131873755,970.625277,3008656476 +1,4068,1682,128,3.64588475,0.134813272,949.461415,3008656476 +1,4069,1683,128,3.53556538,0.125927807,1016.4554,3008656476 +1,4070,1684,128,3.23344541,0.126997636,1007.89278,3008656476 +1,4071,1685,128,2.62757564,0.127005618,1007.82943,3008656476 +1,4072,1686,128,3.66768694,0.12759023,1003.21161,3008656476 +1,4073,1687,128,3.04710579,0.128552136,995.704964,3008656476 +1,4074,1688,128,3.03317904,0.129180357,990.862721,3008656476 +1,4075,1689,128,3.38269424,0.143032065,894.90423,3008656476 +1,4076,1690,128,3.52038765,0.144401025,886.420301,3008656476 +1,4077,1691,128,3.50413108,0.130618709,979.951501,3008656476 +1,4078,1692,128,3.30873084,0.131119795,976.206529,3008656476 +1,4079,1693,128,3.55184412,0.139579144,917.042449,3008656476 +1,4080,1694,128,3.56037283,0.143426922,892.440542,3008656476 +1,4081,1695,128,3.68819547,0.143162919,894.086268,3008656476 +1,4082,1696,128,3.5776186,0.151918622,842.556352,3008656476 +1,4083,1697,128,3.58180642,0.152538384,839.133054,3008656476 +1,4084,1698,128,3.83024049,0.134002419,955.206637,3008656476 +1,4085,1699,128,3.78111696,0.143485577,892.075724,3008656476 +1,4086,1700,128,3.62118554,0.143854066,889.79063,3008656476 +1,4087,1701,128,3.4831531,0.143867391,889.708217,3008656476 +1,4088,1702,128,2.26676702,0.143387838,892.683799,3008656476 +1,4089,1703,128,2.58291197,0.154158656,830.313414,3008656476 +1,4090,1704,128,2.38195586,0.153030714,836.433397,3008656476 +1,4091,1705,128,2.7667892,0.139055844,920.493496,3008656476 +1,4092,1706,128,3.07848144,0.143274266,893.39142,3008656476 +1,4093,1707,128,3.22764444,0.143284845,893.32546,3008656476 +1,4094,1708,128,3.95652294,0.13401374,955.125945,3008656476 +1,4095,1709,128,3.18173957,0.130088571,983.945008,3008656476 +1,4096,1710,128,3.63774085,0.132144829,968.634195,3008656476 +1,4097,1711,128,3.30921936,0.142785066,896.452294,3008656476 +1,4098,1712,128,2.82717586,0.144869438,883.554197,3008656476 +1,4099,1713,128,3.14656734,0.129165943,990.973294,3008656476 +1,4100,1714,128,3.46470046,0.128707179,994.50552,3008656476 +1,4101,1715,128,2.93632603,0.128039006,999.695358,3008656476 +1,4102,1716,128,3.09228683,0.128262517,997.953284,3008656476 +1,4103,1717,128,3.85805917,0.127717167,1002.21453,3008656476 +1,4104,1718,128,2.73450017,0.128020364,999.840932,3008656476 +1,4105,1719,128,3.38475204,0.141131835,906.953417,3008656476 +1,4106,1720,128,4.00738239,0.140833062,908.877491,3008656476 +1,4107,1721,128,3.26941538,0.127619913,1002.97827,3008656476 +1,4108,1722,128,3.47664285,0.12674146,1009.92998,3008656476 +1,4109,1723,128,3.41784143,0.126565277,1011.33583,3008656476 +1,4110,1724,128,3.91496229,0.125389873,1020.81609,3008656476 +1,4111,1725,128,2.92696548,0.126579804,1011.21977,3008656476 +1,4112,1726,128,4.08412647,0.125799133,1017.49509,3008656476 +1,4113,1727,128,3.52040124,0.141306391,905.833056,3008656476 +1,4114,1728,128,3.29268146,0.137689437,929.62832,3008656476 +1,4115,1729,128,3.66020632,0.125708022,1018.23255,3008656476 +1,4116,1730,128,2.89610624,0.126325806,1013.25298,3008656476 +1,4117,1731,128,3.05907369,0.125941586,1016.3442,3008656476 +1,4118,1732,128,3.50956035,0.126246919,1013.88613,3008656476 +1,4119,1733,128,2.88177633,0.126142426,1014.72601,3008656476 +1,4120,1734,128,3.51385665,0.126196147,1014.29404,3008656476 +1,4121,1735,128,2.60346913,0.1405871,910.467603,3008656476 +1,4122,1736,128,3.14218569,0.140160712,913.23737,3008656476 +1,4123,1737,128,2.12831378,0.126648304,1010.67283,3008656476 +1,4124,1738,128,2.70243359,0.126823791,1009.27436,3008656476 +1,4125,1739,128,2.11886907,0.125814498,1017.37083,3008656476 +1,4126,1740,128,2.29666042,0.125847619,1017.10307,3008656476 +1,4127,1741,128,2.68939638,0.125612204,1019.00927,3008656476 +1,4128,1742,128,2.85256481,0.125652086,1018.68583,3008656476 +1,4129,1743,128,3.15811419,0.140754933,909.381982,3008656476 +1,4130,1744,128,3.73831701,0.140095585,913.661912,3008656476 +1,4131,1745,128,2.13859391,0.125012939,1023.89401,3008656476 +1,4132,1746,128,3.77180505,0.125217464,1022.22163,3008656476 +1,4133,1747,128,4.0951457,0.125650987,1018.69474,3008656476 +1,4134,1748,128,3.17529821,0.124727161,1026.23999,3008656476 +1,4135,1749,128,3.79291701,0.125309988,1021.46686,3008656476 +1,4136,1750,128,2.96255088,0.125324451,1021.34898,3008656476 +1,4137,1751,128,3.67902422,0.140007054,914.23965,3008656476 +1,4138,1752,128,3.07777047,0.123092195,1039.87097,3008656476 +1,4139,1753,128,3.82150674,0.133612586,957.993583,3008656476 +1,4140,1754,128,3.54383802,0.135216903,946.627213,3008656476 +1,4141,1755,128,3.90143704,0.13855159,923.843602,3008656476 +1,4142,1756,128,3.08386898,0.131204466,975.576548,3008656476 +1,4143,1757,128,2.93213582,0.138738484,922.599097,3008656476 +1,4144,1758,128,2.89698577,0.143161975,894.092164,3008656476 +1,4145,1759,128,3.38303995,0.150834205,848.61388,3008656476 +1,4146,1760,128,3.69494486,0.146606604,873.084817,3008656476 +1,4147,1761,128,2.80502129,0.12918947,990.792825,3008656476 +1,4148,1762,128,4.03154469,0.13158592,972.748452,3008656476 +1,4149,1763,128,3.0692606,0.12911302,991.379491,3008656476 +1,4150,1764,128,3.15412998,0.129878021,985.540117,3008656476 +1,4151,1765,128,2.35274363,0.128857051,993.348823,3008656476 +1,4152,1766,128,3.47147346,0.129127352,991.269456,3008656476 +1,4153,1767,128,3.6930809,0.141570738,904.141645,3008656476 +1,4154,1768,128,3.23108912,0.142519163,898.124837,3008656476 +1,4155,1769,128,2.8240633,0.127889303,1000.86557,3008656476 +1,4156,1770,128,2.85781145,0.126798025,1009.47945,3008656476 +1,4157,1771,128,2.83063507,0.126271803,1013.68633,3008656476 +1,4158,1772,128,2.50865364,0.126454959,1012.21811,3008656476 +1,4159,1773,128,2.67737913,0.126784286,1009.58884,3008656476 +1,4160,1774,128,2.48186302,0.126965008,1008.15179,3008656476 +1,4161,1775,128,3.03873348,0.140242512,912.704701,3008656476 +1,4162,1776,128,3.00262642,0.139749165,915.926761,3008656476 +1,4163,1777,128,2.7836175,0.12569389,1018.34703,3008656476 +1,4164,1778,128,2.37228417,0.12682693,1009.24938,3008656476 +1,4165,1779,128,3.14662838,0.12515168,1022.75894,3008656476 +1,4166,1780,128,2.66047287,0.126347648,1013.07782,3008656476 +1,4167,1781,128,1.88624775,0.125908264,1016.61317,3008656476 +1,4168,1782,128,2.20972657,0.126037458,1015.5711,3008656476 +1,4169,1783,128,2.56748223,0.140228564,912.795484,3008656476 +1,4170,1784,128,2.85421443,0.141062226,907.400965,3008656476 +1,4171,1785,128,2.89654684,0.127140245,1006.76226,3008656476 +1,4172,1786,128,2.17647696,0.126642109,1010.72227,3008656476 +1,4173,1787,128,2.29964828,0.126774638,1009.66567,3008656476 +1,4174,1788,128,2.12303114,0.126953157,1008.2459,3008656476 +1,4175,1789,128,2.63761258,0.126657576,1010.59884,3008656476 +1,4176,1790,128,2.15540743,0.125800292,1017.48571,3008656476 +1,4177,1791,128,3.43369246,0.138487087,924.2739,3008656476 +1,4178,1792,128,3.04924297,0.136134881,940.243963,3008656476 +1,4179,1793,128,2.59521651,0.124182347,1030.74232,3008656476 +1,4180,1794,128,3.01730084,0.124524893,1027.90693,3008656476 +1,4181,1795,128,1.93590498,0.124653585,1026.84572,3008656476 +1,4182,1796,128,3.04404974,0.125050487,1023.58658,3008656476 +1,4183,1797,128,3.31146836,0.123673243,1034.98539,3008656476 +1,4184,1798,128,3.1611259,0.124936213,1024.52281,3008656476 +1,4185,1799,128,2.53498459,0.125700925,1018.29004,3008656476 +1,4186,1800,128,2.51503634,0.140330721,912.130994,3008656476 +1,4187,1801,128,2.87636709,0.142038544,901.163842,3008656476 +1,4188,1802,128,2.29335093,0.126997691,1007.89234,3008656476 +1,4189,1803,128,3.17842889,0.128439047,996.58167,3008656476 +1,4190,1804,128,2.5211699,0.127883145,1000.91376,3008656476 +1,4191,1805,128,3.47405601,0.128948047,992.647837,3008656476 +1,4192,1806,128,2.95115185,0.130014514,984.505468,3008656476 +1,4193,1807,128,3.36519384,0.128718848,994.415363,3008656476 +1,4194,1808,128,3.12228107,0.145065597,882.359447,3008656476 +1,4195,1809,128,4.15072727,0.145722977,878.378981,3008656476 +1,4196,1810,128,3.03999186,0.139225907,919.369123,3008656476 +1,4197,1811,128,2.82358098,0.135614268,943.853489,3008656476 +1,4198,1812,128,2.46742988,0.143506482,891.945773,3008656476 +1,4199,1813,128,2.33423185,0.143520818,891.856678,3008656476 +1,4200,1814,128,3.48874712,0.129920483,985.218012,3008656476 +1,4201,1815,128,3.59807253,0.144811156,883.9098,3008656476 +1,4202,1816,128,2.92762184,0.14475548,884.249771,3008656476 +1,4203,1817,128,3.21173358,0.129898516,985.384621,3008656476 +1,4204,1818,128,2.13660049,0.129822207,985.963827,3008656476 +1,4205,1819,128,2.07293367,0.129613869,987.54864,3008656476 +1,4206,1820,128,2.84707189,0.128580281,995.487014,3008656476 +1,4207,1821,128,3.27562118,0.128997415,992.267946,3008656476 +1,4208,1822,128,4.18491507,0.128946745,992.65786,3008656476 +1,4209,1823,128,3.53495574,0.141912581,901.963724,3008656476 +1,4210,1824,128,2.98505449,0.142736607,896.756639,3008656476 +1,4211,1825,128,2.58185267,0.126770375,1009.69962,3008656476 +1,4212,1826,128,3.54932594,0.126242307,1013.92317,3008656476 +1,4213,1827,128,2.70205712,0.128061472,999.519981,3008656476 +1,4214,1828,128,2.79179096,0.126052511,1015.44982,3008656476 +1,4215,1829,128,3.09160447,0.125906188,1016.62994,3008656476 +1,4216,1830,128,2.96085715,0.125128281,1022.9502,3008656476 +1,4217,1831,128,3.50811815,0.139764133,915.82867,3008656476 +1,4218,1832,128,2.89698362,0.142829196,896.175317,3008656476 +1,4219,1833,128,3.09103656,0.125548859,1019.5234,3008656476 +1,4220,1834,128,3.50206041,0.125492085,1019.98465,3008656476 +1,4221,1835,128,3.03807926,0.125738243,1017.98782,3008656476 +1,4222,1836,128,2.27250552,0.124855138,1025.18809,3008656476 +1,4223,1837,128,3.40014148,0.125794832,1017.52988,3008656476 +1,4224,1838,128,3.70333982,0.126035805,1015.58442,3008656476 +1,4225,1839,128,3.52589321,0.139112525,920.118444,3008656476 +1,4226,1840,128,3.47423768,0.139274836,919.046137,3008656476 +1,4227,1841,128,3.4921906,0.126366894,1012.92353,3008656476 +1,4228,1842,128,3.38115859,0.125985284,1015.99168,3008656476 +1,4229,1843,128,3.46938038,0.125966288,1016.14489,3008656476 +1,4230,1844,128,3.40684056,0.126926912,1008.45438,3008656476 +1,4231,1845,128,2.44219494,0.125868251,1016.93635,3008656476 +1,4232,1846,128,2.8041079,0.126303296,1013.43357,3008656476 +1,4233,1847,128,2.3253963,0.126392609,1012.71744,3008656476 +1,4234,1848,128,3.04854941,0.12668494,1010.38056,3008656476 +1,4235,1849,128,3.38347626,0.14019848,912.991353,3008656476 +1,4236,1850,128,3.79911566,0.126680267,1010.41783,3008656476 +1,4237,1851,128,2.87933946,0.126971254,1008.1022,3008656476 +1,4238,1852,128,2.4977951,0.12789322,1000.83492,3008656476 +1,4239,1853,128,3.01016736,0.127641633,1002.8076,3008656476 +1,4240,1854,128,3.70530486,0.128184109,998.563714,3008656476 +1,4241,1855,128,3.11667013,0.128414123,996.775098,3008656476 +1,4242,1856,128,2.86932516,0.143448965,892.303406,3008656476 +1,4243,1857,128,2.24511647,0.142531568,898.04667,3008656476 +1,4244,1858,128,3.36772203,0.128761199,994.088289,3008656476 +1,4245,1859,128,2.67696047,0.130376538,981.771736,3008656476 +1,4246,1860,128,3.35974026,0.131629753,972.424525,3008656476 +1,4247,1861,128,3.42631269,0.13903418,920.636925,3008656476 +1,4248,1862,128,3.33256435,0.129342535,989.620313,3008656476 +1,4249,1863,128,3.32244635,0.130520985,980.685213,3008656476 +1,4250,1864,128,3.52664208,0.136292502,939.15658,3008656476 +1,4251,1865,128,3.36466527,0.140143559,913.349146,3008656476 +1,4252,1866,128,3.19261551,0.132311472,967.414224,3008656476 +1,4253,1867,128,4.19064951,0.129564918,987.921746,3008656476 +1,4254,1868,128,3.17956281,0.129835799,985.86061,3008656476 +1,4255,1869,128,3.00132513,0.128536484,995.826212,3008656476 +1,4256,1870,128,3.44767928,0.131176471,975.78475,3008656476 +1,4257,1871,128,2.7157743,0.128250531,998.04655,3008656476 +1,4258,1872,128,3.38732195,0.136084673,940.590863,3008656476 +1,4259,1873,128,3.17019415,0.139276285,919.036575,3008656476 +1,4260,1874,128,3.70750189,0.128863273,993.300861,3008656476 +1,4261,1875,128,2.99771881,0.129549136,988.042097,3008656476 +1,4262,1876,128,2.67461085,0.128114369,999.10729,3008656476 +1,4263,1877,128,2.74402094,0.12711035,1006.99904,3008656476 +1,4264,1878,128,2.62840152,0.127370843,1004.93957,3008656476 +1,4265,1879,128,1.95264781,0.12646834,1012.11102,3008656476 +1,4266,1880,128,2.78200054,0.145125132,881.997475,3008656476 +1,4267,1881,128,2.98633075,0.142447834,898.574562,3008656476 +1,4268,1882,128,3.09576416,0.129383543,989.306654,3008656476 +1,4269,1883,128,2.52281833,0.128585017,995.450349,3008656476 +1,4270,1884,128,2.77633262,0.129294813,989.985577,3008656476 +1,4271,1885,128,2.74539137,0.129230272,990.480001,3008656476 +1,4272,1886,128,3.07149076,0.12843211,996.635499,3008656476 +1,4273,1887,128,2.40599799,0.127632863,1002.87651,3008656476 +1,4274,1888,128,2.51633048,0.141789765,902.74499,3008656476 +1,4275,1889,128,3.40992856,0.143562878,891.595389,3008656476 +1,4276,1890,128,3.3425355,0.129271015,990.167827,3008656476 +1,4277,1891,128,3.13073969,0.1303732,981.796872,3008656476 +1,4278,1892,128,3.12256002,0.12906835,991.722603,3008656476 +1,4279,1893,128,2.64858222,0.128625765,995.134995,3008656476 +1,4280,1894,128,3.02820802,0.128180376,998.592796,3008656476 +1,4281,1895,128,3.06837821,0.127259754,1005.81681,3008656476 +1,4282,1896,128,3.45782328,0.139017876,920.744898,3008656476 +1,4283,1897,128,3.21597552,0.143115553,894.382178,3008656476 +1,4284,1898,128,3.5459981,0.130194017,983.148097,3008656476 +1,4285,1899,128,4.73993349,0.129321332,989.782567,3008656476 +1,4286,1900,128,3.61188364,0.128697676,994.578954,3008656476 +1,4287,1901,128,2.79816484,0.128863898,993.296043,3008656476 +1,4288,1902,128,3.02905989,0.129175761,990.897975,3008656476 +1,4289,1903,128,3.57775426,0.131408085,974.064876,3008656476 +1,4290,1904,128,2.19475913,0.135664349,943.505062,3008656476 +1,4291,1905,128,3.39315629,0.141060948,907.409186,3008656476 +1,4292,1906,128,2.50763679,0.127825142,1001.36795,3008656476 +1,4293,1907,128,2.63388729,0.12683188,1009.20999,3008656476 +1,4294,1908,128,3.04211116,0.127079967,1007.2398,3008656476 +1,4295,1909,128,2.75684023,0.127649349,1002.74699,3008656476 +1,4296,1910,128,3.02225733,0.1260195,1015.71582,3008656476 +1,4297,1911,128,2.68444586,0.125392858,1020.79179,3008656476 +1,4298,1912,128,2.96192384,0.14263466,897.397589,3008656476 +1,4299,1913,128,2.9168098,0.148001995,864.853207,3008656476 +1,4300,1914,128,3.11666059,0.129169383,990.946903,3008656476 +1,4301,1915,128,2.27048326,0.127717506,1002.21187,3008656476 +1,4302,1916,128,3.38004851,0.127752089,1001.94056,3008656476 +1,4303,1917,128,2.75383759,0.126548112,1011.47301,3008656476 +1,4304,1918,128,2.78669524,0.126975099,1008.07167,3008656476 +1,4305,1919,128,2.52923322,0.126622449,1010.8792,3008656476 +1,4306,1920,128,2.87004828,0.143157347,894.121068,3008656476 +1,4307,1921,128,3.1098907,0.146021803,876.581424,3008656476 +1,4308,1922,128,3.25931358,0.129032079,992.001377,3008656476 +1,4309,1923,128,3.05349135,0.129220928,990.551623,3008656476 +1,4310,1924,128,2.84226561,0.118304519,1081.9536,3008656476 +1,4311,1925,128,2.4422996,0.130968798,977.332021,3008656476 +1,4312,1926,128,2.96418619,0.129971149,984.83395,3008656476 +1,4313,1927,128,3.14651799,0.144396961,886.445249,3008656476 +1,4314,1928,128,3.40466142,0.120721218,1060.29414,3008656476 +1,4315,1929,128,4.22616673,0.132145105,968.632171,3008656476 +1,4316,1930,128,3.58502173,0.12674667,1009.88846,3008656476 +1,4317,1931,128,2.1686945,0.12575941,1017.81648,3008656476 +1,4318,1932,128,2.05706882,0.126960639,1008.18648,3008656476 +1,4319,1933,128,2.51665235,0.125587476,1019.20991,3008656476 +1,4320,1934,128,2.68793631,0.124765908,1025.92128,3008656476 +1,4321,1935,128,2.16066384,0.124978871,1024.17312,3008656476 +1,4322,1936,128,3.2784152,0.141799951,902.680143,3008656476 +1,4323,1937,128,3.0177505,0.139156274,919.82917,3008656476 +1,4324,1938,128,3.24608564,0.125993041,1015.92913,3008656476 +1,4325,1939,128,2.66155338,0.126254266,1013.82713,3008656476 +1,4326,1940,128,2.56674767,0.126541394,1011.52671,3008656476 +1,4327,1941,128,1.98468935,0.126279198,1013.62696,3008656476 +1,4328,1942,128,3.56900692,0.126141532,1014.7332,3008656476 +1,4329,1943,128,2.8723731,0.126269917,1013.70147,3008656476 +1,4330,1944,128,3.20473623,0.140538983,910.779324,3008656476 +1,4331,1945,128,3.35330081,0.140408758,911.624046,3008656476 +1,4332,1946,128,2.10786676,0.126023134,1015.68653,3008656476 +1,4333,1947,128,2.64271355,0.125807034,1017.43119,3008656476 +1,4334,1948,128,3.44955897,0.125646575,1018.73051,3008656476 +1,4335,1949,128,3.09563446,0.126574515,1011.26202,3008656476 +1,4336,1950,128,3.76271391,0.125580651,1019.2653,3008656476 +1,4337,1951,128,3.65383983,0.126239272,1013.94755,3008656476 +1,4338,1952,128,2.94655514,0.137919399,928.07829,3008656476 +1,4339,1953,128,2.89434695,0.139501065,917.555719,3008656476 +1,4340,1954,128,3.027565,0.124212457,1030.49246,3008656476 +1,4341,1955,128,3.00859451,0.125350374,1021.13776,3008656476 +1,4342,1956,128,3.55356359,0.125709372,1018.22162,3008656476 +1,4343,1957,128,3.08177423,0.126124308,1014.87177,3008656476 +1,4344,1958,128,2.86325002,0.126250918,1013.85401,3008656476 +1,4345,1959,128,2.20262218,0.12771337,1002.24432,3008656476 +1,4346,1960,128,3.11040378,0.141422966,905.086378,3008656476 +1,4347,1961,128,3.00226593,0.142657404,897.254516,3008656476 +1,4348,1962,128,3.01770234,0.128879972,993.172159,3008656476 +1,4349,1963,128,2.32237673,0.128716197,994.435844,3008656476 +1,4350,1964,128,2.32064152,0.128679764,994.717398,3008656476 +1,4351,1965,128,2.68193293,0.131130101,976.129806,3008656476 +1,4352,1966,128,3.06785679,0.131388844,974.207521,3008656476 +1,4353,1967,128,3.14187789,0.131273987,975.059895,3008656476 +1,4354,1968,128,3.52789044,0.14655614,873.385448,3008656476 +1,4355,1969,128,2.85013676,0.148209406,863.642892,3008656476 +1,4356,1970,128,2.88040996,0.129671754,987.107801,3008656476 +1,4357,1971,128,3.04238915,0.130415315,981.479821,3008656476 +1,4358,1972,128,3.58431673,0.129170898,990.93528,3008656476 +1,4359,1973,128,2.92956972,0.130265717,982.606959,3008656476 +1,4360,1974,128,1.43581975,0.129151633,991.083094,3008656476 +1,4361,1975,128,2.34640789,0.128722867,994.384316,3008656476 +1,4362,1976,128,2.56141162,0.143248325,893.553206,3008656476 +1,4363,1977,128,2.50953293,0.14149084,904.652202,3008656476 +1,4364,1978,128,2.88439608,0.128163128,998.727185,3008656476 +1,4365,1979,128,2.98304772,0.127081528,1007.22742,3008656476 +1,4366,1980,128,3.50904393,0.127433759,1004.44341,3008656476 +1,4367,1981,128,3.39014697,0.12710941,1007.00648,3008656476 +1,4368,1982,128,2.8859396,0.128140584,998.902892,3008656476 +1,4369,1983,128,3.45029855,0.125986747,1015.97988,3008656476 +1,4370,1984,128,2.41678715,0.140706205,909.696911,3008656476 +1,4371,1985,128,2.32748961,0.13864314,923.233562,3008656476 +1,4372,1986,128,2.23696899,0.126062477,1015.36955,3008656476 +1,4373,1987,128,3.00798368,0.125741344,1017.96272,3008656476 +1,4374,1988,128,3.25326538,0.127310012,1005.41975,3008656476 +1,4375,1989,128,3.46669936,0.125137638,1022.87371,3008656476 +1,4376,1990,128,2.37219524,0.125838756,1017.17471,3008656476 +1,4377,1991,128,2.18293738,0.126011142,1015.78319,3008656476 +1,4378,1992,128,2.31450367,0.140222312,912.836183,3008656476 +1,4379,1993,128,2.97972322,0.140053632,913.935599,3008656476 +1,4380,1994,128,2.80075479,0.126081992,1015.21239,3008656476 +1,4381,1995,128,2.74933481,0.127370088,1004.94553,3008656476 +1,4382,1996,128,2.68641996,0.126057873,1015.40663,3008656476 +1,4383,1997,128,3.20996714,0.125868763,1016.93222,3008656476 +1,4384,1998,128,3.12003279,0.126427114,1012.44105,3008656476 +1,4385,1999,128,3.93732238,0.126629319,1010.82436,3008656476 +1,4386,2000,128,2.93343496,0.126987909,1007.96998,3008656476 +1,4387,2001,128,2.22731543,0.141151989,906.82392,3008656476 +1,4388,2002,128,3.06646681,0.126101315,1015.05682,3008656476 +1,4389,2003,128,2.97774458,0.126200795,1014.25669,3008656476 +1,4390,2004,128,2.54811811,0.125808024,1017.42318,3008656476 +1,4391,2005,128,2.51458335,0.125301036,1021.53984,3008656476 +1,4392,2006,128,2.70904183,0.126705364,1010.21769,3008656476 +1,4393,2007,128,2.63076353,0.125328439,1021.31648,3008656476 +1,4394,2008,128,2.79392743,0.139052374,920.516467,3008656476 +1,4395,2009,128,2.71060562,0.138366001,925.082745,3008656476 +1,4396,2010,128,2.82905483,0.125453728,1020.2965,3008656476 +1,4397,2011,128,3.38487935,0.125027509,1023.7747,3008656476 +1,4398,2012,128,3.78144169,0.125794456,1017.53292,3008656476 +1,4399,2013,128,3.24238038,0.126548785,1011.46763,3008656476 +1,4400,2014,128,3.86562991,0.126593672,1011.10899,3008656476 +1,4401,2015,128,3.14517641,0.126830263,1009.22285,3008656476 +1,4402,2016,128,3.29842901,0.127714268,1002.23728,3008656476 +1,4403,2017,128,3.93961334,0.136911985,934.907196,3008656476 +1,4404,2018,128,3.38549042,0.136461469,937.993713,3008656476 +1,4405,2019,128,3.3398819,0.130108566,983.793796,3008656476 +1,4406,2020,128,2.8412261,0.12916913,990.948844,3008656476 +1,4407,2021,128,3.62698674,0.130212372,983.00951,3008656476 +1,4408,2022,128,3.67029262,0.128832447,993.53853,3008656476 +1,4409,2023,128,3.66605973,0.128534594,995.840855,3008656476 +1,4410,2024,128,3.77955508,0.129494857,988.456244,3008656476 +1,4411,2025,128,3.41687679,0.141750092,902.99765,3008656476 +1,4412,2026,128,3.08218288,0.138267672,925.740617,3008656476 +1,4413,2027,128,3.57566667,0.129549225,988.041418,3008656476 +1,4414,2028,128,3.51856136,0.129971541,984.830979,3008656476 +1,4415,2029,128,3.85779524,0.128764166,994.065383,3008656476 +1,4416,2030,128,3.57224274,0.129238405,990.41767,3008656476 +1,4417,2031,128,3.61834145,0.129491739,988.480045,3008656476 +1,4418,2032,128,2.87245202,0.128243241,998.103284,3008656476 +1,4419,2033,128,2.95964789,0.140218531,912.860797,3008656476 +1,4420,2034,128,2.95650339,0.138589559,923.590499,3008656476 +1,4421,2035,128,3.56394124,0.127959992,1000.31266,3008656476 +1,4422,2036,128,2.49989104,0.128426982,996.675294,3008656476 +1,4423,2037,128,2.82650137,0.128024917,999.805374,3008656476 +1,4424,2038,128,3.12657952,0.117925858,1085.42776,3008656476 +1,4425,2039,128,3.6163342,0.127177564,1006.46683,3008656476 +1,4426,2040,128,3.16004872,0.126340042,1013.13881,3008656476 +1,4427,2041,128,4.18399239,0.143683318,890.848025,3008656476 +1,4428,2042,128,3.86186361,0.141769791,902.872178,3008656476 +1,4429,2043,128,4.14342308,0.129852074,985.737047,3008656476 +1,4430,2044,128,3.16043401,0.128413975,996.776247,3008656476 +1,4431,2045,128,3.12091208,0.128807352,993.732097,3008656476 +1,4432,2046,128,3.05890107,0.129286332,990.050518,3008656476 +1,4433,2047,128,3.31956625,0.131108571,976.290101,3008656476 +1,4434,2048,128,3.30170059,0.127789488,1001.64733,3008656476 +1,4435,2049,128,3.10475159,0.140751515,909.404066,3008656476 +1,4436,2050,128,3.427876,0.145253711,881.216728,3008656476 +1,4437,2051,128,3.37847757,0.129979034,984.774206,3008656476 +1,4438,2052,128,2.81469178,0.127782016,1001.70591,3008656476 +1,4439,2053,128,3.38230109,0.128722258,994.38902,3008656476 +1,4440,2054,128,3.81957459,0.128808308,993.724722,3008656476 +1,4441,2055,128,3.01822233,0.127735429,1002.07124,3008656476 +1,4442,2056,128,3.0433383,0.126635806,1010.77258,3008656476 +1,4443,2057,128,3.3799479,0.139661575,916.501192,3008656476 +1,4444,2058,128,3.07831955,0.14582431,877.768597,3008656476 +1,4445,2059,128,3.12941194,0.128658912,994.878614,3008656476 +1,4446,2060,128,2.50215411,0.128330381,997.425543,3008656476 +1,4447,2061,128,3.71324301,0.127129725,1006.84557,3008656476 +1,4448,2062,128,3.16157174,0.126581551,1011.20581,3008656476 +1,4449,2063,128,2.68341827,0.127032931,1007.61274,3008656476 +1,4450,2064,128,3.04762006,0.126512837,1011.75504,3008656476 +1,4451,2065,128,2.70891547,0.142515919,898.14528,3008656476 +1,4452,2066,128,2.97718716,0.20173521,634.495089,3008656476 +1,4453,2067,128,2.75235462,0.12846677,996.366609,3008656476 +1,4454,2068,128,2.71979403,0.12925634,990.280245,3008656476 +1,4455,2069,128,2.78003263,0.129029958,992.017683,3008656476 +1,4456,2070,128,3.10589838,0.12906073,991.781156,3008656476 +1,4457,2071,128,3.54346538,0.127945898,1000.42285,3008656476 +1,4458,2072,128,2.83150864,0.142600544,897.612284,3008656476 +1,4459,2073,128,3.40871286,0.140052065,913.945824,3008656476 +1,4460,2074,128,2.82713866,0.126000184,1015.87153,3008656476 +1,4461,2075,128,3.55947161,0.126626556,1010.84641,3008656476 +1,4462,2076,128,3.38436961,0.126345372,1013.09607,3008656476 +1,4463,2077,128,3.0563848,0.125701303,1018.28698,3008656476 +1,4464,2078,128,2.62245727,0.125826477,1017.27397,3008656476 +1,4465,2079,128,3.71049571,0.125806877,1017.43246,3008656476 +1,4466,2080,128,3.30001974,0.138709484,922.791984,3008656476 +1,4467,2081,128,2.94019794,0.134930632,948.635592,3008656476 +1,4468,2082,128,2.92831564,0.123960239,1032.58917,3008656476 +1,4469,2083,128,3.44258666,0.125911195,1016.58951,3008656476 +1,4470,2084,128,2.56555486,0.126932901,1008.4068,3008656476 +1,4471,2085,128,3.16845202,0.126044792,1015.51201,3008656476 +1,4472,2086,128,3.15910745,0.1259588,1016.2053,3008656476 +1,4473,2087,128,2.63088322,0.126582092,1011.20149,3008656476 +1,4474,2088,128,2.68768382,0.126102166,1015.04997,3008656476 +1,4475,2089,128,3.2620213,0.128386096,996.992696,3008656476 +1,4476,2090,128,2.81914473,0.140156582,913.26428,3008656476 +1,4477,2091,128,2.30941486,0.124672391,1026.69083,3008656476 +1,4478,2092,128,2.08299756,0.124973712,1024.2154,3008656476 +1,4479,2093,128,2.08670473,0.125611073,1019.01844,3008656476 +1,4480,2094,128,3.38849068,0.125504605,1019.8829,3008656476 +1,4481,2095,128,2.26529169,0.126759953,1009.78264,3008656476 +1,4482,2096,128,3.11222291,0.126609169,1010.98523,3008656476 +1,4483,2097,128,3.04976606,0.139990253,914.349373,3008656476 +1,4484,2098,128,3.03371763,0.142048433,901.101105,3008656476 +1,4485,2099,128,3.07280636,0.12794287,1000.44653,3008656476 +1,4486,2100,128,2.72929716,0.128837113,993.502548,3008656476 +1,4487,2101,128,2.96240211,0.129662112,987.181205,3008656476 +1,4488,2102,128,2.78238559,0.129223135,990.534706,3008656476 +1,4489,2103,128,1.88292539,0.128843345,993.454493,3008656476 +1,4490,2104,128,2.7729001,0.131090233,976.426672,3008656476 +1,4491,2105,128,2.55490112,0.143800293,890.12336,3008656476 +1,4492,2106,128,2.33536315,0.151934713,842.467119,3008656476 +1,4493,2107,128,3.07425666,0.144022845,888.747893,3008656476 +1,4494,2108,128,2.80444717,0.129178386,990.877839,3008656476 +1,4495,2109,128,3.07283354,0.130662785,979.620938,3008656476 +1,4496,2110,128,3.06514263,0.132733365,964.339298,3008656476 +1,4497,2111,128,2.83378911,0.129547187,988.056962,3008656476 +1,4498,2112,128,2.90271354,0.140747732,909.428509,3008656476 +1,4499,2113,128,3.02390814,0.124898158,1024.83497,3008656476 +1,4500,2114,128,2.05000806,0.144663306,884.813181,3008656476 +1,4501,2115,128,3.42794108,0.129248454,990.340666,3008656476 +1,4502,2116,128,2.55215979,0.129345221,989.599763,3008656476 +1,4503,2117,128,2.99057984,0.127502617,1003.90096,3008656476 +1,4504,2118,128,2.90134716,0.127610606,1003.05142,3008656476 +1,4505,2119,128,3.4701457,0.126826119,1009.25583,3008656476 +1,4506,2120,128,1.90400589,0.126789,1009.5513,3008656476 +1,4507,2121,128,2.30641961,0.129507893,988.356748,3008656476 +1,4508,2122,128,2.53182364,0.14355998,891.613387,3008656476 +1,4509,2123,128,2.05833554,0.127131347,1006.83272,3008656476 +1,4510,2124,128,2.46199512,0.125531392,1019.66526,3008656476 +1,4511,2125,128,1.64703,0.125921303,1016.50791,3008656476 +1,4512,2126,128,1.84723079,0.12579167,1017.55545,3008656476 +1,4513,2127,128,3.7130239,0.12650418,1011.82427,3008656476 +1,4514,2128,128,3.09183121,0.125812983,1017.38308,3008656476 +1,4515,2129,128,2.32828069,0.142529593,898.059114,3008656476 +1,4516,2130,128,3.25824761,0.145144795,881.877989,3008656476 +1,4517,2131,128,2.4209466,0.125423925,1020.53894,3008656476 +1,4518,2132,128,3.07367492,0.125912572,1016.57839,3008656476 +1,4519,2133,128,2.57163095,0.126023224,1015.68581,3008656476 +1,4520,2134,128,3.3915658,0.126704439,1010.22506,3008656476 +1,4521,2135,128,2.6095221,0.126910148,1008.58759,3008656476 +1,4522,2136,128,3.1691308,0.12576812,1017.74599,3008656476 +1,4523,2137,128,2.85796714,0.141081299,907.278292,3008656476 +1,4524,2138,128,2.93383813,0.146044838,876.443165,3008656476 +1,4525,2139,128,3.86175609,0.1258768,1016.86729,3008656476 +1,4526,2140,128,3.33967781,0.126809743,1009.38616,3008656476 +1,4527,2141,128,2.7937324,0.126907427,1008.60921,3008656476 +1,4528,2142,128,2.73966432,0.126046263,1015.50016,3008656476 +1,4529,2143,128,2.76094365,0.126968555,1008.12363,3008656476 +1,4530,2144,128,3.21037531,0.125959969,1016.19587,3008656476 +1,4531,2145,128,3.49531174,0.139971733,914.470352,3008656476 +1,4532,2146,128,3.33654094,0.144810601,883.913188,3008656476 +1,4533,2147,128,3.11826849,0.126514165,1011.74442,3008656476 +1,4534,2148,128,2.70908904,0.126513832,1011.74708,3008656476 +1,4535,2149,128,3.11807823,0.126997281,1007.89559,3008656476 +1,4536,2150,128,3.09906864,0.126829505,1009.22889,3008656476 +1,4537,2151,128,2.8930099,0.125406301,1020.68237,3008656476 +1,4538,2152,128,3.0801332,0.126028241,1015.64537,3008656476 +1,4539,2153,128,2.67540026,0.13944337,917.93536,3008656476 +1,4540,2154,128,2.49493146,0.141417543,905.121085,3008656476 +1,4541,2155,128,3.51286507,0.12539711,1020.75718,3008656476 +1,4542,2156,128,3.20517993,0.126119421,1014.9111,3008656476 +1,4543,2157,128,2.82702136,0.126195258,1014.30119,3008656476 +1,4544,2158,128,1.64095926,0.125435144,1020.44767,3008656476 +1,4545,2159,128,3.63228059,0.125408548,1020.66408,3008656476 +1,4546,2160,128,4.28449345,0.124383112,1029.07861,3008656476 +1,4547,2161,128,3.49469638,0.138308868,925.464881,3008656476 +1,4548,2162,128,2.51545882,0.139511004,917.490351,3008656476 +1,4549,2163,128,2.12797117,0.125566982,1019.37626,3008656476 +1,4550,2164,128,2.34015942,0.125105504,1023.13644,3008656476 +1,4551,2165,128,3.30127168,0.125942372,1016.33785,3008656476 +1,4552,2166,128,2.9437604,0.126566061,1011.32957,3008656476 +1,4553,2167,128,2.73751354,0.12640649,1012.60624,3008656476 +1,4554,2168,128,2.97666955,0.12675499,1009.82218,3008656476 +1,4555,2169,128,3.16879725,0.141660849,903.566518,3008656476 +1,4556,2170,128,2.52300262,0.142608911,897.55962,3008656476 +1,4557,2171,128,2.60326695,0.124431207,1028.68085,3008656476 +1,4558,2172,128,3.14932275,0.129216839,990.582969,3008656476 +1,4559,2173,128,3.66217422,0.129667543,987.139858,3008656476 +1,4560,2174,128,3.27572012,0.128993414,992.298723,3008656476 +1,4561,2175,128,2.73443556,0.130161855,983.391025,3008656476 +1,4562,2176,128,1.38626635,0.131153211,975.957806,3008656476 +1,4563,2177,128,2.36945152,0.15533727,824.013452,3008656476 +1,4564,2178,128,2.40760493,0.152619144,838.689018,3008656476 +1,4565,2179,128,3.3311677,0.139026431,920.688239,3008656476 +1,4566,2180,128,3.27083087,0.141075158,907.317786,3008656476 +1,4567,2181,128,2.36714363,0.129590333,987.727997,3008656476 +1,4568,2182,128,2.88462377,0.132463778,966.301897,3008656476 +1,4569,2183,128,3.4130733,0.12997296,984.820227,3008656476 +1,4570,2184,128,3.03839278,0.129561114,987.950752,3008656476 +1,4571,2185,128,3.13248253,0.143890836,889.563252,3008656476 +1,4572,2186,128,3.24428558,0.142928854,895.550453,3008656476 +1,4573,2187,128,3.1628027,0.128511135,996.02264,3008656476 +1,4574,2188,128,2.77833986,0.129458761,988.731848,3008656476 +1,4575,2189,128,2.79655123,0.131051072,976.718451,3008656476 +1,4576,2190,128,2.66325283,0.127560187,1003.44789,3008656476 +1,4577,2191,128,3.31560278,0.12893952,992.713483,3008656476 +1,4578,2192,128,2.73528147,0.126530265,1011.61568,3008656476 +1,4579,2193,128,1.8649652,0.141614607,903.861563,3008656476 +1,4580,2194,128,2.84023809,0.141393365,905.275859,3008656476 +1,4581,2195,128,2.60652614,0.127072259,1007.30089,3008656476 +1,4582,2196,128,3.17808628,0.125972452,1016.09517,3008656476 +1,4583,2197,128,3.23843288,0.126194133,1014.31023,3008656476 +1,4584,2198,128,3.30545664,0.124790165,1025.72186,3008656476 +1,4585,2199,128,2.38560963,0.125327494,1021.32418,3008656476 +1,4586,2200,128,3.01359582,0.124851706,1025.21627,3008656476 +1,4587,2201,128,3.19584179,0.139267736,919.092991,3008656476 +1,4588,2202,128,2.80605578,0.13778363,928.992798,3008656476 +1,4589,2203,128,3.55451369,0.124977875,1024.18128,3008656476 +1,4590,2204,128,3.59927487,0.126028808,1015.6408,3008656476 +1,4591,2205,128,2.54076815,0.126011069,1015.78378,3008656476 +1,4592,2206,128,2.8048768,0.125315791,1021.41956,3008656476 +1,4593,2207,128,2.82087469,0.1259444,1016.32149,3008656476 +1,4594,2208,128,2.90272665,0.125072022,1023.41034,3008656476 +1,4595,2209,128,3.03079891,0.139909748,914.875495,3008656476 +1,4596,2210,128,2.54333663,0.13865244,923.171637,3008656476 +1,4597,2211,128,2.26924992,0.126172612,1014.48324,3008656476 +1,4598,2212,128,2.52322197,0.125380873,1020.88937,3008656476 +1,4599,2213,128,2.66566062,0.125377547,1020.91645,3008656476 +1,4600,2214,128,2.60759139,0.126237721,1013.96,3008656476 +1,4601,2215,128,3.13688588,0.126684619,1010.38312,3008656476 +1,4602,2216,128,2.25197244,0.125292703,1021.60778,3008656476 +1,4603,2217,128,3.19238138,0.140322752,912.182794,3008656476 +1,4604,2218,128,2.75666857,0.131066393,976.604277,3008656476 +1,4605,2219,128,3.4495554,0.121839338,1050.56382,3008656476 +1,4606,2220,128,2.65345502,0.124688504,1026.55815,3008656476 +1,4607,2221,128,1.97203898,0.124895861,1024.85382,3008656476 +1,4608,2222,128,2.69850397,0.126105951,1015.01951,3008656476 +1,4609,2223,128,2.73708224,0.125951556,1016.26375,3008656476 +1,4610,2224,128,2.57609344,0.127076631,1007.26624,3008656476 +1,4611,2225,128,2.60023832,0.141599937,903.955204,3008656476 +1,4612,2226,128,3.11225724,0.11974974,1068.89585,3008656476 +1,4613,2227,128,2.74664021,0.145021179,882.629702,3008656476 +1,4614,2228,128,2.72292757,0.128771447,994.009177,3008656476 +1,4615,2229,128,2.60121322,0.129616241,987.530567,3008656476 +1,4616,2230,128,3.29857111,0.129384794,989.297088,3008656476 +1,4617,2231,128,2.08281183,0.129676067,987.07497,3008656476 +1,4618,2232,128,3.01136708,0.130720098,979.191432,3008656476 +1,4619,2233,128,2.41429472,0.128316662,997.532183,3008656476 +1,4620,2234,128,2.79851246,0.128785091,993.903867,3008656476 +1,4621,2235,128,2.04767847,0.143513762,891.900527,3008656476 +1,4622,2236,128,2.66590929,0.128029765,999.767515,3008656476 +1,4623,2237,128,3.62364578,0.125955674,1016.23052,3008656476 +1,4624,2238,128,2.79879856,0.126223166,1014.07692,3008656476 +1,4625,2239,128,2.66192245,0.125907379,1016.62032,3008656476 +1,4626,2240,128,2.57525659,0.126694759,1010.30225,3008656476 +1,4627,2241,128,2.57428718,0.125783505,1017.62151,3008656476 +1,4628,2242,128,3.46838856,0.140838256,908.843972,3008656476 +1,4629,2243,128,2.88889933,0.138652545,923.170938,3008656476 +1,4630,2244,128,3.03208661,0.124874082,1025.03256,3008656476 +1,4631,2245,128,3.15799475,0.12605489,1015.43066,3008656476 +1,4632,2246,128,2.05936623,0.126253337,1013.83459,3008656476 +1,4633,2247,128,2.33655572,0.126557309,1011.39951,3008656476 +1,4634,2248,128,2.62878323,0.126563876,1011.34703,3008656476 +1,4635,2249,128,2.99691701,0.126118453,1014.91889,3008656476 +1,4636,2250,128,2.96998644,0.143135249,894.259107,3008656476 +1,4637,2251,128,2.17310834,0.140302606,912.313774,3008656476 +1,4638,2252,128,2.06136417,0.125887608,1016.77998,3008656476 +1,4639,2253,128,2.79210305,0.125745392,1017.92995,3008656476 +1,4640,2254,128,3.47297406,0.12582708,1017.2691,3008656476 +1,4641,2255,128,2.81544304,0.127243715,1005.94359,3008656476 +1,4642,2256,128,3.02494597,0.126656435,1010.60795,3008656476 +1,4643,2257,128,2.80371475,0.126495015,1011.89758,3008656476 +1,4644,2258,128,3.11883616,0.142221283,900.005944,3008656476 +1,4645,2259,128,2.76542163,0.139185756,919.634334,3008656476 +1,4646,2260,128,2.66975307,0.126498472,1011.86993,3008656476 +1,4647,2261,128,2.55753899,0.126424291,1012.46366,3008656476 +1,4648,2262,128,2.34972954,0.12683315,1009.19988,3008656476 +1,4649,2263,128,2.84552431,0.12568823,1018.39289,3008656476 +1,4650,2264,128,2.12223434,0.127529006,1003.69323,3008656476 +1,4651,2265,128,2.32601166,0.126218648,1014.11322,3008656476 +1,4652,2266,128,2.98631454,0.143403619,892.585563,3008656476 +1,4653,2267,128,2.37921572,0.139987395,914.36804,3008656476 +1,4654,2268,128,2.76425934,0.125677107,1018.48302,3008656476 +1,4655,2269,128,1.90097308,0.125637952,1018.80043,3008656476 +1,4656,2270,128,2.36032486,0.126087614,1015.16712,3008656476 +1,4657,2271,128,2.59780383,0.126129085,1014.83334,3008656476 +1,4658,2272,128,2.9549191,0.12526757,1021.81275,3008656476 +1,4659,2273,128,2.2882359,0.125718475,1018.14789,3008656476 +1,4660,2274,128,2.23305011,0.142615454,897.518441,3008656476 +1,4661,2275,128,2.63857579,0.139342516,918.599747,3008656476 +1,4662,2276,128,2.89989901,0.126219211,1014.1087,3008656476 +1,4663,2277,128,2.18148661,0.125603133,1019.08286,3008656476 +1,4664,2278,128,2.36156154,0.12568213,1018.44232,3008656476 +1,4665,2279,128,2.33592916,0.12546858,1020.17573,3008656476 +1,4666,2280,128,2.23013449,0.126166635,1014.5313,3008656476 +1,4667,2281,128,2.72584534,0.124954264,1024.37481,3008656476 +1,4668,2282,128,3.04812622,0.139629791,916.709816,3008656476 +1,4669,2283,128,2.29782343,0.124245187,1030.22099,3008656476 +1,4670,2284,128,2.4233613,0.131026547,976.901269,3008656476 +1,4671,2285,128,1.99313915,0.127033587,1007.60754,3008656476 +1,4672,2286,128,2.20025277,0.126501147,1011.84853,3008656476 +1,4673,2287,128,2.18862247,0.127814614,1001.45043,3008656476 +1,4674,2288,128,2.0035851,0.128399372,996.889611,3008656476 +1,4675,2289,128,2.13806224,0.127708103,1002.28566,3008656476 +1,4676,2290,128,2.75434446,0.143308073,893.180665,3008656476 +1,4677,2291,128,3.2293396,0.124903173,1024.79382,3008656476 +1,4678,2292,128,2.26523757,0.140229843,912.787159,3008656476 +1,4679,2293,128,3.06352282,0.129183246,990.840561,3008656476 +1,4680,2294,128,3.37036419,0.130174282,983.297146,3008656476 +1,4681,2295,128,3.46438098,0.129422724,989.007155,3008656476 +1,4682,2296,128,3.55364704,0.131162287,975.890272,3008656476 +1,4683,2297,128,2.67947125,0.139464849,917.793988,3008656476 +1,4684,2298,128,2.52093053,0.15528885,824.270384,3008656476 +1,4685,2299,128,3.46281099,0.155049884,825.540766,3008656476 +1,4686,2300,128,2.97521448,0.139114506,920.105341,3008656476 +1,4687,2301,128,3.30673766,0.143293863,893.269239,3008656476 +1,4688,2302,128,3.82942605,0.129437143,988.896981,3008656476 +1,4689,2303,128,2.94682479,0.132469544,966.259837,3008656476 +1,4690,2304,128,2.81266809,0.130637259,979.812352,3008656476 +1,4691,2305,128,3.19110274,0.130088641,983.944478,3008656476 +1,4692,2306,128,3.87294865,0.141879903,902.171465,3008656476 +1,4693,2307,128,3.21792984,0.146118287,876.002605,3008656476 +1,4694,2308,128,3.28080988,0.128124791,999.02602,3008656476 +1,4695,2309,128,3.62812924,0.128589588,995.414963,3008656476 +1,4696,2310,128,3.02968907,0.127968347,1000.24735,3008656476 +1,4697,2311,128,2.76286125,0.128199768,998.441744,3008656476 +1,4698,2312,128,2.7602632,0.126986502,1007.98115,3008656476 +1,4699,2313,128,3.30768967,0.127159394,1006.61065,3008656476 +1,4700,2314,128,3.90582895,0.141663053,903.55246,3008656476 +1,4701,2315,128,3.57376647,0.1417427,903.044742,3008656476 +1,4702,2316,128,4.11165285,0.125374164,1020.944,3008656476 +1,4703,2317,128,3.61108303,0.12561707,1018.96979,3008656476 +1,4704,2318,128,3.66521668,0.126332519,1013.19914,3008656476 +1,4705,2319,128,3.63621283,0.126131469,1014.81415,3008656476 +1,4706,2320,128,3.70604682,0.125266163,1021.82423,3008656476 +1,4707,2321,128,3.74685335,0.125086989,1023.28788,3008656476 +1,4708,2322,128,3.54100561,0.141145055,906.868469,3008656476 +1,4709,2323,128,3.60650229,0.140443578,911.398028,3008656476 +1,4710,2324,128,3.13217974,0.125980754,1016.02821,3008656476 +1,4711,2325,128,3.87413359,0.126443932,1012.30639,3008656476 +1,4712,2326,128,3.49114084,0.12604233,1015.53185,3008656476 +1,4713,2327,128,4.03209066,0.126627438,1010.83937,3008656476 +1,4714,2328,128,3.55194211,0.125836171,1017.1956,3008656476 +1,4715,2329,128,3.14929938,0.126365103,1012.93788,3008656476 +1,4716,2330,128,3.60981822,0.139156218,919.82954,3008656476 +1,4717,2331,128,3.42808509,0.137469508,931.115575,3008656476 +1,4718,2332,128,2.85038233,0.126359989,1012.97888,3008656476 +1,4719,2333,128,2.86212206,0.125364056,1021.02631,3008656476 +1,4720,2334,128,2.52858233,0.124964754,1024.28882,3008656476 +1,4721,2335,128,3.35094571,0.125115961,1023.05093,3008656476 +1,4722,2336,128,3.78047085,0.125820184,1017.32485,3008656476 +1,4723,2337,128,3.58911252,0.12516297,1022.66669,3008656476 +1,4724,2338,128,3.07505989,0.137618702,930.106142,3008656476 +1,4725,2339,128,2.99483824,0.125307771,1021.48493,3008656476 +1,4726,2340,128,2.81489086,0.135580546,944.088247,3008656476 +1,4727,2341,128,3.60423946,0.126341819,1013.12456,3008656476 +1,4728,2342,128,3.41913795,0.12679642,1009.49222,3008656476 +1,4729,2343,128,3.54228926,0.127332971,1005.23846,3008656476 +1,4730,2344,128,3.23962116,0.127535616,1003.64121,3008656476 +1,4731,2345,128,3.79740262,0.128111838,999.127028,3008656476 +1,4732,2346,128,3.62622786,0.144429981,886.242587,3008656476 +1,4733,2347,128,3.5961237,0.121074779,1057.19788,3008656476 +1,4734,2348,128,3.51528597,0.145909544,877.255843,3008656476 +1,4735,2349,128,3.61192274,0.130703762,979.313817,3008656476 +1,4736,2350,128,3.24901319,0.13073839,979.054431,3008656476 +1,4737,2351,128,3.34552455,0.138867073,921.744783,3008656476 +1,4738,2352,128,2.75179505,0.138809641,922.126151,3008656476 +1,4739,2353,128,2.85266662,0.138881158,921.651301,3008656476 +1,4740,2354,128,3.4859066,0.144430693,886.238218,3008656476 +1,4741,2355,128,3.11269927,0.143548305,891.685903,3008656476 +1,4742,2356,128,3.37658882,0.129900283,985.371217,3008656476 +1,4743,2357,128,2.71628213,0.1303706,981.816452,3008656476 +1,4744,2358,128,2.91124582,0.130002714,984.594829,3008656476 +1,4745,2359,128,3.15418124,0.129153636,991.067723,3008656476 +1,4746,2360,128,3.24976635,0.129108253,991.416095,3008656476 +1,4747,2361,128,2.65525508,0.129803738,986.104114,3008656476 +1,4748,2362,128,2.62430239,0.141917705,901.931158,3008656476 +1,4749,2363,128,2.33507466,0.140717958,909.620931,3008656476 +1,4750,2364,128,2.15427661,0.127575341,1003.32869,3008656476 +1,4751,2365,128,2.60237598,0.127349133,1005.11089,3008656476 +1,4752,2366,128,2.50097013,0.126698197,1010.27483,3008656476 +1,4753,2367,128,3.27196932,0.126383429,1012.791,3008656476 +1,4754,2368,128,2.85695052,0.125628677,1018.87565,3008656476 +1,4755,2369,128,2.74423933,0.126500677,1011.85229,3008656476 +1,4756,2370,128,2.62061763,0.14126263,906.113669,3008656476 +1,4757,2371,128,2.52789545,0.133471823,959.003909,3008656476 +1,4758,2372,128,3.54807401,0.122191296,1047.53779,3008656476 +1,4759,2373,128,3.49400401,0.126807639,1009.40291,3008656476 +1,4760,2374,128,3.57899284,0.126422981,1012.47415,3008656476 +1,4761,2375,128,2.51407814,0.126250813,1013.85486,3008656476 +1,4762,2376,128,2.58497715,0.126601448,1011.04689,3008656476 +1,4763,2377,128,3.48490214,0.126023849,1015.68077,3008656476 +1,4764,2378,128,3.13182878,0.139577129,917.055688,3008656476 +1,4765,2379,128,2.40332627,0.11808554,1083.95998,3008656476 +1,4766,2380,128,2.94199181,0.139517118,917.450144,3008656476 +1,4767,2381,128,2.43870091,0.124760527,1025.96553,3008656476 +1,4768,2382,128,2.82022381,0.125163623,1022.66135,3008656476 +1,4769,2383,128,3.08019376,0.125294185,1021.59569,3008656476 +1,4770,2384,64,2.50722146,0.122523115,522.350415,3008656476 +2,4771,0,128,1.86639047,0.0946204,1352.77382,3008656476 +2,4772,1,128,2.51737618,0.108303093,1181.86837,3008656476 +2,4773,2,128,2.37928391,0.108599449,1178.64318,3008656476 +2,4774,3,128,2.71376157,0.121577659,1052.82501,3008656476 +2,4775,4,128,3.20919657,0.108338566,1181.48139,3008656476 +2,4776,5,128,3.49424148,0.114421677,1118.66915,3008656476 +2,4777,6,128,3.28439713,0.10832353,1181.64539,3008656476 +2,4778,7,128,3.43805027,0.108432012,1180.4632,3008656476 +2,4779,8,128,3.63263702,0.108438253,1180.39526,3008656476 +2,4780,9,128,3.2685039,0.108507756,1179.63918,3008656476 +2,4781,10,128,2.8821888,0.108364841,1181.19492,3008656476 +2,4782,11,128,3.19862151,0.108410618,1180.69616,3008656476 +2,4783,12,128,2.54753923,0.108321857,1181.66364,3008656476 +2,4784,13,128,2.27026153,0.124134496,1031.13964,3008656476 +2,4785,14,128,2.29646802,0.12234081,1046.25758,3008656476 +2,4786,15,128,2.5203774,0.108509668,1179.61839,3008656476 +2,4787,16,128,3.05872893,0.108473872,1180.00766,3008656476 +2,4788,17,128,2.99163365,0.108478637,1179.95583,3008656476 +2,4789,18,128,2.85684562,0.108408058,1180.72404,3008656476 +2,4790,19,128,3.05700254,0.108402577,1180.78374,3008656476 +2,4791,20,128,2.83866549,0.108289169,1182.02034,3008656476 +2,4792,21,128,3.34329033,0.108443483,1180.33833,3008656476 +2,4793,22,128,2.60489821,0.120716259,1060.3377,3008656476 +2,4794,23,128,1.95808136,0.108395112,1180.86506,3008656476 +2,4795,24,128,2.30271006,0.113158118,1131.16056,3008656476 +2,4796,25,128,2.79329538,0.108426382,1180.5245,3008656476 +2,4797,26,128,2.68135333,0.108494636,1179.78183,3008656476 +2,4798,27,128,3.02386999,0.108408186,1180.72264,3008656476 +2,4799,28,128,2.64542818,0.108493483,1179.79437,3008656476 +2,4800,29,128,2.54239392,0.108344948,1181.4118,3008656476 +2,4801,30,128,2.34496403,0.108460974,1180.14799,3008656476 +2,4802,31,128,2.67370248,0.108418399,1180.61142,3008656476 +2,4803,32,128,2.99895644,0.120815417,1059.46744,3008656476 +2,4804,33,128,2.89359522,0.123998193,1032.27311,3008656476 +2,4805,34,128,2.88126421,0.108271665,1182.21143,3008656476 +2,4806,35,128,2.94452262,0.108778446,1176.7037,3008656476 +2,4807,36,128,2.89454126,0.108396078,1180.85453,3008656476 +2,4808,37,128,2.51426935,0.108465459,1180.09919,3008656476 +2,4809,38,128,2.6033659,0.108474381,1180.00212,3008656476 +2,4810,39,128,1.99262726,0.108431413,1180.46972,3008656476 +2,4811,40,128,2.92144084,0.108351559,1181.33972,3008656476 +2,4812,41,128,2.8839221,0.122630724,1043.7841,3008656476 +2,4813,42,128,2.89215493,0.108339226,1181.4742,3008656476 +2,4814,43,128,3.28005433,0.11557986,1107.45938,3008656476 +2,4815,44,128,3.41761923,0.108324354,1181.6364,3008656476 +2,4816,45,128,3.18478489,0.108491985,1179.81066,3008656476 +2,4817,46,128,2.49704242,0.108378996,1181.04065,3008656476 +2,4818,47,128,2.96704626,0.108408009,1180.72457,3008656476 +2,4819,48,128,2.62598753,0.108286857,1182.04557,3008656476 +2,4820,49,128,2.9381237,0.10854779,1179.20411,3008656476 +2,4821,50,128,2.52621055,0.108345735,1181.40322,3008656476 +2,4822,51,128,3.27005482,0.121573604,1052.86013,3008656476 +2,4823,52,128,2.38323975,0.125312736,1021.44446,3008656476 +2,4824,53,128,3.18439937,0.108593994,1178.70239,3008656476 +2,4825,54,128,2.27388,0.108393048,1180.88754,3008656476 +2,4826,55,128,2.5126493,0.108523582,1179.46715,3008656476 +2,4827,56,128,3.27086377,0.108356997,1181.28043,3008656476 +2,4828,57,128,2.70088577,0.108434038,1180.44115,3008656476 +2,4829,58,128,2.64986467,0.108381443,1181.01399,3008656476 +2,4830,59,128,2.90126872,0.108544619,1179.23856,3008656476 +2,4831,60,128,2.71623278,0.1206483,1060.93497,3008656476 +2,4832,61,128,3.39176512,0.113453177,1128.21874,3008656476 +2,4833,62,128,2.5224154,0.141124289,907.001912,3008656476 +2,4834,63,128,3.23121953,0.132975125,962.586048,3008656476 +2,4835,64,128,2.25781679,0.134036711,954.962257,3008656476 +2,4836,65,128,3.1238873,0.13153902,973.095284,3008656476 +2,4837,66,128,2.84455919,0.132372687,966.966849,3008656476 +2,4838,67,128,3.39597821,0.132469083,966.2632,3008656476 +2,4839,68,128,3.76410413,0.146715152,872.43886,3008656476 +2,4840,69,128,2.89113641,0.143969234,889.078843,3008656476 +2,4841,70,128,3.40196872,0.132517593,965.909485,3008656476 +2,4842,71,128,3.22474957,0.133621195,957.931861,3008656476 +2,4843,72,128,2.91660404,0.132717342,964.455723,3008656476 +2,4844,73,128,2.95295,0.132540719,965.740951,3008656476 +2,4845,74,128,2.70845366,0.132294346,967.539459,3008656476 +2,4846,75,128,2.56461549,0.134134427,954.266573,3008656476 +2,4847,76,128,3.67431211,0.146623745,872.982749,3008656476 +2,4848,77,128,3.32358503,0.144172782,887.823612,3008656476 +2,4849,78,128,2.94286275,0.131692084,971.964268,3008656476 +2,4850,79,128,2.96245909,0.132817121,963.731174,3008656476 +2,4851,80,128,3.19155908,0.131240841,975.306155,3008656476 +2,4852,81,128,3.29694366,0.132251618,967.852053,3008656476 +2,4853,82,128,3.26583123,0.13191205,970.343498,3008656476 +2,4854,83,128,3.29077697,0.132896733,963.15385,3008656476 +2,4855,84,128,2.72505951,0.143678261,890.879379,3008656476 +2,4856,85,128,2.64310098,0.14495839,883.012015,3008656476 +2,4857,86,128,2.76381016,0.129244247,990.372902,3008656476 +2,4858,87,128,2.31833076,0.129016901,992.118079,3008656476 +2,4859,88,128,2.29773712,0.127907868,1000.7203,3008656476 +2,4860,89,128,2.89843011,0.127440714,1004.3886,3008656476 +2,4861,90,128,2.6087296,0.127504568,1003.8856,3008656476 +2,4862,91,128,2.72317266,0.127893526,1000.83252,3008656476 +2,4863,92,128,2.74484825,0.143032435,894.901915,3008656476 +2,4864,93,128,2.60199189,0.14356454,891.585067,3008656476 +2,4865,94,128,2.47849989,0.128443636,996.546065,3008656476 +2,4866,95,128,2.82406378,0.128098849,999.228338,3008656476 +2,4867,96,128,2.40446043,0.127930757,1000.54125,3008656476 +2,4868,97,128,2.99801612,0.128188573,998.528941,3008656476 +2,4869,98,128,2.84084392,0.126800127,1009.46271,3008656476 +2,4870,99,128,2.83468628,0.130012462,984.521007,3008656476 +2,4871,100,128,3.10102105,0.143525122,891.829933,3008656476 +2,4872,101,128,2.56367517,0.141749275,903.002855,3008656476 +2,4873,102,128,2.80628633,0.127073966,1007.28736,3008656476 +2,4874,103,128,2.77013206,0.126251525,1013.84914,3008656476 +2,4875,104,128,2.20628095,0.126896222,1008.69827,3008656476 +2,4876,105,128,2.98970103,0.126161782,1014.57032,3008656476 +2,4877,106,128,2.75905681,0.127103069,1007.05672,3008656476 +2,4878,107,128,2.51249385,0.125011606,1023.90493,3008656476 +2,4879,108,128,2.87185764,0.143586183,891.450677,3008656476 +2,4880,109,128,2.00628066,0.139146693,919.892505,3008656476 +2,4881,110,128,2.61161232,0.130012957,984.517259,3008656476 +2,4882,111,128,2.75386977,0.12654959,1011.4612,3008656476 +2,4883,112,128,3.01149321,0.127445254,1004.35282,3008656476 +2,4884,113,128,3.47223711,0.125997142,1015.89606,3008656476 +2,4885,114,128,3.34639359,0.12664549,1010.69529,3008656476 +2,4886,115,128,3.29843283,0.125411251,1020.64208,3008656476 +2,4887,116,128,2.43724132,0.143310368,893.166362,3008656476 +2,4888,117,128,2.86948276,0.13815038,926.526586,3008656476 +2,4889,118,128,2.66624498,0.125734771,1018.01593,3008656476 +2,4890,119,128,3.19700718,0.125793807,1017.53817,3008656476 +2,4891,120,128,2.85215187,0.125908359,1016.61241,3008656476 +2,4892,121,128,2.74438763,0.125809613,1017.41033,3008656476 +2,4893,122,128,2.17577481,0.126755665,1009.8168,3008656476 +2,4894,123,128,2.49370217,0.126081384,1015.21728,3008656476 +2,4895,124,128,2.29013848,0.141693299,903.359587,3008656476 +2,4896,125,128,2.34916186,0.14074149,909.468842,3008656476 +2,4897,126,128,2.34220219,0.126605269,1011.01637,3008656476 +2,4898,127,128,3.11774516,0.126512124,1011.76074,3008656476 +2,4899,128,128,3.18315792,0.126902862,1008.64549,3008656476 +2,4900,129,128,2.82960796,0.126996122,1007.90479,3008656476 +2,4901,130,128,2.78965616,0.126353012,1013.03481,3008656476 +2,4902,131,128,2.69236088,0.125656596,1018.64927,3008656476 +2,4903,132,128,2.25360227,0.139828628,915.40625,3008656476 +2,4904,133,128,2.61524963,0.139042536,920.581598,3008656476 +2,4905,134,128,2.70718813,0.127436576,1004.42121,3008656476 +2,4906,135,128,2.50196934,0.126605248,1011.01654,3008656476 +2,4907,136,128,2.33532953,0.127360102,1005.02432,3008656476 +2,4908,137,128,2.29189301,0.125707834,1018.23407,3008656476 +2,4909,138,128,2.01167822,0.125974828,1016.07601,3008656476 +2,4910,139,128,2.41260481,0.126125904,1014.85893,3008656476 +2,4911,140,128,1.91975987,0.140772412,909.269069,3008656476 +2,4912,141,128,1.82363772,0.126328997,1013.22739,3008656476 +2,4913,142,128,2.46501732,0.1263871,1012.76159,3008656476 +2,4914,143,128,2.11927724,0.126378048,1012.83413,3008656476 +2,4915,144,128,1.42848659,0.126893792,1008.71759,3008656476 +2,4916,145,128,1.30497801,0.126135731,1014.77986,3008656476 +2,4917,146,128,2.23295903,0.127872675,1000.99572,3008656476 +2,4918,147,128,2.96684742,0.127890319,1000.85762,3008656476 +2,4919,148,128,3.09637713,0.141071293,907.342644,3008656476 +2,4920,149,128,2.39433908,0.125478826,1020.09243,3008656476 +2,4921,150,128,1.82045436,0.143090185,894.54074,3008656476 +2,4922,151,128,1.41880262,0.128803753,993.759864,3008656476 +2,4923,152,128,2.31490397,0.128343433,997.324109,3008656476 +2,4924,153,128,2.65697074,0.129583793,987.777847,3008656476 +2,4925,154,128,1.88124776,0.131167078,975.854627,3008656476 +2,4926,155,128,3.08758593,0.135120358,947.303588,3008656476 +2,4927,156,128,3.16814661,0.152423422,839.765951,3008656476 +2,4928,157,128,3.01905131,0.151841917,842.981981,3008656476 +2,4929,158,128,2.54193068,0.134607021,950.916223,3008656476 +2,4930,159,128,2.18746948,0.143675897,890.894038,3008656476 +2,4931,160,128,2.49204636,0.134573748,951.151335,3008656476 +2,4932,161,128,2.54659224,0.130381896,981.73139,3008656476 +2,4933,162,128,2.27508307,0.131082247,976.48616,3008656476 +2,4934,163,128,3.23445415,0.133200943,960.954158,3008656476 +2,4935,164,128,2.94795203,0.14410969,888.212306,3008656476 +2,4936,165,128,2.59752774,0.14311367,894.393946,3008656476 +2,4937,166,128,3.00785947,0.128706913,994.507576,3008656476 +2,4938,167,128,2.45246291,0.131679291,972.058697,3008656476 +2,4939,168,128,2.47021556,0.129213124,990.611449,3008656476 +2,4940,169,128,2.45424199,0.129965683,984.875369,3008656476 +2,4941,170,128,2.75949383,0.130899207,977.851608,3008656476 +2,4942,171,128,2.47249079,0.127814395,1001.45214,3008656476 +2,4943,172,128,2.4670372,0.143019371,894.983659,3008656476 +2,4944,173,128,2.48434854,0.142042719,901.137354,3008656476 +2,4945,174,128,2.00540686,0.127019096,1007.72249,3008656476 +2,4946,175,128,2.70322037,0.128780444,993.939732,3008656476 +2,4947,176,128,2.0402379,0.128749281,994.180309,3008656476 +2,4948,177,128,3.12204838,0.126684557,1010.38361,3008656476 +2,4949,178,128,2.13481092,0.125501564,1019.90761,3008656476 +2,4950,179,128,3.27474546,0.126036271,1015.58067,3008656476 +2,4951,180,128,2.64450336,0.140992592,907.849116,3008656476 +2,4952,181,128,2.62056613,0.142207573,900.092712,3008656476 +2,4953,182,128,3.07864785,0.126033141,1015.60589,3008656476 +2,4954,183,128,1.92727649,0.126504423,1011.82233,3008656476 +2,4955,184,128,2.08209372,0.125732645,1018.03314,3008656476 +2,4956,185,128,2.64796543,0.125901786,1016.66548,3008656476 +2,4957,186,128,2.25397873,0.127236121,1006.00363,3008656476 +2,4958,187,128,2.07367635,0.126149453,1014.66948,3008656476 +2,4959,188,128,2.8619585,0.140387537,911.761847,3008656476 +2,4960,189,128,2.60612416,0.140173986,913.150889,3008656476 +2,4961,190,128,2.57968807,0.125938144,1016.37197,3008656476 +2,4962,191,128,2.11137509,0.125372546,1020.95717,3008656476 +2,4963,192,128,1.96049571,0.126483523,1011.98952,3008656476 +2,4964,193,128,2.66773629,0.125874665,1016.88453,3008656476 +2,4965,194,128,2.41821313,0.126143137,1014.72029,3008656476 +2,4966,195,128,2.88738966,0.12593799,1016.37322,3008656476 +2,4967,196,128,2.55184078,0.138570373,923.718377,3008656476 +2,4968,197,128,2.43947721,0.126684533,1010.3838,3008656476 +2,4969,198,128,2.26759267,0.130066063,984.11528,3008656476 +2,4970,199,128,2.70953369,0.125340733,1021.2163,3008656476 +2,4971,200,128,2.63401842,0.125947831,1016.2938,3008656476 +2,4972,201,128,2.30281019,0.125454328,1020.29162,3008656476 +2,4973,202,128,3.21581268,0.126789563,1009.54682,3008656476 +2,4974,203,128,2.50931787,0.128084281,999.341988,3008656476 +2,4975,204,128,2.52083611,0.14086346,908.681357,3008656476 +2,4976,205,128,2.54556108,0.121400644,1054.36014,3008656476 +2,4977,206,128,1.95281637,0.142895487,895.75957,3008656476 +2,4978,207,128,2.19141006,0.130727154,979.13858,3008656476 +2,4979,208,128,2.03522396,0.132212947,968.13514,3008656476 +2,4980,209,128,2.2010138,0.139304663,918.849357,3008656476 +2,4981,210,128,1.97000623,0.142156293,900.417402,3008656476 +2,4982,211,128,2.32718205,0.130129011,983.639229,3008656476 +2,4983,212,128,2.46642518,0.144448067,886.131623,3008656476 +2,4984,213,128,2.23792958,0.129707968,986.832204,3008656476 +2,4985,214,128,1.8322649,0.132273677,967.690646,3008656476 +2,4986,215,128,1.92216444,0.12935454,989.52847,3008656476 +2,4987,216,128,2.66905141,0.128944012,992.6789,3008656476 +2,4988,217,128,2.4490931,0.130015183,984.500403,3008656476 +2,4989,218,128,2.06734753,0.128708816,994.492871,3008656476 +2,4990,219,128,2.67314935,0.12753743,1003.62694,3008656476 +2,4991,220,128,2.22180581,0.142134803,900.55354,3008656476 +2,4992,221,128,2.03456831,0.127613505,1003.02864,3008656476 +2,4993,222,128,2.38961124,0.133557612,958.387905,3008656476 +2,4994,223,128,1.99702191,0.126027441,1015.65182,3008656476 +2,4995,224,128,2.29067969,0.126049281,1015.47584,3008656476 +2,4996,225,128,2.35261726,0.125287598,1021.64941,3008656476 +2,4997,226,128,2.33290935,0.125486477,1020.03023,3008656476 +2,4998,227,128,2.81684852,0.126172675,1014.48273,3008656476 +2,4999,228,128,2.27829862,0.125891871,1016.74555,3008656476 +2,5000,229,128,2.26269293,0.132423475,966.595991,3008656476 +2,5001,230,128,2.43005276,0.143006327,895.065293,3008656476 +2,5002,231,128,2.74432445,0.12580106,1017.4795,3008656476 +2,5003,232,128,2.3106916,0.126939032,1008.35809,3008656476 +2,5004,233,128,2.7182827,0.125766793,1017.75673,3008656476 +2,5005,234,128,2.57170677,0.125909528,1016.60297,3008656476 +2,5006,235,128,2.0424037,0.12602528,1015.66924,3008656476 +2,5007,236,128,2.73372984,0.125976513,1016.06241,3008656476 +2,5008,237,128,2.19820523,0.140569441,910.581981,3008656476 +2,5009,238,128,2.71160913,0.138844797,921.892666,3008656476 +2,5010,239,128,2.91098523,0.125653035,1018.67814,3008656476 +2,5011,240,128,2.70477748,0.125531567,1019.66384,3008656476 +2,5012,241,128,2.20444965,0.124635741,1026.99273,3008656476 +2,5013,242,128,2.37254477,0.126386751,1012.76438,3008656476 +2,5014,243,128,2.52001572,0.126976626,1008.05955,3008656476 +2,5015,244,128,2.90156388,0.126674645,1010.46267,3008656476 +2,5016,245,128,2.12294364,0.140116388,913.526261,3008656476 +2,5017,246,128,2.54538941,0.144176141,887.802927,3008656476 +2,5018,247,128,2.63152933,0.127078146,1007.25423,3008656476 +2,5019,248,128,2.65342784,0.128364975,997.15674,3008656476 +2,5020,249,128,1.47235751,0.129323902,989.762898,3008656476 +2,5021,250,128,2.04365826,0.129522089,988.248421,3008656476 +2,5022,251,128,2.87036085,0.128981948,992.386935,3008656476 +2,5023,252,128,2.67990994,0.129994293,984.658611,3008656476 +2,5024,253,128,2.32887387,0.143848974,889.822127,3008656476 +2,5025,254,128,2.69066215,0.145838553,877.682872,3008656476 +2,5026,255,128,2.832021,0.129265758,990.208095,3008656476 +2,5027,256,128,2.4330368,0.130773057,978.79489,3008656476 +2,5028,257,128,2.81180906,0.129618511,987.513273,3008656476 +2,5029,258,128,2.24833035,0.130417586,981.46273,3008656476 +2,5030,259,128,2.62205863,0.130028084,984.402723,3008656476 +2,5031,260,128,2.86611986,0.128254396,998.016473,3008656476 +2,5032,261,128,2.45244241,0.143379388,892.736409,3008656476 +2,5033,262,128,2.8370769,0.141073945,907.325587,3008656476 +2,5034,263,128,2.0071609,0.127414746,1004.5933,3008656476 +2,5035,264,128,2.22483945,0.129112958,991.379967,3008656476 +2,5036,265,128,2.2820003,0.126571967,1011.28238,3008656476 +2,5037,266,128,2.25845695,0.128249155,998.057258,3008656476 +2,5038,267,128,1.63651502,0.126690739,1010.33431,3008656476 +2,5039,268,128,1.77203119,0.12647241,1012.07844,3008656476 +2,5040,269,128,2.52978826,0.142840712,896.103066,3008656476 +2,5041,270,128,3.03841519,0.140373527,911.852845,3008656476 +2,5042,271,128,2.09403992,0.128065202,999.490869,3008656476 +2,5043,272,128,2.39528656,0.126293124,1013.51519,3008656476 +2,5044,273,128,2.78482819,0.126629052,1010.82649,3008656476 +2,5045,274,128,2.0334444,0.126524754,1011.65974,3008656476 +2,5046,275,128,2.3941946,0.125773467,1017.70272,3008656476 +2,5047,276,128,2.59321761,0.125950182,1016.27483,3008656476 +2,5048,277,128,2.92641711,0.14034987,912.006545,3008656476 +2,5049,278,128,2.18418288,0.139518173,917.443206,3008656476 +2,5050,279,128,2.21069551,0.125717189,1018.1583,3008656476 +2,5051,280,128,2.34030581,0.125854913,1017.04413,3008656476 +2,5052,281,128,2.11532831,0.125605818,1019.06108,3008656476 +2,5053,282,128,1.66159284,0.126466619,1012.12479,3008656476 +2,5054,283,128,2.00484061,0.126293917,1013.50883,3008656476 +2,5055,284,128,1.79053211,0.126207451,1014.20319,3008656476 +2,5056,285,128,1.90589535,0.140234097,912.75947,3008656476 +2,5057,286,128,2.31733274,0.141409291,905.173904,3008656476 +2,5058,287,128,1.93851948,0.126011482,1015.78045,3008656476 +2,5059,288,128,1.80454695,0.126245015,1013.90142,3008656476 +2,5060,289,128,2.40147471,0.12714419,1006.73102,3008656476 +2,5061,290,128,2.08268762,0.186412042,686.650919,3008656476 +2,5062,291,128,2.81003213,0.125509061,1019.84669,3008656476 +2,5063,292,128,2.42197609,0.126613036,1010.95435,3008656476 +2,5064,293,128,1.95381367,0.139972721,914.463898,3008656476 +2,5065,294,128,1.94551611,0.144015395,888.793868,3008656476 +2,5066,295,128,2.37345123,0.126479915,1012.01839,3008656476 +2,5067,296,128,2.96273184,0.126719355,1010.10615,3008656476 +2,5068,297,128,2.26477504,0.126820799,1009.29817,3008656476 +2,5069,298,128,2.41273475,0.126040946,1015.543,3008656476 +2,5070,299,128,2.65514851,0.12609201,1015.13173,3008656476 +2,5071,300,128,2.3089292,0.126512645,1011.75657,3008656476 +2,5072,301,128,2.36826086,0.14101467,907.706978,3008656476 +2,5073,302,128,2.33504581,0.142149858,900.458163,3008656476 +2,5074,303,128,2.48008108,0.125548808,1019.52382,3008656476 +2,5075,304,128,2.16177821,0.126078349,1015.24172,3008656476 +2,5076,305,128,2.32481575,0.126280127,1013.61951,3008656476 +2,5077,306,128,2.28964448,0.126290996,1013.53227,3008656476 +2,5078,307,128,1.96100557,0.127236045,1006.00423,3008656476 +2,5079,308,128,2.87070131,0.125834798,1017.2067,3008656476 +2,5080,309,128,2.71595764,0.140153572,913.283894,3008656476 +2,5081,310,128,2.21438956,0.143189826,893.918259,3008656476 +2,5082,311,128,2.05308414,0.126186742,1014.36964,3008656476 +2,5083,312,128,2.13516593,0.125726944,1018.07931,3008656476 +2,5084,313,128,2.28163648,0.125745253,1017.93107,3008656476 +2,5085,314,128,1.65474367,0.125286488,1021.65846,3008656476 +2,5086,315,128,2.2100935,0.126785375,1009.58017,3008656476 +2,5087,316,128,2.3698287,0.124477458,1028.29863,3008656476 +2,5088,317,128,2.25814319,0.139345527,918.579898,3008656476 +2,5089,318,128,2.58802176,0.139441972,917.944563,3008656476 +2,5090,319,128,2.58720636,0.126743722,1009.91195,3008656476 +2,5091,320,128,3.00549221,0.126628631,1010.82985,3008656476 +2,5092,321,128,2.2882154,0.126724979,1010.06132,3008656476 +2,5093,322,128,2.33135486,0.127112263,1006.98388,3008656476 +2,5094,323,128,2.42545962,0.127622667,1002.95663,3008656476 +2,5095,324,128,1.77240825,0.128394033,996.931065,3008656476 +2,5096,325,128,2.81625366,0.141568836,904.153793,3008656476 +2,5097,326,128,2.59136415,0.14334834,892.929768,3008656476 +2,5098,327,128,2.74466896,0.125196902,1022.38952,3008656476 +2,5099,328,128,2.62538886,0.129007098,992.193468,3008656476 +2,5100,329,128,2.4691565,0.129426121,988.981196,3008656476 +2,5101,330,128,3.33607125,0.130970668,977.318066,3008656476 +2,5102,331,128,2.6540451,0.132319341,967.356692,3008656476 +2,5103,332,128,2.12561345,0.134324648,952.915209,3008656476 +2,5104,333,128,2.83419275,0.144185554,887.744968,3008656476 +2,5105,334,128,2.56312561,0.146299455,874.917818,3008656476 +2,5106,335,128,2.81511045,0.130144679,983.520809,3008656476 +2,5107,336,128,2.60414314,0.130373461,981.794907,3008656476 +2,5108,337,128,2.70114994,0.128324097,997.474387,3008656476 +2,5109,338,128,2.29096842,0.130507194,980.788844,3008656476 +2,5110,339,128,2.71283555,0.128149416,998.834049,3008656476 +2,5111,340,128,2.4937315,0.128813122,993.687584,3008656476 +2,5112,341,128,2.46849179,0.143237603,893.620092,3008656476 +2,5113,342,128,2.46626401,0.136612764,936.95491,3008656476 +2,5114,343,128,2.20673656,0.127703733,1002.31996,3008656476 +2,5115,344,128,2.77273464,0.12751735,1003.78498,3008656476 +2,5116,345,128,2.12744498,0.126902204,1008.65072,3008656476 +2,5117,346,128,2.14225626,0.129987741,984.708243,3008656476 +2,5118,347,128,2.96339011,0.127003976,1007.84246,3008656476 +2,5119,348,128,2.53798938,0.126782462,1009.60336,3008656476 +2,5120,349,128,2.82066107,0.139529257,917.370326,3008656476 +2,5121,350,128,2.89701056,0.139785039,915.6917,3008656476 +2,5122,351,128,2.66808343,0.126490262,1011.93561,3008656476 +2,5123,352,128,3.02411342,0.125445485,1020.36355,3008656476 +2,5124,353,128,2.73122787,0.126124606,1014.86937,3008656476 +2,5125,354,128,2.24791121,0.126827572,1009.24427,3008656476 +2,5126,355,128,2.57013249,0.126537578,1011.55722,3008656476 +2,5127,356,128,2.77220631,0.126379988,1012.81858,3008656476 +2,5128,357,128,2.25189424,0.139093775,920.242477,3008656476 +2,5129,358,128,1.63060772,0.126239691,1013.94418,3008656476 +2,5130,359,128,2.0790751,0.129678664,987.055203,3008656476 +2,5131,360,128,2.40605044,0.126586286,1011.16799,3008656476 +2,5132,361,128,2.21374011,0.126279145,1013.62739,3008656476 +2,5133,362,128,2.26392198,0.126529122,1011.62482,3008656476 +2,5134,363,128,2.37575793,0.125694882,1018.339,3008656476 +2,5135,364,128,2.56962943,0.127097899,1007.09769,3008656476 +2,5136,365,128,2.65493631,0.138761509,922.446008,3008656476 +2,5137,366,128,2.62543368,0.125823801,1017.29561,3008656476 +2,5138,367,128,2.75388622,0.139044638,920.567681,3008656476 +2,5139,368,128,2.16915584,0.124834224,1025.35984,3008656476 +2,5140,369,128,2.48630953,0.125816116,1017.35774,3008656476 +2,5141,370,128,2.45151639,0.125647638,1018.7219,3008656476 +2,5142,371,128,2.25915837,0.12644596,1012.29015,3008656476 +2,5143,372,128,2.56566882,0.127335382,1005.21943,3008656476 +2,5144,373,128,2.93699169,0.127965476,1000.26979,3008656476 +2,5145,374,128,2.7498107,0.135772895,942.75076,3008656476 +2,5146,375,128,1.97259247,0.143667591,890.945544,3008656476 +2,5147,376,128,3.14837241,0.129577547,987.82546,3008656476 +2,5148,377,128,1.83649766,0.131765478,971.422879,3008656476 +2,5149,378,128,2.47483659,0.138884054,921.632083,3008656476 +2,5150,379,128,1.80800641,0.133823134,956.486343,3008656476 +2,5151,380,128,2.26077414,0.129808589,986.067262,3008656476 +2,5152,381,128,2.04101467,0.145381482,880.442256,3008656476 +2,5153,382,128,1.73958671,0.130195308,983.138348,3008656476 +2,5154,383,128,1.92687666,0.145723603,878.375207,3008656476 +2,5155,384,128,3.11723757,0.129891399,985.438612,3008656476 +2,5156,385,128,3.06367397,0.129682955,987.022543,3008656476 +2,5157,386,128,2.37966609,0.129323288,989.767597,3008656476 +2,5158,387,128,2.06432962,0.129670214,987.119525,3008656476 +2,5159,388,128,2.76013184,0.128551753,995.707931,3008656476 +2,5160,389,128,3.10696363,0.142055191,901.058237,3008656476 +2,5161,390,128,2.75488663,0.128606583,995.283422,3008656476 +2,5162,391,128,2.83806562,0.148960666,859.287243,3008656476 +2,5163,392,128,2.10305214,0.129595204,987.690872,3008656476 +2,5164,393,128,2.67390156,0.12893039,992.78378,3008656476 +2,5165,394,128,2.2842207,0.130120233,983.705586,3008656476 +2,5166,395,128,2.66446543,0.129864198,985.64502,3008656476 +2,5167,396,128,2.51134372,0.128246836,998.075305,3008656476 +2,5168,397,128,3.04953742,0.14112007,907.029029,3008656476 +2,5169,398,128,2.51980233,0.127657978,1002.67921,3008656476 +2,5170,399,128,2.93373799,0.143236771,893.625283,3008656476 +2,5171,400,128,2.45727134,0.127812675,1001.46562,3008656476 +2,5172,401,128,2.73556757,0.126874903,1008.86777,3008656476 +2,5173,402,128,2.47636127,0.127342233,1005.16535,3008656476 +2,5174,403,128,2.26756692,0.127980663,1000.15109,3008656476 +2,5175,404,128,2.45686817,0.12709439,1007.12549,3008656476 +2,5176,405,128,2.27731228,0.13806001,927.133063,3008656476 +2,5177,406,128,2.34693217,0.126663615,1010.55066,3008656476 +2,5178,407,128,1.65841746,0.145231268,881.352905,3008656476 +2,5179,408,128,1.98563313,0.127510026,1003.84263,3008656476 +2,5180,409,128,2.76093698,0.12624847,1013.87367,3008656476 +2,5181,410,128,1.92991436,0.126931387,1008.41882,3008656476 +2,5182,411,128,2.57953191,0.125825377,1017.28286,3008656476 +2,5183,412,128,1.99219108,0.125651803,1018.68813,3008656476 +2,5184,413,128,2.06749272,0.135955711,941.483069,3008656476 +2,5185,414,128,2.17147303,0.123811947,1033.82592,3008656476 +2,5186,415,128,2.8242054,0.14394518,889.227413,3008656476 +2,5187,416,128,2.35308409,0.125813,1017.38294,3008656476 +2,5188,417,128,1.95431435,0.12582219,1017.30863,3008656476 +2,5189,418,128,2.22804976,0.126258231,1013.79529,3008656476 +2,5190,419,128,1.50421059,0.125966421,1016.14382,3008656476 +2,5191,420,128,1.43984509,0.127125058,1006.88253,3008656476 +2,5192,421,128,2.36524606,0.126766312,1009.73199,3008656476 +2,5193,422,128,2.09052825,0.13568105,943.388926,3008656476 +2,5194,423,128,2.43462849,0.143617674,891.255209,3008656476 +2,5195,424,128,2.89653778,0.126747141,1009.88471,3008656476 +2,5196,425,128,3.05093861,0.127148522,1006.69672,3008656476 +2,5197,426,128,3.35302186,0.126549707,1011.46026,3008656476 +2,5198,427,128,2.32608318,0.126001966,1015.85717,3008656476 +2,5199,428,128,1.70430076,0.127610242,1003.05428,3008656476 +2,5200,429,128,1.61987615,0.125830055,1017.24505,3008656476 +2,5201,430,128,1.72867429,0.141264764,906.099981,3008656476 +2,5202,431,128,1.69175291,0.1412319,906.310826,3008656476 +2,5203,432,128,1.90596294,0.125957427,1016.21638,3008656476 +2,5204,433,128,1.7822789,0.125764834,1017.77258,3008656476 +2,5205,434,128,2.39282703,0.125795573,1017.52388,3008656476 +2,5206,435,128,2.4165318,0.126255988,1013.8133,3008656476 +2,5207,436,128,2.90132546,0.12612335,1014.87948,3008656476 +2,5208,437,128,1.98245215,0.125414149,1020.61849,3008656476 +2,5209,438,128,1.97288215,0.140480291,911.159844,3008656476 +2,5210,439,128,2.43938518,0.141914855,901.949271,3008656476 +2,5211,440,128,2.32441592,0.124872201,1025.048,3008656476 +2,5212,441,128,2.06109238,0.125450695,1020.32117,3008656476 +2,5213,442,128,2.15891123,0.125972329,1016.09616,3008656476 +2,5214,443,128,1.94482243,0.125798781,1017.49794,3008656476 +2,5215,444,128,1.9189328,0.126218028,1014.11821,3008656476 +2,5216,445,128,2.13032007,0.126238137,1013.95666,3008656476 +2,5217,446,128,2.28904414,0.142646966,897.320172,3008656476 +2,5218,447,128,2.86490941,0.138800399,922.187551,3008656476 +2,5219,448,128,2.45081782,0.124031658,1031.99459,3008656476 +2,5220,449,128,2.59337592,0.128600854,995.32776,3008656476 +2,5221,450,128,2.36178684,0.130193771,983.149954,3008656476 +2,5222,451,128,3.00583434,0.129226074,990.512178,3008656476 +2,5223,452,128,2.36555481,0.128953941,992.602467,3008656476 +2,5224,453,128,2.28594947,0.129581909,987.792208,3008656476 +2,5225,454,128,2.64682031,0.145359556,880.575062,3008656476 +2,5226,455,128,2.84543633,0.146697716,872.542555,3008656476 +2,5227,456,128,2.7715652,0.130586756,980.191284,3008656476 +2,5228,457,128,2.78513718,0.139228823,919.349868,3008656476 +2,5229,458,128,2.74547267,0.143179414,893.983265,3008656476 +2,5230,459,128,1.93761504,0.143409735,892.547497,3008656476 +2,5231,460,128,2.74366665,0.143363855,892.833134,3008656476 +2,5232,461,128,2.63933754,0.15384514,832.005483,3008656476 +2,5233,462,128,2.52299905,0.137565373,930.46671,3008656476 +2,5234,463,128,1.95094597,0.14532076,880.810147,3008656476 +2,5235,464,128,2.07192779,0.129494475,988.45916,3008656476 +2,5236,465,128,1.88164485,0.132326207,967.306499,3008656476 +2,5237,466,128,1.9597069,0.129695438,986.927543,3008656476 +2,5238,467,128,2.19615674,0.130212316,983.009933,3008656476 +2,5239,468,128,2.93686461,0.128239034,998.136028,3008656476 +2,5240,469,128,2.81334448,0.140925777,908.279541,3008656476 +2,5241,470,128,2.68321991,0.128945346,992.66863,3008656476 +2,5242,471,128,1.75471473,0.142973447,895.271134,3008656476 +2,5243,472,128,3.18408871,0.127248752,1005.90377,3008656476 +2,5244,473,128,2.47765613,0.127932963,1000.524,3008656476 +2,5245,474,128,2.11730504,0.126979818,1008.03421,3008656476 +2,5246,475,128,1.73950517,0.130841237,978.284851,3008656476 +2,5247,476,128,2.17811155,0.126618658,1010.90947,3008656476 +2,5248,477,128,2.40205979,0.14105692,907.435098,3008656476 +2,5249,478,128,2.4992702,0.125821154,1017.31701,3008656476 +2,5250,479,128,2.90692425,0.143639831,891.117729,3008656476 +2,5251,480,128,2.54800677,0.125673982,1018.50835,3008656476 +2,5252,481,128,2.14973974,0.126336732,1013.16536,3008656476 +2,5253,482,128,2.06522655,0.12569968,1018.30013,3008656476 +2,5254,483,128,2.56664658,0.125830473,1017.24167,3008656476 +2,5255,484,128,2.52577853,0.12618186,1014.40889,3008656476 +2,5256,485,128,2.16287971,0.142573016,897.785595,3008656476 +2,5257,486,128,1.86122823,0.11705016,1093.54827,3008656476 +2,5258,487,128,2.61491799,0.144022971,888.747115,3008656476 +2,5259,488,128,2.0918231,0.126050544,1015.46567,3008656476 +2,5260,489,128,3.03605008,0.126687592,1010.3594,3008656476 +2,5261,490,128,3.09968257,0.126192214,1014.32565,3008656476 +2,5262,491,128,2.95495415,0.126044903,1015.51112,3008656476 +2,5263,492,128,2.37346578,0.126899618,1008.67128,3008656476 +2,5264,493,128,2.42168546,0.125529115,1019.68376,3008656476 +2,5265,494,128,2.47232223,0.140963327,908.037592,3008656476 +2,5266,495,128,2.52759957,0.144368891,886.617602,3008656476 +2,5267,496,128,2.97253108,0.125672404,1018.52114,3008656476 +2,5268,497,128,3.04279137,0.126413006,1012.55404,3008656476 +2,5269,498,128,3.05711198,0.125533487,1019.64825,3008656476 +2,5270,499,128,2.66917849,0.125616249,1018.97645,3008656476 +2,5271,500,128,3.07933545,0.125917215,1016.54091,3008656476 +2,5272,501,128,2.96239781,0.126608775,1010.98838,3008656476 +2,5273,502,128,2.21016264,0.139730828,916.046959,3008656476 +2,5274,503,128,2.87208915,0.140979798,907.931504,3008656476 +2,5275,504,128,3.01578808,0.12550906,1019.84669,3008656476 +2,5276,505,128,3.03080297,0.125500096,1019.91954,3008656476 +2,5277,506,128,3.05794144,0.124604191,1027.25277,3008656476 +2,5278,507,128,2.4121511,0.124803491,1025.61234,3008656476 +2,5279,508,128,2.86421776,0.126205625,1014.21787,3008656476 +2,5280,509,128,2.77376342,0.125996718,1015.89948,3008656476 +2,5281,510,128,2.83332515,0.13962783,916.722691,3008656476 +2,5282,511,128,2.85359645,0.139661051,916.504631,3008656476 +2,5283,512,128,2.95198178,0.124998163,1024.01505,3008656476 +2,5284,513,128,2.92117023,0.129416464,989.054994,3008656476 +2,5285,514,128,2.70594573,0.128807462,993.731248,3008656476 +2,5286,515,128,3.04727983,0.129921561,985.209837,3008656476 +2,5287,516,128,2.76817536,0.129506055,988.370775,3008656476 +2,5288,517,128,2.94969916,0.129359147,989.493228,3008656476 +2,5289,518,128,3.15684366,0.146400837,874.311941,3008656476 +2,5290,519,128,2.77253819,0.143763758,890.349569,3008656476 +2,5291,520,128,2.42607856,0.131052342,976.708985,3008656476 +2,5292,521,128,2.56454611,0.130392436,981.652034,3008656476 +2,5293,522,128,2.01704502,0.132633676,965.064106,3008656476 +2,5294,523,128,2.58585644,0.138691004,922.914943,3008656476 +2,5295,524,128,2.13174582,0.129712387,986.798585,3008656476 +2,5296,525,128,2.43645883,0.13088809,977.934662,3008656476 +2,5297,526,128,2.82371473,0.146105436,876.079655,3008656476 +2,5298,527,128,2.55173254,0.143470287,892.170795,3008656476 +2,5299,528,128,2.88501239,0.129690266,986.966902,3008656476 +2,5300,529,128,2.23172021,0.129210929,990.628277,3008656476 +2,5301,530,128,1.86313963,0.129225507,990.516524,3008656476 +2,5302,531,128,2.91315842,0.129393116,989.233461,3008656476 +2,5303,532,128,3.27677441,0.129216382,990.586472,3008656476 +2,5304,533,128,2.9334631,0.128462981,996.395997,3008656476 +2,5305,534,128,2.74055958,0.14613912,875.877725,3008656476 +2,5306,535,128,2.59336019,0.145998365,876.722147,3008656476 +2,5307,536,128,2.58859587,0.128319383,997.511031,3008656476 +2,5308,537,128,2.6934123,0.127768042,1001.81546,3008656476 +2,5309,538,128,1.96707892,0.128275453,997.852644,3008656476 +2,5310,539,128,2.25370812,0.129961221,984.909183,3008656476 +2,5311,540,128,2.42947149,0.126381333,1012.8078,3008656476 +2,5312,541,128,2.76165485,0.128156833,998.776242,3008656476 +2,5313,542,128,2.65582395,0.146852247,871.624389,3008656476 +2,5314,543,128,3.05937552,0.144281464,887.154846,3008656476 +2,5315,544,128,2.23994279,0.128054153,999.577109,3008656476 +2,5316,545,128,1.91709399,0.127964585,1000.27676,3008656476 +2,5317,546,128,2.25007606,0.128080802,999.369133,3008656476 +2,5318,547,128,2.96486139,0.126616219,1010.92894,3008656476 +2,5319,548,128,2.81313562,0.13039217,981.654036,3008656476 +2,5320,549,128,2.70975494,0.127092388,1007.14136,3008656476 +2,5321,550,128,2.3815999,0.141850877,902.356071,3008656476 +2,5322,551,128,2.06596065,0.143656576,891.013858,3008656476 +2,5323,552,128,2.46338534,0.127668813,1002.59411,3008656476 +2,5324,553,128,2.80312276,0.12625351,1013.8332,3008656476 +2,5325,554,128,3.11752152,0.126620519,1010.89461,3008656476 +2,5326,555,128,3.07668686,0.125609244,1019.03328,3008656476 +2,5327,556,128,2.08934355,0.125307862,1021.48419,3008656476 +2,5328,557,128,2.46149755,0.125554931,1019.4741,3008656476 +2,5329,558,128,3.18557596,0.141504927,904.562143,3008656476 +2,5330,559,128,3.21279144,0.139944245,914.649974,3008656476 +2,5331,560,128,2.9578433,0.125663977,1018.58944,3008656476 +2,5332,561,128,2.70147419,0.125893237,1016.73452,3008656476 +2,5333,562,128,3.06683588,0.125707672,1018.23539,3008656476 +2,5334,563,128,3.27158117,0.126026,1015.66343,3008656476 +2,5335,564,128,2.73051929,0.125950993,1016.26829,3008656476 +2,5336,565,128,2.53955674,0.126359754,1012.98076,3008656476 +2,5337,566,128,1.95405316,0.141757763,902.948786,3008656476 +2,5338,567,128,2.92752552,0.135031566,947.926502,3008656476 +2,5339,568,128,2.64699602,0.122031157,1048.91245,3008656476 +2,5340,569,128,2.94625258,0.126983133,1008.00789,3008656476 +2,5341,570,128,3.35373974,0.125385563,1020.85118,3008656476 +2,5342,571,128,2.31415629,0.126610266,1010.97647,3008656476 +2,5343,572,128,2.13666487,0.126892955,1008.72424,3008656476 +2,5344,573,128,2.94968843,0.126489348,1011.94292,3008656476 +2,5345,574,128,2.60554099,0.142379444,899.00618,3008656476 +2,5346,575,128,2.87281442,0.126268159,1013.71558,3008656476 +2,5347,576,128,2.09134936,0.136779184,935.814912,3008656476 +2,5348,577,128,3.16876626,0.126119512,1014.91037,3008656476 +2,5349,578,128,2.44938445,0.12551832,1019.77146,3008656476 +2,5350,579,128,2.47795272,0.126095238,1015.10574,3008656476 +2,5351,580,128,2.31358337,0.126587679,1011.15686,3008656476 +2,5352,581,128,2.72617292,0.126210626,1014.17768,3008656476 +2,5353,582,128,2.8408823,0.142083425,900.879184,3008656476 +2,5354,583,128,2.54942322,0.125796618,1017.51543,3008656476 +2,5355,584,128,2.82749844,0.139025169,920.696597,3008656476 +2,5356,585,128,2.32448602,0.12586509,1016.96189,3008656476 +2,5357,586,128,3.00155473,0.125188776,1022.45588,3008656476 +2,5358,587,128,2.98612499,0.124774632,1025.84955,3008656476 +2,5359,588,128,2.67639112,0.124558627,1027.62854,3008656476 +2,5360,589,128,3.24137831,0.126036413,1015.57952,3008656476 +2,5361,590,128,2.88902998,0.137634446,929.999747,3008656476 +2,5362,591,128,2.79821181,0.12700746,1007.81482,3008656476 +2,5363,592,128,2.62819624,0.142774042,896.521512,3008656476 +2,5364,593,128,2.27643347,0.128188325,998.530872,3008656476 +2,5365,594,128,2.39802504,0.128358172,997.209589,3008656476 +2,5366,595,128,2.55872154,0.13052929,980.622817,3008656476 +2,5367,596,128,2.86163855,0.129591095,987.722189,3008656476 +2,5368,597,128,2.64464736,0.129239084,990.412467,3008656476 +2,5369,598,128,2.4023273,0.143162317,894.090028,3008656476 +2,5370,599,128,2.83617854,0.132321759,967.339015,3008656476 +2,5371,600,128,2.76459026,0.151731834,843.593573,3008656476 +2,5372,601,128,2.42124104,0.14314821,894.178139,3008656476 +2,5373,602,128,2.77941418,0.131037337,976.820828,3008656476 +2,5374,603,128,2.03575253,0.130579852,980.243108,3008656476 +2,5375,604,128,2.89249587,0.129704933,986.855296,3008656476 +2,5376,605,128,1.99804032,0.13051596,980.722971,3008656476 +2,5377,606,128,2.12206578,0.143473868,892.148527,3008656476 +2,5378,607,128,2.01031494,0.128379905,997.040775,3008656476 +2,5379,608,128,2.83289218,0.147005156,870.717759,3008656476 +2,5380,609,128,2.15333104,0.129747804,986.529221,3008656476 +2,5381,610,128,2.30708551,0.129929545,985.149298,3008656476 +2,5382,611,128,2.03575301,0.128987478,992.344389,3008656476 +2,5383,612,128,2.42364526,0.129021486,992.082823,3008656476 +2,5384,613,128,2.5620172,0.128737979,994.267589,3008656476 +2,5385,614,128,2.9006207,0.142861133,895.974975,3008656476 +2,5386,615,128,2.00879264,0.127155688,1006.63999,3008656476 +2,5387,616,128,2.68767595,0.140641421,910.115947,3008656476 +2,5388,617,128,2.86410069,0.12840852,996.818591,3008656476 +2,5389,618,128,2.31206346,0.127815162,1001.44614,3008656476 +2,5390,619,128,2.58723402,0.127897346,1000.80263,3008656476 +2,5391,620,128,2.45102119,0.128059947,999.531883,3008656476 +2,5392,621,128,2.29571223,0.127026758,1007.66171,3008656476 +2,5393,622,128,2.74923301,0.141849045,902.367725,3008656476 +2,5394,623,128,2.72535992,0.126006111,1015.82375,3008656476 +2,5395,624,128,2.82886052,0.144327087,886.874409,3008656476 +2,5396,625,128,2.89746118,0.127382528,1004.84738,3008656476 +2,5397,626,128,2.54147029,0.128313297,997.558343,3008656476 +2,5398,627,128,2.19548392,0.126717139,1010.12382,3008656476 +2,5399,628,128,2.39868188,0.128008081,999.936871,3008656476 +2,5400,629,128,3.17859006,0.126144918,1014.70596,3008656476 +2,5401,630,128,3.1102016,0.141100523,907.154681,3008656476 +2,5402,631,128,2.33665681,0.125687894,1018.39561,3008656476 +2,5403,632,128,3.3581183,0.14471076,884.523031,3008656476 +2,5404,633,128,3.09389353,0.127622451,1002.95833,3008656476 +2,5405,634,128,2.90611386,0.127692001,1002.41205,3008656476 +2,5406,635,128,2.15644574,0.127148694,1006.69536,3008656476 +2,5407,636,128,2.56115317,0.1265597,1011.3804,3008656476 +2,5408,637,128,2.40905309,0.126073394,1015.28162,3008656476 +2,5409,638,128,2.53694367,0.141720783,903.184397,3008656476 +2,5410,639,128,3.22845364,0.125776546,1017.67781,3008656476 +2,5411,640,128,2.60740757,0.143222587,893.713783,3008656476 +2,5412,641,128,2.68883896,0.125366847,1021.00358,3008656476 +2,5413,642,128,2.12215638,0.125761861,1017.79664,3008656476 +2,5414,643,128,2.59308577,0.126382859,1012.79557,3008656476 +2,5415,644,128,2.98514748,0.126544325,1011.50328,3008656476 +2,5416,645,128,3.44650364,0.125990341,1015.9509,3008656476 +2,5417,646,128,2.64497137,0.137866381,928.435193,3008656476 +2,5418,647,128,2.49297118,0.123052836,1040.20358,3008656476 +2,5419,648,128,2.90886807,0.146510895,873.655164,3008656476 +2,5420,649,128,2.61752534,0.125981919,1016.01881,3008656476 +2,5421,650,128,2.29729104,0.126517876,1011.71474,3008656476 +2,5422,651,128,2.56006861,0.127109084,1007.00907,3008656476 +2,5423,652,128,1.76695609,0.126885841,1008.7808,3008656476 +2,5424,653,128,2.16321492,0.12641483,1012.53943,3008656476 +2,5425,654,128,3.17419291,0.126936197,1008.38061,3008656476 +2,5426,655,128,3.15097141,0.134854606,949.170398,3008656476 +2,5427,656,128,2.90525174,0.145172907,881.707218,3008656476 +2,5428,657,128,2.45732284,0.125973851,1016.08389,3008656476 +2,5429,658,128,2.70479441,0.12697887,1008.04173,3008656476 +2,5430,659,128,2.94933891,0.126833968,1009.19337,3008656476 +2,5431,660,128,2.74897361,0.126611513,1010.96651,3008656476 +2,5432,661,128,2.89974928,0.125914365,1016.56392,3008656476 +2,5433,662,128,2.6540432,0.126314229,1013.34585,3008656476 +2,5434,663,128,2.39390326,0.138957064,921.147845,3008656476 +2,5435,664,128,2.04147935,0.142391831,898.927973,3008656476 +2,5436,665,128,3.3663826,0.125908771,1016.60908,3008656476 +2,5437,666,128,3.0091083,0.125794203,1017.53497,3008656476 +2,5438,667,128,2.53491592,0.125400426,1020.73018,3008656476 +2,5439,668,128,2.21747661,0.125326471,1021.33252,3008656476 +2,5440,669,128,2.16533399,0.12535335,1021.11352,3008656476 +2,5441,670,128,2.45365143,0.125568008,1019.36793,3008656476 +2,5442,671,128,2.05007005,0.139981744,914.404953,3008656476 +2,5443,672,128,2.3018074,0.136225136,939.621011,3008656476 +2,5444,673,128,2.42711234,0.12377456,1034.13819,3008656476 +2,5445,674,128,2.97394228,0.129717494,986.759735,3008656476 +2,5446,675,128,2.71908498,0.129849455,985.756929,3008656476 +2,5447,676,128,2.40757155,0.128866379,993.27692,3008656476 +2,5448,677,128,3.13588023,0.129910572,985.293175,3008656476 +2,5449,678,128,2.61756492,0.130656309,979.669493,3008656476 +2,5450,679,128,2.57642484,0.146747865,872.244376,3008656476 +2,5451,680,128,2.77723241,0.149881625,854.007287,3008656476 +2,5452,681,128,2.86603642,0.139933706,914.71886,3008656476 +2,5453,682,128,2.65476418,0.130395569,981.628448,3008656476 +2,5454,683,128,2.3353498,0.130489431,980.922355,3008656476 +2,5455,684,128,2.50773478,0.130622802,979.920795,3008656476 +2,5456,685,128,2.17047,0.129519295,988.26974,3008656476 +2,5457,686,128,2.34732914,0.130030941,984.381094,3008656476 +2,5458,687,128,1.9928968,0.143469679,892.174576,3008656476 +2,5459,688,128,2.76512027,0.142854525,896.01642,3008656476 +2,5460,689,128,1.89056802,0.130114487,983.749027,3008656476 +2,5461,690,128,2.37117028,0.129412437,989.085771,3008656476 +2,5462,691,128,2.68828821,0.130060107,984.160347,3008656476 +2,5463,692,128,2.49787807,0.128597111,995.356731,3008656476 +2,5464,693,128,2.28486419,0.131084704,976.467857,3008656476 +2,5465,694,128,2.73024988,0.12762007,1002.97704,3008656476 +2,5466,695,128,2.5445683,0.142389279,898.944084,3008656476 +2,5467,696,128,3.13580561,0.142139592,900.523198,3008656476 +2,5468,697,128,2.98600125,0.128087118,999.319854,3008656476 +2,5469,698,128,2.48257017,0.127857795,1001.11221,3008656476 +2,5470,699,128,2.46457219,0.127547101,1003.55084,3008656476 +2,5471,700,128,3.02245116,0.126819685,1009.30703,3008656476 +2,5472,701,128,2.71235561,0.126379256,1012.82445,3008656476 +2,5473,702,128,2.30064654,0.126151691,1014.65148,3008656476 +2,5474,703,128,1.95594847,0.143966924,889.093109,3008656476 +2,5475,704,128,2.56673169,0.140778924,909.227009,3008656476 +2,5476,705,128,2.94401598,0.127288839,1005.58699,3008656476 +2,5477,706,128,2.60796094,0.126465384,1012.13467,3008656476 +2,5478,707,128,2.7264719,0.125679065,1018.46716,3008656476 +2,5479,708,128,2.10337877,0.126009472,1015.79665,3008656476 +2,5480,709,128,2.9817884,0.126186029,1014.37537,3008656476 +2,5481,710,128,1.90254509,0.126082743,1015.20634,3008656476 +2,5482,711,128,2.75284958,0.140928118,908.264453,3008656476 +2,5483,712,128,2.54892373,0.140351102,911.998539,3008656476 +2,5484,713,128,2.85452724,0.126257865,1013.79823,3008656476 +2,5485,714,128,1.9584223,0.125637913,1018.80075,3008656476 +2,5486,715,128,1.54610109,0.125483457,1020.05478,3008656476 +2,5487,716,128,1.98065186,0.12577693,1017.6747,3008656476 +2,5488,717,128,2.81239891,0.125432321,1020.47063,3008656476 +2,5489,718,128,3.10700727,0.126607704,1010.99693,3008656476 +2,5490,719,128,3.06125736,0.139888658,915.013424,3008656476 +2,5491,720,128,2.8865931,0.125673909,1018.50894,3008656476 +2,5492,721,128,2.91200423,0.129693955,986.938828,3008656476 +2,5493,722,128,2.42092896,0.126610745,1010.97265,3008656476 +2,5494,723,128,3.08259201,0.126377299,1012.84013,3008656476 +2,5495,724,128,2.45390368,0.126976895,1008.05741,3008656476 +2,5496,725,128,2.74460626,0.125826395,1017.27463,3008656476 +2,5497,726,128,2.46894598,0.126605081,1011.01788,3008656476 +2,5498,727,128,2.99199033,0.142743669,896.712274,3008656476 +2,5499,728,128,2.7115438,0.126058777,1015.39935,3008656476 +2,5500,729,128,2.7279532,0.140509298,910.971742,3008656476 +2,5501,730,128,2.60345626,0.126701691,1010.24697,3008656476 +2,5502,731,128,3.10835958,0.125618342,1018.95948,3008656476 +2,5503,732,128,2.62323642,0.126114126,1014.95371,3008656476 +2,5504,733,128,2.14020038,0.126194652,1014.30606,3008656476 +2,5505,734,128,1.87570763,0.126837969,1009.16154,3008656476 +2,5506,735,128,1.88382673,0.142510603,898.178783,3008656476 +2,5507,736,128,1.76369143,0.126563397,1011.35086,3008656476 +2,5508,737,128,1.74427056,0.140958559,908.068307,3008656476 +2,5509,738,128,2.01375628,0.125586996,1019.2138,3008656476 +2,5510,739,128,2.29688382,0.12500234,1023.98083,3008656476 +2,5511,740,128,2.19713855,0.12581506,1017.36628,3008656476 +2,5512,741,128,2.43761253,0.126074471,1015.27295,3008656476 +2,5513,742,128,2.47375894,0.126172172,1014.48678,3008656476 +2,5514,743,128,2.58159137,0.138926943,921.34756,3008656476 +2,5515,744,128,2.24585724,0.126869733,1008.90888,3008656476 +2,5516,745,128,1.70005393,0.164096491,780.028867,3008656476 +2,5517,746,128,1.82106638,0.153765602,832.435853,3008656476 +2,5518,747,128,1.89228809,0.129216621,990.58464,3008656476 +2,5519,748,128,2.64190364,0.131234298,975.354781,3008656476 +2,5520,749,128,3.1785028,0.131424786,973.941095,3008656476 +2,5521,750,128,2.26253462,0.139898073,914.951845,3008656476 +2,5522,751,128,2.88203788,0.14538802,880.402663,3008656476 +2,5523,752,128,2.08326674,0.139315084,918.780625,3008656476 +2,5524,753,128,2.35825038,0.127522041,1003.74805,3008656476 +2,5525,754,128,2.43427324,0.129713415,986.790765,3008656476 +2,5526,755,128,2.50965619,0.128186866,998.542238,3008656476 +2,5527,756,128,2.87357879,0.127769721,1001.8023,3008656476 +2,5528,757,128,1.87251663,0.127762261,1001.86079,3008656476 +2,5529,758,128,2.63081741,0.126710576,1010.17614,3008656476 +2,5530,759,128,2.27059841,0.138679083,922.994277,3008656476 +2,5531,760,128,2.58794308,0.125991288,1015.94326,3008656476 +2,5532,761,128,3.00080299,0.131724132,971.727792,3008656476 +2,5533,762,128,3.27415013,0.126347512,1013.07891,3008656476 +2,5534,763,128,2.84676981,0.126543925,1011.50648,3008656476 +2,5535,764,128,3.08891582,0.126282787,1013.59816,3008656476 +2,5536,765,128,3.27657557,0.12636628,1012.92845,3008656476 +2,5537,766,128,2.64782977,0.126362795,1012.95638,3008656476 +2,5538,767,128,3.0234201,0.139317174,918.766842,3008656476 +2,5539,768,128,2.52144313,0.12554867,1019.52494,3008656476 +2,5540,769,128,2.46123576,0.14064819,910.072145,3008656476 +2,5541,770,128,2.1984868,0.126050839,1015.46329,3008656476 +2,5542,771,128,3.0199604,0.125876512,1016.86961,3008656476 +2,5543,772,128,2.46156478,0.126402843,1012.63545,3008656476 +2,5544,773,128,2.53533864,0.12654167,1011.5245,3008656476 +2,5545,774,128,2.39434719,0.126778712,1009.63323,3008656476 +2,5546,775,128,2.71367598,0.139097044,920.22085,3008656476 +2,5547,776,128,2.89075041,0.12585821,1017.01748,3008656476 +2,5548,777,128,2.97113872,0.139094957,920.234657,3008656476 +2,5549,778,128,2.37802243,0.125570073,1019.35116,3008656476 +2,5550,779,128,2.66253567,0.124729879,1026.21762,3008656476 +2,5551,780,128,2.26216769,0.125198144,1022.37937,3008656476 +2,5552,781,128,2.24028611,0.125201075,1022.35544,3008656476 +2,5553,782,128,1.85253954,0.126078796,1015.23812,3008656476 +2,5554,783,128,1.76998568,0.126301037,1013.45169,3008656476 +2,5555,784,128,2.47073174,0.131886123,970.534254,3008656476 +2,5556,785,128,2.65410423,0.144770795,884.156228,3008656476 +2,5557,786,128,2.43409085,0.129996747,984.640023,3008656476 +2,5558,787,128,2.9598701,0.130670715,979.561488,3008656476 +2,5559,788,128,2.91985583,0.13828303,925.637802,3008656476 +2,5560,789,128,2.9922061,0.129528622,988.198577,3008656476 +2,5561,790,128,2.74794912,0.129559406,987.963776,3008656476 +2,5562,791,128,3.19650412,0.144159917,887.902842,3008656476 +2,5563,792,128,2.47859454,0.119745578,1068.933,3008656476 +2,5564,793,128,2.74626231,0.142248542,899.833476,3008656476 +2,5565,794,128,2.25990629,0.12704685,1007.50235,3008656476 +2,5566,795,128,2.51893425,0.126323321,1013.27292,3008656476 +2,5567,796,128,3.04695344,0.126193617,1014.31438,3008656476 +2,5568,797,128,2.53317523,0.12520432,1022.32894,3008656476 +2,5569,798,128,2.55392408,0.124691359,1026.53465,3008656476 +2,5570,799,128,2.43284106,0.125325884,1021.3373,3008656476 +2,5571,800,128,2.90878391,0.141282125,905.988638,3008656476 +2,5572,801,128,2.77827334,0.141295567,905.902448,3008656476 +2,5573,802,128,3.1673739,0.125176821,1022.55353,3008656476 +2,5574,803,128,2.54171681,0.126234256,1013.98784,3008656476 +2,5575,804,128,2.81002116,0.125956263,1016.22577,3008656476 +2,5576,805,128,3.42701983,0.12569676,1018.32378,3008656476 +2,5577,806,128,3.23183465,0.126461285,1012.16748,3008656476 +2,5578,807,128,2.76273704,0.126631974,1010.80316,3008656476 +2,5579,808,128,2.30710268,0.138664622,923.090534,3008656476 +2,5580,809,128,2.33591986,0.140144646,913.342062,3008656476 +2,5581,810,128,2.36506534,0.127530899,1003.67833,3008656476 +2,5582,811,128,2.54358649,0.125871631,1016.90904,3008656476 +2,5583,812,128,2.99647355,0.126416979,1012.52222,3008656476 +2,5584,813,128,2.80331707,0.126156401,1014.6136,3008656476 +2,5585,814,128,2.16060114,0.125906994,1016.62343,3008656476 +2,5586,815,128,2.11976337,0.125906561,1016.62693,3008656476 +2,5587,816,128,3.10739017,0.139877705,915.085074,3008656476 +2,5588,817,128,2.79836798,0.125587448,1019.21014,3008656476 +2,5589,818,128,2.54674888,0.129494648,988.45784,3008656476 +2,5590,819,128,2.32149005,0.125501694,1019.90655,3008656476 +2,5591,820,128,2.31152701,0.126284404,1013.58518,3008656476 +2,5592,821,128,2.60068226,0.125979323,1016.03975,3008656476 +2,5593,822,128,2.48440146,0.127395159,1004.74775,3008656476 +2,5594,823,128,3.31965971,0.127329288,1005.26754,3008656476 +2,5595,824,128,2.87165928,0.142363824,899.104818,3008656476 +2,5596,825,128,2.59051037,0.128839817,993.481697,3008656476 +2,5597,826,128,2.67111611,0.142646972,897.320134,3008656476 +2,5598,827,128,2.61703682,0.128912542,992.921232,3008656476 +2,5599,828,128,2.40539885,0.129407761,989.12151,3008656476 +2,5600,829,128,2.53355193,0.129514769,988.304276,3008656476 +2,5601,830,128,2.95151472,0.131042403,976.783065,3008656476 +2,5602,831,128,1.91323054,0.131657706,972.218064,3008656476 +2,5603,832,128,2.84016466,0.148190894,863.750778,3008656476 +2,5604,833,128,2.97714829,0.129599626,987.657171,3008656476 +2,5605,834,128,3.00943613,0.13774549,929.250025,3008656476 +2,5606,835,128,2.90800738,0.131933925,970.182612,3008656476 +2,5607,836,128,2.32756543,0.130170824,983.323268,3008656476 +2,5608,837,128,2.86696935,0.1306143,979.984581,3008656476 +2,5609,838,128,2.60992861,0.129694261,986.9365,3008656476 +2,5610,839,128,2.80076957,0.128547254,995.74278,3008656476 +2,5611,840,128,2.58128405,0.141063121,907.395208,3008656476 +2,5612,841,128,2.37370324,0.128291133,997.730685,3008656476 +2,5613,842,128,2.17777944,0.131689089,971.986373,3008656476 +2,5614,843,128,2.94184208,0.126043938,1015.51889,3008656476 +2,5615,844,128,2.20045781,0.125751389,1017.8814,3008656476 +2,5616,845,128,2.74684739,0.125465996,1020.19674,3008656476 +2,5617,846,128,2.49953556,0.126334524,1013.18306,3008656476 +2,5618,847,128,3.14001131,0.125660223,1018.61987,3008656476 +2,5619,848,128,2.16559267,0.139484165,917.666891,3008656476 +2,5620,849,128,2.3897016,0.126176594,1014.45122,3008656476 +2,5621,850,128,2.26182961,0.140953288,908.102264,3008656476 +2,5622,851,128,2.38993359,0.126587378,1011.15926,3008656476 +2,5623,852,128,1.86239445,0.127250492,1005.89002,3008656476 +2,5624,853,128,2.49674129,0.126672037,1010.48347,3008656476 +2,5625,854,128,3.10173965,0.126310078,1013.37915,3008656476 +2,5626,855,128,2.54018521,0.12615212,1014.64803,3008656476 +2,5627,856,128,2.94607806,0.140006449,914.2436,3008656476 +2,5628,857,128,2.54481006,0.12662906,1010.82642,3008656476 +2,5629,858,128,2.76645565,0.140411994,911.603036,3008656476 +2,5630,859,128,2.47247672,0.126827355,1009.24599,3008656476 +2,5631,860,128,2.74458027,0.127399511,1004.71343,3008656476 +2,5632,861,128,2.92861843,0.125648723,1018.7131,3008656476 +2,5633,862,128,2.32843518,0.126629608,1010.82205,3008656476 +2,5634,863,128,2.0465138,0.12537693,1020.92147,3008656476 +2,5635,864,128,2.4162643,0.138602077,923.507084,3008656476 +2,5636,865,128,2.32860231,0.122179851,1047.63592,3008656476 +2,5637,866,128,2.5239377,0.139653419,916.554718,3008656476 +2,5638,867,128,2.50590825,0.12645872,1012.18801,3008656476 +2,5639,868,128,2.64296937,0.127886059,1000.89096,3008656476 +2,5640,869,128,2.4852562,0.127971813,1000.22026,3008656476 +2,5641,870,128,2.99505043,0.128816528,993.66131,3008656476 +2,5642,871,128,2.43590212,0.128809897,993.712463,3008656476 +2,5643,872,128,2.51570296,0.128543884,995.768885,3008656476 +2,5644,873,128,2.18957686,0.142905672,895.695729,3008656476 +2,5645,874,128,2.79591441,0.154054282,830.875964,3008656476 +2,5646,875,128,2.22377682,0.139261788,919.132246,3008656476 +2,5647,876,128,2.56760812,0.143266445,893.440191,3008656476 +2,5648,877,128,1.90395331,0.138989292,920.934254,3008656476 +2,5649,878,128,2.22362566,0.138692401,922.905646,3008656476 +2,5650,879,128,2.55673337,0.132015738,969.581369,3008656476 +2,5651,880,128,2.77153516,0.144592208,885.248256,3008656476 +2,5652,881,128,3.30323577,0.131222165,975.444964,3008656476 +2,5653,882,128,3.68928647,0.138698321,922.866254,3008656476 +2,5654,883,128,3.00971842,0.130653672,979.689266,3008656476 +2,5655,884,128,2.1668129,0.129628625,987.436224,3008656476 +2,5656,885,128,3.02227068,0.130625098,979.903571,3008656476 +2,5657,886,128,2.66512465,0.128940253,992.70784,3008656476 +2,5658,887,128,2.89617348,0.129927362,985.16585,3008656476 +2,5659,888,128,2.28307605,0.14269307,897.030248,3008656476 +2,5660,889,128,2.79509377,0.128122948,999.04039,3008656476 +2,5661,890,128,2.19237161,0.140511636,910.956584,3008656476 +2,5662,891,128,2.20685101,0.12628643,1013.56892,3008656476 +2,5663,892,128,2.75223875,0.12744795,1004.33157,3008656476 +2,5664,893,128,2.79008269,0.127787396,1001.66373,3008656476 +2,5665,894,128,2.96999121,0.12645772,1012.19601,3008656476 +2,5666,895,128,2.8301568,0.126866584,1008.93392,3008656476 +2,5667,896,128,1.99595368,0.137649334,929.89916,3008656476 +2,5668,897,128,2.3350904,0.125445683,1020.36194,3008656476 +2,5669,898,128,1.96264315,0.145397423,880.345727,3008656476 +2,5670,899,128,2.48335123,0.126448339,1012.27111,3008656476 +2,5671,900,128,2.18677282,0.125985098,1015.99318,3008656476 +2,5672,901,128,2.16825223,0.126002349,1015.85408,3008656476 +2,5673,902,128,2.14141107,0.126094133,1015.11464,3008656476 +2,5674,903,128,2.54101443,0.126112663,1014.96548,3008656476 +2,5675,904,128,1.99785018,0.137918147,928.086715,3008656476 +2,5676,905,128,2.26117158,0.126457362,1012.19888,3008656476 +2,5677,906,128,2.843467,0.144125895,888.112438,3008656476 +2,5678,907,128,2.88225865,0.126604322,1011.02394,3008656476 +2,5679,908,128,2.79428315,0.125883987,1016.80923,3008656476 +2,5680,909,128,2.354949,0.12597171,1016.10115,3008656476 +2,5681,910,128,2.56329179,0.125562361,1019.41377,3008656476 +2,5682,911,128,2.49465442,0.126343501,1013.11107,3008656476 +2,5683,912,128,3.01048303,0.140033886,914.064472,3008656476 +2,5684,913,128,2.33989692,0.126500713,1011.852,3008656476 +2,5685,914,128,3.08690023,0.141138753,906.908962,3008656476 +2,5686,915,128,2.87775254,0.126312732,1013.35786,3008656476 +2,5687,916,128,2.39477134,0.125948215,1016.2907,3008656476 +2,5688,917,128,2.06330085,0.126578522,1011.23001,3008656476 +2,5689,918,128,2.48493195,0.126479169,1012.02436,3008656476 +2,5690,919,128,2.19489384,0.126139034,1014.75329,3008656476 +2,5691,920,128,2.53484511,0.143464696,892.205564,3008656476 +2,5692,921,128,2.42442441,0.121352531,1054.77817,3008656476 +2,5693,922,128,2.71213102,0.142573372,897.783353,3008656476 +2,5694,923,128,3.05208659,0.126571147,1011.28893,3008656476 +2,5695,924,128,2.22415042,0.125980926,1016.02682,3008656476 +2,5696,925,128,2.88547778,0.126366041,1012.93036,3008656476 +2,5697,926,128,2.25377083,0.125880546,1016.83703,3008656476 +2,5698,927,128,2.02645111,0.126025916,1015.66411,3008656476 +2,5699,928,128,2.41518617,0.125284726,1021.67283,3008656476 +2,5700,929,128,2.38983989,0.139877698,915.08512,3008656476 +2,5701,930,128,2.05217934,0.141741969,903.0494,3008656476 +2,5702,931,128,2.39229655,0.125691809,1018.36389,3008656476 +2,5703,932,128,2.48051167,0.125971573,1016.10226,3008656476 +2,5704,933,128,2.40862298,0.125388245,1020.82934,3008656476 +2,5705,934,128,2.36584592,0.124950386,1024.4066,3008656476 +2,5706,935,128,2.3340435,0.125928277,1016.45161,3008656476 +2,5707,936,128,2.22061086,0.125455582,1020.28143,3008656476 +2,5708,937,128,2.37264371,0.138903618,921.502275,3008656476 +2,5709,938,128,2.82958841,0.137328608,932.070905,3008656476 +2,5710,939,128,2.70926619,0.123433487,1036.99574,3008656476 +2,5711,940,128,2.60715079,0.128271251,997.885333,3008656476 +2,5712,941,128,2.17963266,0.13035602,981.926266,3008656476 +2,5713,942,128,2.24439812,0.128762146,994.080978,3008656476 +2,5714,943,128,2.22765493,0.131861918,970.712408,3008656476 +2,5715,944,128,3.15564251,0.130607187,980.037952,3008656476 +2,5716,945,128,2.97916484,0.144839004,883.739852,3008656476 +2,5717,946,128,2.43480825,0.139927026,914.762528,3008656476 +2,5718,947,128,2.98394895,0.126644942,1010.69966,3008656476 +2,5719,948,128,3.14189434,0.128616747,995.204769,3008656476 +2,5720,949,128,3.21003199,0.131385935,974.229091,3008656476 +2,5721,950,128,2.59410024,0.129285701,990.05535,3008656476 +2,5722,951,128,2.06960249,0.129294001,989.991794,3008656476 +2,5723,952,128,2.08876038,0.130581695,980.229273,3008656476 +2,5724,953,128,2.65353799,0.14205595,901.053423,3008656476 +2,5725,954,128,2.65307617,0.136285026,939.208098,3008656476 +2,5726,955,128,1.95814371,0.122689153,1043.28701,3008656476 +2,5727,956,128,2.85147095,0.125869835,1016.92355,3008656476 +2,5728,957,128,2.56753349,0.125767994,1017.74701,3008656476 +2,5729,958,128,2.59309936,0.126328094,1013.23463,3008656476 +2,5730,959,128,2.62572122,0.125437235,1020.43066,3008656476 +2,5731,960,128,2.58633375,0.125730411,1018.05123,3008656476 +2,5732,961,128,2.40215898,0.141160078,906.771956,3008656476 +2,5733,962,128,2.59269142,0.125804796,1017.44929,3008656476 +2,5734,963,128,2.46199727,0.140887265,908.527822,3008656476 +2,5735,964,128,2.06424713,0.125674832,1018.50146,3008656476 +2,5736,965,128,2.19398212,0.126327137,1013.24231,3008656476 +2,5737,966,128,2.58841777,0.127042437,1007.53735,3008656476 +2,5738,967,128,3.19893622,0.126020953,1015.70411,3008656476 +2,5739,968,128,2.67134023,0.126645892,1010.69208,3008656476 +2,5740,969,128,2.36318612,0.14029251,912.379428,3008656476 +2,5741,970,128,2.17879772,0.126161228,1014.57478,3008656476 +2,5742,971,128,2.60990024,0.141883826,902.146521,3008656476 +2,5743,972,128,2.10268688,0.126364806,1012.94026,3008656476 +2,5744,973,128,2.14342666,0.12709748,1007.10101,3008656476 +2,5745,974,128,2.44532466,0.126525455,1011.65414,3008656476 +2,5746,975,128,2.71903586,0.126281911,1013.60519,3008656476 +2,5747,976,128,2.70670033,0.12580836,1017.42046,3008656476 +2,5748,977,128,2.47617984,0.142585484,897.707091,3008656476 +2,5749,978,128,2.63311982,0.125867036,1016.94617,3008656476 +2,5750,979,128,2.76171398,0.141186664,906.601207,3008656476 +2,5751,980,128,2.41543531,0.125914997,1016.55881,3008656476 +2,5752,981,128,2.61870313,0.12637286,1012.87571,3008656476 +2,5753,982,128,2.31116724,0.125557836,1019.45051,3008656476 +2,5754,983,128,2.31673598,0.125042014,1023.65594,3008656476 +2,5755,984,128,2.32423258,0.125595756,1019.14272,3008656476 +2,5756,985,128,2.30047536,0.139754726,915.890315,3008656476 +2,5757,986,128,2.17586327,0.125049861,1023.5917,3008656476 +2,5758,987,128,2.11965585,0.139811095,915.521046,3008656476 +2,5759,988,128,2.37295914,0.125736495,1018.00197,3008656476 +2,5760,989,128,2.55677795,0.125979176,1016.04094,3008656476 +2,5761,990,128,2.15331388,0.12693972,1008.35263,3008656476 +2,5762,991,128,2.09131765,0.12683722,1009.1675,3008656476 +2,5763,992,128,2.43779278,0.127435335,1004.43099,3008656476 +2,5764,993,128,1.7577486,0.138603757,923.495891,3008656476 +2,5765,994,128,1.89587295,0.124244143,1030.22965,3008656476 +2,5766,995,128,1.75357234,0.143939434,889.26291,3008656476 +2,5767,996,128,2.4449482,0.139249919,919.210589,3008656476 +2,5768,997,128,2.47369647,0.138844765,921.892878,3008656476 +2,5769,998,128,2.26327538,0.128961464,992.544564,3008656476 +2,5770,999,128,2.31502676,0.131125102,976.167019,3008656476 +2,5771,1000,128,2.68711638,0.130238421,982.812898,3008656476 +2,5772,1001,128,2.26549363,0.146035037,876.501986,3008656476 +2,5773,1002,128,2.12228656,0.129192284,990.771245,3008656476 +2,5774,1003,128,2.17972875,0.141441874,904.965385,3008656476 +2,5775,1004,128,2.54148793,0.13017346,983.303355,3008656476 +2,5776,1005,128,2.27916265,0.12843764,996.592588,3008656476 +2,5777,1006,128,2.63182473,0.127720901,1002.18523,3008656476 +2,5778,1007,128,2.53919387,0.128202971,998.4168,3008656476 +2,5779,1008,128,2.23140025,0.12667453,1010.46359,3008656476 +2,5780,1009,128,2.17728162,0.145485353,879.813654,3008656476 +2,5781,1010,128,2.31311417,0.126172801,1014.48172,3008656476 +2,5782,1011,128,2.0092051,0.14059762,910.399479,3008656476 +2,5783,1012,128,2.35274744,0.125597705,1019.1269,3008656476 +2,5784,1013,128,2.11423755,0.125917717,1016.53685,3008656476 +2,5785,1014,128,2.37570047,0.126005942,1015.82511,3008656476 +2,5786,1015,128,1.57182646,0.125794315,1017.53406,3008656476 +2,5787,1016,128,2.02779579,0.125823591,1017.2973,3008656476 +2,5788,1017,128,2.1162045,0.129551526,988.023869,3008656476 +2,5789,1018,128,2.26911378,0.12609617,1015.09824,3008656476 +2,5790,1019,128,2.92970896,0.139713621,916.159778,3008656476 +2,5791,1020,128,2.74744749,0.125322822,1021.36225,3008656476 +2,5792,1021,128,2.3726635,0.126337966,1013.15546,3008656476 +2,5793,1022,128,2.33563757,0.125999498,1015.87706,3008656476 +2,5794,1023,128,3.13123107,0.126692276,1010.32205,3008656476 +2,5795,1024,128,2.84929109,0.126019479,1015.71599,3008656476 +2,5796,1025,128,2.68471193,0.12617601,1014.45592,3008656476 +2,5797,1026,128,2.34006596,0.138240964,925.919469,3008656476 +2,5798,1027,128,2.18095493,0.139290818,918.940687,3008656476 +2,5799,1028,128,2.05968571,0.125744336,1017.93849,3008656476 +2,5800,1029,128,2.46657681,0.125088547,1023.27514,3008656476 +2,5801,1030,128,1.90765774,0.125956338,1016.22516,3008656476 +2,5802,1031,128,2.65940547,0.126252103,1013.8445,3008656476 +2,5803,1032,128,2.18029594,0.12664577,1010.69305,3008656476 +2,5804,1033,128,2.32146144,0.12652671,1011.6441,3008656476 +2,5805,1034,128,2.72544074,0.140944849,908.156637,3008656476 +2,5806,1035,128,2.71836209,0.127804296,1001.53128,3008656476 +2,5807,1036,128,2.55587482,0.134594158,951.007101,3008656476 +2,5808,1037,128,2.54293728,0.129285337,990.058138,3008656476 +2,5809,1038,128,2.1836288,0.130445192,981.255024,3008656476 +2,5810,1039,128,2.17774272,0.130953989,977.442543,3008656476 +2,5811,1040,128,2.64597392,0.138665256,923.086314,3008656476 +2,5812,1041,128,2.61371756,0.138388763,924.930588,3008656476 +2,5813,1042,128,2.45554399,0.143476333,892.133199,3008656476 +2,5814,1043,128,1.72688532,0.142886596,895.815308,3008656476 +2,5815,1044,128,2.07920384,0.132519763,965.893668,3008656476 +2,5816,1045,128,2.29572272,0.129427588,988.969987,3008656476 +2,5817,1046,128,2.09336853,0.129523295,988.23922,3008656476 +2,5818,1047,128,2.05127096,0.129391522,989.245648,3008656476 +2,5819,1048,128,2.76018238,0.128861436,993.315021,3008656476 +2,5820,1049,128,2.59666395,0.12883513,993.517839,3008656476 +2,5821,1050,128,2.67195487,0.145338039,880.705429,3008656476 +2,5822,1051,128,2.41361523,0.141469797,904.786765,3008656476 +2,5823,1052,128,2.16495848,0.129098802,991.488674,3008656476 +2,5824,1053,128,2.30301094,0.128806084,993.741879,3008656476 +2,5825,1054,128,2.6332314,0.128418269,996.742917,3008656476 +2,5826,1055,128,2.02806067,0.128302118,997.645261,3008656476 +2,5827,1056,128,2.75912929,0.127048727,1007.48747,3008656476 +2,5828,1057,128,2.79428577,0.127100562,1007.07659,3008656476 +2,5829,1058,128,2.60408854,0.143739729,890.498409,3008656476 +2,5830,1059,128,1.93938088,0.143337883,892.99491,3008656476 +2,5831,1060,128,2.83611822,0.129336021,989.670155,3008656476 +2,5832,1061,128,3.02862024,0.128238256,998.142083,3008656476 +2,5833,1062,128,2.74061203,0.127726685,1002.13984,3008656476 +2,5834,1063,128,2.61914897,0.127600082,1003.13415,3008656476 +2,5835,1064,128,2.25012469,0.126738747,1009.9516,3008656476 +2,5836,1065,128,2.40351105,0.126391151,1012.72913,3008656476 +2,5837,1066,128,2.39197874,0.142983615,895.207468,3008656476 +2,5838,1067,128,2.44905376,0.142687122,897.067641,3008656476 +2,5839,1068,128,2.60717964,0.130493809,980.889446,3008656476 +2,5840,1069,128,3.09066868,0.127670767,1002.57877,3008656476 +2,5841,1070,128,2.70643687,0.126796438,1009.49208,3008656476 +2,5842,1071,128,2.86278892,0.127783745,1001.69235,3008656476 +2,5843,1072,128,2.20338869,0.12676865,1009.71336,3008656476 +2,5844,1073,128,2.87480664,0.127440733,1004.38845,3008656476 +2,5845,1074,128,2.71631217,0.142146531,900.479239,3008656476 +2,5846,1075,128,2.61497593,0.14423056,887.467954,3008656476 +2,5847,1076,128,3.03208685,0.128997601,992.266515,3008656476 +2,5848,1077,128,2.74969864,0.127166661,1006.55312,3008656476 +2,5849,1078,128,2.81377268,0.127441679,1004.38099,3008656476 +2,5850,1079,128,3.43805408,0.126910464,1008.58508,3008656476 +2,5851,1080,128,2.39983153,0.126966238,1008.14202,3008656476 +2,5852,1081,128,1.37711155,0.127935807,1000.50176,3008656476 +2,5853,1082,128,2.15715432,0.144195457,887.684,3008656476 +2,5854,1083,128,2.76996303,0.140985019,907.897881,3008656476 +2,5855,1084,128,2.62407804,0.128662165,994.85346,3008656476 +2,5856,1085,128,2.74689865,0.127207472,1006.2302,3008656476 +2,5857,1086,128,2.61068988,0.12865507,994.908323,3008656476 +2,5858,1087,128,2.26981759,0.126205917,1014.21552,3008656476 +2,5859,1088,128,2.29529238,0.12757394,1003.33971,3008656476 +2,5860,1089,128,2.27370548,0.12769097,1002.42014,3008656476 +2,5861,1090,128,2.43490887,0.145812194,877.841534,3008656476 +2,5862,1091,128,2.75764513,0.134623572,950.799315,3008656476 +2,5863,1092,128,2.03419471,0.124203958,1030.56297,3008656476 +2,5864,1093,128,2.82588243,0.126248825,1013.87082,3008656476 +2,5865,1094,128,2.68003035,0.12681652,1009.33222,3008656476 +2,5866,1095,128,2.48154473,0.126276215,1013.65091,3008656476 +2,5867,1096,128,2.16813636,0.125826039,1017.27751,3008656476 +2,5868,1097,128,2.32790303,0.12538377,1020.86578,3008656476 +2,5869,1098,128,2.62347651,0.141320946,905.739762,3008656476 +2,5870,1099,128,3.04321647,0.126051217,1015.46025,3008656476 +2,5871,1100,128,2.63072395,0.139054145,920.504743,3008656476 +2,5872,1101,128,2.68867898,0.125594699,1019.15129,3008656476 +2,5873,1102,128,2.50912595,0.126088316,1015.16147,3008656476 +2,5874,1103,128,2.79460335,0.126256936,1013.80569,3008656476 +2,5875,1104,128,2.34555364,0.126957288,1008.21309,3008656476 +2,5876,1105,128,2.93828368,0.126112219,1014.96906,3008656476 +2,5877,1106,128,2.3366642,0.139529081,917.371483,3008656476 +2,5878,1107,128,2.45124078,0.126930351,1008.42705,3008656476 +2,5879,1108,128,2.15167117,0.140898881,908.452921,3008656476 +2,5880,1109,128,1.9427619,0.125928122,1016.45286,3008656476 +2,5881,1110,128,2.3017087,0.125613577,1018.99813,3008656476 +2,5882,1111,128,2.35148215,0.126424436,1012.4625,3008656476 +2,5883,1112,128,1.88673568,0.126059137,1015.39645,3008656476 +2,5884,1113,128,2.02120471,0.126189639,1014.34635,3008656476 +2,5885,1114,128,2.94153357,0.140170657,913.172576,3008656476 +2,5886,1115,128,1.76034975,0.125684435,1018.42364,3008656476 +2,5887,1116,128,2.17257667,0.141649312,903.640111,3008656476 +2,5888,1117,128,1.83900023,0.12540071,1020.72787,3008656476 +2,5889,1118,128,2.33909345,0.125993807,1015.92295,3008656476 +2,5890,1119,128,2.17646933,0.125374389,1020.94216,3008656476 +2,5891,1120,128,1.74237275,0.125261893,1021.85906,3008656476 +2,5892,1121,128,2.30422211,0.124177455,1030.78292,3008656476 +2,5893,1122,128,2.07864571,0.138886025,921.619004,3008656476 +2,5894,1123,128,1.65524316,0.124977902,1024.18106,3008656476 +2,5895,1124,128,1.56475592,0.142105103,900.741756,3008656476 +2,5896,1125,128,2.5111053,0.125677593,1018.47909,3008656476 +2,5897,1126,128,1.85757542,0.127275688,1005.69089,3008656476 +2,5898,1127,128,3.09851789,0.126698192,1010.27487,3008656476 +2,5899,1128,128,2.60452151,0.127040488,1007.5528,3008656476 +2,5900,1129,128,1.77364063,0.127714693,1002.23394,3008656476 +2,5901,1130,128,2.46444464,0.141681949,903.431954,3008656476 +2,5902,1131,128,2.26303458,0.121342481,1054.86553,3008656476 +2,5903,1132,128,2.04061007,0.14458492,885.292878,3008656476 +2,5904,1133,128,2.03893542,0.131569947,972.866547,3008656476 +2,5905,1134,128,2.86672735,0.138634504,923.291073,3008656476 +2,5906,1135,128,2.68604159,0.142466408,898.45741,3008656476 +2,5907,1136,128,2.47285485,0.142602287,897.601313,3008656476 +2,5908,1137,128,2.46129322,0.138111819,926.785274,3008656476 +2,5909,1138,128,2.53376365,0.143580363,891.486811,3008656476 +2,5910,1139,128,2.15346909,0.142941049,895.47405,3008656476 +2,5911,1140,128,2.33795071,0.140048386,913.969833,3008656476 +2,5912,1141,128,2.47800446,0.129582188,987.790081,3008656476 +2,5913,1142,128,2.39073205,0.132128684,968.752553,3008656476 +2,5914,1143,128,2.21730828,0.129951737,984.981063,3008656476 +2,5915,1144,128,2.05177689,0.129613031,987.555024,3008656476 +2,5916,1145,128,2.59788156,0.129497269,988.437833,3008656476 +2,5917,1146,128,2.84792304,0.142995526,895.132901,3008656476 +2,5918,1147,128,2.65728259,0.131027808,976.891867,3008656476 +2,5919,1148,128,2.73610497,0.134231706,953.575007,3008656476 +2,5920,1149,128,2.55275917,0.127282964,1005.6334,3008656476 +2,5921,1150,128,2.63514304,0.127846759,1001.19863,3008656476 +2,5922,1151,128,2.52142882,0.12682446,1009.26903,3008656476 +2,5923,1152,128,2.83602238,0.12857823,995.502893,3008656476 +2,5924,1153,128,2.64400315,0.126985582,1007.98845,3008656476 +2,5925,1154,128,2.62839246,0.140759714,909.351095,3008656476 +2,5926,1155,128,2.76846671,0.12735831,1005.03846,3008656476 +2,5927,1156,128,2.64075255,0.144616755,885.097996,3008656476 +2,5928,1157,128,3.03494263,0.126380718,1012.81273,3008656476 +2,5929,1158,128,2.34852362,0.127778363,1001.73454,3008656476 +2,5930,1159,128,2.70688272,0.127729736,1002.11591,3008656476 +2,5931,1160,128,2.87393928,0.127448622,1004.32628,3008656476 +2,5932,1161,128,2.9077673,0.126459081,1012.18512,3008656476 +2,5933,1162,128,2.26336026,0.140751543,909.403885,3008656476 +2,5934,1163,128,2.28699899,0.126584748,1011.18027,3008656476 +2,5935,1164,128,2.38256693,0.144076903,888.414432,3008656476 +2,5936,1165,128,3.0049746,0.127634576,1002.86305,3008656476 +2,5937,1166,128,2.65428662,0.128556725,995.669421,3008656476 +2,5938,1167,128,2.86630177,0.126464282,1012.14349,3008656476 +2,5939,1168,128,2.489856,0.127510638,1003.83781,3008656476 +2,5940,1169,128,2.89824939,0.126287123,1013.56335,3008656476 +2,5941,1170,128,2.69593096,0.140089237,913.703313,3008656476 +2,5942,1171,128,2.86347985,0.125315692,1021.42037,3008656476 +2,5943,1172,128,2.57517099,0.141601435,903.945642,3008656476 +2,5944,1173,128,2.64754891,0.12637121,1012.88893,3008656476 +2,5945,1174,128,2.9249897,0.125808286,1017.42106,3008656476 +2,5946,1175,128,2.81727815,0.125686172,1018.40957,3008656476 +2,5947,1176,128,2.81154943,0.12738668,1004.81463,3008656476 +2,5948,1177,128,2.64365649,0.125460817,1020.23885,3008656476 +2,5949,1178,128,2.41554666,0.141225904,906.349305,3008656476 +2,5950,1179,128,2.62132215,0.125903725,1016.64983,3008656476 +2,5951,1180,128,3.10561991,0.139764399,915.826927,3008656476 +2,5952,1181,128,2.61395884,0.126617235,1010.92083,3008656476 +2,5953,1182,128,2.94355083,0.125808448,1017.41975,3008656476 +2,5954,1183,128,1.9723388,0.12583713,1017.18785,3008656476 +2,5955,1184,128,2.06773472,0.125836582,1017.19228,3008656476 +2,5956,1185,128,3.07159781,0.125256872,1021.90002,3008656476 +2,5957,1186,128,2.88243127,0.139654716,916.546205,3008656476 +2,5958,1187,128,2.83121753,0.127212822,1006.18788,3008656476 +2,5959,1188,128,2.78089142,0.140493916,911.07148,3008656476 +2,5960,1189,128,2.56611943,0.12615826,1014.59865,3008656476 +2,5961,1190,128,2.30163765,0.126310153,1013.37855,3008656476 +2,5962,1191,128,1.91407454,0.126195899,1014.29604,3008656476 +2,5963,1192,128,2.36060524,0.126070084,1015.30828,3008656476 +2,5964,1193,128,2.37293339,0.12613755,1014.76523,3008656476 +2,5965,1194,128,1.7919848,0.125608078,1019.04274,3008656476 +2,5966,1195,128,1.85859072,0.128596248,995.363411,3008656476 +2,5967,1196,128,1.78363121,0.139070581,920.395953,3008656476 +2,5968,1197,128,2.46842003,0.12554754,1019.53411,3008656476 +2,5969,1198,128,2.07124496,0.125419689,1020.57341,3008656476 +2,5970,1199,128,2.65167952,0.125536607,1019.62291,3008656476 +2,5971,1200,128,2.7258606,0.125978669,1016.04503,3008656476 +2,5972,1201,128,3.07043195,0.126304591,1013.42318,3008656476 +2,5973,1202,128,2.55020857,0.205502048,622.864839,3008656476 +2,5974,1203,128,2.56198144,0.125294017,1021.59706,3008656476 +2,5975,1204,128,2.56016397,0.139452507,917.875216,3008656476 +2,5976,1205,128,2.68144369,0.125750771,1017.8864,3008656476 +2,5977,1206,128,2.548141,0.126007661,1015.81125,3008656476 +2,5978,1207,128,2.64476371,0.126422672,1012.47662,3008656476 +2,5979,1208,128,2.4324491,0.126127649,1014.84489,3008656476 +2,5980,1209,128,2.23683977,0.12690603,1008.62032,3008656476 +2,5981,1210,128,2.33893991,0.139187917,919.620056,3008656476 +2,5982,1211,128,2.79337549,0.127122741,1006.90088,3008656476 +2,5983,1212,128,2.4479394,0.141609628,903.893343,3008656476 +2,5984,1213,128,2.23553658,0.128704966,994.52262,3008656476 +2,5985,1214,128,2.8885808,0.129922062,985.206038,3008656476 +2,5986,1215,128,2.86369729,0.128072021,999.437652,3008656476 +2,5987,1216,128,2.45927334,0.130219028,982.959265,3008656476 +2,5988,1217,128,2.80665922,0.129048345,991.876339,3008656476 +2,5989,1218,128,2.44126916,0.142744251,896.708618,3008656476 +2,5990,1219,128,3.00722766,0.12250958,1044.81625,3008656476 +2,5991,1220,128,1.95847678,0.144797392,883.993822,3008656476 +2,5992,1221,128,2.54308915,0.130239815,982.802379,3008656476 +2,5993,1222,128,2.41249752,0.13148799,973.472938,3008656476 +2,5994,1223,128,2.30384731,0.131556117,972.968821,3008656476 +2,5995,1224,128,2.97196913,0.138715478,922.75211,3008656476 +2,5996,1225,128,2.92363238,0.138601013,923.514174,3008656476 +2,5997,1226,128,2.5212028,0.154217661,829.995729,3008656476 +2,5998,1227,128,2.72731543,0.142800719,896.35403,3008656476 +2,5999,1228,128,2.92968678,0.146279421,875.037645,3008656476 +2,6000,1229,128,2.58624291,0.130329121,982.128929,3008656476 +2,6001,1230,128,2.51030278,0.131734689,971.64992,3008656476 +2,6002,1231,128,2.28786182,0.130513968,980.737939,3008656476 +2,6003,1232,128,2.79577971,0.129131888,991.234636,3008656476 +2,6004,1233,128,2.61627507,0.131285531,974.974158,3008656476 +2,6005,1234,128,2.34039927,0.143626386,891.201147,3008656476 +2,6006,1235,128,2.51309562,0.130911627,977.758836,3008656476 +2,6007,1236,128,2.64079714,0.148022691,864.732286,3008656476 +2,6008,1237,128,2.46369386,0.129679195,987.051161,3008656476 +2,6009,1238,128,2.34111381,0.130447299,981.239175,3008656476 +2,6010,1239,128,2.66990948,0.129216778,990.583436,3008656476 +2,6011,1240,128,2.71657538,0.128701513,994.549303,3008656476 +2,6012,1241,128,1.57431364,0.131082228,976.486301,3008656476 +2,6013,1242,128,2.54494405,0.144517834,885.703836,3008656476 +2,6014,1243,128,1.7186377,0.128912324,992.922911,3008656476 +2,6015,1244,128,2.68384767,0.135861173,942.138193,3008656476 +2,6016,1245,128,2.18685484,0.126716207,1010.13125,3008656476 +2,6017,1246,128,2.19445467,0.127067693,1007.33709,3008656476 +2,6018,1247,128,1.82177424,0.127900413,1000.77863,3008656476 +2,6019,1248,128,1.20637012,0.125955054,1016.23552,3008656476 +2,6020,1249,128,1.41295385,0.127028297,1007.6495,3008656476 +2,6021,1250,128,1.84735823,0.140369707,911.87766,3008656476 +2,6022,1251,128,1.50147808,0.125483277,1020.05624,3008656476 +2,6023,1252,128,1.97901022,0.14681467,871.84748,3008656476 +2,6024,1253,128,1.90072298,0.126832293,1009.2067,3008656476 +2,6025,1254,128,1.74576294,0.127313503,1005.39218,3008656476 +2,6026,1255,128,1.46503103,0.129192937,990.766237,3008656476 +2,6027,1256,128,1.80659449,0.128178217,998.609616,3008656476 +2,6028,1257,128,2.06032515,0.126501116,1011.84878,3008656476 +2,6029,1258,128,1.42245221,0.140600016,910.383965,3008656476 +2,6030,1259,128,2.53128624,0.125613793,1018.99638,3008656476 +2,6031,1260,128,2.88203549,0.144077629,888.409956,3008656476 +2,6032,1261,128,2.59842801,0.126646201,1010.68961,3008656476 +2,6033,1262,128,2.9955194,0.127389095,1004.79558,3008656476 +2,6034,1263,128,2.79607606,0.126165545,1014.54006,3008656476 +2,6035,1264,128,2.43788671,0.12680436,1009.42901,3008656476 +2,6036,1265,128,2.43818951,0.125719418,1018.14025,3008656476 +2,6037,1266,128,2.34791732,0.139361037,918.477666,3008656476 +2,6038,1267,128,2.61069131,0.126224867,1014.06326,3008656476 +2,6039,1268,128,2.58008647,0.140973371,907.972897,3008656476 +2,6040,1269,128,2.56646204,0.125667951,1018.55723,3008656476 +2,6041,1270,128,1.87828672,0.125360521,1021.05511,3008656476 +2,6042,1271,128,2.25642753,0.127307949,1005.43604,3008656476 +2,6043,1272,128,2.0999589,0.125832884,1017.22218,3008656476 +2,6044,1273,128,3.0930419,0.125648795,1018.71252,3008656476 +2,6045,1274,128,2.05020022,0.13880153,922.180036,3008656476 +2,6046,1275,128,2.61857629,0.126476445,1012.04616,3008656476 +2,6047,1276,128,2.74893045,0.139468956,917.766962,3008656476 +2,6048,1277,128,2.08918381,0.126423201,1012.47239,3008656476 +2,6049,1278,128,2.44773269,0.126550525,1011.45373,3008656476 +2,6050,1279,128,2.69264412,0.126007749,1015.81054,3008656476 +2,6051,1280,128,2.44003844,0.12575835,1017.82506,3008656476 +2,6052,1281,128,2.61014009,0.126881816,1008.8128,3008656476 +2,6053,1282,128,2.65259528,0.135303423,946.02189,3008656476 +2,6054,1283,128,1.83183122,0.123434159,1036.99009,3008656476 +2,6055,1284,128,2.38799763,0.137970182,927.73669,3008656476 +2,6056,1285,128,2.82960153,0.125953315,1016.24955,3008656476 +2,6057,1286,128,2.34464979,0.126278817,1013.63002,3008656476 +2,6058,1287,128,2.52856946,0.126023276,1015.68539,3008656476 +2,6059,1288,128,2.11386919,0.125054599,1023.55292,3008656476 +2,6060,1289,128,2.14620876,0.120023315,1066.45946,3008656476 +2,6061,1290,128,2.40459681,0.12533401,1021.27108,3008656476 +2,6062,1291,128,2.55889201,0.137933706,927.982026,3008656476 +2,6063,1292,128,2.6368196,0.135140731,947.160779,3008656476 +2,6064,1293,128,2.03187895,0.124763156,1025.94391,3008656476 +2,6065,1294,128,2.2039752,0.127663568,1002.6353,3008656476 +2,6066,1295,128,2.09844351,0.128321403,997.495328,3008656476 +2,6067,1296,128,2.24198866,0.129025041,992.055488,3008656476 +2,6068,1297,128,2.48424292,0.128850524,993.399142,3008656476 +2,6069,1298,128,2.42907405,0.12894856,992.643888,3008656476 +2,6070,1299,128,2.68337679,0.143410259,892.544236,3008656476 +2,6071,1300,128,2.47588706,0.143337327,892.998374,3008656476 +2,6072,1301,128,2.45842695,0.121121525,1056.78986,3008656476 +2,6073,1302,128,2.13878703,0.132022803,969.529483,3008656476 +2,6074,1303,128,2.05552912,0.138844518,921.894518,3008656476 +2,6075,1304,128,2.31941152,0.142278385,899.644735,3008656476 +2,6076,1305,128,2.66782904,0.142621432,897.480822,3008656476 +2,6077,1306,128,2.47763515,0.147044928,870.482252,3008656476 +2,6078,1307,128,2.54649997,0.127306021,1005.45127,3008656476 +2,6079,1308,128,1.90159631,0.145654876,878.789667,3008656476 +2,6080,1309,128,2.56749463,0.131271814,975.076036,3008656476 +2,6081,1310,128,3.06739998,0.129865243,985.637088,3008656476 +2,6082,1311,128,2.47960663,0.129470167,988.644743,3008656476 +2,6083,1312,128,2.19573593,0.128609366,995.261885,3008656476 +2,6084,1313,128,2.45713806,0.128349141,997.279756,3008656476 +2,6085,1314,128,2.29543853,0.139763126,915.835268,3008656476 +2,6086,1315,128,2.16959071,0.126592464,1011.11864,3008656476 +2,6087,1316,128,2.6019721,0.139921809,914.796635,3008656476 +2,6088,1317,128,2.25661874,0.126207751,1014.20078,3008656476 +2,6089,1318,128,1.7390027,0.126305081,1013.41925,3008656476 +2,6090,1319,128,2.48503423,0.125153951,1022.74038,3008656476 +2,6091,1320,128,2.66362596,0.124969555,1024.24947,3008656476 +2,6092,1321,128,2.58928084,0.125294392,1021.59401,3008656476 +2,6093,1322,128,2.77863979,0.125685055,1018.41862,3008656476 +2,6094,1323,128,2.1611836,0.139067992,920.413088,3008656476 +2,6095,1324,128,1.61911356,0.137494927,930.943438,3008656476 +2,6096,1325,128,2.14280987,0.12572812,1018.06978,3008656476 +2,6097,1326,128,2.76150131,0.125213101,1022.25725,3008656476 +2,6098,1327,128,2.69883466,0.126029056,1015.63881,3008656476 +2,6099,1328,128,2.73805356,0.124988595,1024.09344,3008656476 +2,6100,1329,128,2.22805882,0.125315988,1021.41795,3008656476 +2,6101,1330,128,2.33350182,0.126078791,1015.23816,3008656476 +2,6102,1331,128,1.97700381,0.13893869,921.269662,3008656476 +2,6103,1332,128,2.46382689,0.124627382,1027.06161,3008656476 +2,6104,1333,128,2.26634169,0.134488819,951.751982,3008656476 +2,6105,1334,128,2.67599893,0.124462337,1028.42356,3008656476 +2,6106,1335,128,2.1188972,0.125566623,1019.37917,3008656476 +2,6107,1336,128,2.52111316,0.125663746,1018.59131,3008656476 +2,6108,1337,128,1.95007348,0.125154593,1022.73514,3008656476 +2,6109,1338,128,2.29607964,0.125453807,1020.29586,3008656476 +2,6110,1339,128,2.23619223,0.138533553,923.963886,3008656476 +2,6111,1340,128,2.02275848,0.124917216,1024.67862,3008656476 +2,6112,1341,128,2.23077893,0.137446299,931.272802,3008656476 +2,6113,1342,128,2.53169584,0.123989521,1032.34531,3008656476 +2,6114,1343,128,2.08114481,0.124599966,1027.2876,3008656476 +2,6115,1344,128,2.5403347,0.125592105,1019.17234,3008656476 +2,6116,1345,128,2.29735589,0.12529117,1021.62028,3008656476 +2,6117,1346,128,2.4843967,0.125679184,1018.46619,3008656476 +2,6118,1347,128,2.17365265,0.141626071,903.788399,3008656476 +2,6119,1348,128,1.79454362,0.125448134,1020.342,3008656476 +2,6120,1349,128,2.54008818,0.141864618,902.268669,3008656476 +2,6121,1350,128,2.41021943,0.126212173,1014.16525,3008656476 +2,6122,1351,128,2.56150103,0.127036896,1007.58129,3008656476 +2,6123,1352,128,1.9954915,0.127561114,1003.44059,3008656476 +2,6124,1353,128,1.8634001,0.127980807,1000.14997,3008656476 +2,6125,1354,128,2.43144083,0.129580619,987.802042,3008656476 +2,6126,1355,128,2.00542283,0.142251659,899.813759,3008656476 +2,6127,1356,128,2.12166452,0.129414144,989.072725,3008656476 +2,6128,1357,128,2.43379712,0.144788029,884.050987,3008656476 +2,6129,1358,128,2.43193603,0.130313471,982.246878,3008656476 +2,6130,1359,128,2.06957865,0.136254254,939.420211,3008656476 +2,6131,1360,128,1.88029814,0.13814135,926.587151,3008656476 +2,6132,1361,128,2.72648406,0.138406607,924.811342,3008656476 +2,6133,1362,128,2.59625864,0.132058577,969.266843,3008656476 +2,6134,1363,128,2.41316032,0.144547047,885.524835,3008656476 +2,6135,1364,128,2.01516652,0.132474378,966.224578,3008656476 +2,6136,1365,128,2.39630413,0.144713122,884.508593,3008656476 +2,6137,1366,128,2.63793373,0.130432995,981.346783,3008656476 +2,6138,1367,128,2.72531843,0.129369163,989.41662,3008656476 +2,6139,1368,128,2.54022789,0.128909892,992.941643,3008656476 +2,6140,1369,128,2.32196546,0.129832767,985.883633,3008656476 +2,6141,1370,128,2.01308393,0.12852557,995.910775,3008656476 +2,6142,1371,128,2.54659939,0.142418953,898.756783,3008656476 +2,6143,1372,128,2.11138463,0.126882038,1008.81103,3008656476 +2,6144,1373,128,2.65349221,0.14627972,875.035856,3008656476 +2,6145,1374,128,2.95482397,0.129273393,990.149613,3008656476 +2,6146,1375,128,2.99300599,0.129206873,990.659375,3008656476 +2,6147,1376,128,3.07947063,0.129353463,989.536708,3008656476 +2,6148,1377,128,2.54237556,0.130702864,979.320545,3008656476 +2,6149,1378,128,2.23235393,0.127779455,1001.72598,3008656476 +2,6150,1379,128,2.25076342,0.139799264,915.598526,3008656476 +2,6151,1380,128,2.68573403,0.126961838,1008.17696,3008656476 +2,6152,1381,128,2.13083434,0.144916938,883.264591,3008656476 +2,6153,1382,128,2.34535336,0.129246664,990.354382,3008656476 +2,6154,1383,128,2.20784616,0.128170179,998.672242,3008656476 +2,6155,1384,128,1.91756272,0.127793524,1001.6157,3008656476 +2,6156,1385,128,2.51284838,0.127550824,1003.52155,3008656476 +2,6157,1386,128,1.75968802,0.127373887,1004.91555,3008656476 +2,6158,1387,128,2.1974833,0.140468788,911.234459,3008656476 +2,6159,1388,128,2.70084715,0.128076321,999.404097,3008656476 +2,6160,1389,128,2.25644422,0.145184305,881.637998,3008656476 +2,6161,1390,128,1.89496613,0.127214904,1006.17142,3008656476 +2,6162,1391,128,2.32841849,0.127784941,1001.68298,3008656476 +2,6163,1392,128,2.20682144,0.12720369,1006.26012,3008656476 +2,6164,1393,128,2.40556479,0.127577913,1003.30846,3008656476 +2,6165,1394,128,2.71414566,0.126588333,1011.15164,3008656476 +2,6166,1395,128,2.3323791,0.142240247,899.885951,3008656476 +2,6167,1396,128,2.30351138,0.125872357,1016.90318,3008656476 +2,6168,1397,128,2.78653836,0.142490977,898.302494,3008656476 +2,6169,1398,128,2.21384954,0.128218929,998.292538,3008656476 +2,6170,1399,128,2.51522589,0.126120663,1014.9011,3008656476 +2,6171,1400,128,2.84194136,0.127875058,1000.97706,3008656476 +2,6172,1401,128,3.00953531,0.127972038,1000.2185,3008656476 +2,6173,1402,128,2.29482174,0.12683969,1009.14785,3008656476 +2,6174,1403,128,2.57359338,0.141479995,904.721547,3008656476 +2,6175,1404,128,2.05918574,0.126825564,1009.26025,3008656476 +2,6176,1405,128,2.47197485,0.139985711,914.37904,3008656476 +2,6177,1406,128,2.86295223,0.126748433,1009.87442,3008656476 +2,6178,1407,128,2.78739643,0.125551154,1019.50477,3008656476 +2,6179,1408,128,2.66696548,0.125559781,1019.43472,3008656476 +2,6180,1409,128,2.86934137,0.125798625,1017.4992,3008656476 +2,6181,1410,128,2.62050462,0.126514887,1011.73864,3008656476 +2,6182,1411,128,3.21252441,0.140339305,912.075202,3008656476 +2,6183,1412,128,2.70398712,0.125418911,1020.57974,3008656476 +2,6184,1413,128,2.9019773,0.140964746,908.028451,3008656476 +2,6185,1414,128,2.99819684,0.125906405,1016.62819,3008656476 +2,6186,1415,128,3.02450323,0.126102967,1015.04352,3008656476 +2,6187,1416,128,2.74863648,0.126579366,1011.22327,3008656476 +2,6188,1417,128,2.91864181,0.125563967,1019.40073,3008656476 +2,6189,1418,128,2.94633842,0.126018376,1015.72488,3008656476 +2,6190,1419,128,3.0620563,0.1383391,925.262634,3008656476 +2,6191,1420,128,3.01990247,0.125867681,1016.94096,3008656476 +2,6192,1421,128,2.80372787,0.143564692,891.584123,3008656476 +2,6193,1422,128,3.35821247,0.125546881,1019.53947,3008656476 +2,6194,1423,128,2.65834236,0.125471051,1020.15564,3008656476 +2,6195,1424,128,3.00889921,0.126370948,1012.89103,3008656476 +2,6196,1425,128,3.60229921,0.126149655,1014.66786,3008656476 +2,6197,1426,128,2.64576435,0.125830032,1017.24523,3008656476 +2,6198,1427,128,2.85698795,0.126044965,1015.51062,3008656476 +2,6199,1428,128,2.82820344,0.127096725,1007.10699,3008656476 +2,6200,1429,128,3.45154905,0.139168823,919.746228,3008656476 +2,6201,1430,128,3.05551171,0.126250674,1013.85597,3008656476 +2,6202,1431,128,3.03059936,0.126696727,1010.28656,3008656476 +2,6203,1432,128,3.31047392,0.127053198,1007.45201,3008656476 +2,6204,1433,128,2.42316794,0.127201989,1006.27357,3008656476 +2,6205,1434,128,2.60830808,0.12686932,1008.91216,3008656476 +2,6206,1435,128,3.11313605,0.127803041,1001.54111,3008656476 +2,6207,1436,128,2.13240504,0.143437325,892.375816,3008656476 +2,6208,1437,128,3.02223325,0.131044827,976.764997,3008656476 +2,6209,1438,128,2.92514133,0.129031088,992.008996,3008656476 +2,6210,1439,128,2.86116409,0.130509338,980.772732,3008656476 +2,6211,1440,128,3.05552983,0.13100084,977.092971,3008656476 +2,6212,1441,128,3.23716474,0.138933943,921.301139,3008656476 +2,6213,1442,128,2.98056388,0.129254571,990.293798,3008656476 +2,6214,1443,128,2.30658746,0.131106848,976.302931,3008656476 +2,6215,1444,128,3.24324679,0.146382529,874.421291,3008656476 +2,6216,1445,128,2.92257571,0.14298816,895.179013,3008656476 +2,6217,1446,128,3.34446526,0.130861515,978.133258,3008656476 +2,6218,1447,128,2.90387034,0.130373865,981.791864,3008656476 +2,6219,1448,128,2.56057501,0.129868185,985.61476,3008656476 +2,6220,1449,128,3.2881813,0.129300748,989.940136,3008656476 +2,6221,1450,128,2.47644782,0.129251328,990.318645,3008656476 +2,6222,1451,128,2.6913414,0.128501711,996.095686,3008656476 +2,6223,1452,128,2.64197803,0.141142497,906.884905,3008656476 +2,6224,1453,128,2.79136014,0.140844556,908.803319,3008656476 +2,6225,1454,128,2.79379869,0.128102053,999.203346,3008656476 +2,6226,1455,128,2.00184107,0.128860535,993.321966,3008656476 +2,6227,1456,128,2.97120738,0.127381801,1004.85312,3008656476 +2,6228,1457,128,2.85766244,0.127139656,1006.76692,3008656476 +2,6229,1458,128,3.23533511,0.127015836,1007.74836,3008656476 +2,6230,1459,128,3.1670332,0.126040027,1015.5504,3008656476 +2,6231,1460,128,2.7579093,0.145189097,881.608899,3008656476 +2,6232,1461,128,1.93114698,0.143609439,891.306316,3008656476 +2,6233,1462,128,2.05713487,0.127977419,1000.17645,3008656476 +2,6234,1463,128,2.82452035,0.129146556,991.122055,3008656476 +2,6235,1464,128,2.14428258,0.128029586,999.768913,3008656476 +2,6236,1465,128,2.62285805,0.127340902,1005.17585,3008656476 +2,6237,1466,128,3.40980983,0.125938186,1016.37163,3008656476 +2,6238,1467,128,2.91176271,0.126078019,1015.24438,3008656476 +2,6239,1468,128,2.50465417,0.142089177,900.842715,3008656476 +2,6240,1469,128,3.34700561,0.143066797,894.686976,3008656476 +2,6241,1470,128,2.43288827,0.127747945,1001.97307,3008656476 +2,6242,1471,128,3.2709353,0.126587846,1011.15553,3008656476 +2,6243,1472,128,2.86687088,0.127385266,1004.82579,3008656476 +2,6244,1473,128,3.18101883,0.126064872,1015.35026,3008656476 +2,6245,1474,128,2.69801712,0.126655345,1010.61665,3008656476 +2,6246,1475,128,2.6479249,0.125943637,1016.32765,3008656476 +2,6247,1476,128,2.69186497,0.141340562,905.614059,3008656476 +2,6248,1477,128,3.04274845,0.12596467,1016.15794,3008656476 +2,6249,1478,128,2.71449995,0.130562171,980.375855,3008656476 +2,6250,1479,128,2.99975777,0.125403251,1020.70719,3008656476 +2,6251,1480,128,2.67389488,0.125154429,1022.73648,3008656476 +2,6252,1481,128,3.14020252,0.124253023,1030.15602,3008656476 +2,6253,1482,128,2.68835378,0.125279163,1021.71819,3008656476 +2,6254,1483,128,2.54544091,0.126039337,1015.55596,3008656476 +2,6255,1484,128,2.63485122,0.141596182,903.979177,3008656476 +2,6256,1485,128,2.90863442,0.125778297,1017.66364,3008656476 +2,6257,1486,128,3.1380434,0.140265386,912.55586,3008656476 +2,6258,1487,128,3.06653023,0.126207604,1014.20197,3008656476 +2,6259,1488,128,2.72103477,0.126045853,1015.50346,3008656476 +2,6260,1489,128,2.45252824,0.126282362,1013.60157,3008656476 +2,6261,1490,128,2.87210417,0.126195798,1014.29685,3008656476 +2,6262,1491,128,2.82166529,0.125600593,1019.10347,3008656476 +2,6263,1492,128,3.10475349,0.140888276,908.521302,3008656476 +2,6264,1493,128,2.55835176,0.125700657,1018.29221,3008656476 +2,6265,1494,128,2.02084732,0.138256475,925.81559,3008656476 +2,6266,1495,128,2.60356212,0.125292128,1021.61247,3008656476 +2,6267,1496,128,2.66989279,0.125081459,1023.33312,3008656476 +2,6268,1497,128,2.66578484,0.125882996,1016.81724,3008656476 +2,6269,1498,128,2.60886025,0.124879467,1024.98836,3008656476 +2,6270,1499,128,2.48178411,0.125146437,1022.80179,3008656476 +2,6271,1500,128,2.95827818,0.139104658,920.170481,3008656476 +2,6272,1501,128,3.28796911,0.125352571,1021.11986,3008656476 +2,6273,1502,128,2.61408234,0.138926169,921.352693,3008656476 +2,6274,1503,128,2.85135388,0.123953453,1032.6457,3008656476 +2,6275,1504,128,2.68914485,0.126043803,1015.51998,3008656476 +2,6276,1505,128,2.91673899,0.125349171,1021.14756,3008656476 +2,6277,1506,128,2.37938309,0.126733493,1009.99347,3008656476 +2,6278,1507,128,2.74489284,0.126490557,1011.93325,3008656476 +2,6279,1508,128,2.64673257,0.127250249,1005.89194,3008656476 +2,6280,1509,128,2.90468168,0.133432184,959.288802,3008656476 +2,6281,1510,128,3.37793255,0.145188874,881.610253,3008656476 +2,6282,1511,128,2.466717,0.134481328,951.804997,3008656476 +2,6283,1512,128,2.80585575,0.129990114,984.690267,3008656476 +2,6284,1513,128,3.0269084,0.130056686,984.186234,3008656476 +2,6285,1514,128,3.45636249,0.129939883,985.070919,3008656476 +2,6286,1515,128,2.64212751,0.129319332,989.797875,3008656476 +2,6287,1516,128,3.12715149,0.143223289,893.709402,3008656476 +2,6288,1517,128,3.16690493,0.119577236,1070.43785,3008656476 +2,6289,1518,128,3.07441902,0.139947269,914.63021,3008656476 +2,6290,1519,128,2.56708026,0.126370178,1012.8972,3008656476 +2,6291,1520,128,3.20113039,0.125849965,1017.08411,3008656476 +2,6292,1521,128,2.49021387,0.125276027,1021.74377,3008656476 +2,6293,1522,128,3.16705465,0.125038601,1023.68388,3008656476 +2,6294,1523,128,3.4186573,0.125563345,1019.40578,3008656476 +2,6295,1524,128,3.23692179,0.125579925,1019.27119,3008656476 +2,6296,1525,128,2.64958739,0.140116944,913.522636,3008656476 +2,6297,1526,128,2.07500458,0.126199656,1014.26584,3008656476 +2,6298,1527,128,2.21929264,0.128777943,993.959035,3008656476 +2,6299,1528,128,2.76760936,0.125625791,1018.89906,3008656476 +2,6300,1529,128,3.26221776,0.126585552,1011.17385,3008656476 +2,6301,1530,128,3.21012878,0.125857373,1017.02425,3008656476 +2,6302,1531,128,3.57262254,0.126679558,1010.42348,3008656476 +2,6303,1532,128,3.5073905,0.125687611,1018.39791,3008656476 +2,6304,1533,128,3.02154231,0.140744764,909.447686,3008656476 +2,6305,1534,128,3.00743604,0.125692588,1018.35758,3008656476 +2,6306,1535,128,2.37772846,0.140185704,913.07456,3008656476 +2,6307,1536,128,2.87424278,0.125876081,1016.87309,3008656476 +2,6308,1537,128,2.71078777,0.125980455,1016.03062,3008656476 +2,6309,1538,128,3.09579539,0.125366522,1021.00623,3008656476 +2,6310,1539,128,2.60433865,0.124872765,1025.04337,3008656476 +2,6311,1540,128,3.33707237,0.124328046,1029.5344,3008656476 +2,6312,1541,128,3.11526513,0.139270444,919.07512,3008656476 +2,6313,1542,128,3.30867958,0.125614378,1018.99163,3008656476 +2,6314,1543,128,2.88037133,0.138077741,927.014007,3008656476 +2,6315,1544,128,3.2796216,0.125294077,1021.59658,3008656476 +2,6316,1545,128,2.85735917,0.125817231,1017.34873,3008656476 +2,6317,1546,128,2.62623096,0.126864741,1008.94858,3008656476 +2,6318,1547,128,2.81560826,0.127060349,1007.39531,3008656476 +2,6319,1548,128,2.73997855,0.129209895,990.636205,3008656476 +2,6320,1549,128,3.20618749,0.140881953,908.562078,3008656476 +2,6321,1550,128,2.90416312,0.128702404,994.542417,3008656476 +2,6322,1551,128,2.50745916,0.144903661,883.345522,3008656476 +2,6323,1552,128,2.93356252,0.131259096,975.170513,3008656476 +2,6324,1553,128,3.8215158,0.129330691,989.710942,3008656476 +2,6325,1554,128,3.36211872,0.130204334,983.070195,3008656476 +2,6326,1555,128,2.70602465,0.129428697,988.961513,3008656476 +2,6327,1556,128,3.11084652,0.12967719,987.066422,3008656476 +2,6328,1557,128,3.1597929,0.143461645,892.224538,3008656476 +2,6329,1558,128,2.830585,0.13021632,982.979706,3008656476 +2,6330,1559,128,2.62790155,0.143573788,891.527637,3008656476 +2,6331,1560,128,2.76612639,0.128683935,994.685156,3008656476 +2,6332,1561,128,3.09694719,0.129167716,990.959692,3008656476 +2,6333,1562,128,3.4810493,0.127722547,1002.17231,3008656476 +2,6334,1563,128,3.42806339,0.126420597,1012.49324,3008656476 +2,6335,1564,128,3.09096408,0.126964052,1008.15938,3008656476 +2,6336,1565,128,2.89146018,0.141781567,902.797188,3008656476 +2,6337,1566,128,2.20956588,0.128943568,992.682318,3008656476 +2,6338,1567,128,2.01515436,0.139015722,920.759164,3008656476 +2,6339,1568,128,1.69784737,0.125195969,1022.39713,3008656476 +2,6340,1569,128,2.40036488,0.125869724,1016.92445,3008656476 +2,6341,1570,128,2.61615753,0.1257065,1018.24488,3008656476 +2,6342,1571,128,2.86103201,0.126537081,1011.56119,3008656476 +2,6343,1572,128,2.09929872,0.125005692,1023.95337,3008656476 +2,6344,1573,128,2.63984585,0.141596244,903.978781,3008656476 +2,6345,1574,128,3.06277251,0.125466404,1020.19342,3008656476 +2,6346,1575,128,3.1797328,0.139345148,918.582397,3008656476 +2,6347,1576,128,2.85122871,0.126288012,1013.55622,3008656476 +2,6348,1577,128,2.88498974,0.125331728,1021.28968,3008656476 +2,6349,1578,128,2.60574317,0.126715835,1010.13421,3008656476 +2,6350,1579,128,2.91299725,0.125160682,1022.68538,3008656476 +2,6351,1580,128,3.18535256,0.125131024,1022.92778,3008656476 +2,6352,1581,128,2.75248504,0.138807182,922.142487,3008656476 +2,6353,1582,128,2.6316309,0.11600519,1103.39891,3008656476 +2,6354,1583,128,2.54357743,0.137391943,931.641239,3008656476 +2,6355,1584,128,3.08924699,0.125022664,1023.81437,3008656476 +2,6356,1585,128,3.08983397,0.124609649,1027.20777,3008656476 +2,6357,1586,128,3.14801741,0.124616696,1027.14968,3008656476 +2,6358,1587,128,2.54327202,0.125998201,1015.88752,3008656476 +2,6359,1588,128,2.6226244,0.125271291,1021.7824,3008656476 +2,6360,1589,128,3.01135826,0.126779517,1009.62682,3008656476 +2,6361,1590,128,2.5316608,0.142048154,901.102875,3008656476 +2,6362,1591,128,2.5052073,0.127728403,1002.12636,3008656476 +2,6363,1592,128,2.99150133,0.13815171,926.517667,3008656476 +2,6364,1593,128,3.08325076,0.133383648,959.637871,3008656476 +2,6365,1594,128,2.87910151,0.139017087,920.750123,3008656476 +2,6366,1595,128,2.53048635,0.130025544,984.421953,3008656476 +2,6367,1596,128,2.57028556,0.131585649,972.750455,3008656476 +2,6368,1597,128,2.4225111,0.129127521,991.268159,3008656476 +2,6369,1598,128,2.68601847,0.142450137,898.560034,3008656476 +2,6370,1599,128,2.50110126,0.136802798,935.653377,3008656476 +2,6371,1600,128,2.05568361,0.125949004,1016.28434,3008656476 +2,6372,1601,128,2.47050738,0.126346568,1013.08648,3008656476 +2,6373,1602,128,2.40700603,0.127264336,1005.7806,3008656476 +2,6374,1603,128,2.70335984,0.125810281,1017.40493,3008656476 +2,6375,1604,128,2.16333461,0.126288115,1013.55539,3008656476 +2,6376,1605,128,2.00561786,0.125272172,1021.77521,3008656476 +2,6377,1606,128,1.80124271,0.14176216,902.920779,3008656476 +2,6378,1607,128,3.01460457,0.126086181,1015.17866,3008656476 +2,6379,1608,128,2.49537301,0.137603236,930.210682,3008656476 +2,6380,1609,128,2.73307729,0.126114688,1014.94919,3008656476 +2,6381,1610,128,3.02041364,0.125669709,1018.54298,3008656476 +2,6382,1611,128,3.06277084,0.125793166,1017.54335,3008656476 +2,6383,1612,128,3.18794417,0.12535279,1021.11808,3008656476 +2,6384,1613,128,2.69267058,0.12584564,1017.11907,3008656476 +2,6385,1614,128,2.53627062,0.140371639,911.86511,3008656476 +2,6386,1615,128,2.53278112,0.125223296,1022.17402,3008656476 +2,6387,1616,128,2.38431096,0.146065808,876.317338,3008656476 +2,6388,1617,128,2.94865322,0.125547483,1019.53458,3008656476 +2,6389,1618,128,1.87366426,0.12573031,1018.05205,3008656476 +2,6390,1619,128,3.06676245,0.125620518,1018.94183,3008656476 +2,6391,1620,128,3.60673809,0.126255948,1013.81362,3008656476 +2,6392,1621,128,3.00664258,0.126891998,1008.73185,3008656476 +2,6393,1622,128,2.62740803,0.139867349,915.152828,3008656476 +2,6394,1623,128,2.97190952,0.126670174,1010.49834,3008656476 +2,6395,1624,128,2.90642858,0.145993403,876.751945,3008656476 +2,6396,1625,128,2.48026109,0.125320037,1021.38495,3008656476 +2,6397,1626,128,3.00733042,0.12529575,1021.58293,3008656476 +2,6398,1627,128,3.0615685,0.12500681,1023.94422,3008656476 +2,6399,1628,128,2.8392942,0.126789351,1009.54851,3008656476 +2,6400,1629,128,2.4653008,0.125919009,1016.52642,3008656476 +2,6401,1630,128,2.87161326,0.140176802,913.132545,3008656476 +2,6402,1631,128,2.71553254,0.125641443,1018.77213,3008656476 +2,6403,1632,128,2.88097835,0.143335934,893.007053,3008656476 +2,6404,1633,128,2.64040327,0.126173826,1014.47348,3008656476 +2,6405,1634,128,2.84652305,0.127118657,1006.93323,3008656476 +2,6406,1635,128,2.56230068,0.126032205,1015.61343,3008656476 +2,6407,1636,128,2.48589253,0.12649598,1011.88986,3008656476 +2,6408,1637,128,2.74604034,0.125723983,1018.10328,3008656476 +2,6409,1638,128,2.92934799,0.140131019,913.43088,3008656476 +2,6410,1639,128,3.19051194,0.127052447,1007.45797,3008656476 +2,6411,1640,128,2.53597307,0.143797133,890.142921,3008656476 +2,6412,1641,128,2.02923632,0.125630524,1018.86067,3008656476 +2,6413,1642,128,3.00080776,0.126296612,1013.4872,3008656476 +2,6414,1643,128,2.2940526,0.125797256,1017.51027,3008656476 +2,6415,1644,128,2.39543009,0.125639132,1018.79087,3008656476 +2,6416,1645,128,1.85988021,0.126564221,1011.34427,3008656476 +2,6417,1646,128,2.97725773,0.137504217,930.880542,3008656476 +2,6418,1647,128,2.71008134,0.123035671,1040.3487,3008656476 +2,6419,1648,128,2.28120685,0.141285555,905.966643,3008656476 +2,6420,1649,128,2.22124028,0.126381592,1012.80573,3008656476 +2,6421,1650,128,2.36225009,0.126372045,1012.88224,3008656476 +2,6422,1651,128,2.4496181,0.126873603,1008.8781,3008656476 +2,6423,1652,128,2.75116825,0.126980858,1008.02595,3008656476 +2,6424,1653,128,2.17574334,0.127264144,1005.78212,3008656476 +2,6425,1654,128,2.21152401,0.127365627,1004.98072,3008656476 +2,6426,1655,128,2.44628477,0.137608607,930.174375,3008656476 +2,6427,1656,128,2.7959013,0.12957046,987.87949,3008656476 +2,6428,1657,128,2.71811414,0.134067108,954.745738,3008656476 +2,6429,1658,128,2.9092505,0.139515625,917.459962,3008656476 +2,6430,1659,128,2.69194269,0.189835935,674.26644,3008656476 +2,6431,1660,128,2.11634445,0.129890718,985.443779,3008656476 +2,6432,1661,128,2.30369925,0.130016449,984.490816,3008656476 +2,6433,1662,128,2.57904673,0.14256266,897.850812,3008656476 +2,6434,1663,128,2.82672358,0.129878062,985.539806,3008656476 +2,6435,1664,128,3.03911853,0.141150551,906.833159,3008656476 +2,6436,1665,128,2.71357727,0.128563076,995.620235,3008656476 +2,6437,1666,128,2.9647491,0.129204049,990.681027,3008656476 +2,6438,1667,128,2.99887562,0.128138971,998.915467,3008656476 +2,6439,1668,128,3.13759327,0.127659997,1002.66335,3008656476 +2,6440,1669,128,2.95298767,0.118357169,1081.4723,3008656476 +2,6441,1670,128,2.84479713,0.143497724,892.00021,3008656476 +2,6442,1671,128,1.97254312,0.127042339,1007.53812,3008656476 +2,6443,1672,128,2.8196702,0.142589049,897.684646,3008656476 +2,6444,1673,128,2.78536487,0.126988313,1007.96677,3008656476 +2,6445,1674,128,2.94882298,0.127836878,1001.27602,3008656476 +2,6446,1675,128,2.63591242,0.127979238,1000.16223,3008656476 +2,6447,1676,128,2.76118279,0.126157012,1014.60868,3008656476 +2,6448,1677,128,3.41999984,0.12623727,1013.96363,3008656476 +2,6449,1678,128,3.15413642,0.139725013,916.085082,3008656476 +2,6450,1679,128,3.13858604,0.125648899,1018.71167,3008656476 +2,6451,1680,128,2.97091174,0.140669555,909.933923,3008656476 +2,6452,1681,128,3.16576052,0.125517745,1019.77613,3008656476 +2,6453,1682,128,3.10133839,0.125658583,1018.63316,3008656476 +2,6454,1683,128,3.03561401,0.125060723,1023.5028,3008656476 +2,6455,1684,128,2.68379807,0.125821978,1017.31035,3008656476 +2,6456,1685,128,2.26639462,0.125230316,1022.11672,3008656476 +2,6457,1686,128,3.10974836,0.13911935,920.073304,3008656476 +2,6458,1687,128,2.49126601,0.125886435,1016.78946,3008656476 +2,6459,1688,128,2.513726,0.138913805,921.434698,3008656476 +2,6460,1689,128,2.65980935,0.12699949,1007.87806,3008656476 +2,6461,1690,128,2.79051685,0.127549779,1003.52977,3008656476 +2,6462,1691,128,2.87070632,0.125758273,1017.82568,3008656476 +2,6463,1692,128,2.70438099,0.127472934,1004.13473,3008656476 +2,6464,1693,128,2.73497844,0.125167232,1022.63187,3008656476 +2,6465,1694,128,2.93552589,0.139094888,920.235113,3008656476 +2,6466,1695,128,3.09052253,0.123096077,1039.83817,3008656476 +2,6467,1696,128,2.89472842,0.138131056,926.656204,3008656476 +2,6468,1697,128,2.91787171,0.12658251,1011.19815,3008656476 +2,6469,1698,128,3.10177445,0.125772235,1017.71269,3008656476 +2,6470,1699,128,3.05211902,0.125979738,1016.0364,3008656476 +2,6471,1700,128,2.90402246,0.124414988,1028.81495,3008656476 +2,6472,1701,128,2.94998574,0.125091222,1023.25325,3008656476 +2,6473,1702,128,1.88100684,0.124962185,1024.30987,3008656476 +2,6474,1703,128,2.13601661,0.138854164,921.830475,3008656476 +2,6475,1704,128,1.96551502,0.126157347,1014.60599,3008656476 +2,6476,1705,128,2.30936956,0.136034158,940.940142,3008656476 +2,6477,1706,128,2.62212944,0.127608948,1003.06446,3008656476 +2,6478,1707,128,2.73308969,0.128236094,998.158911,3008656476 +2,6479,1708,128,3.46979856,0.128862089,993.309987,3008656476 +2,6480,1709,128,2.64751148,0.128766758,994.045373,3008656476 +2,6481,1710,128,3.15567517,0.128089009,999.3051,3008656476 +2,6482,1711,128,2.77632785,0.146627574,872.959952,3008656476 +2,6483,1712,128,2.32937217,0.129258498,990.263712,3008656476 +2,6484,1713,128,2.66424823,0.142261711,899.750179,3008656476 +2,6485,1714,128,2.88241315,0.138637145,923.273485,3008656476 +2,6486,1715,128,2.43496895,0.142481496,898.362269,3008656476 +2,6487,1716,128,2.57250762,0.13255851,965.611336,3008656476 +2,6488,1717,128,3.19478607,0.129615792,987.533988,3008656476 +2,6489,1718,128,2.24595261,0.129621168,987.49303,3008656476 +2,6490,1719,128,2.89516902,0.134202232,953.784435,3008656476 +2,6491,1720,128,3.41583371,0.140446931,911.376269,3008656476 +2,6492,1721,128,2.9647193,0.127334398,1005.2272,3008656476 +2,6493,1722,128,2.87407899,0.130242479,982.782276,3008656476 +2,6494,1723,128,3.00121617,0.127660864,1002.65654,3008656476 +2,6495,1724,128,3.20867252,0.127405374,1004.6672,3008656476 +2,6496,1725,128,2.26256537,0.127349758,1005.10595,3008656476 +2,6497,1726,128,3.37434983,0.126086393,1015.17695,3008656476 +2,6498,1727,128,2.95294356,0.144489753,885.875969,3008656476 +2,6499,1728,128,2.83592343,0.126861979,1008.97054,3008656476 +2,6500,1729,128,3.04290891,0.128613994,995.226072,3008656476 +2,6501,1730,128,2.4719274,0.126021955,1015.69603,3008656476 +2,6502,1731,128,2.37864828,0.126013655,1015.76293,3008656476 +2,6503,1732,128,2.90112042,0.125770458,1017.72707,3008656476 +2,6504,1733,128,2.24800444,0.126624517,1010.86269,3008656476 +2,6505,1734,128,2.62741899,0.125120478,1023.01399,3008656476 +2,6506,1735,128,2.0981586,0.142406643,898.834474,3008656476 +2,6507,1736,128,2.44882178,0.126748289,1009.87557,3008656476 +2,6508,1737,128,1.79638577,0.149040884,858.82475,3008656476 +2,6509,1738,128,2.2079792,0.126996354,1007.90295,3008656476 +2,6510,1739,128,1.70515049,0.125960951,1016.18795,3008656476 +2,6511,1740,128,1.85797465,0.127801038,1001.55681,3008656476 +2,6512,1741,128,2.2314992,0.126759274,1009.78805,3008656476 +2,6513,1742,128,2.33304048,0.126227957,1014.03844,3008656476 +2,6514,1743,128,2.62421346,0.139588893,916.978402,3008656476 +2,6515,1744,128,2.88250685,0.125718017,1018.1516,3008656476 +2,6516,1745,128,1.79907036,0.142117649,900.662239,3008656476 +2,6517,1746,128,3.20071554,0.126195886,1014.29614,3008656476 +2,6518,1747,128,3.29985261,0.124966051,1024.27819,3008656476 +2,6519,1748,128,2.56745076,0.127194569,1006.33228,3008656476 +2,6520,1749,128,3.31168199,0.126307875,1013.39683,3008656476 +2,6521,1750,128,2.43248963,0.125236014,1022.07022,3008656476 +2,6522,1751,128,3.01979923,0.13830202,925.510705,3008656476 +2,6523,1752,128,2.49173808,0.124952349,1024.39051,3008656476 +2,6524,1753,128,3.04891181,0.137716151,929.447992,3008656476 +2,6525,1754,128,3.01904225,0.126106409,1015.01582,3008656476 +2,6526,1755,128,3.40474987,0.126934869,1008.39116,3008656476 +2,6527,1756,128,2.46721745,0.124986577,1024.10997,3008656476 +2,6528,1757,128,2.4846096,0.125987315,1015.9753,3008656476 +2,6529,1758,128,2.39411855,0.12589623,1016.71035,3008656476 +2,6530,1759,128,2.79579949,0.142146355,900.480354,3008656476 +2,6531,1760,128,2.9972105,0.125891292,1016.75023,3008656476 +2,6532,1761,128,2.26764941,0.139942903,914.658745,3008656476 +2,6533,1762,128,3.39632559,0.12568829,1018.39241,3008656476 +2,6534,1763,128,2.53857541,0.125801352,1017.47714,3008656476 +2,6535,1764,128,2.55386114,0.125773696,1017.70087,3008656476 +2,6536,1765,128,1.98532867,0.125492813,1019.97873,3008656476 +2,6537,1766,128,2.87342548,0.125308745,1021.47699,3008656476 +2,6538,1767,128,2.92994618,0.140548349,910.718631,3008656476 +2,6539,1768,128,2.71463633,0.12635364,1013.02978,3008656476 +2,6540,1769,128,2.29814672,0.141419568,905.108125,3008656476 +2,6541,1770,128,2.24438977,0.126128946,1014.83445,3008656476 +2,6542,1771,128,2.30446672,0.124871129,1025.0568,3008656476 +2,6543,1772,128,1.99633276,0.124501014,1028.10408,3008656476 +2,6544,1773,128,2.17332077,0.12498086,1024.15682,3008656476 +2,6545,1774,128,2.0580647,0.124486936,1028.22034,3008656476 +2,6546,1775,128,2.37844515,0.125941031,1016.34868,3008656476 +2,6547,1776,128,2.43437195,0.136425551,938.240667,3008656476 +2,6548,1777,128,2.24934578,0.127676023,1002.53749,3008656476 +2,6549,1778,128,1.8793366,0.131682384,972.035865,3008656476 +2,6550,1779,128,2.4050498,0.130822908,978.421914,3008656476 +2,6551,1780,128,2.10983181,0.130418962,981.452375,3008656476 +2,6552,1781,128,1.54967821,0.131358801,974.430331,3008656476 +2,6553,1782,128,1.82562196,0.138530038,923.98733,3008656476 +2,6554,1783,128,1.99859047,0.138447434,924.538623,3008656476 +2,6555,1784,128,2.23016334,0.135366442,945.581476,3008656476 +2,6556,1785,128,2.21095324,0.143438102,892.370982,3008656476 +2,6557,1786,128,1.68220305,0.132576932,965.477162,3008656476 +2,6558,1787,128,1.90678298,0.129917904,985.23757,3008656476 +2,6559,1788,128,1.57463169,0.130164796,983.368806,3008656476 +2,6560,1789,128,2.19542241,0.12931328,989.844199,3008656476 +2,6561,1790,128,1.74811339,0.128823861,993.604748,3008656476 +2,6562,1791,128,2.72305703,0.143960325,889.133864,3008656476 +2,6563,1792,128,2.53416944,0.117486714,1089.48489,3008656476 +2,6564,1793,128,1.93156242,0.134683917,950.37331,3008656476 +2,6565,1794,128,2.49765062,0.12394634,1032.70496,3008656476 +2,6566,1795,128,1.61470342,0.12565508,1018.66156,3008656476 +2,6567,1796,128,2.5538497,0.125469338,1020.16957,3008656476 +2,6568,1797,128,2.70131421,0.126278539,1013.63225,3008656476 +2,6569,1798,128,2.64710093,0.125719832,1018.1369,3008656476 +2,6570,1799,128,2.02185011,0.126049367,1015.47515,3008656476 +2,6571,1800,128,2.08925724,0.14237529,899.032409,3008656476 +2,6572,1801,128,2.28612113,0.126153388,1014.63783,3008656476 +2,6573,1802,128,1.92654967,0.137853182,928.524087,3008656476 +2,6574,1803,128,2.55958748,0.125905854,1016.63263,3008656476 +2,6575,1804,128,2.09233618,0.12565907,1018.62922,3008656476 +2,6576,1805,128,2.98054671,0.125963287,1016.1691,3008656476 +2,6577,1806,128,2.42219424,0.126685007,1010.38002,3008656476 +2,6578,1807,128,2.71851826,0.126835787,1009.1789,3008656476 +2,6579,1808,128,2.56497693,0.140231654,912.775371,3008656476 +2,6580,1809,128,3.34855628,0.125521362,1019.74674,3008656476 +2,6581,1810,128,2.53818464,0.138828431,922.001344,3008656476 +2,6582,1811,128,2.25547481,0.125898492,1016.69208,3008656476 +2,6583,1812,128,1.95748532,0.124950679,1024.4042,3008656476 +2,6584,1813,128,1.83969748,0.12592096,1016.51067,3008656476 +2,6585,1814,128,3.0165062,0.125890414,1016.75732,3008656476 +2,6586,1815,128,2.89676785,0.125345187,1021.18002,3008656476 +2,6587,1816,128,2.42487168,0.136825318,935.499379,3008656476 +2,6588,1817,128,2.65422964,0.125041814,1023.65757,3008656476 +2,6589,1818,128,1.83977759,0.14060535,910.349428,3008656476 +2,6590,1819,128,1.81631851,0.125940995,1016.34897,3008656476 +2,6591,1820,128,2.44365478,0.126180627,1014.4188,3008656476 +2,6592,1821,128,2.84234571,0.127011921,1007.77942,3008656476 +2,6593,1822,128,3.44989228,0.128092163,999.280495,3008656476 +2,6594,1823,128,2.92537045,0.127704893,1002.31085,3008656476 +2,6595,1824,128,2.5663414,0.139838252,915.34325,3008656476 +2,6596,1825,128,2.12875199,0.128167541,998.692797,3008656476 +2,6597,1826,128,2.9666698,0.143928802,889.3286,3008656476 +2,6598,1827,128,2.32910538,0.128525454,995.911674,3008656476 +2,6599,1828,128,2.30527949,0.1290971,991.501746,3008656476 +2,6600,1829,128,2.50436497,0.12976757,986.378954,3008656476 +2,6601,1830,128,2.49281216,0.130945601,977.505155,3008656476 +2,6602,1831,128,2.92304063,0.132205627,968.188744,3008656476 +2,6603,1832,128,2.37619376,0.149521496,856.064201,3008656476 +2,6604,1833,128,2.6150949,0.130877869,978.011034,3008656476 +2,6605,1834,128,2.90185595,0.142656671,897.259126,3008656476 +2,6606,1835,128,2.53548265,0.132461055,966.321762,3008656476 +2,6607,1836,128,1.88305759,0.129200335,990.709506,3008656476 +2,6608,1837,128,2.67050719,0.130401896,981.58082,3008656476 +2,6609,1838,128,3.05494714,0.128356997,997.218718,3008656476 +2,6610,1839,128,2.80688,0.129279988,990.099102,3008656476 +2,6611,1840,128,2.96746731,0.145244126,881.274882,3008656476 +2,6612,1841,128,2.92838478,0.129648958,987.281363,3008656476 +2,6613,1842,128,2.84949136,0.141598889,903.961895,3008656476 +2,6614,1843,128,2.81737232,0.127884741,1000.90127,3008656476 +2,6615,1844,128,2.78423166,0.127703062,1002.32522,3008656476 +2,6616,1845,128,2.11425447,0.127394812,1004.75049,3008656476 +2,6617,1846,128,2.34507346,0.128151013,998.821601,3008656476 +2,6618,1847,128,1.83801138,0.127162541,1006.58574,3008656476 +2,6619,1848,128,2.60639048,0.140551954,910.695272,3008656476 +2,6620,1849,128,2.7914362,0.126183239,1014.3978,3008656476 +2,6621,1850,128,3.109061,0.141807941,902.629282,3008656476 +2,6622,1851,128,2.45282269,0.126261789,1013.76672,3008656476 +2,6623,1852,128,2.06363988,0.125028752,1023.76452,3008656476 +2,6624,1853,128,2.58672857,0.126607944,1010.99501,3008656476 +2,6625,1854,128,2.99884272,0.126643795,1010.70882,3008656476 +2,6626,1855,128,2.600559,0.12582958,1017.24889,3008656476 +2,6627,1856,128,2.46895409,0.13800095,927.529847,3008656476 +2,6628,1857,128,1.77120185,0.125438604,1020.41952,3008656476 +2,6629,1858,128,2.75860047,0.140332999,912.116187,3008656476 +2,6630,1859,128,2.15887618,0.125675818,1018.49347,3008656476 +2,6631,1860,128,2.71580958,0.125802951,1017.46421,3008656476 +2,6632,1861,128,2.85526204,0.126024046,1015.67918,3008656476 +2,6633,1862,128,2.55584669,0.126205768,1014.21672,3008656476 +2,6634,1863,128,2.54864478,0.126783848,1009.59233,3008656476 +2,6635,1864,128,2.88495326,0.139856973,915.220723,3008656476 +2,6636,1865,128,2.704705,0.126455452,1012.21417,3008656476 +2,6637,1866,128,2.53942513,0.140196281,913.005674,3008656476 +2,6638,1867,128,3.51172614,0.126844639,1009.10847,3008656476 +2,6639,1868,128,2.60309839,0.125639612,1018.78697,3008656476 +2,6640,1869,128,2.44920111,0.126265667,1013.73559,3008656476 +2,6641,1870,128,2.769768,0.126435581,1012.37325,3008656476 +2,6642,1871,128,2.26452327,0.126239512,1013.94562,3008656476 +2,6643,1872,128,2.8723917,0.126678492,1010.43198,3008656476 +2,6644,1873,128,2.80039883,0.127761661,1001.8655,3008656476 +2,6645,1874,128,3.14469647,0.135305161,946.009739,3008656476 +2,6646,1875,128,2.44922256,0.123682249,1034.91003,3008656476 +2,6647,1876,128,2.29298997,0.127358344,1005.03819,3008656476 +2,6648,1877,128,2.22898602,0.126889332,1008.75304,3008656476 +2,6649,1878,128,2.2343154,0.128181246,998.586018,3008656476 +2,6650,1879,128,1.53387535,0.12792009,1000.62469,3008656476 +2,6651,1880,128,2.30410385,0.128323178,997.481531,3008656476 +2,6652,1881,128,2.37077546,0.144506718,885.771968,3008656476 +2,6653,1882,128,2.45805359,0.131228499,975.397882,3008656476 +2,6654,1883,128,2.12613773,0.132268695,967.727095,3008656476 +2,6655,1884,128,2.41382241,0.130913768,977.742845,3008656476 +2,6656,1885,128,2.33261895,0.13888608,921.618639,3008656476 +2,6657,1886,128,2.47268772,0.133768331,956.878202,3008656476 +2,6658,1887,128,2.07230711,0.130421701,981.431763,3008656476 +2,6659,1888,128,2.18735647,0.132597283,965.32898,3008656476 +2,6660,1889,128,2.91693807,0.140749479,909.417221,3008656476 +2,6661,1890,128,2.80939603,0.146482072,873.827071,3008656476 +2,6662,1891,128,2.63548064,0.130418342,981.457041,3008656476 +2,6663,1892,128,2.60182357,0.129482948,988.547156,3008656476 +2,6664,1893,128,2.24301147,0.13032008,982.197064,3008656476 +2,6665,1894,128,2.39718628,0.129876726,985.549944,3008656476 +2,6666,1895,128,2.46861696,0.128839809,993.481758,3008656476 +2,6667,1896,128,2.79010057,0.12900839,992.183532,3008656476 +2,6668,1897,128,2.61302519,0.136410541,938.343907,3008656476 +2,6669,1898,128,3.01589966,0.143359874,892.857928,3008656476 +2,6670,1899,128,4.04391623,0.128737257,994.273165,3008656476 +2,6671,1900,128,3.02560282,0.128703881,994.531004,3008656476 +2,6672,1901,128,2.37463212,0.127226548,1006.07933,3008656476 +2,6673,1902,128,2.47520614,0.127557164,1003.47167,3008656476 +2,6674,1903,128,3.03090644,0.126711875,1010.16578,3008656476 +2,6675,1904,128,1.8937428,0.127461859,1004.22198,3008656476 +2,6676,1905,128,2.8102529,0.142806879,896.315366,3008656476 +2,6677,1906,128,2.13494492,0.141232701,906.305686,3008656476 +2,6678,1907,128,2.15222144,0.127852732,1001.15186,3008656476 +2,6679,1908,128,2.38558555,0.127101027,1007.0729,3008656476 +2,6680,1909,128,2.1909039,0.126124628,1014.8692,3008656476 +2,6681,1910,128,2.53908491,0.129500933,988.409867,3008656476 +2,6682,1911,128,2.09972358,0.127926304,1000.57608,3008656476 +2,6683,1912,128,2.51289129,0.126695253,1010.29831,3008656476 +2,6684,1913,128,2.47354364,0.142314021,899.419461,3008656476 +2,6685,1914,128,2.54444981,0.137695249,929.589081,3008656476 +2,6686,1915,128,1.87785721,0.119078079,1074.92497,3008656476 +2,6687,1916,128,2.79789686,0.126507306,1011.79927,3008656476 +2,6688,1917,128,2.29737854,0.125837968,1017.18108,3008656476 +2,6689,1918,128,2.51282191,0.126083241,1015.20233,3008656476 +2,6690,1919,128,2.07325339,0.125789942,1017.56943,3008656476 +2,6691,1920,128,2.29137373,0.125431088,1020.48066,3008656476 +2,6692,1921,128,2.48202014,0.141125645,906.993197,3008656476 +2,6693,1922,128,2.89826059,0.12606449,1015.35333,3008656476 +2,6694,1923,128,2.56640387,0.138909452,921.463573,3008656476 +2,6695,1924,128,2.35082269,0.125873137,1016.89688,3008656476 +2,6696,1925,128,2.03934503,0.125716159,1018.16665,3008656476 +2,6697,1926,128,2.44780588,0.124819218,1025.48311,3008656476 +2,6698,1927,128,2.60583115,0.126937206,1008.3726,3008656476 +2,6699,1928,128,2.73745775,0.125668903,1018.54951,3008656476 +2,6700,1929,128,3.22525454,0.140260667,912.586563,3008656476 +2,6701,1930,128,2.78786993,0.126246739,1013.88757,3008656476 +2,6702,1931,128,1.92334712,0.140851825,908.756418,3008656476 +2,6703,1932,128,1.72278738,0.125181979,1022.5114,3008656476 +2,6704,1933,128,2.01592875,0.126514866,1011.73881,3008656476 +2,6705,1934,128,2.25283766,0.126402158,1012.64094,3008656476 +2,6706,1935,128,1.81341779,0.124014992,1032.13328,3008656476 +2,6707,1936,128,2.65461707,0.125901658,1016.66652,3008656476 +2,6708,1937,128,2.4662652,0.142827737,896.184472,3008656476 +2,6709,1938,128,2.72189021,0.12518156,1022.51482,3008656476 +2,6710,1939,128,2.25430441,0.139470545,917.756506,3008656476 +2,6711,1940,128,2.23115563,0.125760092,1017.81096,3008656476 +2,6712,1941,128,1.73652387,0.124723397,1026.27096,3008656476 +2,6713,1942,128,2.89184999,0.125047244,1023.61312,3008656476 +2,6714,1943,128,2.4595449,0.125446509,1020.35522,3008656476 +2,6715,1944,128,2.58899927,0.124915767,1024.6905,3008656476 +2,6716,1945,128,2.66527057,0.138490928,924.248266,3008656476 +2,6717,1946,128,1.74417698,0.126517849,1011.71496,3008656476 +2,6718,1947,128,2.22681785,0.14012001,913.502647,3008656476 +2,6719,1948,128,2.7735188,0.126304655,1013.42266,3008656476 +2,6720,1949,128,2.38794756,0.127910322,1000.7011,3008656476 +2,6721,1950,128,3.21279192,0.126747452,1009.88223,3008656476 +2,6722,1951,128,3.08954215,0.128596154,995.364138,3008656476 +2,6723,1952,128,2.53860641,0.128421161,996.72047,3008656476 +2,6724,1953,128,2.49607801,0.139569628,917.104974,3008656476 +2,6725,1954,128,2.50406384,0.124975858,1024.19781,3008656476 +2,6726,1955,128,2.52739882,0.143308525,893.177848,3008656476 +2,6727,1956,128,2.95971084,0.139013136,920.776293,3008656476 +2,6728,1957,128,2.49089026,0.142807731,896.310018,3008656476 +2,6729,1958,128,2.39810419,0.138527967,924.001144,3008656476 +2,6730,1959,128,1.67978251,0.13091642,977.723039,3008656476 +2,6731,1960,128,2.59719515,0.129942944,985.047714,3008656476 +2,6732,1961,128,2.47262549,0.143968768,889.081721,3008656476 +2,6733,1962,128,2.41864061,0.129640321,987.347139,3008656476 +2,6734,1963,128,2.03822875,0.142763384,896.588442,3008656476 +2,6735,1964,128,1.99309301,0.129256213,990.281218,3008656476 +2,6736,1965,128,2.19228816,0.128244985,998.089711,3008656476 +2,6737,1966,128,2.5062716,0.129052731,991.842629,3008656476 +2,6738,1967,128,2.65512729,0.128255331,998.009198,3008656476 +2,6739,1968,128,3.00055742,0.127579874,1003.29304,3008656476 +2,6740,1969,128,2.28108954,0.139282038,918.998615,3008656476 +2,6741,1970,128,2.39062905,0.127639677,1002.82297,3008656476 +2,6742,1971,128,2.49318123,0.142538047,898.00585,3008656476 +2,6743,1972,128,3.02056766,0.127319165,1005.34747,3008656476 +2,6744,1973,128,2.47453427,0.123202555,1038.93949,3008656476 +2,6745,1974,128,1.24289858,0.125999713,1015.87533,3008656476 +2,6746,1975,128,1.9562695,0.125248503,1021.9683,3008656476 +2,6747,1976,128,2.16913176,0.126598755,1011.06839,3008656476 +2,6748,1977,128,2.11051178,0.139890976,914.998263,3008656476 +2,6749,1978,128,2.31871104,0.127235966,1006.00486,3008656476 +2,6750,1979,128,2.51726699,0.141161642,906.761909,3008656476 +2,6751,1980,128,2.90364218,0.126261639,1013.76793,3008656476 +2,6752,1981,128,2.79536724,0.124876368,1025.0138,3008656476 +2,6753,1982,128,2.42469311,0.126511866,1011.7628,3008656476 +2,6754,1983,128,2.78582692,0.126382564,1012.79794,3008656476 +2,6755,1984,128,2.09917521,0.126301751,1013.44597,3008656476 +2,6756,1985,128,1.97761643,0.126033803,1015.60055,3008656476 +2,6757,1986,128,1.82834017,0.128555784,995.676709,3008656476 +2,6758,1987,128,2.5256393,0.138663174,923.100174,3008656476 +2,6759,1988,128,2.6741519,0.125347247,1021.16323,3008656476 +2,6760,1989,128,2.75906563,0.125354617,1021.1032,3008656476 +2,6761,1990,128,2.02343178,0.125929925,1016.43831,3008656476 +2,6762,1991,128,1.90740633,0.12578644,1017.59776,3008656476 +2,6763,1992,128,1.8576479,0.126636651,1010.76583,3008656476 +2,6764,1993,128,2.37331438,0.127316543,1005.36817,3008656476 +2,6765,1994,128,2.3547225,0.144520368,885.688307,3008656476 +2,6766,1995,128,2.27798319,0.143177144,893.997439,3008656476 +2,6767,1996,128,2.22798109,0.124157805,1030.94606,3008656476 +2,6768,1997,128,2.73775625,0.128975014,992.440288,3008656476 +2,6769,1998,128,2.67467976,0.129081499,991.62158,3008656476 +2,6770,1999,128,3.05130315,0.129560108,987.958423,3008656476 +2,6771,2000,128,2.38054013,0.129200287,990.709874,3008656476 +2,6772,2001,128,1.89919138,0.131069119,976.583966,3008656476 +2,6773,2002,128,2.58604002,0.144749398,884.286925,3008656476 +2,6774,2003,128,2.57320166,0.143277093,893.373793,3008656476 +2,6775,2004,128,2.02890062,0.13529,946.115751,3008656476 +2,6776,2005,128,2.08235931,0.142621407,897.480979,3008656476 +2,6777,2006,128,2.24016356,0.142101817,900.762585,3008656476 +2,6778,2007,128,2.24758744,0.131313221,974.768565,3008656476 +2,6779,2008,128,2.3499608,0.12918111,990.856945,3008656476 +2,6780,2009,128,2.20809627,0.142981394,895.221374,3008656476 +2,6781,2010,128,2.29441595,0.130682953,979.469755,3008656476 +2,6782,2011,128,2.77694321,0.14334696,892.938364,3008656476 +2,6783,2012,128,3.13541317,0.128782217,993.926048,3008656476 +2,6784,2013,128,2.62749529,0.127366848,1004.97109,3008656476 +2,6785,2014,128,3.14863586,0.127511476,1003.83122,3008656476 +2,6786,2015,128,2.5693202,0.127442907,1004.37131,3008656476 +2,6787,2016,128,2.7084415,0.127829946,1001.33031,3008656476 +2,6788,2017,128,3.21891999,0.136589083,937.117354,3008656476 +2,6789,2018,128,2.62731266,0.124467439,1028.38141,3008656476 +2,6790,2019,128,2.70426917,0.139115312,920.10001,3008656476 +2,6791,2020,128,2.35014653,0.125611765,1019.01283,3008656476 +2,6792,2021,128,3.01600432,0.125577353,1019.29207,3008656476 +2,6793,2022,128,3.02337337,0.126649689,1010.66178,3008656476 +2,6794,2023,128,2.99918628,0.125428658,1020.50043,3008656476 +2,6795,2024,128,2.93821883,0.125843011,1017.14032,3008656476 +2,6796,2025,128,2.79724598,0.125686354,1018.40809,3008656476 +2,6797,2026,128,2.21653032,0.139453726,917.867193,3008656476 +2,6798,2027,128,2.7065506,0.134893415,948.89732,3008656476 +2,6799,2028,128,2.80354881,0.122809333,1042.26606,3008656476 +2,6800,2029,128,3.06894588,0.126602755,1011.03645,3008656476 +2,6801,2030,128,2.77773666,0.125919001,1016.52649,3008656476 +2,6802,2031,128,2.80308437,0.126094445,1015.11212,3008656476 +2,6803,2032,128,2.45147991,0.126065894,1015.34202,3008656476 +2,6804,2033,128,2.29898953,0.125823023,1017.3019,3008656476 +2,6805,2034,128,2.32895136,0.140387234,911.763815,3008656476 +2,6806,2035,128,2.6569345,0.125642628,1018.76252,3008656476 +2,6807,2036,128,2.08008933,0.140899775,908.447157,3008656476 +2,6808,2037,128,2.31398869,0.126091264,1015.13773,3008656476 +2,6809,2038,128,2.60688019,0.125355178,1021.09863,3008656476 +2,6810,2039,128,3.0533998,0.126030769,1015.625,3008656476 +2,6811,2040,128,2.53151822,0.125700676,1018.29206,3008656476 +2,6812,2041,128,3.29160619,0.126065207,1015.34756,3008656476 +2,6813,2042,128,3.09619045,0.140613496,910.29669,3008656476 +2,6814,2043,128,3.10078478,0.125105441,1023.13696,3008656476 +2,6815,2044,128,2.56241107,0.140834861,908.865881,3008656476 +2,6816,2045,128,2.47121549,0.125870226,1016.9204,3008656476 +2,6817,2046,128,2.45479393,0.125996239,1015.90334,3008656476 +2,6818,2047,128,2.71906519,0.127569409,1003.37535,3008656476 +2,6819,2048,128,2.76151609,0.127132222,1006.82579,3008656476 +2,6820,2049,128,2.42393351,0.128430809,996.645595,3008656476 +2,6821,2050,128,2.91277933,0.141192276,906.565172,3008656476 +2,6822,2051,128,2.60809445,0.128290159,997.73826,3008656476 +2,6823,2052,128,2.20191646,0.143893344,889.547747,3008656476 +2,6824,2053,128,2.81340718,0.128530106,995.875628,3008656476 +2,6825,2054,128,3.14070559,0.130214149,982.996095,3008656476 +2,6826,2055,128,2.50402403,0.128327821,997.445441,3008656476 +2,6827,2056,128,2.52794933,0.129680507,987.041175,3008656476 +2,6828,2057,128,2.57458782,0.130680392,979.48895,3008656476 +2,6829,2058,128,2.45007825,0.144661518,884.824117,3008656476 +2,6830,2059,128,2.55937648,0.130830341,978.366326,3008656476 +2,6831,2060,128,2.07076335,0.155130712,825.110633,3008656476 +2,6832,2061,128,3.12404013,0.14274024,896.733815,3008656476 +2,6833,2062,128,2.65498281,0.138673576,923.030931,3008656476 +2,6834,2063,128,2.08191442,0.138584674,923.623055,3008656476 +2,6835,2064,128,2.47789001,0.130794037,978.637887,3008656476 +2,6836,2065,128,2.27913904,0.13011193,983.76836,3008656476 +2,6837,2066,128,2.47832584,0.14377427,890.284472,3008656476 +2,6838,2067,128,2.15613008,0.14284476,896.077672,3008656476 +2,6839,2068,128,2.19638014,0.131483509,973.506115,3008656476 +2,6840,2069,128,2.38855338,0.129529553,988.191475,3008656476 +2,6841,2070,128,2.26086998,0.130139237,983.561937,3008656476 +2,6842,2071,128,2.8121314,0.129431129,988.94293,3008656476 +2,6843,2072,128,2.25392771,0.128207378,998.38248,3008656476 +2,6844,2073,128,2.66385841,0.128833071,993.533718,3008656476 +2,6845,2074,128,2.25651836,0.140239217,912.726146,3008656476 +2,6846,2075,128,2.89585781,0.140699984,909.737133,3008656476 +2,6847,2076,128,2.62571287,0.12937337,989.384446,3008656476 +2,6848,2077,128,2.50085163,0.129545677,988.068479,3008656476 +2,6849,2078,128,2.06013727,0.128184465,998.560941,3008656476 +2,6850,2079,128,2.98257303,0.130689311,979.422104,3008656476 +2,6851,2080,128,2.70346045,0.128253158,998.026107,3008656476 +2,6852,2081,128,2.27046752,0.127459735,1004.23871,3008656476 +2,6853,2082,128,2.38038397,0.138903702,921.501718,3008656476 +2,6854,2083,128,2.86882567,0.144914572,883.279012,3008656476 +2,6855,2084,128,2.18276978,0.126642923,1010.71577,3008656476 +2,6856,2085,128,2.46785212,0.129489673,988.495816,3008656476 +2,6857,2086,128,2.52760863,0.128333007,997.405134,3008656476 +2,6858,2087,128,2.0434916,0.126478584,1012.02904,3008656476 +2,6859,2088,128,2.27557182,0.126956318,1008.2208,3008656476 +2,6860,2089,128,2.37375093,0.125704091,1018.26439,3008656476 +2,6861,2090,128,2.37589407,0.144849627,883.67504,3008656476 +2,6862,2091,128,1.97777367,0.141038957,907.550671,3008656476 +2,6863,2092,128,1.65762746,0.127363984,1004.99369,3008656476 +2,6864,2093,128,1.75616682,0.126802904,1009.4406,3008656476 +2,6865,2094,128,2.79474282,0.127328604,1005.27294,3008656476 +2,6866,2095,128,1.92963767,0.126006333,1015.82196,3008656476 +2,6867,2096,128,2.69961452,0.126223901,1014.07102,3008656476 +2,6868,2097,128,2.44489264,0.125441682,1020.39448,3008656476 +2,6869,2098,128,2.40889931,0.142951551,895.408263,3008656476 +2,6870,2099,128,2.5537374,0.127598596,1003.14583,3008656476 +2,6871,2100,128,2.27198434,0.128837732,993.497774,3008656476 +2,6872,2101,128,2.49723577,0.126482534,1011.99744,3008656476 +2,6873,2102,128,2.34731102,0.126012359,1015.77338,3008656476 +2,6874,2103,128,1.51859927,0.12510622,1023.13058,3008656476 +2,6875,2104,128,2.25201964,0.1270201,1007.71453,3008656476 +2,6876,2105,128,2.08277225,0.125896553,1016.70774,3008656476 +2,6877,2106,128,1.8202461,0.142514229,898.155931,3008656476 +2,6878,2107,128,2.45253325,0.126598204,1011.0728,3008656476 +2,6879,2108,128,2.37397385,0.203862804,627.873244,3008656476 +2,6880,2109,128,2.55298233,0.126949912,1008.27167,3008656476 +2,6881,2110,128,2.48689818,0.126757826,1009.79958,3008656476 +2,6882,2111,128,2.3376627,0.126288327,1013.55369,3008656476 +2,6883,2112,128,2.41827083,0.12601187,1015.77732,3008656476 +2,6884,2113,128,2.45273662,0.126656885,1010.60436,3008656476 +2,6885,2114,128,1.67803621,0.135946235,941.548694,3008656476 +2,6886,2115,128,2.59962869,0.138010057,927.468641,3008656476 +2,6887,2116,128,2.10110116,0.127555215,1003.487,3008656476 +2,6888,2117,128,2.48793721,0.125737585,1017.99315,3008656476 +2,6889,2118,128,2.3595047,0.126131337,1014.81522,3008656476 +2,6890,2119,128,2.60075808,0.126075913,1015.26134,3008656476 +2,6891,2120,128,1.61882472,0.125592658,1019.16786,3008656476 +2,6892,2121,128,1.90998507,0.12562852,1018.87692,3008656476 +2,6893,2122,128,2.11302257,0.139347095,918.569562,3008656476 +2,6894,2123,128,1.71656811,0.124914547,1024.70051,3008656476 +2,6895,2124,128,2.01096869,0.132098791,968.971775,3008656476 +2,6896,2125,128,1.38780963,0.126377256,1012.84048,3008656476 +2,6897,2126,128,1.58505344,0.126523039,1011.67345,3008656476 +2,6898,2127,128,2.9500258,0.127153515,1006.65719,3008656476 +2,6899,2128,128,2.36586571,0.127853354,1001.14699,3008656476 +2,6900,2129,128,1.95311153,0.127679991,1002.50634,3008656476 +2,6901,2130,128,2.69623661,0.142184268,900.240243,3008656476 +2,6902,2131,128,1.98261702,0.127729649,1002.11659,3008656476 +2,6903,2132,128,2.40299487,0.143828451,889.949096,3008656476 +2,6904,2133,128,2.07944107,0.128511408,996.020524,3008656476 +2,6905,2134,128,2.81698871,0.128737543,994.270956,3008656476 +2,6906,2135,128,2.16114235,0.130069833,984.086756,3008656476 +2,6907,2136,128,2.43594217,0.131223265,975.436787,3008656476 +2,6908,2137,128,2.33915925,0.138696603,922.877686,3008656476 +2,6909,2138,128,2.36824608,0.153655334,833.033235,3008656476 +2,6910,2139,128,2.76978874,0.14961942,855.503918,3008656476 +2,6911,2140,128,2.67971778,0.131904628,970.398097,3008656476 +2,6912,2141,128,2.15075326,0.134145857,954.185264,3008656476 +2,6913,2142,128,2.08698606,0.130182847,983.232453,3008656476 +2,6914,2143,128,2.31063509,0.131410834,974.044499,3008656476 +2,6915,2144,128,2.56439185,0.129502367,988.398922,3008656476 +2,6916,2145,128,2.81341839,0.130164697,983.369554,3008656476 +2,6917,2146,128,2.65212178,0.140370601,911.871853,3008656476 +2,6918,2147,128,2.41252089,0.145626027,878.963758,3008656476 +2,6919,2148,128,1.71903813,0.130471596,981.056444,3008656476 +2,6920,2149,128,2.3523972,0.129616107,987.531588,3008656476 +2,6921,2150,128,2.06897664,0.131107802,976.295827,3008656476 +2,6922,2151,128,2.38176918,0.129172395,990.923796,3008656476 +2,6923,2152,128,2.47641158,0.131063978,976.622272,3008656476 +2,6924,2153,128,2.11358023,0.128933125,992.762721,3008656476 +2,6925,2154,128,2.03570271,0.133582685,958.208019,3008656476 +2,6926,2155,128,2.82841063,0.141464232,904.822358,3008656476 +2,6927,2156,128,2.62693071,0.128056651,999.55761,3008656476 +2,6928,2157,128,2.34843802,0.126239506,1013.94567,3008656476 +2,6929,2158,128,1.39845967,0.128030359,999.762877,3008656476 +2,6930,2159,128,2.62038445,0.126263156,1013.75575,3008656476 +2,6931,2160,128,3.11493897,0.126110608,1014.98202,3008656476 +2,6932,2161,128,2.85141063,0.125927494,1016.45793,3008656476 +2,6933,2162,128,1.90340579,0.133008369,962.34546,3008656476 +2,6934,2163,128,1.77879465,0.141162203,906.758306,3008656476 +2,6935,2164,128,1.93897521,0.129813089,986.03308,3008656476 +2,6936,2165,128,2.70397472,0.127176763,1006.47317,3008656476 +2,6937,2166,128,2.41703057,0.127238354,1005.98598,3008656476 +2,6938,2167,128,2.20929313,0.126332231,1013.20145,3008656476 +2,6939,2168,128,2.57767558,0.127084588,1007.20317,3008656476 +2,6940,2169,128,2.60088778,0.126693003,1010.31625,3008656476 +2,6941,2170,128,2.00527644,0.141367116,905.443951,3008656476 +2,6942,2171,128,2.2110765,0.140107002,913.587459,3008656476 +2,6943,2172,128,2.40414214,0.120778203,1059.79388,3008656476 +2,6944,2173,128,2.99218822,0.125852253,1017.06562,3008656476 +2,6945,2174,128,2.74782681,0.125796257,1017.51835,3008656476 +2,6946,2175,128,2.30332232,0.125867337,1016.94374,3008656476 +2,6947,2176,128,1.10002232,0.12562155,1018.93346,3008656476 +2,6948,2177,128,2.06983399,0.12458767,1027.38899,3008656476 +2,6949,2178,128,2.05246735,0.140921298,908.308409,3008656476 +2,6950,2179,128,2.79751706,0.125417987,1020.58726,3008656476 +2,6951,2180,128,2.60441852,0.138854633,921.827362,3008656476 +2,6952,2181,128,2.00828981,0.126290023,1013.54008,3008656476 +2,6953,2182,128,2.3691504,0.125802743,1017.46589,3008656476 +2,6954,2183,128,2.6868093,0.125471203,1020.1544,3008656476 +2,6955,2184,128,2.33490348,0.125738134,1017.9887,3008656476 +2,6956,2185,128,2.52332592,0.125590375,1019.18638,3008656476 +2,6957,2186,128,2.63050961,0.140681817,909.854612,3008656476 +2,6958,2187,128,2.55272961,0.12639252,1012.71816,3008656476 +2,6959,2188,128,2.05807066,0.140673717,909.907001,3008656476 +2,6960,2189,128,2.28652668,0.125503646,1019.89069,3008656476 +2,6961,2190,128,1.93992162,0.12652686,1011.6429,3008656476 +2,6962,2191,128,2.5225184,0.126468156,1012.11249,3008656476 +2,6963,2192,128,2.15161061,0.125649903,1018.70353,3008656476 +2,6964,2193,128,1.40377986,0.125451543,1020.31427,3008656476 +2,6965,2194,128,2.21182895,0.140654583,910.030781,3008656476 +2,6966,2195,128,2.01162505,0.125698454,1018.31006,3008656476 +2,6967,2196,128,2.540488,0.139473246,917.738732,3008656476 +2,6968,2197,128,2.67749929,0.125649353,1018.70799,3008656476 +2,6969,2198,128,2.64844704,0.125195295,1022.40264,3008656476 +2,6970,2199,128,1.94611788,0.124787579,1025.74312,3008656476 +2,6971,2200,128,2.50265646,0.12540632,1020.68221,3008656476 +2,6972,2201,128,2.54968858,0.124820326,1025.47401,3008656476 +2,6973,2202,128,2.22800922,0.138536954,923.941203,3008656476 +2,6974,2203,128,2.63643789,0.125478277,1020.09689,3008656476 +2,6975,2204,128,2.846699,0.140875774,908.601929,3008656476 +2,6976,2205,128,2.03685713,0.127786435,1001.67127,3008656476 +2,6977,2206,128,2.30849409,0.12752649,1003.71303,3008656476 +2,6978,2207,128,2.24860907,0.129385593,989.290979,3008656476 +2,6979,2208,128,2.30156612,0.129784912,986.247153,3008656476 +2,6980,2209,128,2.6191256,0.129342221,989.622716,3008656476 +2,6981,2210,128,1.99662161,0.129838938,985.836776,3008656476 +2,6982,2211,128,1.89449501,0.13483777,949.288912,3008656476 +2,6983,2212,128,2.00077033,0.149148954,858.202465,3008656476 +2,6984,2213,128,2.12969232,0.142623303,897.469048,3008656476 +2,6985,2214,128,2.15151334,0.135452689,944.979394,3008656476 +2,6986,2215,128,2.56989646,0.129306395,989.896903,3008656476 +2,6987,2216,128,1.77047098,0.129517028,988.287038,3008656476 +2,6988,2217,128,2.64029288,0.129667719,987.138518,3008656476 +2,6989,2218,128,2.38074136,0.142830878,896.164763,3008656476 +2,6990,2219,128,2.8848021,0.128592784,995.390223,3008656476 +2,6991,2220,128,2.15763736,0.141635493,903.728277,3008656476 +2,6992,2221,128,1.57557535,0.128508123,996.045985,3008656476 +2,6993,2222,128,2.17390227,0.127480823,1004.07259,3008656476 +2,6994,2223,128,2.21909142,0.127836124,1001.28192,3008656476 +2,6995,2224,128,2.0443716,0.127594005,1003.18193,3008656476 +2,6996,2225,128,2.12363625,0.127669011,1002.59256,3008656476 +2,6997,2226,128,2.60169339,0.139134244,919.974812,3008656476 +2,6998,2227,128,2.19666028,0.126709723,1010.18294,3008656476 +2,6999,2228,128,2.17759275,0.143395562,892.635715,3008656476 +2,7000,2229,128,2.09748268,0.126026852,1015.65657,3008656476 +2,7001,2230,128,2.5424149,0.126404118,1012.62524,3008656476 +2,7002,2231,128,1.72790682,0.125281348,1021.70037,3008656476 +2,7003,2232,128,2.40515256,0.125371893,1020.96249,3008656476 +2,7004,2233,128,1.85393476,0.125320175,1021.38383,3008656476 +2,7005,2234,128,2.36461186,0.12468847,1026.55843,3008656476 +2,7006,2235,128,1.59892118,0.128911341,992.930482,3008656476 +2,7007,2236,128,2.27726865,0.139898422,914.949562,3008656476 +2,7008,2237,128,2.95040727,0.125413597,1020.62299,3008656476 +2,7009,2238,128,2.27699685,0.126011749,1015.7783,3008656476 +2,7010,2239,128,2.27082133,0.126068597,1015.32025,3008656476 +2,7011,2240,128,2.09456348,0.12490976,1024.73978,3008656476 +2,7012,2241,128,2.11271214,0.12600026,1015.87092,3008656476 +2,7013,2242,128,2.87650156,0.126510967,1011.76999,3008656476 +2,7014,2243,128,2.35438657,0.140580261,910.511896,3008656476 +2,7015,2244,128,2.54896331,0.125280731,1021.7054,3008656476 +2,7016,2245,128,2.53099108,0.126266327,1013.73029,3008656476 +2,7017,2246,128,1.72179389,0.123940334,1032.755,3008656476 +2,7018,2247,128,1.81297421,0.125012239,1023.89975,3008656476 +2,7019,2248,128,1.95865178,0.12507612,1023.3768,3008656476 +2,7020,2249,128,2.30880451,0.126101034,1015.05908,3008656476 +2,7021,2250,128,2.37622547,0.127458457,1004.24878,3008656476 +2,7022,2251,128,1.78515971,0.141795201,902.710382,3008656476 +2,7023,2252,128,1.71072137,0.127128663,1006.85398,3008656476 +2,7024,2253,128,2.12327003,0.140419945,911.551418,3008656476 +2,7025,2254,128,2.93674159,0.129103026,991.456234,3008656476 +2,7026,2255,128,2.28110123,0.128261633,997.960162,3008656476 +2,7027,2256,128,2.44931793,0.128756972,994.120924,3008656476 +2,7028,2257,128,2.32760334,0.129505635,988.373981,3008656476 +2,7029,2258,128,2.65260601,0.13047569,981.025661,3008656476 +2,7030,2259,128,2.32939363,0.145961495,876.943608,3008656476 +2,7031,2260,128,2.27734828,0.138699785,922.856513,3008656476 +2,7032,2261,128,2.1184113,0.139583526,917.01366,3008656476 +2,7033,2262,128,1.9918195,0.1301315,983.620415,3008656476 +2,7034,2263,128,2.41038656,0.130814466,978.485055,3008656476 +2,7035,2264,128,1.76768982,0.129079833,991.634379,3008656476 +2,7036,2265,128,2.02007747,0.129674849,987.084242,3008656476 +2,7037,2266,128,2.41285491,0.129062416,991.7682,3008656476 +2,7038,2267,128,2.00999331,0.143353101,892.900112,3008656476 +2,7039,2268,128,2.24648046,0.128060941,999.524125,3008656476 +2,7040,2269,128,1.53673375,0.139135555,919.966144,3008656476 +2,7041,2270,128,1.95217288,0.128018847,999.852779,3008656476 +2,7042,2271,128,2.08943081,0.128117832,999.080284,3008656476 +2,7043,2272,128,2.50625396,0.128170387,998.670621,3008656476 +2,7044,2273,128,1.9814055,0.127457178,1004.25886,3008656476 +2,7045,2274,128,1.85658813,0.127268276,1005.74946,3008656476 +2,7046,2275,128,2.30895162,0.139311253,918.805891,3008656476 +2,7047,2276,128,2.32943082,0.125374938,1020.93769,3008656476 +2,7048,2277,128,1.78798592,0.146120697,875.988157,3008656476 +2,7049,2278,128,1.82920444,0.126558619,1011.38904,3008656476 +2,7050,2279,128,1.83518004,0.124695714,1026.49879,3008656476 +2,7051,2280,128,1.85144508,0.126389074,1012.74577,3008656476 +2,7052,2281,128,2.24531627,0.125378055,1020.91231,3008656476 +2,7053,2282,128,2.51593685,0.125195125,1022.40403,3008656476 +2,7054,2283,128,1.91217494,0.138696347,922.879389,3008656476 +2,7055,2284,128,1.93876982,0.125715167,1018.17468,3008656476 +2,7056,2285,128,1.68324876,0.143486212,892.071776,3008656476 +2,7057,2286,128,1.78851509,0.125352473,1021.12066,3008656476 +2,7058,2287,128,1.86809576,0.125671063,1018.53201,3008656476 +2,7059,2288,128,1.66385269,0.125943908,1016.32546,3008656476 +2,7060,2289,128,1.70886886,0.126699388,1010.26534,3008656476 +2,7061,2290,128,2.25985909,0.125515111,1019.79753,3008656476 +2,7062,2291,128,2.68606663,0.140961212,908.051216,3008656476 +2,7063,2292,128,1.80535555,0.125372772,1020.95533,3008656476 +2,7064,2293,128,2.49970317,0.140413209,911.595148,3008656476 +2,7065,2294,128,2.54073668,0.126594498,1011.10239,3008656476 +2,7066,2295,128,2.87876034,0.12527178,1021.77841,3008656476 +2,7067,2296,128,2.92968297,0.126263214,1013.75528,3008656476 +2,7068,2297,128,2.22580242,0.125769033,1017.7386,3008656476 +2,7069,2298,128,2.09100032,0.125717119,1018.15887,3008656476 +2,7070,2299,128,2.7478776,0.139372775,918.400312,3008656476 +2,7071,2300,128,2.43833184,0.12699859,1007.88521,3008656476 +2,7072,2301,128,2.69295335,0.138795469,922.220307,3008656476 +2,7073,2302,128,3.02535486,0.126634629,1010.78197,3008656476 +2,7074,2303,128,2.33400869,0.125430276,1020.48727,3008656476 +2,7075,2304,128,2.2259376,0.126170157,1014.50298,3008656476 +2,7076,2305,128,2.62752247,0.125348257,1021.155,3008656476 +2,7077,2306,128,3.1470356,0.125589134,1019.19645,3008656476 +2,7078,2307,128,2.47362757,0.125525779,1019.71086,3008656476 +2,7079,2308,128,2.65287614,0.13423476,953.553312,3008656476 +2,7080,2309,128,2.97178578,0.137890501,928.272789,3008656476 +2,7081,2310,128,2.38300252,0.124519551,1027.95102,3008656476 +2,7082,2311,128,2.27550173,0.124942087,1024.47464,3008656476 +2,7083,2312,128,2.2006371,0.126009999,1015.79241,3008656476 +2,7084,2313,128,2.8461926,0.125863691,1016.9732,3008656476 +2,7085,2314,128,3.29102802,0.126112228,1014.96898,3008656476 +2,7086,2315,128,2.98350573,0.127509218,1003.84899,3008656476 +2,7087,2316,128,3.29454374,0.142385782,898.966162,3008656476 +2,7088,2317,128,3.0298717,0.127792662,1001.62246,3008656476 +2,7089,2318,128,3.00494909,0.13143912,973.834883,3008656476 +2,7090,2319,128,2.9670496,0.129803585,986.105276,3008656476 +2,7091,2320,128,3.06545186,0.130371918,981.806527,3008656476 +2,7092,2321,128,3.04629374,0.138324854,925.357926,3008656476 +2,7093,2322,128,3.01142478,0.129322856,989.770903,3008656476 +2,7094,2323,128,2.9909811,0.129456546,988.748765,3008656476 +2,7095,2324,128,2.6170795,0.143221545,893.720285,3008656476 +2,7096,2325,128,3.2555151,0.141863372,902.276593,3008656476 +2,7097,2326,128,2.94159842,0.126383903,1012.78721,3008656476 +2,7098,2327,128,3.3164978,0.128624156,995.147443,3008656476 +2,7099,2328,128,2.88488579,0.130197595,983.121078,3008656476 +2,7100,2329,128,2.63213301,0.127518495,1003.77596,3008656476 +2,7101,2330,128,2.89508891,0.126310555,1013.37533,3008656476 +2,7102,2331,128,2.81480169,0.128114067,999.109645,3008656476 +2,7103,2332,128,2.26655245,0.140492479,911.080799,3008656476 +2,7104,2333,128,2.3828783,0.125859938,1017.00352,3008656476 +2,7105,2334,128,2.07375503,0.131840701,970.868624,3008656476 +2,7106,2335,128,2.73606443,0.127087134,1007.18299,3008656476 +2,7107,2336,128,3.07462668,0.124974936,1024.20537,3008656476 +2,7108,2337,128,3.01927066,0.12637486,1012.85968,3008656476 +2,7109,2338,128,2.57204628,0.125265552,1021.82921,3008656476 +2,7110,2339,128,2.58199739,0.125605688,1019.06213,3008656476 +2,7111,2340,128,2.31538224,0.140678725,909.87461,3008656476 +2,7112,2341,128,2.91746283,0.125832739,1017.22335,3008656476 +2,7113,2342,128,2.76250982,0.140601874,910.371934,3008656476 +2,7114,2343,128,2.91861749,0.125576784,1019.29669,3008656476 +2,7115,2344,128,2.72418523,0.126494535,1011.90142,3008656476 +2,7116,2345,128,3.22619581,0.125801283,1017.4777,3008656476 +2,7117,2346,128,3.00129128,0.125751212,1017.88283,3008656476 +2,7118,2347,128,2.99462485,0.126510171,1011.77636,3008656476 +2,7119,2348,128,2.88181782,0.141052847,907.461301,3008656476 +2,7120,2349,128,2.92043471,0.125866542,1016.95016,3008656476 +2,7121,2350,128,2.74914098,0.139344475,918.586833,3008656476 +2,7122,2351,128,2.85539985,0.125457143,1020.26873,3008656476 +2,7123,2352,128,2.40574336,0.126164932,1014.54499,3008656476 +2,7124,2353,128,2.46010137,0.125605096,1019.06693,3008656476 +2,7125,2354,128,2.98918486,0.125725273,1018.09284,3008656476 +2,7126,2355,128,2.51428533,0.125550488,1019.51018,3008656476 +2,7127,2356,128,2.82209897,0.139106826,920.15614,3008656476 +2,7128,2357,128,2.27079964,0.124526414,1027.89437,3008656476 +2,7129,2358,128,2.45499682,0.137079825,933.762499,3008656476 +2,7130,2359,128,2.60110593,0.124526611,1027.89274,3008656476 +2,7131,2360,128,2.72064781,0.125228651,1022.13031,3008656476 +2,7132,2361,128,2.2066462,0.12553022,1019.67478,3008656476 +2,7133,2362,128,2.10389733,0.125916774,1016.54447,3008656476 +2,7134,2363,128,2.02934217,0.127117131,1006.94532,3008656476 +2,7135,2364,128,1.7862457,0.127503537,1003.89372,3008656476 +2,7136,2365,128,2.13191175,0.135044738,947.834043,3008656476 +2,7137,2366,128,2.04079986,0.143391918,892.658399,3008656476 +2,7138,2367,128,2.42239785,0.131125131,976.166804,3008656476 +2,7139,2368,128,2.21771097,0.13868144,922.97859,3008656476 +2,7140,2369,128,2.30422544,0.142809551,896.298596,3008656476 +2,7141,2370,128,2.22215462,0.142710791,896.91886,3008656476 +2,7142,2371,128,2.01023078,0.131901058,970.424362,3008656476 +2,7143,2372,128,2.86173892,0.1488927,859.679487,3008656476 +2,7144,2373,128,2.90064454,0.138685979,922.948383,3008656476 +2,7145,2374,128,3.00058532,0.150027483,853.177014,3008656476 +2,7146,2375,128,2.03634596,0.130220064,982.951444,3008656476 +2,7147,2376,128,2.1493938,0.130423683,981.416849,3008656476 +2,7148,2377,128,2.88773036,0.134328362,952.888862,3008656476 +2,7149,2378,128,2.45067739,0.131102868,976.33257,3008656476 +2,7150,2379,128,1.97020185,0.12996417,984.886835,3008656476 +2,7151,2380,128,2.42904496,0.145668447,878.707796,3008656476 +2,7152,2381,128,2.04636788,0.130835143,978.330417,3008656476 +2,7153,2382,128,2.34041929,0.141412389,905.154074,3008656476 +2,7154,2383,128,2.57537985,0.131000625,977.094575,3008656476 +2,7155,2384,64,1.61106575,0.125793431,508.770605,3008656476 +3,7156,0,128,1.49699068,0.143563482,891.591637,3008656476 +3,7157,1,128,1.90152466,0.157688092,811.729018,3008656476 +3,7158,2,128,1.91495514,0.132259583,967.793767,3008656476 +3,7159,3,128,2.13285375,0.132683875,964.698988,3008656476 +3,7160,4,128,2.66760731,0.11543209,1108.87709,3008656476 +3,7161,5,128,2.82725596,0.109649673,1167.35414,3008656476 +3,7162,6,128,2.70943666,0.109632343,1167.53867,3008656476 +3,7163,7,128,2.52707767,0.109743096,1166.36039,3008656476 +3,7164,8,128,2.97846532,0.122864467,1041.79836,3008656476 +3,7165,9,128,2.67309546,0.109703654,1166.77973,3008656476 +3,7166,10,128,2.47348213,0.121343554,1054.8562,3008656476 +3,7167,11,128,2.72603083,0.109576255,1168.13629,3008656476 +3,7168,12,128,2.06116724,0.109492858,1169.02602,3008656476 +3,7169,13,128,1.92207992,0.10959675,1167.91784,3008656476 +3,7170,14,128,1.91520333,0.109532249,1168.6056,3008656476 +3,7171,15,128,1.92038167,0.109642382,1167.43177,3008656476 +3,7172,16,128,2.50513101,0.109460373,1169.37296,3008656476 +3,7173,17,128,2.38921428,0.109586149,1168.03082,3008656476 +3,7174,18,128,2.35142255,0.117610394,1088.33918,3008656476 +3,7175,19,128,2.42082953,0.127044549,1007.5206,3008656476 +3,7176,20,128,2.31321335,0.109587942,1168.01171,3008656476 +3,7177,21,128,2.75397563,0.109637858,1167.47994,3008656476 +3,7178,22,128,2.03583574,0.109516472,1168.77395,3008656476 +3,7179,23,128,1.58006227,0.109479666,1169.16688,3008656476 +3,7180,24,128,1.87780893,0.109460327,1169.37345,3008656476 +3,7181,25,128,2.31331277,0.109533703,1168.59009,3008656476 +3,7182,26,128,2.18121219,0.110197059,1161.5555,3008656476 +3,7183,27,128,2.46488452,0.122648351,1043.63409,3008656476 +3,7184,28,128,2.2226932,0.109582043,1168.07459,3008656476 +3,7185,29,128,2.09769249,0.125477487,1020.10331,3008656476 +3,7186,30,128,1.94877565,0.109552563,1168.38891,3008656476 +3,7187,31,128,2.16287947,0.109513743,1168.80308,3008656476 +3,7188,32,128,2.40541553,0.109475293,1169.21359,3008656476 +3,7189,33,128,2.4386766,0.109551305,1168.40233,3008656476 +3,7190,34,128,2.36974311,0.109438378,1169.60798,3008656476 +3,7191,35,128,2.42803741,0.1094896,1169.06081,3008656476 +3,7192,36,128,2.19628048,0.121135547,1056.66754,3008656476 +3,7193,37,128,2.01462507,0.109963512,1164.02248,3008656476 +3,7194,38,128,2.10414433,0.124451772,1028.51087,3008656476 +3,7195,39,128,1.52565289,0.109666523,1167.17478,3008656476 +3,7196,40,128,2.42733741,0.109526667,1168.66516,3008656476 +3,7197,41,128,2.37040377,0.109678853,1167.04357,3008656476 +3,7198,42,128,2.21682644,0.109456378,1169.41564,3008656476 +3,7199,43,128,2.65609288,0.109681128,1167.01936,3008656476 +3,7200,44,128,2.82049441,0.109733159,1166.46601,3008656476 +3,7201,45,128,2.45953631,0.109592118,1167.96721,3008656476 +3,7202,46,128,2.03641891,0.124109655,1031.34603,3008656476 +3,7203,47,128,2.35358834,0.109494438,1169.00915,3008656476 +3,7204,48,128,2.02332592,0.111269128,1150.36401,3008656476 +3,7205,49,128,2.43486428,0.109499757,1168.95237,3008656476 +3,7206,50,128,2.14095592,0.109516614,1168.77244,3008656476 +3,7207,51,128,2.61446428,0.109613219,1167.74237,3008656476 +3,7208,52,128,1.99611223,0.109452762,1169.45427,3008656476 +3,7209,53,128,2.60014081,0.1097063,1166.75159,3008656476 +3,7210,54,128,1.84859729,0.109424055,1169.76107,3008656476 +3,7211,55,128,2.00089598,0.123826518,1033.70427,3008656476 +3,7212,56,128,2.62505722,0.109456748,1169.41168,3008656476 +3,7213,57,128,2.23145747,0.124601337,1027.2763,3008656476 +3,7214,58,128,2.20651054,0.109451258,1169.47034,3008656476 +3,7215,59,128,2.32218409,0.109673669,1167.09873,3008656476 +3,7216,60,128,2.2515161,0.109633557,1167.52574,3008656476 +3,7217,61,128,2.63548875,0.109573743,1168.16307,3008656476 +3,7218,62,128,1.9073236,0.10938308,1170.19927,3008656476 +3,7219,63,128,2.61158705,0.109686444,1166.9628,3008656476 +3,7220,64,128,1.86576939,0.109238811,1171.74472,3008656476 +3,7221,65,128,2.58421063,0.111882223,1144.06021,3008656476 +3,7222,66,128,2.2712431,0.120729653,1060.22006,3008656476 +3,7223,67,128,2.68601823,0.107324609,1192.64353,3008656476 +3,7224,68,128,3.13027287,0.109480354,1169.15954,3008656476 +3,7225,69,128,2.36466813,0.10959649,1167.92061,3008656476 +3,7226,70,128,2.64504123,0.109546948,1168.4488,3008656476 +3,7227,71,128,2.55683351,0.099341729,1288.4817,3008656476 +3,7228,72,128,2.33149862,0.109625491,1167.61165,3008656476 +3,7229,73,128,2.48967075,0.109698379,1166.83584,3008656476 +3,7230,74,128,2.1321938,0.121913605,1049.92384,3008656476 +3,7231,75,128,1.9876492,0.109602755,1167.85386,3008656476 +3,7232,76,128,3.0919075,0.12555727,1019.45511,3008656476 +3,7233,77,128,2.64354563,0.109558508,1168.32551,3008656476 +3,7234,78,128,2.29546905,0.109447487,1169.51063,3008656476 +3,7235,79,128,2.30532122,0.109572108,1168.1805,3008656476 +3,7236,80,128,2.35942006,0.109505827,1168.88757,3008656476 +3,7237,81,128,2.63274932,0.109630712,1167.55604,3008656476 +3,7238,82,128,2.58055711,0.109440094,1169.58964,3008656476 +3,7239,83,128,2.59870863,0.121106662,1056.91956,3008656476 +3,7240,84,128,2.41784286,0.109830695,1165.43012,3008656476 +3,7241,85,128,2.17503953,0.124890381,1024.89879,3008656476 +3,7242,86,128,2.35989285,0.109602321,1167.85848,3008656476 +3,7243,87,128,1.85728908,0.109619111,1167.6796,3008656476 +3,7244,88,128,1.84403074,0.109529897,1168.6307,3008656476 +3,7245,89,128,2.19840503,0.109666424,1167.17583,3008656476 +3,7246,90,128,2.08129525,0.109592401,1167.96419,3008656476 +3,7247,91,128,2.10127187,0.109657938,1167.26616,3008656476 +3,7248,92,128,2.20829225,0.109364864,1170.39418,3008656476 +3,7249,93,128,2.00919271,0.123558268,1035.94848,3008656476 +3,7250,94,128,1.98999989,0.109458332,1169.39476,3008656476 +3,7251,95,128,2.19647908,0.115969505,1103.73844,3008656476 +3,7252,96,128,1.98182058,0.10944075,1169.58263,3008656476 +3,7253,97,128,2.52652049,0.109537129,1168.55354,3008656476 +3,7254,98,128,2.19825387,0.109580933,1168.08642,3008656476 +3,7255,99,128,2.30485654,0.109349889,1170.55446,3008656476 +3,7256,100,128,2.52257204,0.109498998,1168.96047,3008656476 +3,7257,101,128,2.14666843,0.109464629,1169.32749,3008656476 +3,7258,102,128,2.26657653,0.121408881,1054.28861,3008656476 +3,7259,103,128,2.05635691,0.109490384,1169.05243,3008656476 +3,7260,104,128,1.94198859,0.123198534,1038.9734,3008656476 +3,7261,105,128,2.13287497,0.109423516,1169.76684,3008656476 +3,7262,106,128,2.08513427,0.109576708,1168.13146,3008656476 +3,7263,107,128,1.85131562,0.109434665,1169.64766,3008656476 +3,7264,108,128,2.16098642,0.109750618,1166.28045,3008656476 +3,7265,109,128,1.5516938,0.10971691,1166.63876,3008656476 +3,7266,110,128,1.95787239,0.109758508,1166.19661,3008656476 +3,7267,111,128,2.13727236,0.109498527,1168.9655,3008656476 +3,7268,112,128,2.20771909,0.111687133,1146.05861,3008656476 +3,7269,113,128,2.5476706,0.109605805,1167.82136,3008656476 +3,7270,114,128,2.59508562,0.111606629,1146.88528,3008656476 +3,7271,115,128,2.46601486,0.10958744,1168.01706,3008656476 +3,7272,116,128,1.87081313,0.109613533,1167.73902,3008656476 +3,7273,117,128,2.09947038,0.109450007,1169.48371,3008656476 +3,7274,118,128,2.12868786,0.109704408,1166.77171,3008656476 +3,7275,119,128,2.40718365,0.109518938,1168.74764,3008656476 +3,7276,120,128,2.27195811,0.109660736,1167.23638,3008656476 +3,7277,121,128,2.00925636,0.123615341,1035.47018,3008656476 +3,7278,122,128,1.65258753,0.10939722,1170.04801,3008656476 +3,7279,123,128,1.93162978,0.125573902,1019.32008,3008656476 +3,7280,124,128,1.67626679,0.112933872,1133.40664,3008656476 +3,7281,125,128,1.87583363,0.125805056,1017.44718,3008656476 +3,7282,126,128,1.70853829,0.129510211,988.339058,3008656476 +3,7283,127,128,2.36019301,0.130188445,983.190175,3008656476 +3,7284,128,128,2.40338254,0.130065266,984.12131,3008656476 +3,7285,129,128,2.03526998,0.131993919,969.741644,3008656476 +3,7286,130,128,1.9869256,0.147143926,869.896594,3008656476 +3,7287,131,128,1.98738992,0.148046314,864.594305,3008656476 +3,7288,132,128,1.64709198,0.131555651,972.972267,3008656476 +3,7289,133,128,1.99924982,0.132962807,962.675224,3008656476 +3,7290,134,128,1.91051495,0.13156023,972.938402,3008656476 +3,7291,135,128,1.87295234,0.131790447,971.238833,3008656476 +3,7292,136,128,1.84026825,0.131048608,976.736815,3008656476 +3,7293,137,128,1.71000051,0.144055411,888.546977,3008656476 +3,7294,138,128,1.56390297,0.129592663,987.710238,3008656476 +3,7295,139,128,1.89158821,0.141806329,902.639543,3008656476 +3,7296,140,128,1.38950074,0.130272994,982.552071,3008656476 +3,7297,141,128,1.37408388,0.128911187,992.931669,3008656476 +3,7298,142,128,2.02205658,0.131281551,975.003715,3008656476 +3,7299,143,128,1.53008258,0.128094268,999.264073,3008656476 +3,7300,144,128,1.06634879,0.128689863,994.639337,3008656476 +3,7301,145,128,0.988821745,0.142135307,900.550347,3008656476 +3,7302,146,128,1.62213874,0.127564464,1003.41424,3008656476 +3,7303,147,128,2.13926363,0.139827778,915.411815,3008656476 +3,7304,148,128,2.16782951,0.12696634,1008.14121,3008656476 +3,7305,149,128,1.81680977,0.127898969,1000.78993,3008656476 +3,7306,150,128,1.42840815,0.127545145,1003.56623,3008656476 +3,7307,151,128,1.07533872,0.126986536,1007.98088,3008656476 +3,7308,152,128,1.75961113,0.12737836,1004.88026,3008656476 +3,7309,153,128,1.92011678,0.140320611,912.196712,3008656476 +3,7310,154,128,1.33981538,0.127313565,1005.39169,3008656476 +3,7311,155,128,2.3045094,0.141308496,905.819562,3008656476 +3,7312,156,128,2.35459185,0.126706717,1010.2069,3008656476 +3,7313,157,128,2.16311049,0.127614793,1003.01851,3008656476 +3,7314,158,128,1.8489778,0.126658614,1010.59056,3008656476 +3,7315,159,128,1.50484419,0.127640025,1002.82024,3008656476 +3,7316,160,128,1.70561147,0.127703266,1002.32362,3008656476 +3,7317,161,128,1.83281982,0.139110573,920.131355,3008656476 +3,7318,162,128,1.67982769,0.126476165,1012.0484,3008656476 +3,7319,163,128,2.4984467,0.145284245,881.031525,3008656476 +3,7320,164,128,2.07394099,0.127819199,1001.41451,3008656476 +3,7321,165,128,1.9151473,0.12735551,1005.06056,3008656476 +3,7322,166,128,2.29359794,0.127317124,1005.36358,3008656476 +3,7323,167,128,1.80389583,0.127410528,1004.62656,3008656476 +3,7324,168,128,1.82265341,0.127062506,1007.37821,3008656476 +3,7325,169,128,1.76333833,0.12830608,997.614454,3008656476 +3,7326,170,128,2.09595895,0.131117672,976.222336,3008656476 +3,7327,171,128,1.89735615,0.146482885,873.822222,3008656476 +3,7328,172,128,1.93895876,0.126664767,1010.54147,3008656476 +3,7329,173,128,1.87187123,0.127077746,1007.2574,3008656476 +3,7330,174,128,1.38923442,0.127260393,1005.81176,3008656476 +3,7331,175,128,1.99109375,0.126118822,1014.91592,3008656476 +3,7332,176,128,1.55081964,0.126446589,1012.28512,3008656476 +3,7333,177,128,2.40030646,0.126029093,1015.63851,3008656476 +3,7334,178,128,1.53721976,0.140273038,912.50608,3008656476 +3,7335,179,128,2.52278781,0.144717035,884.484677,3008656476 +3,7336,180,128,1.93274975,0.126362433,1012.95929,3008656476 +3,7337,181,128,2.01540327,0.125729093,1018.06191,3008656476 +3,7338,182,128,2.15619779,0.126025451,1015.66786,3008656476 +3,7339,183,128,1.36742544,0.125759963,1017.812,3008656476 +3,7340,184,128,1.57767165,0.127056134,1007.42873,3008656476 +3,7341,185,128,1.94173551,0.126815812,1009.33786,3008656476 +3,7342,186,128,1.8120414,0.14285537,896.011119,3008656476 +3,7343,187,128,1.45080459,0.143748783,890.442321,3008656476 +3,7344,188,128,2.10126567,0.127200651,1006.28416,3008656476 +3,7345,189,128,1.89795911,0.127601496,1003.12304,3008656476 +3,7346,190,128,1.75044703,0.126413268,1012.55194,3008656476 +3,7347,191,128,1.5077213,0.127897151,1000.80415,3008656476 +3,7348,192,128,1.5209192,0.127577875,1003.30876,3008656476 +3,7349,193,128,2.06827807,0.128858221,993.339804,3008656476 +3,7350,194,128,1.87037504,0.14326839,893.428062,3008656476 +3,7351,195,128,2.11645055,0.145016568,882.657766,3008656476 +3,7352,196,128,1.9906702,0.127552349,1003.50955,3008656476 +3,7353,197,128,1.82248259,0.126857617,1009.00524,3008656476 +3,7354,198,128,1.63618803,0.127312076,1005.40345,3008656476 +3,7355,199,128,1.97159171,0.128475724,996.297168,3008656476 +3,7356,200,128,1.72859657,0.12914821,991.109362,3008656476 +3,7357,201,128,1.74362016,0.129635378,987.384786,3008656476 +3,7358,202,128,2.41264915,0.143575673,891.515933,3008656476 +3,7359,203,128,1.79991746,0.146062154,876.33926,3008656476 +3,7360,204,128,1.8919189,0.128706911,994.507591,3008656476 +3,7361,205,128,1.77187634,0.128704415,994.526878,3008656476 +3,7362,206,128,1.40100026,0.128928404,992.799073,3008656476 +3,7363,207,128,1.60832703,0.129634634,987.390453,3008656476 +3,7364,208,128,1.38823533,0.129544026,988.081071,3008656476 +3,7365,209,128,1.65955067,0.129959001,984.926008,3008656476 +3,7366,210,128,1.38954031,0.143501462,891.976975,3008656476 +3,7367,211,128,1.59901881,0.14413567,888.052208,3008656476 +3,7368,212,128,1.82306147,0.133089732,961.75714,3008656476 +3,7369,213,128,1.62722015,0.132868182,963.360814,3008656476 +3,7370,214,128,1.35551727,0.133275655,960.415464,3008656476 +3,7371,215,128,1.48507869,0.133095733,961.713776,3008656476 +3,7372,216,128,1.93918669,0.132779629,964.003296,3008656476 +3,7373,217,128,1.90638304,0.143018386,894.989823,3008656476 +3,7374,218,128,1.40567446,0.136256118,939.407359,3008656476 +3,7375,219,128,1.92556024,0.145985099,876.801817,3008656476 +3,7376,220,128,1.63086987,0.130909438,977.775185,3008656476 +3,7377,221,128,1.58555007,0.133857604,956.240035,3008656476 +3,7378,222,128,1.91767931,0.130811959,978.503808,3008656476 +3,7379,223,128,1.37115359,0.131570127,972.865216,3008656476 +3,7380,224,128,1.65178275,0.131149647,975.984327,3008656476 +3,7381,225,128,1.64346814,0.144065719,888.483401,3008656476 +3,7382,226,128,1.6413331,0.12962313,987.478084,3008656476 +3,7383,227,128,2.00386095,0.145465276,879.935085,3008656476 +3,7384,228,128,1.55244744,0.130864168,978.113428,3008656476 +3,7385,229,128,1.60971177,0.129525919,988.2192,3008656476 +3,7386,230,128,1.68728077,0.128305535,997.618692,3008656476 +3,7387,231,128,1.8754549,0.128492708,996.165479,3008656476 +3,7388,232,128,1.55068529,0.12794177,1000.45513,3008656476 +3,7389,233,128,1.80495048,0.143199827,893.855828,3008656476 +3,7390,234,128,1.6598196,0.12862905,995.109581,3008656476 +3,7391,235,128,1.46935725,0.14231544,899.410493,3008656476 +3,7392,236,128,2.01514459,0.127671043,1002.5766,3008656476 +3,7393,237,128,1.59152555,0.127133431,1006.81622,3008656476 +3,7394,238,128,1.89542532,0.127844021,1001.22007,3008656476 +3,7395,239,128,2.11339903,0.127504135,1003.88901,3008656476 +3,7396,240,128,2.02739048,0.127153058,1006.66081,3008656476 +3,7397,241,128,1.64648736,0.142113031,900.691507,3008656476 +3,7398,242,128,1.8811543,0.126701533,1010.24823,3008656476 +3,7399,243,128,2.00142336,0.143626823,891.198436,3008656476 +3,7400,244,128,2.12769818,0.126700055,1010.26002,3008656476 +3,7401,245,128,1.64746165,0.127206045,1006.24149,3008656476 +3,7402,246,128,1.78889561,0.12761398,1003.0249,3008656476 +3,7403,247,128,1.91556978,0.126731873,1010.00638,3008656476 +3,7404,248,128,1.89561164,0.127608191,1003.07041,3008656476 +3,7405,249,128,1.09173787,0.140985248,907.896406,3008656476 +3,7406,250,128,1.47504508,0.127901385,1000.77102,3008656476 +3,7407,251,128,2.15539908,0.14277887,896.491196,3008656476 +3,7408,252,128,1.95631778,0.126569368,1011.30315,3008656476 +3,7409,253,128,1.71997821,0.126597631,1011.07737,3008656476 +3,7410,254,128,1.87970495,0.127713496,1002.24333,3008656476 +3,7411,255,128,2.04893517,0.127617597,1002.99648,3008656476 +3,7412,256,128,1.98817027,0.126262109,1013.76415,3008656476 +3,7413,257,128,2.17150164,0.139953556,914.589123,3008656476 +3,7414,258,128,1.65432751,0.121314034,1055.11288,3008656476 +3,7415,259,128,1.94733822,0.145878299,877.443738,3008656476 +3,7416,260,128,2.13558698,0.128152382,998.810931,3008656476 +3,7417,261,128,1.778548,0.127235156,1006.01126,3008656476 +3,7418,262,128,2.12199974,0.126585526,1011.17406,3008656476 +3,7419,263,128,1.58489931,0.126604024,1011.02632,3008656476 +3,7420,264,128,1.64272583,0.12791221,1000.68633,3008656476 +3,7421,265,128,1.68444335,0.12664908,1010.66664,3008656476 +3,7422,266,128,1.64098251,0.13495961,948.431905,3008656476 +3,7423,267,128,1.26099026,0.145297221,880.952844,3008656476 +3,7424,268,128,1.4033066,0.126261398,1013.76986,3008656476 +3,7425,269,128,1.80061984,0.126980527,1008.02858,3008656476 +3,7426,270,128,2.27464986,0.125754994,1017.85222,3008656476 +3,7427,271,128,1.64570534,0.12547431,1020.12914,3008656476 +3,7428,272,128,1.7876718,0.127314471,1005.38453,3008656476 +3,7429,273,128,2.04429245,0.127779152,1001.72836,3008656476 +3,7430,274,128,1.45451617,0.139653493,916.554232,3008656476 +3,7431,275,128,1.69065583,0.146432724,874.121552,3008656476 +3,7432,276,128,2.03650308,0.126961735,1008.17778,3008656476 +3,7433,277,128,1.94248378,0.12616057,1014.58007,3008656476 +3,7434,278,128,1.68059289,0.126574891,1011.25902,3008656476 +3,7435,279,128,1.70983052,0.128238489,998.14027,3008656476 +3,7436,280,128,1.92643023,0.126915033,1008.54877,3008656476 +3,7437,281,128,1.57235527,0.127198247,1006.30318,3008656476 +3,7438,282,128,1.31861496,0.142094814,900.806978,3008656476 +3,7439,283,128,1.61550593,0.148184275,863.78936,3008656476 +3,7440,284,128,1.33406234,0.126908666,1008.59937,3008656476 +3,7441,285,128,1.47389972,0.127438493,1004.4061,3008656476 +3,7442,286,128,1.73715711,0.127102877,1007.05824,3008656476 +3,7443,287,128,1.4906764,0.127967448,1000.25438,3008656476 +3,7444,288,128,1.39391184,0.128560762,995.638156,3008656476 +3,7445,289,128,1.71532524,0.128779126,993.949905,3008656476 +3,7446,290,128,1.51192999,0.143964899,889.105615,3008656476 +3,7447,291,128,1.98330724,0.146167818,875.705759,3008656476 +3,7448,292,128,1.79390705,0.127930977,1000.53953,3008656476 +3,7449,293,128,1.4819504,0.128043071,999.663621,3008656476 +3,7450,294,128,1.40062857,0.128196268,998.469004,3008656476 +3,7451,295,128,1.61649144,0.129029452,992.021573,3008656476 +3,7452,296,128,2.09612393,0.128854198,993.370817,3008656476 +3,7453,297,128,1.59232152,0.129966575,984.868609,3008656476 +3,7454,298,128,1.70798814,0.144513343,885.731361,3008656476 +3,7455,299,128,1.98076165,0.145297791,880.949388,3008656476 +3,7456,300,128,1.72513747,0.131533757,973.13422,3008656476 +3,7457,301,128,1.75785279,0.130024545,984.429517,3008656476 +3,7458,302,128,1.82234108,0.132477098,966.20474,3008656476 +3,7459,303,128,1.8744483,0.131684899,972.0173,3008656476 +3,7460,304,128,1.59042454,0.132603102,965.286619,3008656476 +3,7461,305,128,1.72767282,0.13315233,961.304996,3008656476 +3,7462,306,128,1.85223162,0.148277218,863.24792,3008656476 +3,7463,307,128,1.55805933,0.148572496,861.532272,3008656476 +3,7464,308,128,2.05885386,0.131212294,975.518346,3008656476 +3,7465,309,128,2.09337091,0.133832492,956.419462,3008656476 +3,7466,310,128,1.66959119,0.131425431,973.936315,3008656476 +3,7467,311,128,1.4831816,0.131325793,974.675249,3008656476 +3,7468,312,128,1.49267721,0.129670817,987.114934,3008656476 +3,7469,313,128,1.69890833,0.144871872,883.539353,3008656476 +3,7470,314,128,1.22942424,0.130373393,981.795419,3008656476 +3,7471,315,128,1.62973833,0.143427836,892.434855,3008656476 +3,7472,316,128,1.71168423,0.129659235,987.20311,3008656476 +3,7473,317,128,1.56413221,0.129370702,989.40485,3008656476 +3,7474,318,128,1.93045187,0.128845757,993.435896,3008656476 +3,7475,319,128,1.85488176,0.130855312,978.179625,3008656476 +3,7476,320,128,2.29552126,0.12848698,996.209888,3008656476 +3,7477,321,128,1.57620239,0.142003377,901.387014,3008656476 +3,7478,322,128,1.61274755,0.128746926,994.198494,3008656476 +3,7479,323,128,1.82680464,0.140707686,909.687336,3008656476 +3,7480,324,128,1.36263561,0.127824979,1001.36922,3008656476 +3,7481,325,128,2.03620648,0.127190373,1006.36547,3008656476 +3,7482,326,128,1.88536441,0.126825805,1009.25833,3008656476 +3,7483,327,128,2.08609033,0.127476733,1004.1048,3008656476 +3,7484,328,128,1.93067837,0.126346473,1013.08724,3008656476 +3,7485,329,128,1.75708842,0.140139431,913.37605,3008656476 +3,7486,330,128,2.5558641,0.127190995,1006.36055,3008656476 +3,7487,331,128,1.85164106,0.141127195,906.983236,3008656476 +3,7488,332,128,1.45592034,0.127073381,1007.292,3008656476 +3,7489,333,128,2.05754399,0.127513954,1003.81171,3008656476 +3,7490,334,128,1.91458523,0.127549207,1003.53427,3008656476 +3,7491,335,128,2.09009051,0.12713693,1006.78851,3008656476 +3,7492,336,128,1.82191217,0.127238839,1005.98214,3008656476 +3,7493,337,128,1.91193974,0.139206525,919.497128,3008656476 +3,7494,338,128,1.62292683,0.128476716,996.289476,3008656476 +3,7495,339,128,1.98007989,0.142443336,898.602936,3008656476 +3,7496,340,128,1.97926271,0.127939329,1000.47422,3008656476 +3,7497,341,128,1.71955693,0.12677819,1009.63738,3008656476 +3,7498,342,128,1.76497483,0.128153612,998.801345,3008656476 +3,7499,343,128,1.68178749,0.128218281,998.297583,3008656476 +3,7500,344,128,2.02821946,0.128170877,998.666803,3008656476 +3,7501,345,128,1.65827954,0.138548809,923.862146,3008656476 +3,7502,346,128,1.61162591,0.124448831,1028.53517,3008656476 +3,7503,347,128,2.21748042,0.146134413,875.905937,3008656476 +3,7504,348,128,1.85159874,0.126811569,1009.37163,3008656476 +3,7505,349,128,2.13346815,0.126237962,1013.95807,3008656476 +3,7506,350,128,2.01223898,0.127034203,1007.60265,3008656476 +3,7507,351,128,1.92932355,0.126056373,1015.41871,3008656476 +3,7508,352,128,2.00851583,0.126284576,1013.5838,3008656476 +3,7509,353,128,2.0140152,0.126148593,1014.6764,3008656476 +3,7510,354,128,1.60165203,0.133631475,957.858169,3008656476 +3,7511,355,128,1.91434407,0.145361977,880.560396,3008656476 +3,7512,356,128,2.10787487,0.126117589,1014.92584,3008656476 +3,7513,357,128,1.56074369,0.125648716,1018.71316,3008656476 +3,7514,358,128,1.24373853,0.125568109,1019.36711,3008656476 +3,7515,359,128,1.51772857,0.126748911,1009.87061,3008656476 +3,7516,360,128,1.83885872,0.126047974,1015.48637,3008656476 +3,7517,361,128,1.57218647,0.127382158,1004.8503,3008656476 +3,7518,362,128,1.80529642,0.14226899,899.704145,3008656476 +3,7519,363,128,1.72047818,0.1449283,883.195346,3008656476 +3,7520,364,128,1.83592618,0.126659056,1010.58704,3008656476 +3,7521,365,128,1.91750705,0.12809341,999.270767,3008656476 +3,7522,366,128,2.00954843,0.147561762,867.433394,3008656476 +3,7523,367,128,1.92706418,0.16447808,778.219201,3008656476 +3,7524,368,128,1.39983928,0.12891611,992.893751,3008656476 +3,7525,369,128,1.75779438,0.144202959,887.637819,3008656476 +3,7526,370,128,1.88040447,0.129452211,988.781876,3008656476 +3,7527,371,128,1.89568961,0.144565836,885.409745,3008656476 +3,7528,372,128,2.1618495,0.131236298,975.339917,3008656476 +3,7529,373,128,2.34400177,0.132214015,968.12732,3008656476 +3,7530,374,128,1.98876572,0.131145064,976.018434,3008656476 +3,7531,375,128,1.30106056,0.131706134,971.860582,3008656476 +3,7532,376,128,2.3612349,0.132978229,962.563579,3008656476 +3,7533,377,128,1.37580371,0.149735545,854.840446,3008656476 +3,7534,378,128,1.71969008,0.133255206,960.562847,3008656476 +3,7535,379,128,1.42331219,0.144637685,884.969916,3008656476 +3,7536,380,128,1.62477958,0.13089466,977.885576,3008656476 +3,7537,381,128,1.51668215,0.130812593,978.499065,3008656476 +3,7538,382,128,1.23157644,0.13135345,974.470027,3008656476 +3,7539,383,128,1.5195688,0.130606475,980.043294,3008656476 +3,7540,384,128,2.30712295,0.130149565,983.483886,3008656476 +3,7541,385,128,1.97590768,0.142604884,897.584966,3008656476 +3,7542,386,128,1.69818056,0.129067,991.732976,3008656476 +3,7543,387,128,1.64939499,0.143950488,889.194624,3008656476 +3,7544,388,128,2.18217373,0.131591327,972.708483,3008656476 +3,7545,389,128,2.39568019,0.130889626,977.923185,3008656476 +3,7546,390,128,2.2218225,0.129658053,987.212109,3008656476 +3,7547,391,128,2.14920902,0.131147151,976.002902,3008656476 +3,7548,392,128,1.51619208,0.130239471,982.804975,3008656476 +3,7549,393,128,1.90969646,0.142565988,897.829853,3008656476 +3,7550,394,128,1.64477253,0.131016318,976.97754,3008656476 +3,7551,395,128,1.92826736,0.130017785,984.4807,3008656476 +3,7552,396,128,1.89983404,0.127287145,1005.60037,3008656476 +3,7553,397,128,2.38356185,0.127106943,1007.02603,3008656476 +3,7554,398,128,1.72469151,0.127103914,1007.05003,3008656476 +3,7555,399,128,2.18379116,0.125805752,1017.44156,3008656476 +3,7556,400,128,1.75481725,0.126934008,1008.398,3008656476 +3,7557,401,128,2.07295179,0.142282386,899.619437,3008656476 +3,7558,402,128,1.77447712,0.127836866,1001.27611,3008656476 +3,7559,403,128,1.74001384,0.142716591,896.882409,3008656476 +3,7560,404,128,1.90966165,0.127724176,1002.15953,3008656476 +3,7561,405,128,1.58922029,0.1268888,1008.75727,3008656476 +3,7562,406,128,1.83988047,0.128259036,997.980368,3008656476 +3,7563,407,128,1.37751961,0.127659843,1002.66456,3008656476 +3,7564,408,128,1.40416157,0.127716093,1002.22295,3008656476 +3,7565,409,128,1.91030693,0.145396331,880.352338,3008656476 +3,7566,410,128,1.4648962,0.126754767,1009.82395,3008656476 +3,7567,411,128,2.05904174,0.143189278,893.92168,3008656476 +3,7568,412,128,1.52526343,0.128002253,999.982399,3008656476 +3,7569,413,128,1.57742774,0.128246799,998.075593,3008656476 +3,7570,414,128,1.6894753,0.127337271,1005.20452,3008656476 +3,7571,415,128,2.01938701,0.126104409,1015.03192,3008656476 +3,7572,416,128,1.70031238,0.127742558,1002.01532,3008656476 +3,7573,417,128,1.48657286,0.145500615,879.721368,3008656476 +3,7574,418,128,1.59541261,0.127739256,1002.04122,3008656476 +3,7575,419,128,1.0645926,0.143011384,895.033643,3008656476 +3,7576,420,128,1.21540427,0.12785277,1001.15156,3008656476 +3,7577,421,128,1.73002267,0.12681745,1009.32482,3008656476 +3,7578,422,128,1.58103466,0.127692445,1002.40856,3008656476 +3,7579,423,128,1.74229443,0.128038063,999.702721,3008656476 +3,7580,424,128,2.10564661,0.127944032,1000.43744,3008656476 +3,7581,425,128,2.12353134,0.144021016,888.759179,3008656476 +3,7582,426,128,2.29377747,0.126281305,1013.61005,3008656476 +3,7583,427,128,1.63891983,0.140365513,911.904906,3008656476 +3,7584,428,128,1.4188081,0.127114626,1006.96516,3008656476 +3,7585,429,128,1.09499919,0.127338554,1005.19439,3008656476 +3,7586,430,128,1.352584,0.127296551,1005.52606,3008656476 +3,7587,431,128,1.18377995,0.126431359,1012.40706,3008656476 +3,7588,432,128,1.37014067,0.127281378,1005.64593,3008656476 +3,7589,433,128,1.28368306,0.143219218,893.734806,3008656476 +3,7590,434,128,1.56688225,0.127077683,1007.2579,3008656476 +3,7591,435,128,1.76412761,0.141869371,902.23844,3008656476 +3,7592,436,128,2.11792827,0.127627129,1002.92157,3008656476 +3,7593,437,128,1.37528586,0.127346132,1005.13457,3008656476 +3,7594,438,128,1.38485551,0.126914907,1008.54977,3008656476 +3,7595,439,128,1.8624593,0.127158579,1006.6171,3008656476 +3,7596,440,128,1.65100443,0.127760517,1001.87447,3008656476 +3,7597,441,128,1.47385693,0.144114797,888.18083,3008656476 +3,7598,442,128,1.47263384,0.12742614,1004.50347,3008656476 +3,7599,443,128,1.32719374,0.141458338,904.860059,3008656476 +3,7600,444,128,1.35433841,0.127131082,1006.83482,3008656476 +3,7601,445,128,1.51149344,0.127430191,1004.47154,3008656476 +3,7602,446,128,1.80174112,0.127177532,1006.46709,3008656476 +3,7603,447,128,2.09782863,0.126528095,1011.63303,3008656476 +3,7604,448,128,1.74336898,0.126461206,1012.16811,3008656476 +3,7605,449,128,1.73116422,0.143033523,894.895108,3008656476 +3,7606,450,128,1.56717801,0.127473491,1004.13034,3008656476 +3,7607,451,128,2.21278906,0.141459364,904.853496,3008656476 +3,7608,452,128,1.56914425,0.128071303,999.443255,3008656476 +3,7609,453,128,1.67523408,0.126714627,1010.14384,3008656476 +3,7610,454,128,2.07631636,0.125763028,1017.7872,3008656476 +3,7611,455,128,1.86527658,0.126128407,1014.83879,3008656476 +3,7612,456,128,1.92034853,0.126437017,1012.36175,3008656476 +3,7613,457,128,1.86144817,0.143443858,892.335174,3008656476 +3,7614,458,128,2.07480884,0.126044516,1015.51423,3008656476 +3,7615,459,128,1.36507547,0.142721771,896.849858,3008656476 +3,7616,460,128,2.25248218,0.126482085,1012.00103,3008656476 +3,7617,461,128,1.9161365,0.126324714,1013.26174,3008656476 +3,7618,462,128,1.83705509,0.126976164,1008.06321,3008656476 +3,7619,463,128,1.45699728,0.1271187,1006.93289,3008656476 +3,7620,464,128,1.74246597,0.127440174,1004.39285,3008656476 +3,7621,465,128,1.38440967,0.141087979,907.235336,3008656476 +3,7622,466,128,1.48371422,0.126981545,1008.0205,3008656476 +3,7623,467,128,1.54365611,0.141323517,905.723285,3008656476 +3,7624,468,128,2.05575991,0.12709768,1007.09942,3008656476 +3,7625,469,128,2.13113284,0.127900836,1000.77532,3008656476 +3,7626,470,128,1.81831622,0.128832683,993.53671,3008656476 +3,7627,471,128,1.17666984,0.129077747,991.650404,3008656476 +3,7628,472,128,2.46964431,0.130108723,983.792609,3008656476 +3,7629,473,128,1.74569046,0.142346607,899.213565,3008656476 +3,7630,474,128,1.49796677,0.129811698,986.043646,3008656476 +3,7631,475,128,1.31323719,0.141255805,906.15745,3008656476 +3,7632,476,128,1.45683181,0.129665844,987.152793,3008656476 +3,7633,477,128,1.80206883,0.129542578,988.092116,3008656476 +3,7634,478,128,1.64931524,0.129954327,984.961432,3008656476 +3,7635,479,128,2.2070806,0.131069904,976.578117,3008656476 +3,7636,480,128,1.74422228,0.130878528,978.00611,3008656476 +3,7637,481,128,1.43682933,0.143883789,889.60682,3008656476 +3,7638,482,128,1.476758,0.132413103,966.671705,3008656476 +3,7639,483,128,1.89877462,0.145239965,881.30013,3008656476 +3,7640,484,128,1.7401576,0.133001327,962.396413,3008656476 +3,7641,485,128,1.55571413,0.133616378,957.966395,3008656476 +3,7642,486,128,1.42363453,0.132932831,962.892305,3008656476 +3,7643,487,128,1.89074922,0.133221918,960.802861,3008656476 +3,7644,488,128,1.59657323,0.133741425,957.070706,3008656476 +3,7645,489,128,2.26363683,0.145584135,879.216681,3008656476 +3,7646,490,128,2.43080902,0.133263796,960.50093,3008656476 +3,7647,491,128,2.22960854,0.14458376,885.299981,3008656476 +3,7648,492,128,1.73883486,0.131324305,974.686293,3008656476 +3,7649,493,128,1.79934812,0.131005202,977.060438,3008656476 +3,7650,494,128,1.76573575,0.129412137,989.088064,3008656476 +3,7651,495,128,1.75842905,0.129044143,991.908637,3008656476 +3,7652,496,128,2.18586326,0.130241025,982.793248,3008656476 +3,7653,497,128,2.15020275,0.143154564,894.13845,3008656476 +3,7654,498,128,2.14434648,0.131908195,970.371856,3008656476 +3,7655,499,128,1.95570171,0.140707268,909.690038,3008656476 +3,7656,500,128,2.27176118,0.13080664,978.543597,3008656476 +3,7657,501,128,2.12453985,0.128596638,995.360392,3008656476 +3,7658,502,128,1.49575949,0.130681698,979.479162,3008656476 +3,7659,503,128,2.2616396,0.12819427,998.484566,3008656476 +3,7660,504,128,2.18111801,0.128450966,996.489197,3008656476 +3,7661,505,128,2.3765862,0.14041798,911.564174,3008656476 +3,7662,506,128,2.29252911,0.128443285,996.548788,3008656476 +3,7663,507,128,1.75694716,0.136557459,937.334371,3008656476 +3,7664,508,128,2.22208428,0.126235491,1013.97792,3008656476 +3,7665,509,128,1.98581457,0.126326601,1013.24661,3008656476 +3,7666,510,128,2.06891108,0.126178192,1014.43837,3008656476 +3,7667,511,128,2.0935092,0.127114622,1006.96519,3008656476 +3,7668,512,128,2.36842632,0.126469098,1012.10495,3008656476 +3,7669,513,128,2.30445027,0.140064372,913.865519,3008656476 +3,7670,514,128,2.10508585,0.126976676,1008.05915,3008656476 +3,7671,515,128,2.3517108,0.14244927,898.565503,3008656476 +3,7672,516,128,2.04756999,0.12535336,1021.11343,3008656476 +3,7673,517,128,2.29798579,0.127054254,1007.44364,3008656476 +3,7674,518,128,2.33539104,0.127282967,1005.63338,3008656476 +3,7675,519,128,2.17956734,0.127607965,1003.07218,3008656476 +3,7676,520,128,1.73524296,0.12757004,1003.37038,3008656476 +3,7677,521,128,1.82519877,0.142457699,898.512337,3008656476 +3,7678,522,128,1.42519331,0.1275186,1003.77514,3008656476 +3,7679,523,128,1.93514013,0.140153812,913.28233,3008656476 +3,7680,524,128,1.620399,0.127681677,1002.4931,3008656476 +3,7681,525,128,1.89959705,0.126861202,1008.97672,3008656476 +3,7682,526,128,2.32352757,0.125686872,1018.4039,3008656476 +3,7683,527,128,1.97774065,0.127651379,1002.73104,3008656476 +3,7684,528,128,2.07385135,0.127858805,1001.1043,3008656476 +3,7685,529,128,1.80020905,0.14450892,885.758471,3008656476 +3,7686,530,128,1.18533945,0.125156719,1022.71777,3008656476 +3,7687,531,128,2.13673663,0.140452183,911.34219,3008656476 +3,7688,532,128,2.39767599,0.126450708,1012.25214,3008656476 +3,7689,533,128,2.34589648,0.126732575,1010.00078,3008656476 +3,7690,534,128,2.1462729,0.126524503,1011.66175,3008656476 +3,7691,535,128,1.81778419,0.125913537,1016.5706,3008656476 +3,7692,536,128,1.84570277,0.125881798,1016.82691,3008656476 +3,7693,537,128,2.04154682,0.1432388,893.612625,3008656476 +3,7694,538,128,1.48042345,0.126517421,1011.71838,3008656476 +3,7695,539,128,1.72625089,0.140094834,913.666809,3008656476 +3,7696,540,128,1.63936925,0.125949369,1016.28139,3008656476 +3,7697,541,128,1.88269627,0.125277835,1021.72902,3008656476 +3,7698,542,128,1.9351275,0.126523923,1011.66639,3008656476 +3,7699,543,128,2.33991146,0.126642545,1010.71879,3008656476 +3,7700,544,128,1.6035614,0.127175303,1006.48473,3008656476 +3,7701,545,128,1.44983578,0.142438496,898.633471,3008656476 +3,7702,546,128,1.61718392,0.127027933,1007.65239,3008656476 +3,7703,547,128,1.92392695,0.142202826,900.122758,3008656476 +3,7704,548,128,1.97610271,0.126986098,1007.98435,3008656476 +3,7705,549,128,1.87776661,0.127448149,1004.33,3008656476 +3,7706,550,128,1.7307682,0.129826295,985.93278,3008656476 +3,7707,551,128,1.61262417,0.12820322,998.41486,3008656476 +3,7708,552,128,1.64113629,0.128353696,997.244365,3008656476 +3,7709,553,128,1.95816696,0.144908808,883.314146,3008656476 +3,7710,554,128,2.2383709,0.128696506,994.587996,3008656476 +3,7711,555,128,2.2137506,0.142434445,898.659029,3008656476 +3,7712,556,128,1.34363258,0.128828265,993.570782,3008656476 +3,7713,557,128,1.70935762,0.129319527,989.796382,3008656476 +3,7714,558,128,2.26550531,0.13076734,978.837682,3008656476 +3,7715,559,128,2.31108451,0.129884405,985.491676,3008656476 +3,7716,560,128,1.94129539,0.129388667,989.267476,3008656476 +3,7717,561,128,1.94900429,0.143408789,892.553385,3008656476 +3,7718,562,128,2.22145462,0.131999606,969.699864,3008656476 +3,7719,563,128,2.26066017,0.144813348,883.896421,3008656476 +3,7720,564,128,1.91303778,0.131122553,976.185996,3008656476 +3,7721,565,128,1.88859737,0.13106408,976.621512,3008656476 +3,7722,566,128,1.39642441,0.129478626,988.580154,3008656476 +3,7723,567,128,1.98685622,0.131134598,976.096331,3008656476 +3,7724,568,128,1.95565295,0.129188952,990.796798,3008656476 +3,7725,569,128,2.09786487,0.145397967,880.342433,3008656476 +3,7726,570,128,2.54131389,0.130167029,983.351936,3008656476 +3,7727,571,128,1.70625818,0.144299532,887.043764,3008656476 +3,7728,572,128,1.54049981,0.132305818,967.455566,3008656476 +3,7729,573,128,2.04256773,0.129526967,988.211204,3008656476 +3,7730,574,128,1.72497022,0.128541988,995.783572,3008656476 +3,7731,575,128,2.15431213,0.128292007,997.723888,3008656476 +3,7732,576,128,1.36118054,0.12818808,998.532781,3008656476 +3,7733,577,128,2.27729797,0.144357794,886.685758,3008656476 +3,7734,578,128,1.70978773,0.127681629,1002.49348,3008656476 +3,7735,579,128,1.9641856,0.146765594,872.139011,3008656476 +3,7736,580,128,1.76961672,0.128999973,992.24827,3008656476 +3,7737,581,128,2.10408449,0.127958387,1000.32521,3008656476 +3,7738,582,128,2.07279921,0.128223326,998.258304,3008656476 +3,7739,583,128,1.56500995,0.126791048,1009.53499,3008656476 +3,7740,584,128,2.17046046,0.127136342,1006.79316,3008656476 +3,7741,585,128,1.60746074,0.144425195,886.271956,3008656476 +3,7742,586,128,1.93622851,0.127147102,1006.70796,3008656476 +3,7743,587,128,2.23925829,0.144574779,885.354976,3008656476 +3,7744,588,128,1.98364294,0.126636813,1010.76454,3008656476 +3,7745,589,128,2.32337499,0.126355514,1013.01475,3008656476 +3,7746,590,128,2.18532348,0.127028062,1007.65136,3008656476 +3,7747,591,128,2.02561975,0.127577198,1003.31409,3008656476 +3,7748,592,128,1.95641613,0.126798788,1009.47337,3008656476 +3,7749,593,128,1.71426511,0.141096583,907.180013,3008656476 +3,7750,594,128,1.72810721,0.128175168,998.63337,3008656476 +3,7751,595,128,2.01963997,0.145397043,880.348027,3008656476 +3,7752,596,128,2.19409275,0.125758838,1017.82111,3008656476 +3,7753,597,128,2.14527845,0.126903701,1008.63883,3008656476 +3,7754,598,128,1.7511934,0.127360352,1005.02235,3008656476 +3,7755,599,128,2.01923323,0.126803459,1009.43619,3008656476 +3,7756,600,128,2.12409854,0.126637014,1010.76294,3008656476 +3,7757,601,128,1.85008037,0.139602607,916.888321,3008656476 +3,7758,602,128,2.15012002,0.127423209,1004.52658,3008656476 +3,7759,603,128,1.60486853,0.145066678,882.352872,3008656476 +3,7760,604,128,2.08577394,0.127007365,1007.81557,3008656476 +3,7761,605,128,1.49403107,0.127856398,1001.12315,3008656476 +3,7762,606,128,1.62123883,0.119238006,1073.48323,3008656476 +3,7763,607,128,1.50251269,0.128210025,998.361868,3008656476 +3,7764,608,128,2.23878431,0.127264875,1005.77634,3008656476 +3,7765,609,128,1.5337863,0.140958167,908.070832,3008656476 +3,7766,610,128,1.76587057,0.128421265,996.719663,3008656476 +3,7767,611,128,1.57275331,0.145438778,880.095403,3008656476 +3,7768,612,128,1.82571852,0.127264599,1005.77852,3008656476 +3,7769,613,128,1.84684098,0.128078225,999.38924,3008656476 +3,7770,614,128,2.16783571,0.127980682,1000.15094,3008656476 +3,7771,615,128,1.46445513,0.126932932,1008.40655,3008656476 +3,7772,616,128,2.2090323,0.128572589,995.54657,3008656476 +3,7773,617,128,2.13549495,0.141772663,902.853888,3008656476 +3,7774,618,128,1.7630434,0.127421154,1004.54278,3008656476 +3,7775,619,128,2.00742531,0.146103053,876.093944,3008656476 +3,7776,620,128,1.71344042,0.128077765,999.39283,3008656476 +3,7777,621,128,1.76046848,0.127073985,1007.28721,3008656476 +3,7778,622,128,2.08742332,0.128125567,999.019969,3008656476 +3,7779,623,128,1.9997412,0.127750792,1001.95074,3008656476 +3,7780,624,128,2.15769124,0.128016416,999.871766,3008656476 +3,7781,625,128,2.18060827,0.141141999,906.888105,3008656476 +3,7782,626,128,1.82564354,0.127291719,1005.56423,3008656476 +3,7783,627,128,1.61964452,0.145325452,880.781709,3008656476 +3,7784,628,128,1.84646046,0.127603036,1003.11093,3008656476 +3,7785,629,128,2.4904027,0.127380036,1004.86704,3008656476 +3,7786,630,128,2.05340576,0.127885977,1000.8916,3008656476 +3,7787,631,128,1.58806646,0.126737205,1009.96389,3008656476 +3,7788,632,128,2.44850254,0.127397326,1004.73066,3008656476 +3,7789,633,128,2.31868315,0.141239804,906.260108,3008656476 +3,7790,634,128,2.13698506,0.126949668,1008.27361,3008656476 +3,7791,635,128,1.69395268,0.145306685,880.895466,3008656476 +3,7792,636,128,1.96937895,0.127359991,1005.0252,3008656476 +3,7793,637,128,1.71855736,0.126898812,1008.67769,3008656476 +3,7794,638,128,1.82777131,0.126071159,1015.29962,3008656476 +3,7795,639,128,2.431458,0.127615947,1003.00944,3008656476 +3,7796,640,128,1.83968425,0.126740682,1009.93618,3008656476 +3,7797,641,128,1.92282605,0.142054699,901.061358,3008656476 +3,7798,642,128,1.58188999,0.126548896,1011.46675,3008656476 +3,7799,643,128,1.83883417,0.145017729,882.6507,3008656476 +3,7800,644,128,2.24771571,0.127359893,1005.02597,3008656476 +3,7801,645,128,2.54252052,0.126847056,1009.08925,3008656476 +3,7802,646,128,2.04730415,0.126593831,1011.10772,3008656476 +3,7803,647,128,1.83530724,0.126919393,1008.51412,3008656476 +3,7804,648,128,2.23967648,0.126517194,1011.72019,3008656476 +3,7805,649,128,2.04704785,0.13863883,923.262264,3008656476 +3,7806,650,128,1.67528737,0.126369963,1012.89893,3008656476 +3,7807,651,128,1.91146553,0.145185009,881.633723,3008656476 +3,7808,652,128,1.28448367,0.125657719,1018.64017,3008656476 +3,7809,653,128,1.55602908,0.127803657,1001.53629,3008656476 +3,7810,654,128,2.48185968,0.126839231,1009.1515,3008656476 +3,7811,655,128,2.38320827,0.127955409,1000.34849,3008656476 +3,7812,656,128,2.21152163,0.127782362,1001.70319,3008656476 +3,7813,657,128,1.85676384,0.128283066,997.793427,3008656476 +3,7814,658,128,1.97999191,0.13582839,942.365584,3008656476 +3,7815,659,128,2.01284838,0.146255014,875.183671,3008656476 +3,7816,660,128,2.13240695,0.132263972,967.761652,3008656476 +3,7817,661,128,2.19979405,0.132523884,965.863633,3008656476 +3,7818,662,128,2.06934023,0.139598188,916.917346,3008656476 +3,7819,663,128,1.88873506,0.133772507,956.848331,3008656476 +3,7820,664,128,1.54912758,0.132936809,962.863491,3008656476 +3,7821,665,128,2.57442164,0.145131899,881.956351,3008656476 +3,7822,666,128,2.37428951,0.144670112,884.771555,3008656476 +3,7823,667,128,1.87722754,0.147784568,866.125616,3008656476 +3,7824,668,128,1.66388738,0.139505851,917.524241,3008656476 +3,7825,669,128,1.68306375,0.135872305,942.061004,3008656476 +3,7826,670,128,1.85877073,0.130713814,979.238506,3008656476 +3,7827,671,128,1.58666885,0.132878329,963.287249,3008656476 +3,7828,672,128,1.62971902,0.132973606,962.597044,3008656476 +3,7829,673,128,1.82802367,0.144779847,884.100948,3008656476 +3,7830,674,128,2.10792613,0.130756886,978.91594,3008656476 +3,7831,675,128,2.12742472,0.144724403,884.439648,3008656476 +3,7832,676,128,1.75781155,0.129341319,989.629617,3008656476 +3,7833,677,128,2.26846695,0.130420102,981.443796,3008656476 +3,7834,678,128,1.94153321,0.130137568,983.574551,3008656476 +3,7835,679,128,1.9425813,0.129909617,985.300419,3008656476 +3,7836,680,128,2.03710866,0.132363108,967.036827,3008656476 +3,7837,681,128,2.20185995,0.14385112,889.808852,3008656476 +3,7838,682,128,2.06739569,0.129333538,989.689155,3008656476 +3,7839,683,128,1.79365683,0.142575145,897.772189,3008656476 +3,7840,684,128,1.83299923,0.129580783,987.800791,3008656476 +3,7841,685,128,1.55066836,0.129144185,991.140251,3008656476 +3,7842,686,128,1.75252962,0.12773511,1002.07374,3008656476 +3,7843,687,128,1.56999445,0.128023638,999.815362,3008656476 +3,7844,688,128,2.13269019,0.128463516,996.391847,3008656476 +3,7845,689,128,1.4031266,0.145065681,882.358936,3008656476 +3,7846,690,128,1.80766845,0.132203839,968.201839,3008656476 +3,7847,691,128,1.99092638,0.140301024,912.324061,3008656476 +3,7848,692,128,1.85835612,0.130786469,978.694516,3008656476 +3,7849,693,128,1.7272017,0.128618637,995.190145,3008656476 +3,7850,694,128,1.82501793,0.129606107,987.607783,3008656476 +3,7851,695,128,1.79964185,0.128434758,996.614951,3008656476 +3,7852,696,128,2.37000942,0.128274174,997.862594,3008656476 +3,7853,697,128,2.28421903,0.145962483,876.937672,3008656476 +3,7854,698,128,1.88859081,0.129695273,986.928799,3008656476 +3,7855,699,128,1.96815324,0.137676085,929.718477,3008656476 +3,7856,700,128,2.33808637,0.129147263,991.116629,3008656476 +3,7857,701,128,2.14607024,0.128833515,993.530294,3008656476 +3,7858,702,128,1.64405656,0.127821235,1001.39855,3008656476 +3,7859,703,128,1.76013839,0.128879484,993.175919,3008656476 +3,7860,704,128,1.861588,0.127943846,1000.4389,3008656476 +3,7861,705,128,2.22295833,0.144080351,888.393172,3008656476 +3,7862,706,128,2.00167751,0.129836035,985.858818,3008656476 +3,7863,707,128,2.14796019,0.142305049,899.476167,3008656476 +3,7864,708,128,1.55749369,0.131092496,976.409817,3008656476 +3,7865,709,128,2.3052001,0.130248339,982.73806,3008656476 +3,7866,710,128,1.39588964,0.129577304,987.827313,3008656476 +3,7867,711,128,1.98887181,0.128371308,997.107547,3008656476 +3,7868,712,128,1.92179418,0.129021507,992.082661,3008656476 +3,7869,713,128,2.17071676,0.141366226,905.449651,3008656476 +3,7870,714,128,1.5800873,0.127564397,1003.41477,3008656476 +3,7871,715,128,1.22579336,0.132977699,962.567415,3008656476 +3,7872,716,128,1.55264699,0.128476944,996.287707,3008656476 +3,7873,717,128,2.07912827,0.127133422,1006.81629,3008656476 +3,7874,718,128,2.38657308,0.127237341,1005.99399,3008656476 +3,7875,719,128,2.28542495,0.126946593,1008.29803,3008656476 +3,7876,720,128,2.17946959,0.126680465,1010.41625,3008656476 +3,7877,721,128,2.20908928,0.143004588,895.076178,3008656476 +3,7878,722,128,1.95395017,0.125816498,1017.35466,3008656476 +3,7879,723,128,2.2479713,0.141403904,905.208388,3008656476 +3,7880,724,128,1.88980031,0.127050235,1007.47551,3008656476 +3,7881,725,128,2.09906149,0.127732792,1002.09193,3008656476 +3,7882,726,128,2.00974727,0.127833456,1001.30282,3008656476 +3,7883,727,128,2.34225965,0.127425297,1004.51012,3008656476 +3,7884,728,128,2.01733255,0.128106995,999.1648,3008656476 +3,7885,729,128,2.00972438,0.143434105,892.39585,3008656476 +3,7886,730,128,1.78844655,0.127607574,1003.07526,3008656476 +3,7887,731,128,2.42008424,0.142291611,899.561113,3008656476 +3,7888,732,128,2.04736948,0.127476159,1004.10933,3008656476 +3,7889,733,128,1.57437456,0.128177641,998.614103,3008656476 +3,7890,734,128,1.42112207,0.12846266,996.398487,3008656476 +3,7891,735,128,1.57511675,0.127496466,1003.9494,3008656476 +3,7892,736,128,1.44752622,0.12700313,1007.84918,3008656476 +3,7893,737,128,1.40719604,0.142162816,900.376087,3008656476 +3,7894,738,128,1.63051462,0.127623332,1002.9514,3008656476 +3,7895,739,128,1.73816013,0.141465453,904.814549,3008656476 +3,7896,740,128,1.66783869,0.12738892,1004.79696,3008656476 +3,7897,741,128,1.95431197,0.126515633,1011.73268,3008656476 +3,7898,742,128,1.87146831,0.125892089,1016.74379,3008656476 +3,7899,743,128,1.90736461,0.125639649,1018.78667,3008656476 +3,7900,744,128,1.67533553,0.126505568,1011.81317,3008656476 +3,7901,745,128,1.22861171,0.140971427,907.985417,3008656476 +3,7902,746,128,1.44611228,0.127148898,1006.69374,3008656476 +3,7903,747,128,1.51450276,0.141958839,901.669814,3008656476 +3,7904,748,128,2.09552622,0.127337315,1005.20417,3008656476 +3,7905,749,128,2.2079308,0.128506183,996.061022,3008656476 +3,7906,750,128,1.81377387,0.129629599,987.428805,3008656476 +3,7907,751,128,2.07629156,0.128771253,994.010674,3008656476 +3,7908,752,128,1.57905555,0.129717749,986.757795,3008656476 +3,7909,753,128,1.69934392,0.143326174,893.067864,3008656476 +3,7910,754,128,1.73937619,0.130785058,978.705075,3008656476 +3,7911,755,128,1.74757361,0.14418242,887.764264,3008656476 +3,7912,756,128,2.22299242,0.130192606,983.158752,3008656476 +3,7913,757,128,1.35008049,0.131442453,973.810189,3008656476 +3,7914,758,128,2.22555256,0.132056197,969.284312,3008656476 +3,7915,759,128,1.73649538,0.132048055,969.344077,3008656476 +3,7916,760,128,2.13282633,0.132962114,962.680241,3008656476 +3,7917,761,128,2.11094522,0.153507453,833.835736,3008656476 +3,7918,762,128,2.46573639,0.132476357,966.210144,3008656476 +3,7919,763,128,2.13260245,0.141008198,907.74864,3008656476 +3,7920,764,128,2.33321548,0.130483307,980.968393,3008656476 +3,7921,765,128,2.44637394,0.131695988,971.935455,3008656476 +3,7922,766,128,1.9528147,0.13139902,974.132075,3008656476 +3,7923,767,128,2.07593203,0.130936523,977.572927,3008656476 +3,7924,768,128,1.91246343,0.131461856,973.66646,3008656476 +3,7925,769,128,1.6795609,0.137260393,932.534121,3008656476 +3,7926,770,128,1.69494224,0.129279662,990.101599,3008656476 +3,7927,771,128,2.2614181,0.137003829,934.280457,3008656476 +3,7928,772,128,1.83475709,0.130445383,981.253587,3008656476 +3,7929,773,128,1.8490442,0.130380603,981.741126,3008656476 +3,7930,774,128,1.78408241,0.130841251,978.284746,3008656476 +3,7931,775,128,1.94013178,0.129591516,987.71898,3008656476 +3,7932,776,128,2.18040204,0.128456255,996.448168,3008656476 +3,7933,777,128,2.28728771,0.136680537,936.490321,3008656476 +3,7934,778,128,1.84281778,0.129598348,987.666911,3008656476 +3,7935,779,128,2.03562427,0.140052821,913.940891,3008656476 +3,7936,780,128,1.79089069,0.127638914,1002.82896,3008656476 +3,7937,781,128,1.69661665,0.129204435,990.678068,3008656476 +3,7938,782,128,1.44757974,0.128794112,993.834252,3008656476 +3,7939,783,128,1.33678186,0.128179265,998.601451,3008656476 +3,7940,784,128,1.87899888,0.127771874,1001.78542,3008656476 +3,7941,785,128,1.92088389,0.145297997,880.948139,3008656476 +3,7942,786,128,1.79133964,0.127512685,1003.8217,3008656476 +3,7943,787,128,2.07153749,0.142021193,901.273939,3008656476 +3,7944,788,128,2.27386451,0.128919614,992.866764,3008656476 +3,7945,789,128,2.16726708,0.127850757,1001.16732,3008656476 +3,7946,790,128,2.02640915,0.128776227,993.97228,3008656476 +3,7947,791,128,2.36572194,0.127586332,1003.24226,3008656476 +3,7948,792,128,1.738132,0.127830613,1001.32509,3008656476 +3,7949,793,128,2.00050378,0.145588292,879.191577,3008656476 +3,7950,794,128,1.7162801,0.129847862,985.769023,3008656476 +3,7951,795,128,2.03918052,0.14371674,890.640854,3008656476 +3,7952,796,128,2.35284901,0.13257115,965.51927,3008656476 +3,7953,797,128,1.85978401,0.130428643,981.379527,3008656476 +3,7954,798,128,1.94258022,0.132373152,966.963452,3008656476 +3,7955,799,128,1.9236722,0.130070062,984.085023,3008656476 +3,7956,800,128,2.20472932,0.13025209,982.709759,3008656476 +3,7957,801,128,2.07726884,0.133011323,962.324087,3008656476 +3,7958,802,128,2.31230545,0.126866123,1008.93759,3008656476 +3,7959,803,128,1.95419943,0.13534308,945.744696,3008656476 +3,7960,804,128,2.08135915,0.126599111,1011.06555,3008656476 +3,7961,805,128,2.60935855,0.12658633,1011.16764,3008656476 +3,7962,806,128,2.51713395,0.126843622,1009.11656,3008656476 +3,7963,807,128,1.99232292,0.128299426,997.666194,3008656476 +3,7964,808,128,1.76081574,0.127234991,1006.01257,3008656476 +3,7965,809,128,1.63408887,0.142306433,899.467419,3008656476 +3,7966,810,128,1.59441447,0.12807269,999.432432,3008656476 +3,7967,811,128,1.7865783,0.142477065,898.390208,3008656476 +3,7968,812,128,2.28411078,0.127988552,1000.08945,3008656476 +3,7969,813,128,2.13019133,0.127905008,1000.74268,3008656476 +3,7970,814,128,1.62768948,0.126877117,1008.85016,3008656476 +3,7971,815,128,1.45142305,0.128397795,996.901855,3008656476 +3,7972,816,128,2.40555286,0.127276943,1005.68097,3008656476 +3,7973,817,128,2.10247064,0.141509021,904.535973,3008656476 +3,7974,818,128,1.87530744,0.127829127,1001.33673,3008656476 +3,7975,819,128,1.56757963,0.196742908,650.595243,3008656476 +3,7976,820,128,1.65067112,0.127171037,1006.51849,3008656476 +3,7977,821,128,1.91725433,0.126391282,1012.72808,3008656476 +3,7978,822,128,1.92284036,0.126303077,1013.43533,3008656476 +3,7979,823,128,2.28986144,0.126677414,1010.44058,3008656476 +3,7980,824,128,2.2267065,0.138085902,926.95922,3008656476 +3,7981,825,128,1.98053157,0.123024219,1040.44554,3008656476 +3,7982,826,128,1.870013,0.127221896,1006.11612,3008656476 +3,7983,827,128,1.71696985,0.133315772,960.126458,3008656476 +3,7984,828,128,1.85183024,0.129443957,988.844925,3008656476 +3,7985,829,128,1.96061444,0.129824319,985.947787,3008656476 +3,7986,830,128,2.27414608,0.130669219,979.572703,3008656476 +3,7987,831,128,1.43351865,0.132201255,968.220763,3008656476 +3,7988,832,128,2.07710242,0.132820153,963.709174,3008656476 +3,7989,833,128,2.44671726,0.134728927,950.055811,3008656476 +3,7990,834,128,2.27328539,0.130419527,981.448123,3008656476 +3,7991,835,128,2.07503104,0.13395764,955.525941,3008656476 +3,7992,836,128,1.76734853,0.129589127,987.737189,3008656476 +3,7993,837,128,2.11867309,0.129531352,988.17775,3008656476 +3,7994,838,128,1.95132089,0.130173061,983.306369,3008656476 +3,7995,839,128,2.15407825,0.129507313,988.361175,3008656476 +3,7996,840,128,1.89106762,0.128879544,993.175457,3008656476 +3,7997,841,128,1.74878061,0.138173064,926.374478,3008656476 +3,7998,842,128,1.66301489,0.12826919,997.901367,3008656476 +3,7999,843,128,2.13060236,0.132765725,964.104252,3008656476 +3,8000,844,128,1.67285252,0.129063359,991.760954,3008656476 +3,8001,845,128,2.23247337,0.125851944,1017.06812,3008656476 +3,8002,846,128,2.07728601,0.126690861,1010.33333,3008656476 +3,8003,847,128,2.5015099,0.126932529,1008.40975,3008656476 +3,8004,848,128,1.55289173,0.125806202,1017.43792,3008656476 +3,8005,849,128,1.84442592,0.143310301,893.166779,3008656476 +3,8006,850,128,1.7312448,0.126186726,1014.36977,3008656476 +3,8007,851,128,1.77178836,0.145436691,880.108033,3008656476 +3,8008,852,128,1.45374072,0.128432236,996.634521,3008656476 +3,8009,853,128,1.99053717,0.127375419,1004.90347,3008656476 +3,8010,854,128,2.21051145,0.127450164,1004.31413,3008656476 +3,8011,855,128,2.03954506,0.129224259,990.52609,3008656476 +3,8012,856,128,1.98512042,0.126926855,1008.45483,3008656476 +3,8013,857,128,1.80013037,0.144620525,885.074923,3008656476 +3,8014,858,128,2.0616169,0.128182799,998.573919,3008656476 +3,8015,859,128,1.69962692,0.146607036,873.082244,3008656476 +3,8016,860,128,2.10339689,0.130229638,982.879181,3008656476 +3,8017,861,128,1.95228624,0.129913243,985.272918,3008656476 +3,8018,862,128,1.59197342,0.129366308,989.438456,3008656476 +3,8019,863,128,1.5615139,0.128038243,999.701316,3008656476 +3,8020,864,128,1.73753977,0.129118241,991.339403,3008656476 +3,8021,865,128,1.63564265,0.144902313,883.353739,3008656476 +3,8022,866,128,1.86323369,0.12987187,985.586794,3008656476 +3,8023,867,128,1.84685588,0.148002996,864.847358,3008656476 +3,8024,868,128,1.96913254,0.130893171,977.8967,3008656476 +3,8025,869,128,1.86358893,0.130581198,980.233004,3008656476 +3,8026,870,128,2.26172948,0.131964189,969.960115,3008656476 +3,8027,871,128,1.86033487,0.130976416,977.275176,3008656476 +3,8028,872,128,1.86481082,0.129629962,987.42604,3008656476 +3,8029,873,128,1.724159,0.136183991,939.904897,3008656476 +3,8030,874,128,2.21341729,0.130267494,982.593555,3008656476 +3,8031,875,128,1.80596721,0.140942085,908.174446,3008656476 +3,8032,876,128,1.76597846,0.132017926,969.5653,3008656476 +3,8033,877,128,1.48403692,0.128905736,992.973656,3008656476 +3,8034,878,128,1.76905429,0.128345929,997.304714,3008656476 +3,8035,879,128,1.94893873,0.128694999,994.599643,3008656476 +3,8036,880,128,2.01121378,0.127993355,1000.05192,3008656476 +3,8037,881,128,2.60921812,0.135066912,947.678437,3008656476 +3,8038,882,128,2.88697982,0.126751895,1009.84684,3008656476 +3,8039,883,128,2.33795834,0.144192307,887.703392,3008656476 +3,8040,884,128,1.63122964,0.126516613,1011.72484,3008656476 +3,8041,885,128,2.25711536,0.12680573,1009.41811,3008656476 +3,8042,886,128,2.03081989,0.126989035,1007.96104,3008656476 +3,8043,887,128,2.15122771,0.126770866,1009.69571,3008656476 +3,8044,888,128,1.80417943,0.127366628,1004.97283,3008656476 +3,8045,889,128,2.25528765,0.14399589,888.91426,3008656476 +3,8046,890,128,1.86835241,0.126606052,1011.01012,3008656476 +3,8047,891,128,1.60522377,0.143066683,894.687689,3008656476 +3,8048,892,128,2.11560917,0.12728993,1005.57837,3008656476 +3,8049,893,128,2.11588788,0.126870746,1008.90082,3008656476 +3,8050,894,128,2.07228398,0.126841024,1009.13723,3008656476 +3,8051,895,128,2.01049852,0.128023677,999.815058,3008656476 +3,8052,896,128,1.48336816,0.127659463,1002.66754,3008656476 +3,8053,897,128,1.74197054,0.141814506,902.587497,3008656476 +3,8054,898,128,1.51004255,0.126886122,1008.77856,3008656476 +3,8055,899,128,1.80249763,0.141880909,902.165069,3008656476 +3,8056,900,128,1.63639045,0.128180712,998.590178,3008656476 +3,8057,901,128,1.7538085,0.12716186,1006.59113,3008656476 +3,8058,902,128,1.68672037,0.127429647,1004.47583,3008656476 +3,8059,903,128,2.01961327,0.126514828,1011.73911,3008656476 +3,8060,904,128,1.62676775,0.126888075,1008.76304,3008656476 +3,8061,905,128,1.7222544,0.139454374,917.862928,3008656476 +3,8062,906,128,2.1853857,0.126542497,1011.51789,3008656476 +3,8063,907,128,2.27395821,0.140229226,912.791175,3008656476 +3,8064,908,128,2.13650703,0.126610017,1010.97846,3008656476 +3,8065,909,128,1.83447492,0.125854529,1017.04723,3008656476 +3,8066,910,128,2.05437493,0.127770198,1001.79856,3008656476 +3,8067,911,128,1.93860054,0.125984121,1016.00106,3008656476 +3,8068,912,128,2.25392485,0.128338641,997.361348,3008656476 +3,8069,913,128,1.75716031,0.139169676,919.740591,3008656476 +3,8070,914,128,2.45069408,0.128156981,998.775088,3008656476 +3,8071,915,128,2.33618951,0.142874007,895.894241,3008656476 +3,8072,916,128,1.77737975,0.129324236,989.760342,3008656476 +3,8073,917,128,1.61117136,0.13008799,983.949402,3008656476 +3,8074,918,128,1.93825674,0.130661193,979.632874,3008656476 +3,8075,919,128,1.62098014,0.130682054,979.476493,3008656476 +3,8076,920,128,1.91118824,0.129177264,990.886446,3008656476 +3,8077,921,128,1.92957199,0.144651118,884.887734,3008656476 +3,8078,922,128,2.08851123,0.131660503,972.19741,3008656476 +3,8079,923,128,2.22859907,0.146744941,872.261757,3008656476 +3,8080,924,128,1.70673347,0.131938296,970.150471,3008656476 +3,8081,925,128,2.16638923,0.131141368,976.045942,3008656476 +3,8082,926,128,1.78204858,0.133207639,960.905853,3008656476 +3,8083,927,128,1.31215382,0.131590859,972.711942,3008656476 +3,8084,928,128,1.62391758,0.131712437,971.814074,3008656476 +3,8085,929,128,1.58717632,0.145971376,876.884246,3008656476 +3,8086,930,128,1.54984581,0.130558093,980.406477,3008656476 +3,8087,931,128,1.87888026,0.145611102,879.053851,3008656476 +3,8088,932,128,2.05744314,0.13162453,972.463112,3008656476 +3,8089,933,128,1.87721574,0.131040041,976.800671,3008656476 +3,8090,934,128,1.74519193,0.131285171,974.976831,3008656476 +3,8091,935,128,1.75714254,0.130886113,977.949433,3008656476 +3,8092,936,128,1.79325378,0.129707296,986.837317,3008656476 +3,8093,937,128,1.62398052,0.133734121,957.122977,3008656476 +3,8094,938,128,2.18776417,0.1273396,1005.18613,3008656476 +3,8095,939,128,1.95973063,0.14576589,878.120389,3008656476 +3,8096,940,128,1.94137049,0.129764837,986.399729,3008656476 +3,8097,941,128,1.65293932,0.129111988,991.387415,3008656476 +3,8098,942,128,1.75214994,0.129372893,989.388094,3008656476 +3,8099,943,128,1.59952986,0.128187847,998.534596,3008656476 +3,8100,944,128,2.33530545,0.126343856,1013.10823,3008656476 +3,8101,945,128,2.12650299,0.138735013,922.622179,3008656476 +3,8102,946,128,2.00482869,0.127543451,1003.57956,3008656476 +3,8103,947,128,2.30053973,0.142982714,895.213109,3008656476 +3,8104,948,128,2.46975374,0.12717767,1006.46599,3008656476 +3,8105,949,128,2.38179374,0.127060232,1007.39624,3008656476 +3,8106,950,128,1.89840889,0.126795241,1009.50161,3008656476 +3,8107,951,128,1.56266153,0.127321551,1005.32863,3008656476 +3,8108,952,128,1.75449085,0.128047451,999.629426,3008656476 +3,8109,953,128,1.94752288,0.141910895,901.97444,3008656476 +3,8110,954,128,2.05916619,0.12810617,999.171234,3008656476 +3,8111,955,128,1.51813567,0.140825553,908.925953,3008656476 +3,8112,956,128,2.13037992,0.129378519,989.34507,3008656476 +3,8113,957,128,1.8523643,0.128827115,993.579651,3008656476 +3,8114,958,128,1.85773778,0.1284724,996.322946,3008656476 +3,8115,959,128,1.92472374,0.129655957,987.228069,3008656476 +3,8116,960,128,1.78682601,0.128498031,996.124213,3008656476 +3,8117,961,128,1.64523494,0.141027745,907.622823,3008656476 +3,8118,962,128,1.97729921,0.128238052,998.143671,3008656476 +3,8119,963,128,1.80313408,0.141307026,905.828985,3008656476 +3,8120,964,128,1.62137616,0.128667597,994.81146,3008656476 +3,8121,965,128,1.52703702,0.127839923,1001.25217,3008656476 +3,8122,966,128,1.91543758,0.128983024,992.378656,3008656476 +3,8123,967,128,2.46744585,0.128811526,993.699896,3008656476 +3,8124,968,128,1.98857951,0.128315072,997.544544,3008656476 +3,8125,969,128,1.63540864,0.140602173,910.369998,3008656476 +3,8126,970,128,1.74590731,0.127715032,1002.23128,3008656476 +3,8127,971,128,1.97216916,0.143424377,892.456378,3008656476 +3,8128,972,128,1.50905895,0.128199365,998.444883,3008656476 +3,8129,973,128,1.62205708,0.127137267,1006.78584,3008656476 +3,8130,974,128,1.76331842,0.128003713,999.970993,3008656476 +3,8131,975,128,1.87307274,0.12671227,1010.16263,3008656476 +3,8132,976,128,2.12456131,0.12886565,993.282539,3008656476 +3,8133,977,128,1.72495723,0.142299992,899.508132,3008656476 +3,8134,978,128,1.89064527,0.128773818,993.990875,3008656476 +3,8135,979,128,2.17193413,0.144397871,886.439662,3008656476 +3,8136,980,128,1.82923722,0.129313459,989.842828,3008656476 +3,8137,981,128,2.09302568,0.128971921,992.464088,3008656476 +3,8138,982,128,1.70580852,0.132417428,966.640131,3008656476 +3,8139,983,128,1.81915462,0.133094521,961.722534,3008656476 +3,8140,984,128,1.62882376,0.130811393,978.508042,3008656476 +3,8141,985,128,1.72263718,0.14409898,888.278321,3008656476 +3,8142,986,128,1.43850756,0.139884515,915.040525,3008656476 +3,8143,987,128,1.47824216,0.147631989,867.020765,3008656476 +3,8144,988,128,1.65264928,0.130302361,982.330627,3008656476 +3,8145,989,128,1.89465809,0.13341608,959.404594,3008656476 +3,8146,990,128,1.75429618,0.131441609,973.816442,3008656476 +3,8147,991,128,1.40087497,0.131400838,974.118597,3008656476 +3,8148,992,128,1.80866957,0.145202072,881.53012,3008656476 +3,8149,993,128,1.39051163,0.130973603,977.296166,3008656476 +3,8150,994,128,1.35646093,0.143828701,889.947549,3008656476 +3,8151,995,128,1.32313168,0.132285835,967.601709,3008656476 +3,8152,996,128,1.7192471,0.130627987,979.881899,3008656476 +3,8153,997,128,1.8797965,0.128812688,993.690932,3008656476 +3,8154,998,128,1.77209234,0.12865343,994.921006,3008656476 +3,8155,999,128,1.81176293,0.127830635,1001.32492,3008656476 +3,8156,1000,128,1.84168768,0.140652118,910.04673,3008656476 +3,8157,1001,128,1.71718979,0.127179253,1006.45347,3008656476 +3,8158,1002,128,1.46873593,0.140793414,909.133434,3008656476 +3,8159,1003,128,1.56512368,0.12730292,1005.47576,3008656476 +3,8160,1004,128,1.8902725,0.127250211,1005.89224,3008656476 +3,8161,1005,128,1.7423898,0.127398263,1004.72327,3008656476 +3,8162,1006,128,1.95870245,0.127646605,1002.76854,3008656476 +3,8163,1007,128,1.73906028,0.126961632,1008.1786,3008656476 +3,8164,1008,128,1.58474398,0.138700199,922.853759,3008656476 +3,8165,1009,128,1.54434812,0.128405878,996.839101,3008656476 +3,8166,1010,128,1.60219109,0.133945682,955.611245,3008656476 +3,8167,1011,128,1.49023676,0.12563507,1018.8238,3008656476 +3,8168,1012,128,1.5773145,0.127559445,1003.45372,3008656476 +3,8169,1013,128,1.71155965,0.126152214,1014.64727,3008656476 +3,8170,1014,128,1.64443195,0.127699391,1002.35404,3008656476 +3,8171,1015,128,1.17615521,0.12819821,998.453879,3008656476 +3,8172,1016,128,1.43057275,0.127038663,1007.56728,3008656476 +3,8173,1017,128,1.55123544,0.129930591,985.141367,3008656476 +3,8174,1018,128,1.7148726,0.125846935,1017.1086,3008656476 +3,8175,1019,128,2.24482036,0.141625856,903.789771,3008656476 +3,8176,1020,128,1.9249903,0.127206022,1006.24167,3008656476 +3,8177,1021,128,1.53406763,0.127293706,1005.54854,3008656476 +3,8178,1022,128,1.76749682,0.127875574,1000.97302,3008656476 +3,8179,1023,128,2.10004139,0.127369045,1004.95375,3008656476 +3,8180,1024,128,2.06030846,0.129139837,991.173622,3008656476 +3,8181,1025,128,2.06425738,0.143737615,890.511506,3008656476 +3,8182,1026,128,1.65223312,0.129481532,988.557967,3008656476 +3,8183,1027,128,1.63493538,0.146862919,871.561051,3008656476 +3,8184,1028,128,1.46383643,0.131047157,976.74763,3008656476 +3,8185,1029,128,1.98372781,0.130711521,979.255685,3008656476 +3,8186,1030,128,1.51168156,0.130075482,984.044018,3008656476 +3,8187,1031,128,2.03641558,0.130894156,977.889341,3008656476 +3,8188,1032,128,1.7101928,0.13158699,972.740542,3008656476 +3,8189,1033,128,1.67699838,0.140926399,908.275532,3008656476 +3,8190,1034,128,2.2129333,0.130858197,978.158059,3008656476 +3,8191,1035,128,2.07275796,0.138103674,926.839933,3008656476 +3,8192,1036,128,1.94928026,0.131332604,974.624702,3008656476 +3,8193,1037,128,1.87785041,0.131513138,973.286791,3008656476 +3,8194,1038,128,1.56507707,0.130984138,977.217562,3008656476 +3,8195,1039,128,1.77502108,0.13060256,980.072672,3008656476 +3,8196,1040,128,2.0025723,0.140203662,912.957609,3008656476 +3,8197,1041,128,2.0503056,0.11977213,1068.69603,3008656476 +3,8198,1042,128,1.91152918,0.127265877,1005.76842,3008656476 +3,8199,1043,128,1.42234564,0.136649985,936.6997,3008656476 +3,8200,1044,128,1.56312132,0.127158042,1006.62135,3008656476 +3,8201,1045,128,1.698282,0.128171951,998.658435,3008656476 +3,8202,1046,128,1.58797574,0.126977642,1008.05148,3008656476 +3,8203,1047,128,1.41348112,0.126789287,1009.54902,3008656476 +3,8204,1048,128,2.09472108,0.127651592,1002.72937,3008656476 +3,8205,1049,128,1.77234328,0.141920813,901.911406,3008656476 +3,8206,1050,128,1.91430902,0.126723669,1010.07176,3008656476 +3,8207,1051,128,1.73621893,0.139568146,917.114712,3008656476 +3,8208,1052,128,1.55764067,0.126779598,1009.62617,3008656476 +3,8209,1053,128,1.76724875,0.1269604,1008.18838,3008656476 +3,8210,1054,128,1.84527493,0.127868512,1001.02831,3008656476 +3,8211,1055,128,1.35651875,0.12801853,999.855255,3008656476 +3,8212,1056,128,1.96914387,0.12689295,1008.72428,3008656476 +3,8213,1057,128,1.95649159,0.142064457,900.999467,3008656476 +3,8214,1058,128,1.94442499,0.127895897,1000.81397,3008656476 +3,8215,1059,128,1.46231675,0.140180867,913.106066,3008656476 +3,8216,1060,128,2.05252647,0.126744176,1009.90834,3008656476 +3,8217,1061,128,2.21429157,0.127576414,1003.32025,3008656476 +3,8218,1062,128,1.97825611,0.127519467,1003.76831,3008656476 +3,8219,1063,128,1.85032463,0.12726518,1005.77393,3008656476 +3,8220,1064,128,1.68432415,0.127199533,1006.293,3008656476 +3,8221,1065,128,1.87801743,0.140234128,912.759268,3008656476 +3,8222,1066,128,1.721349,0.127526389,1003.71383,3008656476 +3,8223,1067,128,1.74860191,0.141001006,907.794942,3008656476 +3,8224,1068,128,1.79998887,0.127322321,1005.32255,3008656476 +3,8225,1069,128,2.31372023,0.12660448,1011.02267,3008656476 +3,8226,1070,128,1.84254038,0.12648596,1011.97002,3008656476 +3,8227,1071,128,1.95494521,0.126507762,1011.79562,3008656476 +3,8228,1072,128,1.73919976,0.126270458,1013.69712,3008656476 +3,8229,1073,128,2.24743485,0.140156833,913.262645,3008656476 +3,8230,1074,128,2.15228057,0.127359216,1005.03131,3008656476 +3,8231,1075,128,1.8116281,0.142236382,899.910404,3008656476 +3,8232,1076,128,2.26614404,0.127569721,1003.37289,3008656476 +3,8233,1077,128,1.97688687,0.128181272,998.585815,3008656476 +3,8234,1078,128,2.10866451,0.128414589,996.771481,3008656476 +3,8235,1079,128,2.44465494,0.12899129,992.315063,3008656476 +3,8236,1080,128,1.99352193,0.130117028,983.729816,3008656476 +3,8237,1081,128,1.01810408,0.143562046,891.600556,3008656476 +3,8238,1082,128,1.63838589,0.131035811,976.832204,3008656476 +3,8239,1083,128,2.13455176,0.146112996,876.034326,3008656476 +3,8240,1084,128,1.9207952,0.130711713,979.254246,3008656476 +3,8241,1085,128,2.25773644,0.130717873,979.2081,3008656476 +3,8242,1086,128,2.01799536,0.131511113,973.301777,3008656476 +3,8243,1087,128,1.78925633,0.131763054,971.44075,3008656476 +3,8244,1088,128,1.58383381,0.132535218,965.781035,3008656476 +3,8245,1089,128,1.7407831,0.153493386,833.912153,3008656476 +3,8246,1090,128,1.84910011,0.132496985,966.059718,3008656476 +3,8247,1091,128,2.09858894,0.144855883,883.636877,3008656476 +3,8248,1092,128,1.49921882,0.130905858,977.801925,3008656476 +3,8249,1093,128,2.22563648,0.130426695,981.394185,3008656476 +3,8250,1094,128,1.94741023,0.131180561,975.754327,3008656476 +3,8251,1095,128,1.71097481,0.130196668,983.128078,3008656476 +3,8252,1096,128,1.50177443,0.13006169,984.148368,3008656476 +3,8253,1097,128,1.69615507,0.141855154,902.328864,3008656476 +3,8254,1098,128,1.98816049,0.131458044,973.694695,3008656476 +3,8255,1099,128,2.34166694,0.140693805,909.777086,3008656476 +3,8256,1100,128,1.90626359,0.130233491,982.850103,3008656476 +3,8257,1101,128,2.03374124,0.131965003,969.954132,3008656476 +3,8258,1102,128,1.91398549,0.129368119,989.424605,3008656476 +3,8259,1103,128,2.22000384,0.130191342,983.168297,3008656476 +3,8260,1104,128,1.66880846,0.129619949,987.502317,3008656476 +3,8261,1105,128,2.20798182,0.132847117,963.51357,3008656476 +3,8262,1106,128,1.83526564,0.12846711,996.363972,3008656476 +3,8263,1107,128,1.92979622,0.139596093,916.931106,3008656476 +3,8264,1108,128,1.72351086,0.12768298,1002.48287,3008656476 +3,8265,1109,128,1.57360756,0.128557097,995.66654,3008656476 +3,8266,1110,128,1.74253154,0.129520526,988.260347,3008656476 +3,8267,1111,128,1.81881344,0.128210582,998.35753,3008656476 +3,8268,1112,128,1.34092677,0.127500031,1003.92132,3008656476 +3,8269,1113,128,1.54207695,0.142804773,896.328584,3008656476 +3,8270,1114,128,2.21073866,0.129449547,988.802224,3008656476 +3,8271,1115,128,1.40834332,0.145809132,877.859968,3008656476 +3,8272,1116,128,1.68615568,0.128966511,992.505721,3008656476 +3,8273,1117,128,1.52124202,0.132395291,966.801757,3008656476 +3,8274,1118,128,1.78235388,0.129708592,986.827457,3008656476 +3,8275,1119,128,1.53209209,0.12788639,1000.88837,3008656476 +3,8276,1120,128,1.4001677,0.128444949,996.535878,3008656476 +3,8277,1121,128,1.65578246,0.136073502,940.668081,3008656476 +3,8278,1122,128,1.46854198,0.126315286,1013.33737,3008656476 +3,8279,1123,128,1.27579534,0.14042342,911.52886,3008656476 +3,8280,1124,128,1.21482229,0.126768235,1009.71667,3008656476 +3,8281,1125,128,1.68918848,0.127099765,1007.0829,3008656476 +3,8282,1126,128,1.39874148,0.126719379,1010.10596,3008656476 +3,8283,1127,128,2.3199892,0.126681433,1010.40853,3008656476 +3,8284,1128,128,1.84859431,0.127343615,1005.15444,3008656476 +3,8285,1129,128,1.3399359,0.140092319,913.683212,3008656476 +3,8286,1130,128,1.94073594,0.128129242,998.991315,3008656476 +3,8287,1131,128,1.77721345,0.141543423,904.316126,3008656476 +3,8288,1132,128,1.62412083,0.126254453,1013.82563,3008656476 +3,8289,1133,128,1.71284974,0.127065849,1007.35171,3008656476 +3,8290,1134,128,2.11781788,0.12850247,996.089803,3008656476 +3,8291,1135,128,2.09367561,0.12682878,1009.23465,3008656476 +3,8292,1136,128,1.96163714,0.127604381,1003.10036,3008656476 +3,8293,1137,128,1.82032478,0.142163247,900.373357,3008656476 +3,8294,1138,128,1.90395498,0.127726033,1002.14496,3008656476 +3,8295,1139,128,1.59099185,0.14281877,896.240739,3008656476 +3,8296,1140,128,1.69554245,0.126854146,1009.03285,3008656476 +3,8297,1141,128,1.8404026,0.126340498,1013.13515,3008656476 +3,8298,1142,128,1.76458883,0.127338414,1005.19549,3008656476 +3,8299,1143,128,1.81298602,0.127604918,1003.09613,3008656476 +3,8300,1144,128,1.58965087,0.127441465,1004.38268,3008656476 +3,8301,1145,128,1.74890959,0.141588767,904.026518,3008656476 +3,8302,1146,128,1.99230051,0.126975228,1008.07065,3008656476 +3,8303,1147,128,2.14501882,0.140239748,912.72269,3008656476 +3,8304,1148,128,1.93896055,0.12707739,1007.26022,3008656476 +3,8305,1149,128,1.98194289,0.126735589,1009.97676,3008656476 +3,8306,1150,128,1.90742373,0.12639353,1012.71007,3008656476 +3,8307,1151,128,1.83499062,0.126889346,1008.75293,3008656476 +3,8308,1152,128,2.06674981,0.126100377,1015.06437,3008656476 +3,8309,1153,128,2.1730361,0.141175403,906.673523,3008656476 +3,8310,1154,128,2.04808664,0.126632088,1010.80225,3008656476 +3,8311,1155,128,1.93656743,0.139868009,915.14851,3008656476 +3,8312,1156,128,1.96838021,0.127341752,1005.16915,3008656476 +3,8313,1157,128,2.21823192,0.12781283,1001.46441,3008656476 +3,8314,1158,128,1.66416931,0.129211342,990.625111,3008656476 +3,8315,1159,128,2.12826347,0.128910927,992.933671,3008656476 +3,8316,1160,128,2.13203168,0.130047276,984.257448,3008656476 +3,8317,1161,128,2.28544879,0.143076114,894.628715,3008656476 +3,8318,1162,128,1.67192841,0.130818059,978.458181,3008656476 +3,8319,1163,128,1.67718315,0.143601362,891.356448,3008656476 +3,8320,1164,128,1.77102542,0.131126641,976.155562,3008656476 +3,8321,1165,128,2.39233255,0.131021618,976.938019,3008656476 +3,8322,1166,128,1.87381566,0.129892711,985.428659,3008656476 +3,8323,1167,128,2.19481683,0.130499242,980.848609,3008656476 +3,8324,1168,128,1.80013883,0.131733097,971.661662,3008656476 +3,8325,1169,128,2.11760044,0.144795872,884.003102,3008656476 +3,8326,1170,128,2.16808105,0.13237658,966.938412,3008656476 +3,8327,1171,128,2.12240314,0.14860475,861.34528,3008656476 +3,8328,1172,128,2.08203006,0.132964564,962.662503,3008656476 +3,8329,1173,128,1.97980154,0.138583709,923.629487,3008656476 +3,8330,1174,128,2.34554768,0.132905185,963.092599,3008656476 +3,8331,1175,128,2.0243094,0.131001545,977.087713,3008656476 +3,8332,1176,128,2.09399915,0.133193697,961.006436,3008656476 +3,8333,1177,128,1.89311051,0.135987353,941.264001,3008656476 +3,8334,1178,128,1.83420241,0.130490425,980.914883,3008656476 +3,8335,1179,128,1.89986098,0.14023859,912.730226,3008656476 +3,8336,1180,128,2.3660543,0.13283991,963.565844,3008656476 +3,8337,1181,128,1.92717218,0.133372849,959.715571,3008656476 +3,8338,1182,128,2.21057272,0.130598909,980.100071,3008656476 +3,8339,1183,128,1.39907277,0.132005142,969.659197,3008656476 +3,8340,1184,128,1.48438251,0.143442047,892.34644,3008656476 +3,8341,1185,128,2.36190438,0.121613925,1052.51105,3008656476 +3,8342,1186,128,2.29383492,0.127839429,1001.25604,3008656476 +3,8343,1187,128,2.17504072,0.132474427,966.224221,3008656476 +3,8344,1188,128,2.18005562,0.127033578,1007.60761,3008656476 +3,8345,1189,128,2.1233027,0.127869832,1001.01797,3008656476 +3,8346,1190,128,1.80100441,0.127088755,1007.17015,3008656476 +3,8347,1191,128,1.51384139,0.126945176,1008.30929,3008656476 +3,8348,1192,128,1.80622077,0.12750653,1003.87015,3008656476 +3,8349,1193,128,1.86261666,0.140968513,908.004187,3008656476 +3,8350,1194,128,1.26622283,0.127858704,1001.10509,3008656476 +3,8351,1195,128,1.33098471,0.141059744,907.416931,3008656476 +3,8352,1196,128,1.34385431,0.126567854,1011.31524,3008656476 +3,8353,1197,128,1.93459475,0.126993896,1007.92246,3008656476 +3,8354,1198,128,1.45911336,0.127795696,1001.59868,3008656476 +3,8355,1199,128,1.99059367,0.127879769,1000.94019,3008656476 +3,8356,1200,128,2.06568813,0.127159817,1006.6073,3008656476 +3,8357,1201,128,2.55734944,0.1431949,893.886584,3008656476 +3,8358,1202,128,1.91440678,0.127586183,1003.24343,3008656476 +3,8359,1203,128,1.77465844,0.140769042,909.290837,3008656476 +3,8360,1204,128,1.7890079,0.127627898,1002.91552,3008656476 +3,8361,1205,128,1.9646188,0.127243328,1005.94665,3008656476 +3,8362,1206,128,1.86553288,0.127789047,1001.65079,3008656476 +3,8363,1207,128,1.9502852,0.127509569,1003.84623,3008656476 +3,8364,1208,128,1.80205429,0.12709955,1007.0846,3008656476 +3,8365,1209,128,1.6566416,0.14283667,896.128424,3008656476 +3,8366,1210,128,1.61683619,0.127738638,1002.04607,3008656476 +3,8367,1211,128,2.06088042,0.142596421,897.638237,3008656476 +3,8368,1212,128,1.70318055,0.127935548,1000.50378,3008656476 +3,8369,1213,128,1.68595386,0.126606052,1011.01012,3008656476 +3,8370,1214,128,2.16495347,0.126783402,1009.59588,3008656476 +3,8371,1215,128,2.06230068,0.1259917,1015.93994,3008656476 +3,8372,1216,128,1.77224576,0.126594761,1011.10029,3008656476 +3,8373,1217,128,2.0696826,0.138974272,921.033787,3008656476 +3,8374,1218,128,1.78441978,0.127203913,1006.25835,3008656476 +3,8375,1219,128,2.12983346,0.143589068,891.432766,3008656476 +3,8376,1220,128,1.43850207,0.127729394,1002.11859,3008656476 +3,8377,1221,128,1.74701297,0.12759299,1003.18991,3008656476 +3,8378,1222,128,1.73605335,0.128975115,992.439511,3008656476 +3,8379,1223,128,1.79989111,0.12916718,990.963804,3008656476 +3,8380,1224,128,2.22225428,0.13004988,984.23774,3008656476 +3,8381,1225,128,1.99356651,0.143317371,893.122719,3008656476 +3,8382,1226,128,1.89477956,0.13257607,965.483439,3008656476 +3,8383,1227,128,2.09027314,0.147315028,868.886235,3008656476 +3,8384,1228,128,2.14946938,0.130598424,980.103711,3008656476 +3,8385,1229,128,1.83177614,0.130774394,978.784884,3008656476 +3,8386,1230,128,1.75425065,0.131874679,970.618476,3008656476 +3,8387,1231,128,1.7978816,0.132248993,967.871264,3008656476 +3,8388,1232,128,1.98235154,0.130751081,978.959401,3008656476 +3,8389,1233,128,1.82008028,0.144578937,885.329514,3008656476 +3,8390,1234,128,1.90679431,0.131133977,976.100954,3008656476 +3,8391,1235,128,1.84673727,0.144662773,884.816441,3008656476 +3,8392,1236,128,1.97201014,0.133747447,957.027613,3008656476 +3,8393,1237,128,1.8236959,0.131267377,975.108995,3008656476 +3,8394,1238,128,1.78674102,0.131563961,972.910811,3008656476 +3,8395,1239,128,1.92181122,0.130717241,979.212834,3008656476 +3,8396,1240,128,1.92435682,0.129649242,987.279201,3008656476 +3,8397,1241,128,1.18724322,0.132910347,963.055194,3008656476 +3,8398,1242,128,1.99462521,0.128912948,992.918105,3008656476 +3,8399,1243,128,1.13244021,0.143324863,893.076032,3008656476 +3,8400,1244,128,1.935287,0.129852056,985.737184,3008656476 +3,8401,1245,128,1.64264619,0.129784564,986.249798,3008656476 +3,8402,1246,128,1.47418785,0.128850074,993.402611,3008656476 +3,8403,1247,128,1.26064301,0.128154572,998.793863,3008656476 +3,8404,1248,128,0.896311998,0.128812315,993.693809,3008656476 +3,8405,1249,128,1.09362268,0.135955317,941.485797,3008656476 +3,8406,1250,128,1.50822914,0.128306234,997.613257,3008656476 +3,8407,1251,128,1.15512156,0.141364102,905.463255,3008656476 +3,8408,1252,128,1.48171771,0.126402991,1012.63427,3008656476 +3,8409,1253,128,1.4220686,0.127783528,1001.69405,3008656476 +3,8410,1254,128,1.29796445,0.126518644,1011.7086,3008656476 +3,8411,1255,128,1.0270983,0.126274939,1013.66115,3008656476 +3,8412,1256,128,1.34888196,0.127514808,1003.80499,3008656476 +3,8413,1257,128,1.53531086,0.14270856,896.932882,3008656476 +3,8414,1258,128,0.974260867,0.128157627,998.770054,3008656476 +3,8415,1259,128,1.95632625,0.140767096,909.303407,3008656476 +3,8416,1260,128,2.15517497,0.126500946,1011.85014,3008656476 +3,8417,1261,128,1.67972422,0.126568368,1011.31114,3008656476 +3,8418,1262,128,2.16914797,0.127207699,1006.2284,3008656476 +3,8419,1263,128,2.09998846,0.127283079,1005.63249,3008656476 +3,8420,1264,128,1.57049668,0.12838349,997.012934,3008656476 +3,8421,1265,128,1.71892214,0.142411226,898.805548,3008656476 +3,8422,1266,128,1.67535686,0.128124775,999.026145,3008656476 +3,8423,1267,128,1.94245136,0.144346577,886.754661,3008656476 +3,8424,1268,128,1.79868209,0.128304824,997.62422,3008656476 +3,8425,1269,128,1.72159994,0.127945907,1000.42278,3008656476 +3,8426,1270,128,1.25420868,0.126779437,1009.62745,3008656476 +3,8427,1271,128,1.6199466,0.126959084,1008.19883,3008656476 +3,8428,1272,128,1.55536437,0.203940188,627.635001,3008656476 +3,8429,1273,128,2.26085353,0.127060363,1007.3952,3008656476 +3,8430,1274,128,1.43587363,0.141280103,906.001604,3008656476 +3,8431,1275,128,1.85709417,0.126746439,1009.89031,3008656476 +3,8432,1276,128,1.98869967,0.128439253,996.580072,3008656476 +3,8433,1277,128,1.50381744,0.128081242,999.365699,3008656476 +3,8434,1278,128,1.6655221,0.127210238,1006.20832,3008656476 +3,8435,1279,128,2.03128266,0.126693577,1010.31168,3008656476 +3,8436,1280,128,1.90822256,0.140181537,913.101702,3008656476 +3,8437,1281,128,1.97157419,0.126879799,1008.82884,3008656476 +3,8438,1282,128,1.97651982,0.136546072,937.412539,3008656476 +3,8439,1283,128,1.32858074,0.124650127,1026.8742,3008656476 +3,8440,1284,128,1.9079107,0.126603197,1011.03292,3008656476 +3,8441,1285,128,2.10582685,0.128273953,997.864313,3008656476 +3,8442,1286,128,1.76275921,0.127942139,1000.45224,3008656476 +3,8443,1287,128,1.75864589,0.127789741,1001.64535,3008656476 +3,8444,1288,128,1.55235898,0.143412638,892.52943,3008656476 +3,8445,1289,128,1.39743781,0.121856239,1050.41811,3008656476 +3,8446,1290,128,1.65836692,0.132425498,966.581224,3008656476 +3,8447,1291,128,1.90334642,0.138382113,924.975036,3008656476 +3,8448,1292,128,1.87502348,0.133575626,958.258657,3008656476 +3,8449,1293,128,1.43778503,0.133205826,960.918932,3008656476 +3,8450,1294,128,1.49809515,0.132939001,962.847615,3008656476 +3,8451,1295,128,1.41030777,0.13177916,971.322021,3008656476 +3,8452,1296,128,1.55562294,0.144839188,883.73873,3008656476 +3,8453,1297,128,1.78953779,0.130848029,978.23407,3008656476 +3,8454,1298,128,1.81891692,0.143881845,889.61884,3008656476 +3,8455,1299,128,1.98984408,0.130901782,977.832372,3008656476 +3,8456,1300,128,1.77421427,0.131764702,971.4286,3008656476 +3,8457,1301,128,1.83411205,0.129743498,986.561962,3008656476 +3,8458,1302,128,1.6987108,0.129465758,988.678412,3008656476 +3,8459,1303,128,1.33566201,0.129916879,985.245343,3008656476 +3,8460,1304,128,1.67809057,0.143441871,892.347535,3008656476 +3,8461,1305,128,1.98565221,0.131942375,970.120479,3008656476 +3,8462,1306,128,1.80294204,0.141003644,907.777958,3008656476 +3,8463,1307,128,1.93608022,0.128497881,996.125376,3008656476 +3,8464,1308,128,1.43339717,0.128980343,992.399284,3008656476 +3,8465,1309,128,1.96054173,0.127512976,1003.81941,3008656476 +3,8466,1310,128,2.16711092,0.128886084,993.125061,3008656476 +3,8467,1311,128,1.8550148,0.127904908,1000.74346,3008656476 +3,8468,1312,128,1.58522439,0.142222833,899.996135,3008656476 +3,8469,1313,128,1.75997329,0.127728752,1002.12363,3008656476 +3,8470,1314,128,1.93425,0.14098541,907.895363,3008656476 +3,8471,1315,128,1.73484039,0.12748051,1004.07505,3008656476 +3,8472,1316,128,1.90968978,0.126774805,1009.66434,3008656476 +3,8473,1317,128,1.5921948,0.12714289,1006.74131,3008656476 +3,8474,1318,128,1.17952967,0.126759995,1009.78231,3008656476 +3,8475,1319,128,1.75493217,0.126535746,1011.57186,3008656476 +3,8476,1320,128,1.94448268,0.140147713,913.322075,3008656476 +3,8477,1321,128,1.944996,0.128157031,998.774699,3008656476 +3,8478,1322,128,2.06008363,0.141756185,902.958837,3008656476 +3,8479,1323,128,1.40454376,0.128739025,994.259511,3008656476 +3,8480,1324,128,1.3148303,0.127399187,1004.71599,3008656476 +3,8481,1325,128,1.72291636,0.126761063,1009.7738,3008656476 +3,8482,1326,128,2.09107924,0.128241617,998.115924,3008656476 +3,8483,1327,128,2.11185002,0.127237923,1005.98939,3008656476 +3,8484,1328,128,2.17079306,0.13967736,916.397618,3008656476 +3,8485,1329,128,1.57354367,0.127445779,1004.34868,3008656476 +3,8486,1330,128,1.55390775,0.140960743,908.054237,3008656476 +3,8487,1331,128,1.34651291,0.119886396,1067.67744,3008656476 +3,8488,1332,128,1.79301608,0.126761519,1009.77017,3008656476 +3,8489,1333,128,1.6088841,0.128008038,999.937207,3008656476 +3,8490,1334,128,1.8804698,0.126844698,1009.108,3008656476 +3,8491,1335,128,1.57115078,0.127677826,1002.52334,3008656476 +3,8492,1336,128,1.67572987,0.126791956,1009.52777,3008656476 +3,8493,1337,128,1.40391457,0.131826207,970.975369,3008656476 +3,8494,1338,128,1.5078932,0.126983383,1008.00591,3008656476 +3,8495,1339,128,1.6764828,0.141785602,902.771496,3008656476 +3,8496,1340,128,1.36003876,0.128034587,999.729862,3008656476 +3,8497,1341,128,1.69114876,0.1295268,988.212478,3008656476 +3,8498,1342,128,1.83784354,0.129192954,990.766106,3008656476 +3,8499,1343,128,1.44854224,0.12963232,987.408078,3008656476 +3,8500,1344,128,1.73537707,0.130628121,979.880894,3008656476 +3,8501,1345,128,1.7795465,0.141484922,904.690042,3008656476 +3,8502,1346,128,1.85246515,0.13230795,967.439976,3008656476 +3,8503,1347,128,1.5049969,0.145684733,878.609566,3008656476 +3,8504,1348,128,1.39413941,0.13327435,960.424868,3008656476 +3,8505,1349,128,1.97555912,0.132893121,963.180028,3008656476 +3,8506,1350,128,1.7521323,0.132455234,966.364228,3008656476 +3,8507,1351,128,1.76555145,0.130981309,977.238668,3008656476 +3,8508,1352,128,1.34428203,0.146530859,873.536133,3008656476 +3,8509,1353,128,1.49417865,0.131765496,971.422746,3008656476 +3,8510,1354,128,1.76708055,0.143985937,888.975706,3008656476 +3,8511,1355,128,1.51636052,0.131330616,974.639455,3008656476 +3,8512,1356,128,1.56540465,0.132147675,968.613334,3008656476 +3,8513,1357,128,1.99027181,0.130710966,979.259843,3008656476 +3,8514,1358,128,1.55472374,0.118026551,1084.50174,3008656476 +3,8515,1359,128,1.48701179,0.131747741,971.55366,3008656476 +3,8516,1360,128,1.27089405,0.143922377,889.368302,3008656476 +3,8517,1361,128,1.99089003,0.129977247,984.787745,3008656476 +3,8518,1362,128,1.79826641,0.144729572,884.40806,3008656476 +3,8519,1363,128,1.89790475,0.129570286,987.880817,3008656476 +3,8520,1364,128,1.47485185,0.130078775,984.019107,3008656476 +3,8521,1365,128,1.70417345,0.132254029,967.834409,3008656476 +3,8522,1366,128,1.8133055,0.129082117,991.616833,3008656476 +3,8523,1367,128,2.06038618,0.128595059,995.372614,3008656476 +3,8524,1368,128,1.82312298,0.142217431,900.03032,3008656476 +3,8525,1369,128,1.60599422,0.127453097,1004.29101,3008656476 +3,8526,1370,128,1.51227748,0.142944926,895.449762,3008656476 +3,8527,1371,128,1.8118732,0.129077535,991.652033,3008656476 +3,8528,1372,128,1.47355497,0.128143588,998.879476,3008656476 +3,8529,1373,128,1.82236254,0.127868859,1001.02559,3008656476 +3,8530,1374,128,2.14521003,0.12850642,996.059185,3008656476 +3,8531,1375,128,2.28085709,0.12574921,1017.89904,3008656476 +3,8532,1376,128,2.30382967,0.140351675,911.994816,3008656476 +3,8533,1377,128,1.74728537,0.126939185,1008.35688,3008656476 +3,8534,1378,128,1.83322096,0.141322818,905.727764,3008656476 +3,8535,1379,128,1.66401386,0.1268754,1008.86381,3008656476 +3,8536,1380,128,2.04316854,0.127307714,1005.4379,3008656476 +3,8537,1381,128,1.61066318,0.128020418,999.84051,3008656476 +3,8538,1382,128,1.7002176,0.127492477,1003.98081,3008656476 +3,8539,1383,128,1.67146027,0.126488644,1011.94855,3008656476 +3,8540,1384,128,1.46954644,0.141532562,904.385522,3008656476 +3,8541,1385,128,1.94674122,0.126953654,1008.24195,3008656476 +3,8542,1386,128,1.50850725,0.140227991,912.799214,3008656476 +3,8543,1387,128,1.59706712,0.128133204,998.960426,3008656476 +3,8544,1388,128,1.95300615,0.127714117,1002.23846,3008656476 +3,8545,1389,128,1.70962811,0.12751198,1003.82725,3008656476 +3,8546,1390,128,1.41880441,0.127258587,1005.82604,3008656476 +3,8547,1391,128,1.80211198,0.126549748,1011.45994,3008656476 +3,8548,1392,128,1.72459483,0.145316553,880.835647,3008656476 +3,8549,1393,128,1.71616399,0.127189517,1006.37225,3008656476 +3,8550,1394,128,1.95850158,0.14074856,909.423159,3008656476 +3,8551,1395,128,1.71022165,0.124902243,1024.80145,3008656476 +3,8552,1396,128,1.69289136,0.125919804,1016.52001,3008656476 +3,8553,1397,128,1.81330419,0.12673115,1010.01214,3008656476 +3,8554,1398,128,1.76059461,0.126331471,1013.20755,3008656476 +3,8555,1399,128,1.84422266,0.126930379,1008.42683,3008656476 +3,8556,1400,128,2.0591476,0.139380377,918.350221,3008656476 +3,8557,1401,128,2.54312754,0.126908919,1008.59735,3008656476 +3,8558,1402,128,1.6568203,0.138506505,924.144321,3008656476 +3,8559,1403,128,1.92396128,0.124760953,1025.96203,3008656476 +3,8560,1404,128,1.56933606,0.128089161,999.303915,3008656476 +3,8561,1405,128,1.95700324,0.128686022,994.669025,3008656476 +3,8562,1406,128,2.2245605,0.129398849,989.189633,3008656476 +3,8563,1407,128,2.22395658,0.129701436,986.881903,3008656476 +3,8564,1408,128,1.81944895,0.143333423,893.022697,3008656476 +3,8565,1409,128,1.97946274,0.123777685,1034.11209,3008656476 +3,8566,1410,128,2.00357223,0.131096765,976.378021,3008656476 +3,8567,1411,128,2.50984859,0.134510873,951.595935,3008656476 +3,8568,1412,128,2.0380652,0.132283547,967.618445,3008656476 +3,8569,1413,128,2.28524733,0.133207416,960.907462,3008656476 +3,8570,1414,128,2.39966345,0.132772534,964.05481,3008656476 +3,8571,1415,128,2.46778941,0.143841413,889.8689,3008656476 +3,8572,1416,128,2.01293516,0.14580689,877.873467,3008656476 +3,8573,1417,128,2.02402568,0.138138689,926.605001,3008656476 +3,8574,1418,128,2.25219417,0.14699137,870.799422,3008656476 +3,8575,1419,128,2.44094181,0.130793808,978.6396,3008656476 +3,8576,1420,128,2.42928457,0.132570186,965.526291,3008656476 +3,8577,1421,128,2.23386741,0.132406544,966.719591,3008656476 +3,8578,1422,128,2.63577437,0.131385883,974.229476,3008656476 +3,8579,1423,128,2.1000514,0.131313532,974.766256,3008656476 +3,8580,1424,128,2.41864967,0.143947697,889.211864,3008656476 +3,8581,1425,128,2.74622965,0.131051221,976.71734,3008656476 +3,8582,1426,128,1.92674661,0.144890836,883.423711,3008656476 +3,8583,1427,128,2.23477745,0.130746987,978.990055,3008656476 +3,8584,1428,128,2.3444562,0.130970767,977.317328,3008656476 +3,8585,1429,128,2.81472063,0.130276635,982.52461,3008656476 +3,8586,1430,128,2.46055365,0.129903927,985.343576,3008656476 +3,8587,1431,128,2.38628483,0.129828987,985.912337,3008656476 +3,8588,1432,128,2.3588779,0.143794841,890.157109,3008656476 +3,8589,1433,128,1.95570719,0.123195141,1039.00202,3008656476 +3,8590,1434,128,2.06338167,0.143117417,894.370529,3008656476 +3,8591,1435,128,2.43701553,0.12851622,995.983231,3008656476 +3,8592,1436,128,1.69135571,0.132350999,967.125303,3008656476 +3,8593,1437,128,2.20261836,0.128240347,998.125808,3008656476 +3,8594,1438,128,2.24521136,0.128645673,994.980997,3008656476 +3,8595,1439,128,2.19569111,0.132125558,968.775473,3008656476 +3,8596,1440,128,2.00590324,0.143648915,891.061377,3008656476 +3,8597,1441,128,2.30815887,0.129208508,990.646839,3008656476 +3,8598,1442,128,2.17991567,0.139883373,915.047995,3008656476 +3,8599,1443,128,1.74442661,0.126347723,1013.07722,3008656476 +3,8600,1444,128,2.54727054,0.127061705,1007.38456,3008656476 +3,8601,1445,128,2.11368847,0.126937604,1008.36943,3008656476 +3,8602,1446,128,2.78625345,0.126422052,1012.48159,3008656476 +3,8603,1447,128,2.35176349,0.127000824,1007.86748,3008656476 +3,8604,1448,128,1.98186922,0.143793687,890.164253,3008656476 +3,8605,1449,128,2.45480084,0.127187376,1006.38919,3008656476 +3,8606,1450,128,1.96533942,0.141666446,903.530819,3008656476 +3,8607,1451,128,1.91255283,0.126633355,1010.79214,3008656476 +3,8608,1452,128,2.08871174,0.126765278,1009.74022,3008656476 +3,8609,1453,128,2.09998584,0.127001215,1007.86437,3008656476 +3,8610,1454,128,2.02842283,0.127324482,1005.30548,3008656476 +3,8611,1455,128,1.52892733,0.127080789,1007.23328,3008656476 +3,8612,1456,128,2.14681935,0.139708163,916.19557,3008656476 +3,8613,1457,128,2.12960553,0.127807409,1001.50688,3008656476 +3,8614,1458,128,2.61750436,0.142208423,900.087332,3008656476 +3,8615,1459,128,2.42622161,0.127757665,1001.89683,3008656476 +3,8616,1460,128,2.26527023,0.127689507,1002.43163,3008656476 +3,8617,1461,128,1.57350111,0.128262052,997.956902,3008656476 +3,8618,1462,128,1.50277913,0.127592196,1003.19615,3008656476 +3,8619,1463,128,2.03170204,0.12735079,1005.09781,3008656476 +3,8620,1464,128,1.74730623,0.142552304,897.916038,3008656476 +3,8621,1465,128,1.94034541,0.127873447,1000.98967,3008656476 +3,8622,1466,128,2.5869379,0.141319719,905.747626,3008656476 +3,8623,1467,128,2.25558829,0.12764051,1002.81643,3008656476 +3,8624,1468,128,2.06253624,0.127824099,1001.37612,3008656476 +3,8625,1469,128,2.43961215,0.128329691,997.430906,3008656476 +3,8626,1470,128,1.8631556,0.1276058,1003.0892,3008656476 +3,8627,1471,128,2.26540208,0.127635222,1002.85797,3008656476 +3,8628,1472,128,2.29426718,0.142704131,896.960719,3008656476 +3,8629,1473,128,2.55919194,0.127167004,1006.55041,3008656476 +3,8630,1474,128,2.15574598,0.140217944,912.864619,3008656476 +3,8631,1475,128,2.12305927,0.127824996,1001.36909,3008656476 +3,8632,1476,128,2.06162691,0.128077174,999.397441,3008656476 +3,8633,1477,128,2.21941876,0.127071906,1007.30369,3008656476 +3,8634,1478,128,2.13705397,0.126718109,1010.11608,3008656476 +3,8635,1479,128,2.19937921,0.127257318,1005.83607,3008656476 +3,8636,1480,128,2.10978794,0.144451336,886.111569,3008656476 +3,8637,1481,128,2.39199901,0.127281169,1005.64758,3008656476 +3,8638,1482,128,2.09483743,0.14061809,910.266951,3008656476 +3,8639,1483,128,2.1696856,0.127924756,1000.58819,3008656476 +3,8640,1484,128,2.11346745,0.126655657,1010.61416,3008656476 +3,8641,1485,128,2.16107178,0.127762922,1001.85561,3008656476 +3,8642,1486,128,2.4776268,0.127273968,1005.70448,3008656476 +3,8643,1487,128,2.2034862,0.126691267,1010.3301,3008656476 +3,8644,1488,128,2.15778351,0.143889473,889.571678,3008656476 +3,8645,1489,128,1.77997625,0.127678265,1002.51989,3008656476 +3,8646,1490,128,2.11199498,0.143247074,893.561009,3008656476 +3,8647,1491,128,2.08414078,0.127535552,1003.64171,3008656476 +3,8648,1492,128,2.55522156,0.127930414,1000.54394,3008656476 +3,8649,1493,128,1.92622232,0.127181614,1006.43478,3008656476 +3,8650,1494,128,1.54280496,0.127269412,1005.74048,3008656476 +3,8651,1495,128,2.08301091,0.127874289,1000.98308,3008656476 +3,8652,1496,128,2.0783534,0.143664522,890.964576,3008656476 +3,8653,1497,128,1.98977435,0.126472985,1012.07384,3008656476 +3,8654,1498,128,2.06041765,0.14222671,899.971602,3008656476 +3,8655,1499,128,1.88362551,0.12735807,1005.04036,3008656476 +3,8656,1500,128,2.17735744,0.127014111,1007.76204,3008656476 +3,8657,1501,128,2.61078548,0.127171897,1006.51168,3008656476 +3,8658,1502,128,2.04370022,0.126998373,1007.88693,3008656476 +3,8659,1503,128,2.08319426,0.126644479,1010.70336,3008656476 +3,8660,1504,128,2.23547053,0.141563853,904.185619,3008656476 +3,8661,1505,128,2.27991152,0.126741402,1009.93044,3008656476 +3,8662,1506,128,1.92253911,0.143010639,895.038306,3008656476 +3,8663,1507,128,2.13670802,0.12667765,1010.4387,3008656476 +3,8664,1508,128,2.02415919,0.126374816,1012.86003,3008656476 +3,8665,1509,128,2.12475204,0.126152885,1014.64188,3008656476 +3,8666,1510,128,2.64460325,0.126496225,1011.8879,3008656476 +3,8667,1511,128,1.87468493,0.126306563,1013.40736,3008656476 +3,8668,1512,128,2.07440376,0.140799196,909.0961,3008656476 +3,8669,1513,128,2.45297647,0.126166228,1014.53457,3008656476 +3,8670,1514,128,2.63139749,0.139188262,919.617776,3008656476 +3,8671,1515,128,2.0682888,0.126978948,1008.04111,3008656476 +3,8672,1516,128,2.25975323,0.127495114,1003.96004,3008656476 +3,8673,1517,128,2.47739291,0.127645914,1002.77397,3008656476 +3,8674,1518,128,2.36926198,0.128759187,994.103823,3008656476 +3,8675,1519,128,1.94641757,0.128795012,993.827308,3008656476 +3,8676,1520,128,2.56855917,0.142436513,898.645981,3008656476 +3,8677,1521,128,1.86948884,0.127547611,1003.54682,3008656476 +3,8678,1522,128,2.44110894,0.139264114,919.116895,3008656476 +3,8679,1523,128,2.62104893,0.126964969,1008.1521,3008656476 +3,8680,1524,128,2.63794088,0.129010591,992.166604,3008656476 +3,8681,1525,128,2.03884506,0.129449604,988.801789,3008656476 +3,8682,1526,128,1.55673873,0.130231376,982.866064,3008656476 +3,8683,1527,128,1.86216319,0.132122596,968.797192,3008656476 +3,8684,1528,128,2.09068465,0.146446376,874.040065,3008656476 +3,8685,1529,128,2.45862913,0.130037592,984.330746,3008656476 +3,8686,1530,128,2.59027362,0.14581432,877.828735,3008656476 +3,8687,1531,128,2.60147238,0.127728231,1002.12771,3008656476 +3,8688,1532,128,2.69741702,0.127954183,1000.35807,3008656476 +3,8689,1533,128,2.44095969,0.129857833,985.693331,3008656476 +3,8690,1534,128,2.43856621,0.13010063,983.853806,3008656476 +3,8691,1535,128,1.79835618,0.129111342,991.392375,3008656476 +3,8692,1536,128,2.22697234,0.140456102,911.316761,3008656476 +3,8693,1537,128,2.02090335,0.130582087,980.226331,3008656476 +3,8694,1538,128,2.56972122,0.142889641,895.796218,3008656476 +3,8695,1539,128,2.06740332,0.130330772,982.116487,3008656476 +3,8696,1540,128,2.55127025,0.130984889,977.211959,3008656476 +3,8697,1541,128,2.43909431,0.130903962,977.816088,3008656476 +3,8698,1542,128,2.58765626,0.131988377,969.782362,3008656476 +3,8699,1543,128,2.28134441,0.135904854,941.835381,3008656476 +3,8700,1544,128,2.4224751,0.143522463,891.846456,3008656476 +3,8701,1545,128,2.16261363,0.131388296,974.211584,3008656476 +3,8702,1546,128,2.11140227,0.148068582,864.464279,3008656476 +3,8703,1547,128,2.20674849,0.130434754,981.333549,3008656476 +3,8704,1548,128,2.07344341,0.130724105,979.161418,3008656476 +3,8705,1549,128,2.47173643,0.130918381,977.708394,3008656476 +3,8706,1550,128,2.27034378,0.129309351,989.874274,3008656476 +3,8707,1551,128,1.86064124,0.130404446,981.561626,3008656476 +3,8708,1552,128,2.07567477,0.142726152,896.822329,3008656476 +3,8709,1553,128,2.97004414,0.130022106,984.447983,3008656476 +3,8710,1554,128,2.57236886,0.145460877,879.961696,3008656476 +3,8711,1555,128,2.04135656,0.128625886,995.134059,3008656476 +3,8712,1556,128,2.36998773,0.127875388,1000.97448,3008656476 +3,8713,1557,128,2.46677589,0.129226891,990.505916,3008656476 +3,8714,1558,128,2.02315426,0.127167967,1006.54279,3008656476 +3,8715,1559,128,1.99162292,0.128273307,997.869338,3008656476 +3,8716,1560,128,2.23609471,0.142219958,900.014329,3008656476 +3,8717,1561,128,2.35348201,0.127974343,1000.20049,3008656476 +3,8718,1562,128,2.80602574,0.139317378,918.765497,3008656476 +3,8719,1563,128,2.69628286,0.126728143,1010.03611,3008656476 +3,8720,1564,128,2.21495032,0.127302797,1005.47673,3008656476 +3,8721,1565,128,2.25389194,0.1269646,1008.15503,3008656476 +3,8722,1566,128,1.86553109,0.127848641,1001.18389,3008656476 +3,8723,1567,128,1.45229948,0.126339383,1013.1441,3008656476 +3,8724,1568,128,1.38031054,0.142416012,898.775343,3008656476 +3,8725,1569,128,1.80921209,0.126998675,1007.88453,3008656476 +3,8726,1570,128,1.86740553,0.139007768,920.81185,3008656476 +3,8727,1571,128,2.17077994,0.127567035,1003.39402,3008656476 +3,8728,1572,128,1.60130394,0.12772379,1002.16256,3008656476 +3,8729,1573,128,1.98015189,0.127874488,1000.98152,3008656476 +3,8730,1574,128,2.26953745,0.127945701,1000.42439,3008656476 +3,8731,1575,128,2.46645594,0.127337548,1005.20233,3008656476 +3,8732,1576,128,2.17613125,0.140967461,908.010963,3008656476 +3,8733,1577,128,2.11671972,0.126758524,1009.79402,3008656476 +3,8734,1578,128,2.00556421,0.142087562,900.852954,3008656476 +3,8735,1579,128,2.13391471,0.127627066,1002.92206,3008656476 +3,8736,1580,128,2.36262488,0.128047095,999.632206,3008656476 +3,8737,1581,128,2.03377938,0.126807253,1009.40598,3008656476 +3,8738,1582,128,1.87229812,0.127690801,1002.42147,3008656476 +3,8739,1583,128,1.80641603,0.127296548,1005.52609,3008656476 +3,8740,1584,128,2.16448569,0.142094724,900.807549,3008656476 +3,8741,1585,128,2.42145705,0.12730331,1005.47268,3008656476 +3,8742,1586,128,2.3417995,0.141806338,902.639486,3008656476 +3,8743,1587,128,1.81434071,0.126789117,1009.55037,3008656476 +3,8744,1588,128,1.94797635,0.127689333,1002.43299,3008656476 +3,8745,1589,128,2.18027449,0.126571341,1011.28738,3008656476 +3,8746,1590,128,1.74386573,0.126110596,1014.98212,3008656476 +3,8747,1591,128,1.84853649,0.126441364,1012.32695,3008656476 +3,8748,1592,128,2.38852572,0.142631108,897.419937,3008656476 +3,8749,1593,128,2.16574168,0.126847024,1009.0895,3008656476 +3,8750,1594,128,1.87082946,0.139895649,914.967699,3008656476 +3,8751,1595,128,1.8348757,0.127062697,1007.3767,3008656476 +3,8752,1596,128,1.98879266,0.125395411,1020.77101,3008656476 +3,8753,1597,128,1.55632496,0.125712557,1018.19582,3008656476 +3,8754,1598,128,2.15743804,0.12695896,1008.19982,3008656476 +3,8755,1599,128,1.91085207,0.127650335,1002.73924,3008656476 +3,8756,1600,128,1.53899825,0.144665802,884.797915,3008656476 +3,8757,1601,128,2.01325727,0.126912327,1008.57027,3008656476 +3,8758,1602,128,1.63874578,0.139092766,920.249152,3008656476 +3,8759,1603,128,1.99800766,0.127076211,1007.26957,3008656476 +3,8760,1604,128,1.62412786,0.127423416,1004.52495,3008656476 +3,8761,1605,128,1.53811467,0.128284162,997.784902,3008656476 +3,8762,1606,128,1.39973366,0.127155271,1006.64329,3008656476 +3,8763,1607,128,2.16021919,0.129327429,989.735905,3008656476 +3,8764,1608,128,1.7074219,0.143532136,891.786352,3008656476 +3,8765,1609,128,2.14482093,0.127235332,1006.00987,3008656476 +3,8766,1610,128,2.46064353,0.136312216,939.020755,3008656476 +3,8767,1611,128,2.31812787,0.126589489,1011.1424,3008656476 +3,8768,1612,128,2.49024272,0.129936779,985.094451,3008656476 +3,8769,1613,128,2.11445379,0.130266165,982.603579,3008656476 +3,8770,1614,128,2.05287766,0.130525607,980.650486,3008656476 +3,8771,1615,128,2.17467093,0.130721542,979.180616,3008656476 +3,8772,1616,128,1.84157944,0.142307013,899.463753,3008656476 +3,8773,1617,128,2.45907307,0.131839634,970.876482,3008656476 +3,8774,1618,128,1.6179719,0.145882078,877.421008,3008656476 +3,8775,1619,128,2.53897595,0.131345091,974.532044,3008656476 +3,8776,1620,128,2.84768081,0.131812989,971.072737,3008656476 +3,8777,1621,128,2.27774906,0.13308776,961.771391,3008656476 +3,8778,1622,128,2.11471987,0.131282232,974.998658,3008656476 +3,8779,1623,128,2.23860741,0.131677213,972.074037,3008656476 +3,8780,1624,128,2.24904823,0.143748548,890.443777,3008656476 +3,8781,1625,128,1.91195381,0.130846523,978.245329,3008656476 +3,8782,1626,128,2.35774541,0.144072519,888.441466,3008656476 +3,8783,1627,128,2.28727627,0.129068922,991.718208,3008656476 +3,8784,1628,128,2.08228278,0.129453041,988.775536,3008656476 +3,8785,1629,128,1.85666025,0.128345967,997.304419,3008656476 +3,8786,1630,128,2.23642278,0.128750312,994.172348,3008656476 +3,8787,1631,128,2.11580181,0.127952388,1000.37211,3008656476 +3,8788,1632,128,2.2272613,0.143517856,891.875085,3008656476 +3,8789,1633,128,2.13214993,0.128090675,999.292103,3008656476 +3,8790,1634,128,2.16561151,0.142822048,896.220169,3008656476 +3,8791,1635,128,1.93210995,0.127189182,1006.3749,3008656476 +3,8792,1636,128,1.97470212,0.126316662,1013.32633,3008656476 +3,8793,1637,128,2.27617526,0.127665,1002.62406,3008656476 +3,8794,1638,128,2.10664368,0.127050421,1007.47403,3008656476 +3,8795,1639,128,2.32900858,0.127781461,1001.71026,3008656476 +3,8796,1640,128,1.66729236,0.142424651,898.720826,3008656476 +3,8797,1641,128,1.74056673,0.127229962,1006.05233,3008656476 +3,8798,1642,128,2.41979218,0.142636404,897.386617,3008656476 +3,8799,1643,128,1.71352315,0.127993756,1000.04878,3008656476 +3,8800,1644,128,1.95423222,0.127828214,1001.34388,3008656476 +3,8801,1645,128,1.42890298,0.128058879,999.540219,3008656476 +3,8802,1646,128,2.09437728,0.126871495,1008.89487,3008656476 +3,8803,1647,128,1.9858371,0.126878817,1008.83664,3008656476 +3,8804,1648,128,1.78431499,0.142004174,901.381955,3008656476 +3,8805,1649,128,1.68290234,0.126973359,1008.08548,3008656476 +3,8806,1650,128,1.88099122,0.140072969,913.80943,3008656476 +3,8807,1651,128,1.80015802,0.126940787,1008.34415,3008656476 +3,8808,1652,128,2.01943994,0.126815069,1009.34377,3008656476 +3,8809,1653,128,1.71245372,0.126783737,1009.59321,3008656476 +3,8810,1654,128,1.61897182,0.12667478,1010.46159,3008656476 +3,8811,1655,128,1.96849775,0.125684951,1018.41946,3008656476 +3,8812,1656,128,2.11568165,0.140461318,911.28292,3008656476 +3,8813,1657,128,1.9121381,0.126563998,1011.34605,3008656476 +3,8814,1658,128,2.14133477,0.137107637,933.573088,3008656476 +3,8815,1659,128,1.96984279,0.124059215,1031.76535,3008656476 +3,8816,1660,128,1.67522287,0.127778852,1001.73071,3008656476 +3,8817,1661,128,1.73753405,0.129280566,990.094675,3008656476 +3,8818,1662,128,2.124439,0.129317774,989.8098,3008656476 +3,8819,1663,128,2.16025758,0.129780842,986.278083,3008656476 +3,8820,1664,128,2.20639515,0.142774411,896.519195,3008656476 +3,8821,1665,128,2.11963892,0.128147269,998.850783,3008656476 +3,8822,1666,128,2.33177805,0.128712037,994.467984,3008656476 +3,8823,1667,128,2.37174296,0.133418358,959.388213,3008656476 +3,8824,1668,128,2.51407838,0.131423154,973.953189,3008656476 +3,8825,1669,128,2.27070117,0.133480173,958.943917,3008656476 +3,8826,1670,128,2.09577847,0.13969133,916.305973,3008656476 +3,8827,1671,128,1.52138579,0.132922836,962.964708,3008656476 +3,8828,1672,128,2.26091337,0.143938969,889.265783,3008656476 +3,8829,1673,128,2.37434936,0.131613291,972.546154,3008656476 +3,8830,1674,128,2.25764084,0.145779246,878.039937,3008656476 +3,8831,1675,128,1.96452165,0.13023966,982.803548,3008656476 +3,8832,1676,128,2.14630246,0.131628457,972.434099,3008656476 +3,8833,1677,128,2.72549748,0.129630089,987.425072,3008656476 +3,8834,1678,128,2.46986151,0.130050672,984.231746,3008656476 +3,8835,1679,128,2.48671412,0.130221652,982.939458,3008656476 +3,8836,1680,128,2.35454893,0.143447868,892.310229,3008656476 +3,8837,1681,128,2.34357691,0.127245012,1005.93334,3008656476 +3,8838,1682,128,2.51223826,0.144565361,885.412654,3008656476 +3,8839,1683,128,2.35713506,0.128239329,998.133732,3008656476 +3,8840,1684,128,2.02711535,0.127302219,1005.48129,3008656476 +3,8841,1685,128,1.87235522,0.128105916,999.173215,3008656476 +3,8842,1686,128,2.47994065,0.127198664,1006.29988,3008656476 +3,8843,1687,128,2.0076139,0.126929761,1008.43174,3008656476 +3,8844,1688,128,1.93711674,0.140851472,908.758696,3008656476 +3,8845,1689,128,1.88012302,0.126438545,1012.34952,3008656476 +3,8846,1690,128,2.0501287,0.141295218,905.904685,3008656476 +3,8847,1691,128,2.25768423,0.127125259,1006.88094,3008656476 +3,8848,1692,128,1.9369086,0.12773831,1002.04864,3008656476 +3,8849,1693,128,2.05856371,0.126975978,1008.06469,3008656476 +3,8850,1694,128,2.16975307,0.127603614,1003.10639,3008656476 +3,8851,1695,128,2.21279049,0.127758744,1001.88837,3008656476 +3,8852,1696,128,2.30896354,0.140693495,909.779091,3008656476 +3,8853,1697,128,2.19008493,0.11598225,1103.61715,3008656476 +3,8854,1698,128,2.20876598,0.138681743,922.976574,3008656476 +3,8855,1699,128,2.22089767,0.128685034,994.676661,3008656476 +3,8856,1700,128,2.12638259,0.127806606,1001.51318,3008656476 +3,8857,1701,128,2.2889421,0.12670624,1010.2107,3008656476 +3,8858,1702,128,1.37136757,0.127249015,1005.9017,3008656476 +3,8859,1703,128,1.6947217,0.127263178,1005.78975,3008656476 +3,8860,1704,128,1.62513864,0.139889799,915.005961,3008656476 +3,8861,1705,128,1.71134698,0.126776747,1009.64888,3008656476 +3,8862,1706,128,2.14198732,0.135592088,944.007883,3008656476 +3,8863,1707,128,2.15091753,0.127225112,1006.09068,3008656476 +3,8864,1708,128,2.57022071,0.126314386,1013.34459,3008656476 +3,8865,1709,128,2.01078105,0.127079518,1007.24335,3008656476 +3,8866,1710,128,2.38418293,0.126548386,1011.47082,3008656476 +3,8867,1711,128,1.95790422,0.127247874,1005.91072,3008656476 +3,8868,1712,128,1.87091637,0.139719204,916.123169,3008656476 +3,8869,1713,128,2.13774443,0.125336805,1021.24831,3008656476 +3,8870,1714,128,2.34970617,0.130182241,983.23703,3008656476 +3,8871,1715,128,1.92746377,0.134985045,948.253194,3008656476 +3,8872,1716,128,1.92853296,0.132127922,968.75814,3008656476 +3,8873,1717,128,2.5657239,0.184182261,694.963778,3008656476 +3,8874,1718,128,1.70250821,0.140529727,910.839313,3008656476 +3,8875,1719,128,2.06504154,0.130278953,982.507128,3008656476 +3,8876,1720,128,2.72516942,0.144991773,882.808709,3008656476 +3,8877,1721,128,2.3964467,0.130619247,979.947465,3008656476 +3,8878,1722,128,2.28648996,0.14524017,881.298886,3008656476 +3,8879,1723,128,2.39821887,0.128921738,992.850407,3008656476 +3,8880,1724,128,2.38165188,0.129574518,987.848552,3008656476 +3,8881,1725,128,1.58397937,0.127760228,1001.87673,3008656476 +3,8882,1726,128,2.61971307,0.129522103,988.248315,3008656476 +3,8883,1727,128,2.25303364,0.130522148,980.676475,3008656476 +3,8884,1728,128,2.23204398,0.142009134,901.350472,3008656476 +3,8885,1729,128,2.23480821,0.128802815,993.767101,3008656476 +3,8886,1730,128,1.9699688,0.142175453,900.296059,3008656476 +3,8887,1731,128,1.65953434,0.127403109,1004.68506,3008656476 +3,8888,1732,128,2.47258997,0.126315898,1013.33246,3008656476 +3,8889,1733,128,1.59568298,0.126901521,1008.65615,3008656476 +3,8890,1734,128,1.99451661,0.125931093,1016.42888,3008656476 +3,8891,1735,128,1.60058105,0.127243506,1005.94525,3008656476 +3,8892,1736,128,1.78969872,0.141711343,903.244562,3008656476 +3,8893,1737,128,1.45346236,0.126221725,1014.0885,3008656476 +3,8894,1738,128,1.69337177,0.138499871,924.188586,3008656476 +3,8895,1739,128,1.34883976,0.125882128,1016.82425,3008656476 +3,8896,1740,128,1.3521477,0.126317035,1013.32334,3008656476 +3,8897,1741,128,1.68898273,0.12665831,1010.59299,3008656476 +3,8898,1742,128,1.68027198,0.127124648,1006.88578,3008656476 +3,8899,1743,128,1.90962112,0.127211379,1006.1993,3008656476 +3,8900,1744,128,2.17908716,0.141953793,901.701866,3008656476 +3,8901,1745,128,1.46029341,0.127869618,1001.01965,3008656476 +3,8902,1746,128,2.34826183,0.139613008,916.820014,3008656476 +3,8903,1747,128,2.49945498,0.127586075,1003.24428,3008656476 +3,8904,1748,128,1.93021905,0.125557857,1019.45034,3008656476 +3,8905,1749,128,2.59789324,0.12667257,1010.47922,3008656476 +3,8906,1750,128,1.88295627,0.125049316,1023.59616,3008656476 +3,8907,1751,128,2.1897893,0.12645036,1012.25493,3008656476 +3,8908,1752,128,1.89733434,0.14011431,913.539809,3008656476 +3,8909,1753,128,2.15479112,0.127146714,1006.71103,3008656476 +3,8910,1754,128,2.15278411,0.141837916,902.438527,3008656476 +3,8911,1755,128,2.70803237,0.125952096,1016.25939,3008656476 +3,8912,1756,128,1.78237975,0.126202375,1014.24399,3008656476 +3,8913,1757,128,1.71649349,0.127585397,1003.24961,3008656476 +3,8914,1758,128,1.88088858,0.127089593,1007.16351,3008656476 +3,8915,1759,128,2.04786563,0.126489714,1011.93999,3008656476 +3,8916,1760,128,2.24277711,0.14555619,879.38548,3008656476 +3,8917,1761,128,1.66957629,0.126393831,1012.70765,3008656476 +3,8918,1762,128,2.71883297,0.142233868,899.92631,3008656476 +3,8919,1763,128,1.84967864,0.12689159,1008.73509,3008656476 +3,8920,1764,128,1.82556283,0.125932215,1016.41983,3008656476 +3,8921,1765,128,1.62741685,0.127308039,1005.43533,3008656476 +3,8922,1766,128,2.26425409,0.125990189,1015.95212,3008656476 +3,8923,1767,128,2.31802797,0.12449565,1028.14837,3008656476 +3,8924,1768,128,2.12973499,0.142140477,900.517591,3008656476 +3,8925,1769,128,1.70962763,0.126363726,1012.94892,3008656476 +3,8926,1770,128,1.68972611,0.140855357,908.733631,3008656476 +3,8927,1771,128,1.77922904,0.125664392,1018.58608,3008656476 +3,8928,1772,128,1.48252082,0.125632614,1018.84372,3008656476 +3,8929,1773,128,1.65197372,0.12589511,1016.71939,3008656476 +3,8930,1774,128,1.52880263,0.126665215,1010.5379,3008656476 +3,8931,1775,128,1.65050864,0.126216173,1014.13311,3008656476 +3,8932,1776,128,1.79896522,0.142463616,898.475018,3008656476 +3,8933,1777,128,1.66389346,0.12699052,1007.94925,3008656476 +3,8934,1778,128,1.41540301,0.138368956,925.062989,3008656476 +3,8935,1779,128,1.89590442,0.126863482,1008.95859,3008656476 +3,8936,1780,128,1.61172915,0.128352316,997.255087,3008656476 +3,8937,1781,128,1.1499778,0.129205498,990.669917,3008656476 +3,8938,1782,128,1.50266182,0.130392834,981.649038,3008656476 +3,8939,1783,128,1.52697766,0.129764119,986.405186,3008656476 +3,8940,1784,128,1.71208048,0.144651646,884.884504,3008656476 +3,8941,1785,128,1.57281744,0.131098787,976.362962,3008656476 +3,8942,1786,128,1.27702534,0.146397842,874.329828,3008656476 +3,8943,1787,128,1.42012036,0.143261481,893.471149,3008656476 +3,8944,1788,128,1.15833056,0.144010779,888.822357,3008656476 +3,8945,1789,128,1.66949487,0.135178238,946.897976,3008656476 +3,8946,1790,128,1.40181983,0.13127933,975.020211,3008656476 +3,8947,1791,128,1.91927719,0.13088797,977.935558,3008656476 +3,8948,1792,128,1.90198386,0.143166165,894.065997,3008656476 +3,8949,1793,128,1.33060992,0.12913795,991.188105,3008656476 +3,8950,1794,128,1.83132839,0.142680983,897.106239,3008656476 +3,8951,1795,128,1.23647499,0.130105276,983.818673,3008656476 +3,8952,1796,128,1.9539479,0.127812813,1001.46454,3008656476 +3,8953,1797,128,2.10643458,0.128514157,995.999219,3008656476 +3,8954,1798,128,2.02718735,0.126562575,1011.35743,3008656476 +3,8955,1799,128,1.51963377,0.128597191,995.356112,3008656476 +3,8956,1800,128,1.5809406,0.141062226,907.400965,3008656476 +3,8957,1801,128,1.70970094,0.126137853,1014.76279,3008656476 +3,8958,1802,128,1.51378787,0.142340349,899.253099,3008656476 +3,8959,1803,128,1.89867258,0.126280759,1013.61443,3008656476 +3,8960,1804,128,1.59256077,0.125930403,1016.43445,3008656476 +3,8961,1805,128,2.21570301,0.125575051,1019.31075,3008656476 +3,8962,1806,128,1.740453,0.126864445,1008.95093,3008656476 +3,8963,1807,128,2.02486348,0.127040694,1007.55117,3008656476 +3,8964,1808,128,1.79152465,0.141549743,904.27575,3008656476 +3,8965,1809,128,2.46344018,0.127101343,1007.0704,3008656476 +3,8966,1810,128,2.02600598,0.141661276,903.563794,3008656476 +3,8967,1811,128,1.50045812,0.125923762,1016.48806,3008656476 +3,8968,1812,128,1.29030883,0.126925045,1008.46921,3008656476 +3,8969,1813,128,1.2753253,0.127295035,1005.53804,3008656476 +3,8970,1814,128,2.2651155,0.126941723,1008.33672,3008656476 +3,8971,1815,128,2.06507087,0.126407665,1012.59682,3008656476 +3,8972,1816,128,1.73846102,0.143671068,890.923982,3008656476 +3,8973,1817,128,1.89788973,0.126661618,1010.56659,3008656476 +3,8974,1818,128,1.4441781,0.139919668,914.810633,3008656476 +3,8975,1819,128,1.32757413,0.126751602,1009.84917,3008656476 +3,8976,1820,128,1.87469268,0.126982642,1008.01179,3008656476 +3,8977,1821,128,2.30739975,0.127596216,1003.16455,3008656476 +3,8978,1822,128,2.51235962,0.126222938,1014.07876,3008656476 +3,8979,1823,128,2.14121604,0.125398411,1020.74659,3008656476 +3,8980,1824,128,2.09925008,0.141733297,903.104653,3008656476 +3,8981,1825,128,1.71921027,0.125755312,1017.84965,3008656476 +3,8982,1826,128,2.32615042,0.139605146,916.871646,3008656476 +3,8983,1827,128,1.89966547,0.125725854,1018.08813,3008656476 +3,8984,1828,128,1.7188493,0.125764733,1017.7734,3008656476 +3,8985,1829,128,1.84349346,0.125446844,1020.35249,3008656476 +3,8986,1830,128,1.93496454,0.126221347,1014.09154,3008656476 +3,8987,1831,128,2.07678318,0.12662322,1010.87305,3008656476 +3,8988,1832,128,1.91639638,0.141981229,901.527624,3008656476 +3,8989,1833,128,2.04406404,0.12559406,1019.15648,3008656476 +3,8990,1834,128,2.25426674,0.135130893,947.229735,3008656476 +3,8991,1835,128,1.89957798,0.126556852,1011.40316,3008656476 +3,8992,1836,128,1.46848297,0.127934304,1000.51351,3008656476 +3,8993,1837,128,1.91381013,0.128746864,994.198973,3008656476 +3,8994,1838,128,2.29788232,0.130149581,983.483765,3008656476 +3,8995,1839,128,2.24270153,0.131930042,970.211167,3008656476 +3,8996,1840,128,2.42053461,0.143742464,890.481466,3008656476 +3,8997,1841,128,2.35843515,0.129503963,988.386741,3008656476 +3,8998,1842,128,2.07238865,0.149290333,857.389741,3008656476 +3,8999,1843,128,1.99309242,0.128513918,996.001071,3008656476 +3,9000,1844,128,2.07227039,0.128235809,998.16113,3008656476 +3,9001,1845,128,1.75918496,0.128839407,993.484858,3008656476 +3,9002,1846,128,1.81730092,0.130506236,980.796044,3008656476 +3,9003,1847,128,1.37082911,0.129654356,987.240259,3008656476 +3,9004,1848,128,2.03535652,0.142827319,896.187094,3008656476 +3,9005,1849,128,2.07694745,0.130995427,977.133347,3008656476 +3,9006,1850,128,2.27590728,0.148619807,861.258015,3008656476 +3,9007,1851,128,1.97927308,0.129629468,987.429803,3008656476 +3,9008,1852,128,1.53880692,0.130309913,982.273697,3008656476 +3,9009,1853,128,2.0113337,0.131351561,974.484041,3008656476 +3,9010,1854,128,2.15441346,0.129392007,989.24194,3008656476 +3,9011,1855,128,1.87957597,0.129458856,988.731122,3008656476 +3,9012,1856,128,1.94773388,0.142483547,898.349337,3008656476 +3,9013,1857,128,1.23089194,0.128580053,995.488779,3008656476 +3,9014,1858,128,1.9525876,0.141644536,903.67058,3008656476 +3,9015,1859,128,1.68424761,0.127222303,1006.1129,3008656476 +3,9016,1860,128,1.89372587,0.128050754,999.603642,3008656476 +3,9017,1861,128,2.14129901,0.127044569,1007.52044,3008656476 +3,9018,1862,128,1.85577011,0.126261387,1013.76995,3008656476 +3,9019,1863,128,1.81659925,0.126386512,1012.7663,3008656476 +3,9020,1864,128,2.17194676,0.140658495,910.005471,3008656476 +3,9021,1865,128,2.00838494,0.126410037,1012.57782,3008656476 +3,9022,1866,128,1.82950222,0.141900761,902.038855,3008656476 +3,9023,1867,128,2.52076435,0.126298222,1013.47428,3008656476 +3,9024,1868,128,1.95447314,0.126611715,1010.9649,3008656476 +3,9025,1869,128,1.84373724,0.126518732,1011.70789,3008656476 +3,9026,1870,128,2.00559235,0.126483225,1011.99191,3008656476 +3,9027,1871,128,1.71260011,0.126329611,1013.22247,3008656476 +3,9028,1872,128,2.25289655,0.139861121,915.19358,3008656476 +3,9029,1873,128,2.14460039,0.127243447,1005.94571,3008656476 +3,9030,1874,128,2.34560847,0.135274079,946.227104,3008656476 +3,9031,1875,128,1.91238856,0.124471852,1028.34495,3008656476 +3,9032,1876,128,1.74243748,0.126508792,1011.78739,3008656476 +3,9033,1877,128,1.6770345,0.12686671,1008.93292,3008656476 +3,9034,1878,128,1.7811985,0.126702192,1010.24298,3008656476 +3,9035,1879,128,1.25195849,0.126407514,1012.59803,3008656476 +3,9036,1880,128,1.84693074,0.12958125,987.797231,3008656476 +3,9037,1881,128,1.73881078,0.127188576,1006.37969,3008656476 +3,9038,1882,128,1.92460525,0.12701589,1007.74793,3008656476 +3,9039,1883,128,1.67107391,0.139826992,915.41696,3008656476 +3,9040,1884,128,2.00437212,0.128456977,996.442568,3008656476 +3,9041,1885,128,1.78795516,0.12821428,998.328735,3008656476 +3,9042,1886,128,2.00085998,0.131030453,976.872147,3008656476 +3,9043,1887,128,1.6477356,0.130813319,978.493635,3008656476 +3,9044,1888,128,1.73003697,0.130324463,982.164032,3008656476 +3,9045,1889,128,2.17401004,0.146167878,875.7054,3008656476 +3,9046,1890,128,2.11732316,0.134849532,949.206112,3008656476 +3,9047,1891,128,1.90456927,0.142794881,896.390677,3008656476 +3,9048,1892,128,1.83703256,0.138570763,923.715777,3008656476 +3,9049,1893,128,1.77193952,0.139303409,918.857628,3008656476 +3,9050,1894,128,1.65584505,0.129311013,989.861552,3008656476 +3,9051,1895,128,1.75534511,0.130448566,981.229644,3008656476 +3,9052,1896,128,1.99067056,0.145247594,881.25384,3008656476 +3,9053,1897,128,2.04075193,0.131026986,976.897996,3008656476 +3,9054,1898,128,2.25263405,0.142817969,896.245766,3008656476 +3,9055,1899,128,2.92951322,0.129610394,987.575117,3008656476 +3,9056,1900,128,2.29009199,0.130169392,983.334085,3008656476 +3,9057,1901,128,1.84940469,0.129265598,990.209321,3008656476 +3,9058,1902,128,1.83274078,0.127936994,1000.49248,3008656476 +3,9059,1903,128,2.16807246,0.128323712,997.47738,3008656476 +3,9060,1904,128,1.472054,0.142172245,900.316373,3008656476 +3,9061,1905,128,1.9268769,0.127307533,1005.43932,3008656476 +3,9062,1906,128,1.65892327,0.141494895,904.626276,3008656476 +3,9063,1907,128,1.70945406,0.126714504,1010.14482,3008656476 +3,9064,1908,128,1.81446445,0.126643379,1010.71214,3008656476 +3,9065,1909,128,1.56274939,0.12636791,1012.91538,3008656476 +3,9066,1910,128,1.92291224,0.126574125,1011.26514,3008656476 +3,9067,1911,128,1.63152587,0.126139523,1014.74936,3008656476 +3,9068,1912,128,1.8193258,0.141509531,904.532713,3008656476 +3,9069,1913,128,1.80740976,0.126698172,1010.27503,3008656476 +3,9070,1914,128,1.94035745,0.141113921,907.068552,3008656476 +3,9071,1915,128,1.55304992,0.127063863,1007.36745,3008656476 +3,9072,1916,128,2.05233526,0.126441831,1012.32321,3008656476 +3,9073,1917,128,1.79561353,0.127085775,1007.19376,3008656476 +3,9074,1918,128,2.16189051,0.124691753,1026.5314,3008656476 +3,9075,1919,128,1.53769934,0.126366311,1012.9282,3008656476 +3,9076,1920,128,1.51146722,0.139826795,915.41825,3008656476 +3,9077,1921,128,1.92716849,0.127891894,1000.84529,3008656476 +3,9078,1922,128,2.28796744,0.129033944,991.987039,3008656476 +3,9079,1923,128,1.93361878,0.12457639,1027.48201,3008656476 +3,9080,1924,128,1.85841441,0.125701814,1018.28284,3008656476 +3,9081,1925,128,1.43614459,0.125310001,1021.46675,3008656476 +3,9082,1926,128,1.83640873,0.126594184,1011.1049,3008656476 +3,9083,1927,128,1.96942961,0.127072292,1007.30063,3008656476 +3,9084,1928,128,2.02881217,0.127805427,1001.52242,3008656476 +3,9085,1929,128,2.21125197,0.138851204,921.850127,3008656476 +3,9086,1930,128,2.11819172,0.129520244,988.262499,3008656476 +3,9087,1931,128,1.4852252,0.142632481,897.411299,3008656476 +3,9088,1932,128,1.32944584,0.1295307,988.182724,3008656476 +3,9089,1933,128,1.53589678,0.132944163,962.810229,3008656476 +3,9090,1934,128,1.5921948,0.131611804,972.557142,3008656476 +3,9091,1935,128,1.40618622,0.134674789,950.437724,3008656476 +3,9092,1936,128,2.11628175,0.149048882,858.778666,3008656476 +3,9093,1937,128,1.95394087,0.127709591,1002.27398,3008656476 +3,9094,1938,128,2.13379383,0.146368382,874.505807,3008656476 +3,9095,1939,128,1.75037217,0.124312276,1029.665,3008656476 +3,9096,1940,128,1.90359366,0.130339208,982.052921,3008656476 +3,9097,1941,128,1.46288085,0.130887725,977.937389,3008656476 +3,9098,1942,128,2.23930717,0.131056089,976.681061,3008656476 +3,9099,1943,128,1.90647888,0.129930216,985.14421,3008656476 +3,9100,1944,128,1.95977986,0.141630577,903.759645,3008656476 +3,9101,1945,128,1.89814293,0.129069653,991.712591,3008656476 +3,9102,1946,128,1.34103096,0.137907194,928.160426,3008656476 +3,9103,1947,128,1.69602191,0.123114724,1039.68068,3008656476 +3,9104,1948,128,1.99351645,0.127016786,1007.74082,3008656476 +3,9105,1949,128,1.69909477,0.126008346,1015.80573,3008656476 +3,9106,1950,128,2.55518842,0.12607546,1015.26498,3008656476 +3,9107,1951,128,2.42611694,0.126350452,1013.05534,3008656476 +3,9108,1952,128,1.99546218,0.126108912,1014.99567,3008656476 +3,9109,1953,128,1.99517584,0.133044051,962.087362,3008656476 +3,9110,1954,128,1.87564504,0.127351132,1005.09511,3008656476 +3,9111,1955,128,1.88354325,0.142742636,896.718763,3008656476 +3,9112,1956,128,2.27212667,0.127066619,1007.3456,3008656476 +3,9113,1957,128,1.65400505,0.127844161,1001.21898,3008656476 +3,9114,1958,128,1.74003065,0.126629642,1010.82178,3008656476 +3,9115,1959,128,1.22080338,0.126612146,1010.96146,3008656476 +3,9116,1960,128,2.09536242,0.125868143,1016.93722,3008656476 +3,9117,1961,128,1.9070971,0.143105884,894.442607,3008656476 +3,9118,1962,128,1.67012537,0.126867658,1008.92538,3008656476 +3,9119,1963,128,1.63597739,0.140556931,910.663025,3008656476 +3,9120,1964,128,1.47279453,0.126872535,1008.8866,3008656476 +3,9121,1965,128,1.62810171,0.127065928,1007.35108,3008656476 +3,9122,1966,128,1.99283445,0.125963116,1016.17048,3008656476 +3,9123,1967,128,1.91893864,0.126128916,1014.8347,3008656476 +3,9124,1968,128,2.2129724,0.125385512,1020.8516,3008656476 +3,9125,1969,128,1.73607063,0.139821662,915.451856,3008656476 +3,9126,1970,128,1.91406512,0.125199516,1022.36817,3008656476 +3,9127,1971,128,1.83083987,0.141016139,907.697522,3008656476 +3,9128,1972,128,2.26227355,0.126995537,1007.90944,3008656476 +3,9129,1973,128,1.98259568,0.126859863,1008.98737,3008656476 +3,9130,1974,128,1.06675673,0.126824245,1009.27074,3008656476 +3,9131,1975,128,1.59258199,0.12721928,1006.13681,3008656476 +3,9132,1976,128,1.79514349,0.128220546,998.279948,3008656476 +3,9133,1977,128,1.65369999,0.143735256,890.526121,3008656476 +3,9134,1978,128,1.82391691,0.130162308,983.387603,3008656476 +3,9135,1979,128,1.75972843,0.145512445,879.649847,3008656476 +3,9136,1980,128,2.21619964,0.131475136,973.568113,3008656476 +3,9137,1981,128,2.06458783,0.131825374,970.981505,3008656476 +3,9138,1982,128,1.82084358,0.132440431,966.47224,3008656476 +3,9139,1983,128,2.15489769,0.130482503,980.974438,3008656476 +3,9140,1984,128,1.72875249,0.130232075,982.860789,3008656476 +3,9141,1985,128,1.60170424,0.142955042,895.386397,3008656476 +3,9142,1986,128,1.46597779,0.129883777,985.496441,3008656476 +3,9143,1987,128,1.95818388,0.146592708,873.167579,3008656476 +3,9144,1988,128,2.1162734,0.12962383,987.472751,3008656476 +3,9145,1989,128,2.1399796,0.129524343,988.231224,3008656476 +3,9146,1990,128,1.64056265,0.128380469,997.036395,3008656476 +3,9147,1991,128,1.42268288,0.129429468,988.955622,3008656476 +3,9148,1992,128,1.49340129,0.131256185,975.19214,3008656476 +3,9149,1993,128,1.78953135,0.137892508,928.259279,3008656476 +3,9150,1994,128,1.85110927,0.126705615,1010.21569,3008656476 +3,9151,1995,128,1.6847651,0.148125071,864.134607,3008656476 +3,9152,1996,128,1.66441119,0.129395591,989.21454,3008656476 +3,9153,1997,128,2.20737171,0.129333907,989.686332,3008656476 +3,9154,1998,128,2.15749788,0.129533468,988.161608,3008656476 +3,9155,1999,128,2.11668777,0.127568954,1003.37893,3008656476 +3,9156,2000,128,1.82854223,0.1267809,1009.6158,3008656476 +3,9157,2001,128,1.50512373,0.135823601,942.39881,3008656476 +3,9158,2002,128,2.06672716,0.126188604,1014.35467,3008656476 +3,9159,2003,128,2.05967832,0.147762017,866.257802,3008656476 +3,9160,2004,128,1.48140574,0.126382165,1012.80113,3008656476 +3,9161,2005,128,1.57186449,0.125944251,1016.32269,3008656476 +3,9162,2006,128,1.51777732,0.126561346,1011.36725,3008656476 +3,9163,2007,128,1.71731174,0.125998317,1015.88659,3008656476 +3,9164,2008,128,1.75640857,0.126026858,1015.65652,3008656476 +3,9165,2009,128,1.59467673,0.141178922,906.650923,3008656476 +3,9166,2010,128,1.64075089,0.1267082,1010.19508,3008656476 +3,9167,2011,128,2.11362529,0.147211834,869.495315,3008656476 +3,9168,2012,128,2.36802888,0.125827353,1017.26689,3008656476 +3,9169,2013,128,1.77069998,0.125830444,1017.2419,3008656476 +3,9170,2014,128,2.22762895,0.126536933,1011.56237,3008656476 +3,9171,2015,128,1.80468619,0.126350764,1013.05284,3008656476 +3,9172,2016,128,1.96448386,0.126759153,1009.78901,3008656476 +3,9173,2017,128,2.53362393,0.140359089,911.946643,3008656476 +3,9174,2018,128,1.86537433,0.126502663,1011.83641,3008656476 +3,9175,2019,128,1.89728343,0.146818849,871.822664,3008656476 +3,9176,2020,128,1.72096729,0.127184485,1006.41206,3008656476 +3,9177,2021,128,2.29108357,0.125524755,1019.71918,3008656476 +3,9178,2022,128,2.31122518,0.127963312,1000.28671,3008656476 +3,9179,2023,128,2.22011828,0.126090549,1015.14349,3008656476 +3,9180,2024,128,2.21845889,0.126341553,1013.12669,3008656476 +3,9181,2025,128,2.11634636,0.142331335,899.31005,3008656476 +3,9182,2026,128,1.48770297,0.126511869,1011.76278,3008656476 +3,9183,2027,128,2.03539205,0.143375179,892.762617,3008656476 +3,9184,2028,128,2.06510496,0.125566977,1019.3763,3008656476 +3,9185,2029,128,2.25110173,0.127005903,1007.82717,3008656476 +3,9186,2030,128,1.96894646,0.127249854,1005.89506,3008656476 +3,9187,2031,128,1.89604819,0.126549678,1011.4605,3008656476 +3,9188,2032,128,1.84457099,0.126793168,1009.51812,3008656476 +3,9189,2033,128,1.71974838,0.142851713,896.034057,3008656476 +3,9190,2034,128,1.79605269,0.127459161,1004.24323,3008656476 +3,9191,2035,128,1.8518337,0.143005163,895.072579,3008656476 +3,9192,2036,128,1.52651024,0.127459954,1004.23699,3008656476 +3,9193,2037,128,1.63981426,0.126391055,1012.7299,3008656476 +3,9194,2038,128,1.85951865,0.126946079,1008.30212,3008656476 +3,9195,2039,128,2.17558241,0.12822611,998.236631,3008656476 +3,9196,2040,128,1.95520341,0.126725851,1010.05437,3008656476 +3,9197,2041,128,2.30833411,0.140119471,913.506161,3008656476 +3,9198,2042,128,2.20054007,0.126319905,1013.30032,3008656476 +3,9199,2043,128,2.04948473,0.144084713,888.366277,3008656476 +3,9200,2044,128,1.89568222,0.126807621,1009.40305,3008656476 +3,9201,2045,128,1.88486564,0.127075905,1007.27199,3008656476 +3,9202,2046,128,1.84464169,0.12653423,1011.58398,3008656476 +3,9203,2047,128,2.12124252,0.126452473,1012.23801,3008656476 +3,9204,2048,128,2.10284352,0.125842422,1017.14508,3008656476 +3,9205,2049,128,1.8770119,0.141372248,905.411082,3008656476 +3,9206,2050,128,2.29845357,0.125027302,1023.77639,3008656476 +3,9207,2051,128,1.9770087,0.143813009,890.044655,3008656476 +3,9208,2052,128,1.57497728,0.12556593,1019.3848,3008656476 +3,9209,2053,128,2.16475034,0.126023582,1015.68292,3008656476 +3,9210,2054,128,2.24243212,0.125288395,1021.64291,3008656476 +3,9211,2055,128,1.71860445,0.125659478,1018.62591,3008656476 +3,9212,2056,128,1.98651791,0.125264102,1021.84104,3008656476 +3,9213,2057,128,1.85326087,0.138888556,921.602209,3008656476 +3,9214,2058,128,1.60263669,0.125400864,1020.72662,3008656476 +3,9215,2059,128,1.99317265,0.1410701,907.350317,3008656476 +3,9216,2060,128,1.5580076,0.12576795,1017.74737,3008656476 +3,9217,2061,128,2.34442067,0.124847585,1025.25011,3008656476 +3,9218,2062,128,2.07904148,0.125889872,1016.7617,3008656476 +3,9219,2063,128,1.57614529,0.126946227,1008.30094,3008656476 +3,9220,2064,128,1.91424465,0.126102277,1015.04908,3008656476 +3,9221,2065,128,1.74896276,0.139402325,918.205633,3008656476 +3,9222,2066,128,1.84196353,0.128071928,999.438378,3008656476 +3,9223,2067,128,1.54402614,0.142448419,898.570871,3008656476 +3,9224,2068,128,1.56570494,0.125068546,1023.43878,3008656476 +3,9225,2069,128,1.8425914,0.128968857,992.487667,3008656476 +3,9226,2070,128,1.56462526,0.129651133,987.264801,3008656476 +3,9227,2071,128,1.97198486,0.129494461,988.459267,3008656476 +3,9228,2072,128,1.61721289,0.129602766,987.633242,3008656476 +3,9229,2073,128,1.95298755,0.143784299,890.222374,3008656476 +3,9230,2074,128,1.48320866,0.131424992,973.939569,3008656476 +3,9231,2075,128,2.13565207,0.145105534,882.116598,3008656476 +3,9232,2076,128,1.87894261,0.130724158,979.161021,3008656476 +3,9233,2077,128,1.81178284,0.130143724,983.528026,3008656476 +3,9234,2078,128,1.55044055,0.13018076,983.248216,3008656476 +3,9235,2079,128,2.17117524,0.130004776,984.579213,3008656476 +3,9236,2080,128,2.10676742,0.130673099,979.543617,3008656476 +3,9237,2081,128,1.7086041,0.143105389,894.445701,3008656476 +3,9238,2082,128,1.83320546,0.132131252,968.733725,3008656476 +3,9239,2083,128,1.95122898,0.143741677,890.486341,3008656476 +3,9240,2084,128,1.66490257,0.130110198,983.781456,3008656476 +3,9241,2085,128,1.66675472,0.130368539,981.831974,3008656476 +3,9242,2086,128,1.82537091,0.129122421,991.307311,3008656476 +3,9243,2087,128,1.55727577,0.127633617,1002.87058,3008656476 +3,9244,2088,128,1.71946752,0.127121379,1006.91167,3008656476 +3,9245,2089,128,1.55397403,0.142705628,896.95131,3008656476 +3,9246,2090,128,1.84571838,0.12690607,1008.62,3008656476 +3,9247,2091,128,1.50647151,0.140725745,909.570598,3008656476 +3,9248,2092,128,1.34866297,0.127152026,1006.66898,3008656476 +3,9249,2093,128,1.39116645,0.125823275,1017.29986,3008656476 +3,9250,2094,128,2.21221399,0.126408984,1012.58626,3008656476 +3,9251,2095,128,1.42175651,0.126344902,1013.09984,3008656476 +3,9252,2096,128,2.03893542,0.126698584,1010.27175,3008656476 +3,9253,2097,128,1.85215354,0.140049238,913.964273,3008656476 +3,9254,2098,128,1.8340801,0.127000821,1007.8675,3008656476 +3,9255,2099,128,1.8722868,0.138919249,921.398589,3008656476 +3,9256,2100,128,1.71309972,0.128032065,999.749555,3008656476 +3,9257,2101,128,1.94364393,0.12556947,1019.35606,3008656476 +3,9258,2102,128,1.90501702,0.1265436,1011.50908,3008656476 +3,9259,2103,128,1.1013999,0.126709195,1010.18715,3008656476 +3,9260,2104,128,1.70089543,0.126089083,1015.15529,3008656476 +3,9261,2105,128,1.62531316,0.139263119,919.123462,3008656476 +3,9262,2106,128,1.36826003,0.127684574,1002.47035,3008656476 +3,9263,2107,128,1.74411714,0.12564972,1018.70502,3008656476 +3,9264,2108,128,1.87979877,0.128449655,996.499368,3008656476 +3,9265,2109,128,1.82178724,0.126221012,1014.09423,3008656476 +3,9266,2110,128,1.86781752,0.125722218,1018.11758,3008656476 +3,9267,2111,128,1.67901802,0.125552417,1019.49451,3008656476 +3,9268,2112,128,1.87914145,0.125735776,1018.00779,3008656476 +3,9269,2113,128,1.75592124,0.125483478,1020.05461,3008656476 +3,9270,2114,128,1.34337616,0.132621286,965.154266,3008656476 +3,9271,2115,128,1.79417884,0.128127101,999.008008,3008656476 +3,9272,2116,128,1.53700912,0.142982702,895.213185,3008656476 +3,9273,2117,128,1.83949912,0.129207004,990.65837,3008656476 +3,9274,2118,128,1.87420416,0.130479493,980.997067,3008656476 +3,9275,2119,128,1.77438319,0.13058407,980.211445,3008656476 +3,9276,2120,128,1.31840634,0.13045415,981.187643,3008656476 +3,9277,2121,128,1.48389399,0.130324682,982.162381,3008656476 +3,9278,2122,128,1.64369845,0.135596337,943.978302,3008656476 +3,9279,2123,128,1.36422038,0.131921889,970.271128,3008656476 +3,9280,2124,128,1.45497167,0.147898504,865.458382,3008656476 +3,9281,2125,128,1.11249745,0.130431414,981.358678,3008656476 +3,9282,2126,128,1.21488059,0.131944429,970.105377,3008656476 +3,9283,2127,128,2.09148216,0.130466051,981.09814,3008656476 +3,9284,2128,128,1.64653504,0.130325176,982.158658,3008656476 +3,9285,2129,128,1.45479715,0.146493683,873.757812,3008656476 +3,9286,2130,128,1.97052348,0.130506001,980.79781,3008656476 +3,9287,2131,128,1.52090323,0.128851975,993.387955,3008656476 +3,9288,2132,128,1.75936532,0.140574611,910.548492,3008656476 +3,9289,2133,128,1.68781435,0.131357622,974.439077,3008656476 +3,9290,2134,128,2.11361241,0.130783188,978.719069,3008656476 +3,9291,2135,128,1.71068382,0.129711028,986.808924,3008656476 +3,9292,2136,128,1.67276824,0.128630252,995.100282,3008656476 +3,9293,2137,128,1.74473202,0.143054526,894.763721,3008656476 +3,9294,2138,128,1.7726748,0.130744977,979.005105,3008656476 +3,9295,2139,128,1.90167606,0.130985036,977.210862,3008656476 +3,9296,2140,128,1.90200615,0.128687647,994.656465,3008656476 +3,9297,2141,128,1.48879099,0.125865058,1016.96215,3008656476 +3,9298,2142,128,1.56751657,0.126208338,1014.19607,3008656476 +3,9299,2143,128,1.76225567,0.125756588,1017.83932,3008656476 +3,9300,2144,128,1.69766724,0.125887255,1016.78283,3008656476 +3,9301,2145,128,2.10347223,0.12659705,1011.08201,3008656476 +3,9302,2146,128,1.83292139,0.129403408,989.154783,3008656476 +3,9303,2147,128,1.71094811,0.126334682,1013.1818,3008656476 +3,9304,2148,128,1.03193521,0.139423789,918.064277,3008656476 +3,9305,2149,128,1.56860447,0.126285827,1013.57376,3008656476 +3,9306,2150,128,1.29634368,0.126163219,1014.55877,3008656476 +3,9307,2151,128,1.7253567,0.125959068,1016.20314,3008656476 +3,9308,2152,128,1.67748058,0.126013147,1015.76703,3008656476 +3,9309,2153,128,1.42128444,0.125608005,1019.04333,3008656476 +3,9310,2154,128,1.55242634,0.14010776,913.582517,3008656476 +3,9311,2155,128,2.10482693,0.125156078,1022.723,3008656476 +3,9312,2156,128,1.81995857,0.140052906,913.940336,3008656476 +3,9313,2157,128,1.8700887,0.125135745,1022.88918,3008656476 +3,9314,2158,128,1.0680896,0.125589301,1019.1951,3008656476 +3,9315,2159,128,1.66247487,0.125447719,1020.34538,3008656476 +3,9316,2160,128,1.91258514,0.126741774,1009.92748,3008656476 +3,9317,2161,128,1.91694689,0.127468385,1004.17056,3008656476 +3,9318,2162,128,1.35786033,0.140575957,910.539773,3008656476 +3,9319,2163,128,1.43920207,0.127487992,1004.01613,3008656476 +3,9320,2164,128,1.48152399,0.14150785,904.543458,3008656476 +3,9321,2165,128,1.89145565,0.128778045,993.958248,3008656476 +3,9322,2166,128,1.6878711,0.129167761,990.959346,3008656476 +3,9323,2167,128,1.56589007,0.129749509,986.516257,3008656476 +3,9324,2168,128,2.04869556,0.129681816,987.031212,3008656476 +3,9325,2169,128,1.94884694,0.129905857,985.328937,3008656476 +3,9326,2170,128,1.38747072,0.144558182,885.456625,3008656476 +3,9327,2171,128,1.62937355,0.131895102,970.468183,3008656476 +3,9328,2172,128,1.71156967,0.21106293,606.454198,3008656476 +3,9329,2173,128,2.22392321,0.132209171,968.162791,3008656476 +3,9330,2174,128,1.97998393,0.130567601,980.335083,3008656476 +3,9331,2175,128,1.64898586,0.132081865,969.095947,3008656476 +3,9332,2176,128,0.914779484,0.129918372,985.234021,3008656476 +3,9333,2177,128,1.62384605,0.145789598,877.977591,3008656476 +3,9334,2178,128,1.54817474,0.130038073,984.327105,3008656476 +3,9335,2179,128,2.08326221,0.145531097,879.537107,3008656476 +3,9336,2180,128,1.86051619,0.128460798,996.412929,3008656476 +3,9337,2181,128,1.46569109,0.128807009,993.734743,3008656476 +3,9338,2182,128,1.61325192,0.128741983,994.236666,3008656476 +3,9339,2183,128,1.89780986,0.127835119,1001.28979,3008656476 +3,9340,2184,128,1.6943208,0.126753829,1009.83143,3008656476 +3,9341,2185,128,1.85590148,0.141887589,902.122595,3008656476 +3,9342,2186,128,1.8790828,0.12720929,1006.21582,3008656476 +3,9343,2187,128,1.85317576,0.140339664,912.072869,3008656476 +3,9344,2188,128,1.47854674,0.125880992,1016.83342,3008656476 +3,9345,2189,128,1.70546162,0.126550085,1011.45724,3008656476 +3,9346,2190,128,1.43023825,0.125779962,1017.65017,3008656476 +3,9347,2191,128,1.7436682,0.125173722,1022.57884,3008656476 +3,9348,2192,128,1.44669986,0.1263037,1013.43033,3008656476 +3,9349,2193,128,1.03052521,0.139859651,915.203199,3008656476 +3,9350,2194,128,1.76529133,0.127858914,1001.10345,3008656476 +3,9351,2195,128,1.36252165,0.12970436,986.859655,3008656476 +3,9352,2196,128,1.88695741,0.127022985,1007.69164,3008656476 +3,9353,2197,128,2.12537169,0.127343053,1005.15888,3008656476 +3,9354,2198,128,1.94543755,0.126221248,1014.09233,3008656476 +3,9355,2199,128,1.5873301,0.127419959,1004.5522,3008656476 +3,9356,2200,128,1.84813464,0.126036809,1015.57633,3008656476 +3,9357,2201,128,1.91727996,0.138832832,921.972117,3008656476 +3,9358,2202,128,1.56271768,0.127046767,1007.50301,3008656476 +3,9359,2203,128,1.94369698,0.125429859,1020.49066,3008656476 +3,9360,2204,128,1.94039094,0.139959086,914.552986,3008656476 +3,9361,2205,128,1.60947561,0.125360749,1021.05325,3008656476 +3,9362,2206,128,1.66050839,0.125751328,1017.88189,3008656476 +3,9363,2207,128,1.63441563,0.125205893,1022.3161,3008656476 +3,9364,2208,128,1.70201337,0.125314397,1021.43092,3008656476 +3,9365,2209,128,2.13016319,0.125046921,1023.61577,3008656476 +3,9366,2210,128,1.46874404,0.136567529,937.265256,3008656476 +3,9367,2211,128,1.42494869,0.127064773,1007.36024,3008656476 +3,9368,2212,128,1.44606853,0.142942905,895.462423,3008656476 +3,9369,2213,128,1.63618183,0.128597682,995.352311,3008656476 +3,9370,2214,128,1.55116487,0.128413944,996.776487,3008656476 +3,9371,2215,128,1.78481174,0.129449057,988.805967,3008656476 +3,9372,2216,128,1.31812227,0.129892743,985.428416,3008656476 +3,9373,2217,128,2.02898049,0.130321275,982.188058,3008656476 +3,9374,2218,128,1.80865371,0.141177625,906.659253,3008656476 +3,9375,2219,128,1.96002948,0.143581265,891.481211,3008656476 +3,9376,2220,128,1.51124012,0.146324804,874.766249,3008656476 +3,9377,2221,128,1.14186382,0.130323584,982.170656,3008656476 +3,9378,2222,128,1.61750436,0.132203261,968.206072,3008656476 +3,9379,2223,128,1.67735863,0.129709223,986.822656,3008656476 +3,9380,2224,128,1.4400177,0.130894488,977.886861,3008656476 +3,9381,2225,128,1.60364866,0.142929445,895.54675,3008656476 +3,9382,2226,128,2.01904392,0.130067008,984.10813,3008656476 +3,9383,2227,128,1.6768676,0.129797304,986.152994,3008656476 +3,9384,2228,128,1.60908484,0.139766635,915.812275,3008656476 +3,9385,2229,128,1.52671337,0.130894255,977.888602,3008656476 +3,9386,2230,128,1.88941216,0.129869226,985.60686,3008656476 +3,9387,2231,128,1.36771786,0.1282018,998.425919,3008656476 +3,9388,2232,128,1.82752514,0.127840885,1001.24463,3008656476 +3,9389,2233,128,1.39410901,0.140695931,909.763339,3008656476 +3,9390,2234,128,1.73275244,0.12707877,1007.24928,3008656476 +3,9391,2235,128,1.16555178,0.128066447,999.481152,3008656476 +3,9392,2236,128,1.75434768,0.140028894,914.097058,3008656476 +3,9393,2237,128,2.04335618,0.125779814,1017.65137,3008656476 +3,9394,2238,128,1.66890705,0.127162225,1006.58824,3008656476 +3,9395,2239,128,1.86338782,0.126486894,1011.96255,3008656476 +3,9396,2240,128,1.57732224,0.12573913,1017.98064,3008656476 +3,9397,2241,128,1.60506141,0.140182239,913.097129,3008656476 +3,9398,2242,128,2.16709852,0.119810105,1068.3573,3008656476 +3,9399,2243,128,1.8073324,0.127249512,1005.89777,3008656476 +3,9400,2244,128,1.7961098,0.14294257,895.464521,3008656476 +3,9401,2245,128,1.78688633,0.127633156,1002.87421,3008656476 +3,9402,2246,128,1.40668368,0.126902596,1008.64761,3008656476 +3,9403,2247,128,1.34997916,0.127467763,1004.17546,3008656476 +3,9404,2248,128,1.27926052,0.125660623,1018.61663,3008656476 +3,9405,2249,128,1.45792747,0.126192679,1014.32192,3008656476 +3,9406,2250,128,1.84378958,0.135803174,942.540562,3008656476 +3,9407,2251,128,1.45956135,0.126372245,1012.88064,3008656476 +3,9408,2252,128,1.31255507,0.141604317,903.927244,3008656476 +3,9409,2253,128,1.46668732,0.124722585,1026.27764,3008656476 +3,9410,2254,128,2.20026207,0.125806172,1017.43816,3008656476 +3,9411,2255,128,1.62520921,0.125151605,1022.75956,3008656476 +3,9412,2256,128,1.82572293,0.125170997,1022.60111,3008656476 +3,9413,2257,128,1.65315568,0.125536443,1019.62424,3008656476 +3,9414,2258,128,2.10024333,0.139812664,915.510772,3008656476 +3,9415,2259,128,1.75585198,0.126277343,1013.64185,3008656476 +3,9416,2260,128,1.67192662,0.139661868,916.49927,3008656476 +3,9417,2261,128,1.51035953,0.126920628,1008.50431,3008656476 +3,9418,2262,128,1.44009793,0.127029064,1007.64342,3008656476 +3,9419,2263,128,1.6307025,0.127986122,1000.10843,3008656476 +3,9420,2264,128,1.30234385,0.128606528,995.283847,3008656476 +3,9421,2265,128,1.61879456,0.128838801,993.489531,3008656476 +3,9422,2266,128,1.82436693,0.145580537,879.238411,3008656476 +3,9423,2267,128,1.62867117,0.129157469,991.038312,3008656476 +3,9424,2268,128,1.75389314,0.143110421,894.414251,3008656476 +3,9425,2269,128,1.14266562,0.132008805,969.632291,3008656476 +3,9426,2270,128,1.4356724,0.13171521,971.793614,3008656476 +3,9427,2271,128,1.50735068,0.131700612,971.90133,3008656476 +3,9428,2272,128,1.92001045,0.13548402,944.760866,3008656476 +3,9429,2273,128,1.42104828,0.134407192,952.329991,3008656476 +3,9430,2274,128,1.36836624,0.145302875,880.918564,3008656476 +3,9431,2275,128,1.90357637,0.131819994,971.021134,3008656476 +3,9432,2276,128,1.62602472,0.143727284,890.575515,3008656476 +3,9433,2277,128,1.30042303,0.130548209,980.480705,3008656476 +3,9434,2278,128,1.31432474,0.130693241,979.392653,3008656476 +3,9435,2279,128,1.5060997,0.130071641,984.073077,3008656476 +3,9436,2280,128,1.46038806,0.12952085,988.257875,3008656476 +3,9437,2281,128,1.64721036,0.12928925,990.028173,3008656476 +3,9438,2282,128,1.98073304,0.132295038,967.534398,3008656476 +3,9439,2283,128,1.46047413,0.12755854,1003.46084,3008656476 +3,9440,2284,128,1.44282377,0.142194531,900.175268,3008656476 +3,9441,2285,128,1.30362332,0.12792979,1000.54882,3008656476 +3,9442,2286,128,1.45531559,0.126369283,1012.90438,3008656476 +3,9443,2287,128,1.40456557,0.127665122,1002.6231,3008656476 +3,9444,2288,128,1.37568641,0.125613109,1019.00193,3008656476 +3,9445,2289,128,1.26786304,0.12701835,1007.72841,3008656476 +3,9446,2290,128,1.72942519,0.142324358,899.354136,3008656476 +3,9447,2291,128,1.91314268,0.12685588,1009.01905,3008656476 +3,9448,2292,128,1.31473935,0.141533967,904.376544,3008656476 +3,9449,2293,128,1.87869024,0.126434864,1012.37899,3008656476 +3,9450,2294,128,1.62502646,0.12622911,1014.02917,3008656476 +3,9451,2295,128,2.14218402,0.126573352,1011.27131,3008656476 +3,9452,2296,128,2.2724545,0.125717718,1018.15402,3008656476 +3,9453,2297,128,1.59432292,0.125979642,1016.03718,3008656476 +3,9454,2298,128,1.49529099,0.142389105,898.945183,3008656476 +3,9455,2299,128,2.02372813,0.127159967,1006.60611,3008656476 +3,9456,2300,128,1.77954328,0.139296574,918.902715,3008656476 +3,9457,2301,128,1.84392715,0.126282979,1013.59661,3008656476 +3,9458,2302,128,2.13895535,0.126168495,1014.51634,3008656476 +3,9459,2303,128,1.69202566,0.127330855,1005.25517,3008656476 +3,9460,2304,128,1.60301256,0.127959383,1000.31742,3008656476 +3,9461,2305,128,1.82007325,0.125729357,1018.05977,3008656476 +3,9462,2306,128,2.38697648,0.140756835,909.369694,3008656476 +3,9463,2307,128,1.80429912,0.127565805,1003.40369,3008656476 +3,9464,2308,128,1.9692471,0.13833555,925.286378,3008656476 +3,9465,2309,128,2.10265207,0.125941169,1016.34756,3008656476 +3,9466,2310,128,1.70476508,0.126571617,1011.28518,3008656476 +3,9467,2311,128,1.6975075,0.127552223,1003.51054,3008656476 +3,9468,2312,128,1.60071731,0.126773713,1009.67304,3008656476 +3,9469,2313,128,2.06217742,0.127230396,1006.0489,3008656476 +3,9470,2314,128,2.38466692,0.141821987,902.539886,3008656476 +3,9471,2315,128,2.11126375,0.125569005,1019.35983,3008656476 +3,9472,2316,128,2.29167938,0.142446362,898.583847,3008656476 +3,9473,2317,128,2.13157892,0.126901461,1008.65663,3008656476 +3,9474,2318,128,2.3556335,0.127347262,1005.12565,3008656476 +3,9475,2319,128,2.14572096,0.126619536,1010.90246,3008656476 +3,9476,2320,128,2.1359868,0.126831514,1009.2129,3008656476 +3,9477,2321,128,2.2366221,0.127030291,1007.63368,3008656476 +3,9478,2322,128,2.25815797,0.144668732,884.779995,3008656476 +3,9479,2323,128,2.28979778,0.127208002,1006.22601,3008656476 +3,9480,2324,128,1.78320599,0.140140205,913.371006,3008656476 +3,9481,2325,128,2.40488911,0.125948616,1016.28747,3008656476 +3,9482,2326,128,2.18830061,0.127713719,1002.24158,3008656476 +3,9483,2327,128,2.48082232,0.127219141,1006.1379,3008656476 +3,9484,2328,128,2.19592595,0.125949762,1016.27822,3008656476 +3,9485,2329,128,2.02841043,0.125850299,1017.08141,3008656476 +3,9486,2330,128,2.16639185,0.144449974,886.119924,3008656476 +3,9487,2331,128,2.11351132,0.127303746,1005.46923,3008656476 +3,9488,2332,128,1.61479759,0.138663223,923.099847,3008656476 +3,9489,2333,128,1.99379086,0.126358015,1012.9947,3008656476 +3,9490,2334,128,1.61827552,0.125428549,1020.50132,3008656476 +3,9491,2335,128,1.97335839,0.126388979,1012.74653,3008656476 +3,9492,2336,128,2.24052715,0.125867484,1016.94255,3008656476 +3,9493,2337,128,2.23852229,0.126612657,1010.95738,3008656476 +3,9494,2338,128,1.89434159,0.144835856,883.75906,3008656476 +3,9495,2339,128,1.97796357,0.126015664,1015.74674,3008656476 +3,9496,2340,128,1.90107977,0.135300281,946.043859,3008656476 +3,9497,2341,128,2.15082932,0.125893266,1016.73429,3008656476 +3,9498,2342,128,2.0216713,0.12506345,1023.48048,3008656476 +3,9499,2343,128,2.09394288,0.125405326,1020.6903,3008656476 +3,9500,2344,128,2.0491097,0.126664824,1010.54102,3008656476 +3,9501,2345,128,2.41341066,0.126368932,1012.90719,3008656476 +3,9502,2346,128,2.2606194,0.140314267,912.237955,3008656476 +3,9503,2347,128,2.35373068,0.126279819,1013.62198,3008656476 +3,9504,2348,128,2.11719942,0.125410282,1020.64997,3008656476 +3,9505,2349,128,2.08406568,0.135717317,943.136829,3008656476 +3,9506,2350,128,2.11063361,0.128800283,993.786636,3008656476 +3,9507,2351,128,2.22069764,0.128825761,993.590094,3008656476 +3,9508,2352,128,1.80275476,0.129468203,988.659741,3008656476 +3,9509,2353,128,1.92536736,0.130880565,977.990888,3008656476 +3,9510,2354,128,2.18080974,0.145463301,879.947032,3008656476 +3,9511,2355,128,1.87320495,0.122811532,1042.2474,3008656476 +3,9512,2356,128,2.07974362,0.129617247,987.522903,3008656476 +3,9513,2357,128,1.72626376,0.141604317,903.927244,3008656476 +3,9514,2358,128,1.79333806,0.130792574,978.648834,3008656476 +3,9515,2359,128,1.94678426,0.130381031,981.737903,3008656476 +3,9516,2360,128,2.14330506,0.142843468,896.085777,3008656476 +3,9517,2361,128,1.71510327,0.13871205,922.774914,3008656476 +3,9518,2362,128,1.5445317,0.142411814,898.801837,3008656476 +3,9519,2363,128,1.58648932,0.129571598,987.870814,3008656476 +3,9520,2364,128,1.33589649,0.14552913,879.548995,3008656476 +3,9521,2365,128,1.5857265,0.130667859,979.582898,3008656476 +3,9522,2366,128,1.50598609,0.129429538,988.955087,3008656476 +3,9523,2367,128,1.56522393,0.129839529,985.832288,3008656476 +3,9524,2368,128,1.55013287,0.131079709,976.505067,3008656476 +3,9525,2369,128,1.83283484,0.128607433,995.276844,3008656476 +3,9526,2370,128,1.56676614,0.14205169,901.080445,3008656476 +3,9527,2371,128,1.6168015,0.128433177,996.627219,3008656476 +3,9528,2372,128,2.18339801,0.141948458,901.735755,3008656476 +3,9529,2373,128,2.18290806,0.130359586,981.899406,3008656476 +3,9530,2374,128,2.17432785,0.128235207,998.165816,3008656476 +3,9531,2375,128,1.46455157,0.127795961,1001.5966,3008656476 +3,9532,2376,128,1.66152358,0.126988981,1007.96147,3008656476 +3,9533,2377,128,2.15457249,0.128908448,992.952766,3008656476 +3,9534,2378,128,1.67240584,0.141290816,905.932909,3008656476 +3,9535,2379,128,1.45698893,0.125140782,1022.84801,3008656476 +3,9536,2380,128,1.65036368,0.139463745,917.801254,3008656476 +3,9537,2381,128,1.57732952,0.127083114,1007.21485,3008656476 +3,9538,2382,128,1.61936295,0.126430862,1012.41104,3008656476 +3,9539,2383,128,1.96807027,0.126688726,1010.35036,3008656476 +3,9540,2384,64,0.85597682,0.121571629,526.438615,3008656476 +4,9541,0,128,1.00173604,0.140368978,911.882396,3008656476 +4,9542,1,128,1.32086766,0.136955802,934.608086,3008656476 +4,9543,2,128,1.36433232,0.145872876,877.476358,3008656476 +4,9544,3,128,1.51460433,0.131556668,972.964746,3008656476 +4,9545,4,128,1.94840813,0.131962225,969.974551,3008656476 +4,9546,5,128,1.97034538,0.1316772,972.074133,3008656476 +4,9547,6,128,2.06144476,0.133218402,960.82822,3008656476 +4,9548,7,128,1.75337553,0.132258995,967.798069,3008656476 +4,9549,8,128,2.09513831,0.145307785,880.888798,3008656476 +4,9550,9,128,1.98723686,0.132625616,965.122756,3008656476 +4,9551,10,128,1.80521882,0.146679344,872.651844,3008656476 +4,9552,11,128,2.05506849,0.132343351,967.181192,3008656476 +4,9553,12,128,1.4144907,0.132477079,966.204878,3008656476 +4,9554,13,128,1.53628349,0.132817351,963.729505,3008656476 +4,9555,14,128,1.47005546,0.132261622,967.778847,3008656476 +4,9556,15,128,1.42775869,0.132156903,968.545699,3008656476 +4,9557,16,128,1.77825677,0.14689666,871.36086,3008656476 +4,9558,17,128,1.62486398,0.131512953,973.28816,3008656476 +4,9559,18,128,1.80138028,0.146612019,873.05257,3008656476 +4,9560,19,128,1.81095719,0.132841081,963.55735,3008656476 +4,9561,20,128,1.73770237,0.132393924,966.81174,3008656476 +4,9562,21,128,2.18360424,0.13190714,970.379617,3008656476 +4,9563,22,128,1.51915288,0.132460932,966.322659,3008656476 +4,9564,23,128,1.31238496,0.1328721,963.332408,3008656476 +4,9565,24,128,1.42205596,0.148077425,864.412654,3008656476 +4,9566,25,128,1.66330981,0.133009328,962.338521,3008656476 +4,9567,26,128,1.57990205,0.147173253,869.723251,3008656476 +4,9568,27,128,1.76869655,0.132548293,965.685767,3008656476 +4,9569,28,128,1.63173556,0.131471962,973.591616,3008656476 +4,9570,29,128,1.46602547,0.13259032,965.379675,3008656476 +4,9571,30,128,1.45240819,0.132773528,964.047592,3008656476 +4,9572,31,128,1.45193648,0.132143992,968.64033,3008656476 +4,9573,32,128,1.69621634,0.136780344,935.806975,3008656476 +4,9574,33,128,1.72866392,0.131880803,970.573405,3008656476 +4,9575,34,128,1.85270095,0.135331279,945.827165,3008656476 +4,9576,35,128,1.77180374,0.131991347,969.76054,3008656476 +4,9577,36,128,1.56910086,0.13207907,969.116454,3008656476 +4,9578,37,128,1.56183636,0.132834944,963.601867,3008656476 +4,9579,38,128,1.540236,0.133122049,961.523662,3008656476 +4,9580,39,128,1.17128158,0.146114491,876.025363,3008656476 +4,9581,40,128,1.77152741,0.132780633,963.996007,3008656476 +4,9582,41,128,1.78751659,0.1440375,888.657468,3008656476 +4,9583,42,128,1.44886875,0.132257515,967.808899,3008656476 +4,9584,43,128,2.04940939,0.110837527,1154.84352,3008656476 +4,9585,44,128,2.19341779,0.108965353,1174.68531,3008656476 +4,9586,45,128,1.86316967,0.10910061,1173.229,3008656476 +4,9587,46,128,1.5538981,0.109025828,1174.03373,3008656476 +4,9588,47,128,1.63259554,0.109037886,1173.9039,3008656476 +4,9589,48,128,1.4122926,0.12111869,1056.8146,3008656476 +4,9590,49,128,1.7483393,0.108948756,1174.86426,3008656476 +4,9591,50,128,1.73653984,0.109014209,1174.15887,3008656476 +4,9592,51,128,2.02905273,0.110678376,1156.50414,3008656476 +4,9593,52,128,1.48058665,0.108956516,1174.78059,3008656476 +4,9594,53,128,1.93114543,0.109129205,1172.92158,3008656476 +4,9595,54,128,1.40121627,0.108998591,1174.32711,3008656476 +4,9596,55,128,1.51156986,0.108963586,1174.70436,3008656476 +4,9597,56,128,2.02469826,0.109039531,1173.88619,3008656476 +4,9598,57,128,1.67979944,0.10892249,1175.14758,3008656476 +4,9599,58,128,1.43192017,0.121420785,1054.18525,3008656476 +4,9600,59,128,1.62858582,0.10900855,1174.21982,3008656476 +4,9601,60,128,1.75279486,0.124176973,1030.78692,3008656476 +4,9602,61,128,1.85804737,0.109092487,1173.31636,3008656476 +4,9603,62,128,1.31378198,0.109119469,1173.02624,3008656476 +4,9604,63,128,1.95314288,0.109007412,1174.23208,3008656476 +4,9605,64,128,1.43993568,0.109050251,1173.7708,3008656476 +4,9606,65,128,2.0940752,0.109011497,1174.18808,3008656476 +4,9607,66,128,1.49300432,0.109008497,1174.22039,3008656476 +4,9608,67,128,1.96073794,0.123102295,1039.78565,3008656476 +4,9609,68,128,2.3518312,0.108979368,1174.53425,3008656476 +4,9610,69,128,1.7193439,0.121529528,1053.24197,3008656476 +4,9611,70,128,1.81686354,0.106878306,1197.62377,3008656476 +4,9612,71,128,1.81945813,0.109092718,1173.31388,3008656476 +4,9613,72,128,1.6651026,0.109007989,1174.22586,3008656476 +4,9614,73,128,1.88445103,0.108997673,1174.337,3008656476 +4,9615,74,128,1.57423151,0.109057786,1173.6897,3008656476 +4,9616,75,128,1.33551753,0.109090909,1173.33333,3008656476 +4,9617,76,128,2.26686931,0.109016454,1174.13469,3008656476 +4,9618,77,128,1.89512932,0.11157676,1147.1923,3008656476 +4,9619,78,128,1.61179209,0.109053102,1173.74011,3008656476 +4,9620,79,128,1.61727798,0.123192288,1039.02608,3008656476 +4,9621,80,128,1.57607114,0.108939132,1174.96805,3008656476 +4,9622,81,128,1.84139287,0.109008941,1174.21561,3008656476 +4,9623,82,128,1.99419773,0.108919631,1175.17842,3008656476 +4,9624,83,128,1.8939122,0.108980939,1174.51732,3008656476 +4,9625,84,128,1.64701355,0.108984218,1174.48198,3008656476 +4,9626,85,128,1.6091069,0.108979843,1174.52913,3008656476 +4,9627,86,128,1.7820102,0.121676036,1051.97378,3008656476 +4,9628,87,128,1.22170246,0.108971637,1174.61758,3008656476 +4,9629,88,128,1.14728153,0.125679576,1018.46302,3008656476 +4,9630,89,128,1.51849365,0.109210475,1172.04874,3008656476 +4,9631,90,128,1.4682194,0.108891228,1175.48495,3008656476 +4,9632,91,128,1.49139404,0.109060504,1173.66045,3008656476 +4,9633,92,128,1.60375834,0.109092624,1173.31489,3008656476 +4,9634,93,128,1.39754343,0.109029207,1173.99735,3008656476 +4,9635,94,128,1.3864994,0.109139158,1172.81462,3008656476 +4,9636,95,128,1.60573709,0.118927101,1076.28958,3008656476 +4,9637,96,128,1.35414183,0.107752799,1187.90418,3008656476 +4,9638,97,128,1.82255077,0.109051278,1173.75974,3008656476 +4,9639,98,128,1.47341776,0.12450924,1028.03615,3008656476 +4,9640,99,128,1.69588292,0.108955093,1174.79593,3008656476 +4,9641,100,128,1.85162973,0.108986693,1174.45531,3008656476 +4,9642,101,128,1.69798446,0.108991572,1174.40273,3008656476 +4,9643,102,128,1.61104143,0.109005574,1174.25188,3008656476 +4,9644,103,128,1.30191934,0.109121715,1173.00209,3008656476 +4,9645,104,128,1.4583019,0.108949469,1174.85658,3008656476 +4,9646,105,128,1.39621806,0.123576743,1035.7936,3008656476 +4,9647,106,128,1.4470489,0.108986169,1174.46095,3008656476 +4,9648,107,128,1.36572707,0.123552255,1035.9989,3008656476 +4,9649,108,128,1.5791496,0.109038028,1173.90237,3008656476 +4,9650,109,128,1.12842822,0.108956614,1174.77953,3008656476 +4,9651,110,128,1.3511281,0.108936486,1174.99659,3008656476 +4,9652,111,128,1.5421375,0.108959011,1174.75369,3008656476 +4,9653,112,128,1.39814222,0.108918709,1175.18837,3008656476 +4,9654,113,128,1.80490518,0.109017687,1174.12141,3008656476 +4,9655,114,128,1.68001091,0.120953081,1058.26159,3008656476 +4,9656,115,128,1.53434861,0.109050327,1173.76998,3008656476 +4,9657,116,128,1.36281705,0.108969602,1174.63951,3008656476 +4,9658,117,128,1.36946905,0.122488342,1044.99741,3008656476 +4,9659,118,128,1.55484116,0.10905666,1173.70182,3008656476 +4,9660,119,128,1.55019343,0.10887374,1175.67377,3008656476 +4,9661,120,128,1.60377097,0.109057164,1173.69639,3008656476 +4,9662,121,128,1.23277235,0.108978868,1174.53964,3008656476 +4,9663,122,128,1.18206322,0.108983895,1174.48546,3008656476 +4,9664,123,128,1.29198039,0.108899056,1175.40046,3008656476 +4,9665,124,128,1.20857286,0.120785129,1059.73311,3008656476 +4,9666,125,128,1.36575234,0.109011616,1174.18679,3008656476 +4,9667,126,128,1.20483756,0.12295032,1041.0709,3008656476 +4,9668,127,128,1.72024655,0.108784631,1176.6368,3008656476 +4,9669,128,128,1.57114911,0.109028461,1174.00538,3008656476 +4,9670,129,128,1.48972976,0.109117249,1173.0501,3008656476 +4,9671,130,128,1.21643186,0.108949316,1174.85822,3008656476 +4,9672,131,128,1.32249343,0.109129776,1172.91545,3008656476 +4,9673,132,128,1.15414906,0.109040834,1173.87217,3008656476 +4,9674,133,128,1.30544603,0.124313031,1029.65875,3008656476 +4,9675,134,128,1.28878868,0.109037312,1173.91008,3008656476 +4,9676,135,128,1.10336864,0.108848987,1175.94112,3008656476 +4,9677,136,128,1.29745734,0.110974593,1153.41716,3008656476 +4,9678,137,128,1.10053372,0.10896351,1174.70518,3008656476 +4,9679,138,128,1.1682508,0.108955826,1174.78803,3008656476 +4,9680,139,128,1.40676296,0.108967798,1174.65896,3008656476 +4,9681,140,128,1.00896502,0.109067426,1173.58596,3008656476 +4,9682,141,128,0.950868309,0.108912941,1175.25061,3008656476 +4,9683,142,128,1.5798887,0.109055075,1173.71888,3008656476 +4,9684,143,128,1.09652948,0.117782192,1086.75172,3008656476 +4,9685,144,128,0.729257822,0.108974478,1174.58695,3008656476 +4,9686,145,128,0.627617896,0.124552003,1027.68319,3008656476 +4,9687,146,128,1.19302046,0.108948712,1174.86474,3008656476 +4,9688,147,128,1.57386613,0.109123033,1172.98792,3008656476 +4,9689,148,128,1.46331465,0.109002226,1174.28795,3008656476 +4,9690,149,128,1.44043207,0.108918834,1175.18702,3008656476 +4,9691,150,128,1.09772146,0.10897162,1174.61776,3008656476 +4,9692,151,128,0.753320456,0.109024442,1174.04866,3008656476 +4,9693,152,128,1.21189606,0.120913672,1058.60651,3008656476 +4,9694,153,128,1.33580613,0.108923484,1175.13685,3008656476 +4,9695,154,128,0.90070641,0.10910503,1173.18147,3008656476 +4,9696,155,128,1.71922779,0.111264894,1150.40778,3008656476 +4,9697,156,128,1.65033197,0.108886529,1175.53568,3008656476 +4,9698,157,128,1.52278078,0.109029709,1173.99194,3008656476 +4,9699,158,128,1.35329509,0.109066913,1173.59148,3008656476 +4,9700,159,128,0.95666194,0.109000708,1174.3043,3008656476 +4,9701,160,128,1.31614745,0.109032201,1173.96511,3008656476 +4,9702,161,128,1.13623762,0.108914794,1175.23061,3008656476 +4,9703,162,128,1.04222,0.113041001,1132.33251,3008656476 +4,9704,163,128,1.59053576,0.109017483,1174.1236,3008656476 +4,9705,164,128,1.38629198,0.130751968,978.95276,3008656476 +4,9706,165,128,1.29654801,0.124261931,1030.08217,3008656476 +4,9707,166,128,1.54392982,0.125868097,1016.9376,3008656476 +4,9708,167,128,1.20584536,0.129300528,989.94182,3008656476 +4,9709,168,128,1.08969843,0.13065981,979.643243,3008656476 +4,9710,169,128,1.13574004,0.12997295,984.820303,3008656476 +4,9711,170,128,1.37207079,0.144644847,884.926098,3008656476 +4,9712,171,128,1.1944623,0.132203989,968.20074,3008656476 +4,9713,172,128,1.40808475,0.14641261,874.241638,3008656476 +4,9714,173,128,1.28209102,0.130273491,982.548322,3008656476 +4,9715,174,128,0.916830122,0.130532592,980.59801,3008656476 +4,9716,175,128,1.31672585,0.130389432,981.67465,3008656476 +4,9717,176,128,0.951569617,0.131461226,973.671126,3008656476 +4,9718,177,128,1.658764,0.128918338,992.876591,3008656476 +4,9719,178,128,1.14252424,0.145069026,882.338591,3008656476 +4,9720,179,128,1.64358163,0.12949453,988.45874,3008656476 +4,9721,180,128,1.30898464,0.143353856,892.89541,3008656476 +4,9722,181,128,1.34374928,0.129227939,990.497883,3008656476 +4,9723,182,128,1.51800847,0.130559143,980.398592,3008656476 +4,9724,183,128,0.986553848,0.126445547,1012.29346,3008656476 +4,9725,184,128,1.19069004,0.127392012,1004.77258,3008656476 +4,9726,185,128,1.15353465,0.126738111,1009.95667,3008656476 +4,9727,186,128,1.40673983,0.141086473,907.24502,3008656476 +4,9728,187,128,0.853316545,0.126347302,1013.0806,3008656476 +4,9729,188,128,1.36421454,0.140977344,907.947308,3008656476 +4,9730,189,128,1.42664933,0.126409843,1012.57938,3008656476 +4,9731,190,128,1.08198166,0.12755188,1003.51324,3008656476 +4,9732,191,128,0.954922497,0.126821044,1009.29622,3008656476 +4,9733,192,128,1.01446664,0.126714619,1010.1439,3008656476 +4,9734,193,128,1.52183473,0.127713324,1002.24468,3008656476 +4,9735,194,128,1.21851873,0.142336504,899.277391,3008656476 +4,9736,195,128,1.4189353,0.12704706,1007.50069,3008656476 +4,9737,196,128,1.39789009,0.141272101,906.052923,3008656476 +4,9738,197,128,1.30110133,0.127111249,1006.99191,3008656476 +4,9739,198,128,1.13251722,0.127173521,1006.49883,3008656476 +4,9740,199,128,1.31638265,0.12744222,1004.37673,3008656476 +4,9741,200,128,0.919338822,0.126217591,1014.12172,3008656476 +4,9742,201,128,1.15825069,0.128063873,999.501241,3008656476 +4,9743,202,128,1.68367827,0.142641405,897.355154,3008656476 +4,9744,203,128,1.19974136,0.127434763,1004.4355,3008656476 +4,9745,204,128,1.28274632,0.140522037,910.889158,3008656476 +4,9746,205,128,1.27070391,0.127337947,1005.19918,3008656476 +4,9747,206,128,0.96135366,0.126812779,1009.362,3008656476 +4,9748,207,128,1.15875804,0.127836055,1001.28246,3008656476 +4,9749,208,128,0.934284687,0.127718735,1002.20222,3008656476 +4,9750,209,128,1.09603834,0.126810321,1009.38156,3008656476 +4,9751,210,128,0.948254406,0.142038816,901.162116,3008656476 +4,9752,211,128,1.08133125,0.126134582,1014.78911,3008656476 +4,9753,212,128,1.28465784,0.140867992,908.652123,3008656476 +4,9754,213,128,1.194803,0.127363928,1004.99413,3008656476 +4,9755,214,128,1.00250065,0.126506083,1011.80905,3008656476 +4,9756,215,128,1.10563898,0.126873811,1008.87645,3008656476 +4,9757,216,128,1.2023567,0.126378401,1012.8313,3008656476 +4,9758,217,128,1.39079773,0.126739929,1009.94218,3008656476 +4,9759,218,128,0.898321211,0.14348046,892.107539,3008656476 +4,9760,219,128,1.24377823,0.126826627,1009.25179,3008656476 +4,9761,220,128,1.19457638,0.139095642,920.230125,3008656476 +4,9762,221,128,1.13238597,0.126663384,1010.55251,3008656476 +4,9763,222,128,1.40779769,0.125576657,1019.29772,3008656476 +4,9764,223,128,0.987716734,0.126359321,1012.98423,3008656476 +4,9765,224,128,1.04616892,0.12551,1019.83906,3008656476 +4,9766,225,128,1.04294443,0.125904927,1016.64012,3008656476 +4,9767,226,128,1.09953952,0.144501603,885.803322,3008656476 +4,9768,227,128,1.34932554,0.125362005,1021.04302,3008656476 +4,9769,228,128,0.989518583,0.138539682,923.92301,3008656476 +4,9770,229,128,1.1047219,0.125776032,1017.68197,3008656476 +4,9771,230,128,0.969551563,0.127131756,1006.82948,3008656476 +4,9772,231,128,1.17825186,0.126867812,1008.92415,3008656476 +4,9773,232,128,1.00261438,0.127322263,1005.323,3008656476 +4,9774,233,128,1.20743442,0.127785922,1001.67529,3008656476 +4,9775,234,128,1.04613531,0.143401009,892.601809,3008656476 +4,9776,235,128,0.871492088,0.126799633,1009.46664,3008656476 +4,9777,236,128,1.22556174,0.14156654,904.168457,3008656476 +4,9778,237,128,1.1743803,0.125049729,1023.59278,3008656476 +4,9779,238,128,1.07616484,0.128514421,995.997173,3008656476 +4,9780,239,128,1.36803925,0.129312125,989.85304,3008656476 +4,9781,240,128,1.44104254,0.130135987,983.5865,3008656476 +4,9782,241,128,1.07105517,0.129766332,986.388365,3008656476 +4,9783,242,128,1.23809159,0.141857385,902.314673,3008656476 +4,9784,243,128,1.46534872,0.130022825,984.442539,3008656476 +4,9785,244,128,1.37798154,0.146461271,873.951176,3008656476 +4,9786,245,128,1.25706828,0.128728697,994.339281,3008656476 +4,9787,246,128,1.21923757,0.139165989,919.764958,3008656476 +4,9788,247,128,1.18087268,0.133418966,959.383841,3008656476 +4,9789,248,128,1.25570798,0.135193149,946.793539,3008656476 +4,9790,249,128,0.72076416,0.130681507,979.480593,3008656476 +4,9791,250,128,0.971547782,0.145873224,877.474265,3008656476 +4,9792,251,128,1.45668578,0.12999697,984.638334,3008656476 +4,9793,252,128,1.33394599,0.144974309,882.915055,3008656476 +4,9794,253,128,1.17762172,0.130829143,978.375284,3008656476 +4,9795,254,128,1.45676267,0.129063824,991.75738,3008656476 +4,9796,255,128,1.33342195,0.129748464,986.524203,3008656476 +4,9797,256,128,1.49806988,0.129075829,991.66514,3008656476 +4,9798,257,128,1.639696,0.129016726,992.119425,3008656476 +4,9799,258,128,1.3450135,0.143647152,891.072313,3008656476 +4,9800,259,128,1.18539238,0.127303355,1005.47232,3008656476 +4,9801,260,128,1.45675051,0.141379077,905.367348,3008656476 +4,9802,261,128,1.37448263,0.126934717,1008.39237,3008656476 +4,9803,262,128,1.55927587,0.127565993,1003.40222,3008656476 +4,9804,263,128,1.16295898,0.126142952,1014.72177,3008656476 +4,9805,264,128,1.15569568,0.126105539,1015.02282,3008656476 +4,9806,265,128,1.38375449,0.126375692,1012.85301,3008656476 +4,9807,266,128,1.15616155,0.141154358,906.808701,3008656476 +4,9808,267,128,0.908575654,0.125982469,1016.01438,3008656476 +4,9809,268,128,1.03794312,0.139410955,918.148793,3008656476 +4,9810,269,128,1.29033661,0.12678509,1009.58244,3008656476 +4,9811,270,128,1.5897038,0.126308765,1013.38969,3008656476 +4,9812,271,128,1.2541405,0.126903343,1008.64167,3008656476 +4,9813,272,128,1.24757218,0.128143276,998.881908,3008656476 +4,9814,273,128,1.29506671,0.126066013,1015.34107,3008656476 +4,9815,274,128,1.04276693,0.139419105,918.09512,3008656476 +4,9816,275,128,1.20128107,0.128105054,999.179939,3008656476 +4,9817,276,128,1.45709813,0.140657713,910.01053,3008656476 +4,9818,277,128,1.21257699,0.127394241,1004.755,3008656476 +4,9819,278,128,1.30517066,0.126098281,1015.08124,3008656476 +4,9820,279,128,1.06582344,0.126747437,1009.88235,3008656476 +4,9821,280,128,1.27608216,0.125848452,1017.09634,3008656476 +4,9822,281,128,0.981047392,0.125201006,1022.356,3008656476 +4,9823,282,128,0.934459031,0.140104521,913.603637,3008656476 +4,9824,283,128,1.19674397,0.122912053,1041.39502,3008656476 +4,9825,284,128,1.11952853,0.127318694,1005.35119,3008656476 +4,9826,285,128,1.17623258,0.133772001,956.85195,3008656476 +4,9827,286,128,1.20665264,0.130634606,979.832251,3008656476 +4,9828,287,128,0.948428869,0.129154631,991.060088,3008656476 +4,9829,288,128,1.08918691,0.131646901,972.297859,3008656476 +4,9830,289,128,1.19883835,0.131530404,973.159027,3008656476 +4,9831,290,128,1.19061303,0.150492133,850.542799,3008656476 +4,9832,291,128,1.48812985,0.136715579,936.250286,3008656476 +4,9833,292,128,1.21129823,0.147651514,866.906112,3008656476 +4,9834,293,128,1.00247085,0.131428858,973.91092,3008656476 +4,9835,294,128,1.02509725,0.130581877,980.227907,3008656476 +4,9836,295,128,1.1072855,0.130672572,979.547567,3008656476 +4,9837,296,128,1.34678912,0.130920524,977.69239,3008656476 +4,9838,297,128,1.03831017,0.129299066,989.953013,3008656476 +4,9839,298,128,1.19513059,0.143048847,894.799243,3008656476 +4,9840,299,128,1.31525743,0.12910752,991.421724,3008656476 +4,9841,300,128,1.12504482,0.143877416,889.646225,3008656476 +4,9842,301,128,1.26126802,0.128066385,999.481636,3008656476 +4,9843,302,128,1.33069968,0.126736978,1009.96569,3008656476 +4,9844,303,128,1.30476713,0.127971832,1000.22011,3008656476 +4,9845,304,128,1.07015061,0.127007239,1007.81657,3008656476 +4,9846,305,128,1.18613529,0.127570353,1003.36792,3008656476 +4,9847,306,128,1.29134846,0.140645504,910.089526,3008656476 +4,9848,307,128,1.12774289,0.126044993,1015.51039,3008656476 +4,9849,308,128,1.21033025,0.138926174,921.35266,3008656476 +4,9850,309,128,1.38924897,0.126426203,1012.44835,3008656476 +4,9851,310,128,1.18243146,0.127179282,1006.45324,3008656476 +4,9852,311,128,0.962544262,0.126966379,1008.1409,3008656476 +4,9853,312,128,1.10411155,0.12660799,1010.99465,3008656476 +4,9854,313,128,1.16045475,0.127546569,1003.55502,3008656476 +4,9855,314,128,0.806755424,0.142575992,897.766855,3008656476 +4,9856,315,128,1.1316191,0.120008921,1066.58737,3008656476 +4,9857,316,128,1.11838257,0.127118324,1006.93587,3008656476 +4,9858,317,128,1.02295256,0.129545576,988.069249,3008656476 +4,9859,318,128,1.26782179,0.12634232,1013.12054,3008656476 +4,9860,319,128,1.26694596,0.12602962,1015.63426,3008656476 +4,9861,320,128,1.53013837,0.125958347,1016.20895,3008656476 +4,9862,321,128,1.04240334,0.125976733,1016.06064,3008656476 +4,9863,322,128,1.04805624,0.126835075,1009.18457,3008656476 +4,9864,323,128,1.26385975,0.140628661,910.198526,3008656476 +4,9865,324,128,0.882971168,0.127465274,1004.19507,3008656476 +4,9866,325,128,1.2144928,0.142251385,899.815492,3008656476 +4,9867,326,128,1.18984044,0.128108356,999.154185,3008656476 +4,9868,327,128,1.32590508,0.128919588,992.866964,3008656476 +4,9869,328,128,1.26397872,0.13021529,982.987482,3008656476 +4,9870,329,128,1.21991205,0.130810494,978.514767,3008656476 +4,9871,330,128,1.78340983,0.129750546,986.508373,3008656476 +4,9872,331,128,1.23084331,0.144503221,885.793404,3008656476 +4,9873,332,128,0.875042021,0.131479423,973.536369,3008656476 +4,9874,333,128,1.4493171,0.158791053,806.090756,3008656476 +4,9875,334,128,1.2465682,0.135195134,946.779638,3008656476 +4,9876,335,128,1.42455363,0.143805957,890.088301,3008656476 +4,9877,336,128,1.27900875,0.143791988,890.174771,3008656476 +4,9878,337,128,1.22508097,0.131062716,976.631676,3008656476 +4,9879,338,128,1.08692217,0.142382537,898.98665,3008656476 +4,9880,339,128,1.27575636,0.131515061,973.272559,3008656476 +4,9881,340,128,1.23575449,0.146127916,875.944881,3008656476 +4,9882,341,128,1.17835689,0.12994099,985.062527,3008656476 +4,9883,342,128,1.23334622,0.128980355,992.399191,3008656476 +4,9884,343,128,1.18805206,0.129166966,990.965445,3008656476 +4,9885,344,128,1.31688547,0.128544437,995.764601,3008656476 +4,9886,345,128,1.0792284,0.128887893,993.111122,3008656476 +4,9887,346,128,1.07086909,0.142144484,900.492206,3008656476 +4,9888,347,128,1.42272532,0.126564798,1011.33966,3008656476 +4,9889,348,128,1.27732491,0.144006436,888.849162,3008656476 +4,9890,349,128,1.44647849,0.128432684,996.631044,3008656476 +4,9891,350,128,1.32346177,0.126955826,1008.2247,3008656476 +4,9892,351,128,1.37449694,0.125470352,1020.16132,3008656476 +4,9893,352,128,1.57782471,0.126476155,1012.04848,3008656476 +4,9894,353,128,1.35475433,0.126865358,1008.94367,3008656476 +4,9895,354,128,1.16718531,0.141147896,906.850216,3008656476 +4,9896,355,128,1.28511608,0.126019857,1015.71294,3008656476 +4,9897,356,128,1.42526591,0.140056214,913.91875,3008656476 +4,9898,357,128,1.07810211,0.125879735,1016.84358,3008656476 +4,9899,358,128,0.794066072,0.126412195,1012.56054,3008656476 +4,9900,359,128,1.00459087,0.126424629,1012.46095,3008656476 +4,9901,360,128,1.37169838,0.12632163,1013.28648,3008656476 +4,9902,361,128,1.04993665,0.128427568,996.670746,3008656476 +4,9903,362,128,1.24083531,0.139502607,917.545577,3008656476 +4,9904,363,128,1.22727072,0.128230061,998.205873,3008656476 +4,9905,364,128,1.13712275,0.139877814,915.084361,3008656476 +4,9906,365,128,1.16811562,0.126534543,1011.58148,3008656476 +4,9907,366,128,1.36360669,0.126843203,1009.1199,3008656476 +4,9908,367,128,1.18096483,0.126256948,1013.80559,3008656476 +4,9909,368,128,0.979448199,0.127167318,1006.54792,3008656476 +4,9910,369,128,1.07441938,0.126835802,1009.17878,3008656476 +4,9911,370,128,1.22558641,0.140017637,914.170548,3008656476 +4,9912,371,128,1.40179217,0.120294157,1064.05833,3008656476 +4,9913,372,128,1.55554962,0.126341079,1013.1305,3008656476 +4,9914,373,128,1.45640254,0.133130074,961.465702,3008656476 +4,9915,374,128,1.32959735,0.129468805,988.655144,3008656476 +4,9916,375,128,0.809768021,0.130297418,982.367893,3008656476 +4,9917,376,128,1.63179874,0.129560325,987.956768,3008656476 +4,9918,377,128,0.837756872,0.130309192,982.279132,3008656476 +4,9919,378,128,1.08440161,0.135274759,946.222347,3008656476 +4,9920,379,128,1.06361818,0.144554512,885.479106,3008656476 +4,9921,380,128,1.07473361,0.141116544,907.051692,3008656476 +4,9922,381,128,1.12772739,0.131144608,976.021828,3008656476 +4,9923,382,128,0.700897336,0.129473484,988.619415,3008656476 +4,9924,383,128,0.881392956,0.129647395,987.293266,3008656476 +4,9925,384,128,1.50219214,0.128737765,994.269242,3008656476 +4,9926,385,128,1.165218,0.129135244,991.208876,3008656476 +4,9927,386,128,1.06004775,0.13281701,963.73198,3008656476 +4,9928,387,128,1.19254744,0.125381509,1020.88419,3008656476 +4,9929,388,128,1.47448778,0.127032002,1007.62011,3008656476 +4,9930,389,128,1.55592144,0.12883094,993.550152,3008656476 +4,9931,390,128,1.51694667,0.127346794,1005.12935,3008656476 +4,9932,391,128,1.49546731,0.126328103,1013.23456,3008656476 +4,9933,392,128,0.96377176,0.127656892,1002.68774,3008656476 +4,9934,393,128,1.28037167,0.12660019,1011.05693,3008656476 +4,9935,394,128,1.01474106,0.128548383,995.734034,3008656476 +4,9936,395,128,1.35623813,0.141251701,906.183778,3008656476 +4,9937,396,128,1.41834342,0.127849947,1001.17366,3008656476 +4,9938,397,128,1.79778433,0.140309305,912.270216,3008656476 +4,9939,398,128,1.19912469,0.126296837,1013.4854,3008656476 +4,9940,399,128,1.43872726,0.124888266,1024.91614,3008656476 +4,9941,400,128,1.11776781,0.126390717,1012.7326,3008656476 +4,9942,401,128,1.31897998,0.125592666,1019.16779,3008656476 +4,9943,402,128,1.16821063,0.12574478,1017.9349,3008656476 +4,9944,403,128,1.27769029,0.139951222,914.604376,3008656476 +4,9945,404,128,1.4034673,0.126004179,1015.83932,3008656476 +4,9946,405,128,1.14007151,0.140886546,908.532458,3008656476 +4,9947,406,128,1.19292891,0.126549602,1011.4611,3008656476 +4,9948,407,128,1.07677782,0.127327647,1005.28049,3008656476 +4,9949,408,128,1.0153991,0.127837917,1001.26788,3008656476 +4,9950,409,128,1.28867328,0.129061354,991.776361,3008656476 +4,9951,410,128,0.947996676,0.12954647,988.06243,3008656476 +4,9952,411,128,1.40383589,0.145165867,881.749978,3008656476 +4,9953,412,128,1.05441225,0.129869467,985.605031,3008656476 +4,9954,413,128,1.11335516,0.144361392,886.663659,3008656476 +4,9955,414,128,1.20096231,0.131136793,976.079993,3008656476 +4,9956,415,128,1.3800571,0.135160912,947.019357,3008656476 +4,9957,416,128,1.11212838,0.129287184,990.043994,3008656476 +4,9958,417,128,1.0004319,0.132308771,967.433973,3008656476 +4,9959,418,128,1.04754913,0.130426072,981.398872,3008656476 +4,9960,419,128,0.857195914,0.1428323,896.155842,3008656476 +4,9961,420,128,0.959896624,0.129724311,986.707881,3008656476 +4,9962,421,128,1.05428624,0.147274819,869.123458,3008656476 +4,9963,422,128,1.02210963,0.130659836,979.643048,3008656476 +4,9964,423,128,1.19553971,0.131601718,972.631679,3008656476 +4,9965,424,128,1.42530906,0.182479866,701.447249,3008656476 +4,9966,425,128,1.4048326,0.129901903,985.358929,3008656476 +4,9967,426,128,1.56864905,0.141510822,904.524461,3008656476 +4,9968,427,128,1.04513323,0.128964619,992.520282,3008656476 +4,9969,428,128,1.04622555,0.142317145,899.399717,3008656476 +4,9970,429,128,0.726093054,0.127981268,1000.14637,3008656476 +4,9971,430,128,0.948312938,0.127146052,1006.71628,3008656476 +4,9972,431,128,0.853854358,0.128605919,995.288561,3008656476 +4,9973,432,128,0.953744292,0.127147946,1006.70128,3008656476 +4,9974,433,128,0.93889612,0.125688251,1018.39272,3008656476 +4,9975,434,128,0.91250205,0.142677732,897.12668,3008656476 +4,9976,435,128,1.11162102,0.125889317,1016.76618,3008656476 +4,9977,436,128,1.40896428,0.139186003,919.632702,3008656476 +4,9978,437,128,0.904405773,0.125792119,1017.55182,3008656476 +4,9979,438,128,1.00858784,0.126411262,1012.56801,3008656476 +4,9980,439,128,1.47111785,0.126445008,1012.29777,3008656476 +4,9981,440,128,1.14082634,0.127083745,1007.20985,3008656476 +4,9982,441,128,1.00651264,0.127399471,1004.71375,3008656476 +4,9983,442,128,0.961994469,0.140196659,913.003212,3008656476 +4,9984,443,128,0.911555171,0.12453465,1027.82639,3008656476 +4,9985,444,128,0.809531629,0.139947503,914.62868,3008656476 +4,9986,445,128,1.07521367,0.126780305,1009.62054,3008656476 +4,9987,446,128,1.24205947,0.127682139,1002.48947,3008656476 +4,9988,447,128,1.66582465,0.12748807,1004.01551,3008656476 +4,9989,448,128,1.03727973,0.126768446,1009.71499,3008656476 +4,9990,449,128,1.29690909,0.12560871,1019.03761,3008656476 +4,9991,450,128,0.902381599,0.126368452,1012.91104,3008656476 +4,9992,451,128,1.46771693,0.134898864,948.858991,3008656476 +4,9993,452,128,1.02856994,0.126681101,1010.41117,3008656476 +4,9994,453,128,1.17063522,0.133529512,958.589589,3008656476 +4,9995,454,128,1.32640481,0.130366013,981.850998,3008656476 +4,9996,455,128,0.973357141,0.130189098,983.185243,3008656476 +4,9997,456,128,1.08336294,0.130416839,981.468352,3008656476 +4,9998,457,128,1.07114863,0.131276237,975.043183,3008656476 +4,9999,458,128,1.39892638,0.135579357,944.096526,3008656476 +4,10000,459,128,0.995377302,0.156862691,816.000281,3008656476 +4,10001,460,128,1.43854499,0.1505011,850.492123,3008656476 +4,10002,461,128,1.17577159,0.13066813,979.580866,3008656476 +4,10003,462,128,1.17441273,0.130602828,980.070661,3008656476 +4,10004,463,128,0.92534405,0.130044434,984.278958,3008656476 +4,10005,464,128,1.22639036,0.129360651,989.481724,3008656476 +4,10006,465,128,0.697202682,0.129917417,985.241263,3008656476 +4,10007,466,128,1.16512465,0.142545585,897.958362,3008656476 +4,10008,467,128,1.12814176,0.129591255,987.720969,3008656476 +4,10009,468,128,1.43059778,0.140606596,910.341361,3008656476 +4,10010,469,128,1.40562773,0.126647445,1010.67969,3008656476 +4,10011,470,128,1.36904109,0.128595393,995.370029,3008656476 +4,10012,471,128,0.825760126,0.126847676,1009.08431,3008656476 +4,10013,472,128,1.81401098,0.126331101,1013.21052,3008656476 +4,10014,473,128,1.12206483,0.126663504,1010.55155,3008656476 +4,10015,474,128,1.06170511,0.139436502,917.980573,3008656476 +4,10016,475,128,1.06933069,0.122184469,1047.59632,3008656476 +4,10017,476,128,0.869528174,0.140159879,913.242798,3008656476 +4,10018,477,128,1.34425855,0.126693126,1010.31527,3008656476 +4,10019,478,128,1.2019769,0.126495321,1011.89514,3008656476 +4,10020,479,128,1.40688014,0.126708957,1010.18904,3008656476 +4,10021,480,128,1.26278114,0.126839715,1009.14765,3008656476 +4,10022,481,128,1.07380724,0.125791494,1017.55688,3008656476 +4,10023,482,128,1.1139437,0.127538327,1003.61988,3008656476 +4,10024,483,128,1.33030093,0.138046,927.227156,3008656476 +4,10025,484,128,1.22962415,0.126990768,1007.94729,3008656476 +4,10026,485,128,1.04792905,0.128446099,996.526956,3008656476 +4,10027,486,128,0.891571999,0.124630704,1027.03424,3008656476 +4,10028,487,128,1.1908828,0.126107575,1015.00643,3008656476 +4,10029,488,128,1.03081548,0.12582721,1017.26805,3008656476 +4,10030,489,128,1.47464275,0.126851945,1009.05035,3008656476 +4,10031,490,128,1.7028749,0.127165489,1006.5624,3008656476 +4,10032,491,128,1.38226736,0.142868916,895.926165,3008656476 +4,10033,492,128,1.42511237,0.12835791,997.211625,3008656476 +4,10034,493,128,1.36342978,0.143507324,891.94054,3008656476 +4,10035,494,128,1.34258103,0.129524197,988.232338,3008656476 +4,10036,495,128,1.31770158,0.130340953,982.039774,3008656476 +4,10037,496,128,1.57003975,0.130058511,984.172424,3008656476 +4,10038,497,128,1.33493996,0.129773764,986.331875,3008656476 +4,10039,498,128,1.52486241,0.131312366,974.774912,3008656476 +4,10040,499,128,1.2298528,0.152920293,837.037371,3008656476 +4,10041,500,128,1.37762582,0.155632442,822.45063,3008656476 +4,10042,501,128,1.33056557,0.131154475,975.9484,3008656476 +4,10043,502,128,0.96110177,0.132061455,969.24572,3008656476 +4,10044,503,128,1.6135546,0.138957432,921.145405,3008656476 +4,10045,504,128,1.35267901,0.136119029,940.353461,3008656476 +4,10046,505,128,1.52897966,0.143888008,889.580736,3008656476 +4,10047,506,128,1.59436464,0.14424189,887.398245,3008656476 +4,10048,507,128,1.26178217,0.131834561,970.913841,3008656476 +4,10049,508,128,1.37355554,0.14560721,879.077348,3008656476 +4,10050,509,128,1.31398165,0.130504868,980.806325,3008656476 +4,10051,510,128,1.37201548,0.129069197,991.716095,3008656476 +4,10052,511,128,1.50279844,0.129362904,989.464491,3008656476 +4,10053,512,128,1.62973344,0.11827271,1082.24459,3008656476 +4,10054,513,128,1.33929694,0.128255928,998.004552,3008656476 +4,10055,514,128,1.47592402,0.14208666,900.858673,3008656476 +4,10056,515,128,1.55067992,0.128393033,996.938829,3008656476 +4,10057,516,128,1.36140895,0.144023145,888.746041,3008656476 +4,10058,517,128,1.75163233,0.127463204,1004.21138,3008656476 +4,10059,518,128,1.54140615,0.128925456,992.821774,3008656476 +4,10060,519,128,1.60493135,0.126492742,1011.91577,3008656476 +4,10061,520,128,1.12918115,0.127184511,1006.41186,3008656476 +4,10062,521,128,1.24516749,0.126904238,1008.63456,3008656476 +4,10063,522,128,0.824889243,0.138972964,921.042455,3008656476 +4,10064,523,128,1.18580306,0.126824215,1009.27098,3008656476 +4,10065,524,128,1.02892673,0.139139916,919.93731,3008656476 +4,10066,525,128,1.26016223,0.126592737,1011.11646,3008656476 +4,10067,526,128,1.5480994,0.126108573,1014.9984,3008656476 +4,10068,527,128,1.33966303,0.126714679,1010.14343,3008656476 +4,10069,528,128,1.24877238,0.126879264,1008.83309,3008656476 +4,10070,529,128,1.26105607,0.126592842,1011.11562,3008656476 +4,10071,530,128,0.786546826,0.139633543,916.685184,3008656476 +4,10072,531,128,1.508811,0.127630875,1002.89213,3008656476 +4,10073,532,128,1.55206895,0.139494031,917.601987,3008656476 +4,10074,533,128,1.60521483,0.127129077,1006.8507,3008656476 +4,10075,534,128,1.53386688,0.126863686,1008.95697,3008656476 +4,10076,535,128,1.1635648,0.126717096,1010.12416,3008656476 +4,10077,536,128,1.24487257,0.126860991,1008.9784,3008656476 +4,10078,537,128,1.36621106,0.126789722,1009.54555,3008656476 +4,10079,538,128,1.15181911,0.13923732,919.293764,3008656476 +4,10080,539,128,1.17526317,0.121190722,1056.18646,3008656476 +4,10081,540,128,1.0877651,0.138480856,924.315488,3008656476 +4,10082,541,128,1.25861073,0.127039702,1007.55904,3008656476 +4,10083,542,128,1.17745519,0.126956677,1008.21795,3008656476 +4,10084,543,128,1.66756177,0.127189632,1006.37134,3008656476 +4,10085,544,128,1.2268393,0.128115332,999.09978,3008656476 +4,10086,545,128,0.972448111,0.128208656,998.372528,3008656476 +4,10087,546,128,1.16582298,0.128480229,996.262234,3008656476 +4,10088,547,128,1.21418822,0.140374473,911.8467,3008656476 +4,10089,548,128,1.32071376,0.145139709,881.908892,3008656476 +4,10090,549,128,1.39334261,0.127600693,1003.12935,3008656476 +4,10091,550,128,1.11584187,0.133460439,959.085711,3008656476 +4,10092,551,128,0.986866891,0.144075407,888.423657,3008656476 +4,10093,552,128,0.986797273,0.143980753,889.007713,3008656476 +4,10094,553,128,1.30153239,0.131619456,972.500601,3008656476 +4,10095,554,128,1.58646607,0.151341947,845.766838,3008656476 +4,10096,555,128,1.58117735,0.143692272,890.792512,3008656476 +4,10097,556,128,0.758190632,0.149692497,855.086277,3008656476 +4,10098,557,128,1.17621315,0.130078089,984.024296,3008656476 +4,10099,558,128,1.43636906,0.13050362,980.815705,3008656476 +4,10100,559,128,1.47021079,0.129927814,985.162423,3008656476 +4,10101,560,128,1.15274644,0.130707268,979.287548,3008656476 +4,10102,561,128,1.22726727,0.130348947,981.979548,3008656476 +4,10103,562,128,1.61701512,0.142430437,898.684317,3008656476 +4,10104,563,128,1.54325652,0.130324666,982.162502,3008656476 +4,10105,564,128,1.1946975,0.146940692,871.09975,3008656476 +4,10106,565,128,1.24528003,0.129524861,988.227272,3008656476 +4,10107,566,128,1.00349689,0.130368223,981.834354,3008656476 +4,10108,567,128,1.28959429,0.12993284,985.124315,3008656476 +4,10109,568,128,1.2769146,0.128422536,996.709799,3008656476 +4,10110,569,128,1.31912959,0.128357806,997.212433,3008656476 +4,10111,570,128,1.66813362,0.142768358,896.557205,3008656476 +4,10112,571,128,1.10074115,0.129182728,990.844535,3008656476 +4,10113,572,128,1.06135869,0.145446893,880.0463,3008656476 +4,10114,573,128,1.44397438,0.130407579,981.538044,3008656476 +4,10115,574,128,1.2177881,0.129213742,990.606711,3008656476 +4,10116,575,128,1.3149811,0.129315314,989.828629,3008656476 +4,10117,576,128,0.800101399,0.129463329,988.696961,3008656476 +4,10118,577,128,1.47966993,0.128506041,996.062123,3008656476 +4,10119,578,128,1.05189955,0.142619399,897.493615,3008656476 +4,10120,579,128,1.31021571,0.129870974,985.593594,3008656476 +4,10121,580,128,1.15968442,0.13612902,940.284445,3008656476 +4,10122,581,128,1.36721241,0.128030098,999.764915,3008656476 +4,10123,582,128,1.44108582,0.128274515,997.859941,3008656476 +4,10124,583,128,0.928529501,0.127031886,1007.62103,3008656476 +4,10125,584,128,1.51181829,0.128637755,995.042241,3008656476 +4,10126,585,128,1.01466978,0.126537805,1011.5554,3008656476 +4,10127,586,128,1.14350331,0.14494557,883.090114,3008656476 +4,10128,587,128,1.60230553,0.129087497,991.575505,3008656476 +4,10129,588,128,1.25736654,0.143817817,890.0149,3008656476 +4,10130,589,128,1.45233715,0.12919591,990.743438,3008656476 +4,10131,590,128,1.49537981,0.129512616,988.320705,3008656476 +4,10132,591,128,1.29066908,0.129486274,988.521764,3008656476 +4,10133,592,128,1.41450357,0.128796011,993.819599,3008656476 +4,10134,593,128,1.13572216,0.130684001,979.461901,3008656476 +4,10135,594,128,1.29706788,0.142706135,896.948123,3008656476 +4,10136,595,128,1.43634808,0.128682106,994.699294,3008656476 +4,10137,596,128,1.5294646,0.141055421,907.444741,3008656476 +4,10138,597,128,1.45660925,0.128870748,993.243246,3008656476 +4,10139,598,128,1.35143054,0.127469187,1004.16425,3008656476 +4,10140,599,128,1.37988615,0.128351752,997.259469,3008656476 +4,10141,600,128,1.51515329,0.126821789,1009.29029,3008656476 +4,10142,601,128,1.31405783,0.128444176,996.541875,3008656476 +4,10143,602,128,1.66054416,0.144864201,883.586139,3008656476 +4,10144,603,128,1.1923362,0.12708139,1007.22852,3008656476 +4,10145,604,128,1.37142563,0.143262569,893.464363,3008656476 +4,10146,605,128,1.03812265,0.130150217,983.47896,3008656476 +4,10147,606,128,1.18742359,0.129035019,991.978774,3008656476 +4,10148,607,128,1.13832927,0.127134133,1006.81066,3008656476 +4,10149,608,128,1.4667033,0.127560543,1003.44509,3008656476 +4,10150,609,128,0.892018378,0.128083426,999.348659,3008656476 +4,10151,610,128,1.24869823,0.14511393,882.06556,3008656476 +4,10152,611,128,1.10868478,0.129706749,986.841479,3008656476 +4,10153,612,128,1.22587645,0.142988155,895.179045,3008656476 +4,10154,613,128,1.28970265,0.129990803,984.685047,3008656476 +4,10155,614,128,1.61425567,0.129623632,987.474259,3008656476 +4,10156,615,128,1.00858569,0.130243246,982.776489,3008656476 +4,10157,616,128,1.66174161,0.129292779,990.001151,3008656476 +4,10158,617,128,1.52096105,0.127823395,1001.38163,3008656476 +4,10159,618,128,1.29621589,0.142836031,896.132433,3008656476 +4,10160,619,128,1.59295344,0.129755493,986.470762,3008656476 +4,10161,620,128,1.29219949,0.132821651,963.698305,3008656476 +4,10162,621,128,1.22871459,0.129161385,991.008265,3008656476 +4,10163,622,128,1.39177072,0.126728358,1010.03439,3008656476 +4,10164,623,128,1.45081234,0.127629103,1002.90605,3008656476 +4,10165,624,128,1.49045241,0.127072107,1007.3021,3008656476 +4,10166,625,128,1.51592255,0.127128916,1006.85197,3008656476 +4,10167,626,128,1.18742061,0.140260401,912.588294,3008656476 +4,10168,627,128,1.19023025,0.12668663,1010.36708,3008656476 +4,10169,628,128,1.22397327,0.142395987,898.901737,3008656476 +4,10170,629,128,1.667467,0.127154409,1006.65011,3008656476 +4,10171,630,128,1.35245478,0.128185241,998.554896,3008656476 +4,10172,631,128,1.07010448,0.126803302,1009.43744,3008656476 +4,10173,632,128,1.70719934,0.126263286,1013.7547,3008656476 +4,10174,633,128,1.51147008,0.127957819,1000.32965,3008656476 +4,10175,634,128,1.37261379,0.142662144,897.224705,3008656476 +4,10176,635,128,1.27043843,0.12736327,1004.99932,3008656476 +4,10177,636,128,1.26215148,0.143270908,893.41236,3008656476 +4,10178,637,128,1.06535423,0.127008251,1007.80854,3008656476 +4,10179,638,128,1.22580373,0.128551652,995.708713,3008656476 +4,10180,639,128,1.54653966,0.127672459,1002.56548,3008656476 +4,10181,640,128,1.2531389,0.127205262,1006.24768,3008656476 +4,10182,641,128,1.46035635,0.127676946,1002.53025,3008656476 +4,10183,642,128,1.04999495,0.142322216,899.367671,3008656476 +4,10184,643,128,1.11664689,0.126867861,1008.92377,3008656476 +4,10185,644,128,1.54349101,0.140347545,912.021653,3008656476 +4,10186,645,128,1.64742339,0.127387543,1004.80782,3008656476 +4,10187,646,128,1.46234977,0.127457815,1004.25384,3008656476 +4,10188,647,128,1.47222257,0.126317877,1013.31659,3008656476 +4,10189,648,128,1.52335072,0.126193977,1014.31148,3008656476 +4,10190,649,128,1.516716,0.125757556,1017.83149,3008656476 +4,10191,650,128,1.19539857,0.142781383,896.475418,3008656476 +4,10192,651,128,1.43234932,0.126850963,1009.05817,3008656476 +4,10193,652,128,0.79313755,0.140906838,908.401621,3008656476 +4,10194,653,128,0.987614453,0.127314103,1005.38744,3008656476 +4,10195,654,128,1.69942904,0.127591988,1003.19779,3008656476 +4,10196,655,128,1.43666649,0.128306205,997.613483,3008656476 +4,10197,656,128,1.54154634,0.12827089,997.888141,3008656476 +4,10198,657,128,1.27910554,0.129589091,987.737463,3008656476 +4,10199,658,128,1.25105619,0.143389743,892.67194,3008656476 +4,10200,659,128,1.26267803,0.130920464,977.692838,3008656476 +4,10201,660,128,1.36674118,0.143750829,890.429648,3008656476 +4,10202,661,128,1.57744384,0.130669061,979.573887,3008656476 +4,10203,662,128,1.39217961,0.130380418,981.742519,3008656476 +4,10204,663,128,1.36340344,0.133343264,959.928505,3008656476 +4,10205,664,128,1.05944645,0.139421161,918.081582,3008656476 +4,10206,665,128,1.72431648,0.133144326,961.362785,3008656476 +4,10207,666,128,1.68946946,0.143438682,892.367374,3008656476 +4,10208,667,128,1.37855744,0.131375664,974.305256,3008656476 +4,10209,668,128,1.28412282,0.143160974,894.098415,3008656476 +4,10210,669,128,1.08644795,0.133733976,957.124015,3008656476 +4,10211,670,128,1.32862687,0.131924832,970.249483,3008656476 +4,10212,671,128,1.0459671,0.131172737,975.812527,3008656476 +4,10213,672,128,1.141891,0.130620758,979.936129,3008656476 +4,10214,673,128,1.23739696,0.129923393,985.195945,3008656476 +4,10215,674,128,1.31652522,0.136403226,938.394228,3008656476 +4,10216,675,128,1.26393902,0.130019836,984.46517,3008656476 +4,10217,676,128,1.23201334,0.138408028,924.801847,3008656476 +4,10218,677,128,1.44058597,0.130290105,982.423032,3008656476 +4,10219,678,128,1.19650328,0.127874542,1000.9811,3008656476 +4,10220,679,128,1.26662159,0.127073589,1007.29035,3008656476 +4,10221,680,128,1.22540033,0.1292222,990.541873,3008656476 +4,10222,681,128,1.36585951,0.12795898,1000.32057,3008656476 +4,10223,682,128,1.46076345,0.138669964,923.054974,3008656476 +4,10224,683,128,1.11774135,0.127158313,1006.61921,3008656476 +4,10225,684,128,1.3257792,0.141193553,906.556973,3008656476 +4,10226,685,128,1.00520802,0.126169203,1014.51065,3008656476 +4,10227,686,128,1.13282573,0.127778854,1001.73069,3008656476 +4,10228,687,128,1.2005738,0.126655131,1010.61835,3008656476 +4,10229,688,128,1.29897165,0.127603529,1003.10705,3008656476 +4,10230,689,128,0.988380909,0.129509884,988.341554,3008656476 +4,10231,690,128,1.24833095,0.141573027,904.127027,3008656476 +4,10232,691,128,1.29993439,0.126932885,1008.40692,3008656476 +4,10233,692,128,1.31211364,0.142526121,898.080991,3008656476 +4,10234,693,128,1.16258538,0.126958193,1008.20591,3008656476 +4,10235,694,128,1.16609716,0.126319812,1013.30106,3008656476 +4,10236,695,128,1.22763348,0.128475939,996.295501,3008656476 +4,10237,696,128,1.82374442,0.127769884,1001.80102,3008656476 +4,10238,697,128,1.64160895,0.126016597,1015.73922,3008656476 +4,10239,698,128,1.25668526,0.14093353,908.229575,3008656476 +4,10240,699,128,1.38874424,0.126712273,1010.16261,3008656476 +4,10241,700,128,1.60811436,0.140718283,909.61883,3008656476 +4,10242,701,128,1.27034664,0.127151699,1006.67157,3008656476 +4,10243,702,128,1.07688868,0.126785437,1009.57967,3008656476 +4,10244,703,128,1.25907242,0.126880497,1008.82329,3008656476 +4,10245,704,128,1.22681677,0.126701278,1010.25027,3008656476 +4,10246,705,128,1.51344144,0.124872953,1025.04183,3008656476 +4,10247,706,128,1.45469379,0.140804326,909.062979,3008656476 +4,10248,707,128,1.42472756,0.126228524,1014.03388,3008656476 +4,10249,708,128,1.14490795,0.139856797,915.221875,3008656476 +4,10250,709,128,1.51028907,0.127572211,1003.35331,3008656476 +4,10251,710,128,1.03390288,0.127695997,1002.38068,3008656476 +4,10252,711,128,1.4128207,0.128154165,998.797035,3008656476 +4,10253,712,128,1.43337584,0.128014773,999.884599,3008656476 +4,10254,713,128,1.58834338,0.129575707,987.839488,3008656476 +4,10255,714,128,1.12929904,0.144896437,883.389562,3008656476 +4,10256,715,128,0.929519832,0.129673459,987.094823,3008656476 +4,10257,716,128,1.1389091,0.142791743,896.410376,3008656476 +4,10258,717,128,1.41521251,0.130890824,977.914235,3008656476 +4,10259,718,128,1.63824475,0.136288148,939.186583,3008656476 +4,10260,719,128,1.54610002,0.130766634,978.842967,3008656476 +4,10261,720,128,1.55102432,0.130909052,977.778068,3008656476 +4,10262,721,128,1.55053127,0.130933895,977.592548,3008656476 +4,10263,722,128,1.44319475,0.143946296,889.220519,3008656476 +4,10264,723,128,1.41365242,0.130727181,979.138378,3008656476 +4,10265,724,128,1.34939122,0.144137009,888.043958,3008656476 +4,10266,725,128,1.3737458,0.129763456,986.410226,3008656476 +4,10267,726,128,1.46527028,0.129984397,984.733575,3008656476 +4,10268,727,128,1.59273028,0.129604485,987.620143,3008656476 +4,10269,728,128,1.45000648,0.129116063,991.356126,3008656476 +4,10270,729,128,1.34349144,0.127430133,1004.472,3008656476 +4,10271,730,128,1.13048303,0.146746466,872.252692,3008656476 +4,10272,731,128,1.57350707,0.129972623,984.822781,3008656476 +4,10273,732,128,1.32222164,0.147033204,870.551661,3008656476 +4,10274,733,128,1.11905932,0.131358842,974.430027,3008656476 +4,10275,734,128,1.13611066,0.131139733,976.05811,3008656476 +4,10276,735,128,1.01243412,0.129655483,987.231678,3008656476 +4,10277,736,128,1.05865967,0.129937208,985.091199,3008656476 +4,10278,737,128,1.12507844,0.129078333,991.645902,3008656476 +4,10279,738,128,1.30123019,0.140691609,909.791287,3008656476 +4,10280,739,128,1.17075706,0.128795051,993.827007,3008656476 +4,10281,740,128,1.3026675,0.131784541,971.28236,3008656476 +4,10282,741,128,1.36437345,0.126862027,1008.97016,3008656476 +4,10283,742,128,1.34979725,0.126711177,1010.17134,3008656476 +4,10284,743,128,1.25163805,0.127047209,1007.4995,3008656476 +4,10285,744,128,1.26321554,0.126709711,1010.18303,3008656476 +4,10286,745,128,0.788544297,0.126720867,1010.0941,3008656476 +4,10287,746,128,1.0241605,0.1419426,901.77297,3008656476 +4,10288,747,128,1.0673728,0.127423511,1004.5242,3008656476 +4,10289,748,128,1.58064437,0.140321023,912.194034,3008656476 +4,10290,749,128,1.42282772,0.127346765,1005.12958,3008656476 +4,10291,750,128,1.39173532,0.128464319,996.385619,3008656476 +4,10292,751,128,1.41539574,0.127973476,1000.20726,3008656476 +4,10293,752,128,1.17969513,0.126564127,1011.34502,3008656476 +4,10294,753,128,1.32826066,0.127088695,1007.17062,3008656476 +4,10295,754,128,1.24795163,0.13993909,914.683667,3008656476 +4,10296,755,128,1.19786441,0.126586648,1011.1651,3008656476 +4,10297,756,128,1.41961551,0.140475231,911.192664,3008656476 +4,10298,757,128,0.910336137,0.127240412,1005.96971,3008656476 +4,10299,758,128,1.65224624,0.12588763,1016.77981,3008656476 +4,10300,759,128,1.10563064,0.126962508,1008.17164,3008656476 +4,10301,760,128,1.55783379,0.126269457,1013.70516,3008656476 +4,10302,761,128,1.38119125,0.126829634,1009.22786,3008656476 +4,10303,762,128,1.93254209,0.140092952,913.679084,3008656476 +4,10304,763,128,1.4461422,0.125784447,1017.61389,3008656476 +4,10305,764,128,1.56108904,0.138896105,921.55212,3008656476 +4,10306,765,128,1.6631608,0.125689675,1018.38118,3008656476 +4,10307,766,128,1.39497483,0.126166424,1014.53299,3008656476 +4,10308,767,128,1.43586147,0.127339402,1005.1877,3008656476 +4,10309,768,128,1.27547634,0.127630206,1002.89739,3008656476 +4,10310,769,128,1.22536731,0.129191114,990.780217,3008656476 +4,10311,770,128,1.26266599,0.142695799,897.013093,3008656476 +4,10312,771,128,1.56116378,0.129744278,986.556031,3008656476 +4,10313,772,128,1.26911426,0.143135522,894.257402,3008656476 +4,10314,773,128,1.23068118,0.130268581,982.585356,3008656476 +4,10315,774,128,1.18313074,0.130354281,981.939366,3008656476 +4,10316,775,128,1.24150765,0.130727946,979.132649,3008656476 +4,10317,776,128,1.5434376,0.131593789,972.690284,3008656476 +4,10318,777,128,1.71971512,0.132424762,966.586597,3008656476 +4,10319,778,128,1.43745995,0.159448192,802.768588,3008656476 +4,10320,779,128,1.39076519,0.130341712,982.034055,3008656476 +4,10321,780,128,1.37703919,0.146356933,874.574216,3008656476 +4,10322,781,128,1.24872673,0.130819918,978.444276,3008656476 +4,10323,782,128,1.09614706,0.131398734,974.134195,3008656476 +4,10324,783,128,1.02456796,0.130023915,984.434287,3008656476 +4,10325,784,128,1.37686598,0.129382633,989.313612,3008656476 +4,10326,785,128,1.43882334,0.129970776,984.836776,3008656476 +4,10327,786,128,1.2824502,0.14734261,868.723582,3008656476 +4,10328,787,128,1.42817605,0.129102658,991.45906,3008656476 +4,10329,788,128,1.60772848,0.141452264,904.898913,3008656476 +4,10330,789,128,1.4704721,0.131776954,971.338281,3008656476 +4,10331,790,128,1.36966944,0.12998114,984.75825,3008656476 +4,10332,791,128,1.55763292,0.130710934,979.260082,3008656476 +4,10333,792,128,1.20531535,0.129418242,989.041406,3008656476 +4,10334,793,128,1.34015024,0.131838042,970.888205,3008656476 +4,10335,794,128,1.13677406,0.136710428,936.285563,3008656476 +4,10336,795,128,1.44929171,0.12706935,1007.32395,3008656476 +4,10337,796,128,1.56156433,0.13459086,951.030404,3008656476 +4,10338,797,128,1.23119986,0.126687274,1010.36194,3008656476 +4,10339,798,128,1.40648639,0.127079096,1007.2467,3008656476 +4,10340,799,128,1.30003595,0.126355277,1013.01665,3008656476 +4,10341,800,128,1.50828326,0.126980254,1008.03074,3008656476 +4,10342,801,128,1.40531886,0.12685625,1009.01611,3008656476 +4,10343,802,128,1.63581061,0.140834548,908.867901,3008656476 +4,10344,803,128,1.45295227,0.127289248,1005.58376,3008656476 +4,10345,804,128,1.56583321,0.14053777,910.787186,3008656476 +4,10346,805,128,1.7930696,0.127035811,1007.5899,3008656476 +4,10347,806,128,1.45107734,0.127445118,1004.35389,3008656476 +4,10348,807,128,1.30959308,0.127363927,1004.99414,3008656476 +4,10349,808,128,1.14690959,0.126762938,1009.75886,3008656476 +4,10350,809,128,1.12586617,0.127529032,1003.69303,3008656476 +4,10351,810,128,1.078058,0.141134609,906.935591,3008656476 +4,10352,811,128,1.27073693,0.125679809,1018.46113,3008656476 +4,10353,812,128,1.5270431,0.1391754,919.702764,3008656476 +4,10354,813,128,1.47277677,0.126544099,1011.50509,3008656476 +4,10355,814,128,1.166435,0.12560733,1019.04881,3008656476 +4,10356,815,128,0.906622708,0.125499088,1019.92773,3008656476 +4,10357,816,128,1.6050545,0.125350763,1021.13459,3008656476 +4,10358,817,128,1.42887878,0.125762821,1017.78887,3008656476 +4,10359,818,128,1.17703545,0.139097032,920.220929,3008656476 +4,10360,819,128,1.11474943,0.126945628,1008.3057,3008656476 +4,10361,820,128,1.12530506,0.140313462,912.243189,3008656476 +4,10362,821,128,1.344383,0.128716868,994.43066,3008656476 +4,10363,822,128,1.34965491,0.127494008,1003.96875,3008656476 +4,10364,823,128,1.46049392,0.128758002,994.112972,3008656476 +4,10365,824,128,1.61129105,0.129364588,989.451611,3008656476 +4,10366,825,128,1.31701815,0.130281313,982.489331,3008656476 +4,10367,826,128,1.23590302,0.144166799,887.860457,3008656476 +4,10368,827,128,0.977166891,0.130798821,978.602093,3008656476 +4,10369,828,128,1.29575074,0.144938472,883.133362,3008656476 +4,10370,829,128,1.32323813,0.132847109,963.513628,3008656476 +4,10371,830,128,1.76766551,0.139119895,920.0697,3008656476 +4,10372,831,128,1.07055128,0.131483138,973.508862,3008656476 +4,10373,832,128,1.37433946,0.131604483,972.611245,3008656476 +4,10374,833,128,1.53594875,0.130973618,977.296054,3008656476 +4,10375,834,128,1.34686542,0.14635159,874.606145,3008656476 +4,10376,835,128,1.4062444,0.12962323,987.477322,3008656476 +4,10377,836,128,1.34615862,0.14724956,869.272547,3008656476 +4,10378,837,128,1.28056383,0.129221927,990.543965,3008656476 +4,10379,838,128,1.22511458,0.131475754,973.563536,3008656476 +4,10380,839,128,1.43712938,0.129424683,988.992185,3008656476 +4,10381,840,128,1.14889777,0.130973411,977.297598,3008656476 +4,10382,841,128,1.15436625,0.129333856,989.686722,3008656476 +4,10383,842,128,1.11568558,0.14548219,879.832782,3008656476 +4,10384,843,128,1.56754208,0.130869113,978.076469,3008656476 +4,10385,844,128,1.28417695,0.138505392,924.151747,3008656476 +4,10386,845,128,1.43881249,0.129307978,989.884785,3008656476 +4,10387,846,128,1.49720848,0.129078056,991.64803,3008656476 +4,10388,847,128,1.72961879,0.128105771,999.174346,3008656476 +4,10389,848,128,0.982391,0.127412786,1004.60875,3008656476 +4,10390,849,128,1.3563,0.129058103,991.801344,3008656476 +4,10391,850,128,1.20726705,0.140335871,912.097521,3008656476 +4,10392,851,128,1.4104141,0.127861225,1001.08536,3008656476 +4,10393,852,128,1.02624142,0.141108313,907.104601,3008656476 +4,10394,853,128,1.4631449,0.126651221,1010.64955,3008656476 +4,10395,854,128,1.53826964,0.128050762,999.603579,3008656476 +4,10396,855,128,1.71287906,0.127315695,1005.37487,3008656476 +4,10397,856,128,1.56256735,0.126191803,1014.32896,3008656476 +4,10398,857,128,1.38491678,0.126589554,1011.14188,3008656476 +4,10399,858,128,1.69615746,0.142371668,899.055281,3008656476 +4,10400,859,128,1.08984137,0.128800763,993.782933,3008656476 +4,10401,860,128,1.47552943,0.147677312,866.754671,3008656476 +4,10402,861,128,1.30441976,0.130288368,982.43613,3008656476 +4,10403,862,128,1.07355404,0.1285654,995.602238,3008656476 +4,10404,863,128,1.10010684,0.127581744,1003.27834,3008656476 +4,10405,864,128,1.12578416,0.12704809,1007.49252,3008656476 +4,10406,865,128,0.950547099,0.128249214,998.056799,3008656476 +4,10407,866,128,1.26586318,0.142674408,897.147581,3008656476 +4,10408,867,128,1.27380204,0.127977229,1000.17793,3008656476 +4,10409,868,128,1.4026525,0.14697031,870.924202,3008656476 +4,10410,869,128,1.38402116,0.129756854,986.460415,3008656476 +4,10411,870,128,1.57122171,0.129669809,987.122608,3008656476 +4,10412,871,128,1.41238165,0.129281982,990.083831,3008656476 +4,10413,872,128,1.21726704,0.12934005,989.639327,3008656476 +4,10414,873,128,1.3010478,0.127460246,1004.23469,3008656476 +4,10415,874,128,1.71206903,0.142205134,900.108149,3008656476 +4,10416,875,128,1.29202747,0.129429994,988.951603,3008656476 +4,10417,876,128,1.167382,0.210438568,608.253521,3008656476 +4,10418,877,128,1.16086149,0.130483548,980.966581,3008656476 +4,10419,878,128,1.27257562,0.129324948,989.754892,3008656476 +4,10420,879,128,1.19820869,0.12948333,988.54424,3008656476 +4,10421,880,128,1.42047143,0.129250844,990.322353,3008656476 +4,10422,881,128,1.7266382,0.142343144,899.235442,3008656476 +4,10423,882,128,2.01588035,0.127497836,1003.93861,3008656476 +4,10424,883,128,1.44767106,0.140041359,914.015694,3008656476 +4,10425,884,128,1.20841193,0.127843299,1001.22573,3008656476 +4,10426,885,128,1.67274117,0.126499342,1011.86297,3008656476 +4,10427,886,128,1.47866666,0.126482821,1011.99514,3008656476 +4,10428,887,128,1.50497389,0.126238177,1013.95634,3008656476 +4,10429,888,128,1.3909111,0.126106224,1015.01731,3008656476 +4,10430,889,128,1.85686278,0.13986322,915.179845,3008656476 +4,10431,890,128,1.41720676,0.126758529,1009.79398,3008656476 +4,10432,891,128,1.17968512,0.140252868,912.637309,3008656476 +4,10433,892,128,1.423558,0.126536543,1011.56549,3008656476 +4,10434,893,128,1.55635667,0.127745119,1001.99523,3008656476 +4,10435,894,128,1.53463769,0.128172283,998.655848,3008656476 +4,10436,895,128,1.43607521,0.126345246,1013.09708,3008656476 +4,10437,896,128,1.05803537,0.12777318,1001.77518,3008656476 +4,10438,897,128,1.18690741,0.139398669,918.229714,3008656476 +4,10439,898,128,1.08127928,0.126564999,1011.33806,3008656476 +4,10440,899,128,1.20858943,0.141623321,903.805949,3008656476 +4,10441,900,128,1.19255555,0.126166159,1014.53513,3008656476 +4,10442,901,128,1.42867565,0.126406186,1012.60867,3008656476 +4,10443,902,128,1.16114867,0.125954538,1016.23968,3008656476 +4,10444,903,128,1.45943737,0.126807984,1009.40017,3008656476 +4,10445,904,128,1.31283057,0.126470718,1012.09198,3008656476 +4,10446,905,128,1.26979697,0.141730828,903.120385,3008656476 +4,10447,906,128,1.48103297,0.127301937,1005.48352,3008656476 +4,10448,907,128,1.62396848,0.139086731,920.289082,3008656476 +4,10449,908,128,1.43219411,0.126437463,1012.35818,3008656476 +4,10450,909,128,1.35475492,0.127213866,1006.17963,3008656476 +4,10451,910,128,1.47134233,0.127035006,1007.59628,3008656476 +4,10452,911,128,1.43179989,0.127708445,1002.28297,3008656476 +4,10453,912,128,1.7964946,0.12808199,999.359863,3008656476 +4,10454,913,128,1.3589263,0.143289219,893.29819,3008656476 +4,10455,914,128,1.67108524,0.123118838,1039.64594,3008656476 +4,10456,915,128,1.73589361,0.132976071,962.5792,3008656476 +4,10457,916,128,1.27065694,0.13283348,963.612487,3008656476 +4,10458,917,128,1.25024593,0.131786172,971.270339,3008656476 +4,10459,918,128,1.48824406,0.138769232,922.39467,3008656476 +4,10460,919,128,1.06057465,0.130306298,982.300948,3008656476 +4,10461,920,128,1.57046461,0.132007688,969.640495,3008656476 +4,10462,921,128,1.37177348,0.144384799,886.519917,3008656476 +4,10463,922,128,1.56775832,0.131802475,971.1502,3008656476 +4,10464,923,128,1.56069684,0.142217582,900.029365,3008656476 +4,10465,924,128,1.32004845,0.129718787,986.749899,3008656476 +4,10466,925,128,1.37123775,0.129952473,984.975484,3008656476 +4,10467,926,128,1.42582011,0.128439883,996.575184,3008656476 +4,10468,927,128,0.889991462,0.130235963,982.831447,3008656476 +4,10469,928,128,1.01712644,0.131302967,974.844689,3008656476 +4,10470,929,128,1.00852287,0.140600306,910.382087,3008656476 +4,10471,930,128,1.06950271,0.128967894,992.495078,3008656476 +4,10472,931,128,1.20443583,0.14218796,900.216868,3008656476 +4,10473,932,128,1.53163564,0.126091193,1015.13831,3008656476 +4,10474,933,128,1.20074487,0.127958998,1000.32043,3008656476 +4,10475,934,128,1.17322123,0.127334873,1005.22345,3008656476 +4,10476,935,128,1.17744911,0.126561758,1011.36395,3008656476 +4,10477,936,128,1.32107401,0.126689669,1010.34284,3008656476 +4,10478,937,128,1.1482383,0.139229574,919.344909,3008656476 +4,10479,938,128,1.34007943,0.126492641,1011.91657,3008656476 +4,10480,939,128,1.26634634,0.13991655,914.831019,3008656476 +4,10481,940,128,1.50978148,0.126626014,1010.85074,3008656476 +4,10482,941,128,1.16498435,0.127413088,1004.60637,3008656476 +4,10483,942,128,1.2627703,0.125989017,1015.96157,3008656476 +4,10484,943,128,1.10353827,0.126827198,1009.24724,3008656476 +4,10485,944,128,1.70237577,0.126245006,1013.90149,3008656476 +4,10486,945,128,1.46171772,0.126723858,1010.07026,3008656476 +4,10487,946,128,1.46778727,0.131257423,975.182943,3008656476 +4,10488,947,128,1.66544914,0.126486889,1011.96259,3008656476 +4,10489,948,128,1.56032026,0.138227948,926.006657,3008656476 +4,10490,949,128,1.62858415,0.125614035,1018.99441,3008656476 +4,10491,950,128,1.31562245,0.127151121,1006.67614,3008656476 +4,10492,951,128,1.1589731,0.125618476,1018.95839,3008656476 +4,10493,952,128,1.31279504,0.125386216,1020.84586,3008656476 +4,10494,953,128,1.38378072,0.12508807,1023.27904,3008656476 +4,10495,954,128,1.60524225,0.138401381,924.846263,3008656476 +4,10496,955,128,1.07688618,0.125395158,1020.77307,3008656476 +4,10497,956,128,1.60917997,0.140247024,912.675338,3008656476 +4,10498,957,128,1.31657803,0.125718121,1018.15076,3008656476 +4,10499,958,128,1.41305304,0.126884321,1008.79288,3008656476 +4,10500,959,128,1.32960665,0.12595065,1016.27106,3008656476 +4,10501,960,128,1.27190518,0.126856451,1009.01451,3008656476 +4,10502,961,128,1.24862552,0.126764152,1009.74919,3008656476 +4,10503,962,128,1.4504925,0.143226432,893.68979,3008656476 +4,10504,963,128,1.3271513,0.127250279,1005.8917,3008656476 +4,10505,964,128,1.20810139,0.142958401,895.365359,3008656476 +4,10506,965,128,1.00625455,0.127749087,1001.96411,3008656476 +4,10507,966,128,1.37275052,0.128588391,995.424229,3008656476 +4,10508,967,128,1.63007653,0.128840086,993.479622,3008656476 +4,10509,968,128,1.21714938,0.12928988,990.023349,3008656476 +4,10510,969,128,1.09175909,0.129903717,985.345169,3008656476 +4,10511,970,128,1.19589448,0.144746663,884.303633,3008656476 +4,10512,971,128,1.33907378,0.12990354,985.346512,3008656476 +4,10513,972,128,1.0051378,0.141899033,902.04984,3008656476 +4,10514,973,128,1.11867249,0.130218472,982.963462,3008656476 +4,10515,974,128,1.26913142,0.13056861,980.327508,3008656476 +4,10516,975,128,1.32343757,0.13106212,976.636117,3008656476 +4,10517,976,128,1.58529282,0.132520214,965.890381,3008656476 +4,10518,977,128,1.25610554,0.133034082,962.159456,3008656476 +4,10519,978,128,1.34087706,0.152151897,841.264569,3008656476 +4,10520,979,128,1.49717212,0.131977252,969.86411,3008656476 +4,10521,980,128,1.43502462,0.146881548,871.450511,3008656476 +4,10522,981,128,1.5860281,0.129699339,986.897859,3008656476 +4,10523,982,128,1.09135294,0.130336209,982.075518,3008656476 +4,10524,983,128,1.39745557,0.130772383,978.799935,3008656476 +4,10525,984,128,1.08947384,0.129756392,986.463927,3008656476 +4,10526,985,128,1.19800782,0.130408345,981.532278,3008656476 +4,10527,986,128,0.964313507,0.138133117,926.642378,3008656476 +4,10528,987,128,0.969009995,0.131045088,976.763051,3008656476 +4,10529,988,128,1.098683,0.137408833,931.526724,3008656476 +4,10530,989,128,1.18976867,0.131615889,972.526957,3008656476 +4,10531,990,128,1.19328725,0.130490769,980.912297,3008656476 +4,10532,991,128,0.950459242,0.129860005,985.676845,3008656476 +4,10533,992,128,1.31096017,0.130594346,980.134316,3008656476 +4,10534,993,128,0.971249938,0.131111546,976.267948,3008656476 +4,10535,994,128,0.995173037,0.134847575,949.219888,3008656476 +4,10536,995,128,1.09064925,0.129763222,986.412005,3008656476 +4,10537,996,128,1.18413532,0.139730336,916.050184,3008656476 +4,10538,997,128,1.4667275,0.131067148,976.598652,3008656476 +4,10539,998,128,1.29497921,0.130147062,983.502801,3008656476 +4,10540,999,128,1.26154387,0.129870507,985.597138,3008656476 +4,10541,1000,128,1.19640732,0.129348133,989.577484,3008656476 +4,10542,1001,128,1.39089692,0.121720173,1051.59233,3008656476 +4,10543,1002,128,1.11710322,0.135928836,941.669213,3008656476 +4,10544,1003,128,1.11340261,0.12848709,996.209035,3008656476 +4,10545,1004,128,1.30728889,0.137519377,930.777922,3008656476 +4,10546,1005,128,1.38637292,0.128781856,993.928834,3008656476 +4,10547,1006,128,1.28758693,0.127916071,1000.65613,3008656476 +4,10548,1007,128,1.31714642,0.126254601,1013.82444,3008656476 +4,10549,1008,128,1.05190182,0.127924199,1000.59255,3008656476 +4,10550,1009,128,1.11924732,0.129148697,991.105625,3008656476 +4,10551,1010,128,0.993756175,0.142178812,900.274789,3008656476 +4,10552,1011,128,1.24166179,0.128234607,998.170486,3008656476 +4,10553,1012,128,1.04004884,0.14972823,854.882209,3008656476 +4,10554,1013,128,1.19383025,0.128968094,992.493539,3008656476 +4,10555,1014,128,1.15732539,0.13037162,981.808771,3008656476 +4,10556,1015,128,0.815458059,0.129585417,987.765467,3008656476 +4,10557,1016,128,1.01238704,0.129086508,991.583102,3008656476 +4,10558,1017,128,1.09020352,0.129300393,989.942853,3008656476 +4,10559,1018,128,1.23044956,0.136837202,935.418133,3008656476 +4,10560,1019,128,1.61853611,0.129189491,990.792664,3008656476 +4,10561,1020,128,1.21574724,0.143849665,889.817853,3008656476 +4,10562,1021,128,0.990338981,0.130482488,980.97455,3008656476 +4,10563,1022,128,1.09483695,0.129904457,985.339556,3008656476 +4,10564,1023,128,1.26359749,0.129695448,986.927467,3008656476 +4,10565,1024,128,1.29347968,0.13014916,983.486947,3008656476 +4,10566,1025,128,1.49830341,0.128632501,995.082883,3008656476 +4,10567,1026,128,1.17530131,0.13842751,924.671693,3008656476 +4,10568,1027,128,1.15970767,0.12993455,985.11135,3008656476 +4,10569,1028,128,0.971018493,0.141126444,906.988062,3008656476 +4,10570,1029,128,1.4806149,0.130767202,978.838715,3008656476 +4,10571,1030,128,1.14787567,0.130563719,980.364231,3008656476 +4,10572,1031,128,1.45028579,0.129841324,985.81866,3008656476 +4,10573,1032,128,1.2603004,0.130396338,981.622659,3008656476 +4,10574,1033,128,1.24729455,0.129225629,990.515589,3008656476 +4,10575,1034,128,1.51188254,0.135576138,944.118942,3008656476 +4,10576,1035,128,1.34918559,0.12934624,989.591966,3008656476 +4,10577,1036,128,1.28944504,0.14099993,907.801869,3008656476 +4,10578,1037,128,1.287974,0.130123627,983.679928,3008656476 +4,10579,1038,128,1.09215307,0.129876436,985.552144,3008656476 +4,10580,1039,128,1.45747483,0.128350246,997.27117,3008656476 +4,10581,1040,128,1.40497625,0.130153887,983.451228,3008656476 +4,10582,1041,128,1.42638373,0.129200143,990.710978,3008656476 +4,10583,1042,128,1.36356819,0.137950984,927.865799,3008656476 +4,10584,1043,128,1.05460262,0.128337244,997.372205,3008656476 +4,10585,1044,128,1.08755469,0.145908286,877.263406,3008656476 +4,10586,1045,128,1.35495353,0.128889855,993.096004,3008656476 +4,10587,1046,128,1.17824948,0.129520924,988.25731,3008656476 +4,10588,1047,128,1.12286937,0.128446695,996.522332,3008656476 +4,10589,1048,128,1.39576924,0.128520726,995.948311,3008656476 +4,10590,1049,128,1.14264226,0.128641771,995.011177,3008656476 +4,10591,1050,128,1.18470204,0.137523856,930.747608,3008656476 +4,10592,1051,128,1.25979936,0.128278944,997.825489,3008656476 +4,10593,1052,128,1.01686001,0.144737363,884.360454,3008656476 +4,10594,1053,128,1.29766226,0.129934578,985.111138,3008656476 +4,10595,1054,128,1.18419325,0.130144753,983.52025,3008656476 +4,10596,1055,128,0.992856145,0.129795808,986.164361,3008656476 +4,10597,1056,128,1.24685264,0.130515325,980.727742,3008656476 +4,10598,1057,128,1.29645813,0.129654625,987.238211,3008656476 +4,10599,1058,128,1.22934699,0.138216985,926.080105,3008656476 +4,10600,1059,128,1.06872368,0.129292221,990.005423,3008656476 +4,10601,1060,128,1.3442173,0.141737551,903.077548,3008656476 +4,10602,1061,128,1.34646094,0.130888816,977.929237,3008656476 +4,10603,1062,128,1.2328881,0.130697716,979.359119,3008656476 +4,10604,1063,128,1.22441173,0.130948149,977.486135,3008656476 +4,10605,1064,128,1.23840475,0.131627984,972.437594,3008656476 +4,10606,1065,128,1.31371617,0.128785201,993.903018,3008656476 +4,10607,1066,128,1.25705445,0.135749449,942.913588,3008656476 +4,10608,1067,128,1.23995006,0.129942287,985.052695,3008656476 +4,10609,1068,128,1.20680845,0.138949258,921.199594,3008656476 +4,10610,1069,128,1.47652388,0.130156782,983.429354,3008656476 +4,10611,1070,128,1.13568735,0.128922428,992.845093,3008656476 +4,10612,1071,128,1.09948361,0.130478969,981.001007,3008656476 +4,10613,1072,128,1.19317186,0.128674527,994.757882,3008656476 +4,10614,1073,128,1.58542466,0.128887664,993.112886,3008656476 +4,10615,1074,128,1.52404416,0.138603608,923.496883,3008656476 +4,10616,1075,128,1.24009061,0.129195726,990.744849,3008656476 +4,10617,1076,128,1.47422755,0.140256933,912.610858,3008656476 +4,10618,1077,128,1.35949552,0.128402469,996.865567,3008656476 +4,10619,1078,128,1.40786278,0.128918001,992.879187,3008656476 +4,10620,1079,128,1.68531263,0.127694738,1002.39056,3008656476 +4,10621,1080,128,1.22718632,0.127074652,1007.28192,3008656476 +4,10622,1081,128,0.630103588,0.128034669,999.729222,3008656476 +4,10623,1082,128,1.1499517,0.146628291,872.955684,3008656476 +4,10624,1083,128,1.53542006,0.129735844,986.620166,3008656476 +4,10625,1084,128,1.14109349,0.142404131,898.850329,3008656476 +4,10626,1085,128,1.44202912,0.130095488,983.892693,3008656476 +4,10627,1086,128,1.2505455,0.129237477,990.424782,3008656476 +4,10628,1087,128,1.12426746,0.130226013,982.906541,3008656476 +4,10629,1088,128,1.06560349,0.129361466,989.47549,3008656476 +4,10630,1089,128,1.34128535,0.128551426,995.710464,3008656476 +4,10631,1090,128,1.24575961,0.1410125,907.720947,3008656476 +4,10632,1091,128,1.34267342,0.129569131,987.889623,3008656476 +4,10633,1092,128,1.16631413,0.140351395,911.996635,3008656476 +4,10634,1093,128,1.5039171,0.129143153,991.148172,3008656476 +4,10635,1094,128,1.31796074,0.129943336,985.044743,3008656476 +4,10636,1095,128,1.19167292,0.130807858,978.534485,3008656476 +4,10637,1096,128,1.15824211,0.129836056,985.858659,3008656476 +4,10638,1097,128,1.11877728,0.128343542,997.323262,3008656476 +4,10639,1098,128,1.36933851,0.138507509,924.137622,3008656476 +4,10640,1099,128,1.68140197,0.130233283,982.851672,3008656476 +4,10641,1100,128,1.21625423,0.138757634,922.471768,3008656476 +4,10642,1101,128,1.45454991,0.129897272,985.394058,3008656476 +4,10643,1102,128,1.26669931,0.129894941,985.411741,3008656476 +4,10644,1103,128,1.52334976,0.129257351,990.272499,3008656476 +4,10645,1104,128,1.12536526,0.128790457,993.862457,3008656476 +4,10646,1105,128,1.49581969,0.128879573,993.175233,3008656476 +4,10647,1106,128,1.23598385,0.139149225,919.875766,3008656476 +4,10648,1107,128,1.41783273,0.129188621,990.799337,3008656476 +4,10649,1108,128,1.29185319,0.141536311,904.361567,3008656476 +4,10650,1109,128,1.08181,0.130155272,983.440763,3008656476 +4,10651,1110,128,1.23769343,0.129911855,985.283445,3008656476 +4,10652,1111,128,1.18951797,0.129440499,988.871342,3008656476 +4,10653,1112,128,0.949591517,0.129378401,989.345973,3008656476 +4,10654,1113,128,1.02349544,0.128736821,994.276533,3008656476 +4,10655,1114,128,1.73972416,0.137031257,934.093453,3008656476 +4,10656,1115,128,1.03099477,0.128678332,994.728468,3008656476 +4,10657,1116,128,1.26084816,0.142132016,900.571199,3008656476 +4,10658,1117,128,0.956097841,0.128720329,994.403922,3008656476 +4,10659,1118,128,1.25079608,0.129784099,986.253331,3008656476 +4,10660,1119,128,1.17628694,0.129262595,990.232325,3008656476 +4,10661,1120,128,0.992862582,0.128110701,999.135896,3008656476 +4,10662,1121,128,1.03126681,0.128423978,996.698607,3008656476 +4,10663,1122,128,1.03522539,0.139475719,917.72246,3008656476 +4,10664,1123,128,0.859871686,0.129323973,989.762354,3008656476 +4,10665,1124,128,1.01311266,0.143211877,893.780618,3008656476 +4,10666,1125,128,1.04190457,0.129432143,988.935183,3008656476 +4,10667,1126,128,1.00452709,0.129560307,987.956906,3008656476 +4,10668,1127,128,1.69103515,0.129947558,985.012739,3008656476 +4,10669,1128,128,1.22801626,0.128829185,993.563687,3008656476 +4,10670,1129,128,0.868287981,0.127969203,1000.24066,3008656476 +4,10671,1130,128,1.25057411,0.13909787,920.215385,3008656476 +4,10672,1131,128,1.30404675,0.128197429,998.459961,3008656476 +4,10673,1132,128,1.12502491,0.143237986,893.617703,3008656476 +4,10674,1133,128,1.21244407,0.130119573,983.710575,3008656476 +4,10675,1134,128,1.50416458,0.12913427,991.216352,3008656476 +4,10676,1135,128,1.45122004,0.129918065,985.236349,3008656476 +4,10677,1136,128,1.40857112,0.130024624,984.428919,3008656476 +4,10678,1137,128,1.44256175,0.12830448,997.626895,3008656476 +4,10679,1138,128,1.35436535,0.138965901,921.089268,3008656476 +4,10680,1139,128,1.08409286,0.129593244,987.70581,3008656476 +4,10681,1140,128,1.20663071,0.142124667,900.617765,3008656476 +4,10682,1141,128,1.34616733,0.129879477,985.529069,3008656476 +4,10683,1142,128,1.27198505,0.129017536,992.113196,3008656476 +4,10684,1143,128,1.19410133,0.130386995,981.692998,3008656476 +4,10685,1144,128,1.1335988,0.128582948,995.466366,3008656476 +4,10686,1145,128,1.06906605,0.128718824,994.415549,3008656476 +4,10687,1146,128,1.32655144,0.135740512,942.975668,3008656476 +4,10688,1147,128,1.54031754,0.128188124,998.532438,3008656476 +4,10689,1148,128,1.26617336,0.145658542,878.767549,3008656476 +4,10690,1149,128,1.26521003,0.129310694,989.863994,3008656476 +4,10691,1150,128,1.2071892,0.129777012,986.30719,3008656476 +4,10692,1151,128,1.23255122,0.128630052,995.101829,3008656476 +4,10693,1152,128,1.2772975,0.12816404,998.720078,3008656476 +4,10694,1153,128,1.56564486,0.128959676,992.558325,3008656476 +4,10695,1154,128,1.45214164,0.13711064,933.55264,3008656476 +4,10696,1155,128,1.44679725,0.130958626,977.407933,3008656476 +4,10697,1156,128,1.26130021,0.142769735,896.548558,3008656476 +4,10698,1157,128,1.50518608,0.155173116,824.885156,3008656476 +4,10699,1158,128,1.05787408,0.125199487,1022.36841,3008656476 +4,10700,1159,128,1.53653944,0.107190638,1194.13414,3008656476 +4,10701,1160,128,1.41575062,0.120314039,1063.8825,3008656476 +4,10702,1161,128,1.5655874,0.106106314,1206.33726,3008656476 +4,10703,1162,128,1.14420891,0.106320462,1203.90748,3008656476 +4,10704,1163,128,1.19685805,0.106056267,1206.90652,3008656476 +4,10705,1164,128,1.19300306,0.106215744,1205.09442,3008656476 +4,10706,1165,128,1.7853173,0.106110097,1206.29425,3008656476 +4,10707,1166,128,1.34159887,0.10609969,1206.41257,3008656476 +4,10708,1167,128,1.52920413,0.1060171,1207.3524,3008656476 +4,10709,1168,128,1.26828742,0.118784494,1077.58173,3008656476 +4,10710,1169,128,1.5300678,0.119334427,1072.61587,3008656476 +4,10711,1170,128,1.50759828,0.106234021,1204.88709,3008656476 +4,10712,1171,128,1.50580883,0.105847572,1209.28612,3008656476 +4,10713,1172,128,1.39891648,0.106045216,1207.03229,3008656476 +4,10714,1173,128,1.43698549,0.106090104,1206.52158,3008656476 +4,10715,1174,128,1.62419033,0.10612255,1206.1527,3008656476 +4,10716,1175,128,1.24324906,0.106046812,1207.01413,3008656476 +4,10717,1176,128,1.4361136,0.106760027,1198.95061,3008656476 +4,10718,1177,128,1.34816623,0.106134748,1206.01408,3008656476 +4,10719,1178,128,1.19801342,0.115232207,1110.80056,3008656476 +4,10720,1179,128,1.29388559,0.120646398,1060.95169,3008656476 +4,10721,1180,128,1.82437325,0.106110835,1206.28586,3008656476 +4,10722,1181,128,1.42207944,0.105986261,1207.7037,3008656476 +4,10723,1182,128,1.53291774,0.106033954,1207.16049,3008656476 +4,10724,1183,128,0.975992084,0.105958006,1208.02575,3008656476 +4,10725,1184,128,1.07730186,0.106189486,1205.39241,3008656476 +4,10726,1185,128,1.63498747,0.105992766,1207.62958,3008656476 +4,10727,1186,128,1.59918642,0.106074475,1206.69935,3008656476 +4,10728,1187,128,1.56979537,0.117776864,1086.80088,3008656476 +4,10729,1188,128,1.60187948,0.106513164,1201.72939,3008656476 +4,10730,1189,128,1.5274502,0.122312632,1046.49862,3008656476 +4,10731,1190,128,1.21467352,0.106159985,1205.72737,3008656476 +4,10732,1191,128,1.09839451,0.106027351,1207.23567,3008656476 +4,10733,1192,128,1.29419863,0.106095832,1206.45644,3008656476 +4,10734,1193,128,1.23086774,0.105964253,1207.95454,3008656476 +4,10735,1194,128,0.914262056,0.106083564,1206.59596,3008656476 +4,10736,1195,128,0.804777205,0.105993279,1207.62374,3008656476 +4,10737,1196,128,1.03126526,0.106115087,1206.23753,3008656476 +4,10738,1197,128,1.35009718,0.118690695,1078.43332,3008656476 +4,10739,1198,128,1.0094769,0.127188869,1006.37737,3008656476 +4,10740,1199,128,1.37096071,0.118428492,1080.82099,3008656476 +4,10741,1200,128,1.38865209,0.121206808,1056.04629,3008656476 +4,10742,1201,128,1.92200959,0.121931557,1049.76926,3008656476 +4,10743,1202,128,1.44496822,0.121732776,1051.48346,3008656476 +4,10744,1203,128,1.09663343,0.121343517,1054.85652,3008656476 +4,10745,1204,128,1.2148937,0.121935238,1049.73757,3008656476 +4,10746,1205,128,1.25089169,0.121911305,1049.94365,3008656476 +4,10747,1206,128,1.21964443,0.129577339,987.827046,3008656476 +4,10748,1207,128,1.39846468,0.135777695,942.717432,3008656476 +4,10749,1208,128,1.28238976,0.1214587,1053.85617,3008656476 +4,10750,1209,128,1.12576914,0.121353357,1054.77099,3008656476 +4,10751,1210,128,1.16027331,0.122543709,1044.52526,3008656476 +4,10752,1211,128,1.34475112,0.121579356,1052.81031,3008656476 +4,10753,1212,128,1.22077334,0.121274568,1055.45624,3008656476 +4,10754,1213,128,1.03155291,0.121010222,1057.76188,3008656476 +4,10755,1214,128,1.48681259,0.138708673,922.79738,3008656476 +4,10756,1215,128,1.48540628,0.136406039,938.374876,3008656476 +4,10757,1216,128,1.19471467,0.122511858,1044.79682,3008656476 +4,10758,1217,128,1.53304875,0.121121159,1056.79306,3008656476 +4,10759,1218,128,1.25176525,0.121599206,1052.63845,3008656476 +4,10760,1219,128,1.40301239,0.121458931,1053.85416,3008656476 +4,10761,1220,128,0.9407022,0.121706287,1051.71231,3008656476 +4,10762,1221,128,1.14037085,0.121461583,1053.83115,3008656476 +4,10763,1222,128,1.08853722,0.137576905,930.388716,3008656476 +4,10764,1223,128,1.07409561,0.111374265,1149.27807,3008656476 +4,10765,1224,128,1.37770259,0.136155095,940.104371,3008656476 +4,10766,1225,128,1.41548491,0.121617271,1052.48209,3008656476 +4,10767,1226,128,1.16538668,0.122644676,1043.66536,3008656476 +4,10768,1227,128,1.40825105,0.121506213,1053.44407,3008656476 +4,10769,1228,128,1.24459732,0.122095621,1048.35865,3008656476 +4,10770,1229,128,1.23458862,0.122348498,1046.19184,3008656476 +4,10771,1230,128,1.07978177,0.123015856,1040.51627,3008656476 +4,10772,1231,128,1.26745546,0.137262001,932.523197,3008656476 +4,10773,1232,128,1.26641214,0.136781094,935.801844,3008656476 +4,10774,1233,128,1.1645956,0.123911856,1032.99236,3008656476 +4,10775,1234,128,1.29026318,0.122968455,1040.91736,3008656476 +4,10776,1235,128,1.25098598,0.123466239,1036.72065,3008656476 +4,10777,1236,128,1.17785907,0.12443049,1028.68678,3008656476 +4,10778,1237,128,1.14018607,0.125579617,1019.27369,3008656476 +4,10779,1238,128,1.20951474,0.125300245,1021.54629,3008656476 +4,10780,1239,128,1.28468311,0.138143415,926.573301,3008656476 +4,10781,1240,128,1.37129259,0.139322701,918.730394,3008656476 +4,10782,1241,128,0.817854583,0.116203788,1101.51315,3008656476 +4,10783,1242,128,1.36379385,0.125086156,1023.2947,3008656476 +4,10784,1243,128,0.691217124,0.123405016,1037.23499,3008656476 +4,10785,1244,128,1.39746857,0.125363177,1021.03347,3008656476 +4,10786,1245,128,1.2206713,0.125764403,1017.77607,3008656476 +4,10787,1246,128,1.0377754,0.12552594,1019.70955,3008656476 +4,10788,1247,128,0.947753668,0.126446011,1012.28974,3008656476 +4,10789,1248,128,0.634539306,0.134103151,954.489131,3008656476 +4,10790,1249,128,0.759756565,0.144665261,884.801224,3008656476 +4,10791,1250,128,1.06657887,0.130443474,981.267948,3008656476 +4,10792,1251,128,0.780654669,0.128948712,992.642718,3008656476 +4,10793,1252,128,1.07606745,0.132240784,967.931346,3008656476 +4,10794,1253,128,0.838640392,0.131338821,974.578567,3008656476 +4,10795,1254,128,0.950462997,0.127490848,1003.99364,3008656476 +4,10796,1255,128,0.684074521,0.127947543,1000.40999,3008656476 +4,10797,1256,128,0.899158001,0.130371866,981.806918,3008656476 +4,10798,1257,128,1.07798302,0.14223581,899.914023,3008656476 +4,10799,1258,128,0.712970197,0.125788894,1017.57791,3008656476 +4,10800,1259,128,1.37125504,0.124696051,1026.49602,3008656476 +4,10801,1260,128,1.5140202,0.124580411,1027.44885,3008656476 +4,10802,1261,128,1.24448764,0.124644845,1026.91772,3008656476 +4,10803,1262,128,1.32233191,0.12395084,1032.66747,3008656476 +4,10804,1263,128,1.28948963,0.123253784,1038.50767,3008656476 +4,10805,1264,128,1.12000835,0.140808269,909.037523,3008656476 +4,10806,1265,128,1.10267138,0.140008208,914.232114,3008656476 +4,10807,1266,128,1.03121889,0.124024218,1032.0565,3008656476 +4,10808,1267,128,1.21600187,0.123982803,1032.40124,3008656476 +4,10809,1268,128,1.10018897,0.124514512,1027.99262,3008656476 +4,10810,1269,128,1.03978002,0.122721764,1043.00978,3008656476 +4,10811,1270,128,0.852268994,0.187486046,682.717475,3008656476 +4,10812,1271,128,1.05032301,0.125128458,1022.94875,3008656476 +4,10813,1272,128,1.0571934,0.132192368,968.285854,3008656476 +4,10814,1273,128,1.42131817,0.138883651,921.634757,3008656476 +4,10815,1274,128,0.987694442,0.125029714,1023.75664,3008656476 +4,10816,1275,128,1.31744528,0.124877861,1025.00154,3008656476 +4,10817,1276,128,1.29735208,0.125576734,1019.29709,3008656476 +4,10818,1277,128,1.1323961,0.124201273,1030.58525,3008656476 +4,10819,1278,128,1.01366615,0.124310257,1029.68173,3008656476 +4,10820,1279,128,1.18133771,0.123637495,1035.28464,3008656476 +4,10821,1280,128,1.38051486,0.137470188,931.110969,3008656476 +4,10822,1281,128,1.19264042,0.135205272,946.708646,3008656476 +4,10823,1282,128,1.30832016,0.123012187,1040.54731,3008656476 +4,10824,1283,128,0.952046871,0.123892842,1033.15089,3008656476 +4,10825,1284,128,1.36906409,0.122684058,1043.33034,3008656476 +4,10826,1285,128,1.29593015,0.122209106,1047.38513,3008656476 +4,10827,1286,128,1.10701227,0.122700933,1043.18685,3008656476 +4,10828,1287,128,1.26235127,0.12180054,1050.89846,3008656476 +4,10829,1288,128,1.09187078,0.134672345,950.454973,3008656476 +4,10830,1289,128,0.694343448,0.133750823,957.003457,3008656476 +4,10831,1290,128,1.1168474,0.11720415,1092.1115,3008656476 +4,10832,1291,128,1.40839553,0.121590541,1052.71347,3008656476 +4,10833,1292,128,1.25583577,0.121109101,1056.89828,3008656476 +4,10834,1293,128,1.09930038,0.121568958,1052.90036,3008656476 +4,10835,1294,128,1.14199901,0.120922028,1058.53336,3008656476 +4,10836,1295,128,0.956327975,0.12108959,1057.06857,3008656476 +4,10837,1296,128,1.05135155,0.120490202,1062.32704,3008656476 +4,10838,1297,128,1.23230648,0.134244471,953.484334,3008656476 +4,10839,1298,128,1.28249693,0.134506581,951.6263,3008656476 +4,10840,1299,128,1.40976822,0.121912783,1049.93092,3008656476 +4,10841,1300,128,1.1002959,0.121299794,1055.23675,3008656476 +4,10842,1301,128,1.14528775,0.121604306,1052.59431,3008656476 +4,10843,1302,128,1.1558435,0.121784409,1051.03766,3008656476 +4,10844,1303,128,0.799116075,0.121823385,1050.70139,3008656476 +4,10845,1304,128,1.15304685,0.12059889,1061.36964,3008656476 +4,10846,1305,128,1.34033668,0.135133016,947.214854,3008656476 +4,10847,1306,128,1.36518991,0.132957219,962.715684,3008656476 +4,10848,1307,128,1.18708098,0.115894914,1104.44881,3008656476 +4,10849,1308,128,0.88579917,0.122428723,1045.50629,3008656476 +4,10850,1309,128,1.28924298,0.121629348,1052.37759,3008656476 +4,10851,1310,128,1.40703857,0.120237248,1064.56196,3008656476 +4,10852,1311,128,1.30347109,0.121580063,1052.80419,3008656476 +4,10853,1312,128,1.03122175,0.121931057,1049.77356,3008656476 +4,10854,1313,128,1.11294496,0.120980088,1058.02535,3008656476 +4,10855,1314,128,1.26273119,0.136138096,940.221758,3008656476 +4,10856,1315,128,1.06874537,0.1348343,949.313342,3008656476 +4,10857,1316,128,1.40370917,0.121796175,1050.93612,3008656476 +4,10858,1317,128,1.03677845,0.119956227,1067.0559,3008656476 +4,10859,1318,128,0.77655226,0.120317932,1063.84807,3008656476 +4,10860,1319,128,1.24683869,0.120834692,1059.29843,3008656476 +4,10861,1320,128,1.33451247,0.119776701,1068.65525,3008656476 +4,10862,1321,128,1.36270928,0.120796407,1059.63417,3008656476 +4,10863,1322,128,1.44690382,0.136071118,940.684562,3008656476 +4,10864,1323,128,0.880745351,0.131884572,970.545668,3008656476 +4,10865,1324,128,0.907110274,0.117729757,1087.23574,3008656476 +4,10866,1325,128,1.26102972,0.12179248,1050.96801,3008656476 +4,10867,1326,128,1.36958683,0.121438896,1054.02803,3008656476 +4,10868,1327,128,1.48547709,0.121986669,1049.29498,3008656476 +4,10869,1328,128,1.5962745,0.123252523,1038.51829,3008656476 +4,10870,1329,128,0.993732154,0.123480636,1036.59978,3008656476 +4,10871,1330,128,1.08499825,0.123533948,1036.15243,3008656476 +4,10872,1331,128,1.01567841,0.136601352,937.033185,3008656476 +4,10873,1332,128,1.31161785,0.137503189,930.887501,3008656476 +4,10874,1333,128,1.04132247,0.122963686,1040.95773,3008656476 +4,10875,1334,128,1.34445,0.124127158,1031.2006,3008656476 +4,10876,1335,128,1.07509005,0.125144292,1022.81932,3008656476 +4,10877,1336,128,1.11456835,0.123878847,1033.26761,3008656476 +4,10878,1337,128,1.04773962,0.123696811,1034.7882,3008656476 +4,10879,1338,128,1.114712,0.125211959,1022.26657,3008656476 +4,10880,1339,128,1.23666942,0.139392445,918.270714,3008656476 +4,10881,1340,128,0.872095644,0.140303051,912.310881,3008656476 +4,10882,1341,128,1.14603114,0.125208864,1022.29184,3008656476 +4,10883,1342,128,1.3362627,0.127472864,1004.13528,3008656476 +4,10884,1343,128,1.04498196,0.127761046,1001.87032,3008656476 +4,10885,1344,128,1.13793993,0.128203756,998.410686,3008656476 +4,10886,1345,128,1.21146142,0.127951039,1000.38265,3008656476 +4,10887,1346,128,1.26770926,0.128062316,999.513393,3008656476 +4,10888,1347,128,1.06114888,0.142722847,896.843096,3008656476 +4,10889,1348,128,1.10035527,0.144887992,883.441051,3008656476 +4,10890,1349,128,1.36164713,0.128885251,993.131479,3008656476 +4,10891,1350,128,1.17942178,0.127477197,1004.10115,3008656476 +4,10892,1351,128,1.0443939,0.127569059,1003.3781,3008656476 +4,10893,1352,128,0.889186621,0.128236693,998.154249,3008656476 +4,10894,1353,128,0.893227279,0.12828568,997.773095,3008656476 +4,10895,1354,128,1.28604662,0.127848739,1001.18312,3008656476 +4,10896,1355,128,0.998983681,0.142603963,897.590763,3008656476 +4,10897,1356,128,1.06090724,0.141353044,905.53409,3008656476 +4,10898,1357,128,1.35132587,0.127447902,1004.33195,3008656476 +4,10899,1358,128,0.84718436,0.127750912,1001.94979,3008656476 +4,10900,1359,128,0.952801168,0.130846887,978.242608,3008656476 +4,10901,1360,128,0.859393358,0.127328177,1005.27631,3008656476 +4,10902,1361,128,1.4191308,0.127788757,1001.65306,3008656476 +4,10903,1362,128,1.17555726,0.127514405,1003.80816,3008656476 +4,10904,1363,128,1.30486023,0.141211633,906.440902,3008656476 +4,10905,1364,128,0.993155718,0.140267689,912.540877,3008656476 +4,10906,1365,128,1.32241368,0.127597783,1003.15223,3008656476 +4,10907,1366,128,1.31817198,0.128006546,999.948862,3008656476 +4,10908,1367,128,1.33402562,0.127739595,1002.03856,3008656476 +4,10909,1368,128,1.30312026,0.127469659,1004.16053,3008656476 +4,10910,1369,128,1.06195366,0.127466274,1004.18719,3008656476 +4,10911,1370,128,0.868773758,0.127198309,1006.30269,3008656476 +4,10912,1371,128,1.15879285,0.138087106,926.951138,3008656476 +4,10913,1372,128,0.938272595,0.138408487,924.798781,3008656476 +4,10914,1373,128,1.26849318,0.124681742,1026.61382,3008656476 +4,10915,1374,128,1.4666822,0.124504488,1028.07539,3008656476 +4,10916,1375,128,1.68230283,0.125187898,1022.46305,3008656476 +4,10917,1376,128,1.74252641,0.125219175,1022.20766,3008656476 +4,10918,1377,128,1.12527382,0.125240823,1022.03097,3008656476 +4,10919,1378,128,1.39801323,0.124297882,1029.78424,3008656476 +4,10920,1379,128,1.09730279,0.13585173,942.20368,3008656476 +4,10921,1380,128,1.4860177,0.125156549,1022.71915,3008656476 +4,10922,1381,128,1.19665647,0.134691648,950.318761,3008656476 +4,10923,1382,128,1.21104252,0.125182448,1022.50756,3008656476 +4,10924,1383,128,1.36253405,0.124425279,1028.72986,3008656476 +4,10925,1384,128,1.04200065,0.124061887,1031.74313,3008656476 +4,10926,1385,128,1.46749818,0.1245075,1028.05052,3008656476 +4,10927,1386,128,1.09201074,0.125177773,1022.54575,3008656476 +4,10928,1387,128,1.19723201,0.123889691,1033.17717,3008656476 +4,10929,1388,128,1.47301126,0.138120818,926.724891,3008656476 +4,10930,1389,128,1.26168799,0.138295502,925.554325,3008656476 +4,10931,1390,128,0.974172056,0.124669267,1026.71655,3008656476 +4,10932,1391,128,1.35297441,0.12492287,1024.63224,3008656476 +4,10933,1392,128,1.19152462,0.124367932,1029.20422,3008656476 +4,10934,1393,128,1.09750152,0.12506314,1023.48302,3008656476 +4,10935,1394,128,1.44020128,0.124884776,1024.94479,3008656476 +4,10936,1395,128,1.1895014,0.123326774,1037.89304,3008656476 +4,10937,1396,128,1.07492375,0.13736153,931.847512,3008656476 +4,10938,1397,128,1.1482836,0.137201272,932.935957,3008656476 +4,10939,1398,128,1.32129419,0.124088135,1031.52489,3008656476 +4,10940,1399,128,1.27769065,0.122483172,1045.04152,3008656476 +4,10941,1400,128,1.42406213,0.122762145,1042.6667,3008656476 +4,10942,1401,128,1.84367943,0.122736354,1042.88579,3008656476 +4,10943,1402,128,1.19374228,0.122358412,1046.10707,3008656476 +4,10944,1403,128,1.14740837,0.122567902,1044.31909,3008656476 +4,10945,1404,128,1.19118392,0.134514806,951.568112,3008656476 +4,10946,1405,128,1.30017185,0.122106344,1048.26658,3008656476 +4,10947,1406,128,1.57572293,0.126951085,1008.26236,3008656476 +4,10948,1407,128,1.65682042,0.121057121,1057.35209,3008656476 +4,10949,1408,128,1.18103659,0.121364622,1054.67308,3008656476 +4,10950,1409,128,1.18643439,0.119295026,1072.97013,3008656476 +4,10951,1410,128,1.40920269,0.120912824,1058.61393,3008656476 +4,10952,1411,128,1.8024323,0.121854767,1050.4308,3008656476 +4,10953,1412,128,1.44867754,0.121778081,1051.09227,3008656476 +4,10954,1413,128,1.57157612,0.133787487,956.741194,3008656476 +4,10955,1414,128,1.75849557,0.136136301,940.234155,3008656476 +4,10956,1415,128,1.7411561,0.121817208,1050.75467,3008656476 +4,10957,1416,128,1.36505497,0.122757202,1042.70868,3008656476 +4,10958,1417,128,1.27676463,0.122326928,1046.37631,3008656476 +4,10959,1418,128,1.48016,0.121823931,1050.69668,3008656476 +4,10960,1419,128,1.63187766,0.122097655,1048.34118,3008656476 +4,10961,1420,128,1.76668763,0.121612888,1052.52003,3008656476 +4,10962,1421,128,1.41315222,0.134033152,954.987614,3008656476 +4,10963,1422,128,1.86531699,0.122273432,1046.83412,3008656476 +4,10964,1423,128,1.47412086,0.126069904,1015.30973,3008656476 +4,10965,1424,128,1.6302011,0.120786992,1059.71676,3008656476 +4,10966,1425,128,1.92119336,0.120593212,1061.41961,3008656476 +4,10967,1426,128,1.51594234,0.121220133,1055.93021,3008656476 +4,10968,1427,128,1.45120311,0.120773097,1059.83868,3008656476 +4,10969,1428,128,1.67073846,0.120391376,1063.19908,3008656476 +4,10970,1429,128,2.1464169,0.120312508,1063.89603,3008656476 +4,10971,1430,128,1.93390048,0.136684223,936.465067,3008656476 +4,10972,1431,128,1.58802485,0.134320624,952.943756,3008656476 +4,10973,1432,128,1.63726151,0.120759314,1059.95965,3008656476 +4,10974,1433,128,1.42762876,0.12181406,1050.78182,3008656476 +4,10975,1434,128,1.35832715,0.121829076,1050.65231,3008656476 +4,10976,1435,128,1.77522254,0.122861861,1041.82046,3008656476 +4,10977,1436,128,1.31209278,0.12284862,1041.93275,3008656476 +4,10978,1437,128,1.42417753,0.122731791,1042.92457,3008656476 +4,10979,1438,128,1.63854647,0.137536756,930.66031,3008656476 +4,10980,1439,128,1.80283904,0.12340903,1037.20125,3008656476 +4,10981,1440,128,1.29400861,0.127347356,1005.12491,3008656476 +4,10982,1441,128,1.63647079,0.125799007,1017.49611,3008656476 +4,10983,1442,128,1.46773851,0.125155485,1022.72785,3008656476 +4,10984,1443,128,1.18975341,0.126665109,1010.53874,3008656476 +4,10985,1444,128,1.92222595,0.127802593,1001.54462,3008656476 +4,10986,1445,128,1.5046618,0.127780127,1001.72071,3008656476 +4,10987,1446,128,2.09011054,0.13854066,923.916488,3008656476 +4,10988,1447,128,1.66432846,0.122363046,1046.06745,3008656476 +4,10989,1448,128,1.36075711,0.140990109,907.865104,3008656476 +4,10990,1449,128,1.77131367,0.123243371,1038.59541,3008656476 +4,10991,1450,128,1.36366236,0.128215526,998.319034,3008656476 +4,10992,1451,128,1.34162009,0.12809364,999.268972,3008656476 +4,10993,1452,128,1.51696897,0.127556467,1003.47715,3008656476 +4,10994,1453,128,1.44894648,0.127502753,1003.89989,3008656476 +4,10995,1454,128,1.47561169,0.127913425,1000.67682,3008656476 +4,10996,1455,128,1.08644402,0.139782585,915.707776,3008656476 +4,10997,1456,128,1.31933331,0.147485587,867.881415,3008656476 +4,10998,1457,128,1.43417013,0.127536789,1003.63198,3008656476 +4,10999,1458,128,1.81734037,0.127850923,1001.16602,3008656476 +4,11000,1459,128,1.69579399,0.127562165,1003.43233,3008656476 +4,11001,1460,128,1.57159448,0.127929752,1000.54911,3008656476 +4,11002,1461,128,1.1493392,0.128057136,999.553824,3008656476 +4,11003,1462,128,0.946346343,0.128045836,999.642034,3008656476 +4,11004,1463,128,1.40215468,0.140179212,913.116846,3008656476 +4,11005,1464,128,1.28326344,0.141301445,905.864763,3008656476 +4,11006,1465,128,1.35116637,0.127801909,1001.54998,3008656476 +4,11007,1466,128,1.90219462,0.127549392,1003.53281,3008656476 +4,11008,1467,128,1.68059158,0.127669596,1002.58796,3008656476 +4,11009,1468,128,1.51212895,0.12728708,1005.60088,3008656476 +4,11010,1469,128,1.70739615,0.127680329,1002.50368,3008656476 +4,11011,1470,128,1.36547101,0.127304341,1005.46453,3008656476 +4,11012,1471,128,1.50084698,0.143261147,893.473232,3008656476 +4,11013,1472,128,1.73348939,0.138515235,924.086076,3008656476 +4,11014,1473,128,1.64453125,0.124657277,1026.81531,3008656476 +4,11015,1474,128,1.6092447,0.12529057,1021.62517,3008656476 +4,11016,1475,128,1.54209113,0.125107375,1023.12114,3008656476 +4,11017,1476,128,1.47008467,0.124890035,1024.90163,3008656476 +4,11018,1477,128,1.58700645,0.124885181,1024.94146,3008656476 +4,11019,1478,128,1.61680639,0.123764658,1034.22093,3008656476 +4,11020,1479,128,1.37223816,0.139881489,915.060319,3008656476 +4,11021,1480,128,1.5834657,0.137110263,933.555207,3008656476 +4,11022,1481,128,1.77820468,0.123812933,1033.81769,3008656476 +4,11023,1482,128,1.51151001,0.124120395,1031.25679,3008656476 +4,11024,1483,128,1.76779425,0.123562037,1035.91688,3008656476 +4,11025,1484,128,1.55625093,0.12262142,1043.8633,3008656476 +4,11026,1485,128,1.55021393,0.122787982,1042.4473,3008656476 +4,11027,1486,128,1.7797792,0.12257773,1044.23536,3008656476 +4,11028,1487,128,1.39336908,0.136418681,938.287917,3008656476 +4,11029,1488,128,1.52573657,0.130674667,979.531863,3008656476 +4,11030,1489,128,1.21709025,0.122589373,1044.13618,3008656476 +4,11031,1490,128,1.38648987,0.121881313,1050.20201,3008656476 +4,11032,1491,128,1.50424433,0.121158872,1056.46411,3008656476 +4,11033,1492,128,2.01222014,0.12056969,1061.62668,3008656476 +4,11034,1493,128,1.44575691,0.121054075,1057.3787,3008656476 +4,11035,1494,128,1.12722576,0.120145439,1065.37544,3008656476 +4,11036,1495,128,1.55793679,0.121447746,1053.95122,3008656476 +4,11037,1496,128,1.42782867,0.134027991,955.024387,3008656476 +4,11038,1497,128,1.49552619,0.135885585,941.968937,3008656476 +4,11039,1498,128,1.3578459,0.120975775,1058.06307,3008656476 +4,11040,1499,128,1.28710115,0.120632921,1061.07022,3008656476 +4,11041,1500,128,1.51331127,0.12162933,1052.37774,3008656476 +4,11042,1501,128,1.97533536,0.120922276,1058.53118,3008656476 +4,11043,1502,128,1.32631993,0.12159312,1052.69114,3008656476 +4,11044,1503,128,1.41473699,0.121399648,1054.36879,3008656476 +4,11045,1504,128,1.52268624,0.134181864,953.929214,3008656476 +4,11046,1505,128,1.56776333,0.134215003,953.693679,3008656476 +4,11047,1506,128,1.24103642,0.122502679,1044.87511,3008656476 +4,11048,1507,128,1.39602327,0.120664744,1060.79038,3008656476 +4,11049,1508,128,1.59406066,0.122366272,1046.03988,3008656476 +4,11050,1509,128,1.49142671,0.121520692,1053.31856,3008656476 +4,11051,1510,128,1.73775029,0.121624397,1052.42043,3008656476 +4,11052,1511,128,1.28927267,0.121689138,1051.86052,3008656476 +4,11053,1512,128,1.34407938,0.122816457,1042.20561,3008656476 +4,11054,1513,128,1.68973112,0.128466037,996.372294,3008656476 +4,11055,1514,128,1.9986105,0.134217859,953.673386,3008656476 +4,11056,1515,128,1.41011941,0.121489461,1053.58933,3008656476 +4,11057,1516,128,1.53115571,0.120702697,1060.45683,3008656476 +4,11058,1517,128,1.55940843,0.120745114,1060.0843,3008656476 +4,11059,1518,128,1.80873823,0.120775814,1059.81484,3008656476 +4,11060,1519,128,1.3238095,0.120247421,1064.47189,3008656476 +4,11061,1520,128,1.83247113,0.121228911,1055.85375,3008656476 +4,11062,1521,128,1.27500367,0.13482002,949.413893,3008656476 +4,11063,1522,128,1.69867992,0.132431228,966.539403,3008656476 +4,11064,1523,128,1.84550154,0.12162126,1052.44757,3008656476 +4,11065,1524,128,1.96992147,0.120431015,1062.84913,3008656476 +4,11066,1525,128,1.49024856,0.121112208,1056.87116,3008656476 +4,11067,1526,128,1.24654162,0.121262484,1055.56142,3008656476 +4,11068,1527,128,1.39875281,0.12137671,1054.56805,3008656476 +4,11069,1528,128,1.53302169,0.122018991,1049.01703,3008656476 +4,11070,1529,128,1.82001817,0.121972921,1049.41325,3008656476 +4,11071,1530,128,1.93318594,0.136157839,940.085425,3008656476 +4,11072,1531,128,1.71631134,0.1380359,927.295001,3008656476 +4,11073,1532,128,1.80784059,0.123383406,1037.41665,3008656476 +4,11074,1533,128,1.73874772,0.123367382,1037.5514,3008656476 +4,11075,1534,128,1.60990953,0.124692404,1026.52604,3008656476 +4,11076,1535,128,1.33526623,0.124019178,1032.09844,3008656476 +4,11077,1536,128,1.64190698,0.124089756,1031.51142,3008656476 +4,11078,1537,128,1.41410053,0.124118137,1031.27555,3008656476 +4,11079,1538,128,1.7969861,0.140799714,909.092756,3008656476 +4,11080,1539,128,1.64262533,0.138935538,921.290563,3008656476 +4,11081,1540,128,1.69636202,0.124628546,1027.05202,3008656476 +4,11082,1541,128,1.68819606,0.125468553,1020.17595,3008656476 +4,11083,1542,128,1.90856636,0.127714115,1002.23848,3008656476 +4,11084,1543,128,1.62743795,0.127680725,1002.50057,3008656476 +4,11085,1544,128,1.5375222,0.130238738,982.810506,3008656476 +4,11086,1545,128,1.56392395,0.130816753,978.467949,3008656476 +4,11087,1546,128,1.54787314,0.140159413,913.245834,3008656476 +4,11088,1547,128,1.37964213,0.142418475,898.759799,3008656476 +4,11089,1548,128,1.50967824,0.128755686,994.130853,3008656476 +4,11090,1549,128,1.69693172,0.129896495,985.399952,3008656476 +4,11091,1550,128,1.74628437,0.130761303,978.882873,3008656476 +4,11092,1551,128,1.36044061,0.128984959,992.363769,3008656476 +4,11093,1552,128,1.49625015,0.130933593,977.594803,3008656476 +4,11094,1553,128,2.074821,0.127674082,1002.55273,3008656476 +4,11095,1554,128,1.92624736,0.141338129,905.629648,3008656476 +4,11096,1555,128,1.52548563,0.141346573,905.575546,3008656476 +4,11097,1556,128,1.59762788,0.127909926,1000.7042,3008656476 +4,11098,1557,128,1.757321,0.127664299,1002.62956,3008656476 +4,11099,1558,128,1.37930632,0.129676927,987.068424,3008656476 +4,11100,1559,128,1.30505717,0.130454321,981.186357,3008656476 +4,11101,1560,128,1.59602904,0.127415533,1004.58709,3008656476 +4,11102,1561,128,1.67273033,0.127794488,1001.60814,3008656476 +4,11103,1562,128,2.0665834,0.141820625,902.548554,3008656476 +4,11104,1563,128,1.89239454,0.140319973,912.20086,3008656476 +4,11105,1564,128,1.33471775,0.127779861,1001.7228,3008656476 +4,11106,1565,128,1.56775427,0.127339334,1005.18823,3008656476 +4,11107,1566,128,1.42674005,0.127876634,1000.96473,3008656476 +4,11108,1567,128,1.10986006,0.12719652,1006.31684,3008656476 +4,11109,1568,128,0.927177608,0.129658572,987.208158,3008656476 +4,11110,1569,128,1.19690633,0.127563109,1003.4249,3008656476 +4,11111,1570,128,1.28466368,0.142663041,897.219063,3008656476 +4,11112,1571,128,1.58769917,0.142322989,899.362787,3008656476 +4,11113,1572,128,1.07303381,0.127717546,1002.21155,3008656476 +4,11114,1573,128,1.3503288,0.128235417,998.164181,3008656476 +4,11115,1574,128,1.69487989,0.127885335,1000.89662,3008656476 +4,11116,1575,128,1.72474802,0.128285132,997.777357,3008656476 +4,11117,1576,128,1.61568964,0.127634113,1002.86669,3008656476 +4,11118,1577,128,1.39222181,0.127973167,1000.20968,3008656476 +4,11119,1578,128,1.41918314,0.1435416,891.727555,3008656476 +4,11120,1579,128,1.60971057,0.140903089,908.42579,3008656476 +4,11121,1580,128,1.66277957,0.127202789,1006.26724,3008656476 +4,11122,1581,128,1.33842278,0.127508065,1003.85807,3008656476 +4,11123,1582,128,1.27089262,0.127622576,1002.95735,3008656476 +4,11124,1583,128,1.45680904,0.128059371,999.536379,3008656476 +4,11125,1584,128,1.44880939,0.128002168,999.983063,3008656476 +4,11126,1585,128,1.67646086,0.127397726,1004.72751,3008656476 +4,11127,1586,128,1.51570618,0.140826788,908.917982,3008656476 +4,11128,1587,128,1.22421837,0.141691028,903.374065,3008656476 +4,11129,1588,128,1.27595103,0.125059346,1023.51407,3008656476 +4,11130,1589,128,1.61916184,0.124732099,1026.19936,3008656476 +4,11131,1590,128,1.18864954,0.124216607,1030.45803,3008656476 +4,11132,1591,128,1.23555064,0.125232671,1022.0975,3008656476 +4,11133,1592,128,1.54439354,0.125043956,1023.64004,3008656476 +4,11134,1593,128,1.2846992,0.124766584,1025.91572,3008656476 +4,11135,1594,128,1.06427205,0.139025821,920.692279,3008656476 +4,11136,1595,128,1.10420883,0.136406954,938.368582,3008656476 +4,11137,1596,128,1.1871202,0.124111449,1031.33112,3008656476 +4,11138,1597,128,0.905008435,0.123041636,1040.29826,3008656476 +4,11139,1598,128,1.40427911,0.123127601,1039.57195,3008656476 +4,11140,1599,128,0.989475012,0.122961658,1040.9749,3008656476 +4,11141,1600,128,1.01832843,0.122593088,1044.10454,3008656476 +4,11142,1601,128,1.32123339,0.12368867,1034.8563,3008656476 +4,11143,1602,128,1.01526904,0.123631237,1035.33705,3008656476 +4,11144,1603,128,1.34069788,0.128065597,999.487786,3008656476 +4,11145,1604,128,1.10191607,0.13574323,942.956787,3008656476 +4,11146,1605,128,1.11221921,0.121944328,1049.65932,3008656476 +4,11147,1606,128,0.886300445,0.121729282,1051.51364,3008656476 +4,11148,1607,128,1.42016327,0.122576893,1044.24249,3008656476 +4,11149,1608,128,1.1832726,0.121633241,1052.34391,3008656476 +4,11150,1609,128,1.53002,0.121721707,1051.57907,3008656476 +4,11151,1610,128,1.86491835,0.121427843,1054.12397,3008656476 +4,11152,1611,128,1.48053849,0.134017795,955.097045,3008656476 +4,11153,1612,128,1.80892158,0.136301745,939.092893,3008656476 +4,11154,1613,128,1.36072338,0.121844975,1050.51521,3008656476 +4,11155,1614,128,1.48672414,0.121931065,1049.77349,3008656476 +4,11156,1615,128,1.57555103,0.12129528,1055.27602,3008656476 +4,11157,1616,128,1.2470324,0.121572522,1052.8695,3008656476 +4,11158,1617,128,1.7569313,0.121129307,1056.72197,3008656476 +4,11159,1618,128,1.14610088,0.121449942,1053.93216,3008656476 +4,11160,1619,128,1.90349674,0.120731186,1060.2066,3008656476 +4,11161,1620,128,2.04427361,0.125674075,1018.5076,3008656476 +4,11162,1621,128,1.66685474,0.138056029,927.159798,3008656476 +4,11163,1622,128,1.71027088,0.122075601,1048.53057,3008656476 +4,11164,1623,128,1.54809391,0.12194204,1049.67901,3008656476 +4,11165,1624,128,1.63421679,0.12290829,1041.4269,3008656476 +4,11166,1625,128,1.3326329,0.121911257,1049.94406,3008656476 +4,11167,1626,128,1.74936938,0.12080063,1059.59712,3008656476 +4,11168,1627,128,1.58819509,0.122340722,1046.25833,3008656476 +4,11169,1628,128,1.4937129,0.138669199,923.060066,3008656476 +4,11170,1629,128,1.28758681,0.137727953,929.368347,3008656476 +4,11171,1630,128,1.55206501,0.122274125,1046.82818,3008656476 +4,11172,1631,128,1.44653606,0.121992541,1049.24448,3008656476 +4,11173,1632,128,1.56751359,0.121840857,1050.55072,3008656476 +4,11174,1633,128,1.45065689,0.121194188,1056.15626,3008656476 +4,11175,1634,128,1.56896913,0.121126221,1056.74889,3008656476 +4,11176,1635,128,1.41958356,0.121947907,1049.62851,3008656476 +4,11177,1636,128,1.50865984,0.136454475,938.04179,3008656476 +4,11178,1637,128,1.72112072,0.122422773,1045.5571,3008656476 +4,11179,1638,128,1.46853447,0.132538141,965.759736,3008656476 +4,11180,1639,128,1.65721369,0.121638685,1052.29681,3008656476 +4,11181,1640,128,1.1111306,0.120974902,1058.07071,3008656476 +4,11182,1641,128,1.28996193,0.121955859,1049.56007,3008656476 +4,11183,1642,128,1.69877636,0.120564539,1061.67204,3008656476 +4,11184,1643,128,1.23168147,0.120459641,1062.59656,3008656476 +4,11185,1644,128,1.37715089,0.121289083,1055.32993,3008656476 +4,11186,1645,128,1.11732686,0.133048744,962.053426,3008656476 +4,11187,1646,128,1.49174213,0.134047939,954.882268,3008656476 +4,11188,1647,128,1.42237568,0.121561708,1052.96316,3008656476 +4,11189,1648,128,1.32841945,0.121589134,1052.72565,3008656476 +4,11190,1649,128,1.32047856,0.12287502,1041.70888,3008656476 +4,11191,1650,128,1.32577097,0.120531845,1061.96002,3008656476 +4,11192,1651,128,1.19272196,0.122650761,1043.61358,3008656476 +4,11193,1652,128,1.42087698,0.122541678,1044.54258,3008656476 +4,11194,1653,128,1.32214916,0.136918008,934.86607,3008656476 +4,11195,1654,128,1.05570376,0.121759195,1051.25531,3008656476 +4,11196,1655,128,1.42476344,0.127043378,1007.52988,3008656476 +4,11197,1656,128,1.36134195,0.123018474,1040.49413,3008656476 +4,11198,1657,128,1.38799036,0.124106574,1031.37163,3008656476 +4,11199,1658,128,1.48587036,0.124509431,1028.03458,3008656476 +4,11200,1659,128,1.33900261,0.124494864,1028.15486,3008656476 +4,11201,1660,128,1.2767154,0.1242189,1030.43901,3008656476 +4,11202,1661,128,1.22603071,0.124107686,1031.36239,3008656476 +4,11203,1662,128,1.58480763,0.139739361,915.991021,3008656476 +4,11204,1663,128,1.38141024,0.138160339,926.4598,3008656476 +4,11205,1664,128,1.37439311,0.124528702,1027.87549,3008656476 +4,11206,1665,128,1.58684599,0.123505913,1036.38763,3008656476 +4,11207,1666,128,1.62740481,0.12417513,1030.80222,3008656476 +4,11208,1667,128,1.68760312,0.125758518,1017.8237,3008656476 +4,11209,1668,128,1.76871645,0.125445066,1020.36695,3008656476 +4,11210,1669,128,1.67430651,0.125891494,1016.7486,3008656476 +4,11211,1670,128,1.50326848,0.143497766,891.999949,3008656476 +4,11212,1671,128,1.01105559,0.144190257,887.716013,3008656476 +4,11213,1672,128,1.7198658,0.131254796,975.20246,3008656476 +4,11214,1673,128,1.69225204,0.127097703,1007.09924,3008656476 +4,11215,1674,128,1.68981373,0.127601296,1003.12461,3008656476 +4,11216,1675,128,1.46920228,0.13016216,983.388721,3008656476 +4,11217,1676,128,1.60460281,0.127089874,1007.16128,3008656476 +4,11218,1677,128,1.99547303,0.127781594,1001.70921,3008656476 +4,11219,1678,128,1.68344784,0.141171955,906.695668,3008656476 +4,11220,1679,128,1.7952106,0.138903982,921.49986,3008656476 +4,11221,1680,128,1.61879611,0.124426038,1028.72359,3008656476 +4,11222,1681,128,1.57612526,0.12454103,1027.77374,3008656476 +4,11223,1682,128,1.95890331,0.124869551,1025.06975,3008656476 +4,11224,1683,128,1.7300899,0.125122084,1023.00086,3008656476 +4,11225,1684,128,1.46411884,0.124051509,1031.82945,3008656476 +4,11226,1685,128,1.35397947,0.124769552,1025.89132,3008656476 +4,11227,1686,128,1.73316276,0.138071704,927.05454,3008656476 +4,11228,1687,128,1.62486935,0.135957453,941.471006,3008656476 +4,11229,1688,128,1.31603253,0.124991836,1024.06688,3008656476 +4,11230,1689,128,1.22456098,0.124154236,1030.9757,3008656476 +4,11231,1690,128,1.38524818,0.123539881,1036.10267,3008656476 +4,11232,1691,128,1.55693471,0.123325065,1037.90742,3008656476 +4,11233,1692,128,1.42093813,0.123019252,1040.48755,3008656476 +4,11234,1693,128,1.36775184,0.123095107,1039.84637,3008656476 +4,11235,1694,128,1.53565419,0.137459487,931.183455,3008656476 +4,11236,1695,128,1.49415016,0.11375603,1125.21508,3008656476 +4,11237,1696,128,1.59369922,0.137240285,932.670753,3008656476 +4,11238,1697,128,1.52269268,0.121658583,1052.1247,3008656476 +4,11239,1698,128,1.31682229,0.121786879,1051.01634,3008656476 +4,11240,1699,128,1.57533836,0.123302781,1038.095,3008656476 +4,11241,1700,128,1.46494794,0.122022354,1048.98812,3008656476 +4,11242,1701,128,1.60577273,0.120538302,1061.90313,3008656476 +4,11243,1702,128,1.04931235,0.120702053,1060.46249,3008656476 +4,11244,1703,128,1.24970043,0.133609628,958.014792,3008656476 +4,11245,1704,128,1.22179043,0.136223292,939.63373,3008656476 +4,11246,1705,128,1.22196412,0.120708625,1060.40476,3008656476 +4,11247,1706,128,1.52541518,0.121095481,1057.01715,3008656476 +4,11248,1707,128,1.6409694,0.121980763,1049.34579,3008656476 +4,11249,1708,128,1.95368183,0.121758906,1051.2578,3008656476 +4,11250,1709,128,1.51531732,0.120840855,1059.24441,3008656476 +4,11251,1710,128,1.78316617,0.1220915,1048.39403,3008656476 +4,11252,1711,128,1.4056083,0.131938331,970.150214,3008656476 +4,11253,1712,128,1.42531443,0.117459943,1089.7332,3008656476 +4,11254,1713,128,1.55808294,0.136887314,935.075693,3008656476 +4,11255,1714,128,1.77397668,0.12166942,1052.03099,3008656476 +4,11256,1715,128,1.49935949,0.123148301,1039.39721,3008656476 +4,11257,1716,128,1.33350265,0.122268952,1046.87247,3008656476 +4,11258,1717,128,1.71644175,0.121782391,1051.05507,3008656476 +4,11259,1718,128,1.20166016,0.121541285,1053.14009,3008656476 +4,11260,1719,128,1.57497263,0.121062858,1057.30198,3008656476 +4,11261,1720,128,1.9767741,0.135487244,944.738384,3008656476 +4,11262,1721,128,1.73672009,0.140404485,911.651789,3008656476 +4,11263,1722,128,1.48942244,0.109939332,1164.27849,3008656476 +4,11264,1723,128,1.92182553,0.121228757,1055.85509,3008656476 +4,11265,1724,128,1.5949825,0.122465293,1045.19409,3008656476 +4,11266,1725,128,1.20496798,0.1215468,1053.09231,3008656476 +4,11267,1726,128,1.75782013,0.122454133,1045.28934,3008656476 +4,11268,1727,128,1.46031535,0.121894709,1050.0866,3008656476 +4,11269,1728,128,1.58091164,0.135980586,941.310843,3008656476 +4,11270,1729,128,1.56590712,0.132691856,964.640965,3008656476 +4,11271,1730,128,1.4420892,0.113008298,1132.66019,3008656476 +4,11272,1731,128,1.09391212,0.121059869,1057.32809,3008656476 +4,11273,1732,128,1.87310851,0.121288192,1055.33769,3008656476 +4,11274,1733,128,1.05866838,0.120229474,1064.63079,3008656476 +4,11275,1734,128,1.41155195,0.119719343,1069.16724,3008656476 +4,11276,1735,128,1.33739889,0.120603724,1061.32709,3008656476 +4,11277,1736,128,1.20403647,0.120300803,1063.99955,3008656476 +4,11278,1737,128,1.07974803,0.135260641,946.321111,3008656476 +4,11279,1738,128,1.15923905,0.136553418,937.36211,3008656476 +4,11280,1739,128,1.05738771,0.121314517,1055.10868,3008656476 +4,11281,1740,128,0.994726896,0.184728449,692.908974,3008656476 +4,11282,1741,128,1.22858071,0.120729179,1060.22422,3008656476 +4,11283,1742,128,1.21489251,0.120813909,1059.48066,3008656476 +4,11284,1743,128,1.29489625,0.121398507,1054.3787,3008656476 +4,11285,1744,128,1.52094007,0.121867774,1050.31868,3008656476 +4,11286,1745,128,0.989920616,0.135771752,942.758697,3008656476 +4,11287,1746,128,1.62484574,0.133818958,956.516191,3008656476 +4,11288,1747,128,1.73212385,0.122785876,1042.46518,3008656476 +4,11289,1748,128,1.2037487,0.12238548,1045.8757,3008656476 +4,11290,1749,128,1.97117865,0.12398592,1032.37529,3008656476 +4,11291,1750,128,1.42430568,0.123950266,1032.67225,3008656476 +4,11292,1751,128,1.24617016,0.123450264,1036.85481,3008656476 +4,11293,1752,128,1.31518924,0.123681127,1034.91942,3008656476 +4,11294,1753,128,1.42312932,0.137041893,934.020957,3008656476 +4,11295,1754,128,1.52628672,0.13616336,940.047308,3008656476 +4,11296,1755,128,1.84533942,0.1248546,1025.1925,3008656476 +4,11297,1756,128,1.26748693,0.123719115,1034.60165,3008656476 +4,11298,1757,128,1.34896469,0.124433804,1028.65938,3008656476 +4,11299,1758,128,1.31343687,0.126075968,1015.26089,3008656476 +4,11300,1759,128,1.39933932,0.126592691,1011.11683,3008656476 +4,11301,1760,128,1.49480128,0.127760031,1001.87828,3008656476 +4,11302,1761,128,1.15079319,0.140144823,913.340909,3008656476 +4,11303,1762,128,2.09180212,0.127564269,1003.41578,3008656476 +4,11304,1763,128,1.2975384,0.132353342,967.108182,3008656476 +4,11305,1764,128,1.23001862,0.126936384,1008.37913,3008656476 +4,11306,1765,128,1.17997909,0.13153338,973.137009,3008656476 +4,11307,1766,128,1.68835342,0.127423602,1004.52348,3008656476 +4,11308,1767,128,1.60124588,0.130610042,980.016529,3008656476 +4,11309,1768,128,1.60828948,0.13160027,972.642381,3008656476 +4,11310,1769,128,1.04125714,0.14594959,877.015139,3008656476 +4,11311,1770,128,1.2381916,0.12824627,998.07971,3008656476 +4,11312,1771,128,1.2745924,0.133975153,955.401036,3008656476 +4,11313,1772,128,1.08653283,0.126992366,1007.9346,3008656476 +4,11314,1773,128,1.04477525,0.127269178,1005.74233,3008656476 +4,11315,1774,128,1.032812,0.127230367,1006.04913,3008656476 +4,11316,1775,128,1.13083816,0.126988017,1007.96912,3008656476 +4,11317,1776,128,1.22441697,0.127520877,1003.75721,3008656476 +4,11318,1777,128,1.36233115,0.127588358,1003.22633,3008656476 +4,11319,1778,128,1.04617143,0.133733995,957.123879,3008656476 +4,11320,1779,128,1.25225997,0.1409014,908.43668,3008656476 +4,11321,1780,128,1.06747937,0.127926575,1000.57396,3008656476 +4,11322,1781,128,0.870791614,0.12765931,1002.66874,3008656476 +4,11323,1782,128,1.12523139,0.126748596,1009.87312,3008656476 +4,11324,1783,128,1.23247647,0.130082036,983.994439,3008656476 +4,11325,1784,128,1.37354743,0.129232831,990.460389,3008656476 +4,11326,1785,128,0.983132482,0.128697479,994.580477,3008656476 +4,11327,1786,128,0.90834403,0.135581447,944.081973,3008656476 +4,11328,1787,128,0.925271988,0.141317298,905.763143,3008656476 +4,11329,1788,128,0.837901354,0.124491862,1028.17966,3008656476 +4,11330,1789,128,1.30574787,0.12485157,1025.21738,3008656476 +4,11331,1790,128,0.89034766,0.125226592,1022.14712,3008656476 +4,11332,1791,128,1.28547692,0.125311357,1021.4557,3008656476 +4,11333,1792,128,1.3274895,0.124483238,1028.25089,3008656476 +4,11334,1793,128,1.00517571,0.124302558,1029.7455,3008656476 +4,11335,1794,128,1.28622711,0.137479143,931.050319,3008656476 +4,11336,1795,128,0.951941669,0.138111907,926.784683,3008656476 +4,11337,1796,128,1.45715499,0.123730138,1034.50947,3008656476 +4,11338,1797,128,1.50239968,0.12384377,1033.56027,3008656476 +4,11339,1798,128,1.47474837,0.123166817,1039.24095,3008656476 +4,11340,1799,128,1.21283221,0.125046927,1023.61572,3008656476 +4,11341,1800,128,1.1739012,0.1233093,1038.04012,3008656476 +4,11342,1801,128,1.24133956,0.12194509,1049.65276,3008656476 +4,11343,1802,128,1.17973769,0.135302612,946.027561,3008656476 +4,11344,1803,128,1.27176833,0.135027795,947.952975,3008656476 +4,11345,1804,128,1.1214385,0.12273108,1042.93061,3008656476 +4,11346,1805,128,1.5526489,0.122184877,1047.59282,3008656476 +4,11347,1806,128,1.16711617,0.123556549,1035.96289,3008656476 +4,11348,1807,128,1.21816337,0.122011128,1049.08464,3008656476 +4,11349,1808,128,1.21863699,0.122836199,1042.0381,3008656476 +4,11350,1809,128,1.69506443,0.1217562,1051.28117,3008656476 +4,11351,1810,128,1.63466215,0.121316204,1055.09401,3008656476 +4,11352,1811,128,0.912889719,0.129143997,991.141694,3008656476 +4,11353,1812,128,0.944961786,0.140669003,909.937493,3008656476 +4,11354,1813,128,0.959900558,0.121252609,1055.64739,3008656476 +4,11355,1814,128,1.71709645,0.121783747,1051.04337,3008656476 +4,11356,1815,128,1.43975842,0.121764761,1051.20725,3008656476 +4,11357,1816,128,1.36054766,0.121841544,1050.5448,3008656476 +4,11358,1817,128,1.10691226,0.12148057,1053.66644,3008656476 +4,11359,1818,128,1.05170393,0.120756848,1059.98129,3008656476 +4,11360,1819,128,0.88321203,0.136185101,939.897236,3008656476 +4,11361,1820,128,1.38145077,0.135880556,942.003799,3008656476 +4,11362,1821,128,1.64112961,0.120359487,1063.48077,3008656476 +4,11363,1822,128,1.69883561,0.121197866,1056.12421,3008656476 +4,11364,1823,128,1.39209735,0.122708565,1043.12197,3008656476 +4,11365,1824,128,1.26427352,0.121943214,1049.66891,3008656476 +4,11366,1825,128,1.25246918,0.12094853,1058.30141,3008656476 +4,11367,1826,128,1.70364118,0.12104525,1057.45579,3008656476 +4,11368,1827,128,1.34452605,0.121814512,1050.77792,3008656476 +4,11369,1828,128,1.30799842,0.12401485,1032.13446,3008656476 +4,11370,1829,128,1.27055943,0.136814671,935.57218,3008656476 +4,11371,1830,128,1.40462101,0.122791746,1042.41534,3008656476 +4,11372,1831,128,1.5872705,0.121525386,1053.27787,3008656476 +4,11373,1832,128,1.35806763,0.121151713,1056.52654,3008656476 +4,11374,1833,128,1.46233034,0.121586442,1052.74896,3008656476 +4,11375,1834,128,1.51340914,0.120452734,1062.65749,3008656476 +4,11376,1835,128,1.40643942,0.121537373,1053.17399,3008656476 +4,11377,1836,128,1.0526849,0.134833246,949.320763,3008656476 +4,11378,1837,128,1.54835522,0.135828721,942.363287,3008656476 +4,11379,1838,128,1.52626896,0.121128632,1056.72786,3008656476 +4,11380,1839,128,1.46840191,0.120630842,1061.08851,3008656476 +4,11381,1840,128,1.77489507,0.120833766,1059.30655,3008656476 +4,11382,1841,128,1.60992908,0.12034355,1063.62161,3008656476 +4,11383,1842,128,1.35178483,0.120330286,1063.73885,3008656476 +4,11384,1843,128,1.19505155,0.120997124,1057.87638,3008656476 +4,11385,1844,128,1.46033263,0.121487154,1053.60934,3008656476 +4,11386,1845,128,1.42926872,0.128987851,992.341519,3008656476 +4,11387,1846,128,1.42957902,0.135735169,943.012787,3008656476 +4,11388,1847,128,1.02744222,0.123458446,1036.78609,3008656476 +4,11389,1848,128,1.53561258,0.123280946,1038.27886,3008656476 +4,11390,1849,128,1.47185707,0.123880275,1033.2557,3008656476 +4,11391,1850,128,1.54342651,0.125099542,1023.1852,3008656476 +4,11392,1851,128,1.33061218,0.124348478,1029.36523,3008656476 +4,11393,1852,128,1.11104453,0.124511149,1028.02039,3008656476 +4,11394,1853,128,1.39260817,0.139475501,917.723895,3008656476 +4,11395,1854,128,1.26598072,0.139563071,917.148061,3008656476 +4,11396,1855,128,1.267663,0.12393277,1032.81804,3008656476 +4,11397,1856,128,1.31467092,0.124596689,1027.31462,3008656476 +4,11398,1857,128,1.01218927,0.125145087,1022.81283,3008656476 +4,11399,1858,128,1.3357358,0.124942607,1024.47038,3008656476 +4,11400,1859,128,1.28526962,0.126124177,1014.87283,3008656476 +4,11401,1860,128,1.55057657,0.127674354,1002.5506,3008656476 +4,11402,1861,128,1.42882597,0.139440623,917.953443,3008656476 +4,11403,1862,128,1.28737414,0.139699387,916.253126,3008656476 +4,11404,1863,128,1.12514484,0.123989146,1032.34843,3008656476 +4,11405,1864,128,1.40503848,0.124385059,1029.0625,3008656476 +4,11406,1865,128,1.36227846,0.124485389,1028.23312,3008656476 +4,11407,1866,128,1.2139008,0.124936807,1024.51794,3008656476 +4,11408,1867,128,1.71611226,0.124056184,1031.79056,3008656476 +4,11409,1868,128,1.29204118,0.123955198,1032.63116,3008656476 +4,11410,1869,128,1.32258677,0.138071296,927.057279,3008656476 +4,11411,1870,128,1.44204569,0.123762924,1034.23542,3008656476 +4,11412,1871,128,1.12188184,0.130968851,977.331625,3008656476 +4,11413,1872,128,1.64998472,0.122701928,1043.17839,3008656476 +4,11414,1873,128,1.67398,0.123278521,1038.29928,3008656476 +4,11415,1874,128,1.60521388,0.123222187,1038.77397,3008656476 +4,11416,1875,128,1.30426073,0.122142738,1047.95424,3008656476 +4,11417,1876,128,1.26511669,0.121902387,1050.02046,3008656476 +4,11418,1877,128,1.13075244,0.122133992,1048.02928,3008656476 +4,11419,1878,128,1.25154746,0.139580729,917.032035,3008656476 +4,11420,1879,128,0.858298421,0.13809596,926.891706,3008656476 +4,11421,1880,128,1.30974376,0.121706812,1051.70777,3008656476 +4,11422,1881,128,1.16511261,0.122821123,1042.16601,3008656476 +4,11423,1882,128,1.46181798,0.121959174,1049.53154,3008656476 +4,11424,1883,128,1.13923025,0.122375557,1045.96051,3008656476 +4,11425,1884,128,1.51947427,0.122766687,1042.62812,3008656476 +4,11426,1885,128,1.20815253,0.121511387,1053.39922,3008656476 +4,11427,1886,128,1.40746784,0.133811239,956.571368,3008656476 +4,11428,1887,128,1.23226631,0.134239244,953.521461,3008656476 +4,11429,1888,128,1.27844155,0.121926835,1049.80991,3008656476 +4,11430,1889,128,1.55942667,0.120918624,1058.56315,3008656476 +4,11431,1890,128,1.42393148,0.121587995,1052.73551,3008656476 +4,11432,1891,128,1.35244954,0.120679188,1060.66342,3008656476 +4,11433,1892,128,1.31797278,0.121971059,1049.42927,3008656476 +4,11434,1893,128,1.29645181,0.122269834,1046.86492,3008656476 +4,11435,1894,128,1.25532722,0.119857352,1067.93616,3008656476 +4,11436,1895,128,1.3075949,0.130547303,980.48751,3008656476 +4,11437,1896,128,1.35360944,0.138212869,926.107684,3008656476 +4,11438,1897,128,1.53266621,0.121751116,1051.32507,3008656476 +4,11439,1898,128,1.6152513,0.121657423,1052.13473,3008656476 +4,11440,1899,128,1.99188924,0.121042142,1057.48294,3008656476 +4,11441,1900,128,1.57083917,0.121976354,1049.38372,3008656476 +4,11442,1901,128,1.26892149,0.12216624,1047.75264,3008656476 +4,11443,1902,128,1.29010367,0.122055864,1048.70013,3008656476 +4,11444,1903,128,1.57858288,0.135648227,943.617199,3008656476 +4,11445,1904,128,1.03349137,0.133557067,958.391816,3008656476 +4,11446,1905,128,1.11260068,0.121936461,1049.72704,3008656476 +4,11447,1906,128,1.12593663,0.121728621,1051.51935,3008656476 +4,11448,1907,128,1.24568057,0.121801252,1050.89232,3008656476 +4,11449,1908,128,1.23305058,0.120999814,1057.85287,3008656476 +4,11450,1909,128,1.04653835,0.121782495,1051.05418,3008656476 +4,11451,1910,128,1.2744385,0.121066223,1057.2726,3008656476 +4,11452,1911,128,1.05259776,0.121811901,1050.80045,3008656476 +4,11453,1912,128,1.26489151,0.127115755,1006.95622,3008656476 +4,11454,1913,128,1.25593984,0.136409337,938.352189,3008656476 +4,11455,1914,128,1.4139142,0.12088444,1058.8625,3008656476 +4,11456,1915,128,1.11887693,0.121167764,1056.38658,3008656476 +4,11457,1916,128,1.48467505,0.120102522,1065.75614,3008656476 +4,11458,1917,128,1.11449301,0.121005486,1057.80328,3008656476 +4,11459,1918,128,1.59736538,0.121324463,1055.02218,3008656476 +4,11460,1919,128,0.972138941,0.12017768,1065.08962,3008656476 +4,11461,1920,128,1.00922954,0.135012126,948.062991,3008656476 +4,11462,1921,128,1.15583706,0.135809271,942.498248,3008656476 +4,11463,1922,128,1.45913112,0.120999748,1057.85344,3008656476 +4,11464,1923,128,1.26131749,0.12104977,1057.4163,3008656476 +4,11465,1924,128,1.26287639,0.120324261,1063.79211,3008656476 +4,11466,1925,128,1.03115618,0.120989985,1057.9388,3008656476 +4,11467,1926,128,1.31459332,0.121420363,1054.18891,3008656476 +4,11468,1927,128,1.43024135,0.121713368,1051.65112,3008656476 +4,11469,1928,128,1.37669647,0.122362839,1046.06922,3008656476 +4,11470,1929,128,1.68910253,0.132081139,969.101273,3008656476 +4,11471,1930,128,1.63379574,0.138567158,923.739809,3008656476 +4,11472,1931,128,1.08317912,0.125083767,1023.31424,3008656476 +4,11473,1932,128,0.950483561,0.124087525,1031.52996,3008656476 +4,11474,1933,128,1.07034183,0.123891446,1033.16253,3008656476 +4,11475,1934,128,1.10203326,0.124489423,1028.1998,3008656476 +4,11476,1935,128,0.980946243,0.125834716,1017.20737,3008656476 +4,11477,1936,128,1.53042495,0.125134436,1022.89988,3008656476 +4,11478,1937,128,1.28839147,0.137982507,927.653822,3008656476 +4,11479,1938,128,1.37669969,0.140525246,910.868357,3008656476 +4,11480,1939,128,1.2654407,0.131556956,972.962616,3008656476 +4,11481,1940,128,1.30312884,0.127663128,1002.63876,3008656476 +4,11482,1941,128,1.11697829,0.12538351,1020.8679,3008656476 +4,11483,1942,128,1.44969726,0.124650684,1026.86962,3008656476 +4,11484,1943,128,1.31729198,0.124469453,1028.36477,3008656476 +4,11485,1944,128,1.48790479,0.125453145,1020.30124,3008656476 +4,11486,1945,128,1.36800349,0.137268349,932.480072,3008656476 +4,11487,1946,128,1.02232611,0.136981161,934.435064,3008656476 +4,11488,1947,128,1.17978704,0.125769461,1017.73514,3008656476 +4,11489,1948,128,1.21523547,0.123829437,1033.6799,3008656476 +4,11490,1949,128,1.12227821,0.123736875,1034.45315,3008656476 +4,11491,1950,128,1.74813735,0.124009188,1032.18158,3008656476 +4,11492,1951,128,1.66264641,0.122794085,1042.39549,3008656476 +4,11493,1952,128,1.40047657,0.123370039,1037.52906,3008656476 +4,11494,1953,128,1.64520657,0.136802215,935.657365,3008656476 +4,11495,1954,128,1.41730595,0.124229297,1030.35277,3008656476 +4,11496,1955,128,1.2452842,0.123752416,1034.32324,3008656476 +4,11497,1956,128,1.6699239,0.120907632,1058.65939,3008656476 +4,11498,1957,128,1.20815253,0.121104191,1056.94113,3008656476 +4,11499,1958,128,1.18192184,0.121624433,1052.42012,3008656476 +4,11500,1959,128,0.758241713,0.121079992,1057.15237,3008656476 +4,11501,1960,128,1.37731826,0.12097511,1058.06889,3008656476 +4,11502,1961,128,1.23670304,0.121772974,1051.13635,3008656476 +4,11503,1962,128,1.1133796,0.13903339,920.642157,3008656476 +4,11504,1963,128,1.20525348,0.138252146,925.84458,3008656476 +4,11505,1964,128,1.08574295,0.122543027,1044.53108,3008656476 +4,11506,1965,128,1.13249958,0.123367917,1037.5469,3008656476 +4,11507,1966,128,1.43782794,0.123293501,1038.17313,3008656476 +4,11508,1967,128,1.31152356,0.122985691,1040.77148,3008656476 +4,11509,1968,128,1.42559791,0.12352011,1036.26851,3008656476 +4,11510,1969,128,1.17437923,0.123001449,1040.63815,3008656476 +4,11511,1970,128,1.48768759,0.135950164,941.521483,3008656476 +4,11512,1971,128,1.30294251,0.137449714,931.249664,3008656476 +4,11513,1972,128,1.47832024,0.122282595,1046.75567,3008656476 +4,11514,1973,128,1.36808252,0.121803037,1050.87692,3008656476 +4,11515,1974,128,0.648649752,0.122416969,1045.60668,3008656476 +4,11516,1975,128,1.15995955,0.122158555,1047.81855,3008656476 +4,11517,1976,128,1.31848371,0.122193282,1047.52076,3008656476 +4,11518,1977,128,1.13745236,0.122618525,1043.88794,3008656476 +4,11519,1978,128,1.25181806,0.121936581,1049.726,3008656476 +4,11520,1979,128,1.22113252,0.125402762,1020.71117,3008656476 +4,11521,1980,128,1.53011298,0.141823259,902.531791,3008656476 +4,11522,1981,128,1.42522669,0.122039384,1048.84174,3008656476 +4,11523,1982,128,1.23326552,0.122656272,1043.56669,3008656476 +4,11524,1983,128,1.40139079,0.122438894,1045.41944,3008656476 +4,11525,1984,128,1.24094176,0.12099362,1057.90702,3008656476 +4,11526,1985,128,1.19581914,0.122029357,1048.92792,3008656476 +4,11527,1986,128,1.13112402,0.12231568,1046.47254,3008656476 +4,11528,1987,128,1.4432826,0.136224905,939.622604,3008656476 +4,11529,1988,128,1.55536592,0.13380351,956.626624,3008656476 +4,11530,1989,128,1.32354963,0.123382255,1037.42633,3008656476 +4,11531,1990,128,1.07010806,0.12284912,1041.92851,3008656476 +4,11532,1991,128,0.947572231,0.121881317,1050.20198,3008656476 +4,11533,1992,128,1.02048194,0.121631769,1052.35664,3008656476 +4,11534,1993,128,1.12667072,0.122648287,1043.63463,3008656476 +4,11535,1994,128,1.15763927,0.122552495,1044.45038,3008656476 +4,11536,1995,128,1.08879626,0.136617368,936.923335,3008656476 +4,11537,1996,128,1.2455554,0.12280345,1042.31599,3008656476 +4,11538,1997,128,1.66033137,0.134484615,951.781734,3008656476 +4,11539,1998,128,1.49367797,0.12167414,1051.99018,3008656476 +4,11540,1999,128,1.30915236,0.122538767,1044.56739,3008656476 +4,11541,2000,128,1.31515706,0.121857404,1050.40807,3008656476 +4,11542,2001,128,1.07965136,0.122923628,1041.29696,3008656476 +4,11543,2002,128,1.58721125,0.122647909,1043.63785,3008656476 +4,11544,2003,128,1.47015798,0.122206838,1047.40457,3008656476 +4,11545,2004,128,1.02035117,0.136414073,938.319612,3008656476 +4,11546,2005,128,1.09628916,0.139361193,918.476638,3008656476 +4,11547,2006,128,1.0923574,0.122829916,1042.09141,3008656476 +4,11548,2007,128,1.24885786,0.12100545,1057.80359,3008656476 +4,11549,2008,128,1.28991652,0.122574485,1044.263,3008656476 +4,11550,2009,128,1.12739158,0.122976518,1040.84912,3008656476 +4,11551,2010,128,1.12507451,0.121700984,1051.75814,3008656476 +4,11552,2011,128,1.44999242,0.12190429,1050.00406,3008656476 +4,11553,2012,128,1.6504513,0.136765461,935.908811,3008656476 +4,11554,2013,128,1.21595073,0.132539348,965.750941,3008656476 +4,11555,2014,128,1.61655378,0.116848165,1095.43868,3008656476 +4,11556,2015,128,1.29769206,0.122629473,1043.79475,3008656476 +4,11557,2016,128,1.21838057,0.122108062,1048.25183,3008656476 +4,11558,2017,128,1.62222779,0.122478848,1045.07841,3008656476 +4,11559,2018,128,1.2268064,0.121112956,1056.86463,3008656476 +4,11560,2019,128,1.31260931,0.122787709,1042.44962,3008656476 +4,11561,2020,128,1.0764966,0.12160287,1052.60674,3008656476 +4,11562,2021,128,1.52052569,0.134489727,951.745556,3008656476 +4,11563,2022,128,1.42284286,0.136293486,939.149799,3008656476 +4,11564,2023,128,1.3017081,0.12186824,1050.31467,3008656476 +4,11565,2024,128,1.65901399,0.121117651,1056.82367,3008656476 +4,11566,2025,128,1.42402935,0.12130722,1055.17215,3008656476 +4,11567,2026,128,0.812071025,0.121932483,1049.76128,3008656476 +4,11568,2027,128,1.35105097,0.120973773,1058.08058,3008656476 +4,11569,2028,128,1.4868784,0.121536223,1053.18395,3008656476 +4,11570,2029,128,1.54788435,0.136244323,939.488686,3008656476 +4,11571,2030,128,1.25714493,0.137142109,933.338425,3008656476 +4,11572,2031,128,1.30507565,0.122375444,1045.96148,3008656476 +4,11573,2032,128,1.33514977,0.121511557,1053.39774,3008656476 +4,11574,2033,128,1.1665256,0.121470849,1053.75076,3008656476 +4,11575,2034,128,1.26118016,0.121705155,1051.72209,3008656476 +4,11576,2035,128,1.12692285,0.121680963,1051.93119,3008656476 +4,11577,2036,128,1.16804814,0.122885237,1041.62227,3008656476 +4,11578,2037,128,1.1765157,0.122591275,1044.11998,3008656476 +4,11579,2038,128,1.31033301,0.128859679,993.328565,3008656476 +4,11580,2039,128,1.40469658,0.138001968,927.523005,3008656476 +4,11581,2040,128,1.39477718,0.124134839,1031.13679,3008656476 +4,11582,2041,128,1.39398038,0.12547962,1020.08597,3008656476 +4,11583,2042,128,1.54982412,0.12363808,1035.27975,3008656476 +4,11584,2043,128,1.56494701,0.125480099,1020.08208,3008656476 +4,11585,2044,128,1.35287023,0.125961714,1016.18179,3008656476 +4,11586,2045,128,1.3893646,0.126760709,1009.77662,3008656476 +4,11587,2046,128,1.14377093,0.143559751,891.614809,3008656476 +4,11588,2047,128,1.38731849,0.143467543,892.187859,3008656476 +4,11589,2048,128,1.46292126,0.128337265,997.372042,3008656476 +4,11590,2049,128,1.3981899,0.12889258,993.075009,3008656476 +4,11591,2050,128,1.55257487,0.129073875,991.680152,3008656476 +4,11592,2051,128,1.27839744,0.128358549,997.206661,3008656476 +4,11593,2052,128,1.0095495,0.128981039,992.393929,3008656476 +4,11594,2053,128,1.35836744,0.128941839,992.695629,3008656476 +4,11595,2054,128,1.390414,0.140876735,908.595731,3008656476 +4,11596,2055,128,1.17340851,0.142216336,900.03725,3008656476 +4,11597,2056,128,1.36168671,0.128012721,999.900627,3008656476 +4,11598,2057,128,1.44965732,0.127237624,1005.99175,3008656476 +4,11599,2058,128,1.11034894,0.125152236,1022.7544,3008656476 +4,11600,2059,128,1.37493896,0.125615512,1018.98243,3008656476 +4,11601,2060,128,1.16373527,0.125827509,1017.26563,3008656476 +4,11602,2061,128,1.43409538,0.1242361,1030.29635,3008656476 +4,11603,2062,128,1.45913339,0.139262222,919.129382,3008656476 +4,11604,2063,128,1.20857358,0.138942615,921.243637,3008656476 +4,11605,2064,128,1.41080177,0.124998132,1024.0153,3008656476 +4,11606,2065,128,1.49767637,0.125238633,1022.04884,3008656476 +4,11607,2066,128,1.2738421,0.12423819,1030.27901,3008656476 +4,11608,2067,128,1.07935429,0.126292423,1013.52082,3008656476 +4,11609,2068,128,1.00836778,0.124729491,1026.22082,3008656476 +4,11610,2069,128,1.30830133,0.124422837,1028.75005,3008656476 +4,11611,2070,128,0.842277646,0.136786606,935.764135,3008656476 +4,11612,2071,128,1.19197476,0.135715628,943.148567,3008656476 +4,11613,2072,128,1.03757977,0.124104378,1031.38988,3008656476 +4,11614,2073,128,1.2095058,0.123202605,1038.93907,3008656476 +4,11615,2074,128,1.0002172,0.124498832,1028.1221,3008656476 +4,11616,2075,128,1.43116868,0.123925906,1032.87524,3008656476 +4,11617,2076,128,1.31435835,0.123910025,1033.00762,3008656476 +4,11618,2077,128,1.27091706,0.12342519,1037.06545,3008656476 +4,11619,2078,128,1.0094347,0.136191342,939.854165,3008656476 +4,11620,2079,128,1.45527577,0.11619471,1101.5992,3008656476 +4,11621,2080,128,1.42404878,0.138577362,923.67179,3008656476 +4,11622,2081,128,1.27150607,0.12325208,1038.52203,3008656476 +4,11623,2082,128,1.29798746,0.122146739,1047.91991,3008656476 +4,11624,2083,128,1.40466046,0.122114516,1048.19643,3008656476 +4,11625,2084,128,1.1976546,0.122905109,1041.45386,3008656476 +4,11626,2085,128,1.1080848,0.124061186,1031.74896,3008656476 +4,11627,2086,128,1.06937647,0.124451461,1028.51344,3008656476 +4,11628,2087,128,1.04659724,0.136840721,935.394078,3008656476 +4,11629,2088,128,1.11054397,0.138055008,927.166655,3008656476 +4,11630,2089,128,0.78677392,0.123004906,1040.6089,3008656476 +4,11631,2090,128,1.26578021,0.122540472,1044.55286,3008656476 +4,11632,2091,128,1.10542893,0.121541949,1053.13434,3008656476 +4,11633,2092,128,1.07957888,0.122317773,1046.45463,3008656476 +4,11634,2093,128,1.06057596,0.122373746,1045.97599,3008656476 +4,11635,2094,128,1.43895352,0.122814252,1042.22432,3008656476 +4,11636,2095,128,0.906175315,0.136409141,938.353537,3008656476 +4,11637,2096,128,1.37479794,0.12297233,1040.88456,3008656476 +4,11638,2097,128,1.15111351,0.126049266,1015.47596,3008656476 +4,11639,2098,128,1.33726633,0.122297512,1046.628,3008656476 +4,11640,2099,128,1.14664924,0.122614484,1043.92235,3008656476 +4,11641,2100,128,1.28431773,0.123763777,1034.22829,3008656476 +4,11642,2101,128,1.41659498,0.122637982,1043.72233,3008656476 +4,11643,2102,128,1.4245615,0.122429869,1045.4965,3008656476 +4,11644,2103,128,0.799233735,0.123585108,1035.7235,3008656476 +4,11645,2104,128,1.18963885,0.137193512,932.988726,3008656476 +4,11646,2105,128,1.09830129,0.139399417,918.224787,3008656476 +4,11647,2106,128,0.917254567,0.123054876,1040.18633,3008656476 +4,11648,2107,128,1.32086706,0.122752452,1042.74903,3008656476 +4,11649,2108,128,1.42032218,0.122149197,1047.89882,3008656476 +4,11650,2109,128,1.29824674,0.121901247,1050.03028,3008656476 +4,11651,2110,128,1.42200625,0.121763505,1051.2181,3008656476 +4,11652,2111,128,1.16461134,0.12222474,1047.25115,3008656476 +4,11653,2112,128,1.4475491,0.134707213,950.208954,3008656476 +4,11654,2113,128,1.21461856,0.138188765,926.269223,3008656476 +4,11655,2114,128,0.879626155,0.121838363,1050.57222,3008656476 +4,11656,2115,128,1.18026912,0.115040365,1112.65294,3008656476 +4,11657,2116,128,1.02636373,0.121938992,1049.70525,3008656476 +4,11658,2117,128,1.15761995,0.122509551,1044.8165,3008656476 +4,11659,2118,128,1.29461193,0.122740152,1042.85352,3008656476 +4,11660,2119,128,1.13539207,0.122724421,1042.9872,3008656476 +4,11661,2120,128,0.993161559,0.136966197,934.537154,3008656476 +4,11662,2121,128,1.05633032,0.123139481,1039.47165,3008656476 +4,11663,2122,128,1.371508,0.136642341,936.752101,3008656476 +4,11664,2123,128,1.00366247,0.122480072,1045.06797,3008656476 +4,11665,2124,128,0.980011344,0.124070367,1031.67262,3008656476 +4,11666,2125,128,0.789174616,0.124578977,1027.46068,3008656476 +4,11667,2126,128,0.944641888,0.124172769,1030.82182,3008656476 +4,11668,2127,128,1.3444891,0.124745712,1026.08737,3008656476 +4,11669,2128,128,1.08481956,0.124368155,1029.20237,3008656476 +4,11670,2129,128,1.13512218,0.141204398,906.487346,3008656476 +4,11671,2130,128,1.37254548,0.138029335,927.339105,3008656476 +4,11672,2131,128,1.10691118,0.124770511,1025.88343,3008656476 +4,11673,2132,128,1.245157,0.126312925,1013.35631,3008656476 +4,11674,2133,128,1.22199845,0.126620583,1010.8941,3008656476 +4,11675,2134,128,1.43825662,0.129007768,992.188315,3008656476 +4,11676,2135,128,1.22676504,0.135070168,947.655592,3008656476 +4,11677,2136,128,1.14195871,0.136365682,938.652586,3008656476 +4,11678,2137,128,1.11305749,0.149443852,856.508972,3008656476 +4,11679,2138,128,1.26685202,0.14281172,896.284983,3008656476 +4,11680,2139,128,1.21773446,0.124615898,1027.15626,3008656476 +4,11681,2140,128,1.28372598,0.125296992,1021.57281,3008656476 +4,11682,2141,128,1.04317153,0.125212779,1022.25988,3008656476 +4,11683,2142,128,1.05787289,0.124227321,1030.36916,3008656476 +4,11684,2143,128,1.19578004,0.126282968,1013.5967,3008656476 +4,11685,2144,128,1.20625865,0.123398694,1037.28813,3008656476 +4,11686,2145,128,1.46331787,0.138357739,925.137986,3008656476 +4,11687,2146,128,1.08899415,0.136805393,935.63563,3008656476 +4,11688,2147,128,1.23754776,0.123199932,1038.96161,3008656476 +4,11689,2148,128,0.728020132,0.1233082,1038.04938,3008656476 +4,11690,2149,128,1.03306627,0.122777793,1042.53381,3008656476 +4,11691,2150,128,0.907576561,0.1223995,1045.75591,3008656476 +4,11692,2151,128,1.26500249,0.122365326,1046.04796,3008656476 +4,11693,2152,128,1.06351721,0.122536879,1044.58348,3008656476 +4,11694,2153,128,1.04568148,0.135672699,943.446994,3008656476 +4,11695,2154,128,0.997598052,0.133755471,956.970201,3008656476 +4,11696,2155,128,1.39935482,0.114717604,1115.78342,3008656476 +4,11697,2156,128,1.45126116,0.121443121,1053.99136,3008656476 +4,11698,2157,128,1.23410213,0.122918407,1041.34119,3008656476 +4,11699,2158,128,0.67189765,0.122676292,1043.39639,3008656476 +4,11700,2159,128,0.885156095,0.122496219,1044.93021,3008656476 +4,11701,2160,128,1.16456962,0.121908248,1049.96997,3008656476 +4,11702,2161,128,1.19667006,0.121915536,1049.90721,3008656476 +4,11703,2162,128,0.999655008,0.132863896,963.391891,3008656476 +4,11704,2163,128,0.980837345,0.134519415,951.535509,3008656476 +4,11705,2164,128,1.00804603,0.12101501,1057.72003,3008656476 +4,11706,2165,128,1.28473747,0.121084984,1057.10878,3008656476 +4,11707,2166,128,1.13873339,0.122405199,1045.70722,3008656476 +4,11708,2167,128,1.1577903,0.122238133,1047.13641,3008656476 +4,11709,2168,128,1.44995654,0.120613888,1061.23766,3008656476 +4,11710,2169,128,1.16720867,0.121910801,1049.94799,3008656476 +4,11711,2170,128,1.03444767,0.133974907,955.40279,3008656476 +4,11712,2171,128,1.24577928,0.132221369,968.073474,3008656476 +4,11713,2172,128,1.16268229,0.122331506,1046.33716,3008656476 +4,11714,2173,128,1.51964986,0.122490578,1044.97833,3008656476 +4,11715,2174,128,1.29828024,0.122761487,1042.67228,3008656476 +4,11716,2175,128,1.16657829,0.123899185,1033.098,3008656476 +4,11717,2176,128,0.643086851,0.12516597,1022.64218,3008656476 +4,11718,2177,128,1.25255454,0.125204774,1022.32523,3008656476 +4,11719,2178,128,1.04884303,0.134457709,951.972192,3008656476 +4,11720,2179,128,1.25574303,0.12381447,1033.80485,3008656476 +4,11721,2180,128,1.10003591,0.144377996,886.561689,3008656476 +4,11722,2181,128,0.9697119,0.12472112,1026.28969,3008656476 +4,11723,2182,128,1.01002765,0.125561623,1019.41976,3008656476 +4,11724,2183,128,1.12864804,0.126450232,1012.25595,3008656476 +4,11725,2184,128,1.12857926,0.124870375,1025.06299,3008656476 +4,11726,2185,128,1.24088025,0.12542102,1020.56258,3008656476 +4,11727,2186,128,1.28307521,0.124098993,1031.43464,3008656476 +4,11728,2187,128,1.14853132,0.138997274,920.881369,3008656476 +4,11729,2188,128,1.00700569,0.139797281,915.611513,3008656476 +4,11730,2189,128,1.14580274,0.123538418,1036.11494,3008656476 +4,11731,2190,128,1.08731508,0.126191229,1014.33357,3008656476 +4,11732,2191,128,1.08024502,0.122535846,1044.59229,3008656476 +4,11733,2192,128,0.984275281,0.122184258,1047.59813,3008656476 +4,11734,2193,128,0.816941917,0.12210907,1048.24318,3008656476 +4,11735,2194,128,1.22712207,0.122931842,1041.22738,3008656476 +4,11736,2195,128,0.81027168,0.135618819,943.821816,3008656476 +4,11737,2196,128,1.11516726,0.135871346,942.067653,3008656476 +4,11738,2197,128,1.49503052,0.121135862,1056.66479,3008656476 +4,11739,2198,128,1.37917757,0.121761495,1051.23545,3008656476 +4,11740,2199,128,1.21853042,0.122761934,1042.66849,3008656476 +4,11741,2200,128,1.34391117,0.121096919,1057.0046,3008656476 +4,11742,2201,128,1.38017952,0.122540946,1044.54882,3008656476 +4,11743,2202,128,1.09691906,0.122990224,1040.73312,3008656476 +4,11744,2203,128,1.45011926,0.134165518,954.045435,3008656476 +4,11745,2204,128,1.20765185,0.139356731,918.506046,3008656476 +4,11746,2205,128,1.04338968,0.16968237,754.350614,3008656476 +4,11747,2206,128,1.18425834,0.122031124,1048.91273,3008656476 +4,11748,2207,128,1.16678905,0.122000359,1049.17724,3008656476 +4,11749,2208,128,1.25548947,0.12196422,1049.48812,3008656476 +4,11750,2209,128,1.57426703,0.121677366,1051.96229,3008656476 +4,11751,2210,128,1.09878576,0.121777967,1051.09326,3008656476 +4,11752,2211,128,0.95643121,0.129201332,990.701861,3008656476 +4,11753,2212,128,1.01897323,0.118863672,1076.86392,3008656476 +4,11754,2213,128,1.13951623,0.136218633,939.665868,3008656476 +4,11755,2214,128,1.00376141,0.122872999,1041.72602,3008656476 +4,11756,2215,128,1.17817342,0.123045764,1040.26336,3008656476 +4,11757,2216,128,0.930090606,0.123446101,1036.88978,3008656476 +4,11758,2217,128,1.48762202,0.123575303,1035.80567,3008656476 +4,11759,2218,128,1.34625399,0.124796123,1025.67289,3008656476 +4,11760,2219,128,1.2668128,0.124848123,1025.24569,3008656476 +4,11761,2220,128,1.01852059,0.137277141,932.420351,3008656476 +4,11762,2221,128,0.781613529,0.138853649,921.833894,3008656476 +4,11763,2222,128,1.11191976,0.126398091,1012.67352,3008656476 +4,11764,2223,128,1.1039772,0.132496458,966.063561,3008656476 +4,11765,2224,128,1.06722498,0.135926951,941.682272,3008656476 +4,11766,2225,128,1.02693808,0.136435889,938.169575,3008656476 +4,11767,2226,128,1.23604989,0.136122488,940.329566,3008656476 +4,11768,2227,128,1.07968295,0.136447266,938.09135,3008656476 +4,11769,2228,128,1.16959178,0.140007327,914.237867,3008656476 +4,11770,2229,128,1.04711902,0.140604557,910.354563,3008656476 +4,11771,2230,128,1.22983539,0.126987183,1007.97574,3008656476 +4,11772,2231,128,1.0125165,0.132983012,962.528958,3008656476 +4,11773,2232,128,1.40339732,0.136254255,939.420204,3008656476 +4,11774,2233,128,1.14397895,0.13583178,942.342065,3008656476 +4,11775,2234,128,1.14011872,0.135730547,943.044899,3008656476 +4,11776,2235,128,0.894650519,0.149153525,858.176164,3008656476 +4,11777,2236,128,1.35348058,0.135795046,942.596978,3008656476 +4,11778,2237,128,1.18443656,0.140391597,911.735479,3008656476 +4,11779,2238,128,0.951495051,0.136727972,936.165425,3008656476 +4,11780,2239,128,1.35280621,0.136459804,938.005158,3008656476 +4,11781,2240,128,1.2617389,0.136060953,940.754839,3008656476 +4,11782,2241,128,1.18869472,0.136540678,937.449571,3008656476 +4,11783,2242,128,1.39190125,0.134394405,952.420601,3008656476 +4,11784,2243,128,1.34728444,0.137790436,928.946912,3008656476 +4,11785,2244,128,1.19058287,0.142019953,901.281808,3008656476 +4,11786,2245,128,1.17894375,0.125292352,1021.61064,3008656476 +4,11787,2246,128,1.03359258,0.12492863,1024.585,3008656476 +4,11788,2247,128,1.01431823,0.124318468,1029.61372,3008656476 +4,11789,2248,128,0.773808658,0.1241776,1030.78172,3008656476 +4,11790,2249,128,0.975424945,0.123093957,1039.85608,3008656476 +4,11791,2250,128,1.29139733,0.125207643,1022.30181,3008656476 +4,11792,2251,128,1.05112767,0.136343978,938.802006,3008656476 +4,11793,2252,128,0.984580636,0.122060206,1048.66282,3008656476 +4,11794,2253,128,1.10998964,0.14038081,911.805538,3008656476 +4,11795,2254,128,1.44173133,0.124421776,1028.75882,3008656476 +4,11796,2255,128,1.08678377,0.124128106,1031.19273,3008656476 +4,11797,2256,128,1.14001667,0.124232874,1030.3231,3008656476 +4,11798,2257,128,1.15122414,0.124394536,1028.9841,3008656476 +4,11799,2258,128,1.38575685,0.124273735,1029.98433,3008656476 +4,11800,2259,128,1.20334578,0.124001423,1032.24622,3008656476 +4,11801,2260,128,1.20519733,0.132813847,963.754931,3008656476 +4,11802,2261,128,1.02042103,0.135209183,946.681262,3008656476 +4,11803,2262,128,0.875446081,0.122860666,1041.83059,3008656476 +4,11804,2263,128,1.12530482,0.123286764,1038.22986,3008656476 +4,11805,2264,128,0.920236409,0.121952152,1049.59197,3008656476 +4,11806,2265,128,1.10420763,0.122290177,1046.69077,3008656476 +4,11807,2266,128,1.20872879,0.121955701,1049.56143,3008656476 +4,11808,2267,128,1.04795349,0.121865781,1050.33586,3008656476 +4,11809,2268,128,1.0999434,0.136837055,935.419138,3008656476 +4,11810,2269,128,0.780423343,0.134735624,950.008589,3008656476 +4,11811,2270,128,1.02634954,0.121385549,1054.49126,3008656476 +4,11812,2271,128,1.03632534,0.121388924,1054.46194,3008656476 +4,11813,2272,128,1.23557019,0.121882448,1050.19223,3008656476 +4,11814,2273,128,1.03426707,0.121348274,1054.81517,3008656476 +4,11815,2274,128,0.946355522,0.120916499,1058.58176,3008656476 +4,11816,2275,128,1.47657073,0.120883749,1058.86855,3008656476 +4,11817,2276,128,1.12213099,0.121380202,1054.53771,3008656476 +4,11818,2277,128,0.935227334,0.124328237,1029.53282,3008656476 +4,11819,2278,128,1.06418109,0.141530961,904.395753,3008656476 +4,11820,2279,128,1.05265188,0.121180558,1056.27505,3008656476 +4,11821,2280,128,0.999735892,0.121280284,1055.4065,3008656476 +4,11822,2281,128,1.09200275,0.122025578,1048.96041,3008656476 +4,11823,2282,128,1.32067275,0.122018127,1049.02446,3008656476 +4,11824,2283,128,1.03149366,0.122067134,1048.6033,3008656476 +4,11825,2284,128,0.916714787,0.122306271,1046.55304,3008656476 +4,11826,2285,128,1.02628648,0.137962397,927.789041,3008656476 +4,11827,2286,128,1.03747892,0.134527107,951.481102,3008656476 +4,11828,2287,128,0.983566999,0.122200269,1047.46087,3008656476 +4,11829,2288,128,1.01843488,0.12081047,1059.51082,3008656476 +4,11830,2289,128,0.800051153,0.122019811,1049.00998,3008656476 +4,11831,2290,128,1.05156267,0.122066692,1048.6071,3008656476 +4,11832,2291,128,1.31247902,0.121910981,1049.94644,3008656476 +4,11833,2292,128,0.962124228,0.1221446,1047.93826,3008656476 +4,11834,2293,128,1.2998389,0.13574332,942.956162,3008656476 +4,11835,2294,128,1.00484967,0.122189316,1047.55476,3008656476 +4,11836,2295,128,1.37091434,0.138268521,925.734933,3008656476 +4,11837,2296,128,1.63661242,0.12186692,1050.32604,3008656476 +4,11838,2297,128,1.08986366,0.122107793,1048.25414,3008656476 +4,11839,2298,128,1.02391315,0.123295887,1038.15304,3008656476 +4,11840,2299,128,1.28987682,0.12196337,1049.49543,3008656476 +4,11841,2300,128,1.30447018,0.122401,1045.74309,3008656476 +4,11842,2301,128,1.09027255,0.121282695,1055.38552,3008656476 +4,11843,2302,128,1.35965657,0.133802755,956.632022,3008656476 +4,11844,2303,128,1.15210342,0.13966197,916.4986,3008656476 +4,11845,2304,128,1.11450374,0.121048287,1057.42926,3008656476 +4,11846,2305,128,1.16695559,0.122135899,1048.01292,3008656476 +4,11847,2306,128,1.41536951,0.120803859,1059.5688,3008656476 +4,11848,2307,128,1.16578138,0.122510264,1044.81042,3008656476 +4,11849,2308,128,1.13547158,0.120686065,1060.60298,3008656476 +4,11850,2309,128,1.20742965,0.122023847,1048.97529,3008656476 +4,11851,2310,128,1.12296188,0.136403723,938.390809,3008656476 +4,11852,2311,128,1.19162369,0.121554747,1053.02346,3008656476 +4,11853,2312,128,1.14667749,0.132167159,968.470541,3008656476 +4,11854,2313,128,1.62209046,0.120695923,1060.51635,3008656476 +4,11855,2314,128,1.56425464,0.121402009,1054.34829,3008656476 +4,11856,2315,128,1.33780468,0.121019344,1057.68215,3008656476 +4,11857,2316,128,1.43564105,0.120793796,1059.65707,3008656476 +4,11858,2317,128,1.37872016,0.119825786,1068.21749,3008656476 +4,11859,2318,128,1.63011444,0.120073856,1066.01057,3008656476 +4,11860,2319,128,1.36322773,0.136893151,935.035822,3008656476 +4,11861,2320,128,1.49656188,0.133660094,957.653075,3008656476 +4,11862,2321,128,1.52145898,0.121184839,1056.23774,3008656476 +4,11863,2322,128,1.65877974,0.121044321,1057.4639,3008656476 +4,11864,2323,128,1.48163521,0.121288589,1055.33423,3008656476 +4,11865,2324,128,1.14909971,0.121861447,1050.37322,3008656476 +4,11866,2325,128,1.61132348,0.122506646,1044.84127,3008656476 +4,11867,2326,128,1.56650627,0.123307773,1038.05297,3008656476 +4,11868,2327,128,1.53146338,0.137561865,930.490438,3008656476 +4,11869,2328,128,1.33588564,0.123038574,1040.32415,3008656476 +4,11870,2329,128,1.3424108,0.126256667,1013.80785,3008656476 +4,11871,2330,128,1.20290196,0.125363002,1021.0349,3008656476 +4,11872,2331,128,1.41194165,0.125566349,1019.38139,3008656476 +4,11873,2332,128,1.08968675,0.128008936,999.930192,3008656476 +4,11874,2333,128,1.31930709,0.131217326,975.480936,3008656476 +4,11875,2334,128,1.14076197,0.128376872,997.064331,3008656476 +4,11876,2335,128,1.35720336,0.141943235,901.768936,3008656476 +4,11877,2336,128,1.48815572,0.131872463,970.634787,3008656476 +4,11878,2337,128,1.51331723,0.141778975,902.813693,3008656476 +4,11879,2338,128,1.21501398,0.127784787,1001.68418,3008656476 +4,11880,2339,128,1.32453561,0.128021876,999.829123,3008656476 +4,11881,2340,128,1.3848598,0.128149729,998.831609,3008656476 +4,11882,2341,128,1.51252568,0.127809445,1001.49093,3008656476 +4,11883,2342,128,1.4205538,0.128190413,998.514608,3008656476 +4,11884,2343,128,1.35178328,0.139780874,915.718985,3008656476 +4,11885,2344,128,1.42446756,0.127851976,1001.15778,3008656476 +4,11886,2345,128,1.59841931,0.141800965,902.673688,3008656476 +4,11887,2346,128,1.50667167,0.127670814,1002.5784,3008656476 +4,11888,2347,128,1.60364258,0.131847012,970.822153,3008656476 +4,11889,2348,128,1.4618032,0.127517975,1003.78006,3008656476 +4,11890,2349,128,1.31604338,0.127793599,1001.61511,3008656476 +4,11891,2350,128,1.43775415,0.127350222,1005.10229,3008656476 +4,11892,2351,128,1.3984915,0.141262605,906.11383,3008656476 +4,11893,2352,128,1.36293614,0.13182013,971.020132,3008656476 +4,11894,2353,128,1.29392433,0.140748359,909.424457,3008656476 +4,11895,2354,128,1.5426873,0.127354763,1005.06645,3008656476 +4,11896,2355,128,1.29224467,0.12904195,991.925494,3008656476 +4,11897,2356,128,1.42621815,0.130017639,984.481806,3008656476 +4,11898,2357,128,1.14351189,0.131819349,971.025885,3008656476 +4,11899,2358,128,1.27079058,0.12789103,1000.85205,3008656476 +4,11900,2359,128,1.39791822,0.141497226,904.611374,3008656476 +4,11901,2360,128,1.54758334,0.131359254,974.426971,3008656476 +4,11902,2361,128,1.13656414,0.13799115,927.595719,3008656476 +4,11903,2362,128,1.05647194,0.124419767,1028.77544,3008656476 +4,11904,2363,128,1.22631693,0.124594838,1027.32988,3008656476 +4,11905,2364,128,0.871002018,0.125242581,1022.01663,3008656476 +4,11906,2365,128,1.02017164,0.123833702,1033.6443,3008656476 +4,11907,2366,128,1.00254369,0.124325905,1029.55213,3008656476 +4,11908,2367,128,1.04498613,0.124297356,1029.7886,3008656476 +4,11909,2368,128,0.950977087,0.132560666,965.595632,3008656476 +4,11910,2369,128,1.37285697,0.138298877,925.531738,3008656476 +4,11911,2370,128,1.03251994,0.123946702,1032.70194,3008656476 +4,11912,2371,128,1.16445339,0.124359543,1029.27364,3008656476 +4,11913,2372,128,1.46079111,0.124357822,1029.28789,3008656476 +4,11914,2373,128,1.53045535,0.123882484,1033.23727,3008656476 +4,11915,2374,128,1.40681338,0.125049205,1023.59707,3008656476 +4,11916,2375,128,0.957781076,0.124505488,1028.06713,3008656476 +4,11917,2376,128,1.12784386,0.136564461,937.286312,3008656476 +4,11918,2377,128,1.34914184,0.136788952,935.748086,3008656476 +4,11919,2378,128,1.1559602,0.121681926,1051.92286,3008656476 +4,11920,2379,128,0.999210536,0.122640447,1043.70135,3008656476 +4,11921,2380,128,1.12453318,0.123721431,1034.58228,3008656476 +4,11922,2381,128,1.03926468,0.121783341,1051.04688,3008656476 +4,11923,2382,128,1.17845714,0.121574386,1052.85335,3008656476 +4,11924,2383,128,1.52429771,0.121680796,1051.93263,3008656476 +4,11925,2384,64,0.395376921,0.131005754,488.52816,3008656476 diff --git a/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/summary.json b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/summary.json new file mode 100644 index 0000000..3af6d62 --- /dev/null +++ b/docs/experiments/a100-lr-sweep-seed1337/lr5e-5/summary.json @@ -0,0 +1,32 @@ +{ + "status": "complete", + "run_state": "complete", + "resumed": true, + "device": "cuda", + "epoch": 5, + "global_step": 11925, + "next_batch": 0, + "train_mean_loss": 1.3116023517499857, + "validation_mean_loss": 5.5714881443464126, + "validation_perplexity": 262.82492979538284, + "validation_perplexity_overflow": false, + "best_validation_loss": 3.8117776206328209, + "train_tokens_per_second": 980.03876527679051, + "cuda_async_pool_peak_bytes": 3008656476, + "wall_seconds_this_process": 263.45150638799998, + "config": {"block_size": 1024, "vocab_size": 50257, "n_layer": 12, "n_head": 12, "n_embd": 768, "batch_size": 2, "sequence_length": 64, "max_epochs": 8, "learning_rate": 5.0000000000000002e-05, "seed": 1337}, + "dataset_coverage": { + "train": {"samples": 4769, "raw_tokens": 305260, "usable_target_tokens": 305216, "dropped_tokens": 43}, + "validation": {"samples": 511, "raw_tokens": 32768, "usable_target_tokens": 32704, "dropped_tokens": 63} + }, + "artifacts": { + "steps_csv": {"path": "steps.csv", "exists": true}, + "epochs_csv": {"path": "epochs.csv", "exists": true}, + "latest_checkpoint": {"path": "latest.ckpt", "exists": true}, + "best_checkpoint": {"path": "best.ckpt", "exists": true}, + "final_checkpoint": {"path": "final.ckpt", "exists": true}, + "baseline_generation": {"path": "baseline.txt", "exists": true}, + "best_generation": {"path": "best.txt", "exists": true}, + "final_generation": {"path": "final.txt", "exists": true} + } +} diff --git a/example/common/tiny_shakespeare_dataset.cc b/example/common/tiny_shakespeare_dataset.cc index 3bc5f1b..a9c06b3 100644 --- a/example/common/tiny_shakespeare_dataset.cc +++ b/example/common/tiny_shakespeare_dataset.cc @@ -2,17 +2,15 @@ #include #include -#include +#include #include #include -#include -#include +#include #include -#include #include +#include #include #include -#include #include #include "glog/logging.h" @@ -24,7 +22,10 @@ using DataType = infini_train::DataType; using TinyShakespeareType = TinyShakespeareDataset::TinyShakespeareType; using TinyShakespeareFile = TinyShakespeareDataset::TinyShakespeareFile; -const std::unordered_map kTypeMap = { +constexpr size_t kHeaderSize = 1024; +constexpr uint32_t kDatasetVersion = 1; + +const std::unordered_map kTypeMap = { {20240520, TinyShakespeareType::kUINT16}, // GPT-2 {20240801, TinyShakespeareType::kUINT32}, // LLaMA 3 }; @@ -34,14 +35,10 @@ const std::unordered_map kTypeToSize = { {TinyShakespeareType::kUINT32, 4}, }; -const std::unordered_map kTypeToDataType = { - {TinyShakespeareType::kUINT16, DataType::kUINT16}, - {TinyShakespeareType::kUINT32, DataType::kINT32}, -}; - std::vector ReadSeveralBytesFromIfstream(size_t num_bytes, std::ifstream *ifs) { std::vector result(num_bytes); ifs->read(reinterpret_cast(result.data()), num_bytes); + CHECK_EQ(ifs->gcount(), static_cast(num_bytes)) << "Unexpected end of file"; return result; } @@ -53,27 +50,65 @@ template T BytesToType(const std::vector &bytes, size_t of } TinyShakespeareFile ReadTinyShakespeareFile(const std::string &path, size_t sequence_length) { - /* =================================== 作业 =================================== - TODO:实现二进制数据集文件解析 - 文件格式说明: - ---------------------------------------------------------------------------------- - | HEADER (1024 bytes) | DATA (tokens) | - | magic(4B) | version(4B) | num_toks(4B) | reserved(1012B) | token数据 | - ---------------------------------------------------------------------------------- - =================================== 作业 =================================== */ + CHECK_GT(sequence_length, 0); + CHECK_LE(sequence_length, static_cast(std::numeric_limits::max())); + CHECK(std::filesystem::exists(path)) << "Dataset file not found: " << path; + CHECK(std::filesystem::is_regular_file(path)) << "Dataset path is not a regular file: " << path; + + const uintmax_t file_size = std::filesystem::file_size(path); + CHECK_GE(file_size, kHeaderSize) << "Dataset file is smaller than its header: " << path; + + std::ifstream ifs(path, std::ios::binary); + CHECK(ifs.is_open()) << "Failed to open dataset file: " << path; + const auto header = ReadSeveralBytesFromIfstream(kHeaderSize, &ifs); + const uint32_t magic = BytesToType(header, 0); + const uint32_t version = BytesToType(header, sizeof(uint32_t)); + const uint32_t num_tokens = BytesToType(header, 2 * sizeof(uint32_t)); + + CHECK(kTypeMap.contains(magic)) << "Unsupported dataset magic: " << magic; + CHECK_EQ(version, kDatasetVersion) << "Unsupported dataset version: " << version; + const TinyShakespeareType type = kTypeMap.at(magic); + const size_t encoded_token_size = kTypeToSize.at(type); + const uintmax_t expected_size = kHeaderSize + static_cast(num_tokens) * encoded_token_size; + CHECK_EQ(file_size, expected_size) << "Dataset file length does not match its header"; + CHECK_GT(num_tokens, 0); + + std::vector tokens(num_tokens); + if (type == TinyShakespeareType::kUINT16) { + std::vector encoded_tokens(num_tokens); + ifs.read(reinterpret_cast(encoded_tokens.data()), encoded_tokens.size() * sizeof(uint16_t)); + CHECK_EQ(ifs.gcount(), static_cast(encoded_tokens.size() * sizeof(uint16_t))) + << "Unexpected end of dataset token data"; + for (size_t idx = 0; idx < encoded_tokens.size(); ++idx) { tokens[idx] = encoded_tokens[idx]; } + } else { + std::vector encoded_tokens(num_tokens); + ifs.read(reinterpret_cast(encoded_tokens.data()), encoded_tokens.size() * sizeof(uint32_t)); + CHECK_EQ(ifs.gcount(), static_cast(encoded_tokens.size() * sizeof(uint32_t))) + << "Unexpected end of dataset token data"; + for (size_t idx = 0; idx < encoded_tokens.size(); ++idx) { tokens[idx] = encoded_tokens[idx]; } + } + + const size_t num_samples = (static_cast(num_tokens) - 1) / sequence_length; + CHECK_GT(num_samples, 0) << "Dataset has too few tokens for sequence length " << sequence_length; + CHECK_LE(num_samples, static_cast(std::numeric_limits::max())); + + TinyShakespeareFile result; + result.type = type; + result.dims = {static_cast(num_samples), static_cast(sequence_length)}; + result.tensor = infini_train::Tensor({static_cast(num_tokens)}, DataType::kINT64); + std::memcpy(result.tensor.DataPtr(), tokens.data(), tokens.size() * sizeof(int64_t)); + return result; } } // namespace -TinyShakespeareDataset::TinyShakespeareDataset(const std::string &filepath, size_t sequence_length) { - // =================================== 作业 =================================== - // TODO:初始化数据集实例 - // HINT: 调用ReadTinyShakespeareFile加载数据文件 - // =================================== 作业 =================================== -} +TinyShakespeareDataset::TinyShakespeareDataset(const std::string &filepath, size_t sequence_length) + : text_file_(ReadTinyShakespeareFile(filepath, sequence_length)), sequence_length_(sequence_length), + sequence_size_in_bytes_(sequence_length * sizeof(int64_t)), + num_samples_(static_cast(text_file_.dims[0])) {} std::pair, std::shared_ptr> TinyShakespeareDataset::operator[](size_t idx) const { - CHECK_LT(idx, text_file_.dims[0] - 1); + CHECK_LT(idx, num_samples_); std::vector dims = std::vector(text_file_.dims.begin() + 1, text_file_.dims.end()); // x: (seq_len), y: (seq_len) -> stack -> (bs, seq_len) (bs, seq_len) return {std::make_shared(text_file_.tensor, idx * sequence_size_in_bytes_, dims), diff --git a/example/common/tokenizer.cc b/example/common/tokenizer.cc index 23b9537..b01cdab 100644 --- a/example/common/tokenizer.cc +++ b/example/common/tokenizer.cc @@ -1,10 +1,15 @@ #include "example/common/tokenizer.h" -#include #include +#include #include #include #include +#include +#include +#include +#include +#include #include #include "glog/logging.h" @@ -15,7 +20,7 @@ constexpr uint32_t kGpt2Eot = 50256; constexpr uint32_t kLLaMA3Eot = 128001; constexpr uint64_t kRandomU32Multiplier = 0x2545F4914F6CDD1Dull; constexpr float kF32Divisor = 16777216.0f; // 2^24 -constexpr uint64_t kRngState = 1337; +constexpr size_t kHeaderSize = 1024; using Version = Tokenizer::Version; @@ -31,9 +36,29 @@ const std::unordered_map> kPromptMap = { {20240801, std::vector{791, 7438, 315, 2324, 374}}, // LLaMA-3 }; +class DisableParameterGradGuard { +public: + explicit DisableParameterGradGuard(nn::Module &model) : parameters_(model.Parameters()) { + requires_grad_.reserve(parameters_.size()); + for (const auto ¶meter : parameters_) { requires_grad_.push_back(parameter->requires_grad()); } + for (const auto ¶meter : parameters_) { parameter->set_requires_grad(false); } + } + + ~DisableParameterGradGuard() { + for (size_t idx = 0; idx < parameters_.size(); ++idx) { + parameters_[idx]->set_requires_grad(requires_grad_[idx]); + } + } + +private: + std::vector> parameters_; + std::vector requires_grad_; +}; + std::vector ReadSeveralBytesFromIfstream(size_t num_bytes, std::ifstream *ifs) { std::vector result(num_bytes); ifs->read(reinterpret_cast(result.data()), num_bytes); + CHECK_EQ(ifs->gcount(), static_cast(num_bytes)) << "Unexpected end of file"; return result; } @@ -55,11 +80,11 @@ float RandomF32(uint64_t &state) { // random float32 in [0,1) return (RandomU32(state) >> 8) / kF32Divisor; } -int SampleMult(float *probabilities, int n, float coin) { +size_t SampleMult(const float *probabilities, size_t n, float coin) { // sample index from probabilities (they must sum to 1!) // coin is a random number in [0, 1), usually from RandomF32() float cdf = 0.0f; - for (int i = 0; i < n; i++) { + for (size_t i = 0; i < n; ++i) { cdf += probabilities[i]; if (coin < cdf) { return i; @@ -69,48 +94,103 @@ int SampleMult(float *probabilities, int n, float coin) { } Tokenizer::Tokenizer(const std::string &filepath) { - /* ===================================== 作业 ===================================== - TODO:实现Tokenizer二进制文件加载 - - 文件格式说明: - ---------------------------------------------------------------------------------- - | HEADER (1024 bytes) | VOCAB TABLE | - | magic(4B) | version(4B) | vocab_size(4B) | reserved(1012B) | token词表数据 | - ---------------------------------------------------------------------------------- - ===================================== 作业 ===================================== */ + CHECK(std::filesystem::exists(filepath)) << "Tokenizer file not found: " << filepath; + CHECK(std::filesystem::is_regular_file(filepath)) << "Tokenizer path is not a regular file: " << filepath; + const uintmax_t file_size = std::filesystem::file_size(filepath); + CHECK_GE(file_size, kHeaderSize) << "Tokenizer file is smaller than its header"; + + std::ifstream ifs(filepath, std::ios::binary); + CHECK(ifs.is_open()) << "Failed to open tokenizer file: " << filepath; + const auto header = ReadSeveralBytesFromIfstream(kHeaderSize, &ifs); + magic_number_ = BytesToType(header, 0); + const uint32_t version_value = BytesToType(header, sizeof(uint32_t)); + vocab_size_ = BytesToType(header, 2 * sizeof(uint32_t)); + + CHECK(kEotMap.contains(magic_number_)) << "Unsupported tokenizer magic: " << magic_number_; + CHECK(version_value == static_cast(Version::kV1) + || version_value == static_cast(Version::kV2)) + << "Unsupported tokenizer version: " << version_value; + CHECK_GT(vocab_size_, 0); + CHECK_LE(static_cast(vocab_size_), file_size - kHeaderSize) + << "Tokenizer vocabulary cannot fit in file"; + + if (version_value == static_cast(Version::kV2)) { + eot_token_ = BytesToType(header, 3 * sizeof(uint32_t)); + } else { + eot_token_ = kEotMap.at(magic_number_); + } + CHECK_LT(eot_token_, vocab_size_) << "Tokenizer end token is outside the vocabulary"; + + token_table_.reserve(vocab_size_); + for (uint32_t token_id = 0; token_id < vocab_size_; ++token_id) { + const int length_byte = ifs.get(); + CHECK_NE(length_byte, std::char_traits::eof()) << "Missing length for token " << token_id; + const size_t token_length = static_cast(length_byte); + std::string token(token_length, '\0'); + if (token_length > 0) { + ifs.read(token.data(), token_length); + CHECK_EQ(ifs.gcount(), static_cast(token_length)) + << "Truncated bytes for token " << token_id; + } + token_table_.push_back(std::move(token)); + } + CHECK_EQ(ifs.peek(), std::char_traits::eof()) << "Unexpected trailing tokenizer data"; } std::string Tokenizer::Decode(uint32_t token_id) const { - /* ===================================== 作业 ===================================== - TODO:实现token_id到文本的转换 - 功能描述:根据token_id返回对应的文本片段 - ===================================== 作业 ===================================== */ - return ""; + if (token_id >= token_table_.size()) { + return ""; + } + return token_table_[token_id]; } void Tokenizer::GenerateText(infini_train::nn::Module &model, uint32_t batch_size, uint32_t sequence_length, - uint32_t text_length, Device device) const { + uint32_t text_length, Device device, uint64_t seed) const { + CHECK_GT(batch_size, 0); + CHECK_GT(sequence_length, 0); + CHECK_LE(text_length, sequence_length); + const uint64_t num_input_tokens = static_cast(batch_size) * sequence_length; + CHECK_LE(num_input_tokens, static_cast(std::numeric_limits::max())); std::vector dims; dims.assign({batch_size, sequence_length}); // x_tensor (FLAGS_batch_size, FLAGS_sequence_length) eq:(4, 64) infini_train::Tensor x_tensor = infini_train::Tensor(dims, DataType::kINT64); int64_t *x_buff = static_cast(x_tensor.DataPtr()); - for (int i = 0; i < batch_size * sequence_length; ++i) { x_buff[i] = eot_token_; } + for (size_t i = 0; i < num_input_tokens; ++i) { x_buff[i] = eot_token_; } // Give some contexts: "The meaning of life is " - auto prompt = kPromptMap.at(magic_number_); - auto prompt_len = prompt.size(); - for (int i = 0; i < prompt_len; ++i) { x_buff[i] = prompt[i]; } + const auto &prompt = kPromptMap.at(magic_number_); + const size_t prompt_len = prompt.size(); + CHECK_LE(prompt_len, text_length); + for (size_t i = 0; i < prompt_len; ++i) { x_buff[i] = prompt[i]; } std::cout << "The meaning of life is"; auto x = std::make_shared(x_tensor.To(device)); - uint64_t kRngState = kRngState; + DisableParameterGradGuard parameter_grad_guard(model); + uint64_t rng_state = seed; LOG(INFO) << "start generate text:"; - for (int t = prompt_len; t < text_length; t++) { - /* ===================================== 作业 ===================================== - TODO:实现单步文本生成逻辑 - HINT:调用model.Forward推理获取logits,根据推理结果进行随机采样,调用Decode获取文本结果 - ===================================== 作业 ===================================== */ + for (size_t t = prompt_len; t < text_length; ++t) { + const auto outputs = model.Forward({x}); + CHECK_GT(outputs.size(), 0); + CHECK(outputs[0]); + const auto &logits = outputs[0]; + CHECK_EQ(logits->Dims().size(), 3); + CHECK_EQ(logits->Dims()[0], batch_size); + CHECK_EQ(logits->Dims()[1], sequence_length); + CHECK_EQ(logits->Dims()[2], vocab_size_); + + auto next_token_logits + = logits->Slice({0, static_cast(t - 1), 0}, + {1, static_cast(t), static_cast(vocab_size_)}, {1, 1, 1}); + auto probabilities = nn::function::Softmax(next_token_logits, -1); + auto probabilities_cpu = probabilities->To(Device(DeviceType::kCPU, 0)); + auto *probabilities_ptr = static_cast(probabilities_cpu.DataPtr()); + const uint32_t next_token + = static_cast(SampleMult(probabilities_ptr, vocab_size_, RandomF32(rng_state))); + + x_buff[t] = next_token; + std::cout << Decode(next_token); + x = std::make_shared(x_tensor.To(device)); } std::cout << std::endl; } diff --git a/example/common/tokenizer.h b/example/common/tokenizer.h index 1da539f..ba41c0a 100644 --- a/example/common/tokenizer.h +++ b/example/common/tokenizer.h @@ -22,7 +22,7 @@ class Tokenizer { std::string Decode(uint32_t token_id) const; void GenerateText(infini_train::nn::Module &model, uint32_t batch_size, uint32_t sequence_length, - uint32_t text_length, Device device) const; + uint32_t text_length, Device device, uint64_t seed = 1337) const; uint32_t GetEndToken() const { return eot_token_; }; diff --git a/example/gpt2/net.cc b/example/gpt2/net.cc index 441b121..49f0d2c 100644 --- a/example/gpt2/net.cc +++ b/example/gpt2/net.cc @@ -220,6 +220,11 @@ GPT2::Forward(const std::vector> &x) { return logits; } +void GPT2::TieWeights() { + *mutable_module(kTransformerLayerName)->mutable_module(kWTELayerName)->mutable_parameter(nn::Embedding::kParamWeightName) + = module(kLMHeadLayerName).parameter(nn::Linear::kParamWeightName); +} + std::unique_ptr GPT2::FromPretrained(ModelType model_type) { LOG(FATAL) << "Not implemented yet"; return nullptr; @@ -232,6 +237,12 @@ std::vector ReadSeveralBytesFromIfstream(size_t num_bytes, std::ifstrea return result; } +void ReadTensorFromIfstream(const std::shared_ptr &tensor, std::ifstream *ifs) { + CHECK(tensor); + ifs->read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + CHECK_EQ(ifs->gcount(), static_cast(tensor->SizeInBytes())) << "Truncated model tensor payload"; +} + template T BytesToType(const std::vector &bytes, size_t offset) { static_assert(std::is_trivially_copyable::value, "T must be trivially copyable."); T value; @@ -274,104 +285,107 @@ std::unique_ptr GPT2::FromLLMC(const std::string &filepath) { // (padded_vocab_size, n_embd) -> un_pad -> (vocab_size, n_embd) auto &transformer_wte_weight = state_dict[std::format("{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kWTELayerName, nn::Embedding::kParamWeightName)]; - ifs.read(reinterpret_cast(transformer_wte_weight->DataPtr()), transformer_wte_weight->SizeInBytes()); - ifs.ignore((padded_vocab_size - vocab_size) * n_embd * sizeof(float)); + ReadTensorFromIfstream(transformer_wte_weight, &ifs); + const auto padding_bytes = static_cast((padded_vocab_size - vocab_size) * n_embd * sizeof(float)); + ifs.ignore(padding_bytes); + CHECK_EQ(ifs.gcount(), padding_bytes) << "Truncated padded token-embedding payload"; // transformer.wpe.weight auto &transformer_wpe_weight = state_dict[std::format("{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kWPELayerName, nn::Embedding::kParamWeightName)]; - ifs.read(reinterpret_cast(transformer_wpe_weight->DataPtr()), transformer_wpe_weight->SizeInBytes()); + ReadTensorFromIfstream(transformer_wpe_weight, &ifs); // transformer.h.{i}.ln_1.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kLn1LayerName, nn::LayerNorm::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.ln_1.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kLn1LayerName, nn::LayerNorm::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.attn.c_attn.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kAttnLayerName, CausalSelfAttention::kCAttnLayerName, GPT2Linear::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.attn.c_attn.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kAttnLayerName, CausalSelfAttention::kCAttnLayerName, GPT2Linear::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.attn.c_proj.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kAttnLayerName, CausalSelfAttention::kCProjLayerName, GPT2Linear::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.attn.c_proj.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kAttnLayerName, CausalSelfAttention::kCProjLayerName, GPT2Linear::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.ln_2.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kLn2LayerName, nn::LayerNorm::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.ln_2.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kLn2LayerName, nn::LayerNorm::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.mlp.c_fc.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kMlpLayerName, MLP::kCFclayerName, GPT2Linear::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.mlp.c_fc.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kMlpLayerName, MLP::kCFclayerName, GPT2Linear::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.mlp.c_proj.weight for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kMlpLayerName, MLP::kCProjLayerName, GPT2Linear::kParamWeightName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.h.{i}.mlp.c_proj.bias for (int idx = 0; idx < n_layer; idx++) { auto &tensor = state_dict[std::format("{}.{}.{}.{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kHLayerName, std::to_string(idx), Block::kMlpLayerName, MLP::kCProjLayerName, GPT2Linear::kParamBiasName)]; - ifs.read(reinterpret_cast(tensor->DataPtr()), tensor->SizeInBytes()); + ReadTensorFromIfstream(tensor, &ifs); } // transformer.ln_f.weight auto &transformer_ln_f_weight = state_dict[std::format("{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kLnFLayerName, nn::LayerNorm::kParamWeightName)]; - ifs.read(reinterpret_cast(transformer_ln_f_weight->DataPtr()), transformer_ln_f_weight->SizeInBytes()); + ReadTensorFromIfstream(transformer_ln_f_weight, &ifs); // transformer.ln_f.bias auto &transformer_ln_f_bias = state_dict[std::format("{}.{}.{}", GPT2::kTransformerLayerName, GPT2::kLnFLayerName, nn::LayerNorm::kParamBiasName)]; - ifs.read(reinterpret_cast(transformer_ln_f_bias->DataPtr()), transformer_ln_f_bias->SizeInBytes()); + ReadTensorFromIfstream(transformer_ln_f_bias, &ifs); + CHECK_EQ(ifs.peek(), std::char_traits::eof()) << "Unexpected trailing model checkpoint data"; return gpt2; } diff --git a/example/gpt2/net.h b/example/gpt2/net.h index 619cbdc..aacf6cb 100644 --- a/example/gpt2/net.h +++ b/example/gpt2/net.h @@ -89,6 +89,9 @@ class GPT2 : public infini_train::nn::Module { std::vector> Forward(const std::vector> &x) override; + void TieWeights(); + const GPT2Config &config() const { return config_; } + static std::unique_ptr FromPretrained(ModelType model_type); static std::unique_ptr FromLLMC(const std::string &filepath); diff --git a/example/gpt2/train_experiment.cc b/example/gpt2/train_experiment.cc new file mode 100644 index 0000000..ec47b51 --- /dev/null +++ b/example/gpt2/train_experiment.cc @@ -0,0 +1,1129 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "gflags/gflags.h" +#include "glog/logging.h" + +#ifdef USE_CUDA +#include "cuda_runtime_api.h" +#endif + +#include "example/common/tiny_shakespeare_dataset.h" +#include "example/common/tokenizer.h" +#include "example/gpt2/net.h" +#include "infini_train/include/dataloader.h" +#include "infini_train/include/device.h" +#include "infini_train/include/nn/modules/loss.h" +#include "infini_train/include/optimizer.h" +#include "infini_train/include/tensor.h" + +DEFINE_string(model_path, "", "Path to the llm.c GPT-2 checkpoint"); +DEFINE_string(train_path, "", "Path to the complete training token file"); +DEFINE_string(val_path, "", "Path to the complete validation token file"); +DEFINE_string(tokenizer_path, "", "Path to the tokenizer file used for fixed-prompt generation"); +DEFINE_string(output_dir, "experiment_output", "Directory for checkpoints, metrics, summaries, and generations"); +DEFINE_string(device, "cuda", "Training device: cpu or cuda"); +DEFINE_bool(resume, true, "Resume from output_dir/latest.ckpt when it exists"); +DEFINE_uint64(batch_size, 2, "Batch size"); +DEFINE_uint64(sequence_length, 64, "Sequence length"); +DEFINE_uint64(max_epochs, 8, "Maximum number of complete train/validation epochs"); +DEFINE_double(learning_rate, 2e-5, "Adam learning rate"); +DEFINE_double(beta1, 0.9, "Adam beta1"); +DEFINE_double(beta2, 0.999, "Adam beta2"); +DEFINE_double(epsilon, 1e-8, "Adam epsilon"); +DEFINE_uint64(early_stopping_patience, 3, "Validation epochs without improvement before stopping; 0 disables"); +DEFINE_double(min_delta, 0.005, "Minimum validation-loss improvement"); +DEFINE_uint64(seed, 1337, "Runner RNG seed saved in checkpoints"); +DEFINE_uint64(generation_length, 64, "Fixed-prompt generation length (must not exceed sequence_length)"); +DEFINE_double(max_runtime_seconds, 600.0, "Per-process runtime budget"); +DEFINE_double(safety_margin_seconds, 90.0, "Reserved time for an atomic checkpoint and process shutdown"); +DEFINE_uint64(checkpoint_interval_steps, 0, "Save latest every N train steps; 0 means epoch/window boundaries only"); + +namespace { +namespace fs = std::filesystem; +using Clock = std::chrono::steady_clock; +using infini_train::DataLoader; +using infini_train::DataType; +using infini_train::Device; +using infini_train::DeviceType; +using infini_train::Tensor; +using infini_train::Tokenizer; +using infini_train::nn::CrossEntropyLoss; +using infini_train::optimizers::Adam; + +constexpr std::array kCheckpointMagic{'T', 'I', 'T', 'C', 'K', 'P', 'T', '\0'}; +constexpr uint32_t kCheckpointVersion = 2; +constexpr uint32_t kEndianMarker = 0x01020304; +constexpr uint64_t kChecksumOffsetBasis = 14695981039346656037ull; +constexpr uint64_t kChecksumPrime = 1099511628211ull; +constexpr char kStepsHeader[] + = "epoch,global_step,batch_index,tokens,loss,compute_seconds,tokens_per_second,cuda_async_pool_peak_bytes"; +constexpr char kEpochsHeader[] + = "epoch,global_step,train_tokens,val_tokens,train_mean_loss,val_mean_loss,val_perplexity,val_perplexity_overflow,train_tokens_per_second,cuda_async_pool_peak_bytes,improved"; + +uint64_t UpdateChecksum(uint64_t checksum, const void *data, size_t size) { + const auto *bytes = static_cast(data); + for (size_t idx = 0; idx < size; ++idx) { + checksum ^= bytes[idx]; + checksum *= kChecksumPrime; + } + return checksum; +} + +enum class Phase : uint32_t { kTrain = 0, kValidate = 1, kComplete = 2 }; + +struct Progress { + Phase phase = Phase::kTrain; + uint64_t epoch = 0; + uint64_t global_step = 0; + uint64_t next_batch = 0; + double train_loss_sum = 0.0; + uint64_t train_tokens = 0; + double train_compute_seconds = 0.0; + uint64_t total_train_tokens = 0; + double total_train_compute_seconds = 0.0; + double val_loss_sum = 0.0; + uint64_t val_tokens = 0; + double best_val_loss = std::numeric_limits::infinity(); + uint64_t epochs_without_improvement = 0; + uint64_t peak_cuda_bytes = 0; + double final_train_loss = std::numeric_limits::quiet_NaN(); + double final_val_loss = std::numeric_limits::quiet_NaN(); +}; + +struct StateEntry { + std::string name; + std::shared_ptr tensor; + uint64_t payload_index = 0; +}; + +struct ModelCatalog { + std::vector entries; + std::vector canonical_names; + std::vector> unique_tensors; +}; + +struct FileIdentity { + std::string path; + uint64_t size = 0; + uint64_t checksum = 0; +}; + +struct ExperimentContract { + FileIdentity model; + FileIdentity train; + FileIdentity validation; + FileIdentity tokenizer; + uint64_t max_epochs = 0; + uint64_t early_stopping_patience = 0; + double min_delta = 0.0; + uint64_t seed = 0; + uint64_t generation_length = 0; + std::string device; +}; + +struct DatasetCoverage { + uint64_t samples = 0; + uint64_t raw_tokens = 0; + uint64_t usable_target_tokens = 0; + uint64_t dropped_tokens = 0; +}; + +class BinaryWriter { +public: + explicit BinaryWriter(const fs::path &path) : stream_(path, std::ios::binary | std::ios::trunc) { + CHECK(stream_.is_open()) << "Failed to open checkpoint temporary file: " << path; + } + + template void Pod(const T &value) { + static_assert(std::is_trivially_copyable_v); + Bytes(&value, sizeof(T)); + } + + void Bytes(const void *data, size_t size) { + stream_.write(static_cast(data), static_cast(size)); + CHECK(stream_) << "Checkpoint write failed"; + checksum_ = UpdateChecksum(checksum_, data, size); + } + + void WriteChecksumTrailer() { + stream_.write(reinterpret_cast(&checksum_), sizeof(checksum_)); + CHECK(stream_) << "Checkpoint checksum trailer write failed"; + } + + void String(const std::string &value) { + Pod(static_cast(value.size())); + Bytes(value.data(), value.size()); + } + + void Close() { + stream_.flush(); + CHECK(stream_) << "Checkpoint flush failed"; + stream_.close(); + CHECK(!stream_.fail()) << "Checkpoint close failed"; + } + +private: + std::ofstream stream_; + uint64_t checksum_ = kChecksumOffsetBasis; +}; + +class BinaryReader { +public: + explicit BinaryReader(const fs::path &path) : stream_(path, std::ios::binary) { + CHECK(stream_.is_open()) << "Failed to open checkpoint: " << path; + } + + template T Pod() { + static_assert(std::is_trivially_copyable_v); + T value{}; + Read(&value, sizeof(T)); + return value; + } + + void Read(void *data, size_t size) { + stream_.read(static_cast(data), static_cast(size)); + CHECK_EQ(stream_.gcount(), static_cast(size)) << "Truncated checkpoint"; + checksum_ = UpdateChecksum(checksum_, data, size); + } + + std::string String() { + const uint64_t size = Pod(); + CHECK_LE(size, static_cast(std::numeric_limits::max())); + std::string value(static_cast(size), '\0'); + Read(value.data(), value.size()); + return value; + } + + void RequireChecksumTrailer() { + uint64_t expected_checksum = 0; + stream_.read(reinterpret_cast(&expected_checksum), sizeof(expected_checksum)); + CHECK_EQ(stream_.gcount(), static_cast(sizeof(expected_checksum))) + << "Missing checkpoint checksum trailer"; + CHECK_EQ(checksum_, expected_checksum) << "Corrupt checkpoint body"; + CHECK_EQ(stream_.peek(), std::char_traits::eof()) << "Unexpected trailing checkpoint data"; + } + +private: + std::ifstream stream_; + uint64_t checksum_ = kChecksumOffsetBasis; +}; + +std::string JsonNumber(double value) { + if (!std::isfinite(value)) { + return "null"; + } + std::ostringstream out; + out << std::setprecision(17) << value; + return out.str(); +} + +DatasetCoverage ReadDatasetCoverage(const fs::path &path, uint64_t samples) { + std::ifstream input(path, std::ios::binary); + CHECK(input.is_open()) << "Failed to read dataset coverage: " << path; + input.seekg(2 * sizeof(uint32_t)); + uint32_t raw_tokens = 0; + input.read(reinterpret_cast(&raw_tokens), sizeof(raw_tokens)); + CHECK_EQ(input.gcount(), static_cast(sizeof(raw_tokens))) << "Truncated dataset header"; + const uint64_t usable = samples * FLAGS_sequence_length; + CHECK_GE(raw_tokens, usable + 1); + return DatasetCoverage{.samples = samples, + .raw_tokens = raw_tokens, + .usable_target_tokens = usable, + .dropped_tokens = static_cast(raw_tokens) - 1 - usable}; +} + +uint64_t ChecksumBytes(const void *data, size_t size) { + return UpdateChecksum(kChecksumOffsetBasis, data, size); +} + +FileIdentity IdentifyFile(const fs::path &path) { + CHECK(fs::exists(path)) << "Required input file does not exist: " << path; + CHECK(fs::is_regular_file(path)) << "Required input path is not a regular file: " << path; + FileIdentity identity; + identity.path = fs::weakly_canonical(path).string(); + identity.size = fs::file_size(path); + + std::ifstream input(path, std::ios::binary); + CHECK(input.is_open()) << "Failed to hash input file: " << path; + constexpr size_t kBufferSize = 1 << 20; + std::vector buffer(kBufferSize); + uint64_t checksum = kChecksumOffsetBasis; + while (input) { + input.read(reinterpret_cast(buffer.data()), buffer.size()); + const size_t count = static_cast(input.gcount()); + for (size_t idx = 0; idx < count; ++idx) { + checksum ^= buffer[idx]; + checksum *= kChecksumPrime; + } + } + CHECK(input.eof()) << "Failed while hashing input file: " << path; + identity.checksum = checksum; + return identity; +} + +ExperimentContract BuildExperimentContract() { + return ExperimentContract{ + .model = IdentifyFile(FLAGS_model_path), + .train = IdentifyFile(FLAGS_train_path), + .validation = IdentifyFile(FLAGS_val_path), + .tokenizer = IdentifyFile(FLAGS_tokenizer_path), + .max_epochs = FLAGS_max_epochs, + .early_stopping_patience = FLAGS_early_stopping_patience, + .min_delta = FLAGS_min_delta, + .seed = FLAGS_seed, + .generation_length = FLAGS_generation_length, + .device = FLAGS_device, + }; +} + +void WriteFileIdentity(BinaryWriter *writer, const FileIdentity &identity) { + writer->String(identity.path); + writer->Pod(identity.size); + writer->Pod(identity.checksum); +} + +void ValidateFileIdentity(BinaryReader *reader, const FileIdentity &expected) { + CHECK_EQ(reader->String(), expected.path) << "Checkpoint input path mismatch"; + CHECK_EQ(reader->Pod(), expected.size) << "Checkpoint input size mismatch"; + CHECK_EQ(reader->Pod(), expected.checksum) << "Checkpoint input checksum mismatch"; +} + +void WriteExperimentContract(BinaryWriter *writer, const ExperimentContract &contract) { + WriteFileIdentity(writer, contract.model); + WriteFileIdentity(writer, contract.train); + WriteFileIdentity(writer, contract.validation); + WriteFileIdentity(writer, contract.tokenizer); + writer->Pod(contract.max_epochs); + writer->Pod(contract.early_stopping_patience); + writer->Pod(contract.min_delta); + writer->Pod(contract.seed); + writer->Pod(contract.generation_length); + writer->String(contract.device); +} + +void ValidateExperimentContract(BinaryReader *reader, const ExperimentContract &expected) { + ValidateFileIdentity(reader, expected.model); + ValidateFileIdentity(reader, expected.train); + ValidateFileIdentity(reader, expected.validation); + ValidateFileIdentity(reader, expected.tokenizer); + CHECK_EQ(reader->Pod(), expected.max_epochs) << "Checkpoint max_epochs mismatch"; + CHECK_EQ(reader->Pod(), expected.early_stopping_patience) + << "Checkpoint early-stopping patience mismatch"; + CHECK_EQ(reader->Pod(), expected.min_delta) << "Checkpoint min_delta mismatch"; + CHECK_EQ(reader->Pod(), expected.seed) << "Checkpoint seed mismatch"; + CHECK_EQ(reader->Pod(), expected.generation_length) << "Checkpoint generation length mismatch"; + CHECK_EQ(reader->String(), expected.device) << "Checkpoint device/backend mismatch"; +} + +fs::path TemporaryPath(const fs::path &destination) { + const auto stamp = Clock::now().time_since_epoch().count(); + return destination.string() + ".tmp." + std::to_string(stamp); +} + +void AtomicRename(const fs::path &temporary, const fs::path &destination) { + std::error_code error; + fs::rename(temporary, destination, error); + CHECK(!error) << "Atomic rename failed from " << temporary << " to " << destination << ": " << error.message(); +} + +void AtomicWriteText(const fs::path &destination, const std::string &contents) { + const fs::path temporary = TemporaryPath(destination); + std::ofstream out(temporary, std::ios::binary | std::ios::trunc); + CHECK(out.is_open()) << "Failed to open temporary output: " << temporary; + out.write(contents.data(), static_cast(contents.size())); + out.flush(); + CHECK(out) << "Failed to write temporary output: " << temporary; + out.close(); + AtomicRename(temporary, destination); +} + +void AtomicHardLink(const fs::path &source, const fs::path &destination) { + CHECK(fs::exists(source)) << "Hard-link source does not exist: " << source; + const fs::path temporary = TemporaryPath(destination); + std::error_code error; + fs::create_hard_link(source, temporary, error); + CHECK(!error) << "Failed to create checkpoint hard link: " << error.message(); + AtomicRename(temporary, destination); +} + +void AppendCsv(const fs::path &path, const std::string &header, const std::string &row) { + const bool needs_header = !fs::exists(path) || fs::file_size(path) == 0; + std::ofstream out(path, std::ios::app); + CHECK(out.is_open()) << "Failed to open metrics CSV: " << path; + if (needs_header) { + out << header << '\n'; + } + out << row << '\n'; + out.flush(); + CHECK(out) << "Failed to append metrics CSV: " << path; +} + +std::pair ParseCsvKey(const std::string &row) { + const size_t first_comma = row.find(','); + const size_t second_comma = row.find(',', first_comma == std::string::npos ? first_comma : first_comma + 1); + CHECK(first_comma != std::string::npos && second_comma != std::string::npos) << "Malformed metrics row: " << row; + size_t parsed = 0; + const uint64_t first = std::stoull(row.substr(0, first_comma), &parsed); + CHECK_EQ(parsed, first_comma) << "Malformed metrics key: " << row; + const std::string second_text = row.substr(first_comma + 1, second_comma - first_comma - 1); + const uint64_t second = std::stoull(second_text, &parsed); + CHECK_EQ(parsed, second_text.size()) << "Malformed metrics key: " << row; + return {first, second}; +} + +void ReconcileMetricsCsv(const fs::path &path, const std::string &expected_header, uint64_t maximum_key, + bool key_is_second_column, bool maximum_is_inclusive) { + if (!fs::exists(path)) { + return; + } + std::ifstream input(path); + CHECK(input.is_open()) << "Failed to reconcile metrics: " << path; + std::string header; + CHECK(static_cast(std::getline(input, header))) << "Missing metrics header: " << path; + CHECK_EQ(header, expected_header) << "Unexpected metrics schema: " << path; + std::unordered_map committed; + std::string row; + while (std::getline(input, row)) { + if (row.empty()) { + continue; + } + const auto [first, second] = ParseCsvKey(row); + const uint64_t key = key_is_second_column ? second : first; + if (maximum_is_inclusive ? key <= maximum_key : key < maximum_key) { + committed[key] = row; + } + } + CHECK(input.eof()) << "Failed while reconciling metrics: " << path; + std::vector keys; + keys.reserve(committed.size()); + for (const auto &[key, _] : committed) { + keys.push_back(key); + } + std::sort(keys.begin(), keys.end()); + std::ostringstream canonical; + canonical << header << '\n'; + for (const uint64_t key : keys) { + canonical << committed.at(key) << '\n'; + } + AtomicWriteText(path, canonical.str()); +} + +ModelCatalog BuildModelCatalog(GPT2 &model) { + auto state_dict = model.StateDict(); + CHECK(state_dict.contains("lm_head.weight")); + CHECK(state_dict.contains("transformer.wte.weight")); + CHECK_EQ(state_dict.at("lm_head.weight").get(), state_dict.at("transformer.wte.weight").get()) + << "GPT-2 token embedding and language-model head must remain tied after device transfer"; + std::vector>> sorted(state_dict.begin(), state_dict.end()); + std::sort(sorted.begin(), sorted.end(), [](const auto &lhs, const auto &rhs) { return lhs.first < rhs.first; }); + + ModelCatalog catalog; + std::unordered_map tensor_to_payload; + for (auto &[name, tensor] : sorted) { + CHECK(tensor) << "Null state tensor: " << name; + auto [it, inserted] = tensor_to_payload.emplace(tensor.get(), catalog.unique_tensors.size()); + if (inserted) { + catalog.unique_tensors.push_back(tensor); + catalog.canonical_names.push_back(name); + } + catalog.entries.push_back(StateEntry{.name = name, .tensor = tensor, .payload_index = it->second}); + } + CHECK(!catalog.entries.empty()); + return catalog; +} + +std::vector TensorBytes(const Tensor &tensor) { + std::vector bytes(tensor.SizeInBytes()); + if (tensor.GetDevice().Type() == DeviceType::kCPU) { + std::memcpy(bytes.data(), tensor.DataPtr(), bytes.size()); + } +#ifdef USE_CUDA + else if (tensor.GetDevice().Type() == DeviceType::kCUDA) { + CHECK_EQ(cudaMemcpy(bytes.data(), tensor.DataPtr(), bytes.size(), cudaMemcpyDeviceToHost), cudaSuccess); + } +#endif + else { + LOG(FATAL) << "Unsupported checkpoint tensor device"; + } + return bytes; +} + +void CopyBytesToTensor(const std::vector &bytes, Tensor *tensor) { + CHECK(tensor); + CHECK_EQ(bytes.size(), tensor->SizeInBytes()); + if (tensor->GetDevice().Type() == DeviceType::kCPU) { + std::memcpy(tensor->DataPtr(), bytes.data(), bytes.size()); + } +#ifdef USE_CUDA + else if (tensor->GetDevice().Type() == DeviceType::kCUDA) { + CHECK_EQ(cudaMemcpy(tensor->DataPtr(), bytes.data(), bytes.size(), cudaMemcpyHostToDevice), cudaSuccess); + } +#endif + else { + LOG(FATAL) << "Unsupported checkpoint tensor device"; + } +} + +void WriteTensorMetadata(BinaryWriter *writer, const std::string &name, const Tensor &tensor) { + writer->String(name); + writer->Pod(static_cast(tensor.Dtype())); + writer->Pod(static_cast(tensor.Dims().size())); + for (const int64_t dim : tensor.Dims()) { + writer->Pod(dim); + } + writer->Pod(static_cast(tensor.SizeInBytes())); +} + +void ValidateTensorMetadata(BinaryReader *reader, const std::string &expected_name, const Tensor &tensor) { + CHECK_EQ(reader->String(), expected_name) << "Checkpoint state name mismatch"; + CHECK_EQ(reader->Pod(), static_cast(tensor.Dtype())) << "Checkpoint dtype mismatch"; + const uint64_t num_dims = reader->Pod(); + CHECK_EQ(num_dims, tensor.Dims().size()) << "Checkpoint rank mismatch"; + for (const int64_t expected_dim : tensor.Dims()) { + CHECK_EQ(reader->Pod(), expected_dim) << "Checkpoint shape mismatch"; + } + CHECK_EQ(reader->Pod(), tensor.SizeInBytes()) << "Checkpoint byte-size mismatch"; +} + +std::string SerializeRng(const std::mt19937_64 &rng) { + std::ostringstream out; + out << rng; + return out.str(); +} + +void DeserializeRng(const std::string &serialized, std::mt19937_64 *rng) { + std::istringstream in(serialized); + in >> *rng; + CHECK(in) << "Invalid RNG checkpoint state"; +} + +void WriteConfig(BinaryWriter *writer, const GPT2Config &config) { + writer->Pod(config.block_size); + writer->Pod(config.vocab_size); + writer->Pod(config.n_layer); + writer->Pod(config.n_head); + writer->Pod(config.n_embd); +} + +void ValidateConfig(BinaryReader *reader, const GPT2Config &config) { + CHECK_EQ(reader->Pod(), config.block_size); + CHECK_EQ(reader->Pod(), config.vocab_size); + CHECK_EQ(reader->Pod(), config.n_layer); + CHECK_EQ(reader->Pod(), config.n_head); + CHECK_EQ(reader->Pod(), config.n_embd); +} + +void WriteProgress(BinaryWriter *writer, const Progress &progress) { + writer->Pod(static_cast(progress.phase)); + writer->Pod(progress.epoch); + writer->Pod(progress.global_step); + writer->Pod(progress.next_batch); + writer->Pod(progress.train_loss_sum); + writer->Pod(progress.train_tokens); + writer->Pod(progress.train_compute_seconds); + writer->Pod(progress.total_train_tokens); + writer->Pod(progress.total_train_compute_seconds); + writer->Pod(progress.val_loss_sum); + writer->Pod(progress.val_tokens); + writer->Pod(progress.best_val_loss); + writer->Pod(progress.epochs_without_improvement); + writer->Pod(progress.peak_cuda_bytes); + writer->Pod(progress.final_train_loss); + writer->Pod(progress.final_val_loss); +} + +Progress ReadProgress(BinaryReader *reader) { + Progress progress; + const uint32_t phase = reader->Pod(); + CHECK_LE(phase, static_cast(Phase::kComplete)); + progress.phase = static_cast(phase); + progress.epoch = reader->Pod(); + progress.global_step = reader->Pod(); + progress.next_batch = reader->Pod(); + progress.train_loss_sum = reader->Pod(); + progress.train_tokens = reader->Pod(); + progress.train_compute_seconds = reader->Pod(); + progress.total_train_tokens = reader->Pod(); + progress.total_train_compute_seconds = reader->Pod(); + progress.val_loss_sum = reader->Pod(); + progress.val_tokens = reader->Pod(); + progress.best_val_loss = reader->Pod(); + progress.epochs_without_improvement = reader->Pod(); + progress.peak_cuda_bytes = reader->Pod(); + progress.final_train_loss = reader->Pod(); + progress.final_val_loss = reader->Pod(); + return progress; +} + +double SaveCheckpoint(const fs::path &destination, const GPT2 &model, const ModelCatalog &catalog, const Adam &optimizer, + const Progress &progress, const std::mt19937_64 &rng, + const ExperimentContract &experiment_contract) { + const auto started = Clock::now(); +#ifdef USE_CUDA + if (!catalog.unique_tensors.empty() && catalog.unique_tensors[0]->GetDevice().Type() == DeviceType::kCUDA) { + CHECK_EQ(cudaDeviceSynchronize(), cudaSuccess); + } +#endif + const fs::path temporary = TemporaryPath(destination); + BinaryWriter writer(temporary); + writer.Bytes(kCheckpointMagic.data(), kCheckpointMagic.size()); + writer.Pod(kCheckpointVersion); + writer.Pod(kEndianMarker); + WriteConfig(&writer, model.config()); + WriteExperimentContract(&writer, experiment_contract); + writer.Pod(FLAGS_sequence_length); + writer.Pod(FLAGS_batch_size); + writer.Pod(optimizer.LearningRate()); + writer.Pod(optimizer.Beta1()); + writer.Pod(optimizer.Beta2()); + writer.Pod(optimizer.Epsilon()); + writer.Pod(optimizer.StepCount()); + WriteProgress(&writer, progress); + writer.String(SerializeRng(rng)); + + writer.Pod(static_cast(catalog.entries.size())); + for (const auto &entry : catalog.entries) { + WriteTensorMetadata(&writer, entry.name, *entry.tensor); + writer.Pod(entry.payload_index); + } + writer.Pod(static_cast(catalog.unique_tensors.size())); + for (size_t idx = 0; idx < catalog.unique_tensors.size(); ++idx) { + writer.String(catalog.canonical_names[idx]); + const auto bytes = TensorBytes(*catalog.unique_tensors[idx]); + writer.Pod(static_cast(bytes.size())); + writer.Pod(ChecksumBytes(bytes.data(), bytes.size())); + writer.Bytes(bytes.data(), bytes.size()); + } + + const auto &first = optimizer.FirstMoments(); + const auto &second = optimizer.SecondMoments(); + CHECK_EQ(first.size(), catalog.unique_tensors.size()); + CHECK_EQ(second.size(), catalog.unique_tensors.size()); + writer.Pod(static_cast(first.size())); + for (size_t idx = 0; idx < first.size(); ++idx) { + const std::string first_name = "adam.m." + catalog.canonical_names[idx]; + const std::string second_name = "adam.v." + catalog.canonical_names[idx]; + WriteTensorMetadata(&writer, first_name, *first[idx]); + const auto first_bytes = TensorBytes(*first[idx]); + writer.Pod(ChecksumBytes(first_bytes.data(), first_bytes.size())); + writer.Bytes(first_bytes.data(), first_bytes.size()); + WriteTensorMetadata(&writer, second_name, *second[idx]); + const auto second_bytes = TensorBytes(*second[idx]); + writer.Pod(ChecksumBytes(second_bytes.data(), second_bytes.size())); + writer.Bytes(second_bytes.data(), second_bytes.size()); + } + writer.WriteChecksumTrailer(); + writer.Close(); + AtomicRename(temporary, destination); + return std::chrono::duration(Clock::now() - started).count(); +} + +Progress LoadCheckpoint(const fs::path &path, const GPT2 &model, const ModelCatalog &catalog, Adam *optimizer, + std::mt19937_64 *rng, const ExperimentContract &experiment_contract) { + BinaryReader reader(path); + std::array magic{}; + reader.Read(magic.data(), magic.size()); + CHECK(magic == kCheckpointMagic) << "Invalid checkpoint magic"; + CHECK_EQ(reader.Pod(), kCheckpointVersion) << "Unsupported checkpoint version"; + CHECK_EQ(reader.Pod(), kEndianMarker) << "Checkpoint endianness mismatch"; + ValidateConfig(&reader, model.config()); + ValidateExperimentContract(&reader, experiment_contract); + CHECK_EQ(reader.Pod(), FLAGS_sequence_length); + CHECK_EQ(reader.Pod(), FLAGS_batch_size); + CHECK_EQ(reader.Pod(), optimizer->LearningRate()); + CHECK_EQ(reader.Pod(), optimizer->Beta1()); + CHECK_EQ(reader.Pod(), optimizer->Beta2()); + CHECK_EQ(reader.Pod(), optimizer->Epsilon()); + const int64_t optimizer_step = reader.Pod(); + const Progress progress = ReadProgress(&reader); + CHECK_EQ(optimizer_step, static_cast(progress.global_step)) + << "Checkpoint optimizer step and global step mismatch"; + DeserializeRng(reader.String(), rng); + + CHECK_EQ(reader.Pod(), catalog.entries.size()) << "Checkpoint state count mismatch"; + for (const auto &entry : catalog.entries) { + ValidateTensorMetadata(&reader, entry.name, *entry.tensor); + CHECK_EQ(reader.Pod(), entry.payload_index) << "Checkpoint tied-weight alias mismatch"; + } + CHECK_EQ(reader.Pod(), catalog.unique_tensors.size()) << "Checkpoint payload count mismatch"; + for (size_t idx = 0; idx < catalog.unique_tensors.size(); ++idx) { + CHECK_EQ(reader.String(), catalog.canonical_names[idx]) << "Checkpoint canonical state name mismatch"; + CHECK_EQ(reader.Pod(), catalog.unique_tensors[idx]->SizeInBytes()); + const uint64_t expected_checksum = reader.Pod(); + std::vector bytes(catalog.unique_tensors[idx]->SizeInBytes()); + reader.Read(bytes.data(), bytes.size()); + CHECK_EQ(ChecksumBytes(bytes.data(), bytes.size()), expected_checksum) << "Corrupt model tensor payload"; + CopyBytesToTensor(bytes, catalog.unique_tensors[idx].get()); + } + + CHECK_EQ(reader.Pod(), catalog.unique_tensors.size()) << "Checkpoint optimizer state count mismatch"; + std::vector> first; + std::vector> second; + first.reserve(catalog.unique_tensors.size()); + second.reserve(catalog.unique_tensors.size()); + for (size_t idx = 0; idx < catalog.unique_tensors.size(); ++idx) { + const auto ¶meter = catalog.unique_tensors[idx]; + auto first_tensor = std::make_shared(parameter->Dims(), parameter->Dtype()); + auto second_tensor = std::make_shared(parameter->Dims(), parameter->Dtype()); + ValidateTensorMetadata(&reader, "adam.m." + catalog.canonical_names[idx], *first_tensor); + const uint64_t first_checksum = reader.Pod(); + std::vector first_bytes(first_tensor->SizeInBytes()); + reader.Read(first_bytes.data(), first_bytes.size()); + CHECK_EQ(ChecksumBytes(first_bytes.data(), first_bytes.size()), first_checksum) + << "Corrupt Adam first-moment payload"; + CopyBytesToTensor(first_bytes, first_tensor.get()); + ValidateTensorMetadata(&reader, "adam.v." + catalog.canonical_names[idx], *second_tensor); + const uint64_t second_checksum = reader.Pod(); + std::vector second_bytes(second_tensor->SizeInBytes()); + reader.Read(second_bytes.data(), second_bytes.size()); + CHECK_EQ(ChecksumBytes(second_bytes.data(), second_bytes.size()), second_checksum) + << "Corrupt Adam second-moment payload"; + CopyBytesToTensor(second_bytes, second_tensor.get()); + first.push_back(std::move(first_tensor)); + second.push_back(std::move(second_tensor)); + } + reader.RequireChecksumTrailer(); + optimizer->LoadState(optimizer_step, first, second); + return progress; +} + +class DisableParameterGradGuard { +public: + explicit DisableParameterGradGuard(const ModelCatalog &catalog) : parameters_(catalog.unique_tensors) { + requires_grad_.reserve(parameters_.size()); + for (const auto ¶meter : parameters_) { + requires_grad_.push_back(parameter->requires_grad()); + parameter->set_requires_grad(false); + } + } + + ~DisableParameterGradGuard() { + for (size_t idx = 0; idx < parameters_.size(); ++idx) { + parameters_[idx]->set_requires_grad(requires_grad_[idx]); + } + } + +private: + std::vector> parameters_; + std::vector requires_grad_; +}; + +uint64_t BatchCount(const TinyShakespeareDataset &dataset) { + return (dataset.Size() + FLAGS_batch_size - 1) / FLAGS_batch_size; +} + +infini_train::DataLoaderIterator IteratorAt(const DataLoader &loader, uint64_t batch_index) { + auto iterator = loader.begin(); + for (uint64_t idx = 0; idx < batch_index; ++idx) { + ++iterator; + } + return iterator; +} + +float ReadScalar(const Tensor &tensor) { + CHECK_EQ(tensor.NumElements(), 1); + auto cpu = const_cast(tensor).To(Device(DeviceType::kCPU, 0)); +#ifdef USE_CUDA + if (tensor.GetDevice().Type() == DeviceType::kCUDA) { + CHECK_EQ(cudaDeviceSynchronize(), cudaSuccess); + } +#endif + return static_cast(cpu.DataPtr())[0]; +} + +uint64_t PeakCudaBytes() { +#ifdef USE_CUDA + cudaMemPool_t pool; + if (cudaDeviceGetDefaultMemPool(&pool, 0) == cudaSuccess) { + uint64_t high = 0; + if (cudaMemPoolGetAttribute(pool, cudaMemPoolAttrUsedMemHigh, &high) == cudaSuccess) { + return high; + } + } +#endif + return 0; +} + +void ResetPeakCudaBytes() { +#ifdef USE_CUDA + cudaMemPool_t pool; + if (cudaDeviceGetDefaultMemPool(&pool, 0) == cudaSuccess) { + uint64_t zero = 0; + cudaMemPoolSetAttribute(pool, cudaMemPoolAttrUsedMemHigh, &zero); + } +#endif +} + +std::string GenerateFixedPrompt(Tokenizer &tokenizer, GPT2 &model, const ModelCatalog &catalog, const Device &device) { + DisableParameterGradGuard no_grad(catalog); + std::ostringstream captured; + auto *previous = std::cout.rdbuf(captured.rdbuf()); + tokenizer.GenerateText(model, 1, static_cast(FLAGS_sequence_length), + static_cast(FLAGS_generation_length), device, FLAGS_seed); + std::cout.rdbuf(previous); + return captured.str(); +} + +std::string PhaseName(Phase phase) { + switch (phase) { + case Phase::kTrain: return "train"; + case Phase::kValidate: return "validate"; + case Phase::kComplete: return "complete"; + } + return "invalid"; +} + +void WriteSummary(const fs::path &path, const Progress &progress, const GPT2Config &config, + const DatasetCoverage &train_coverage, const DatasetCoverage &val_coverage, bool resumed, + double wall_seconds, const std::string &run_state) { + const double train_loss + = progress.train_tokens == 0 ? progress.final_train_loss : progress.train_loss_sum / progress.train_tokens; + const double val_loss = progress.val_tokens == 0 ? progress.final_val_loss : progress.val_loss_sum / progress.val_tokens; + const double throughput = progress.total_train_compute_seconds > 0 + ? progress.total_train_tokens / progress.total_train_compute_seconds + : 0.0; + const bool perplexity_overflow + = std::isfinite(val_loss) && val_loss > std::log(std::numeric_limits::max()); + const double perplexity = std::isfinite(val_loss) && !perplexity_overflow + ? std::exp(val_loss) + : std::numeric_limits::quiet_NaN(); + std::ostringstream out; + out << "{\n" + << " \"status\": \"" << PhaseName(progress.phase) << "\",\n" + << " \"run_state\": \"" << run_state << "\",\n" + << " \"resumed\": " << (resumed ? "true" : "false") << ",\n" + << " \"device\": \"" << FLAGS_device << "\",\n" + << " \"epoch\": " << progress.epoch << ",\n" + << " \"global_step\": " << progress.global_step << ",\n" + << " \"next_batch\": " << progress.next_batch << ",\n" + << " \"train_mean_loss\": " << JsonNumber(train_loss) << ",\n" + << " \"validation_mean_loss\": " << JsonNumber(val_loss) << ",\n" + << " \"validation_perplexity\": " << JsonNumber(perplexity) << ",\n" + << " \"validation_perplexity_overflow\": " << (perplexity_overflow ? "true" : "false") << ",\n" + << " \"best_validation_loss\": " << JsonNumber(progress.best_val_loss) << ",\n" + << " \"train_tokens_per_second\": " << JsonNumber(throughput) << ",\n" + << " \"cuda_async_pool_peak_bytes\": " << progress.peak_cuda_bytes << ",\n" + << " \"wall_seconds_this_process\": " << JsonNumber(wall_seconds) << ",\n" + << " \"config\": {\"block_size\": " << config.block_size << ", \"vocab_size\": " << config.vocab_size + << ", \"n_layer\": " << config.n_layer << ", \"n_head\": " << config.n_head + << ", \"n_embd\": " << config.n_embd << ", \"batch_size\": " << FLAGS_batch_size + << ", \"sequence_length\": " << FLAGS_sequence_length << ", \"max_epochs\": " << FLAGS_max_epochs + << ", \"learning_rate\": " << JsonNumber(FLAGS_learning_rate) << ", \"seed\": " << FLAGS_seed << "},\n" + << " \"dataset_coverage\": {\n" + << " \"train\": {\"samples\": " << train_coverage.samples << ", \"raw_tokens\": " + << train_coverage.raw_tokens << ", \"usable_target_tokens\": " << train_coverage.usable_target_tokens + << ", \"dropped_tokens\": " << train_coverage.dropped_tokens << "},\n" + << " \"validation\": {\"samples\": " << val_coverage.samples << ", \"raw_tokens\": " + << val_coverage.raw_tokens << ", \"usable_target_tokens\": " << val_coverage.usable_target_tokens + << ", \"dropped_tokens\": " << val_coverage.dropped_tokens << "}\n" + << " },\n" + << " \"artifacts\": {\n" + << " \"steps_csv\": {\"path\": \"steps.csv\", \"exists\": " + << (fs::exists(path.parent_path() / "steps.csv") ? "true" : "false") << "},\n" + << " \"epochs_csv\": {\"path\": \"epochs.csv\", \"exists\": " + << (fs::exists(path.parent_path() / "epochs.csv") ? "true" : "false") << "},\n" + << " \"latest_checkpoint\": {\"path\": \"latest.ckpt\", \"exists\": " + << (fs::exists(path.parent_path() / "latest.ckpt") ? "true" : "false") << "},\n" + << " \"best_checkpoint\": {\"path\": \"best.ckpt\", \"exists\": " + << (fs::exists(path.parent_path() / "best.ckpt") ? "true" : "false") << "},\n" + << " \"final_checkpoint\": {\"path\": \"final.ckpt\", \"exists\": " + << (fs::exists(path.parent_path() / "final.ckpt") ? "true" : "false") << "},\n" + << " \"baseline_generation\": {\"path\": \"baseline.txt\", \"exists\": " + << (fs::exists(path.parent_path() / "baseline.txt") ? "true" : "false") << "},\n" + << " \"best_generation\": {\"path\": \"best.txt\", \"exists\": " + << (fs::exists(path.parent_path() / "best.txt") ? "true" : "false") << "},\n" + << " \"final_generation\": {\"path\": \"final.txt\", \"exists\": " + << (fs::exists(path.parent_path() / "final.txt") ? "true" : "false") << "}\n" + << " }\n" + << "}\n"; + AtomicWriteText(path, out.str()); +} + +void ValidateFlags() { + CHECK(!FLAGS_model_path.empty()); + CHECK(!FLAGS_train_path.empty()); + CHECK(!FLAGS_val_path.empty()); + CHECK(!FLAGS_tokenizer_path.empty()); + CHECK_GT(FLAGS_batch_size, 0); + CHECK_GT(FLAGS_sequence_length, 0); + CHECK_LE(FLAGS_sequence_length, std::numeric_limits::max()); + CHECK_GT(FLAGS_max_epochs, 0); + CHECK(std::isfinite(FLAGS_learning_rate)); + CHECK_GT(FLAGS_learning_rate, 0.0); + CHECK_GT(static_cast(FLAGS_learning_rate), 0.0f); + CHECK(std::isfinite(FLAGS_beta1)); + CHECK_GE(FLAGS_beta1, 0.0); + CHECK_LT(FLAGS_beta1, 1.0); + CHECK(std::isfinite(FLAGS_beta2)); + CHECK_GE(FLAGS_beta2, 0.0); + CHECK_LT(FLAGS_beta2, 1.0); + CHECK(std::isfinite(FLAGS_epsilon)); + CHECK_GT(FLAGS_epsilon, 0.0); + CHECK_GT(static_cast(FLAGS_epsilon), 0.0f); + CHECK(std::isfinite(FLAGS_min_delta)); + CHECK_GE(FLAGS_min_delta, 0.0); + CHECK_GT(FLAGS_generation_length, 0); + CHECK_LE(FLAGS_generation_length, FLAGS_sequence_length); + CHECK(std::isfinite(FLAGS_max_runtime_seconds)); + CHECK_GT(FLAGS_max_runtime_seconds, 0.0); + CHECK(std::isfinite(FLAGS_safety_margin_seconds)); + CHECK_GE(FLAGS_safety_margin_seconds, 0.0); + CHECK_LT(FLAGS_safety_margin_seconds, FLAGS_max_runtime_seconds); + CHECK(FLAGS_device == "cpu" || FLAGS_device == "cuda"); +#ifndef USE_CUDA + CHECK_EQ(FLAGS_device, "cpu") << "This binary was built without CUDA support"; +#endif +} +} // namespace + +int main(int argc, char **argv) { + gflags::ParseCommandLineFlags(&argc, &argv, true); + google::InitGoogleLogging(argv[0]); + ValidateFlags(); + + const auto process_started = Clock::now(); + fs::create_directories(FLAGS_output_dir); + const fs::path output_dir = FLAGS_output_dir; + const fs::path latest_path = output_dir / "latest.ckpt"; + const fs::path best_path = output_dir / "best.ckpt"; + const fs::path summary_path = output_dir / "summary.json"; + const fs::path steps_path = output_dir / "steps.csv"; + const fs::path epochs_path = output_dir / "epochs.csv"; + + Device device(DeviceType::kCPU, 0); + if (FLAGS_device == "cuda") { +#ifdef USE_CUDA + CHECK_EQ(cudaSetDevice(0), cudaSuccess); + device = Device(DeviceType::kCUDA, 0); +#endif + } + + auto model = GPT2::FromLLMC(FLAGS_model_path); + model->To(device); + model->TieWeights(); + CHECK_GE(model->config().block_size, static_cast(FLAGS_sequence_length)); + ModelCatalog catalog = BuildModelCatalog(*model); + Adam optimizer(catalog.unique_tensors, static_cast(FLAGS_learning_rate), static_cast(FLAGS_beta1), + static_cast(FLAGS_beta2), static_cast(FLAGS_epsilon)); + CrossEntropyLoss loss_function; + loss_function.To(device); + auto train_dataset = std::make_shared(FLAGS_train_path, FLAGS_sequence_length); + auto val_dataset = std::make_shared(FLAGS_val_path, FLAGS_sequence_length); + const DatasetCoverage train_coverage = ReadDatasetCoverage(FLAGS_train_path, train_dataset->Size()); + const DatasetCoverage val_coverage = ReadDatasetCoverage(FLAGS_val_path, val_dataset->Size()); + DataLoader train_loader(train_dataset, FLAGS_batch_size); + DataLoader val_loader(val_dataset, FLAGS_batch_size); + Tokenizer tokenizer(FLAGS_tokenizer_path); + const ExperimentContract experiment_contract = BuildExperimentContract(); + std::mt19937_64 rng(FLAGS_seed); + Progress progress; + const bool resumed = FLAGS_resume && fs::exists(latest_path); + if (resumed) { + progress = LoadCheckpoint(latest_path, *model, catalog, &optimizer, &rng, experiment_contract); + CHECK(fs::exists(output_dir / "baseline.txt")) << "Baseline generation is missing for resumed experiment"; + ReconcileMetricsCsv(steps_path, kStepsHeader, progress.global_step, true, true); + ReconcileMetricsCsv(epochs_path, kEpochsHeader, progress.epoch, false, false); + } else { + CHECK(!fs::exists(latest_path)) << "Existing checkpoint requires --resume=true or a new output_dir"; + CHECK(!fs::exists(steps_path) && !fs::exists(epochs_path)) + << "Existing metrics without a checkpoint require a new output_dir"; + AtomicWriteText(output_dir / "baseline.txt", GenerateFixedPrompt(tokenizer, *model, catalog, device)); + } + + ResetPeakCudaBytes(); + double last_checkpoint_seconds = 0.0; + if (!resumed) { + last_checkpoint_seconds + = SaveCheckpoint(latest_path, *model, catalog, optimizer, progress, rng, experiment_contract); + } + + const auto elapsed_seconds = [&]() { return std::chrono::duration(Clock::now() - process_started).count(); }; + const auto window_exhausted = [&]() { + return elapsed_seconds() + FLAGS_safety_margin_seconds + last_checkpoint_seconds >= FLAGS_max_runtime_seconds; + }; + const auto save_latest = [&]() { + progress.peak_cuda_bytes = std::max(progress.peak_cuda_bytes, PeakCudaBytes()); + last_checkpoint_seconds + = SaveCheckpoint(latest_path, *model, catalog, optimizer, progress, rng, experiment_contract); + WriteSummary(summary_path, progress, model->config(), train_coverage, val_coverage, resumed, elapsed_seconds(), + "running"); + }; + + while (progress.phase != Phase::kComplete) { + if (progress.epoch >= FLAGS_max_epochs) { + progress.phase = Phase::kComplete; + save_latest(); + break; + } + if (window_exhausted()) { + save_latest(); + WriteSummary(summary_path, progress, model->config(), train_coverage, val_coverage, resumed, + elapsed_seconds(), "paused_runtime"); + LOG(INFO) << "Runtime window exhausted safely; resume from " << latest_path; + return 0; + } + + if (progress.phase == Phase::kTrain) { + const uint64_t batches = BatchCount(*train_dataset); + CHECK_LE(progress.next_batch, batches); + auto iterator = IteratorAt(train_loader, progress.next_batch); + while (progress.next_batch < batches) { + auto [x_cpu, y_cpu] = *iterator; + ++iterator; + const uint64_t batch_index = progress.next_batch; + const uint64_t tokens = x_cpu->NumElements(); + const auto compute_started = Clock::now(); + auto x = std::make_shared(x_cpu->To(device)); + auto y = std::make_shared(y_cpu->To(device)); + optimizer.ZeroGrad(); + auto logits = model->Forward({x})[0]; + auto loss = loss_function.Forward({logits, y})[0]; + const float loss_value = ReadScalar(*loss); + CHECK(std::isfinite(loss_value)) << "Non-finite training loss at global step " << progress.global_step; + loss->Backward(); + optimizer.Step(); +#ifdef USE_CUDA + if (device.Type() == DeviceType::kCUDA) { + CHECK_EQ(cudaDeviceSynchronize(), cudaSuccess); + } +#endif + const double compute_seconds = std::chrono::duration(Clock::now() - compute_started).count(); + ++progress.global_step; + ++progress.next_batch; + progress.train_loss_sum += static_cast(loss_value) * tokens; + progress.train_tokens += tokens; + progress.train_compute_seconds += compute_seconds; + progress.total_train_tokens += tokens; + progress.total_train_compute_seconds += compute_seconds; + progress.peak_cuda_bytes = std::max(progress.peak_cuda_bytes, PeakCudaBytes()); + + std::ostringstream row; + row << progress.epoch << ',' << progress.global_step << ',' << batch_index << ',' << tokens << ',' + << std::setprecision(9) << loss_value << ',' << compute_seconds << ',' << tokens / compute_seconds << ',' + << progress.peak_cuda_bytes; + AppendCsv(steps_path, kStepsHeader, row.str()); + + if (FLAGS_checkpoint_interval_steps > 0 + && progress.global_step % FLAGS_checkpoint_interval_steps == 0) { + save_latest(); + } + if (window_exhausted()) { + save_latest(); + WriteSummary(summary_path, progress, model->config(), train_coverage, val_coverage, resumed, + elapsed_seconds(), "paused_runtime"); + LOG(INFO) << "Runtime window exhausted safely during training"; + return 0; + } + } + progress.phase = Phase::kValidate; + progress.next_batch = 0; + save_latest(); + continue; + } + + CHECK(progress.phase == Phase::kValidate); + const uint64_t batches = BatchCount(*val_dataset); + CHECK_LE(progress.next_batch, batches); + auto iterator = IteratorAt(val_loader, progress.next_batch); + { + DisableParameterGradGuard no_grad(catalog); + while (progress.next_batch < batches) { + auto [x_cpu, y_cpu] = *iterator; + ++iterator; + auto x = std::make_shared(x_cpu->To(device)); + auto y = std::make_shared(y_cpu->To(device)); + auto logits = model->Forward({x})[0]; + auto loss = loss_function.Forward({logits, y})[0]; + const float loss_value = ReadScalar(*loss); + CHECK(std::isfinite(loss_value)) + << "Non-finite validation loss at epoch " << progress.epoch << ", batch " << progress.next_batch; + const uint64_t tokens = x_cpu->NumElements(); + progress.val_loss_sum += static_cast(loss_value) * tokens; + progress.val_tokens += tokens; + ++progress.next_batch; + progress.peak_cuda_bytes = std::max(progress.peak_cuda_bytes, PeakCudaBytes()); + if (window_exhausted()) { + save_latest(); + WriteSummary(summary_path, progress, model->config(), train_coverage, val_coverage, resumed, + elapsed_seconds(), "paused_runtime"); + LOG(INFO) << "Runtime window exhausted safely during validation"; + return 0; + } + } + } + + CHECK_GT(progress.train_tokens, 0); + CHECK_GT(progress.val_tokens, 0); + const double train_mean = progress.train_loss_sum / progress.train_tokens; + const double val_mean = progress.val_loss_sum / progress.val_tokens; + CHECK(std::isfinite(train_mean)) << "Non-finite epoch training loss"; + CHECK(std::isfinite(val_mean)) << "Non-finite epoch validation loss"; + const bool perplexity_overflow = val_mean > std::log(std::numeric_limits::max()); + const double perplexity + = perplexity_overflow ? std::numeric_limits::infinity() : std::exp(val_mean); + const double throughput = progress.train_tokens / progress.train_compute_seconds; + const bool improved = val_mean + FLAGS_min_delta < progress.best_val_loss; + if (improved) { + progress.best_val_loss = val_mean; + progress.epochs_without_improvement = 0; + } else { + ++progress.epochs_without_improvement; + } + + std::ostringstream epoch_row; + epoch_row << progress.epoch << ',' << progress.global_step << ',' << progress.train_tokens << ',' + << progress.val_tokens << ',' << std::setprecision(12) << train_mean << ',' << val_mean << ',' + << perplexity << ',' << (perplexity_overflow ? 1 : 0) << ',' << throughput << ',' + << progress.peak_cuda_bytes << ',' << (improved ? 1 : 0); + AppendCsv(epochs_path, kEpochsHeader, epoch_row.str()); + + progress.final_train_loss = train_mean; + progress.final_val_loss = val_mean; + ++progress.epoch; + progress.phase = Phase::kTrain; + progress.next_batch = 0; + progress.train_loss_sum = 0.0; + progress.train_tokens = 0; + progress.train_compute_seconds = 0.0; + progress.val_loss_sum = 0.0; + progress.val_tokens = 0; + + const bool early_stop = FLAGS_early_stopping_patience > 0 + && progress.epochs_without_improvement >= FLAGS_early_stopping_patience; + if (early_stop || progress.epoch >= FLAGS_max_epochs) { + progress.phase = Phase::kComplete; + } + save_latest(); + if (improved) { + AtomicHardLink(latest_path, best_path); + AtomicWriteText(output_dir / "best.txt", GenerateFixedPrompt(tokenizer, *model, catalog, device)); + } + } + + progress.phase = Phase::kComplete; + AtomicWriteText(output_dir / "final.txt", GenerateFixedPrompt(tokenizer, *model, catalog, device)); + AtomicHardLink(latest_path, output_dir / "final.ckpt"); + WriteSummary(summary_path, progress, model->config(), train_coverage, val_coverage, resumed, elapsed_seconds(), + "complete"); + LOG(INFO) << "Experiment complete; summary: " << summary_path; + return 0; +} diff --git a/infini_train/include/dispatcher.h b/infini_train/include/dispatcher.h index 5b91d85..93bccd3 100644 --- a/infini_train/include/dispatcher.h +++ b/infini_train/include/dispatcher.h @@ -1,9 +1,16 @@ #pragma once +#include +#include #include #include +#include +#include +#include +#include #include #include +#include #include "glog/logging.h" @@ -12,20 +19,121 @@ namespace infini_train { class KernelFunction { public: - template explicit KernelFunction(FuncT &&func) : func_ptr_(reinterpret_cast(func)) {} + template explicit KernelFunction(FuncT &&func) { + using DecayedFuncT = std::decay_t; + static_assert(std::is_pointer_v && std::is_function_v>, + "KernelFunction only supports function pointers"); + invoker_ = std::make_shared>(std::forward(func)); + } + + template RetT Call(ArgsT &&...args) const { + static_assert(!std::is_reference_v, "KernelFunction does not support reference return types"); - template RetT Call(ArgsT... args) const { - // =================================== 作业 =================================== - // TODO:实现通用kernel调用接口 - // 功能描述:将存储的函数指针转换为指定类型并调用 - // =================================== 作业 =================================== + std::array erased_args{MakeErasedArgument(args)...}; + CHECK(invoker_ != nullptr); + CHECK(invoker_->return_type == std::type_index(typeid(RetT))) << "Kernel return type mismatch"; + CHECK_EQ(invoker_->argument_types.size(), erased_args.size()) << "Kernel argument count mismatch"; + for (size_t idx = 0; idx < erased_args.size(); ++idx) { + CHECK(invoker_->argument_types[idx] == erased_args[idx].type) << "Kernel argument type mismatch at " << idx; + } - using FuncT = RetT (*)(ArgsT...); - // TODO: 实现函数调用逻辑 + if constexpr (std::is_void_v) { + invoker_->Invoke(nullptr, erased_args); + } else { + std::optional result; + invoker_->Invoke(&result, erased_args); + CHECK(result.has_value()); + return std::move(*result); + } } private: - void *func_ptr_ = nullptr; + struct ErasedArgument { + const void *value = nullptr; + std::type_index type = typeid(void); + bool is_lvalue = false; + bool is_const = false; + }; + + struct Invoker { + Invoker(std::type_index return_type, std::vector argument_types) + : return_type(return_type), argument_types(std::move(argument_types)) {} + virtual ~Invoker() = default; + + virtual void Invoke(void *result, std::span args) const = 0; + + const std::type_index return_type; + const std::vector argument_types; + }; + + template class TypedInvoker; + + template class TypedInvoker final : public Invoker { + public: + explicit TypedInvoker(RetT (*func)(ParamsT...)) + : Invoker(typeid(RetT), {std::type_index(typeid(std::remove_cvref_t))...}), func_(func) {} + + void Invoke(void *result, std::span args) const override { + CHECK_EQ(args.size(), sizeof...(ParamsT)); + InvokeImpl(result, args, std::index_sequence_for{}); + } + + private: + template static decltype(auto) Unpack(ErasedArgument &arg) { + using BareT = std::remove_cvref_t; + using ReferredT = std::remove_reference_t; + + if constexpr (std::is_lvalue_reference_v) { + if constexpr (std::is_const_v) { + return *static_cast(arg.value); + } else { + CHECK(arg.is_lvalue) << "Kernel argument must be an lvalue"; + CHECK(!arg.is_const) << "Kernel argument must be mutable"; + return *static_cast(const_cast(arg.value)); + } + } else if constexpr (std::is_rvalue_reference_v) { + CHECK(!arg.is_lvalue) << "Kernel argument must be an rvalue"; + if constexpr (std::is_const_v) { + return std::move(*static_cast(arg.value)); + } else { + CHECK(!arg.is_const) << "Kernel argument must be mutable"; + return std::move(*static_cast(const_cast(arg.value))); + } + } else { + static_assert(std::is_copy_constructible_v || std::is_move_constructible_v, + "By-value kernel arguments must be copyable or movable"); + if constexpr (std::is_copy_constructible_v) { + return arg.is_lvalue || arg.is_const + ? BareT(*static_cast(arg.value)) + : BareT(std::move(*static_cast(const_cast(arg.value)))); + } else { + CHECK(!arg.is_lvalue && !arg.is_const) << "Move-only kernel argument must be a mutable rvalue"; + return BareT(std::move(*static_cast(const_cast(arg.value)))); + } + } + } + + template + void InvokeImpl(void *result, std::span args, std::index_sequence) const { + if constexpr (std::is_void_v) { + std::invoke(func_, Unpack(args[IndicesT])...); + } else { + auto &typed_result = *static_cast *>(result); + typed_result.emplace(std::invoke(func_, Unpack(args[IndicesT])...)); + } + } + + RetT (*func_)(ParamsT...); + }; + + template static ErasedArgument MakeErasedArgument(std::remove_reference_t &arg) { + return ErasedArgument{.value = std::addressof(arg), + .type = std::type_index(typeid(std::remove_cvref_t)), + .is_lvalue = std::is_lvalue_reference_v, + .is_const = std::is_const_v>}; + } + + std::shared_ptr invoker_; }; class Dispatcher { @@ -44,10 +152,9 @@ class Dispatcher { } template void Register(const KeyT &key, FuncT &&kernel) { - // =================================== 作业 =================================== - // TODO:实现kernel注册机制 - // 功能描述:将kernel函数与设备类型、名称绑定 - // =================================== 作业 =================================== + CHECK(!key_to_kernel_map_.contains(key)) + << "Kernel already registered: " << key.second << " on device: " << static_cast(key.first); + key_to_kernel_map_.emplace(key, KernelFunction(std::forward(kernel))); } private: @@ -55,8 +162,11 @@ class Dispatcher { }; } // namespace infini_train -#define REGISTER_KERNEL(device, kernel_name, kernel_func) \ - // =================================== 作业 =================================== - // TODO:实现自动注册宏 - // 功能描述:在全局静态区注册kernel,避免显式初始化代码 - // =================================== 作业 =================================== +#define INFINI_TRAIN_CONCAT_IMPL(lhs, rhs) lhs##rhs +#define INFINI_TRAIN_CONCAT(lhs, rhs) INFINI_TRAIN_CONCAT_IMPL(lhs, rhs) + +#define REGISTER_KERNEL(device, kernel_name, kernel_func) \ + [[maybe_unused]] static const bool INFINI_TRAIN_CONCAT(infini_train_kernel_registered_, __COUNTER__) = []() { \ + ::infini_train::Dispatcher::Instance().Register({device, #kernel_name}, kernel_func); \ + return true; \ + }(); diff --git a/infini_train/include/optimizer.h b/infini_train/include/optimizer.h index 241aeb9..9368641 100644 --- a/infini_train/include/optimizer.h +++ b/infini_train/include/optimizer.h @@ -36,6 +36,16 @@ class Adam : public Optimizer { void Step() override; + int64_t StepCount() const { return t_; } + float LearningRate() const { return learning_rate_; } + float Beta1() const { return beta1_; } + float Beta2() const { return beta2_; } + float Epsilon() const { return eps_; } + const std::vector> &FirstMoments() const { return m_; } + const std::vector> &SecondMoments() const { return v_; } + void LoadState(int64_t step, const std::vector> &first_moments, + const std::vector> &second_moments); + private: int64_t t_; const float learning_rate_; diff --git a/infini_train/src/autograd/elementwise.cc b/infini_train/src/autograd/elementwise.cc index 5a790a5..3433e03 100644 --- a/infini_train/src/autograd/elementwise.cc +++ b/infini_train/src/autograd/elementwise.cc @@ -6,21 +6,21 @@ namespace infini_train::autograd { std::vector> Neg::Forward(const std::vector> &input_tensors) { - // =================================== 作业 =================================== - // TODO:通过Dispatcher获取设备专属kernel,对输入张量进行取反操作 - // NOTES: 依赖test_dispatcher,Neg kernel实现已给出 - // =================================== 作业 =================================== + CHECK_EQ(input_tensors.size(), 1); + const auto &input = input_tensors[0]; - return std::vector>(); + auto device = input->GetDevice().Type(); + auto kernel = Dispatcher::Instance().GetKernel({device, "NegForward"}); + return {kernel.Call>(input)}; } std::vector> Neg::Backward(const std::vector> &grad_outputs) { - // =================================== 作业 =================================== - // TODO:通过Dispatcher获取设备专属的反向传播kernel,计算梯度 - // NOTES: 依赖test_dispatcher,Neg的kernel实现已给出 - // =================================== 作业 =================================== + CHECK_EQ(grad_outputs.size(), 1); + const auto &grad_output = grad_outputs[0]; - return std::vector>(); + auto device = grad_output->GetDevice().Type(); + auto kernel = Dispatcher::Instance().GetKernel({device, "NegBackward"}); + return {kernel.Call>(grad_output)}; } std::vector> Reciprocal::Forward(const std::vector> &input_tensors) { diff --git a/infini_train/src/kernels/cpu/accumulate_grad.cc b/infini_train/src/kernels/cpu/accumulate_grad.cc index 55637cd..f10bbf5 100644 --- a/infini_train/src/kernels/cpu/accumulate_grad.cc +++ b/infini_train/src/kernels/cpu/accumulate_grad.cc @@ -1,3 +1,4 @@ +#include #include #include @@ -14,10 +15,40 @@ void AccumulateGrad(const std::shared_ptr &gradient, float rate, const s void AdamAccumulateGrad(const std::shared_ptr &grad, const std::shared_ptr ¶m, const std::shared_ptr &m, const std::shared_ptr &v, float learning_rate, float beta1, float beta2, float eps, int64_t t) { - // =================================== 作业 =================================== - // TODO:实现Adam优化器的梯度累积和参数更新 - // REF: - // =================================== 作业 =================================== + CHECK(grad); + CHECK(param); + CHECK(m); + CHECK(v); + CHECK(grad->Dims() == param->Dims()); + CHECK(m->Dims() == param->Dims()); + CHECK(v->Dims() == param->Dims()); + CHECK(grad->Dtype() == DataType::kFLOAT32); + CHECK(param->Dtype() == DataType::kFLOAT32); + CHECK(m->Dtype() == DataType::kFLOAT32); + CHECK(v->Dtype() == DataType::kFLOAT32); + CHECK(param->GetDevice().IsCPU()); + CHECK(grad->GetDevice() == param->GetDevice()); + CHECK(m->GetDevice() == param->GetDevice()); + CHECK(v->GetDevice() == param->GetDevice()); + CHECK_GT(t, 0); + + const float bias_correction1 = 1.0f - std::pow(beta1, t); + const float bias_correction2 = 1.0f - std::pow(beta2, t); + + const auto *grad_ptr = static_cast(grad->DataPtr()); + auto *param_ptr = static_cast(param->DataPtr()); + auto *m_ptr = static_cast(m->DataPtr()); + auto *v_ptr = static_cast(v->DataPtr()); + + for (size_t idx = 0; idx < grad->NumElements(); ++idx) { + const float gradient = grad_ptr[idx]; + m_ptr[idx] = beta1 * m_ptr[idx] + (1.0f - beta1) * gradient; + v_ptr[idx] = beta2 * v_ptr[idx] + (1.0f - beta2) * gradient * gradient; + + const float m_hat = m_ptr[idx] / bias_correction1; + const float v_hat = v_ptr[idx] / bias_correction2; + param_ptr[idx] -= learning_rate * m_hat / (std::sqrt(v_hat) + eps); + } } } // namespace infini_train::kernels::cpu diff --git a/infini_train/src/kernels/cpu/linear.cc b/infini_train/src/kernels/cpu/linear.cc index 140e756..aa99cb1 100644 --- a/infini_train/src/kernels/cpu/linear.cc +++ b/infini_train/src/kernels/cpu/linear.cc @@ -3,6 +3,7 @@ #include #include #include +#include #include "glog/logging.h" @@ -10,26 +11,100 @@ #include "infini_train/include/tensor.h" namespace infini_train::kernels::cpu { +namespace { +using RowMajorMatrix = Eigen::Matrix; + +struct MatmulShape { + int64_t batch_count; + int64_t m; + int64_t k; + int64_t n; + std::vector output_dims; +}; + +MatmulShape ValidateMatmulInputs(const std::shared_ptr &input, const std::shared_ptr &other) { + CHECK(input); + CHECK(other); + CHECK(input->GetDevice().IsCPU()); + CHECK(input->GetDevice() == other->GetDevice()); + CHECK(input->Dtype() == DataType::kFLOAT32); + CHECK(other->Dtype() == DataType::kFLOAT32); + + const auto &input_dims = input->Dims(); + const auto &other_dims = other->Dims(); + CHECK_GE(input_dims.size(), 2); + CHECK_EQ(input_dims.size(), other_dims.size()); + for (size_t i = 0; i + 2 < input_dims.size(); ++i) { CHECK_EQ(input_dims[i], other_dims[i]); } + + const int64_t m = input_dims[input_dims.size() - 2]; + const int64_t k = input_dims.back(); + const int64_t n = other_dims.back(); + CHECK_EQ(k, other_dims[other_dims.size() - 2]); + + const int64_t batch_count + = std::accumulate(input_dims.begin(), input_dims.end() - 2, int64_t{1}, std::multiplies{}); + auto output_dims = input_dims; + output_dims.back() = n; + return {batch_count, m, k, n, std::move(output_dims)}; +} + +void ValidateGradOutput(const std::shared_ptr &grad_output, const MatmulShape &shape, + const Device &device) { + CHECK(grad_output); + CHECK(grad_output->GetDevice() == device); + CHECK(grad_output->Dtype() == DataType::kFLOAT32); + CHECK(grad_output->Dims() == shape.output_dims); +} +} // namespace + std::shared_ptr MatmulForward(const std::shared_ptr &input, const std::shared_ptr &other) { // =================================== 作业 =================================== - // TODO:实现CPU上的矩阵乘法前向计算 - // REF: + // 逐batch执行row-major矩阵乘法 // =================================== 作业 =================================== - auto output = std::make_shared(); - return {output}; + const auto shape = ValidateMatmulInputs(input, other); + auto output = std::make_shared(shape.output_dims, DataType::kFLOAT32, input->GetDevice()); + + const auto *input_data = static_cast(input->DataPtr()); + const auto *other_data = static_cast(other->DataPtr()); + auto *output_data = static_cast(output->DataPtr()); + for (int64_t batch = 0; batch < shape.batch_count; ++batch) { + Eigen::Map input_matrix(input_data + batch * shape.m * shape.k, shape.m, shape.k); + Eigen::Map other_matrix(other_data + batch * shape.k * shape.n, shape.k, shape.n); + Eigen::Map output_matrix(output_data + batch * shape.m * shape.n, shape.m, shape.n); + output_matrix.noalias() = input_matrix * other_matrix; + } + return output; } std::tuple, std::shared_ptr> MatmulBackward(const std::shared_ptr &input, const std::shared_ptr &other, const std::shared_ptr &grad_output) { // =================================== 作业 =================================== - // TODO:实现CPU上的矩阵乘法反向传播 - // REF: + // 逐batch计算grad_input和grad_other // =================================== 作业 =================================== - auto grad_input = std::make_shared(); - auto grad_other = std::make_shared(); + const auto shape = ValidateMatmulInputs(input, other); + ValidateGradOutput(grad_output, shape, input->GetDevice()); + + auto grad_input = std::make_shared(input->Dims(), DataType::kFLOAT32, input->GetDevice()); + auto grad_other = std::make_shared(other->Dims(), DataType::kFLOAT32, other->GetDevice()); + + const auto *input_data = static_cast(input->DataPtr()); + const auto *other_data = static_cast(other->DataPtr()); + const auto *grad_output_data = static_cast(grad_output->DataPtr()); + auto *grad_input_data = static_cast(grad_input->DataPtr()); + auto *grad_other_data = static_cast(grad_other->DataPtr()); + for (int64_t batch = 0; batch < shape.batch_count; ++batch) { + Eigen::Map input_matrix(input_data + batch * shape.m * shape.k, shape.m, shape.k); + Eigen::Map other_matrix(other_data + batch * shape.k * shape.n, shape.k, shape.n); + Eigen::Map grad_output_matrix(grad_output_data + batch * shape.m * shape.n, shape.m, + shape.n); + Eigen::Map grad_input_matrix(grad_input_data + batch * shape.m * shape.k, shape.m, shape.k); + Eigen::Map grad_other_matrix(grad_other_data + batch * shape.k * shape.n, shape.k, shape.n); + grad_input_matrix.noalias() = grad_output_matrix * other_matrix.transpose(); + grad_other_matrix.noalias() = input_matrix.transpose() * grad_output_matrix; + } return {grad_input, grad_other}; } diff --git a/infini_train/src/kernels/cuda/accumulate_grad.cu b/infini_train/src/kernels/cuda/accumulate_grad.cu index 5f977c3..7a40c02 100644 --- a/infini_train/src/kernels/cuda/accumulate_grad.cu +++ b/infini_train/src/kernels/cuda/accumulate_grad.cu @@ -1,3 +1,5 @@ +#include + #include "infini_train/include/dispatcher.h" #include "infini_train/include/tensor.h" @@ -22,13 +24,59 @@ void AccumulateGrad(const std::shared_ptr &gradient, float rate, const s AccumulateGradKernel<<>>(grad_ptr, rate, tensor_ptr, num_elements); } +__global__ void AdamAccumulateGradKernel(const float *grad_ptr, float *param_ptr, float *m_ptr, float *v_ptr, + float learning_rate, float beta1, float beta2, float eps, + float bias_correction1, float bias_correction2, size_t num_elements) { + const size_t idx = static_cast(blockIdx.x) * blockDim.x + threadIdx.x; + if (idx >= num_elements) { + return; + } + + const float gradient = grad_ptr[idx]; + const float first_moment = beta1 * m_ptr[idx] + (1.0f - beta1) * gradient; + const float second_moment = beta2 * v_ptr[idx] + (1.0f - beta2) * gradient * gradient; + m_ptr[idx] = first_moment; + v_ptr[idx] = second_moment; + + const float m_hat = first_moment / bias_correction1; + const float v_hat = second_moment / bias_correction2; + param_ptr[idx] -= learning_rate * m_hat / (sqrtf(v_hat) + eps); +} + void AdamAccumulateGrad(const std::shared_ptr &grad, const std::shared_ptr ¶m, const std::shared_ptr &m, const std::shared_ptr &v, float learning_rate, float beta1, float beta2, float eps, int64_t t) { - // =================================== 作业 =================================== - // TODO:实现Adam优化器的梯度累积和参数更新 - // REF: - // =================================== 作业 =================================== + CHECK(grad); + CHECK(param); + CHECK(m); + CHECK(v); + CHECK(grad->Dims() == param->Dims()); + CHECK(m->Dims() == param->Dims()); + CHECK(v->Dims() == param->Dims()); + CHECK(grad->Dtype() == DataType::kFLOAT32); + CHECK(param->Dtype() == DataType::kFLOAT32); + CHECK(m->Dtype() == DataType::kFLOAT32); + CHECK(v->Dtype() == DataType::kFLOAT32); + CHECK(param->GetDevice().IsCUDA()); + CHECK(grad->GetDevice() == param->GetDevice()); + CHECK(m->GetDevice() == param->GetDevice()); + CHECK(v->GetDevice() == param->GetDevice()); + CHECK_GT(t, 0); + + const size_t num_elements = grad->NumElements(); + if (num_elements == 0) { + return; + } + + const float bias_correction1 = 1.0f - std::pow(beta1, t); + const float bias_correction2 = 1.0f - std::pow(beta2, t); + constexpr int threads_per_block = 256; + const int num_blocks = (num_elements + threads_per_block - 1) / threads_per_block; + + AdamAccumulateGradKernel<<>>( + static_cast(grad->DataPtr()), static_cast(param->DataPtr()), + static_cast(m->DataPtr()), static_cast(v->DataPtr()), learning_rate, beta1, beta2, eps, + bias_correction1, bias_correction2, num_elements); } } // namespace infini_train::kernels::cuda diff --git a/infini_train/src/kernels/cuda/linear.cu b/infini_train/src/kernels/cuda/linear.cu index efaaaa6..ce75118 100644 --- a/infini_train/src/kernels/cuda/linear.cu +++ b/infini_train/src/kernels/cuda/linear.cu @@ -2,6 +2,11 @@ #include "glog/logging.h" #include +#include +#include +#include +#include + #include "infini_train/include/dispatcher.h" #include "infini_train/include/tensor.h" @@ -23,13 +28,77 @@ namespace infini_train::kernels::cuda { } \ } while (0) +namespace { +struct MatmulShape { + int64_t batch_count; + int64_t m; + int64_t k; + int64_t n; + std::vector output_dims; +}; + +MatmulShape ValidateMatmulInputs(const std::shared_ptr &input, const std::shared_ptr &other) { + CHECK(input); + CHECK(other); + CHECK(input->GetDevice().IsCUDA()); + CHECK(input->GetDevice() == other->GetDevice()); + CHECK(input->Dtype() == DataType::kFLOAT32); + CHECK(other->Dtype() == DataType::kFLOAT32); + + const auto &input_dims = input->Dims(); + const auto &other_dims = other->Dims(); + CHECK_GE(input_dims.size(), 2); + CHECK_EQ(input_dims.size(), other_dims.size()); + for (size_t i = 0; i + 2 < input_dims.size(); ++i) { CHECK_EQ(input_dims[i], other_dims[i]); } + + const int64_t m = input_dims[input_dims.size() - 2]; + const int64_t k = input_dims.back(); + const int64_t n = other_dims.back(); + CHECK_EQ(k, other_dims[other_dims.size() - 2]); + + const int64_t batch_count + = std::accumulate(input_dims.begin(), input_dims.end() - 2, int64_t{1}, std::multiplies{}); + auto output_dims = input_dims; + output_dims.back() = n; + return {batch_count, m, k, n, std::move(output_dims)}; +} + +void ValidateGradOutput(const std::shared_ptr &grad_output, const MatmulShape &shape, + const Device &device) { + CHECK(grad_output); + CHECK(grad_output->GetDevice() == device); + CHECK(grad_output->Dtype() == DataType::kFLOAT32); + CHECK(grad_output->Dims() == shape.output_dims); +} +} // namespace + std::shared_ptr MatmulForward(const std::shared_ptr &input, const std::shared_ptr &other) { // =================================== 作业 =================================== - // TODO:实现CUDA上的矩阵乘法前向计算 - // REF: + // 通过strided-batched GEMM执行row-major矩阵乘法 // =================================== 作业 =================================== - auto output = std::make_shared(); + const auto shape = ValidateMatmulInputs(input, other); + auto output = std::make_shared(shape.output_dims, DataType::kFLOAT32, input->GetDevice()); + if (shape.batch_count == 0 || shape.m == 0 || shape.n == 0 || shape.k == 0) { + if (output->NumElements() != 0) { + output->Fill(0.0f); + } + return output; + } + + const float alpha = 1.0f; + const float beta = 0.0f; + cublasHandle_t handle; + CUBLAS_CHECK(cublasCreate(&handle)); + + // Tensors are row-major. cuBLAS sees their storage as column-major transposes, + // so C^T[N, M] = B^T[N, K] * A^T[K, M]. + CUBLAS_CHECK(cublasSgemmStridedBatched( + handle, CUBLAS_OP_N, CUBLAS_OP_N, shape.n, shape.m, shape.k, &alpha, + static_cast(other->DataPtr()), shape.n, shape.k * shape.n, + static_cast(input->DataPtr()), shape.k, shape.m * shape.k, &beta, + static_cast(output->DataPtr()), shape.n, shape.m * shape.n, shape.batch_count)); + CUBLAS_CHECK(cublasDestroy(handle)); return output; } @@ -37,12 +106,44 @@ std::tuple, std::shared_ptr> MatmulBackward(const std::shared_ptr &input, const std::shared_ptr &other, const std::shared_ptr &grad_output) { // =================================== 作业 =================================== - // TODO:实现CUDA上的矩阵乘法反向传播 - // REF: + // 通过strided-batched GEMM计算grad_input和grad_other // =================================== 作业 =================================== - auto grad_input = std::make_shared(); - auto grad_other = std::make_shared(); + const auto shape = ValidateMatmulInputs(input, other); + ValidateGradOutput(grad_output, shape, input->GetDevice()); + + auto grad_input = std::make_shared(input->Dims(), DataType::kFLOAT32, input->GetDevice()); + auto grad_other = std::make_shared(other->Dims(), DataType::kFLOAT32, other->GetDevice()); + if (shape.batch_count == 0 || shape.m == 0 || shape.n == 0 || shape.k == 0) { + if (grad_input->NumElements() != 0) { + grad_input->Fill(0.0f); + } + if (grad_other->NumElements() != 0) { + grad_other->Fill(0.0f); + } + return {grad_input, grad_other}; + } + + const float alpha = 1.0f; + const float beta = 0.0f; + cublasHandle_t handle; + CUBLAS_CHECK(cublasCreate(&handle)); + + // dA^T[K, M] = B[K, N] * dC^T[N, M]. + CUBLAS_CHECK(cublasSgemmStridedBatched( + handle, CUBLAS_OP_T, CUBLAS_OP_N, shape.k, shape.m, shape.n, &alpha, + static_cast(other->DataPtr()), shape.n, shape.k * shape.n, + static_cast(grad_output->DataPtr()), shape.n, shape.m * shape.n, &beta, + static_cast(grad_input->DataPtr()), shape.k, shape.m * shape.k, shape.batch_count)); + + // dB^T[N, K] = dC^T[N, M] * A[M, K]. + CUBLAS_CHECK(cublasSgemmStridedBatched( + handle, CUBLAS_OP_N, CUBLAS_OP_T, shape.n, shape.k, shape.m, &alpha, + static_cast(grad_output->DataPtr()), shape.n, shape.m * shape.n, + static_cast(input->DataPtr()), shape.k, shape.m * shape.k, &beta, + static_cast(grad_other->DataPtr()), shape.n, shape.k * shape.n, shape.batch_count)); + + CUBLAS_CHECK(cublasDestroy(handle)); return {grad_input, grad_other}; } diff --git a/infini_train/src/optimizer.cc b/infini_train/src/optimizer.cc index 9ff2b5c..e61b54d 100644 --- a/infini_train/src/optimizer.cc +++ b/infini_train/src/optimizer.cc @@ -51,5 +51,32 @@ void Adam::Step() { kernel.Call(grad, param, m, v, learning_rate_, beta1_, beta2_, eps_, t_); } } + +void Adam::LoadState(int64_t step, const std::vector> &first_moments, + const std::vector> &second_moments) { + CHECK_GE(step, 0); + CHECK_EQ(first_moments.size(), params_.size()); + CHECK_EQ(second_moments.size(), params_.size()); + + std::vector> loaded_m; + std::vector> loaded_v; + loaded_m.reserve(params_.size()); + loaded_v.reserve(params_.size()); + for (size_t idx = 0; idx < params_.size(); ++idx) { + const auto ¶m = params_[idx]; + const auto &first = first_moments[idx]; + const auto &second = second_moments[idx]; + CHECK(first && second); + CHECK(first->Dims() == param->Dims()); + CHECK(second->Dims() == param->Dims()); + CHECK_EQ(static_cast(first->Dtype()), static_cast(param->Dtype())); + CHECK_EQ(static_cast(second->Dtype()), static_cast(param->Dtype())); + loaded_m.push_back(std::make_shared(first->To(param->GetDevice()))); + loaded_v.push_back(std::make_shared(second->To(param->GetDevice()))); + } + t_ = step; + m_ = std::move(loaded_m); + v_ = std::move(loaded_v); +} } // namespace optimizers } // namespace infini_train diff --git a/infini_train/src/tensor.cc b/infini_train/src/tensor.cc index 8f8c744..2e9946a 100644 --- a/infini_train/src/tensor.cc +++ b/infini_train/src/tensor.cc @@ -102,7 +102,8 @@ Tensor::Tensor(const std::vector &dims, DataType dtype, Device device) } Tensor::Tensor(const Tensor &tensor, size_t offset, const std::vector &dims) - : buffer_(tensor.buffer_), offset_(offset), dims_(dims), + // A sub-view offset is relative to the parent view, not to the underlying buffer. + : buffer_(tensor.buffer_), offset_(tensor.offset_ + offset), dims_(dims), num_elements_(std::accumulate(dims.begin(), dims.end(), 1, std::multiplies())), dtype_(tensor.dtype_) { CHECK_LE(offset_ + kDataTypeToSize.at(dtype_) * num_elements_, buffer_->Size()); } @@ -175,9 +176,9 @@ Eigen::Map> Tensor::Eig Tensor Tensor::To(Device device) { if (device == buffer_->GetDevice()) { - auto new_tensor = Tensor(*this, offset_, dims_); + auto new_tensor = Tensor(*this, 0, dims_); if (grad_) { - new_tensor.grad_ = std::make_unique(*grad_.get(), grad_->offset_, grad_->dims_); + new_tensor.grad_ = std::make_unique(*grad_.get(), 0, grad_->dims_); } return new_tensor; } @@ -277,13 +278,33 @@ std::shared_ptr Tensor::Contiguous() { } std::shared_ptr Tensor::Flatten(int64_t start, int64_t end) { - // return Contiguous()->View(new_shape); - // =================================== 作业 =================================== - // TODO:实现张量扁平化操作,将指定维度范围[start, end]内的所有维度合并为一个维度 - // HINT: - // =================================== 作业 =================================== + const int64_t num_dims = dims_.size(); + if (num_dims == 0) { + CHECK(start == 0 || start == -1); + CHECK(end == 0 || end == -1); + return Contiguous()->View({1}); + } + + if (start < 0) { + start += num_dims; + } + if (end < 0) { + end += num_dims; + } + CHECK_GE(start, 0); + CHECK_LT(start, num_dims); + CHECK_GE(end, 0); + CHECK_LT(end, num_dims); + CHECK_LE(start, end); + + std::vector new_shape; + new_shape.reserve(num_dims - (end - start)); + new_shape.insert(new_shape.end(), dims_.begin(), dims_.begin() + start); + new_shape.push_back( + std::accumulate(dims_.begin() + start, dims_.begin() + end + 1, int64_t{1}, std::multiplies())); + new_shape.insert(new_shape.end(), dims_.begin() + end + 1, dims_.end()); - return std::make_shared(); + return Contiguous()->View(new_shape); } std::shared_ptr Tensor::Squeeze(int64_t dim) { @@ -354,10 +375,30 @@ std::shared_ptr Tensor::RequiresGrad() { } void Tensor::Backward(std::shared_ptr gradient, bool retain_graph, bool create_graph) const { - // =================================== 作业 =================================== - // TODO:实现自动微分反向传播 - // 功能描述:1. 计算当前张量对叶子节点的梯度 2. 支持多输出场景的梯度累加 - // =================================== 作业 =================================== + CHECK(requires_grad_) << "Cannot run backward on a tensor that does not require gradients"; + CHECK(!retain_graph) << "retain_graph is not supported"; + CHECK(!create_graph) << "create_graph is not supported"; + + if (!gradient) { + CHECK_EQ(NumElements(), 1) << "An explicit gradient is required for non-scalar tensors"; + gradient = std::make_shared(dims_, dtype_, GetDevice()); + gradient->Fill(1.0f); + } else { + CHECK(gradient->Dims() == dims_) << "Gradient shape must match the output tensor shape"; + CHECK_EQ(static_cast(gradient->Dtype()), static_cast(dtype_)); + CHECK(gradient->GetDevice() == GetDevice()) << "Gradient and output must be on the same device"; + } + + if (grad_fn_) { + CHECK_GE(output_idx_, 0); + grad_fn_->BackwardPartial(gradient, output_idx_); + return; + } + + CHECK(is_leaf_); + CHECK(grad_ != nullptr); + auto kernel = Dispatcher::Instance().GetKernel({GetDevice().Type(), "AccumulateGrad"}); + kernel.Call(gradient, 1.0f, grad_); } void Tensor::ZeroGrad() { diff --git a/scripts/plot_full_experiment.py b/scripts/plot_full_experiment.py new file mode 100644 index 0000000..ce97bdc --- /dev/null +++ b/scripts/plot_full_experiment.py @@ -0,0 +1,203 @@ +#!/usr/bin/env python3 + +import argparse +import csv +import html +from pathlib import Path + + +def read_rows(path: Path): + with path.open(newline="") as source: + return list(csv.DictReader(source)) + + +def moving_average(values, window): + prefix = [0.0] + for value in values: + prefix.append(prefix[-1] + value) + return [ + (prefix[index + 1] - prefix[max(0, index + 1 - window)]) + / min(window, index + 1) + for index in range(len(values)) + ] + + +def scale(value, lower, upper, start, end): + if upper == lower: + return (start + end) / 2 + return start + (value - lower) * (end - start) / (upper - lower) + + +def panel( + svg, + x, + y, + width, + height, + title, + x_label, + y_label, + x_values, + series, + x_ticks, + y_ticks, +): + left, right, top, bottom = 58, 18, 34, 46 + plot_x, plot_y = x + left, y + top + plot_w, plot_h = width - left - right, height - top - bottom + all_y = [value for _, values, _ in series for value in values] + x_min, x_max = min(x_values), max(x_values) + y_min, y_max = min(all_y), max(all_y) + y_padding = max(0.05, (y_max - y_min) * 0.12) + y_min, y_max = y_min - y_padding, y_max + y_padding + + svg.append( + f'{html.escape(title)}' + ) + svg.append( + f'' + ) + for tick in y_ticks: + py = scale(tick, y_min, y_max, plot_y + plot_h, plot_y) + svg.append( + f'' + ) + svg.append( + f'{tick:g}' + ) + for tick in x_ticks: + px = scale(tick, x_min, x_max, plot_x, plot_x + plot_w) + svg.append( + f'{tick:g}' + ) + svg.append( + f'{html.escape(x_label)}' + ) + svg.append( + f'{html.escape(y_label)}' + ) + + for label, values, color in series: + points = [] + for xv, yv in zip(x_values, values): + px = scale(xv, x_min, x_max, plot_x, plot_x + plot_w) + py = scale(yv, y_min, y_max, plot_y + plot_h, plot_y) + points.append(f"{px:.2f},{py:.2f}") + svg.append( + f'' + ) + if len(values) <= 10: + for point in points: + px, py = point.split(",") + svg.append(f'') + legend_x = ( + plot_x + 8 + 100 * sum(1 for existing, _, _ in series if existing < label) + ) + svg.append( + f'' + ) + svg.append( + f'{html.escape(label)}' + ) + + +def main(): + parser = argparse.ArgumentParser( + description="Plot TinyInfiniTrain full-data experiment metrics" + ) + parser.add_argument("experiment_dir", type=Path) + parser.add_argument("output", type=Path) + args = parser.parse_args() + + steps = read_rows(args.experiment_dir / "steps.csv") + epochs = read_rows(args.experiment_dir / "epochs.csv") + global_steps = [int(row["global_step"]) for row in steps] + step_losses = [float(row["loss"]) for row in steps] + smoothed_losses = moving_average(step_losses, 200) + sampled_indices = list(range(0, len(global_steps), 10)) + if sampled_indices[-1] != len(global_steps) - 1: + sampled_indices.append(len(global_steps) - 1) + sampled_steps = [global_steps[index] for index in sampled_indices] + sampled_losses = [smoothed_losses[index] for index in sampled_indices] + completed_epochs = [int(row["epoch"]) + 1 for row in epochs] + train_losses = [float(row["train_mean_loss"]) for row in epochs] + validation_losses = [float(row["val_mean_loss"]) for row in epochs] + perplexities = [float(row["val_perplexity"]) for row in epochs] + + width, height = 1320, 410 + svg = [ + f'', + '', + '', + 'TinyInfiniTrain GPT-2 124M — A100 full-data run', + ] + panel( + svg, + 10, + 36, + 425, + 360, + "Step loss (200-step moving mean)", + "Global optimizer step", + "Cross-entropy loss", + sampled_steps, + [("Train", sampled_losses, "#2563eb")], + [1, 2500, 5000, 7500, 9540], + [1, 2, 3, 4], + ) + panel( + svg, + 447, + 36, + 425, + 360, + "Full-epoch mean loss", + "Completed epoch", + "Cross-entropy loss", + completed_epochs, + [ + ("Train", train_losses, "#2563eb"), + ("Validation", validation_losses, "#dc2626"), + ], + completed_epochs, + [1, 2, 3, 4, 5, 6], + ) + panel( + svg, + 884, + 36, + 425, + 360, + "Validation perplexity", + "Completed epoch", + "Perplexity", + completed_epochs, + [("PPL", perplexities, "#7c3aed")], + completed_epochs, + [50, 100, 150, 200, 250], + ) + best_x = scale( + completed_epochs[0], + min(completed_epochs), + max(completed_epochs), + 447 + 58, + 447 + 425 - 18, + ) + best_y = scale( + validation_losses[0], + min(train_losses + validation_losses) - 0.5, + max(train_losses + validation_losses) + 0.5, + 36 + 34 + 360 - 34 - 46, + 36 + 34, + ) + svg.append( + f'best val 3.925' + ) + svg.append("") + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_text("\n".join(svg) + "\n") + + +if __name__ == "__main__": + main()