diff --git a/LTA_openwebtext_dualt/PLACEHOLDER/train.py b/LTA_openwebtext_dualt/PLACEHOLDER/train.py new file mode 100644 index 0000000000000000000000000000000000000000..9cb74e89190f3cf435fdfd4ab85f38bb780314d8 --- /dev/null +++ b/LTA_openwebtext_dualt/PLACEHOLDER/train.py @@ -0,0 +1,2105 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +import inspect +import json +import math +import os +import random +import time +from contextlib import nullcontext +from pathlib import Path + +import torch +import torch.distributed as dist +import torch.nn.functional as F +from torch.nn.parallel import DistributedDataParallel +from torch.utils.data import DataLoader, DistributedSampler, RandomSampler, Sampler + +from flowtext_lab.bridges import make_dirichlet_bridge_batch, make_prob_bridge_batch + +try: + from flowtext_lab.bridges import make_gaussian_bridge_batch +except ImportError: # Optional legacy bridge; most current runs use dirichlet. + make_gaussian_bridge_batch = None +from flowtext_lab.data import ( + CachedWrappedTextSequenceDataset, + EosPadCollator, + FixedPadCollator, + RecordPadTruncateTextSequenceDataset, + ShuffledWrappedStreamingTextSequenceDataset, + StreamingTextSequenceDataset, + TextSequenceDataset, + WrappedStreamingTextSequenceDataset, +) +from flowtext_lab.decode import fill_blank_init, soft_residual_decode +from flowtext_lab.metrics import ( + masked_acc, + masked_ce, + masked_meanflow_l2, + masked_soft_ce, + masked_topk_acc, + summarize_batch, + summarize_t_bin_acc, +) +from flowtext_lab.model import EndpointPredictor +from flowtext_lab.text_detokenization import infer_detokenizer_name +from flowtext_lab.tokenization import BpeTextTokenizer + + +def parse_args() -> argparse.Namespace: + p = argparse.ArgumentParser() + p.add_argument("--data_path", required=True) + p.add_argument("--text_column", default=None) + p.add_argument("--txt_record_mode", choices=["auto", "line", "eot"], default="auto") + p.add_argument("--detokenizer", default="auto") + p.add_argument("--openwebtext_split", choices=["all", "train_minus_100k", "valid_last_100k"], default="all") + p.add_argument("--tokenizer_path", required=True) + p.add_argument("--save_dir", required=True) + p.add_argument("--max_records", type=int, default=0) + p.add_argument( + "--elf_conditional_hf", + action="store_true", + help="Load ELF-style seq2seq Arrow datasets with condition_input_ids/input_ids columns.", + ) + p.add_argument("--eval_data_path", default="") + p.add_argument("--dataset_cache_dir", default="") + p.add_argument("--max_input_len", type=int, default=64) + p.add_argument("--conditional_pad_token", choices=["pad", "eos"], default="eos") + p.add_argument("--label_drop_prob", type=float, default=0.0) + p.add_argument("--streaming", action="store_true") + p.add_argument( + "--record_pad_truncate", + action="store_true", + help=( + "ELF-style OWT input pipeline: one record -> one example, no global " + "stream packing, truncate to max_len and fixed-pad in the collator." + ), + ) + p.add_argument( + "--record_add_eos", + action="store_true", + help="Append tokenizer EOS/SEP to each record in --record_pad_truncate mode.", + ) + p.add_argument( + "--record_add_special_tokens", + action="store_true", + help="Let the tokenizer add model special tokens in --record_pad_truncate mode.", + ) + p.add_argument( + "--record_pad_token", + choices=["pad", "eos"], + default="pad", + help="Pad id for --record_pad_truncate. ELF-style uses tokenizer PAD when available.", + ) + p.add_argument( + "--record_shuffle_buffer", + type=int, + default=10000, + help="Bounded online shuffle buffer for --record_pad_truncate; 0 disables it.", + ) + p.add_argument("--wrap", action="store_true", help="Use wrapped packing: [BOS] + payload + [EOS].") + p.add_argument( + "--wrap_mode", + choices=["stream", "record"], + default="stream", + help="stream keeps the original fixed-width token stream; record packs whole records and only truncates overlength records.", + ) + p.add_argument("--wrap_record_buffer_size", type=int, default=200) + p.add_argument( + "--owt_cached_chunks", + action="store_true", + help="OWT-only FLM/Duo-style cached chunk pool with epoch-level sampler shuffle.", + ) + p.add_argument( + "--owt_chunk_cache_dir", + default="", + help="Cache directory for --owt_cached_chunks. Stores meta.json and chunks.i32.bin.", + ) + p.add_argument("--owt_chunk_cache_rebuild", action="store_true") + p.add_argument("--owt_chunk_cache_write_batch", type=int, default=4096) + p.add_argument( + "--owt_exact_repeat_per_chunk", + type=int, + default=0, + help=( + "Pilot-only cached OWT sampler: repeat each cached chunk exactly this " + "many times, shuffle once deterministically, then shard across ranks." + ), + ) + p.add_argument( + "--online_chunk_shuffle", + action="store_true", + help="Use an online bounded shuffle buffer over wrapped stream chunks.", + ) + p.add_argument("--online_chunk_shuffle_buffer", type=int, default=10000) + p.add_argument("--max_len", type=int, default=128) + p.add_argument("--stride", type=int, default=0) + p.add_argument("--batch_size", type=int, default=8) + p.add_argument("--num_workers", type=int, default=0) + p.add_argument("--dataloader_prefetch_factor", type=int, default=2) + p.add_argument("--blocking_data_transfer", action="store_true") + p.add_argument("--global_batch_size", type=int, default=0, help="If >0, overrides grad_accum with ceil(global_batch_size / batch_size).") + p.add_argument("--grad_accum", type=int, default=1) + p.add_argument("--total_steps", type=int, default=1000) + p.add_argument("--lr", type=float, default=6e-4) + p.add_argument("--weight_decay", type=float, default=0.1) + p.add_argument( + "--output_weight_decay", + type=float, + default=-1.0, + help="If >=0, use this AdamW weight decay only for the output projection weight.", + ) + p.add_argument("--adam_beta1", type=float, default=0.9) + p.add_argument("--adam_beta2", type=float, default=0.95) + p.add_argument("--adam_eps", type=float, default=1e-8) + p.add_argument("--optimizer", choices=["adamw", "muon"], default="adamw") + p.add_argument("--muon_momentum", type=float, default=0.95) + p.add_argument("--muon_ns_steps", type=int, default=5) + p.add_argument("--muon_update_scale", type=float, default=1.0) + p.add_argument("--ema_decay", type=float, default=0.0) + p.add_argument("--ema_start_step", type=int, default=0) + p.add_argument("--warmup_steps", type=int, default=2000) + p.add_argument("--lr_schedule", choices=["constant_warmup", "cosine"], default="cosine") + p.add_argument("--min_lr", type=float, default=6e-5) + p.add_argument( + "--adamw_param_groups", + choices=["nanogpt", "all_decay"], + default="nanogpt", + help="nanoGPT decays only 2D matmul/embedding tensors; all_decay applies weight decay to every parameter.", + ) + p.add_argument("--grad_clip", type=float, default=1.0) + p.add_argument("--seed", type=int, default=42) + p.add_argument("--d_model", type=int, default=384) + p.add_argument("--cond_dim", type=int, default=128) + p.add_argument("--n_layers", type=int, default=6) + p.add_argument("--n_heads", type=int, default=6) + p.add_argument("--dim_ff", type=int, default=1536) + p.add_argument("--dropout", type=float, default=0.0) + p.add_argument( + "--output_bias", + action=argparse.BooleanOptionalAction, + default=False, + help="Whether to include a vocabulary bias in the final output projection. Default false to avoid global-frequency basin amplification.", + ) + p.add_argument( + "--norm_type", + choices=["rmsnorm", "layernorm"], + default="rmsnorm", + help="Normalization used by DDiT blocks/final head. Default rmsnorm follows modern ELF/T5-style practice.", + ) + p.add_argument( + "--vocab_size_override", + type=int, + default=0, + help="Debug-only: train with a compact/remapped vocabulary of this size instead of tokenizer.vocab_size.", + ) + p.add_argument("--model_type", choices=["transformer", "ddit"], default="transformer") + p.add_argument("--state_format", choices=["logprob", "prob"], default="logprob") + p.add_argument("--bridge", choices=["prob", "dirichlet", "gaussian"], default="prob") + p.add_argument("--target_loss", choices=["hard_ce", "soft_ce"], default="soft_ce") + p.add_argument("--meanflow_weight", type=float, default=0.0) + p.add_argument( + "--loss_t_weight_mode", + choices=["none", "linear_t", "quadratic_t", "one_minus_t_floor", "drop_low_t"], + default="none", + help="Per-sample t loss weighting. one_minus_t_floor downweights easy high-t targets.", + ) + p.add_argument("--loss_t_min_weight", type=float, default=0.0) + p.add_argument("--loss_t_drop_below", type=float, default=0.2) + p.add_argument( + "--prior_center_loss_beta", + type=float, + default=0.0, + help="If >0, train CE on logits - beta * logits(prior_state, t), reducing unconditional prior attraction.", + ) + p.add_argument("--prior_center_state", choices=["uniform"], default="uniform") + p.add_argument( + "--rollout_train_prob", + type=float, + default=0.0, + help=( + "Probability of replacing the supervised input state with a detached " + "self-rollout state before computing the reconstruction loss." + ), + ) + p.add_argument( + "--rollout_train_steps", + type=int, + default=1, + help="Number of no-grad self-rollout updates before the supervised loss.", + ) + p.add_argument( + "--rollout_train_infer_steps", + type=int, + default=64, + help="Decode horizon used to set the one-step flowmap gamma during rollout training.", + ) + p.add_argument( + "--rollout_train_temp", + type=float, + default=1.45, + help="Endpoint temperature used in the no-grad rollout-training update.", + ) + p.add_argument( + "--rollout_train_max_gamma", + type=float, + default=1.0, + help="Clamp for the no-grad rollout-training flowmap gamma. Set <=0 to disable the clamp.", + ) + p.add_argument( + "--rollout_train_corrupt_only", + action=argparse.BooleanOptionalAction, + default=True, + help="Only replace corrupted positions with the self-rollout state, preserving clean anchors.", + ) + p.add_argument( + "--rollout_train_samplewise", + action=argparse.BooleanOptionalAction, + default=False, + help=( + "Apply rollout stochastically per sample instead of per micro-batch. " + "This always computes the rollout forward when prob>0, which keeps " + "Tensor Core work steady while preserving the requested rollout mix." + ), + ) + p.add_argument( + "--rollout_train_compute_always", + action=argparse.BooleanOptionalAction, + default=False, + help=( + "For batchwise rollout, always compute the detached rollout forward " + "even when the batch coin decides not to apply it. This preserves " + "the old rollout objective while increasing steady Tensor Core work." + ), + ) + p.add_argument( + "--rollout_train_debug_return_base", + action=argparse.BooleanOptionalAction, + default=False, + help=( + "Debug only: still run the detached rollout forward, but return the " + "original bridge state to isolate rollout-forward side effects from " + "the rollout-state training distribution." + ), + ) + p.add_argument("--target_prob", type=float, default=0.99) + p.add_argument("--min_t", type=float, default=0.0) + p.add_argument("--max_t", type=float, default=1.0) + p.add_argument( + "--t_sampling_mode", + choices=["uniform", "power_low", "power_high", "logit_uniform"], + default="uniform", + help=( + "How to sample model/flow time t. power_low uses u**gamma to " + "oversample low t; power_high uses 1-(1-u)**gamma to oversample high t; " + "logit_uniform samples uniformly in logit(t)." + ), + ) + p.add_argument("--t_sampling_power", type=float, default=1.0) + p.add_argument("--t_sampling_eps", type=float, default=1e-4) + p.add_argument("--dual_t", action="store_true", help="Use separate model/flow time and corruption/support time.") + p.add_argument("--corrupt_t_mode", choices=["same", "independent", "constant"], default="independent") + p.add_argument("--corrupt_t_value", type=float, default=0.0) + p.add_argument("--corrupt_min_t", type=float, default=None) + p.add_argument("--corrupt_max_t", type=float, default=None) + p.add_argument( + "--prefix_block_prob", + type=float, + default=0.0, + help="Train on grow-context states: expose only prefix plus one active block, corrupting the active block and masking future tokens.", + ) + p.add_argument("--prefix_block_len", type=int, default=128) + p.add_argument("--min_mask_ratio", type=float, default=0.1) + p.add_argument("--max_mask_ratio", type=float, default=1.0) + p.add_argument( + "--mask_ratio_floor_schedule", + choices=["none", "one_minus_t"], + default="none", + help=( + "Optional per-sample lower-bound schedule for mask ratio. " + "one_minus_t uses max(min_mask_ratio, 1-t), so t=0 is all-mask " + "while high-t reverts to the configured min_mask_ratio." + ), + ) + p.add_argument( + "--mask_mixture_original_prob", + type=float, + default=0.0, + help="If any mask-mixture prob is >0, probability of using the original uniform mask-ratio sampler.", + ) + p.add_argument( + "--mask_mixture_lowk_prob", + type=float, + default=0.0, + help="If any mask-mixture prob is >0, probability of keeping only K clean tokens and corrupting the rest.", + ) + p.add_argument( + "--mask_mixture_lowcorrupt_prob", + type=float, + default=0.0, + help="If any mask-mixture prob is >0, probability of corrupting only K valid tokens and keeping the rest anchored.", + ) + p.add_argument( + "--mask_mixture_block_prob", + type=float, + default=0.0, + help="If any mask-mixture prob is >0, probability of corrupting one contiguous valid-token block and keeping the rest anchored.", + ) + p.add_argument( + "--mask_mixture_all_prob", + type=float, + default=0.0, + help="If any mask-mixture prob is >0, probability of corrupting every valid token.", + ) + p.add_argument( + "--mask_mixture_lowk_clean_tokens", + default="1,2,4,8,16,32,64", + help="Comma-separated clean-token counts sampled uniformly for the low-K mixture branch.", + ) + p.add_argument( + "--mask_mixture_lowcorrupt_tokens", + type=str, + default="1,2,4,8,16,32,64", + help="Comma-separated corrupt-token counts sampled uniformly for the low-corrupt-K mixture branch.", + ) + p.add_argument( + "--mask_mixture_block_tokens", + type=str, + default="64,128", + help="Comma-separated contiguous block lengths sampled uniformly for the block-corrupt mixture branch.", + ) + p.add_argument( + "--clean_state_mode", + choices=["onehot", "bridge"], + default="onehot", + help="State for non-corrupted support tokens: exact one-hot gold, or a same-t bridge sample around gold.", + ) + p.add_argument("--wrong_token_replace_prob", default="0.0") + p.add_argument("--wrong_token_schedule", choices=["constant", "hard", "linear_t", "exp_t", "exp_k1"], default="constant") + p.add_argument("--wrong_token_exp_k", type=float, default=1.0) + p.add_argument("--dirichlet_concentration_min", type=float, default=1.0) + p.add_argument("--dirichlet_concentration_max", type=float, default=1024.0) + p.add_argument( + "--dirichlet_endpoint_mode", + choices=["bernoulli_wrong", "dual_t_line", "categorical_dual_t"], + default="bernoulli_wrong", + ) + p.add_argument("--dirichlet_semantic_t_mode", choices=["same", "independent", "constant"], default="same") + p.add_argument("--dirichlet_semantic_t_value", type=float, default=0.0) + p.add_argument( + "--dirichlet_semantic_t_curve", + choices=["linear", "logit_power"], + default="linear", + help=( + "Transform semantic t before categorical_dual_t Bernoulli gold sampling. " + "logit_power uses p=t^gamma/(t^gamma+(1-t)^gamma)." + ), + ) + p.add_argument( + "--dirichlet_semantic_t_power", + type=float, + default=1.0, + help="Gamma for --dirichlet_semantic_t_curve logit_power.", + ) + p.add_argument( + "--endpoint_sequence_random_prob_alpha", + type=float, + default=0.0, + help=( + "For categorical_dual_t: with probability alpha*(1-t), force all " + "corrupted positions in a sequence to use the random endpoint branch. " + "0 disables the sequence-level gate." + ), + ) + p.add_argument( + "--categorical_wrong_from_full_vocab", + action="store_true", + help="For categorical_dual_t only: sample the non-gold endpoint from the full vocab, allowing it to equal gold.", + ) + p.add_argument( + "--categorical_wrong_from_batch_valid_tokens", + action="store_true", + help="For categorical_dual_t only: sample the non-gold endpoint from valid tokens in the current batch.", + ) + p.add_argument( + "--categorical_wrong_basin_token_ids", + default="", + help=( + "For categorical_dual_t only: comma-separated token ids for a basin-bank wrong endpoint branch. " + "Used when any categorical_wrong_*_prob is >0." + ), + ) + p.add_argument("--categorical_wrong_basin_prob", type=float, default=0.0) + p.add_argument("--categorical_wrong_unigram_prob", type=float, default=0.0) + p.add_argument("--categorical_wrong_uniform_prob", type=float, default=0.0) + p.add_argument( + "--categorical_wrong_corpus_unigram_path", + default="", + help=( + "Optional torch/numpy file containing OWT corpus unigram counts or probabilities. " + "When set, categorical_wrong_unigram_prob samples from this corpus distribution." + ), + ) + p.add_argument( + "--categorical_wrong_corpus_unigram_alpha", + type=float, + default=1.0, + help="Exponent applied to corpus unigram counts before normalization; values <1 flatten high-frequency tokens.", + ) + p.add_argument( + "--categorical_wrong_basin_shared_prob", + type=float, + default=0.0, + help="Per-sequence probability of sharing one basin-bank wrong token across all corrupted positions.", + ) + p.add_argument( + "--categorical_wrong_unigram_shared_prob", + type=float, + default=0.0, + help="Per-sequence probability of sharing one corpus/batch-unigram wrong token across all corrupted positions.", + ) + p.add_argument( + "--simplex_bridge_sampler", + choices=["dirichlet", "logistic_normal_linear_mean"], + default="dirichlet", + help="How to sample simplex bridge states after choosing the endpoint.", + ) + p.add_argument("--logistic_normal_sigma_min", type=float, default=0.18) + p.add_argument("--logistic_normal_sigma_max", type=float, default=2.2) + p.add_argument("--logistic_normal_tau_min", type=float, default=0.65) + p.add_argument("--logistic_normal_tau_max", type=float, default=1.15) + p.add_argument("--dirichlet_scale", type=float, default=128.0) + p.add_argument("--dirichlet_floor", type=float, default=1e-3) + p.add_argument("--eps", type=float, default=1e-8) + p.add_argument("--log_every", type=int, default=10) + p.add_argument("--eval_every", type=int, default=100) + p.add_argument("--save_every", type=int, default=500) + p.add_argument("--latest_every", type=int, default=0, help="If >0, also refresh save_dir/latest.pt at this interval.") + p.add_argument("--resume_path", default="", help="Optional checkpoint path to resume model/optimizer/scheduler state.") + p.add_argument( + "--init_model_path", + default="", + help="Optional checkpoint path used only to initialize model weights; optimizer/scheduler/step start fresh.", + ) + p.add_argument( + "--init_pos_embed_mode", + choices=["strict", "repeat", "interpolate"], + default="strict", + help="When --init_model_path has a different pos_embed length, adapt it to the current max_len.", + ) + p.add_argument("--infer_steps", type=int, default=64) + p.add_argument("--decode_damping", type=float, default=1.0) + p.add_argument("--max_gamma", type=float, default=1.0) + p.add_argument("--decode_solver", choices=["simple", "flowmap"], default="flowmap") + p.add_argument("--noise_init", choices=["uniform", "logistic_normal"], default="logistic_normal") + p.add_argument("--bridge_noise_init", choices=["uniform", "logistic_normal"], default="logistic_normal") + p.add_argument("--noise_sigma", type=float, default=-1.0) + p.add_argument("--demo_mask_ratios", default="0.1,0.5,1.0") + p.add_argument("--demo_fill_t", type=float, default=0.0) + p.add_argument("--bf16", action="store_true") + p.add_argument("--allow_tf32", action=argparse.BooleanOptionalAction, default=True) + p.add_argument("--activation_checkpointing", action="store_true") + p.add_argument("--activation_checkpoint_interval", type=int, default=1) + p.add_argument("--activation_checkpoint_scope", choices=["block", "mlp"], default="block") + p.add_argument("--ddp_static_graph", action="store_true") + p.add_argument("--ddp_gradient_as_bucket_view", action=argparse.BooleanOptionalAction, default=True) + p.add_argument( + "--full_train_stats", + action="store_true", + help="Compute heavy train diagnostics every micro-step. Default computes cheap stats every optimizer step and heavy loss diagnostics on log steps.", + ) + p.add_argument( + "--log_train_stats_each_step", + action=argparse.BooleanOptionalAction, + default=True, + help="Accumulate lightweight train diagnostics from every micro-batch, then report weighted averages over each log window.", + ) + p.add_argument( + "--log_t_bin_stats", + action=argparse.BooleanOptionalAction, + default=True, + help="Log corrupt-token accuracy bucketed by model t, making mixed-t train logs easier to read.", + ) + p.add_argument( + "--log_t_bin_edges", + default="0,0.2,0.4,0.6,0.8,1.0", + help="Comma-separated t-bin edges used when --log_t_bin_stats is enabled.", + ) + p.add_argument("--torch_compile", action="store_true") + p.add_argument("--compile_mode", choices=["default", "reduce-overhead", "max-autotune"], default="max-autotune") + return p.parse_args() + + +def _datasetdict_to_single_split(ds): + if hasattr(ds, "keys") and not hasattr(ds, "column_names"): + for key in ("train", "validation", "test"): + if key in ds: + return ds[key] + return ds[next(iter(ds.keys()))] + return ds + + +def _load_arrow_dir_without_hf_metadata(path: str): + """Fallback for ELF datasets saved with newer `List` feature metadata. + + Some nodes have an older `datasets` build that cannot parse feature type + `List`, even though pyarrow can read the Arrow files just fine. We strip + only the HuggingFace schema metadata and let `datasets` infer equivalent + sequence columns from Arrow. + """ + import pyarrow as pa + import pyarrow.ipc as ipc + from datasets import Dataset + + root = Path(path) + arrow_files = sorted(root.glob("data-*.arrow")) + if not arrow_files: + raise FileNotFoundError(f"No data-*.arrow files found under {path}") + tables = [] + for arrow_path in arrow_files: + with pa.memory_map(str(arrow_path), "r") as source: + table = ipc.open_stream(source).read_all() + tables.append(table.cast(table.schema.remove_metadata())) + table = tables[0] if len(tables) == 1 else pa.concat_tables(tables, promote_options="default") + return Dataset(table) + + +def load_elf_conditional_dataset(path: str, max_records: int = 0): + from datasets import load_from_disk + + try: + ds = _datasetdict_to_single_split(load_from_disk(path)) + except ValueError as exc: + if "Feature type 'List' not found" not in str(exc): + raise + ds = _load_arrow_dir_without_hf_metadata(path) + if max_records and max_records > 0: + ds = ds.select(range(min(int(max_records), len(ds)))) + required = {"condition_input_ids", "input_ids"} + missing = sorted(required.difference(ds.column_names)) + if missing: + raise ValueError(f"ELF conditional dataset {path} missing columns: {missing}") + return ds + + +class ELFConditionalCollator: + def __init__(self, pad_id: int, max_len: int, max_input_len: int, *, loss_on_pad: bool) -> None: + self.pad_id = int(pad_id) + self.max_len = int(max_len) + self.max_input_len = int(max_input_len) + self.loss_on_pad = bool(loss_on_pad) + + def __call__(self, examples: list[dict]) -> dict[str, torch.Tensor]: + ids_rows = [] + attn_rows = [] + loss_rows = [] + cond_rows = [] + for ex in examples: + cond = [int(x) for x in ex["condition_input_ids"][: self.max_input_len]] + target_budget = max(0, self.max_len - len(cond)) + target = [int(x) for x in ex["input_ids"][:target_budget]] + seq = (cond + target)[: self.max_len] + cond_len = min(len(cond), self.max_len) + target_len = max(0, len(seq) - cond_len) + pad_len = self.max_len - len(seq) + if pad_len > 0: + seq = seq + [self.pad_id] * pad_len + + attn = [True] * (cond_len + target_len) + [False] * pad_len + cond_mask = [True] * cond_len + [False] * (self.max_len - cond_len) + if self.loss_on_pad: + loss_mask = [False] * cond_len + [True] * (self.max_len - cond_len) + else: + loss_mask = [False] * cond_len + [True] * target_len + [False] * pad_len + ids_rows.append(seq) + attn_rows.append(attn) + loss_rows.append(loss_mask) + cond_rows.append(cond_mask) + return { + "ids": torch.tensor(ids_rows, dtype=torch.long), + "attn_mask": torch.tensor(attn_rows, dtype=torch.bool), + "loss_mask": torch.tensor(loss_rows, dtype=torch.bool), + "cond_seq_mask": torch.tensor(cond_rows, dtype=torch.bool), + } + + +class ExactRepeatDistributedSampler(Sampler[int]): + """Deterministic finite schedule with exact per-item repeat counts.""" + + def __init__( + self, + dataset_size: int, + repeats_per_item: int, + *, + seed: int, + rank: int = 0, + world_size: int = 1, + ) -> None: + self.dataset_size = int(dataset_size) + self.repeats_per_item = int(repeats_per_item) + self.seed = int(seed) + self.rank = int(rank) + self.world_size = int(world_size) + if self.dataset_size <= 0: + raise ValueError("dataset_size must be positive") + if self.repeats_per_item <= 0: + raise ValueError("repeats_per_item must be positive") + total = self.dataset_size * self.repeats_per_item + if total % self.world_size != 0: + raise ValueError( + f"exact repeat schedule total={total} is not divisible by world_size={self.world_size}" + ) + self.num_samples = total // self.world_size + + def __iter__(self): + import torch + + indices = torch.arange(self.dataset_size, dtype=torch.long).repeat_interleave( + self.repeats_per_item + ) + g = torch.Generator() + g.manual_seed(self.seed) + indices = indices[torch.randperm(indices.numel(), generator=g)] + return iter(indices[self.rank :: self.world_size].tolist()) + + def __len__(self) -> int: + return self.num_samples + + +def seed_all(seed: int) -> None: + random.seed(seed) + torch.manual_seed(seed) + torch.cuda.manual_seed_all(seed) + + +def sample_time( + batch: int, + min_t: float, + max_t: float, + device: torch.device, + mode: str = "uniform", + power: float = 1.0, + eps: float = 1e-4, +) -> torch.Tensor: + u = torch.rand(batch, device=device) + if mode == "uniform": + z = u + elif mode == "power_low": + z = u.pow(float(power)) + elif mode == "power_high": + z = 1.0 - (1.0 - u).pow(float(power)) + elif mode == "logit_uniform": + lo = torch.logit(torch.tensor(float(eps), device=device)) + hi = torch.logit(torch.tensor(1.0 - float(eps), device=device)) + z = torch.sigmoid(lo + (hi - lo) * u) + else: + raise ValueError(f"Unknown t_sampling_mode: {mode}") + return min_t + (max_t - min_t) * z + + +def sample_loss_t_weight(args: argparse.Namespace, model_t: torch.Tensor) -> torch.Tensor: + if args.loss_t_weight_mode == "none": + return torch.ones_like(model_t) + t = model_t.clamp(0.0, 1.0) + if args.loss_t_weight_mode == "linear_t": + weight = t + elif args.loss_t_weight_mode == "quadratic_t": + weight = t.square() + elif args.loss_t_weight_mode == "one_minus_t_floor": + weight = 1.0 - t + elif args.loss_t_weight_mode == "drop_low_t": + weight = torch.where(t < float(args.loss_t_drop_below), torch.zeros_like(t), torch.ones_like(t)) + else: + raise ValueError(f"Unknown loss_t_weight_mode: {args.loss_t_weight_mode}") + if args.loss_t_min_weight > 0: + weight = weight.clamp_min(float(args.loss_t_min_weight)) + return weight + + +def parse_t_bin_edges(raw: str) -> tuple[float, ...]: + vals = tuple(float(x) for x in raw.split(",") if x.strip()) + if len(vals) < 2: + raise ValueError("--log_t_bin_edges must contain at least two comma-separated values") + if any(vals[i] >= vals[i + 1] for i in range(len(vals) - 1)): + raise ValueError(f"--log_t_bin_edges must be strictly increasing, got {raw!r}") + if vals[0] > 0.0 or vals[-1] < 1.0: + raise ValueError(f"--log_t_bin_edges must cover [0, 1], got {raw!r}") + return vals + + +def average_stats_window(running: list[dict[str, float]]) -> dict[str, float]: + keys: list[str] = [] + seen: set[str] = set() + for stats in running: + for key in stats: + if key.endswith("__weight"): + continue + if key not in seen: + seen.add(key) + keys.append(key) + avg: dict[str, float] = {} + for key in keys: + weighted_sum = 0.0 + weight_sum = 0.0 + vals: list[float] = [] + weight_key = f"{key}__weight" + for stats in running: + if key not in stats: + continue + val = float(stats[key]) + if not math.isfinite(val): + continue + if weight_key in stats: + weight = float(stats[weight_key]) + if math.isfinite(weight) and weight > 0.0: + weighted_sum += val * weight + weight_sum += weight + else: + vals.append(val) + if weight_sum > 0.0: + avg[key] = weighted_sum / weight_sum + elif vals: + avg[key] = sum(vals) / len(vals) + return avg + + +def weighted_masked_ce(logits: torch.Tensor, ids: torch.Tensor, mask: torch.Tensor, sample_weight: torch.Tensor) -> torch.Tensor: + per = torch.nn.functional.cross_entropy(logits.flatten(0, 1), ids.flatten(), reduction="none").view_as(ids) + weight = mask.float() * sample_weight.float().view(-1, 1) + return (per * weight).sum() / weight.sum().clamp_min(1.0) + + +def weighted_masked_soft_ce( + logits: torch.Tensor, + target_probs: torch.Tensor, + mask: torch.Tensor, + sample_weight: torch.Tensor, +) -> torch.Tensor: + log_probs = torch.nn.functional.log_softmax(logits, dim=-1) + per = -(target_probs.to(dtype=log_probs.dtype) * log_probs).sum(dim=-1).float() + weight = mask.float() * sample_weight.float().view(-1, 1) + return (per * weight).sum() / weight.sum().clamp_min(1.0) + + +def make_prior_center_state( + args: argparse.Namespace, + batch: int, + length: int, + vocab_size: int, + device: torch.device, +) -> torch.Tensor: + if args.prior_center_state != "uniform": + raise ValueError(f"Unknown prior_center_state: {args.prior_center_state}") + probs = torch.full((batch, length, vocab_size), 1.0 / vocab_size, dtype=torch.float32, device=device) + if args.state_format == "prob": + return probs + return torch.log(probs.clamp_min(args.eps)) + + +def state_to_probs(args: argparse.Namespace, state: torch.Tensor) -> torch.Tensor: + if args.state_format == "prob": + probs = state.float() + else: + probs = state.float().exp() + probs = probs.clamp_min(args.eps) + return probs / probs.sum(dim=-1, keepdim=True).clamp_min(args.eps) + + +def probs_to_state(args: argparse.Namespace, probs: torch.Tensor) -> torch.Tensor: + probs = probs.float().clamp_min(args.eps) + probs = probs / probs.sum(dim=-1, keepdim=True).clamp_min(args.eps) + if args.state_format == "prob": + return probs + return torch.log(probs.clamp_min(args.eps)) + + +def zero_param_anchor(model: torch.nn.Module, like: torch.Tensor) -> torch.Tensor: + anchor = like.new_zeros(()) + for p in model.parameters(): + if p.requires_grad: + anchor = anchor + p.reshape(-1)[0].float() * 0.0 + return anchor + + +@torch.no_grad() +def maybe_make_rollout_train_state( + args: argparse.Namespace, + model: torch.nn.Module, + base_state: torch.Tensor, + model_t: torch.Tensor, + attn_mask: torch.Tensor, + corrupt_mask: torch.Tensor, +) -> tuple[torch.Tensor, float, torch.Tensor | None]: + prob = float(args.rollout_train_prob) + steps = int(args.rollout_train_steps) + if prob <= 0.0 or steps <= 0: + return base_state, 0.0, None + samplewise = bool(getattr(args, "rollout_train_samplewise", False)) + if samplewise: + apply_sample = torch.rand(base_state.size(0), device=model_t.device) < prob + applied = float(apply_sample.float().mean().detach().cpu()) + else: + apply_batch = prob >= 1.0 or float(torch.rand((), device=model_t.device).item()) < prob + if not apply_batch and not bool(getattr(args, "rollout_train_compute_always", False)): + return base_state, 0.0, None + apply_sample = torch.full((base_state.size(0),), bool(apply_batch), device=model_t.device) + applied = 1.0 if apply_batch else 0.0 + + probs = state_to_probs(args, base_state) + original_probs = probs + rollout_t = model_t.float().clamp(0.0, 1.0) + dt = 1.0 / max(1, int(args.rollout_train_infer_steps)) + with torch.no_grad(): + for _ in range(steps): + logits = model(probs_to_state(args, probs), rollout_t, attn_mask) + endpoint = torch.nn.functional.softmax(logits / float(args.rollout_train_temp), dim=-1) + del logits + gamma = dt / (1.0 - rollout_t).clamp_min(args.eps) + if float(args.rollout_train_max_gamma) > 0: + gamma = gamma.clamp_max(float(args.rollout_train_max_gamma)) + probs = probs + gamma.view(-1, 1, 1) * (endpoint - probs) + probs = probs.clamp_min(args.eps) + probs = probs / probs.sum(dim=-1, keepdim=True).clamp_min(args.eps) + rollout_t = (rollout_t + dt).clamp_max(1.0) + + if bool(getattr(args, "rollout_train_debug_return_base", False)): + return base_state, float(applied), apply_sample.detach() + + if applied <= 0.0: + return base_state, 0.0, apply_sample.detach() + if args.rollout_train_corrupt_only: + apply_pos = corrupt_mask + apply_pos = apply_pos & apply_sample.view(-1, 1) + probs = torch.where(apply_pos.unsqueeze(-1), probs, original_probs) + else: + probs = torch.where(apply_sample.view(-1, 1, 1), probs, original_probs) + return probs_to_state(args, probs).detach(), float(applied), apply_sample.detach() + + +@torch.no_grad() +def zeropower_via_newtonschulz5(g: torch.Tensor, steps: int = 5) -> torch.Tensor: + """Muon Newton-Schulz orthogonalization for matrix-shaped updates.""" + orig_shape = g.shape + x = g.float().reshape(g.shape[0], -1) + transposed = False + if x.size(0) > x.size(1): + x = x.t() + transposed = True + x = x / (x.norm() + 1e-7) + a, b, c = 3.4445, -4.7750, 2.0315 + for _ in range(max(1, int(steps))): + xx_t = x @ x.t() + x = a * x + (b * xx_t + c * (xx_t @ xx_t)) @ x + if transposed: + x = x.t() + return x.reshape(orig_shape).to(dtype=g.dtype) + + +class Muon(torch.optim.Optimizer): + """Minimal Muon optimizer with Adam fallback for 1D params.""" + + def __init__( + self, + params, + *, + lr: float, + momentum: float = 0.95, + ns_steps: int = 5, + adam_betas: tuple[float, float] = (0.9, 0.95), + eps: float = 1e-8, + weight_decay: float = 0.0, + update_scale: float = 1.0, + ) -> None: + params = [p for p in params if p.requires_grad] + muon_params = [p for p in params if p.dim() >= 2] + adam_params = [p for p in params if p.dim() < 2] + defaults = dict( + lr=lr, + momentum=momentum, + ns_steps=ns_steps, + adam_betas=adam_betas, + eps=eps, + weight_decay=weight_decay, + update_scale=update_scale, + ) + groups = [] + if muon_params: + groups.append({"params": muon_params, "use_muon": True, **defaults}) + if adam_params: + groups.append({"params": adam_params, "use_muon": False, **defaults}) + super().__init__(groups, defaults) + + @torch.no_grad() + def step(self, closure=None): + loss = None + if closure is not None: + with torch.enable_grad(): + loss = closure() + for group in self.param_groups: + lr = group["lr"] + wd = group["weight_decay"] + if group.get("use_muon", False): + momentum = group["momentum"] + ns_steps = group["ns_steps"] + update_scale = group["update_scale"] + for p in group["params"]: + if p.grad is None: + continue + g = p.grad + if g.is_sparse: + raise RuntimeError("Muon does not support sparse gradients") + state = self.state[p] + if not state: + state["momentum_buffer"] = torch.zeros_like(p) + buf = state["momentum_buffer"] + buf.mul_(momentum).add_(g, alpha=1.0 - momentum) + update = zeropower_via_newtonschulz5(buf, ns_steps) + if wd: + p.mul_(1.0 - lr * wd) + p.add_(update, alpha=-lr * update_scale) + else: + beta1, beta2 = group["adam_betas"] + eps = group["eps"] + for p in group["params"]: + if p.grad is None: + continue + g = p.grad + if g.is_sparse: + raise RuntimeError("Adam fallback does not support sparse gradients") + state = self.state[p] + if not state: + state["step"] = 0 + state["exp_avg"] = torch.zeros_like(p) + state["exp_avg_sq"] = torch.zeros_like(p) + exp_avg = state["exp_avg"] + exp_avg_sq = state["exp_avg_sq"] + state["step"] += 1 + step = state["step"] + if wd: + p.mul_(1.0 - lr * wd) + exp_avg.mul_(beta1).add_(g, alpha=1.0 - beta1) + exp_avg_sq.mul_(beta2).addcmul_(g, g, value=1.0 - beta2) + bias_correction1 = 1.0 - beta1**step + bias_correction2 = 1.0 - beta2**step + step_size = lr * (bias_correction2**0.5) / bias_correction1 + denom = exp_avg_sq.sqrt().add_(eps) + p.addcdiv_(exp_avg, denom, value=-step_size) + return loss + + +def configure_adamw_optimizer( + model: torch.nn.Module, + args: argparse.Namespace, + device: torch.device, +) -> torch.optim.Optimizer: + named_params = [(name, p) for name, p in model.named_parameters() if p.requires_grad] + params = [p for _, p in named_params] + if args.optimizer == "muon": + return Muon( + params, + lr=args.lr, + momentum=args.muon_momentum, + ns_steps=args.muon_ns_steps, + adam_betas=(args.adam_beta1, args.adam_beta2), + eps=args.adam_eps, + weight_decay=args.weight_decay, + update_scale=args.muon_update_scale, + ) + fused_available = "fused" in inspect.signature(torch.optim.AdamW).parameters + extra_args = {"fused": True} if fused_available and device.type == "cuda" else {} + output_decay = float(getattr(args, "output_weight_decay", -1.0)) + output_weight_names = ("output_layer.linear.weight", "out_proj.weight") + output_params = [ + p + for name, p in named_params + if output_decay >= 0.0 and any(name.endswith(suffix) for suffix in output_weight_names) + ] + output_param_ids = {id(p) for p in output_params} + if args.adamw_param_groups == "all_decay": + if output_params: + other_params = [p for p in params if id(p) not in output_param_ids] + optim_groups = [ + {"params": other_params, "weight_decay": args.weight_decay}, + {"params": output_params, "weight_decay": output_decay}, + ] + return torch.optim.AdamW( + optim_groups, + lr=args.lr, + betas=(args.adam_beta1, args.adam_beta2), + eps=args.adam_eps, + **extra_args, + ) + return torch.optim.AdamW( + params, + lr=args.lr, + betas=(args.adam_beta1, args.adam_beta2), + eps=args.adam_eps, + weight_decay=args.weight_decay, + **extra_args, + ) + + # nanoGPT convention: decay matrix/embedding weights, not biases/norm/1D params. + decay_params = [p for _, p in named_params if p.dim() >= 2 and id(p) not in output_param_ids] + nodecay_params = [p for _, p in named_params if p.dim() < 2 and id(p) not in output_param_ids] + optim_groups = [] + if decay_params: + optim_groups.append({"params": decay_params, "weight_decay": args.weight_decay}) + if output_params: + optim_groups.append({"params": output_params, "weight_decay": output_decay}) + if nodecay_params: + optim_groups.append({"params": nodecay_params, "weight_decay": 0.0}) + return torch.optim.AdamW( + optim_groups, + lr=args.lr, + betas=(args.adam_beta1, args.adam_beta2), + eps=args.adam_eps, + **extra_args, + ) + + +@torch.no_grad() +def init_ema_state(model: torch.nn.Module) -> dict[str, torch.Tensor]: + return { + k: v.detach().clone() + for k, v in model.state_dict().items() + if torch.is_floating_point(v) + } + + +@torch.no_grad() +def update_ema_state(ema_state: dict[str, torch.Tensor], model: torch.nn.Module, decay: float) -> None: + for k, v in model.state_dict().items(): + if k in ema_state: + ema_state[k].mul_(decay).add_(v.detach(), alpha=1.0 - decay) + + +def resolve_bridge_force_t(args: argparse.Namespace, model_t: torch.Tensor) -> torch.Tensor | None: + if not args.dual_t or args.corrupt_t_mode == "same": + return model_t + if args.corrupt_t_mode == "constant": + return torch.full_like(model_t, float(args.corrupt_t_value)) + return None + + +def load_corpus_unigram_probs( + path: str, + vocab_size: int, + alpha: float, + device: torch.device, +) -> torch.Tensor | None: + if not path: + return None + p = Path(path) + if not p.exists(): + raise FileNotFoundError(f"categorical wrong corpus unigram file not found: {p}") + if p.suffix == ".npy": + import numpy as np + + data = torch.from_numpy(np.load(p)) + else: + loaded = torch.load(p, map_location="cpu") + if isinstance(loaded, dict): + for key in ("probs", "prob", "counts", "count", "unigram_counts"): + if key in loaded: + loaded = loaded[key] + break + data = torch.as_tensor(loaded) + probs = data.flatten().to(dtype=torch.float32, device="cpu") + if probs.numel() < vocab_size: + probs = F.pad(probs, (0, vocab_size - probs.numel())) + elif probs.numel() > vocab_size: + probs = probs[:vocab_size] + probs = probs.clamp_min(0.0) + if float(alpha) != 1.0: + probs = probs.pow(float(alpha)) + total = probs.sum() + if not bool(torch.isfinite(total).item()) or float(total.item()) <= 0.0: + raise ValueError(f"corpus unigram file has no positive finite mass: {p}") + return (probs / total).to(device=device) + + +def make_bridge( + args: argparse.Namespace, + ids: torch.Tensor, + attn_mask: torch.Tensor, + vocab_size: int, + force_t: torch.Tensor | None = None, + force_corrupt_mask: torch.Tensor | None = None, + categorical_wrong_corpus_unigram_probs: torch.Tensor | None = None, +): + corrupt_min_t = args.min_t if args.corrupt_min_t is None else args.corrupt_min_t + corrupt_max_t = args.max_t if args.corrupt_max_t is None else args.corrupt_max_t + if args.bridge == "prob": + return make_prob_bridge_batch( + ids=ids, + attn_mask=attn_mask, + vocab_size=vocab_size, + target_prob=args.target_prob, + min_t=corrupt_min_t, + max_t=corrupt_max_t, + min_mask_ratio=args.min_mask_ratio, + max_mask_ratio=args.max_mask_ratio, + wrong_token_replace_prob=args.wrong_token_replace_prob, + wrong_token_schedule=args.wrong_token_schedule, + wrong_token_exp_k=args.wrong_token_exp_k, + eps=args.eps, + state_format=args.state_format, + noise_init=args.bridge_noise_init, + noise_sigma=args.noise_sigma, + force_t=force_t, + force_corrupt_mask=force_corrupt_mask, + mask_ratio_floor_schedule=args.mask_ratio_floor_schedule, + mask_mixture_original_prob=args.mask_mixture_original_prob, + mask_mixture_lowk_prob=args.mask_mixture_lowk_prob, + mask_mixture_lowcorrupt_prob=args.mask_mixture_lowcorrupt_prob, + mask_mixture_block_prob=args.mask_mixture_block_prob, + mask_mixture_all_prob=args.mask_mixture_all_prob, + mask_mixture_lowk_clean_tokens=args.mask_mixture_lowk_clean_tokens, + mask_mixture_lowcorrupt_tokens=args.mask_mixture_lowcorrupt_tokens, + mask_mixture_block_tokens=args.mask_mixture_block_tokens, + clean_state_mode=args.clean_state_mode, + ) + if args.bridge == "gaussian": + if make_gaussian_bridge_batch is None: + raise RuntimeError("bridge=gaussian requested, but make_gaussian_bridge_batch is unavailable") + return make_gaussian_bridge_batch( + ids=ids, + attn_mask=attn_mask, + vocab_size=vocab_size, + target_prob=args.target_prob, + min_t=corrupt_min_t, + max_t=corrupt_max_t, + eps=args.eps, + force_t=force_t, + ) + return make_dirichlet_bridge_batch( + ids=ids, + attn_mask=attn_mask, + vocab_size=vocab_size, + target_prob=args.target_prob, + min_t=corrupt_min_t, + max_t=corrupt_max_t, + min_mask_ratio=args.min_mask_ratio, + max_mask_ratio=args.max_mask_ratio, + wrong_token_replace_prob=args.wrong_token_replace_prob, + wrong_token_schedule=args.wrong_token_schedule, + wrong_token_exp_k=args.wrong_token_exp_k, + dirichlet_concentration_min=args.dirichlet_concentration_min, + dirichlet_concentration_max=args.dirichlet_concentration_max, + eps=args.eps, + state_format=args.state_format, + dirichlet_endpoint_mode=args.dirichlet_endpoint_mode, + dirichlet_semantic_t_mode=args.dirichlet_semantic_t_mode, + dirichlet_semantic_t_value=args.dirichlet_semantic_t_value, + dirichlet_semantic_t_curve=args.dirichlet_semantic_t_curve, + dirichlet_semantic_t_power=args.dirichlet_semantic_t_power, + endpoint_sequence_random_prob_alpha=args.endpoint_sequence_random_prob_alpha, + categorical_wrong_from_full_vocab=args.categorical_wrong_from_full_vocab, + categorical_wrong_from_batch_valid_tokens=args.categorical_wrong_from_batch_valid_tokens, + categorical_wrong_basin_token_ids=args.categorical_wrong_basin_token_ids, + categorical_wrong_basin_prob=args.categorical_wrong_basin_prob, + categorical_wrong_unigram_prob=args.categorical_wrong_unigram_prob, + categorical_wrong_uniform_prob=args.categorical_wrong_uniform_prob, + categorical_wrong_basin_shared_prob=args.categorical_wrong_basin_shared_prob, + categorical_wrong_unigram_shared_prob=args.categorical_wrong_unigram_shared_prob, + categorical_wrong_corpus_unigram_probs=categorical_wrong_corpus_unigram_probs, + simplex_bridge_sampler=args.simplex_bridge_sampler, + logistic_normal_sigma_min=args.logistic_normal_sigma_min, + logistic_normal_sigma_max=args.logistic_normal_sigma_max, + logistic_normal_tau_min=args.logistic_normal_tau_min, + logistic_normal_tau_max=args.logistic_normal_tau_max, + force_t=force_t, + force_corrupt_mask=force_corrupt_mask, + mask_ratio_floor_schedule=args.mask_ratio_floor_schedule, + mask_mixture_original_prob=args.mask_mixture_original_prob, + mask_mixture_lowk_prob=args.mask_mixture_lowk_prob, + mask_mixture_lowcorrupt_prob=args.mask_mixture_lowcorrupt_prob, + mask_mixture_block_prob=args.mask_mixture_block_prob, + mask_mixture_all_prob=args.mask_mixture_all_prob, + mask_mixture_lowk_clean_tokens=args.mask_mixture_lowk_clean_tokens, + mask_mixture_lowcorrupt_tokens=args.mask_mixture_lowcorrupt_tokens, + mask_mixture_block_tokens=args.mask_mixture_block_tokens, + clean_state_mode=args.clean_state_mode, + return_dense_targets=(args.target_loss == "soft_ce" or args.meanflow_weight > 0), + ) + + +def maybe_make_prefix_block_masks( + args: argparse.Namespace, + attn_mask: torch.Tensor, +) -> tuple[torch.Tensor, torch.Tensor | None]: + prob = float(args.prefix_block_prob) + if prob <= 0.0: + return attn_mask, None + device = attn_mask.device + batch, length = attn_mask.shape + block_len = max(1, int(args.prefix_block_len)) + use_prefix = torch.rand(batch, device=device) < prob + if not bool(use_prefix.any().item()): + return attn_mask, None + + effective_attn = attn_mask.clone() + force_corrupt = torch.zeros_like(attn_mask, dtype=torch.bool) + for b in use_prefix.nonzero(as_tuple=False).flatten().tolist(): + valid = attn_mask[b].nonzero(as_tuple=False).flatten() + if valid.numel() == 0: + continue + n_valid = int(valid.numel()) + n_blocks = max(1, math.ceil(n_valid / block_len)) + block_idx = int(torch.randint(0, n_blocks, (1,), device=device).item()) + start = block_idx * block_len + end = min(start + block_len, n_valid) + force_corrupt[b, valid[start:end]] = True + if end < n_valid: + effective_attn[b, valid[end:]] = False + return effective_attn, force_corrupt + + +def dataloader_perf_kwargs(args: argparse.Namespace, device: torch.device) -> dict: + kwargs = { + "pin_memory": (device.type == "cuda" and args.num_workers > 0), + "persistent_workers": args.num_workers > 0, + } + if args.num_workers > 0 and args.dataloader_prefetch_factor > 0: + kwargs["prefetch_factor"] = int(args.dataloader_prefetch_factor) + return kwargs + + +def unwrap_model(model: torch.nn.Module) -> torch.nn.Module: + if isinstance(model, DistributedDataParallel): + model = model.module + return getattr(model, "_orig_mod", model) + + +def rank_zero(rank: int) -> bool: + return rank == 0 + + +def save_checkpoint( + path: Path, + model: torch.nn.Module, + optimizer: torch.optim.Optimizer, + args: argparse.Namespace, + tokenizer: BpeTextTokenizer, + step: int, + scheduler: torch.optim.lr_scheduler.LRScheduler | None = None, + ema_state: dict[str, torch.Tensor] | None = None, +) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + payload = { + "model": model.state_dict(), + "optimizer": optimizer.state_dict(), + "args": vars(args), + "step": step, + "vocab_size": int(getattr(args, "effective_vocab_size", 0) or tokenizer.vocab_size), + "eos_id": tokenizer.eos_id, + } + if ema_state is not None: + model_state = model.state_dict() + payload["ema_model"] = { + k: ema_state[k].to(dtype=v.dtype, device="cpu") if k in ema_state else v.detach().cpu() + for k, v in model_state.items() + } + if scheduler is not None: + payload["scheduler"] = scheduler.state_dict() + tmp_path = path.with_suffix(path.suffix + ".tmp") + torch.save(payload, tmp_path) + tmp_path.replace(path) + + +@torch.no_grad() +def run_demo(args, model, tokenizer, batch, device) -> None: + model.eval() + ids = batch["ids"][:1].to(device) + attn_mask = batch["attn_mask"][:1].to(device) + target = tokenizer.decode(ids[0].tolist()) + print(f"[demo] target: {target[:500]}", flush=True) + for ratio in [float(x) for x in args.demo_mask_ratios.split(",") if x.strip()]: + init, mask = fill_blank_init( + ids, + tokenizer.vocab_size, + args.target_prob, + ratio, + args.demo_fill_t, + args.eps, + noise_mode=args.noise_init, + noise_sigma=args.noise_sigma, + ) + final = soft_residual_decode( + model, + init, + attn_mask, + args.infer_steps, + args.decode_damping, + args.max_gamma, + args.eps, + solver=args.decode_solver, + ) + print(f"[demo mask_ratio={ratio:.2f}] init : {tokenizer.decode(init.argmax(-1)[0].tolist())[:500]}", flush=True) + print(f"[demo mask_ratio={ratio:.2f}] final: {tokenizer.decode(final.argmax(-1)[0].tolist())[:500]}", flush=True) + print(f"[demo mask_ratio={ratio:.2f}] corrupt_acc_init={float(((init.argmax(-1)==ids)&mask).float().sum()/mask.float().sum().clamp_min(1)):.4f} corrupt_acc_final={float(((final.argmax(-1)==ids)&mask).float().sum()/mask.float().sum().clamp_min(1)):.4f}", flush=True) + model.train() + + +def main() -> None: + args = parse_args() + t_bin_edges = parse_t_bin_edges(args.log_t_bin_edges) + world_size = int(os.environ.get("WORLD_SIZE", "1")) + rank = int(os.environ.get("RANK", "0")) + local_rank = int(os.environ.get("LOCAL_RANK", "0")) + ddp = world_size > 1 + if ddp: + if torch.cuda.is_available(): + torch.cuda.set_device(local_rank) + dist.init_process_group(backend="nccl") + if args.global_batch_size > 0: + args.grad_accum = max(1, math.ceil(args.global_batch_size / max(1, args.batch_size * world_size))) + args.resolved_detokenizer = infer_detokenizer_name(raw_path=args.data_path, explicit=args.detokenizer) + seed_all(args.seed + rank) + device = torch.device(f"cuda:{local_rank}" if torch.cuda.is_available() else "cpu") + if device.type == "cuda": + torch.backends.cuda.matmul.allow_tf32 = bool(args.allow_tf32) + torch.backends.cudnn.allow_tf32 = bool(args.allow_tf32) + + def ddp_barrier() -> None: + if not ddp: + return + if device.type == "cuda": + dist.barrier(device_ids=[local_rank]) + else: + dist.barrier() + + tokenizer = BpeTextTokenizer.from_file(args.tokenizer_path) + model_vocab_size = int(args.vocab_size_override) if int(args.vocab_size_override) > 0 else int(tokenizer.vocab_size) + args.effective_vocab_size = model_vocab_size + categorical_wrong_corpus_unigram_probs = load_corpus_unigram_probs( + args.categorical_wrong_corpus_unigram_path, + model_vocab_size, + args.categorical_wrong_corpus_unigram_alpha, + device, + ) + if rank_zero(rank) and categorical_wrong_corpus_unigram_probs is not None: + top_probs, top_ids = torch.topk(categorical_wrong_corpus_unigram_probs.detach().cpu(), k=min(10, model_vocab_size)) + top_summary = ",".join(f"{int(i)}:{float(p):.3e}" for i, p in zip(top_ids, top_probs)) + print( + "loaded_categorical_wrong_corpus_unigram=" + f"{args.categorical_wrong_corpus_unigram_path} " + f"alpha={args.categorical_wrong_corpus_unigram_alpha} top={top_summary}", + flush=True, + ) + shuffle_epoch_sampler = None + if args.elf_conditional_hf: + if args.wrap or args.owt_cached_chunks or args.online_chunk_shuffle or args.streaming or args.record_pad_truncate: + raise ValueError("--elf_conditional_hf is mutually exclusive with text streaming/packing modes") + if args.conditional_pad_token == "pad": + conditional_pad_id = tokenizer.pad_id if tokenizer.pad_id is not None else tokenizer.eos_id + loss_on_pad = False + else: + conditional_pad_id = tokenizer.eos_id + loss_on_pad = True + dataset = load_elf_conditional_dataset(args.data_path, max_records=args.max_records) + sampler = DistributedSampler(dataset, shuffle=True, seed=args.seed) if ddp else RandomSampler(dataset) + loader = DataLoader( + dataset, + batch_size=args.batch_size, + sampler=sampler, + collate_fn=ELFConditionalCollator( + conditional_pad_id, + max_len=args.max_len, + max_input_len=args.max_input_len, + loss_on_pad=loss_on_pad, + ), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=True, + ) + shuffle_epoch_sampler = sampler + dataset_size = ( + f"elf_conditional_hf:{len(dataset)}" + f":max_input_len={args.max_input_len}:pad={conditional_pad_id}:loss_on_pad={int(loss_on_pad)}" + ) + elif args.record_pad_truncate: + if args.wrap or args.owt_cached_chunks or args.online_chunk_shuffle: + raise ValueError("--record_pad_truncate is mutually exclusive with --wrap/--owt_cached_chunks/--online_chunk_shuffle") + if args.record_pad_token == "pad": + record_pad_id = tokenizer.pad_id if tokenizer.pad_id is not None else tokenizer.eos_id + else: + record_pad_id = tokenizer.eos_id + dataset = RecordPadTruncateTextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records_per_epoch=args.max_records, + detokenizer=args.resolved_detokenizer, + add_eos=args.record_add_eos, + add_special_tokens=args.record_add_special_tokens, + shuffle_buffer_size=args.record_shuffle_buffer, + seed=args.seed, + epoch=0, + ) + shuffle_epoch_sampler = dataset + loader = DataLoader( + dataset, + batch_size=args.batch_size, + collate_fn=FixedPadCollator(record_pad_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=True, + ) + dataset_size = ( + "record_pad_truncate" + f":pad={record_pad_id}:add_eos={int(args.record_add_eos)}" + f":add_special={int(args.record_add_special_tokens)}" + f":shuffle_buffer={args.record_shuffle_buffer}" + ) + elif args.owt_cached_chunks: + if not args.wrap or args.wrap_mode != "stream": + raise ValueError("--owt_cached_chunks requires --wrap --wrap_mode stream") + if not args.owt_chunk_cache_dir: + raise ValueError("--owt_cached_chunks requires --owt_chunk_cache_dir") + if args.openwebtext_split not in {"train_minus_100k", "all"}: + raise ValueError("--owt_cached_chunks is intended for OWT train/all splits") + if ddp and not rank_zero(rank): + ddp_barrier() + dataset = CachedWrappedTextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + cache_dir=args.owt_chunk_cache_dir, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records=args.max_records, + detokenizer=args.resolved_detokenizer, + rebuild=args.owt_chunk_cache_rebuild, + build_cache=rank_zero(rank), + write_batch_size=args.owt_chunk_cache_write_batch, + ) + if ddp and rank_zero(rank): + ddp_barrier() + if args.owt_exact_repeat_per_chunk > 0: + sampler = ExactRepeatDistributedSampler( + len(dataset), + args.owt_exact_repeat_per_chunk, + seed=args.seed, + rank=rank, + world_size=world_size, + ) + shuffle_epoch_sampler = None + else: + sampler = DistributedSampler(dataset, shuffle=True, seed=args.seed) if ddp else RandomSampler(dataset) + shuffle_epoch_sampler = sampler + loader = DataLoader( + dataset, + batch_size=args.batch_size, + sampler=sampler, + collate_fn=EosPadCollator(tokenizer.eos_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=False, + ) + dataset_size = f"owt_cached_chunks:{len(dataset)}" + elif args.wrap and args.online_chunk_shuffle: + if args.wrap_mode != "stream": + raise ValueError("--online_chunk_shuffle currently requires --wrap_mode stream") + dataset = ShuffledWrappedStreamingTextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records_per_epoch=args.max_records, + detokenizer=args.resolved_detokenizer, + chunk_buffer_size=args.online_chunk_shuffle_buffer, + seed=args.seed, + epoch=0, + ) + shuffle_epoch_sampler = dataset + loader = DataLoader( + dataset, + batch_size=args.batch_size, + collate_fn=EosPadCollator(tokenizer.eos_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=False, + ) + dataset_size = f"wrapped_stream_online_shuffle:{args.online_chunk_shuffle_buffer}" + elif args.wrap: + dataset = WrappedStreamingTextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records_per_epoch=args.max_records, + detokenizer=args.resolved_detokenizer, + wrap_mode=args.wrap_mode, + wrap_record_buffer_size=args.wrap_record_buffer_size, + ) + loader = DataLoader( + dataset, + batch_size=args.batch_size, + collate_fn=EosPadCollator(tokenizer.eos_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=False, + ) + dataset_size = f"wrapped_{args.wrap_mode}" + elif args.streaming: + dataset = StreamingTextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records_per_epoch=args.max_records, + stride=args.stride, + detokenizer=args.resolved_detokenizer, + ) + loader = DataLoader( + dataset, + batch_size=args.batch_size, + collate_fn=EosPadCollator(tokenizer.eos_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=False, + ) + dataset_size = "streaming" + else: + dataset = TextSequenceDataset( + args.data_path, + tokenizer, + max_len=args.max_len, + text_column=args.text_column, + txt_record_mode=args.txt_record_mode, + openwebtext_split=args.openwebtext_split, + max_records=args.max_records, + stride=args.stride, + detokenizer=args.resolved_detokenizer, + ) + sampler = DistributedSampler(dataset, shuffle=True, seed=args.seed) if ddp else RandomSampler(dataset) + loader = DataLoader( + dataset, + batch_size=args.batch_size, + sampler=sampler, + collate_fn=EosPadCollator(tokenizer.eos_id, max_len=args.max_len), + num_workers=args.num_workers, + **dataloader_perf_kwargs(args, device), + drop_last=False, + ) + dataset_size = len(dataset) + model = EndpointPredictor( + vocab_size=model_vocab_size, + max_len=args.max_len, + d_model=args.d_model, + n_heads=args.n_heads, + n_layers=args.n_layers, + dim_ff=args.dim_ff, + dropout=args.dropout, + model_type=args.model_type, + cond_dim=args.cond_dim, + input_format=args.state_format, + output_bias=args.output_bias, + norm_type=args.norm_type, + ).to(device) + if args.activation_checkpointing and hasattr(model, "set_activation_checkpointing"): + model.set_activation_checkpointing( + True, + interval=args.activation_checkpoint_interval, + scope=args.activation_checkpoint_scope, + ) + if args.torch_compile: + model = torch.compile(model, mode=args.compile_mode if args.compile_mode != "default" else None) + trainable_model = model + if ddp: + trainable_model = DistributedDataParallel( + model, + device_ids=[local_rank], + output_device=local_rank, + static_graph=bool(args.ddp_static_graph), + gradient_as_bucket_view=bool(args.ddp_gradient_as_bucket_view), + ) + optimizer = configure_adamw_optimizer(unwrap_model(trainable_model), args, device) + ema_state = init_ema_state(unwrap_model(trainable_model)) if args.ema_decay > 0 else None + + def lr_lambda(step: int) -> float: + if args.warmup_steps > 0 and step < args.warmup_steps: + return max(1e-12, float(step + 1) / float(args.warmup_steps)) + if args.lr_schedule == "constant_warmup": + return 1.0 + progress = (step - args.warmup_steps) / max(1, args.total_steps - args.warmup_steps) + min_lr_ratio = float(args.min_lr) / max(float(args.lr), 1e-12) + return max(min_lr_ratio, 0.5 * (1.0 + math.cos(math.pi * min(max(progress, 0.0), 1.0)))) + + scheduler = torch.optim.lr_scheduler.LambdaLR(optimizer, lr_lambda) + start_step = 1 + if args.init_model_path: + if args.resume_path: + raise ValueError("--init_model_path is mutually exclusive with --resume_path") + ckpt = torch.load(args.init_model_path, map_location=device) + init_state = dict(ckpt["model"]) + model_state = unwrap_model(trainable_model).state_dict() + if "pos_embed" in init_state and "pos_embed" in model_state and init_state["pos_embed"].shape != model_state["pos_embed"].shape: + if args.init_pos_embed_mode == "strict": + raise ValueError( + f"init pos_embed shape {tuple(init_state['pos_embed'].shape)} != " + f"model pos_embed shape {tuple(model_state['pos_embed'].shape)}; " + "set --init_pos_embed_mode repeat or interpolate to adapt" + ) + src = init_state["pos_embed"] + target_len = int(model_state["pos_embed"].shape[1]) + if src.shape[1] > target_len: + init_state["pos_embed"] = src[:, :target_len].contiguous() + elif args.init_pos_embed_mode == "repeat": + reps = math.ceil(target_len / int(src.shape[1])) + init_state["pos_embed"] = src.repeat(1, reps, 1)[:, :target_len].contiguous() + else: + init_state["pos_embed"] = F.interpolate( + src.transpose(1, 2), + size=target_len, + mode="linear", + align_corners=True, + ).transpose(1, 2).contiguous() + if rank_zero(rank): + print( + f"adapted_init_pos_embed from={tuple(src.shape)} to={tuple(init_state['pos_embed'].shape)} " + f"mode={args.init_pos_embed_mode}", + flush=True, + ) + for optional_bias_key in ("output_layer.linear.bias", "out_proj.bias"): + if optional_bias_key in init_state and optional_bias_key not in model_state: + init_state.pop(optional_bias_key) + if rank_zero(rank): + print(f"dropped_init_output_bias key={optional_bias_key} because current model has output_bias=False", flush=True) + unwrap_model(trainable_model).load_state_dict(init_state) + if ema_state is not None and "ema_model" in ckpt: + for k, v in ckpt["ema_model"].items(): + if k in ema_state: + ema_state[k].copy_(v.to(device=ema_state[k].device, dtype=ema_state[k].dtype)) + if rank_zero(rank): + print(f"initialized_model_from={args.init_model_path} start_step={start_step}", flush=True) + if args.resume_path: + ckpt = torch.load(args.resume_path, map_location=device) + unwrap_model(trainable_model).load_state_dict(ckpt["model"]) + optimizer.load_state_dict(ckpt["optimizer"]) + if "scheduler" in ckpt: + scheduler.load_state_dict(ckpt["scheduler"]) + else: + scheduler.last_epoch = int(ckpt.get("step", 0)) + if ema_state is not None and "ema_model" in ckpt: + for k, v in ckpt["ema_model"].items(): + if k in ema_state: + ema_state[k].copy_(v.to(device=ema_state[k].device, dtype=ema_state[k].dtype)) + start_step = int(ckpt.get("step", 0)) + 1 + if rank_zero(rank): + print(f"resumed_from={args.resume_path} start_step={start_step}", flush=True) + + save_dir = Path(args.save_dir) + if rank_zero(rank): + save_dir.mkdir(parents=True, exist_ok=True) + (save_dir / "args.json").write_text(json.dumps(vars(args), indent=2), encoding="utf-8") + print(json.dumps({ + "device": str(device), + "rank": rank, + "world_size": world_size, + "samples": dataset_size, + "vocab_size": model_vocab_size, + "tokenizer_vocab_size": tokenizer.vocab_size, + "save_dir": str(save_dir), + "batch_size": args.batch_size, + "grad_accum": args.grad_accum, + "effective_batch_size": args.batch_size * args.grad_accum * world_size, + "global_batch_size": args.global_batch_size, + "lr_schedule": args.lr_schedule, + "optimizer": args.optimizer, + "warmup_steps": args.warmup_steps, + "min_lr": args.min_lr, + "weight_decay": args.weight_decay, + "output_weight_decay": args.output_weight_decay, + "adamw_param_groups": args.adamw_param_groups, + "adam_beta1": args.adam_beta1, + "adam_beta2": args.adam_beta2, + "adam_eps": args.adam_eps, + "muon_momentum": args.muon_momentum, + "muon_ns_steps": args.muon_ns_steps, + "muon_update_scale": args.muon_update_scale, + "ema_decay": args.ema_decay, + "ema_start_step": args.ema_start_step, + "model_type": args.model_type, + "output_bias": args.output_bias, + "norm_type": args.norm_type, + "t_sampling_mode": args.t_sampling_mode, + "t_sampling_power": args.t_sampling_power, + "t_sampling_eps": args.t_sampling_eps, + "dual_t": args.dual_t, + "corrupt_t_mode": args.corrupt_t_mode, + "corrupt_min_t": args.corrupt_min_t, + "corrupt_max_t": args.corrupt_max_t, + "prefix_block_prob": args.prefix_block_prob, + "prefix_block_len": args.prefix_block_len, + "mask_ratio_floor_schedule": args.mask_ratio_floor_schedule, + "dirichlet_endpoint_mode": args.dirichlet_endpoint_mode, + "dirichlet_semantic_t_mode": args.dirichlet_semantic_t_mode, + "dirichlet_semantic_t_value": args.dirichlet_semantic_t_value, + "dirichlet_semantic_t_curve": args.dirichlet_semantic_t_curve, + "dirichlet_semantic_t_power": args.dirichlet_semantic_t_power, + "endpoint_sequence_random_prob_alpha": args.endpoint_sequence_random_prob_alpha, + "categorical_wrong_from_full_vocab": args.categorical_wrong_from_full_vocab, + "categorical_wrong_from_batch_valid_tokens": args.categorical_wrong_from_batch_valid_tokens, + "categorical_wrong_basin_token_ids": args.categorical_wrong_basin_token_ids, + "categorical_wrong_basin_prob": args.categorical_wrong_basin_prob, + "categorical_wrong_unigram_prob": args.categorical_wrong_unigram_prob, + "categorical_wrong_uniform_prob": args.categorical_wrong_uniform_prob, + "categorical_wrong_corpus_unigram_path": args.categorical_wrong_corpus_unigram_path, + "categorical_wrong_corpus_unigram_alpha": args.categorical_wrong_corpus_unigram_alpha, + "categorical_wrong_basin_shared_prob": args.categorical_wrong_basin_shared_prob, + "categorical_wrong_unigram_shared_prob": args.categorical_wrong_unigram_shared_prob, + "mask_mixture_original_prob": args.mask_mixture_original_prob, + "mask_mixture_lowk_prob": args.mask_mixture_lowk_prob, + "mask_mixture_lowcorrupt_prob": args.mask_mixture_lowcorrupt_prob, + "mask_mixture_block_prob": args.mask_mixture_block_prob, + "mask_mixture_all_prob": args.mask_mixture_all_prob, + "mask_mixture_lowk_clean_tokens": args.mask_mixture_lowk_clean_tokens, + "mask_mixture_lowcorrupt_tokens": args.mask_mixture_lowcorrupt_tokens, + "mask_mixture_block_tokens": args.mask_mixture_block_tokens, + "simplex_bridge_sampler": args.simplex_bridge_sampler, + "logistic_normal_sigma_min": args.logistic_normal_sigma_min, + "logistic_normal_sigma_max": args.logistic_normal_sigma_max, + "logistic_normal_tau_min": args.logistic_normal_tau_min, + "logistic_normal_tau_max": args.logistic_normal_tau_max, + "torch_compile": args.torch_compile, + "compile_mode": args.compile_mode, + "state_format": args.state_format, + "target_loss": args.target_loss, + "meanflow_weight": args.meanflow_weight, + "rollout_train_prob": args.rollout_train_prob, + "rollout_train_steps": args.rollout_train_steps, + "rollout_train_infer_steps": args.rollout_train_infer_steps, + "rollout_train_temp": args.rollout_train_temp, + "rollout_train_max_gamma": args.rollout_train_max_gamma, + "rollout_train_corrupt_only": args.rollout_train_corrupt_only, + "rollout_train_samplewise": args.rollout_train_samplewise, + "rollout_train_compute_always": args.rollout_train_compute_always, + "bridge_noise_init": args.bridge_noise_init, + "noise_sigma": args.noise_sigma, + "allow_tf32": args.allow_tf32, + "activation_checkpointing": args.activation_checkpointing, + "activation_checkpoint_interval": args.activation_checkpoint_interval, + "activation_checkpoint_scope": args.activation_checkpoint_scope, + "ddp_static_graph": args.ddp_static_graph, + "ddp_gradient_as_bucket_view": args.ddp_gradient_as_bucket_view, + "blocking_data_transfer": args.blocking_data_transfer, + "dataloader_prefetch_factor": args.dataloader_prefetch_factor, + "full_train_stats": args.full_train_stats, + "record_pad_truncate": args.record_pad_truncate, + "record_add_eos": args.record_add_eos, + "record_add_special_tokens": args.record_add_special_tokens, + "record_pad_token": args.record_pad_token, + "record_shuffle_buffer": args.record_shuffle_buffer, + "wrap": args.wrap, + "wrap_mode": args.wrap_mode, + "wrap_record_buffer_size": args.wrap_record_buffer_size, + "owt_cached_chunks": args.owt_cached_chunks, + "owt_chunk_cache_dir": args.owt_chunk_cache_dir, + "owt_chunk_cache_rebuild": args.owt_chunk_cache_rebuild, + "owt_chunk_cache_write_batch": args.owt_chunk_cache_write_batch, + "owt_exact_repeat_per_chunk": args.owt_exact_repeat_per_chunk, + "online_chunk_shuffle": args.online_chunk_shuffle, + "online_chunk_shuffle_buffer": args.online_chunk_shuffle_buffer, + "openwebtext_split": args.openwebtext_split, + "detokenizer": args.detokenizer, + "resolved_detokenizer": args.resolved_detokenizer, + "num_workers": args.num_workers, + "latest_every": args.latest_every, + "resume_path": args.resume_path, + }, indent=2), flush=True) + + use_amp = args.bf16 and device.type == "cuda" + data_epoch = 0 + data_iter = iter(loader) + running = [] + start = time.time() + trainable_model.train() + optimizer.zero_grad(set_to_none=True) + for step in range(start_step, args.total_steps + 1): + last_batch = None + for micro_step in range(args.grad_accum): + try: + batch = next(data_iter) + except StopIteration: + data_epoch += 1 + if shuffle_epoch_sampler is not None and hasattr(shuffle_epoch_sampler, "set_epoch"): + shuffle_epoch_sampler.set_epoch(data_epoch) + data_iter = iter(loader) + batch = next(data_iter) + last_batch = batch + non_blocking = device.type == "cuda" and not args.blocking_data_transfer + ids = batch["ids"].to(device, non_blocking=non_blocking) + attn_mask = batch["attn_mask"].to(device, non_blocking=non_blocking) + loss_mask = batch.get("loss_mask") + cond_seq_mask = batch.get("cond_seq_mask") + if loss_mask is not None: + loss_mask = loss_mask.to(device, non_blocking=non_blocking) + if cond_seq_mask is not None: + cond_seq_mask = cond_seq_mask.to(device, non_blocking=non_blocking) + bridge_input_mask = loss_mask if loss_mask is not None else attn_mask + bridge_attn_mask, force_corrupt_mask = maybe_make_prefix_block_masks(args, bridge_input_mask) + model_t = sample_time( + ids.size(0), + args.min_t, + args.max_t, + device, + mode=args.t_sampling_mode, + power=args.t_sampling_power, + eps=args.t_sampling_eps, + ) + bridge = make_bridge( + args, + ids, + bridge_attn_mask, + model_vocab_size, + force_t=resolve_bridge_force_t(args, model_t), + force_corrupt_mask=force_corrupt_mask, + categorical_wrong_corpus_unigram_probs=categorical_wrong_corpus_unigram_probs, + ) + if loss_mask is not None: + model_attn_mask = attn_mask + if cond_seq_mask is not None and float(args.label_drop_prob) > 0.0: + drop = torch.rand(ids.size(0), device=device) < float(args.label_drop_prob) + model_attn_mask = attn_mask & ~(cond_seq_mask & drop.view(-1, 1)) + bridge.attn_mask = model_attn_mask + loss_t_weight = sample_loss_t_weight(args, model_t) + sync_grad = micro_step == args.grad_accum - 1 + sync_context = ( + trainable_model.no_sync() + if ddp + and isinstance(trainable_model, DistributedDataParallel) + and not args.ddp_static_graph + and not sync_grad + else nullcontext() + ) + with sync_context: + grad_enabled_before_rollout = torch.is_grad_enabled() + loss_state, rollout_train_applied, rollout_train_sample_mask = maybe_make_rollout_train_state( + args, + trainable_model, + bridge.state, + model_t, + bridge.attn_mask, + bridge.corrupt_mask, + ) + grad_enabled_after_rollout = torch.is_grad_enabled() + with torch.amp.autocast("cuda", enabled=use_amp, dtype=torch.bfloat16): + logits = trainable_model(loss_state, model_t, bridge.attn_mask) + logits_requires_grad = bool(logits.requires_grad) + loss_logits = logits + if args.prior_center_loss_beta > 0: + prior_state = make_prior_center_state( + args, + ids.size(0), + ids.size(1), + model_vocab_size, + device, + ) + with torch.no_grad(): + prior_logits = trainable_model(prior_state, model_t, bridge.attn_mask) + loss_logits = logits.float() - float(args.prior_center_loss_beta) * prior_logits.float() + if args.target_loss == "soft_ce": + if args.loss_t_weight_mode == "none": + raw_loss = masked_soft_ce(loss_logits, bridge.target_probs, bridge.corrupt_mask) + else: + raw_loss = weighted_masked_soft_ce(loss_logits, bridge.target_probs, bridge.corrupt_mask, loss_t_weight) + else: + if args.loss_t_weight_mode == "none": + raw_loss = masked_ce(loss_logits, bridge.ids, bridge.corrupt_mask) + else: + raw_loss = weighted_masked_ce(loss_logits, bridge.ids, bridge.corrupt_mask, loss_t_weight) + raw_loss_requires_grad = bool(raw_loss.requires_grad) + if args.meanflow_weight > 0: + if args.state_format == "prob": + current_probs = loss_state + else: + current_probs = loss_state.float().exp() + meanflow_loss = masked_meanflow_l2( + logits, + current_probs=current_probs, + target_probs=bridge.target_probs, + mask=bridge.corrupt_mask, + ) + total_loss = raw_loss + float(args.meanflow_weight) * meanflow_loss + else: + meanflow_loss = raw_loss.new_zeros(()) + total_loss = raw_loss + if float(args.rollout_train_prob) > 0.0: + total_loss = total_loss + zero_param_anchor(unwrap_model(trainable_model), total_loss) + loss = total_loss / max(1, args.grad_accum) + loss.backward() + + last_micro_step = micro_step == args.grad_accum - 1 + heavy_stats = args.full_train_stats or (step % args.log_every == 0 and last_micro_step) + collect_stats = rank_zero(rank) and ( + args.full_train_stats + or args.log_train_stats_each_step + or heavy_stats + ) + if collect_stats: + # Keep window logging cheap: aggregate accuracy/count diagnostics + # from every micro-batch, while expensive extras stay log-step only. + def scalar(x: torch.Tensor) -> float: + return float(x.detach().float().cpu()) + + batch_weight = float(ids.size(0)) + corrupt_count = bridge.corrupt_mask.float().sum() + stats = { + "loss": float(total_loss.detach().cpu()), + "loss__weight": scalar(corrupt_count), + "loss_recon": float(raw_loss.detach().cpu()), + "loss_recon__weight": scalar(corrupt_count), + "loss_meanflow": float(meanflow_loss.detach().cpu()), + "loss_meanflow__weight": scalar(corrupt_count), + "mean_model_t": float(model_t.mean().detach().cpu()), + "mean_model_t__weight": batch_weight, + "mean_corrupt_t": float(bridge.t.mean().detach().cpu()), + "mean_corrupt_t__weight": batch_weight, + "mean_loss_t_weight": float(loss_t_weight.mean().detach().cpu()), + "mean_loss_t_weight__weight": batch_weight, + "prior_center_loss_beta": float(args.prior_center_loss_beta), + "rollout_train_applied": float(rollout_train_applied), + "rollout_train_applied__weight": batch_weight, + "grad_enabled_before_rollout": float(grad_enabled_before_rollout), + "grad_enabled_after_rollout": float(grad_enabled_after_rollout), + "logits_requires_grad": float(logits_requires_grad), + "raw_loss_requires_grad": float(raw_loss_requires_grad), + } + with torch.no_grad(): + pred = loss_logits.detach().argmax(dim=-1) + attn_mask_f = bridge.attn_mask.float() + corrupt_mask_f = bridge.corrupt_mask.float() + attn_count = attn_mask_f.sum() + correct_all = ((pred == bridge.ids) & bridge.attn_mask).float().sum() + correct_corrupt = ((pred == bridge.ids) & bridge.corrupt_mask).float().sum() + if scalar(attn_count) > 0.0: + stats.update({ + "acc_all": scalar(correct_all / attn_count.clamp_min(1.0)), + "acc_all__weight": scalar(attn_count), + "corrupt_frac": scalar(corrupt_count / attn_count.clamp_min(1.0)), + "corrupt_frac__weight": scalar(attn_count), + }) + if scalar(corrupt_count) > 0.0: + stats.update({ + "acc_corrupt": scalar(correct_corrupt / corrupt_count.clamp_min(1.0)), + "acc_corrupt__weight": scalar(corrupt_count), + "loss_corrupt": float(raw_loss.detach().cpu()), + "loss_corrupt__weight": scalar(corrupt_count), + "wrong_frac": scalar(bridge.wrong_mask.float().sum() / corrupt_count.clamp_min(1.0)), + "wrong_frac__weight": scalar(corrupt_count), + }) + init_pred = loss_state.detach().argmax(dim=-1) + init_correct = ((init_pred == bridge.ids) & bridge.corrupt_mask).float().sum() + stats.update({ + "init_acc_corrupt": scalar(init_correct / corrupt_count.clamp_min(1.0)), + "init_acc_corrupt__weight": scalar(corrupt_count), + }) + if args.log_t_bin_stats: + total_corrupt = corrupt_count.clamp_min(1.0) + sample_t = bridge.t.detach().float().view(-1) + for lo, hi in zip(t_bin_edges[:-1], t_bin_edges[1:]): + if hi >= t_bin_edges[-1]: + sample_mask = (sample_t >= lo) & (sample_t <= hi) + else: + sample_mask = (sample_t >= lo) & (sample_t < hi) + pos_mask = bridge.corrupt_mask & sample_mask[:, None] + denom = pos_mask.float().sum() + if scalar(denom) <= 0.0: + continue + tag = f"{lo:.1f}_{min(hi, 1.0):.1f}".replace(".", "p") + correct_bin = ((pred == bridge.ids) & pos_mask).float().sum() + stats[f"acc_corrupt_t_{tag}"] = scalar(correct_bin / denom.clamp_min(1.0)) + stats[f"acc_corrupt_t_{tag}__weight"] = scalar(denom) + stats[f"corrupt_frac_t_{tag}"] = scalar(denom / total_corrupt) + stats[f"corrupt_frac_t_{tag}__weight"] = scalar(corrupt_count) + model_for_stats = unwrap_model(trainable_model) + out_linear = getattr(getattr(model_for_stats, "output_layer", None), "linear", None) + if out_linear is None: + out_linear = getattr(model_for_stats, "out_proj", None) + if out_linear is not None: + out_w = out_linear.weight.detach().float() + out_g = out_linear.weight.grad + stats["out_w_norm"] = float(out_w.norm().cpu()) + stats["out_g_norm"] = float(out_g.detach().float().norm().cpu()) if out_g is not None else 0.0 + if heavy_stats: + stats.update(summarize_batch( + loss_logits.detach(), + bridge.ids, + bridge.attn_mask, + bridge.corrupt_mask, + target_probs=bridge.target_probs if args.target_loss == "soft_ce" else None, + include_loss=True, + )) + if args.log_t_bin_stats: + stats.update(summarize_t_bin_acc( + loss_logits.detach(), + bridge.ids, + bridge.corrupt_mask, + bridge.t.detach(), + edges=t_bin_edges, + )) + stats.update({ + "init_gold_top10": float(masked_topk_acc(loss_state.detach(), bridge.ids, bridge.corrupt_mask, 10).cpu()), + "init_gold_top100": float(masked_topk_acc(loss_state.detach(), bridge.ids, bridge.corrupt_mask, 100).cpu()), + }) + if rollout_train_sample_mask is not None: + applied_pos = bridge.corrupt_mask & rollout_train_sample_mask.view(-1, 1) + kept_pos = bridge.corrupt_mask & (~rollout_train_sample_mask.view(-1, 1)) + stats.update({ + "rollout_applied_pos_frac": float((applied_pos.float().sum() / bridge.corrupt_mask.float().sum().clamp_min(1.0)).detach().cpu()), + "init_acc_rollout_applied": float(masked_acc(loss_state.detach(), bridge.ids, applied_pos).cpu()), + "init_acc_rollout_kept": float(masked_acc(loss_state.detach(), bridge.ids, kept_pos).cpu()), + "logit_acc_rollout_applied": float(masked_acc(loss_logits.detach(), bridge.ids, applied_pos).cpu()), + "logit_acc_rollout_kept": float(masked_acc(loss_logits.detach(), bridge.ids, kept_pos).cpu()), + }) + running.append(stats) + + if args.grad_clip > 0: + torch.nn.utils.clip_grad_norm_(model.parameters(), args.grad_clip) + optimizer.step() + scheduler.step() + if ema_state is not None and step >= args.ema_start_step: + update_ema_state(ema_state, unwrap_model(trainable_model), args.ema_decay) + optimizer.zero_grad(set_to_none=True) + if step % args.log_every == 0: + if rank_zero(rank): + avg = average_stats_window(running) if running else {} + elapsed = time.time() - start + print(" ".join([ + f"step={step}", + f"micro_steps={step * args.grad_accum}", + f"elapsed={elapsed:.1f}s", + f"lr={scheduler.get_last_lr()[0]:.6e}", + ] + [f"{k}={v:.4f}" for k, v in avg.items()]), flush=True) + running = [] + start = time.time() + if rank_zero(rank) and args.eval_every > 0 and step % args.eval_every == 0: + run_demo(args, unwrap_model(trainable_model), tokenizer, last_batch, device) + if rank_zero(rank) and args.save_every > 0 and step % args.save_every == 0: + save_checkpoint(save_dir / f"step_{step:07d}.pt", unwrap_model(trainable_model), optimizer, args, tokenizer, step, scheduler, ema_state) + save_checkpoint(save_dir / "latest.pt", unwrap_model(trainable_model), optimizer, args, tokenizer, step, scheduler, ema_state) + elif rank_zero(rank) and args.latest_every > 0 and step % args.latest_every == 0: + save_checkpoint(save_dir / "latest.pt", unwrap_model(trainable_model), optimizer, args, tokenizer, step, scheduler, ema_state) + + if rank_zero(rank): + save_checkpoint(save_dir / "latest.pt", unwrap_model(trainable_model), optimizer, args, tokenizer, args.total_steps, scheduler, ema_state) + if ddp: + dist.destroy_process_group() + + +if __name__ == "__main__": + main() diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_1p8_to_0p8_c256_raw_samples.txt b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_1p8_to_0p8_c256_raw_samples.txt new file mode 100644 index 0000000000000000000000000000000000000000..00a7f870619b68ba7f9388ffdd20c70a0f3ea0ab --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_1p8_to_0p8_c256_raw_samples.txt @@ -0,0 +1,230 @@ +cosine_1p8_to_0p8_c256 +{ + "type": "summary", + "name": "cosine_1p8_to_0p8_c256", + "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", + "step": 168000, + "decode": { + "kind": "categorical_fullvocab_temp_schedule", + "config": "cosine_1p8_to_0p8_c256", + "steps": 128, + "model_t_mode": "post", + "support_power": 1.0, + "semantic_power": 1.0, + "temp_start": 1.8, + "temp_end": 0.8, + "temp_schedule": "cosine", + "concentration_min": 1.0, + "concentration_max": 256.0, + "final_from": "state", + "update": "resample", + "n_samples": 64, + "seed": 20260508 + }, + "detok_genppl": { + "ppl": 44.48490287414872, + "nll_per_token": 3.7951498703549906, + "tokens": 9708 + }, + "diversity": { + "sample_entropy": 4.189465390460094, + "unique_tokens": 1853, + "token_count": 8192, + "distinct_1": 0.2261962890625, + "distinct_2": 0.6977116141732284, + "top_token_mass": 0.0614013671875 + } +} + +===== sample 000 ===== +[CLS] often be on the national stage in that final hour of time. [SEP] " no, " responded gov. bill clinton ' s campaign. [SEP] he had to pull back a couple of points on the crucial break for victory in the final game. [SEP] he was home before the day of the match. [SEP] " i wanted to encourage the children, a wider range of parents, to improve their lives. [SEP] i could probably get a better deal for a big time on every item i could give advice. [SEP] the number of the number on the person ' s credit card was down 8 percent to 541, 924, compared with the [SEP] + +===== sample 001 ===== +[CLS] term in june 2006. [SEP] the public is asked to contact with information about the incident in south yorkshire. [SEP] i just like to think they will understand their children ' s needs when they make the decision, we just laugh. [SEP] it is safe, he said. [SEP] blacksburg is one of the nation ' s top metro areas. [SEP] the third running race will be on the calendar by the end of the season and either team will have to enter the title race to buy the race rights. [SEP] that means tough times ahead. [SEP] following a 45 - minute hearing on tuesday night, the court decided it should bring the charges to [SEP] + +===== sample 002 ===== +[CLS] in the second half, which could save about 70 percent of its earnings per week if the n. a. a. tournament ' s east region leaves pittsburgh on january 12. [SEP] even with the economy enjoying the benefits of its own revival, this may still work. [SEP] united manchester united manager alex ferguson ' s only hope is to stay of the english champions league as arsenal advances back to the final of the fa cup and then play tottenham on sunday. [SEP] u. s. officials said farc and the u. s. had " made significant progress " to secure the release of the muwaz, a member of the revolutionary [SEP] + +===== sample 003 ===== +[CLS] post as liverpool failed to hold on to victory in the champions league. [SEP] ten people in the country have died in the same year, 53 people died, including 10 were killed and a third were killed in the haiti post - earthquake zone last year, haiti ' s government said. [SEP] this was much more expensive than microsoft ' s original predecessor, but there was a good risk of failure. [SEP] by comparison, about 9, 545 of the total cancer registry of the american cancer society of canada had an unintured death rate of 6, 692, reported in the american journal of health care. [SEP] this time, though [SEP] + +===== sample 004 ===== +[CLS] death. [SEP] the report said coll, the deputy and commander of u. s. forces in afghanistan, died during a raid in the early hours of the morning. [SEP] the driver was in the hospital but did not return quickly, and he was arrested on suspicion of murder saturday. [SEP] while 88 percent of the opposition members of parliament said they ' d do so, about 4 percent of adults say they would give up their own seat. [SEP] the story was told in the early sixties, however, bridget - - the way mary, the daughter of a spanish industrialist - - was not in paris. [SEP] if you can ' t [SEP] + +===== sample 005 ===== +[CLS] his head by taking a political edge from his head. [SEP] the central part of obama ' s plan is that the year - term will go from september 2009 to the final quarter of september 2009, the end of a critical 10 - year term of the bush administration. [SEP] at that time, he made the most detailed analysis of human tissue. [SEP] richard dasch, the attorney general who headed the government ' s financial information commission, contacted agency officials hours after the scandal to tell him about the scheme. [SEP] with only eight 3 - points from their four home games, mr. obama ' s team, playing on - the - court [SEP] + +===== sample 006 ===== +[CLS]. s. open. [SEP] " if you can ' t live in the house, you will be able to live and work together, either way or live with friends, " halderman said. [SEP] five u. s. troops were killed and a number of canadian forces had been killed when an afghan taliban and an afghan soldier were killed in operation marjah, a nato - led offensive earlier this month. [SEP] federer had broken back in the third set at 3 - 0 up and lost the first 2 - 1, coming from 6 - 0 down in the opening set before going 3 - 0 down. [SEP] it worked. [SEP] [SEP] + +===== sample 007 ===== +[CLS] scene when i was found by a local man, which was very difficult to access, which went up. [SEP] the weather changed late in the morning, but the airport remained open and the flight went on. [SEP] the win was toronto ' s first loss since winning at home on jan. [SEP] i love the games. [SEP] the company ' s founder, colin green, the chairman, was forced to quit his job late in the year in january by new management, and he eventually signed off with the group. [SEP] last week, israeli missiles hit civilians in gaza, south of the palestinian city... [SEP] today it appears that these [SEP] + +===== sample 008 ===== +[CLS] it was turned out to be. [SEP] she was sent to a unit at the medical institute in zurich, is celebrating her 100th birthday wednesday and is taken with her family to the hospital, the new york times. [SEP] founded in december 2006, david currently holds the company ' s executive board. [SEP] now, he is in a losing battle for the job. [SEP] when the deal was complete, more than 40 percent of the money calzaghe received from players around the world was for a fight. [SEP] thomas johansson finally won just his fourth straight french open title here on sunday in his nightmare opening round of the french open. [SEP] [SEP] + +===== sample 009 ===== +[CLS]. [SEP] police said a third arrested man was being questioned at about 1500 bst on monday. [SEP] and since i need two weeks ' time to start at 6. 00pm, it is not a case of a fire or a fire. [SEP] military officials were not met yet, it said. [SEP] it ' s, perhaps, part of the problem. [SEP] florida started the game in the second half by within 2 points, then with a 10 - 2 run to go ahead for the ninth time. [SEP] last friday, pakistani insurgents attacked a police station in kandahar, the city where al - sadr ' s militia is based [SEP] + +===== sample 010 ===== +[CLS] - of - 10 to take the lead to six. [SEP] " to know that. " [SEP] police said they are appealing to the man on a number 25 at the time. [SEP] the fire hit a house in the nearby city of chinoon, a city of 80, about 80 miles southwest of long - held land, costing tens of thousands of dollars. [SEP] she told the times that up to £1, 000 of a prize would be spent on training and training. [SEP] few would have contended that the extremist army general soon won the war against the taliban, who killed five people and carried out some 2, 000 terrorist [SEP] + +===== sample 011 ===== +[CLS] [SEP] " that ' s the quality of life, " he said. [SEP] in the six months before he died of cancer, the world ' s biggest mail chain, however, was struggling. [SEP] the company and the workers demonstrated inside the facility at yogurt stores inc. open at about 7 p. m. on thursday until about 11 p. m. [SEP] we ' ll go get there, too. [SEP] overall, more than 30 per cent of women, in their 50s and 60s, compared to 9 per cent each of american men, say if they support their women they ' re ready to reach out directly to their [SEP] + +===== sample 012 ===== +[CLS] was threatened after losing his job when he died. [SEP] his first response - - i think, hopefully - - has been to be wrong. [SEP] the 21 - year - old, writing the " liberal magazine " in the turkish daily akon, was shot near the scene of a separate fight, according to an e - mail of the lieutenants. [SEP] the england team soon was taken over by the english pack, who had only started playing two years earlier. [SEP] in a rare victory for the architect of his return to spain, sweden ' s syljki pelara, who has spent the past two seasons in the [SEP] + +===== sample 013 ===== +[CLS] world, " said lysacek. [SEP] don ' t go too far with someone who has a serious dream - - of taking the life out for her. [SEP] officers are investigating whether the victim was driving a motorcycle that used to provide information for police and a woman. [SEP] but this is not news. [SEP] the national bureau of economic survey said unemployment fell back to a current pace, at a slow 3. 9 percent. [SEP] the meeting would be the third anniversary of a new arts building on the university of new york city. [SEP] i ' m going to read it and it seems easy to hear it. [SEP] she ' [SEP] + +===== sample 014 ===== +[CLS] at age 30, according to the report, published in a report in the american medical association journal. [SEP] it ' s an a. hour g. o. g. night, and no less thursday. [SEP] if it ' s any indication, the want to have a special time. [SEP] henin became the first british player to lose and then lost to andy roddick in the first davis cup earlier this year. [SEP] it is the first time britain has issued an official policy statement on a one - in - one basis, and the new policy will be issued in the mid - months. [SEP] and she was probably on the verge [SEP] + +===== sample 015 ===== +[CLS] of america. [SEP] the researchers, who studied 30 women who had spent much of the first half of this week before returning home on tuesday, said that they needed more evidence about the link and deaths. [SEP] research also shows that 40, 000 more have been displaced in major markets like miami and new york. [SEP] i wonder how, though, she is no different from a high school english girl. [SEP] andy gray ' s report also looks at the economic extent of the recession. [SEP] the lakers cruised to 18 points, five rebounds in the first - half break and eight points in the second half and closing quarters for a 62 - [SEP] + +===== sample 016 ===== +[CLS] war that has about 1, 000 people dead since the sept. [SEP] the obama administration asked for the first time for the money to be spent on a health care reform bill, called the new public option. [SEP] " the bottom part is the one ' i ' m waiting for the surgery, ' not to say this, but i ' m not sure, you know, ' " he told a meeting of the world medical association in paris. [SEP] some of the big guys came up strong enough and out of school. [SEP] reports in france have suggested the 24 - year - old american is set to leave the club in london on monday [SEP] + +===== sample 017 ===== +[CLS] sales and are expected to return to the year - end market, which is not normal for consumers to turn out. [SEP] with $ 65 billion in profits in the quarter, based on gm ' s excess of debt, analysts have been pushing the two bondholders for some time to sell assets and remain the company. [SEP] button, on the other hand, presented himself, convinced that he had come in for toyota to defend his retirement, with a self - inflicted loss of his own not long after the race had ended. [SEP] three british soldiers have been killed at a military base near a town in the north west. [SEP] a high - [SEP] + +===== sample 018 ===== +[CLS] national revenue and left hundreds of thousands of workers, out of more than 100, 000 employees living in health care. [SEP] over a million units in the first half of the decade. [SEP] the company ' s independent executive committee will vote for the executive executive order. [SEP] if you think time has been loosed, you can stand it up and do it. [SEP] we learned over the weekend that the men were believed to have lost their own lives. [SEP] he also defended his ejection, saying anyone on the right side should be given a choice when deciding whether to have their son taken to the right. [SEP] i wanted to be [SEP] + +===== sample 019 ===== +[CLS] st. louis hit three runs in four innings and needed two runs to get to a loss by allowing a hit in two innings. [SEP] he said : " i was feeling a little tired but arrived at 10am yesterday. [SEP] by contrast, england were very stingy in the first over and were beaten 25 - 0 for 20 runs. [SEP] the core of it is not not the us, but our government, " she said. [SEP] it ' s day five of summer. [SEP] the man had a night ' s sleep, and was forced to call in his father again. [SEP] milwaukee starter brian roberts started the rally with a goal [SEP] + +===== sample 020 ===== +[CLS] said friday. [SEP] but then my son asked me not to drive him to college, as he would make sure i could go anywhere. [SEP] scotland are now 30 points behind the second - placed welsh in next weekend ' s final match with wales ' s scarlets. [SEP] don ' t give up, after all. [SEP] so then go to come and go, " he said. [SEP] the long hours were light, the morning was always open. [SEP] in iran, children are scared about going through internet checkpoints at home. [SEP] but for those who are struggling to be convinced in their faith that it is not in the future to [SEP] + +===== sample 021 ===== +[CLS] the school year. [SEP] " but it ' s important not to understand the meaning of a brand new electronic music, " she told reuters news on friday. [SEP] even though the fbi discussed his new relationship from 2003 to december 2002, the television star returned to the hospital he gave up in january. [SEP] the company said it aimed at improving control and performance. [SEP] while he has spent some time in india he is living in the middle east. [SEP] " she is planning to become the star witness of the counter - trial. [SEP] last year ' s ruling party congress gave the country ' s ruling party, a popular party lead. [SEP] [SEP] + +===== sample 022 ===== +[CLS] took over... [SEP] " the primary result of the network is they ' re going to prepare him for the show. [SEP] you don ' t have much for the georgians, " he says. [SEP] i said i watched his volt only last year but now he ' s seen less of this opportunity. [SEP] but this century has come to me. [SEP] but he still has a tough road ahead to the playoffs, with more focus on his first year in the national football league. [SEP] he told the washington post, while answering few questions, that the utility would cut nearly 40 hours and lay off more than 120 staff. [SEP] + +===== sample 023 ===== +[CLS]. [SEP] but in mid - 50s terms, they would probably do so this year. [SEP] by mid - seventies, he looked like for british sports fans - - the road was long and quite popular. [SEP] they were arrested. [SEP] " the crew on the plane was flying at a safe distance on the day of the crash because i saw the aircraft and the weather that they made, " the safety board said. [SEP] yet for a month of the week since the baby ' s release - - a milestone that may be in doubt - it was no surprise that something was so good on him. [SEP] but over the years, some [SEP] + +===== sample 024 ===== +[CLS] country. [SEP] this figure excludes the combination of measures to prevent the recession and a current increase. [SEP] but given mr. brown ' s political and political future labour will ask the government to reconsider the political consequences of the war in afghanistan, a position that could ultimately force mr brown to carry on his own precipitous position as the party ' s overall leader. [SEP] adapted from a year ' s study, led by dr philip saull of the college of neurosteine institute at the university of liverpool, davis ' s latest finding was further evidence of increasing the development of a " significant range " of the [SEP] + +===== sample 025 ===== +[CLS] school meals. [SEP] a teacher and mentor said the schools should tell children teachers and parents give them the chance to meet their school ' s school standards. [SEP] however, they aren ' t sure about their stance yet. [SEP] even though i ' d be lost because of my love to me, i can ' t move further forward. [SEP] i can definitely say that anyone is being hospitalised now, " he said. [SEP] murray, however, came out of the tournament, his shot make - up getting better or worse. [SEP] another contender, philip hampton, is chairman of fairbridge asset management, the retail and financial services group that [SEP] + +===== sample 026 ===== +[CLS], " brickland said in an interview at the time and asked a team of three university researchers to assess the results in the pages of the journal nature. [SEP] " we have been focused and focused, with what they want to do and what ' s going to happen with the players and with the players. [SEP] paramedics responded to the incident, about 8 a. m. [SEP] the captain of french rival air france arrived wednesday at the site of an unmanned air lander, which went down on a missile launch in the eastern city of brasilia, it said. [SEP] the company found the benefits of technology and transparency in its [SEP] + +===== sample 027 ===== +[CLS] a second nuclear test. [SEP] november 8, 2 - 2 and is due to change in december 2008. [SEP] both mr biden ' s wife, vice - president barack obama, are now members of the international monetary fund. [SEP] the latest round of injuries to aston villa and newcastle were missing earlier, according to the paper, while stoke did not appear to prove to be much better and are more likely to move forward, widely believed to include the new manager, steve wilson. [SEP] it is believed the ship remained in control for five minutes before it was freed by a lifeboat. [SEP] boston was 2 - 2 last season, and became [SEP] + +===== sample 028 ===== +[CLS] about 33 percent lower. [SEP] why isn ' t it important to be fiscal? [SEP] during the second - innings innings, lee produced 36 impressive runs of 50, 70 and three centuries, but was held out by pacemen andrew flintoff and paul collingwood ' s 79 with the chance to secure a place with england ' s failure to win this saturday ' s series. [SEP] he told the guardian that the risks to taxpayers are being increased by the recession. [SEP] tens of thousands of men and women, many from the past served in iraq, remain homeless. [SEP] last year ' s 38 - 22 win, three in a row to the [SEP] + +===== sample 029 ===== +[CLS] - when he spoke in the middle of the 20 or so years of his political career. [SEP] michael jackson ' s publicist also told the associated press thursday that he had suffered heart attacks and had had diabetes and heart disease and suffered a severe case of asthma. [SEP] " a lot of people lose their jobs to cope and very large numbers of those people are supposed to be pulling back out of their jobs. [SEP] the reports said more economic problems will remain from last year, including the u. s. housing market, now the industry ' s top safety issue. [SEP] a new analysis based on the survey, which includes children, was [SEP] + +===== sample 030 ===== +[CLS] they have lost five of six games this season but have twice failed to win as many of 12. [SEP] there were few details about the extent of casualties, which had spread over the last five days and continued into the end of the month. [SEP] they won ' t, by the way, be gone. [SEP] the 2004 u. s. national institutes of health said nearly 2, 000 children are non - medics ; 20 percent of parents have a serious blood - borne disorder, 35 percent of adults and patients have severe anti - viral problems who require a long term of treatment. [SEP] when the series stands it will be the series [SEP] + +===== sample 031 ===== +[CLS] i can, and as soon i get it, " she said. [SEP] not so far. [SEP] despite being tied at 2 - 1, the red sox have lost in five and started a game skid. [SEP] their father, hamid, was killed, said ali mohammad, governor of central helmand province in afghanistan, aged 23 and 21 and accused of sexually assaulting ahmad al - muhammad, a member of the british mujahed al - qaid in september 2006. [SEP] " i think there will see an increased deterioration in the market and general economic conditions. [SEP] " what it was a while to do, it was a [SEP] + +===== sample 032 ===== +[CLS]. [SEP] and i can expect a lot sometimes when a lot of people say they don ' t care, and that they pick the woman who is right, but they also want more specifics. [SEP] " and, i don ' t know what time they ' ll have to play because it ' s going to be a tough day, " she told reporters. [SEP] the deal this time is one of the assets that only gn calls for bankruptcy, and will have serious consequences of being sold at all if they are not sold, the swiss - company said. [SEP] we can be back in a very long time. [SEP] this very [SEP] + +===== sample 033 ===== +[CLS]. [SEP] the losses came to £9. 056 per share yesterday, up by 25 per cent to $ 9. 01. [SEP] so you want to go home on the beach? [SEP] now, that ' s more likely to happen at all. [SEP] the american number one at the 2001 french open, when he had a season - high 73, held a lead of 21 to qualify for the french open last year. [SEP] it is unclear, however, what the current manageable condition of his injury. [SEP] " it ' s probably not worth what it takes to ( ( to ) see a turning point in the economy. [SEP] [SEP] + +===== sample 034 ===== +[CLS] champion cincinnati on friday to finish the opening round of the world series. [SEP] data released yesterday showed the overall energy retail sector, the key measure of inflation, rose by 4. 3 per cent in september to 13, 39. 5 - significantly higher than the 10 per cent rise in the first quarter. [SEP] the number of people being treated there - - who were actually killed - - was very high, " he said. [SEP] there is a danger that this cannot be avoided, as the presidency of the cabinet has conducted a full review of its policy due to raise the questions over the issue of jerusalem and palestinian refugees. [SEP] shara [SEP] + +===== sample 035 ===== +[CLS] for children ' s new governor of south carolina. [SEP] former law enforcement officials who spoke on trial were asked to brief members of the jurors on the effectiveness of obama ' s anti - terrorism strategy. [SEP] about 2, 000 h1n1 flus die each year, including 66 in china compared with 200 in 2006, according to the people ' s health, an annual report published in japan. [SEP] dr salmond has a real belief that had scotland 6 - 0 with three men and enough of a result, it was lost. [SEP] i do not believe that what should have happened to the people in this country is due [SEP] + +===== sample 036 ===== +[CLS] should raise the issue of zimbabwe ' s election, the opposition said this year. [SEP] mcgeown caught 22 times for 102 yards. [SEP] i would read this article if the government wasn ' t going to bail this guy. [SEP] britain ' s serena williams and seven - time venus williams take on the russians in a women ' s singles final and they booked a place in the women ' s singles and men ' s doubles. [SEP] although some democrats say the speech is viewed as " highly important, " the governor has publicly defended his budget plan. [SEP] we have another budget today. [SEP] however, the company decided to make a move [SEP] + +===== sample 037 ===== +[CLS] urged residents to work around the scene and try to help those affected. [SEP] public health experts called the hot line on the march and asked for information about the outbreak and general information about the issue. [SEP] nadal came up with only his fifth game and a single set point in his third set in a break of 45 minutes. [SEP] it brings the total number of deaths to some of the most violent violence in afghanistan since the beginning of war in 2001 and afghanistan in 2001 and 2003. [SEP] the origins of the figures have been never officially confirmed. [SEP] the magic, which had the first - half series at home saturday, was led by [SEP] + +===== sample 038 ===== +[CLS] to be up there with this pitch, " he said. [SEP] i think i ' m saying that i had a problem not just getting out of politics now. [SEP] the paper business is in mess. [SEP] biologists also need to focus more on their family relationships, physical biology and the child ' s educational and social status. [SEP] if they still get a job, they would have to work behind desks at the government. [SEP] it is not a task - it doesn ' t have the time or resources, it can be a bit of it, he said. [SEP] david hoon, the liberal democrat health secretary, today accused [SEP] + +===== sample 039 ===== +[CLS] in simpson ' s murder trial. [SEP] " it ' s fair to say we are going to rest our time, " he said. [SEP] with only five matches remaining in this tournament and 10 games to go before thursday ' s semi - final against 6 - times spain, the 12th - seeded williams, ranked no. 4, is on her way into the match in the midst of the frenchwoman ' s hopes of her first consecutive open title, fighting back a set at the french open. [SEP] in 2006 - 2000, the research group compared the risk of one family of heart disease and the combined risk of one major corona heart disease [SEP] + +===== sample 040 ===== +[CLS] elementary school student in st. louis. [SEP] he was dead at the house, and his family was arrested on wednesday. [SEP] if the present title is out of the race then a win would keep them from going for five out of six from sunday and going on to a disappointing week. [SEP] authorities said two helicopters spotted the plane late friday morning, when it was moving from the eastern texas, mississippi, oklahoma and louisiana to san diego, on the gulf coast. [SEP] laho was celebrating his return to form at a 26 - year high when he joined villa from sunderland in june 2008, after a difficult season with the club. [SEP] [SEP] + +===== sample 041 ===== +[CLS] part of the city and hope for one another. [SEP] the federal government should do more than it to help. [SEP] one will find that even though we are facing a military challenge, that we could wait for him in the race. [SEP] now three years later, the results of their campaign in this country will ultimately lie on the verge of having the war in the hands of one new nation. [SEP] " but this year some of the patients treated in the study are known who have been diagnosed as having post - traumatic stress syndrome ( ptsd ). [SEP] the company also said it had seen the delay to its fourth - quarter earnings to [SEP] + +===== sample 042 ===== +[CLS]. [SEP] the germans continued to play well as young schalke was followed by the netherlands with equalise. [SEP] she accepted the prime minister ' s resignation by e - mail to make a statement, which is being done to protect her children and allow time to see the prime minister. [SEP] the poll of 900 women conducted across cities across the united states. [SEP] the couple went off from london to the us. [SEP] safina then thrashed her serve earlier in the match but safina held her serve and held a 3 - 0 lead against dementieva. [SEP] a lot of wh ' s don ' t [SEP] + +===== sample 043 ===== +[CLS] workforce, at a capacity of about 300, 000 tonnes per year. [SEP] he said the man would not be treated for anti - viral drugs until a person is injured. [SEP] the hurricanes won 10 consecutive titles from 2001 and 2005 from 1997 to 2001, an improvement on a run of first - round showings in 2005 and 2004 and last month. [SEP] the woman was not following the target. [SEP] this is far more pronounced precisely because of the economic rationality that we have been before in the past. [SEP] mr jal also won the right to talk to the health services about the safety of their private pensions. [SEP] what else do [SEP] + +===== sample 044 ===== +[CLS] americans are still surviving on the job after making their payments, and 23 percent of their money is safe. [SEP] he escaped on $ 1, 600 and his door broke open before his arrival. [SEP] the forces were ready to go after the wounded in the nearby city of babil. [SEP] the fourth set was 10 - 0 from the start. [SEP] it ' s great to be able to be a professor, a writer and a environmentalist. [SEP] then, it seems to be clear that there is no market in the media, the press or the government. [SEP] the accident occurred about a - year - old industrial park in southern florida [SEP] + +===== sample 045 ===== +[CLS] before being left behind his dog on sunday afternoon, walking to a beach. [SEP] hospital officials said they had found that the 73 - year - old had fallen below the medical community ' s standards, and the second death had been confirmed at the university of maryland hospital in the maryland area of baltimore city near baltimore. [SEP] maybe they are not just now. [SEP] 28 at 19 west 14th street, chelsea ; ( 914 ) 242 - 304 - 3300, www. hotelplacet. com. [SEP] five weeks later, 78 - 78, they are a fourth - place team in their first major game. [SEP] at the end [SEP] + +===== sample 046 ===== +[CLS] joe biden ' s office is planning to take the issue to sen. edward m. kennedy, d - mass., on the call. [SEP] for much of this week, he caught up in a super series, winning four games, including a 2. 3 - yard loss to the washington redskins. [SEP] she broke out and beat williams six times in the second set. [SEP] permira ' s children - - and grandchildren - - live in a caravan of sorts with her husband, wenson, a son of the queen. [SEP] but they insisted they were constructed but rather " mean " - - as they [SEP] + +===== sample 047 ===== +[CLS] now seems to be like a try. [SEP] britain ' s political leaders believe the talks of a deal are getting under way and british prime minister gordon brown has agreed to put together a joint government. [SEP] it would have been tough for me to spend some with staig ' s life. [SEP] many people were being swarmed by police traffic lights as they approached the back of their vehicle and then entered into their homes about 8 : 30 a. m. [SEP] but the money is being added over the short term to three elementary and secondary schools, helgate in tendon, corby and basildon in south belfast. [SEP] + +===== sample 048 ===== +[CLS] a little bit away. [SEP] it ' s a production of nbc ' s classic " billy the tv show, " abc and the hollywood standard reported sunday. [SEP] that means there is a simple idea on time. [SEP] " she was a shot and wounded in iraq, lying on the ground, " he says, with a telly tale of the back home. [SEP] while saturday ' s game really can ' t have had a difference, the penguins will have six big games for each team in the round series, since they go home straight and at 6 : 45 a. m. their only time in the playoffs. [SEP] the swiss [SEP] + +===== sample 049 ===== +[CLS] in the nation ' s top income race. [SEP] for mr. mccain, the selection of the best candidate for the presidency has been among the most important during his administration. [SEP] the record is unclear what the deal was worth. [SEP] u. s. opposition leader michael fukuda said on thursday that global warming is more serious, doubting the effectiveness of a new government for the united states. [SEP] the interior ministry said 35 militants appeared to be targeted in the attack. [SEP] it has started 15 - 7 after winning the first series in 2001, and then starting the season at seattle. [SEP] but there ' s no point being a [SEP] + +===== sample 050 ===== +[CLS] were living on a very healthy life. [SEP] a new pre - budget report is due by close of business on friday 28 march and that action should not occur before february 9, the report said. [SEP] paul coulis, 26, of cicero, ill., was charged in december 2005 of the death of his first wife, a former heart surgeon. [SEP] saban finished second, weighing only 15. 00 pounds in weight, and he was the american open champion. [SEP] what ' s wrong with a climate change report on the earth? [SEP] beijing, china - china ' s massive reserves of high energy crude oil may have been [SEP] + +===== sample 051 ===== +[CLS], he said. [SEP] he left the stage and announced that he would miss the 2008 event. [SEP] i was a family member and wanted to live up to it. [SEP] goldman sachs group inc., the world ' s largest bank, this week cut the company ' s debt burdens, even as the impact of a housing slump and the slowing of the chinese economy plunged the third - largest economy into recession. [SEP] looper went 7 for the cardinals ' first save in three days, giving up three hits and one run in six innings. [SEP] she was aiming to be first overall in the first round of 2007. [SEP] since 2002 [SEP] + +===== sample 052 ===== +[CLS] deficits. [SEP] " we are ready here, you can get out there a few miles. " [SEP] speaking to abc shortly after she made her case monday, johnson said the boy was attacked by a mother who had known about his son and was in the hospital at about noon after his death. [SEP] in other words, a team of researchers said they have not been overlooked by congress. [SEP] a medical team has begun its investigation into the cause of the deaths. [SEP] st. paul ' s in - house headquarters was based in stamford, conn., and the former global head of its california - based advertising business. [SEP] the [SEP] + +===== sample 053 ===== +[CLS] slow, fast growing economy. [SEP] both parents were forced to sign an agreement on their own, and the parents moved to the us in 2006. [SEP] on a trip in 2004, a telephone interview at the time, he gave a hug and before i got to get down he said that " i was the driver and he gave up crying " when i was trying to take a seat. [SEP] but they are hardly alone. [SEP] " the government is faced with a shrinking population... [SEP] the story of the incident is revealed in october 18. [SEP] trying to change people ' s minds, the conservatives suggested that the economy would be [SEP] + +===== sample 054 ===== +[CLS] a review of data on home lending, the mortgage - finance arm. [SEP] he made the emotional visit to the national congress for an interview on his health at cornell. [SEP] until monday ' s end, a conservative government from the south has not formed a committee to do so. [SEP] the area is being closed following the collision which happened in nottingham at about 2000 gmt on saturday, police said. [SEP] there are few more surprises in the bock - luber, the first book for the motorist in his self - published memoir. [SEP] that ' s up from a revised figure last week after a survey of the economy showed the [SEP] + +===== sample 055 ===== +[CLS] on wall street. [SEP] french president nicolas sarkozy is set to meet with french officials friday so that his doctors can tell if she had a heart attack sunday. [SEP] according to the women ' s player report of the web site, only five european women americans have played in the asian championships since losing in last year ' s final in the same year. [SEP] williams, 30, and third - seeded venus williams are to be playing in tokyo this wednesday. [SEP] " i ' m so let down in paris and wish i could choose to play my way through, " davydenko said. [SEP] ( cnn ) - a population of [SEP] + +===== sample 056 ===== +[CLS] any causes and whether it was possible he would die. [SEP] i could play for the club. " [SEP] wenger has now stated that he believes he has a good player and that van persie may not be able to stay close to the mark when they meet on monday. [SEP] the former chairman ' s son, birmingham chairman and chairman bob diamond, has lost a third management job. [SEP] mr mccain tried to turn a re - election into a blow to incumbents, presenting himself as one of his core supporters even at his side. [SEP] no part of us, either, is better off for really.... [SEP] it [SEP] + +===== sample 057 ===== +[CLS] of kunduz, which killed 40 people and injured six others in much of the same district of hamdan district, hospital official mohammad khan told the afp news agency. [SEP] sam white, 45, of hartleb island, virginia, lived a shared loss, despite an illness taking his own life, the times daily union reported on tuesday. [SEP] the 29 - year - old 23 - year - old fell into a hole in a net and fired head - to - head over the head of a fence post on boxing day. [SEP] it was one of atlanta ' s few points to secure a two - goal goal with a [SEP] + +===== sample 058 ===== +[CLS] to lead to the cancellation of monday ' s game, and it almost felt like a surprise. [SEP] american express inc., part of citigroup inc., said this week it plans to cut about 1, 500 workers worldwide in the collapse of u. s. automaker. [SEP] j. j. holmes simply couldn ' t hold anything back after playing for his second - round lead at the british open against greg haas, who had to play three shots on the last end of the first round. [SEP] now, too, he has played a title in a u. s. open since 2005 ). [SEP] there is no [SEP] + +===== sample 059 ===== +[CLS] those who died in the study. [SEP] he later apologised only that the contents of his bag had been opened. [SEP] they put wales into the lead with a goal after three minutes 30 seconds before half - time. [SEP] although edwards had made his own statements and statements during the trial, he admitted that he had become " almost a liar. " [SEP] the taliban ministry said one person was killed and eight were wounded when the u. s. - led coalition forces were led by more than 2, 000 troops. [SEP] there ' s no doubt about the election at a time when everyone was on board. [SEP] the attack on [SEP] + +===== sample 060 ===== +[CLS], after north carolina had made their way in the first half, while kansas held it. [SEP] they go to a hotel hotel to watch the event. [SEP] green groups were outraged at the threat of damage to safety and health of the public in saying the report was " illegal. " [SEP] but on that same day, the time at the start of the week that that excitement might be heightened by the time democrats will be able to hold senate elections on sept. [SEP] by the end of the year, 42 per cent said they were reletting again, and the annual figure was considerably higher than it was the same. [SEP] last year [SEP] + +===== sample 061 ===== +[CLS] force. [SEP] stand - in australian captain james tremlett is expected to make collingwood ' s international debut but hopes for a better series when england play india against australia in kingston park on tuesday. [SEP] the vote, known as an open - ended super primary primary for the republican party, allows democrats in the 10 west coast states, to decide the state convention held in february. [SEP] police later found a squad car running from his house, but after a short search, they were not able to find the man ' s body inside. [SEP] the decision, regarded as the mets ' out - of - season biggest, was won the first [SEP] + +===== sample 062 ===== +[CLS] court, he said. [SEP] england needed ' s best run of 140 before swann had dropped one for the first wicket and one could be saved by anderson, who had lost his own victim for a wicketless stand. [SEP] the governor is one of the main subjects of a series of suicide and bomb attacks blamed on the nation ' s government. [SEP] the federal trade committee had already approved a review of bonuses in the next three years. [SEP] but klatten said it appeared it was possible, largely because of an injury that plagued the team as early as saturday. [SEP] garginka is not expected to have the political goal [SEP] + +===== sample 063 ===== +[CLS]urers. [SEP] the band ' s name and name were not released according to the results of the survey sunday. [SEP] there were no last - minute chances, but not nearly enough, as a header from distance from mark brown ' s first goal of the season did real damage for ferguson ' s side. [SEP] that timing, however, was unclear : shaun wright - phillips has scored a penalty goal for liverpool that could end the chances of liverpool ' s defeat of the czechs in wednesday ' s final game. [SEP] it is both cheap and cost effective. [SEP] i want to explain the reasons that led to sacrificing the [SEP] + diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_2p0_to_0p8_c1024_scored.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_2p0_to_0p8_c1024_scored.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3fc837750d592b5d55fec0a3ca78938b81796fd4 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/cosine_2p0_to_0p8_c1024_scored.jsonl @@ -0,0 +1,65 @@ +{"type": "summary", "name": "cosine_2p0_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_2p0_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 61.62004678653673, "nll_per_token": 4.120987252443416, "tokens": 9963}, "diversity": {"sample_entropy": 4.226612023722781, "unique_tokens": 1808, "token_count": 8192, "distinct_1": 0.220703125, "distinct_2": 0.68873031496063, "top_token_mass": 0.048095703125}} +{"type": "sample", "index": 0, "raw_text": "[CLS] security atjaki in iraq, with four others who had been ordered to leave. [SEP] washington - - bill clinton ' s father joe biden tried to make obama a major hit, wining his democratic support in his home state and republican rivals for bigger control in the west of the country. [SEP] the survey, which involved young adults, found 44 percent of parents choose to raise their children. [SEP] the no. ranked player broke again for the next set to go 1 - 6 and 0 - 5 up. [SEP] the missiles struck in the southern city of salar province and in khost, the capital of hormuz [SEP]", "detok_text": "[CLS] security atjaki in iraq, with four others who had been ordered to leave. [SEP] washington - - bill clinton's father joe biden tried to make obama a major hit, wining his democratic support in his home state and republican rivals for bigger control in the west of the country. [SEP] the survey, which involved young adults, found 44 percent of parents choose to raise their children. [SEP] the no. ranked player broke again for the next set to go 1 - 6 and 0 - 5 up. [SEP] the missiles struck in the southern city of salar province and in khost, the capital of hormuz [SEP]"} +{"type": "sample", "index": 1, "raw_text": "[CLS] lost to nalband and blake for the wimbledon title in 2006, while sharawantvili and serena williams, lost to henin after losing twice in 2004 - 6 before losing 6 - 7, 6 - 0, 7 - 6 last year. [SEP] the win takes a point to four points from manchester city in the premier league, while the champions need 10 points from leaders chelsea in the english premiers, although the blues remain 2 - 2 if they are to secure the title. [SEP] no one was available to comment, \" he said in a telephone interview. [SEP] when her mother died in 2003, she had lost a [SEP]", "detok_text": "[CLS] lost to nalband and blake for the wimbledon title in 2006, while sharawantvili and serena williams, lost to henin after losing twice in 2004 - 6 before losing 6 - 7, 6 - 0, 7 - 6 last year. [SEP] the win takes a point to four points from manchester city in the premier league, while the champions need 10 points from leaders chelsea in the english premiers, although the blues remain 2 - 2 if they are to secure the title. [SEP] no one was available to comment, \" he said in a telephone interview. [SEP] when her mother died in 2003, she had lost a [SEP]"} +{"type": "sample", "index": 2, "raw_text": "[CLS] group ' s founder, said her family had been unsoriented and was now confident that the girl is safe. [SEP] at the french open, the 30th seed lost 1 - 6 6 - 4, 6 - 4 ( 1 / 7 ) in the quarterfinals. [SEP] the gunners, who lost liverpool ' s opening league final chelsea, arsenal, chelsea, tottenham and arsenal, lost, 2 - 0 to fulham, and then dropped out. [SEP] it would be nice to defend his title before the tournament but he ' s a big player, and be very optimistic about the prospect of losing, he won ' t be playing the game [SEP]", "detok_text": "[CLS] group's founder, said her family had been unsoriented and was now confident that the girl is safe. [SEP] at the french open, the 30th seed lost 1 - 6 6 - 4, 6 - 4 (1/7) in the quarterfinals. [SEP] the gunners, who lost liverpool's opening league final chelsea, arsenal, chelsea, tottenham and arsenal, lost, 2 - 0 to fulham, and then dropped out. [SEP] it would be nice to defend his title before the tournament but he's a big player, and be very optimistic about the prospect of losing, he won't be playing the game [SEP]"} +{"type": "sample", "index": 3, "raw_text": "[CLS] high as $ 4. 93 before the share price falls early thursday. [SEP] they give a survey, two days before their first year, to 2, 000 students, mostly parents and postgraduate students who would like to spend more of their time at the university of london. [SEP] but it was a very emotional task. [SEP] japan ' s central intelligence agency said it was concerned that some people might have died from swine flu. [SEP] but shinichiichi sasaki, chief of toyota and the company ' s chief executive, shinaki sekumi, were skeptical, while giving the company more voice when it comes to profitability, saying [SEP]", "detok_text": "[CLS] high as $4. 93 before the share price falls early thursday. [SEP] they give a survey, two days before their first year, to 2, 000 students, mostly parents and postgraduate students who would like to spend more of their time at the university of london. [SEP] but it was a very emotional task. [SEP] japan's central intelligence agency said it was concerned that some people might have died from swine flu. [SEP] but shinichiichi sasaki, chief of toyota and the company's chief executive, shinaki sekumi, were skeptical, while giving the company more voice when it comes to profitability, saying [SEP]"} +{"type": "sample", "index": 4, "raw_text": "[CLS] ' s growth comes from a plan thatcipates a stronger fiscal path. [SEP] st. louis took the lead with a walk in the second top of the ninth on lee in the fifth, but the pirates did not return it. [SEP] renault gp, robert kubica, british drivers championship champion lewis hamilton, australian mark williams in the world open winner ' s championship, british champion lewis hamilton in the bmw oracle world championship, french open champion thomas klvin in the belgian grand prix open in italy, german open open champion david simon in the netherlands and the swiss super - g in belgium. [SEP] if you can afford to [SEP]", "detok_text": "[CLS]'s growth comes from a plan thatcipates a stronger fiscal path. [SEP] st. louis took the lead with a walk in the second top of the ninth on lee in the fifth, but the pirates did not return it. [SEP] renault gp, robert kubica, british drivers championship champion lewis hamilton, australian mark williams in the world open winner's championship, british champion lewis hamilton in the bmw oracle world championship, french open champion thomas klvin in the belgian grand prix open in italy, german open open champion david simon in the netherlands and the swiss super - g in belgium. [SEP] if you can afford to [SEP]"} +{"type": "sample", "index": 5, "raw_text": "[CLS] ferrari ' s veteran felipe massa of italy retained the fifth tour title, while ferrari ' s felipe massa and team - mate fernando alonso both will focus on the race, while kim raikkotel ' s fernando alonso ended his his title at gly gp. [SEP] tottenham sit fifth, just three points below - - and fourth behind play - offs birmingham and middlesbrough and lurking within five points of ferguson ' s men, while the gunners remained on top of the reigning fa cup champions and points with third - bottom middlesbrough and just two points behind their city rivals wigan, who lie fifth at 4. 15pm. [SEP] \" there is [SEP]", "detok_text": "[CLS] ferrari's veteran felipe massa of italy retained the fifth tour title, while ferrari's felipe massa and team - mate fernando alonso both will focus on the race, while kim raikkotel's fernando alonso ended his his title at gly gp. [SEP] tottenham sit fifth, just three points below - - and fourth behind play - offs birmingham and middlesbrough and lurking within five points of ferguson's men, while the gunners remained on top of the reigning fa cup champions and points with third - bottom middlesbrough and just two points behind their city rivals wigan, who lie fifth at 4. 15pm. [SEP] \" there is [SEP]"} +{"type": "sample", "index": 6, "raw_text": "[CLS] ' s final season. [SEP] elsewhere, eighth - seeded blake, no. 11 federer, no. 7 montanes 6 - 2, 7 - 3 6 - 5, 11 - 7, 4 - 4, 6 - 4. [SEP] the sixth - 21 seeded nikolay davydenko upset seventh seed david cuer 6 - 7 7 - 6, and while no. 30 andy murray 7 - 6, no. 5 roger federer downed australian open champion andy murray ( 7 - 5 ), frenchman arnaud clement 7 - 6, france ' s 6 - 2 7 - 3, and defending champion novak djokovic also advanced. [SEP] [SEP]", "detok_text": "[CLS]'s final season. [SEP] elsewhere, eighth - seeded blake, no. 11 federer, no. 7 montanes 6 - 2, 7 - 3 6 - 5, 11 - 7, 4 - 4, 6 - 4. [SEP] the sixth - 21 seeded nikolay davydenko upset seventh seed david cuer 6 - 7 7 - 6, and while no. 30 andy murray 7 - 6, no. 5 roger federer downed australian open champion andy murray (7 - 5), frenchman arnaud clement 7 - 6, france's 6 - 2 7 - 3, and defending champion novak djokovic also advanced. [SEP] [SEP]"} +{"type": "sample", "index": 7, "raw_text": "[CLS] affected by the recession and made more serious choices about emily ' s inability to get her kids into school. [SEP] the nikkei index was closed higher at 2 percent. [SEP] german striker cech scored the goal in the second minute and german international thomas biel equalised in the 20th minute. [SEP] simon blake, seeded 40, lost almost three points, but lost only his serve, before soderling saw off a win over novak djokovic. [SEP] the netherlands ranked third overall, with losses against france, host australia, the netherlands, england, sweden, norway and japan. [SEP] the fact is the children are healthy and getting [SEP]", "detok_text": "[CLS] affected by the recession and made more serious choices about emily's inability to get her kids into school. [SEP] the nikkei index was closed higher at 2 percent. [SEP] german striker cech scored the goal in the second minute and german international thomas biel equalised in the 20th minute. [SEP] simon blake, seeded 40, lost almost three points, but lost only his serve, before soderling saw off a win over novak djokovic. [SEP] the netherlands ranked third overall, with losses against france, host australia, the netherlands, england, sweden, norway and japan. [SEP] the fact is the children are healthy and getting [SEP]"} +{"type": "sample", "index": 8, "raw_text": "[CLS] he was sold out in 2002. [SEP] russian safina, who won the australian open in her fourth round of the year, won the australian open for the first time in 2005 and 2002. [SEP] port - au - prince, new jersey ( reuters ) - wba delcova scored a shock victory against france ' s andy haye after his crushing victory at the french open de france on sunday, beating fellow holder joe calzaghe to earn points in a 4, 000 - meter bout knock - out on friday. [SEP] it was federer ' s fourth battle to reach the semi - finals of the french open. [SEP] [SEP]", "detok_text": "[CLS] he was sold out in 2002. [SEP] russian safina, who won the australian open in her fourth round of the year, won the australian open for the first time in 2005 and 2002. [SEP] port - au - prince, new jersey (reuters) - wba delcova scored a shock victory against france's andy haye after his crushing victory at the french open de france on sunday, beating fellow holder joe calzaghe to earn points in a 4, 000 - meter bout knock - out on friday. [SEP] it was federer's fourth battle to reach the semi - finals of the french open. [SEP] [SEP]"} +{"type": "sample", "index": 9, "raw_text": "[CLS]. [SEP] police said most of the man was taken by ambulance before 2000 bst on the evening. [SEP] although there have been 18 deaths in mexico in recent months, the number has dropped with the deaths to 36, or more dead. [SEP] a few friends had met her, it said. [SEP] it ' s goalie after atlanta took a 2 - 0 lead at the start of the last game thursday. [SEP] russia ' s metro areas have become chaotic and dangerous. [SEP] clothing increased by 1. 4 per cent and home retail sales increased by 1. 1 per cent, 3. 7 per cent and gasoline by 1. 7 per [SEP]", "detok_text": "[CLS]. [SEP] police said most of the man was taken by ambulance before 2000 bst on the evening. [SEP] although there have been 18 deaths in mexico in recent months, the number has dropped with the deaths to 36, or more dead. [SEP] a few friends had met her, it said. [SEP] it's goalie after atlanta took a 2 - 0 lead at the start of the last game thursday. [SEP] russia's metro areas have become chaotic and dangerous. [SEP] clothing increased by 1. 4 per cent and home retail sales increased by 1. 1 per cent, 3. 7 per cent and gasoline by 1. 7 per [SEP]"} +{"type": "sample", "index": 10, "raw_text": "[CLS] city of calcutta, where 2, 900 people died. [SEP] it is getting worse. \" [SEP] laursen added a third goal in the minute mark when the appeal of david dunn ' s header was disallowed as the club pulled ahead. [SEP] but there ' s nothing particularly certain about long - term prospects of a good player because of his less self - satisfied mind and his self confidence. [SEP] frenchman david montanes will face novak marlbis on sunday, while fifth seed nadal, the top seed and then the fourth seed, plays the top seed, nikolay safina and david gulbis, fourth. [SEP]", "detok_text": "[CLS] city of calcutta, where 2, 900 people died. [SEP] it is getting worse. \" [SEP] laursen added a third goal in the minute mark when the appeal of david dunn's header was disallowed as the club pulled ahead. [SEP] but there's nothing particularly certain about long - term prospects of a good player because of his less self - satisfied mind and his self confidence. [SEP] frenchman david montanes will face novak marlbis on sunday, while fifth seed nadal, the top seed and then the fourth seed, plays the top seed, nikolay safina and david gulbis, fourth. [SEP]"} +{"type": "sample", "index": 11, "raw_text": "[CLS] top - flight spurs claimed a 2 - 0 win over chelsea, who ended losing 2 - 0 at birmingham on saturday, to the hope of securing a fourth win, in the second half, after a run of indifferent draws saw a win away to west ham and arsenal lift them into the top half of the premier league. [SEP] louis marjane ' s goal opened the scoring half for west ham, who defeated league champions havantna on sunday, while reading ' s samaras came back from injury to marouane ' s angled pass, just one minute from the international break. [SEP] overall, none of the top 10 [SEP]", "detok_text": "[CLS] top - flight spurs claimed a 2 - 0 win over chelsea, who ended losing 2 - 0 at birmingham on saturday, to the hope of securing a fourth win, in the second half, after a run of indifferent draws saw a win away to west ham and arsenal lift them into the top half of the premier league. [SEP] louis marjane's goal opened the scoring half for west ham, who defeated league champions havantna on sunday, while reading's samaras came back from injury to marouane's angled pass, just one minute from the international break. [SEP] overall, none of the top 10 [SEP]"} +{"type": "sample", "index": 12, "raw_text": "[CLS] the netherlands in 2002 and then failed to win. [SEP] manchester united 6 - 0 - 2 ) extended their league title lead to a point of 10 goals, while didier drogba started with only four goals, less than fellow rivals liverpool, who shot into the second spot in the standings. [SEP] in the championship, they reached the closest of the contest, taking nine points from eighth spot in the english table. [SEP] austria ' s mariusz kovaldol held a points lead after third seed jez sabrisson of sweden, who needed two points in the final spot, had earlier pulled out of the second place after [SEP]", "detok_text": "[CLS] the netherlands in 2002 and then failed to win. [SEP] manchester united 6 - 0 - 2 ) extended their league title lead to a point of 10 goals, while didier drogba started with only four goals, less than fellow rivals liverpool, who shot into the second spot in the standings. [SEP] in the championship, they reached the closest of the contest, taking nine points from eighth spot in the english table. [SEP] austria's mariusz kovaldol held a points lead after third seed jez sabrisson of sweden, who needed two points in the final spot, had earlier pulled out of the second place after [SEP]"} +{"type": "sample", "index": 13, "raw_text": "[CLS] did not spend enough time reading his books. [SEP] fourth - seeded dina safina, from the russian, had lost one of 13 straight early meetings for her place and top - seeded safinova of russia lost her match, beating 25 - year - old kleybana of poland 6 - 3. [SEP] the study followed 1, 900 adults between 7 and 64 years living from 1999, 2006 and 2007 through the 2000s. [SEP] safina ousted fourth - seeded blake 6 - 0 and eighth - seeded klarrer 6 - 7, 6 - 4 before losing 6 - 5. [SEP] i had been in contact and [SEP]", "detok_text": "[CLS] did not spend enough time reading his books. [SEP] fourth - seeded dina safina, from the russian, had lost one of 13 straight early meetings for her place and top - seeded safinova of russia lost her match, beating 25 - year - old kleybana of poland 6 - 3. [SEP] the study followed 1, 900 adults between 7 and 64 years living from 1999, 2006 and 2007 through the 2000s. [SEP] safina ousted fourth - seeded blake 6 - 0 and eighth - seeded klarrer 6 - 7, 6 - 4 before losing 6 - 5. [SEP] i had been in contact and [SEP]"} +{"type": "sample", "index": 14, "raw_text": "[CLS] said. [SEP] the automakers said the union had completed a review of the american carmaker and would suspend operations when gm opens its swindon model beginning january 2009. [SEP] they also came from the deficit, back by carrington ' s superb second half, which immediately before christmas given the hosts a deserved chance. [SEP] third seed andy roddick ousted sixth - seeded andy murray to win a fourth masters cup title last year, but he managed only one break point and the former russian seeded fourth seed and sixth - seeded sharapova lost his quarterfinal match. [SEP] two marines and a policeman lost their lives on sunday after 1, 532 [SEP]", "detok_text": "[CLS] said. [SEP] the automakers said the union had completed a review of the american carmaker and would suspend operations when gm opens its swindon model beginning january 2009. [SEP] they also came from the deficit, back by carrington's superb second half, which immediately before christmas given the hosts a deserved chance. [SEP] third seed andy roddick ousted sixth - seeded andy murray to win a fourth masters cup title last year, but he managed only one break point and the former russian seeded fourth seed and sixth - seeded sharapova lost his quarterfinal match. [SEP] two marines and a policeman lost their lives on sunday after 1, 532 [SEP]"} +{"type": "sample", "index": 15, "raw_text": "[CLS] share prices collapsed in the summer, forcing massive losses in a bank whose shares lost more than half its value in late 2006. [SEP] available at 880089873193109319 : 2. 810997 1. 743. 73230 and 8118. [SEP] for the next few years, people thought i would go to the gyms, save them for myself.... you could just throw them at the club. [SEP] serena beat williams 11 - 3, 6 - 7, 2 - 3, then a second set point on a 1 - 0 rally for the fourth time [SEP]", "detok_text": "[CLS] share prices collapsed in the summer, forcing massive losses in a bank whose shares lost more than half its value in late 2006. [SEP] available at 880089873193109319: 2. 810997 1. 743. 73230 and 8118. [SEP] for the next few years, people thought i would go to the gyms, save them for myself.... you could just throw them at the club. [SEP] serena beat williams 11 - 3, 6 - 7, 2 - 3, then a second set point on a 1 - 0 rally for the fourth time [SEP]"} +{"type": "sample", "index": 16, "raw_text": "[CLS] war that killed about 1, 000 people out of the sept. [SEP] the future of senior management at kpmg are expected to be discussed in an annual general meeting beginning at 1430 gmt on thursday next week. [SEP] as newcastle manager if mike ashley had stayed out of the fa cup and lost the premier league, he could have said that he would be a doubt in chelsea ' s first defence of the title in search of victory. [SEP] louis chamberlain ( 0 ) gave up a run and walked four hits. [SEP] the company received 9, 500 telephone letters from its employees last year, while it was mainly reviewed by its staff [SEP]", "detok_text": "[CLS] war that killed about 1, 000 people out of the sept. [SEP] the future of senior management at kpmg are expected to be discussed in an annual general meeting beginning at 1430 gmt on thursday next week. [SEP] as newcastle manager if mike ashley had stayed out of the fa cup and lost the premier league, he could have said that he would be a doubt in chelsea's first defence of the title in search of victory. [SEP] louis chamberlain (0) gave up a run and walked four hits. [SEP] the company received 9, 500 telephone letters from its employees last year, while it was mainly reviewed by its staff [SEP]"} +{"type": "sample", "index": 17, "raw_text": "[CLS] america and elsewhere in europe. [SEP] the second - seeded swiss beat federer, in a fourth - round win on saturday, sixth - seeded, 6 - 4, 6 - 0, 6 - 0 against german frank gurkner, 7 - 5 on monday. [SEP] the other women ' s one - day matches, 200 names : 1 : 1, 600 ; 2 and 7 - - 6 ; simon 4 - 4 - 1, 835 ; 2, 500 ; 3 - 1, 500 ; 4 ; dinas safina 2 - 1, 4 - 0, 2 - 1 ; jansa 6 - 2, 3 - [SEP]", "detok_text": "[CLS] america and elsewhere in europe. [SEP] the second - seeded swiss beat federer, in a fourth - round win on saturday, sixth - seeded, 6 - 4, 6 - 0, 6 - 0 against german frank gurkner, 7 - 5 on monday. [SEP] the other women's one - day matches, 200 names: 1: 1, 600; 2 and 7 - - 6; simon 4 - 4 - 1, 835; 2, 500; 3 - 1, 500; 4; dinas safina 2 - 1, 4 - 0, 2 - 1; jansa 6 - 2, 3 - [SEP]"} +{"type": "sample", "index": 18, "raw_text": "[CLS] national cancer institute. [SEP] andy parks then scored a goal as a fourth - man cardiff ' s captain jon mauger suffered a dead right back injury when he lost his place at home to france and south africa after the draw on friday night at murrayfield. [SEP] american roddick is seeded to face frenchman cypriots baghdatis and spain ' s carlos verdasco who lost over albert montanes in the 2008 french open on thursday. [SEP] djokovic, the 2002 champion, paris champion and the australian open open, returned to the tournament before winning his title in paris and brisbane and winning the all england club, the [SEP]", "detok_text": "[CLS] national cancer institute. [SEP] andy parks then scored a goal as a fourth - man cardiff's captain jon mauger suffered a dead right back injury when he lost his place at home to france and south africa after the draw on friday night at murrayfield. [SEP] american roddick is seeded to face frenchman cypriots baghdatis and spain's carlos verdasco who lost over albert montanes in the 2008 french open on thursday. [SEP] djokovic, the 2002 champion, paris champion and the australian open open, returned to the tournament before winning his title in paris and brisbane and winning the all england club, the [SEP]"} +{"type": "sample", "index": 19, "raw_text": "[CLS] saturday. [SEP] passengers using the service arrived in glasgow to be rebooked for six hours before getting back onto the picket line. [SEP] australia won 2 - 0, having lost a wicket to collingwood on 10, held by four balls before strauss recalled david hussey 0 - 2 thursday to make it 1 - 0 after just five minutes. [SEP] the england striker had produced a fifth - minute penalty when william gallas twice thrashed the ball of david caldwell, who burst into the area from thomas reina ' s cross, and was forced to be on the quickside. [SEP] new york, july 6 ( upi ) - [SEP]", "detok_text": "[CLS] saturday. [SEP] passengers using the service arrived in glasgow to be rebooked for six hours before getting back onto the picket line. [SEP] australia won 2 - 0, having lost a wicket to collingwood on 10, held by four balls before strauss recalled david hussey 0 - 2 thursday to make it 1 - 0 after just five minutes. [SEP] the england striker had produced a fifth - minute penalty when william gallas twice thrashed the ball of david caldwell, who burst into the area from thomas reina's cross, and was forced to be on the quickside. [SEP] new york, july 6 (upi) - [SEP]"} +{"type": "sample", "index": 20, "raw_text": "[CLS] french open doubles on thursday included belgian veteran mike gasselin and fellow belgian xavier kunduz. [SEP] fifth - seeded novak guentt ' s top seed stunned france on sunday night to cruise through to the quarterfinals of the french open, where he lost to fourth - seeded frenchman commerder blake. [SEP] so we will then go to australia and india, \" he added. [SEP] former no. 1 williams also made quarterfinals in the fourth round 6 - 6 - 1 down against fourth - seeded elena garres on friday. [SEP] she had said her son took a number of drugs, but it is not clear what it was [SEP]", "detok_text": "[CLS] french open doubles on thursday included belgian veteran mike gasselin and fellow belgian xavier kunduz. [SEP] fifth - seeded novak guentt's top seed stunned france on sunday night to cruise through to the quarterfinals of the french open, where he lost to fourth - seeded frenchman commerder blake. [SEP] so we will then go to australia and india, \" he added. [SEP] former no. 1 williams also made quarterfinals in the fourth round 6 - 6 - 1 down against fourth - seeded elena garres on friday. [SEP] she had said her son took a number of drugs, but it is not clear what it was [SEP]"} +{"type": "sample", "index": 21, "raw_text": "[CLS] - elena dementieva, roger federer andra safin dropped into the quarterfinals on saturday. [SEP] federer has also twice lost there, losing to novak safina in 2005, won the 2005 french open on september 15 and 2007 and managed to reach the final of the tournament. [SEP] nearly 2, 000 people died, among them 20 young children. [SEP] almost 40 % of children survived in cramped dorms on fear of their parents. [SEP] trailing 20 - 7, the ravens scored twice with 1 : 34 left. [SEP] at 60, 000 people are injured in wednesday ' s blasts. [SEP] she is popular but is not by [SEP]", "detok_text": "[CLS] - elena dementieva, roger federer andra safin dropped into the quarterfinals on saturday. [SEP] federer has also twice lost there, losing to novak safina in 2005, won the 2005 french open on september 15 and 2007 and managed to reach the final of the tournament. [SEP] nearly 2, 000 people died, among them 20 young children. [SEP] almost 40 % of children survived in cramped dorms on fear of their parents. [SEP] trailing 20 - 7, the ravens scored twice with 1: 34 left. [SEP] at 60, 000 people are injured in wednesday's blasts. [SEP] she is popular but is not by [SEP]"} +{"type": "sample", "index": 22, "raw_text": "[CLS] concerns over the future. [SEP] \" the frustrating thing is is that we don ' t want to wait until we ought to do something. [SEP] sweden ' s robin soderling finished up to play robin soderling 6 - 2 6 - 3 on saturday. [SEP] \" he ' s gone and makes me think he ' s got something to do to me. [SEP] but ferguson now has his first game in doubt, though he appeared more focused on staying competitive until the fifth final on saturday. [SEP] she told an earlier post - match interview with sky wales on friday. [SEP] between 2000, 2002 and 2005, more than 400 civilians were [SEP]", "detok_text": "[CLS] concerns over the future. [SEP] \"the frustrating thing is is that we don't want to wait until we ought to do something. [SEP] sweden's robin soderling finished up to play robin soderling 6 - 2 6 - 3 on saturday. [SEP]\" he's gone and makes me think he's got something to do to me. [SEP] but ferguson now has his first game in doubt, though he appeared more focused on staying competitive until the fifth final on saturday. [SEP] she told an earlier post - match interview with sky wales on friday. [SEP] between 2000, 2002 and 2005, more than 400 civilians were [SEP]"} +{"type": "sample", "index": 23, "raw_text": "[CLS] sunday. [SEP] in 2006, alisna safin lost her first match, to dinara safinva, to lose 15 - 16 to frenchman elena opponent in the quarterfinals. [SEP] as a young child, he was the only man who had asked him to tell him about his life. [SEP] mrs clinton was proud of her 17 - year - old son, bobby, who died at age 75, aged 76. [SEP] in the talk, which will be screened on bbc ' s morning 4 today, maggie smith, co - author and columnist tim watson and tim anderson, editor of the guardian. [SEP] there are a new york city [SEP]", "detok_text": "[CLS] sunday. [SEP] in 2006, alisna safin lost her first match, to dinara safinva, to lose 15 - 16 to frenchman elena opponent in the quarterfinals. [SEP] as a young child, he was the only man who had asked him to tell him about his life. [SEP] mrs clinton was proud of her 17 - year - old son, bobby, who died at age 75, aged 76. [SEP] in the talk, which will be screened on bbc's morning 4 today, maggie smith, co - author and columnist tim watson and tim anderson, editor of the guardian. [SEP] there are a new york city [SEP]"} +{"type": "sample", "index": 24, "raw_text": "[CLS] country. [SEP] the middlesbrough manager has denied england team - mate scott brown ' s place in middlesbrough after claiming he had quit mark brown ' s job last week. [SEP] the dispute over the british election could have a profound effect of the war in neighbouring afghanistan today. [SEP] \" every phone is next to me in the morning, \" she said monday. [SEP] car deaths were down 1. 5 percent from a year earlier. [SEP] dr. william weiss, a professor at the university of new hampshire, studied 502 older and older breast breast cancer patients who had lower blood tests and the risk of cancer - free survival. [SEP] so much by [SEP]", "detok_text": "[CLS] country. [SEP] the middlesbrough manager has denied england team - mate scott brown's place in middlesbrough after claiming he had quit mark brown's job last week. [SEP] the dispute over the british election could have a profound effect of the war in neighbouring afghanistan today. [SEP] \"every phone is next to me in the morning,\" she said monday. [SEP] car deaths were down 1. 5 percent from a year earlier. [SEP] dr. william weiss, a professor at the university of new hampshire, studied 502 older and older breast breast cancer patients who had lower blood tests and the risk of cancer - free survival. [SEP] so much by [SEP]"} +{"type": "sample", "index": 25, "raw_text": "[CLS] losing the set 2 - 0 and falling at 2 - 2 - 2 and the sixth, then held before holding her first serve the rest of the way. [SEP] in finland, german world champion lewis hamilton suffered an eighth place finish in denmark after finishing fourth, second and ninth, before failing to finish in sixth. [SEP] bmw sauber ' s heki kottaki and german star raikkonen were about 2. 2 seconds off the green german flag but finished fourth after his duel of sebastian vettel and fernando alonso. [SEP] a significant fraction of companies were part of the survey. [SEP] as we look to recruit 400, 000 people [SEP]", "detok_text": "[CLS] losing the set 2 - 0 and falling at 2 - 2 - 2 and the sixth, then held before holding her first serve the rest of the way. [SEP] in finland, german world champion lewis hamilton suffered an eighth place finish in denmark after finishing fourth, second and ninth, before failing to finish in sixth. [SEP] bmw sauber's heki kottaki and german star raikkonen were about 2. 2 seconds off the green german flag but finished fourth after his duel of sebastian vettel and fernando alonso. [SEP] a significant fraction of companies were part of the survey. [SEP] as we look to recruit 400, 000 people [SEP]"} +{"type": "sample", "index": 26, "raw_text": "[CLS] killed a range of fighters in an effort to maintain the momentum of the insurgency. [SEP] what i haven ' t realised is how much feels at the start time. [SEP] the others cities, sit stockholm, amsterdam and new york. [SEP] the visitors had been reduced to six points from the finish before the break to take second and six points to the hosts, who fell only three points ahead. [SEP] chicago ( ap ) - jon garland gave up four runs over three innings, scoring four runs for the braves, and the milwaukee brewers take a 34 - 26 lead in the fourth. [SEP] the company offers a number of risk portfolios, including [SEP]", "detok_text": "[CLS] killed a range of fighters in an effort to maintain the momentum of the insurgency. [SEP] what i haven't realised is how much feels at the start time. [SEP] the others cities, sit stockholm, amsterdam and new york. [SEP] the visitors had been reduced to six points from the finish before the break to take second and six points to the hosts, who fell only three points ahead. [SEP] chicago (ap) - jon garland gave up four runs over three innings, scoring four runs for the braves, and the milwaukee brewers take a 34 - 26 lead in the fourth. [SEP] the company offers a number of risk portfolios, including [SEP]"} +{"type": "sample", "index": 27, "raw_text": "[CLS] t walk away. [SEP] next, nick jeldt is actually playing at augusta. [SEP] dubai ( reuters ) - a retired scientist was sentenced to a five - year prison on monday for taking part in a 2006 attack in the indian ocean nation, court officials said. [SEP] but the result was not too much for the hosts, while arsenal kept themselves a point for sixth and sunderland seemed to find themselves as sunderland emerged from fourth, birmingham came in in 19th place, on 38. 5 points. [SEP] analysts expect average crude oil inventories average up to 11 million barrels a day. [SEP] \" this could be a serious situation, \" he [SEP]", "detok_text": "[CLS] t walk away. [SEP] next, nick jeldt is actually playing at augusta. [SEP] dubai (reuters) - a retired scientist was sentenced to a five - year prison on monday for taking part in a 2006 attack in the indian ocean nation, court officials said. [SEP] but the result was not too much for the hosts, while arsenal kept themselves a point for sixth and sunderland seemed to find themselves as sunderland emerged from fourth, birmingham came in in 19th place, on 38. 5 points. [SEP] analysts expect average crude oil inventories average up to 11 million barrels a day. [SEP] \"this could be a serious situation,\" he [SEP]"} +{"type": "sample", "index": 28, "raw_text": "[CLS] into the 59th, trying to make a final roster which includes fifth seed players novak djokovic, simon safin, nikolay salbina and roger federer, and roger federer, the world no two at the semi - finals on sunday no. 3. [SEP] nalbian who survived a fourth set of first - set loss after winning the u. s. open, battled back to take the sixth seed safina 6 - 2 match. [SEP] french group general motors said on thursday it was splitting the name of its core brand brand. [SEP] news of russia ' s clearest daily of sunday said russians weighed in to write [SEP]", "detok_text": "[CLS] into the 59th, trying to make a final roster which includes fifth seed players novak djokovic, simon safin, nikolay salbina and roger federer, and roger federer, the world no two at the semi - finals on sunday no. 3. [SEP] nalbian who survived a fourth set of first - set loss after winning the u. s. open, battled back to take the sixth seed safina 6 - 2 match. [SEP] french group general motors said on thursday it was splitting the name of its core brand brand. [SEP] news of russia's clearest daily of sunday said russians weighed in to write [SEP]"} +{"type": "sample", "index": 29, "raw_text": "[CLS] s & p 500 inched up 1 per cent and france ' s cac - 40 closed 0. 6 per cent to stand at 3, 100. 35, down 1, 0. 3 per cent. [SEP] totals 118, 92, 145, 65, 113, 71, 711, 146, 92, and 113. 691, respectively. [SEP] french driver philippe basset, daniel bullia, german daniel persev, germany ' s daisa mizadava, belgium ' s denis menchov and belgium ' s michel juncker are expected to be named. [SEP] belgian veteran nicolas kostelvic was [SEP]", "detok_text": "[CLS] s & p 500 inched up 1 per cent and france's cac - 40 closed 0. 6 per cent to stand at 3, 100. 35, down 1, 0. 3 per cent. [SEP] totals 118, 92, 145, 65, 113, 71, 711, 146, 92, and 113. 691, respectively. [SEP] french driver philippe basset, daniel bullia, german daniel persev, germany's daisa mizadava, belgium's denis menchov and belgium's michel juncker are expected to be named. [SEP] belgian veteran nicolas kostelvic was [SEP]"} +{"type": "sample", "index": 30, "raw_text": "[CLS] they lost only five of those games to give the blue jays a 2 win over nl leader atlanta. [SEP] having put a face on a series of issues, the result meant the new deputy home leader, up to 40 percent of the vote, could still do well over the green party. [SEP] lost 2 - 6, france, no. 6 albert montanes, 6 - 2, 6 - 7, 6 7 - 5, the fourth round winner of frenchman andy safina, who was seeded fourth, 7 - 5 7 - 5 in the fourth - round tie against croatia. [SEP] during the match we had to play our best [SEP]", "detok_text": "[CLS] they lost only five of those games to give the blue jays a 2 win over nl leader atlanta. [SEP] having put a face on a series of issues, the result meant the new deputy home leader, up to 40 percent of the vote, could still do well over the green party. [SEP] lost 2 - 6, france, no. 6 albert montanes, 6 - 2, 6 - 7, 6 7 - 5, the fourth round winner of frenchman andy safina, who was seeded fourth, 7 - 5 7 - 5 in the fourth - round tie against croatia. [SEP] during the match we had to play our best [SEP]"} +{"type": "sample", "index": 31, "raw_text": "[CLS] 82. 8 million ( $ 88. 93 ) in tax aid. [SEP] the independent association of medical examination panel ( pct ) said burgi could have succeeded in his suicide not to stop heart disease. [SEP] ferrari ' s 35 - year - old fidel castro became one of the most successful drivers in winning a championship last year after struggling with a foot injury. [SEP] she finished her run in the men ' s tennis with a solid, breaking 67 and a 65. [SEP] dr. robert brito, an assistant professor in health and psychological risk, says chronic disease also provides people with a chance to reduce smoking. [SEP] the [SEP]", "detok_text": "[CLS] 82. 8 million ($88. 93) in tax aid. [SEP] the independent association of medical examination panel (pct) said burgi could have succeeded in his suicide not to stop heart disease. [SEP] ferrari's 35 - year - old fidel castro became one of the most successful drivers in winning a championship last year after struggling with a foot injury. [SEP] she finished her run in the men's tennis with a solid, breaking 67 and a 65. [SEP] dr. robert brito, an assistant professor in health and psychological risk, says chronic disease also provides people with a chance to reduce smoking. [SEP] the [SEP]"} +{"type": "sample", "index": 32, "raw_text": "[CLS] nato ' s headquarters in moscow and london on the early morning in 2003. [SEP] but members who wanted to complete the survey were approached by a swiss - based training group in october 2008 and asked what they had heard. [SEP] that meant much less, simply because the adults could not afford because they hated it. [SEP] international : 08781 5566 ; www. marriott. com. [SEP] the people also heard that the company was preparing to float, and it was seen yesterday of being sold at 50 per cent through vt group, the largest - quoted group. [SEP] they had clawed back at a level after 11 second months of this [SEP]", "detok_text": "[CLS] nato's headquarters in moscow and london on the early morning in 2003. [SEP] but members who wanted to complete the survey were approached by a swiss - based training group in october 2008 and asked what they had heard. [SEP] that meant much less, simply because the adults could not afford because they hated it. [SEP] international: 08781 5566; www. marriott. com. [SEP] the people also heard that the company was preparing to float, and it was seen yesterday of being sold at 50 per cent through vt group, the largest - quoted group. [SEP] they had clawed back at a level after 11 second months of this [SEP]"} +{"type": "sample", "index": 33, "raw_text": "[CLS]. [SEP] asian markets opened thursday 1. 3 percent lower and japan ' s nikkei 225 lost 75. 56, or 7. 1 percent, to 673. 70. 3. [SEP] scolari ' s side were headed out of the final race, only with their second win in five games, against the brits, a hungarian side, held by aalborg and then a pair of points at cologne. [SEP] his first came for wolves, who spent the first five minutes of the game against sunderland in 1996 when louis daschle added chances from close range after he scored a penalty goal in the last - minute penalty [SEP]", "detok_text": "[CLS]. [SEP] asian markets opened thursday 1. 3 percent lower and japan's nikkei 225 lost 75. 56, or 7. 1 percent, to 673. 70. 3. [SEP] scolari's side were headed out of the final race, only with their second win in five games, against the brits, a hungarian side, held by aalborg and then a pair of points at cologne. [SEP] his first came for wolves, who spent the first five minutes of the game against sunderland in 1996 when louis daschle added chances from close range after he scored a penalty goal in the last - minute penalty [SEP]"} +{"type": "sample", "index": 34, "raw_text": "[CLS] in asia on friday, 10 - year bonds sank into a 9. 8 percent slump, and the nikkei 225 index was up 18. 47 points, down by 0. 3 percent, while the stock had dropped 2. 9 percent, a gain of 1. 7 points in the past three hours on the back of results from leading european banks, and a global sell - off in the next four days. [SEP] susan seagel, a professor of journalism at the university of wisconsin at madison, and colleagues looked at the survey findings, reviewed the data collected and answered questions about whether the data could be accurate. [SEP] it was a [SEP]", "detok_text": "[CLS] in asia on friday, 10 - year bonds sank into a 9. 8 percent slump, and the nikkei 225 index was up 18. 47 points, down by 0. 3 percent, while the stock had dropped 2. 9 percent, a gain of 1. 7 points in the past three hours on the back of results from leading european banks, and a global sell - off in the next four days. [SEP] susan seagel, a professor of journalism at the university of wisconsin at madison, and colleagues looked at the survey findings, reviewed the data collected and answered questions about whether the data could be accurate. [SEP] it was a [SEP]"} +{"type": "sample", "index": 35, "raw_text": "[CLS] 18 - 21 last year ' s australian open. [SEP] former cabinet secretary alan milburn on wednesday was appointed to a review of the independent advisory committee on the age of public health and the royal research institute. [SEP] but it is unclear whether the battle between the two is at a new beginning. [SEP] they asked to do the same thing. [SEP] \" america ' s good choice, \" he wrote in the summer of 2009. [SEP] tommy bowe is hopeful to stay with the team in south africa. [SEP] as a consequence, it does not surprise me. [SEP] he had held off a big men ' s serve in the first set when [SEP]", "detok_text": "[CLS] 18 - 21 last year's australian open. [SEP] former cabinet secretary alan milburn on wednesday was appointed to a review of the independent advisory committee on the age of public health and the royal research institute. [SEP] but it is unclear whether the battle between the two is at a new beginning. [SEP] they asked to do the same thing. [SEP] \"america's good choice,\" he wrote in the summer of 2009. [SEP] tommy bowe is hopeful to stay with the team in south africa. [SEP] as a consequence, it does not surprise me. [SEP] he had held off a big men's serve in the first set when [SEP]"} +{"type": "sample", "index": 36, "raw_text": "[CLS] the eighth seed during tuesday night ' s game at florida, it was over. [SEP] the department of federal disease control and the strategic health plan released its 11th national cancer institute annual study, which surveyed about 12, 000 adults with cancer annually. [SEP] roddick, a big - serving australian open, defeated anne radwanska on sunday 6 - 3 while the fourth - seeded u. s. open defeated ernests gulbis 7 - 7, 6 - 4, 6 - 6 to face 12th seed andy blake in five sets. [SEP] the russian champion then broke roger federer 7 - 7, 7 - 6, 6 - 4 [SEP]", "detok_text": "[CLS] the eighth seed during tuesday night's game at florida, it was over. [SEP] the department of federal disease control and the strategic health plan released its 11th national cancer institute annual study, which surveyed about 12, 000 adults with cancer annually. [SEP] roddick, a big - serving australian open, defeated anne radwanska on sunday 6 - 3 while the fourth - seeded u. s. open defeated ernests gulbis 7 - 7, 6 - 4, 6 - 6 to face 12th seed andy blake in five sets. [SEP] the russian champion then broke roger federer 7 - 7, 7 - 6, 6 - 4 [SEP]"} +{"type": "sample", "index": 37, "raw_text": "[CLS] 2005. [SEP] the fourth seed of three players, world number one and fourth seed roger federer, lost his serve on the second and fourth while losing the match level at 5 - 2 while sixth ninth seed blake beat the ninth seed 7 - 6 - 3 2 - 7, 6 - 7, 6 - 7 and ninth seed david nalbandian beat eighth seeded frenchman gilles simon three times to win, while losing 2 - 1, 6 - 4 in germany, hamburg and vienna. [SEP] paris ( reuters ) - american andy roddick clinched his masters cup title on sunday when their first - round match at the french open in marseille began [SEP]", "detok_text": "[CLS] 2005. [SEP] the fourth seed of three players, world number one and fourth seed roger federer, lost his serve on the second and fourth while losing the match level at 5 - 2 while sixth ninth seed blake beat the ninth seed 7 - 6 - 3 2 - 7, 6 - 7, 6 - 7 and ninth seed david nalbandian beat eighth seeded frenchman gilles simon three times to win, while losing 2 - 1, 6 - 4 in germany, hamburg and vienna. [SEP] paris (reuters) - american andy roddick clinched his masters cup title on sunday when their first - round match at the french open in marseille began [SEP]"} +{"type": "sample", "index": 38, "raw_text": "[CLS] 8 - 6 ) lost three straight, striking out five and pitching the fourth. [SEP] it was last modified at 11. 38 gmt on tuesday 12 january 2010. [SEP] do you have a mac? [SEP] both cancers are related to patients - - alzheimer ' s disease, bone and brain, prostate, breast and brain cancer. [SEP] jan menderpras and richard gasquet rallied to win 5 - 1, before blake lost the opening match to draw 3 - 1 into seventh place. [SEP] by the time he took it back away to win it 2 - point. [SEP] the lg maxx design was selected by the national design [SEP]", "detok_text": "[CLS] 8 - 6 ) lost three straight, striking out five and pitching the fourth. [SEP] it was last modified at 11. 38 gmt on tuesday 12 january 2010. [SEP] do you have a mac? [SEP] both cancers are related to patients - - alzheimer's disease, bone and brain, prostate, breast and brain cancer. [SEP] jan menderpras and richard gasquet rallied to win 5 - 1, before blake lost the opening match to draw 3 - 1 into seventh place. [SEP] by the time he took it back away to win it 2 - point. [SEP] the lg maxx design was selected by the national design [SEP]"} +{"type": "sample", "index": 39, "raw_text": "[CLS] sunday morning on saturday - - morning 2010 at 8 : 40 a. m. [SEP] the case delayed court hearing until jan. [SEP] england ' s oliver wilson, as well as france ' s daniel hagdon, was fourth on seven back at the turn after a foursome 68. [SEP] the highly ranked djokoandian was on his way into the match in the first set and lost three times in eight of five games before then losing just 20 points for a 6 - 3 lead. [SEP] in wisconsin ' s democratic primary by - election on may 1, wisconsin ' s 1st district, where democratic presidential candidate joseph biden won [SEP]", "detok_text": "[CLS] sunday morning on saturday - - morning 2010 at 8: 40 a. m. [SEP] the case delayed court hearing until jan. [SEP] england's oliver wilson, as well as france's daniel hagdon, was fourth on seven back at the turn after a foursome 68. [SEP] the highly ranked djokoandian was on his way into the match in the first set and lost three times in eight of five games before then losing just 20 points for a 6 - 3 lead. [SEP] in wisconsin's democratic primary by - election on may 1, wisconsin's 1st district, where democratic presidential candidate joseph biden won [SEP]"} +{"type": "sample", "index": 40, "raw_text": "[CLS] [SEP] britain ' s mark mcburney made his shock return to form in the men ' s scottish open on wednesday. [SEP] the frenchman defeated men ' s open champion finalist novak djokovic by five points, losing five out of six games and winning 50 - 40 points, 26 - 26. [SEP] the benchmark jones industrial average in japan, which led the dow jones industrials index on tuesday, was trading to close down 0. 6 percent at 410. 17. [SEP] the second round is being held at a hospital in highfield close in lot of england on thursday, wednesday, tuesday and 22000 gmt. [SEP] but [SEP]", "detok_text": "[CLS] [SEP] britain's mark mcburney made his shock return to form in the men's scottish open on wednesday. [SEP] the frenchman defeated men's open champion finalist novak djokovic by five points, losing five out of six games and winning 50 - 40 points, 26 - 26. [SEP] the benchmark jones industrial average in japan, which led the dow jones industrials index on tuesday, was trading to close down 0. 6 percent at 410. 17. [SEP] the second round is being held at a hospital in highfield close in lot of england on thursday, wednesday, tuesday and 22000 gmt. [SEP] but [SEP]"} +{"type": "sample", "index": 41, "raw_text": "[CLS] said : \" we are hoping for one another. [SEP] the gunners face three months after liverpool ' s seven - times world cup winner dropped out of his side after the champions league champions scored a vital goal for arsenal in the early stages, but sir alex ferguson has conceded that they could not find a clear way to get to the top of the losing heap by winning their four - legged championship. [SEP] the researchers found 773 children who were born from 1970 - older adults who were just 16 ( 47 % ) and young adults ( 53 % ). [SEP] the latest u. s. health and borderization team now brought 18 women to [SEP]", "detok_text": "[CLS] said: \" we are hoping for one another. [SEP] the gunners face three months after liverpool's seven - times world cup winner dropped out of his side after the champions league champions scored a vital goal for arsenal in the early stages, but sir alex ferguson has conceded that they could not find a clear way to get to the top of the losing heap by winning their four - legged championship. [SEP] the researchers found 773 children who were born from 1970 - older adults who were just 16 (47 %) and young adults (53 %). [SEP] the latest u. s. health and borderization team now brought 18 women to [SEP]"} +{"type": "sample", "index": 42, "raw_text": "[CLS]. [SEP] nadal jumped to 30 points behind novak djokovic, then closed with a loss of five. [SEP] she added that her daughter was spending six months of education while living with her parents, her son in high school and her family and siblings wanted to be strong at school. [SEP] safinic won the match in sets on saturday, france ' s ma dinara safin went to the final to face safina, fifth - seeded former world no. 7, and sixth - seeded elena dementieva 6 - 3, 6 - 5. [SEP] he is the subject of a nationwide public investigation. [SEP] the [SEP]", "detok_text": "[CLS]. [SEP] nadal jumped to 30 points behind novak djokovic, then closed with a loss of five. [SEP] she added that her daughter was spending six months of education while living with her parents, her son in high school and her family and siblings wanted to be strong at school. [SEP] safinic won the match in sets on saturday, france's ma dinara safin went to the final to face safina, fifth - seeded former world no. 7, and sixth - seeded elena dementieva 6 - 3, 6 - 5. [SEP] he is the subject of a nationwide public investigation. [SEP] the [SEP]"} +{"type": "sample", "index": 43, "raw_text": "[CLS] their final five. [SEP] on the night of november 2008, she was severely hit by the man, a woman in a red - coloured car and the woman was struck. [SEP] in the third match of the tournament in the netherlands, russia ' s elena dementieva earned a second - round doubles match against hungary and denmark after she beat japan 2 - 2 6 - 3 on friday. [SEP] ( cnn ) - - andy juandei defeated roger federer his opening match, 6 - 4 in the fourth round monday. [SEP] in february, at least 10 americans had died at bagram air base in afghanistan, the us military said [SEP]", "detok_text": "[CLS] their final five. [SEP] on the night of november 2008, she was severely hit by the man, a woman in a red - coloured car and the woman was struck. [SEP] in the third match of the tournament in the netherlands, russia's elena dementieva earned a second - round doubles match against hungary and denmark after she beat japan 2 - 2 6 - 3 on friday. [SEP] (cnn) - - andy juandei defeated roger federer his opening match, 6 - 4 in the fourth round monday. [SEP] in february, at least 10 americans had died at bagram air base in afghanistan, the us military said [SEP]"} +{"type": "sample", "index": 44, "raw_text": "[CLS] nearly 8 % - with the cost - $ 43, 500 - - up 40 %. [SEP] nato officials had announced earlier on friday that the 16 and 18 - mile trek from abhorz to the town of lashkar gah in the north of kandahar had been lost. [SEP] so how can we learn more from that experience? [SEP] it ' s also very expensive : \" you ' re almost going to find a lot more affordable than golf, \" said the american, who finished first on the pga tour as the day ' s top member. [SEP] the panthers were stunned when pittsburgh took a five - point lead to 4 [SEP]", "detok_text": "[CLS] nearly 8 % - with the cost - $43, 500 - - up 40 %. [SEP] nato officials had announced earlier on friday that the 16 and 18 - mile trek from abhorz to the town of lashkar gah in the north of kandahar had been lost. [SEP] so how can we learn more from that experience? [SEP] it's also very expensive: \"you're almost going to find a lot more affordable than golf,\" said the american, who finished first on the pga tour as the day's top member. [SEP] the panthers were stunned when pittsburgh took a five - point lead to 4 [SEP]"} +{"type": "sample", "index": 45, "raw_text": "[CLS] in 2005. [SEP] lunch on the sunday afternoon with the rest of day. [SEP] the sources said the deadline for the lawyer ' s request was set sunday, citing the county prosecutor ' s concerns. [SEP] the former woman had been taken from the dutchess county jail after receiving a number of tests before being released. [SEP] it doesn ' t just matter. [SEP] new delhi, paris, paris, stockholm, amsterdam, london, antwerp, amsterdam, dusseldorf and seville ; $ 1. 948 billion ; 2. 11 billion ; $ 1. 06 billion. [SEP] a fourth - seeded opponent in the paris open, roddick lost the first [SEP]", "detok_text": "[CLS] in 2005. [SEP] lunch on the sunday afternoon with the rest of day. [SEP] the sources said the deadline for the lawyer's request was set sunday, citing the county prosecutor's concerns. [SEP] the former woman had been taken from the dutchess county jail after receiving a number of tests before being released. [SEP] it doesn't just matter. [SEP] new delhi, paris, paris, stockholm, amsterdam, london, antwerp, amsterdam, dusseldorf and seville; $1. 948 billion; 2. 11 billion; $1. 06 billion. [SEP] a fourth - seeded opponent in the paris open, roddick lost the first [SEP]"} +{"type": "sample", "index": 46, "raw_text": "[CLS]us hiddink, the manager of champions chelsea, decided to decide on the captain of england after returning after winning 1 - 0 at sunderland and leaving for a trip this week. [SEP] on friday, russian nikolay davydenko earned his place by winning 0 - 2, 6 - 3 6 - 4 and frenchman grie clement beat frenchman rifiet in the second set. [SEP] i had been on dialysis several times and had had just dropped for a few at a time, before christmas. [SEP] the scot was 20 and finished second only to lose him and knocked him out of the first french open championship in 2001. [SEP] [SEP]", "detok_text": "[CLS]us hiddink, the manager of champions chelsea, decided to decide on the captain of england after returning after winning 1 - 0 at sunderland and leaving for a trip this week. [SEP] on friday, russian nikolay davydenko earned his place by winning 0 - 2, 6 - 3 6 - 4 and frenchman grie clement beat frenchman rifiet in the second set. [SEP] i had been on dialysis several times and had had just dropped for a few at a time, before christmas. [SEP] the scot was 20 and finished second only to lose him and knocked him out of the first french open championship in 2001. [SEP] [SEP]"} +{"type": "sample", "index": 47, "raw_text": "[CLS] were struggling to make up for a worse injury, goals from michael ballack. [SEP] a settlement was chosen for the review of the u. s. supreme court ' s ruling at the trial sentencing review in march 2010, when the case is served, the st. paul ' s said. [SEP] he lost serve in his final round of which he lost to james blake 7 - 6, then lost yet again in the second, with four games to go. [SEP] \" the problem is not much about long - term solutions, but the costs, \" says peter klee, a director of the harvard university global public health research center. [SEP]", "detok_text": "[CLS] were struggling to make up for a worse injury, goals from michael ballack. [SEP] a settlement was chosen for the review of the u. s. supreme court's ruling at the trial sentencing review in march 2010, when the case is served, the st. paul's said. [SEP] he lost serve in his final round of which he lost to james blake 7 - 6, then lost yet again in the second, with four games to go. [SEP] \"the problem is not much about long - term solutions, but the costs,\" says peter klee, a director of the harvard university global public health research center. [SEP]"} +{"type": "sample", "index": 48, "raw_text": "[CLS] comment on what his position was. \" [SEP] a hospital spokesman declined to said the family was doing very well at the time, the toronto times reported sunday. [SEP] the next meeting set to be held on sept. [SEP] jacksonville ( 3 - 0 ) trailed, 36 - 24, when marco hartni tied the score with a touchdown return early in the second quarter. [SEP] it was hurting him so i can ' t be sure what i thought he would do. [SEP] marseille claimed the opening goal in the break when etuhu fired home. [SEP] edt on saturday 9 april 2010. [SEP] the timing is excellent. [SEP] however, the [SEP]", "detok_text": "[CLS] comment on what his position was. \" [SEP] a hospital spokesman declined to said the family was doing very well at the time, the toronto times reported sunday. [SEP] the next meeting set to be held on sept. [SEP] jacksonville (3 - 0) trailed, 36 - 24, when marco hartni tied the score with a touchdown return early in the second quarter. [SEP] it was hurting him so i can't be sure what i thought he would do. [SEP] marseille claimed the opening goal in the break when etuhu fired home. [SEP] edt on saturday 9 april 2010. [SEP] the timing is excellent. [SEP] however, the [SEP]"} +{"type": "sample", "index": 49, "raw_text": "[CLS] the number of women aged over 50 and more half - smokers increased 8 %, compared to 75 per cent of women aged 10 - 25s, the study found. [SEP] the investigation was launched after a review in july. [SEP] vaughan ' s agent confirmed that he would give himself the chance to compete for the england job. [SEP] he helped the club set a league record for the first time in his career with a first goal, only to be substituted after six minutes and matthew upson winning 1 - 2 after winning his first cap yesterday before failing to finish the season with an achilles injury. [SEP] there ' s a reason to think [SEP]", "detok_text": "[CLS] the number of women aged over 50 and more half - smokers increased 8 %, compared to 75 per cent of women aged 10 - 25s, the study found. [SEP] the investigation was launched after a review in july. [SEP] vaughan's agent confirmed that he would give himself the chance to compete for the england job. [SEP] he helped the club set a league record for the first time in his career with a first goal, only to be substituted after six minutes and matthew upson winning 1 - 2 after winning his first cap yesterday before failing to finish the season with an achilles injury. [SEP] there's a reason to think [SEP]"} +{"type": "sample", "index": 50, "raw_text": "[CLS]. [SEP] england took their place for five runs just before half - off and on 175 for two, england captain strauss made five runs to reassert the possibility he might start the series after the first innings as england laboured out for 310 having lost five wickets in the run - off. [SEP] the u. s. military declined to confirm the attack. [SEP] london, july 20 - electronic arts inc. plans a $ 7. 7 million ( £640 million ) takeover offer for sun jones & co ' s suntech technologies inc. [SEP] he trailed 7 - 5 in the round two of the australian open in last year. [SEP]", "detok_text": "[CLS]. [SEP] england took their place for five runs just before half - off and on 175 for two, england captain strauss made five runs to reassert the possibility he might start the series after the first innings as england laboured out for 310 having lost five wickets in the run - off. [SEP] the u. s. military declined to confirm the attack. [SEP] london, july 20 - electronic arts inc. plans a $7. 7 million (£640 million) takeover offer for sun jones & co's suntech technologies inc. [SEP] he trailed 7 - 5 in the round two of the australian open in last year. [SEP]"} +{"type": "sample", "index": 51, "raw_text": "[CLS] fell into disrepair. [SEP] his strong performance earlier this year appeared to have already hit his mark. [SEP] about 5, 000 schools and secondary schools are being shut across towns and cities throughout the region. [SEP] plano, sept. [SEP] ninth - seeded dinara safin lost 6 - 0 6 - 0 but isner lost 18 points and took 15 in the second set. [SEP] according to the national institutes of health and human health center at mcgill university, the number of infected people has already risen 40 percent each year in the last 18 years. [SEP] the tigers shrugged off a loss in utah to reach the final four and secure a ninth [SEP]", "detok_text": "[CLS] fell into disrepair. [SEP] his strong performance earlier this year appeared to have already hit his mark. [SEP] about 5, 000 schools and secondary schools are being shut across towns and cities throughout the region. [SEP] plano, sept. [SEP] ninth - seeded dinara safin lost 6 - 0 6 - 0 but isner lost 18 points and took 15 in the second set. [SEP] according to the national institutes of health and human health center at mcgill university, the number of infected people has already risen 40 percent each year in the last 18 years. [SEP] the tigers shrugged off a loss in utah to reach the final four and secure a ninth [SEP]"} +{"type": "sample", "index": 52, "raw_text": "[CLS] charges was exposed when the case were heard from 2000 - 2004, but there was no evidence within the case relating to them. [SEP] liverpool have been able to keep their progress through the league campaign, with eight points top - scorer arsenal, seven points behind liverpool and nine at home in nine games. [SEP] in other words, investors have started dramatically boosting their exposure of assets like securities. [SEP] but his brother has received international warnings on the safety of the party. [SEP] nadal won his first first - round match to overcome a frenchman, french frenchman michael tsonga, in the semi - final of the australian grand open. [SEP] \" [SEP]", "detok_text": "[CLS] charges was exposed when the case were heard from 2000 - 2004, but there was no evidence within the case relating to them. [SEP] liverpool have been able to keep their progress through the league campaign, with eight points top - scorer arsenal, seven points behind liverpool and nine at home in nine games. [SEP] in other words, investors have started dramatically boosting their exposure of assets like securities. [SEP] but his brother has received international warnings on the safety of the party. [SEP] nadal won his first first - round match to overcome a frenchman, french frenchman michael tsonga, in the semi - final of the australian grand open. [SEP] \" [SEP]"} +{"type": "sample", "index": 53, "raw_text": "[CLS] 0 - 0 record in 2006 in athens, alongside wins in latvia, england, spain, germany and norway who moved to the top in ninth last season. [SEP] button, who started the 2005 team savioo champion, took a surprise second place but failed to get his fourth championship ; in 2007, the british grand prix ended up five points behind when bullen pulled to the eighth. [SEP] in january, the death of the british writer john schull ' s epic book terror became an epic story : the mythological period of the railway age. [SEP] the authorities said three people had died in the scene of a suicide bomber that broke [SEP]", "detok_text": "[CLS] 0 - 0 record in 2006 in athens, alongside wins in latvia, england, spain, germany and norway who moved to the top in ninth last season. [SEP] button, who started the 2005 team savioo champion, took a surprise second place but failed to get his fourth championship; in 2007, the british grand prix ended up five points behind when bullen pulled to the eighth. [SEP] in january, the death of the british writer john schull's epic book terror became an epic story: the mythological period of the railway age. [SEP] the authorities said three people had died in the scene of a suicide bomber that broke [SEP]"} +{"type": "sample", "index": 54, "raw_text": "[CLS] david davis of britain beat ninth seed gilles federer 6 - 3, while defending champion andy murray plays saturday, and fourth - ranked france could lose their place at the french open. [SEP] david twitchell, 41, from barburn terrace in abley, leys, and bracknell road in sedgeon in northamptonshire, were both arrested at about 2000 gmt on saturday. [SEP] that means he may be considering his presidential bid. [SEP] vassi lula, the big winner of the 2005 open who withdrew withdrew after a knee injury, had to make a bid for a sixth straight win after a stroke of the first set set [SEP]", "detok_text": "[CLS] david davis of britain beat ninth seed gilles federer 6 - 3, while defending champion andy murray plays saturday, and fourth - ranked france could lose their place at the french open. [SEP] david twitchell, 41, from barburn terrace in abley, leys, and bracknell road in sedgeon in northamptonshire, were both arrested at about 2000 gmt on saturday. [SEP] that means he may be considering his presidential bid. [SEP] vassi lula, the big winner of the 2005 open who withdrew withdrew after a knee injury, had to make a bid for a sixth straight win after a stroke of the first set set [SEP]"} +{"type": "sample", "index": 55, "raw_text": "[CLS] from the leader. [SEP] bergenheim tied their game with three minutes of goal when substitute florian boch made an extra - time header to hit a goal back for germany, then thomas heinzen had narrowly missed on the line. [SEP] ( cnn ) - nikolay davyden of serbia and fourth seed safin all lost in the second round of the tournament french open on wednesday, and the current quarter - finalist jeare williams, ninth and sixth, faces eighth - seeded fourth - seed elena gakhin in the quarterfinal draw alongside american players anne sc mahut, samantha stosur and venus williams. [SEP] the defending champion took the [SEP]", "detok_text": "[CLS] from the leader. [SEP] bergenheim tied their game with three minutes of goal when substitute florian boch made an extra - time header to hit a goal back for germany, then thomas heinzen had narrowly missed on the line. [SEP] (cnn) - nikolay davyden of serbia and fourth seed safin all lost in the second round of the tournament french open on wednesday, and the current quarter - finalist jeare williams, ninth and sixth, faces eighth - seeded fourth - seed elena gakhin in the quarterfinal draw alongside american players anne sc mahut, samantha stosur and venus williams. [SEP] the defending champion took the [SEP]"} +{"type": "sample", "index": 56, "raw_text": "[CLS] champion frenchman wisquiet paired against eighth - seeded belgian robert kindr for a quarterfinal match, champion and french open champion robert benyder and frenchman lindsey vonn, and russia ' s dina safina defeated fellow german seed eduardo sahli on jan 6. [SEP] defending champion sharapova, runner - up and second overall in the women ' s us tennis championships, said she was planning to retire serve in retirement and pursue another campaign in 2009. [SEP] beijing ( ap ) - american andy murray comfortably beat champion robin sharapova, of russia on thursday for a final place in asia. [SEP] novak djoko [SEP]", "detok_text": "[CLS] champion frenchman wisquiet paired against eighth - seeded belgian robert kindr for a quarterfinal match, champion and french open champion robert benyder and frenchman lindsey vonn, and russia's dina safina defeated fellow german seed eduardo sahli on jan 6. [SEP] defending champion sharapova, runner - up and second overall in the women's us tennis championships, said she was planning to retire serve in retirement and pursue another campaign in 2009. [SEP] beijing (ap) - american andy murray comfortably beat champion robin sharapova, of russia on thursday for a final place in asia. [SEP] novak djoko [SEP]"} +{"type": "sample", "index": 57, "raw_text": "[CLS] the decision to stay. [SEP] eighth american seed roger federer opened his sixth match of the french open after he defeated germany 3 - 1 6 - 3, 7 - 1, and 6 - 2, 6 - 4, while seventh. sixth - seeded third - seeded radin was ousted by defending champion dina safina after she lost 6 - 6, 6 - 3. [SEP] noam retained his second consecutive appearance overall after a disappointing 2 - 0 - 0 draw over leaders finland. [SEP] the government had until saturday to close the august recess after president hamid karzai ' s final attempt to secure his seven - year term with a [SEP]", "detok_text": "[CLS] the decision to stay. [SEP] eighth american seed roger federer opened his sixth match of the french open after he defeated germany 3 - 1 6 - 3, 7 - 1, and 6 - 2, 6 - 4, while seventh. sixth - seeded third - seeded radin was ousted by defending champion dina safina after she lost 6 - 6, 6 - 3. [SEP] noam retained his second consecutive appearance overall after a disappointing 2 - 0 - 0 draw over leaders finland. [SEP] the government had until saturday to close the august recess after president hamid karzai's final attempt to secure his seven - year term with a [SEP]"} +{"type": "sample", "index": 58, "raw_text": "[CLS] make fraud more difficult. [SEP] actually, they said, he half - died. [SEP] venus williams, who plays france ' s chardy, and serena williams, who failed to make it through to wimbledon, losing the two titles, in the second set, will be tested against a trio of the united states. [SEP] the weather was more brisk and light, but quieter and uncertain. [SEP] a : they ' re not out there. [SEP] figures released by unicef this month showed that 5, 032 children diagnosed worldwide - - about 500, 000 of them enrolled in the u. s., in europe alone - and 90 percent of [SEP]", "detok_text": "[CLS] make fraud more difficult. [SEP] actually, they said, he half - died. [SEP] venus williams, who plays france's chardy, and serena williams, who failed to make it through to wimbledon, losing the two titles, in the second set, will be tested against a trio of the united states. [SEP] the weather was more brisk and light, but quieter and uncertain. [SEP] a: they're not out there. [SEP] figures released by unicef this month showed that 5, 032 children diagnosed worldwide - - about 500, 000 of them enrolled in the u. s., in europe alone - and 90 percent of [SEP]"} +{"type": "sample", "index": 59, "raw_text": "[CLS] those who experienced it. [SEP] a person close to hayden ' s matter said the official nature of his report had been dropped. [SEP] i can ' t be much more than happy to hold back to my performance at the moment, and have a feeling of whether you tried it out at the time or you don ' t know it was the right thing. \" [SEP] double british world champion jenson button and mclaren englishman lewis hamilton won his team ' s hopes of the next two french masters by five points, while novak djokovic hit the target with one of three at half - time. [SEP] in total total of 24 % of this [SEP]", "detok_text": "[CLS] those who experienced it. [SEP] a person close to hayden's matter said the official nature of his report had been dropped. [SEP] i can't be much more than happy to hold back to my performance at the moment, and have a feeling of whether you tried it out at the time or you don't know it was the right thing. \" [SEP] double british world champion jenson button and mclaren englishman lewis hamilton won his team's hopes of the next two french masters by five points, while novak djokovic hit the target with one of three at half - time. [SEP] in total total of 24 % of this [SEP]"} +{"type": "sample", "index": 60, "raw_text": "[CLS] having beat nicolas marlband, andy murray and david gadick and have lost them out if they bid to win their chance to finish the match. [SEP] david galbandian wrapped up his place in the fourth round of the masters after taking over a three - set match. [SEP] the swiss failed to score much this time in the ninth game after losing the second giving up five more points and a 35 - 0 record in eight games against the russian. [SEP] no. seed safina lost to her serve 12 times and is hoping to meet one of germany ' s top teams next week. [SEP] the survey represents more than 50 [SEP]", "detok_text": "[CLS] having beat nicolas marlband, andy murray and david gadick and have lost them out if they bid to win their chance to finish the match. [SEP] david galbandian wrapped up his place in the fourth round of the masters after taking over a three - set match. [SEP] the swiss failed to score much this time in the ninth game after losing the second giving up five more points and a 35 - 0 record in eight games against the russian. [SEP] no. seed safina lost to her serve 12 times and is hoping to meet one of germany's top teams next week. [SEP] the survey represents more than 50 [SEP]"} +{"type": "sample", "index": 61, "raw_text": "[CLS] forces. [SEP] zimbabwe ' s presidentai kibaki said sunday dismissed speculation that zimbabwe ' s ruling party was headed for a new presidential term, which would be held in march ' s election. [SEP] peter colligan, an expert at germany ' s university of bremen, warns that young people should take more risk when they try to make symptoms of their illness less serious. [SEP] the death of a suicide bomber in a convoy after an attack on a mosque in the same area is believed to have killed nearly 300 to 400 people. [SEP] the study was commissioned by the government ' s environment survey. [SEP] the debate was called for the [SEP]", "detok_text": "[CLS] forces. [SEP] zimbabwe's presidentai kibaki said sunday dismissed speculation that zimbabwe's ruling party was headed for a new presidential term, which would be held in march's election. [SEP] peter colligan, an expert at germany's university of bremen, warns that young people should take more risk when they try to make symptoms of their illness less serious. [SEP] the death of a suicide bomber in a convoy after an attack on a mosque in the same area is believed to have killed nearly 300 to 400 people. [SEP] the study was commissioned by the government's environment survey. [SEP] the debate was called for the [SEP]"} +{"type": "sample", "index": 62, "raw_text": "[CLS] prix, second favourite lewis hamilton and germany ' s fernando alonso of mclaren, while mclaren have climbed fifth in the championship standings. [SEP] the fourth seeded players advanced, the fourth seed novak djokovic, faces safina, roland garros, the australian open safina champion, and roger federer jr, the former australian open. [SEP] on the second stage, the mood soured and fresh resignations were cast over dr salmond ' s allegations. [SEP] it appeared in the guardian on wednesday 28 october 2010 on top 10. 46pm comment on sunday morning. [SEP] \" we continue scurry to clear the democratic nomination [SEP]", "detok_text": "[CLS] prix, second favourite lewis hamilton and germany's fernando alonso of mclaren, while mclaren have climbed fifth in the championship standings. [SEP] the fourth seeded players advanced, the fourth seed novak djokovic, faces safina, roland garros, the australian open safina champion, and roger federer jr, the former australian open. [SEP] on the second stage, the mood soured and fresh resignations were cast over dr salmond's allegations. [SEP] it appeared in the guardian on wednesday 28 october 2010 on top 10. 46pm comment on sunday morning. [SEP] \" we continue scurry to clear the democratic nomination [SEP]"} +{"type": "sample", "index": 63, "raw_text": "[CLS]urers. [SEP] that is why people have been worried or not before they went on a rampage. [SEP] the men were cruising to a 0 - 2 quarterfinal by no. 4 seed and no. 6 seed robin kragner, while nikolay davydenko of russia also defeated no. 4 philipp kleyschr 11 - 3, 6 - 6 - 4. [SEP] a 17 - year year - old boy has been arrested in connection with dangerous driving in connection with the death of 13 - year - old daniel fletcher, the meride police agency said. [SEP] i want to open the door of china to the chinese people because the [SEP]", "detok_text": "[CLS]urers. [SEP] that is why people have been worried or not before they went on a rampage. [SEP] the men were cruising to a 0 - 2 quarterfinal by no. 4 seed and no. 6 seed robin kragner, while nikolay davydenko of russia also defeated no. 4 philipp kleyschr 11 - 3, 6 - 6 - 4. [SEP] a 17 - year year - old boy has been arrested in connection with dangerous driving in connection with the death of 13 - year - old daniel fletcher, the meride police agency said. [SEP] i want to open the door of china to the chinese people because the [SEP]"} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_1p8_to_0p8_c1024_scored.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_1p8_to_0p8_c1024_scored.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2a72de34b5d2bc4160e6e56ce51e0c39615c8bfe --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_1p8_to_0p8_c1024_scored.jsonl @@ -0,0 +1,65 @@ +{"type": "summary", "name": "linear_1p8_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_1p8_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.8, "temp_end": 0.8, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 44.10530348094567, "nll_per_token": 3.7865800355610095, "tokens": 9728}, "diversity": {"sample_entropy": 4.16083612008407, "unique_tokens": 1814, "token_count": 8192, "distinct_1": 0.221435546875, "distinct_2": 0.6830708661417323, "top_token_mass": 0.0643310546875}} +{"type": "sample", "index": 0, "raw_text": "[CLS] first set on a love break, setting up an 80 - foot cross - volley to del potro in the third game and again at 3 - 3 to take the second set. [SEP] and the dream story of a african - american who has prepared for the final stages of the first new york city marathon since the beginning of the decade, with a solid expectation of success. [SEP] the report was criticised by the government and took a deep role in the proceedings. [SEP] monday was forecast to bring up to 8 inches of rain for some areas of china ' s north - western province, according to the weather ministry. [SEP] \" the idea of [SEP]", "detok_text": "[CLS] first set on a love break, setting up an 80 - foot cross - volley to del potro in the third game and again at 3 - 3 to take the second set. [SEP] and the dream story of a african - american who has prepared for the final stages of the first new york city marathon since the beginning of the decade, with a solid expectation of success. [SEP] the report was criticised by the government and took a deep role in the proceedings. [SEP] monday was forecast to bring up to 8 inches of rain for some areas of china's north - western province, according to the weather ministry. [SEP] \" the idea of [SEP]"} +{"type": "sample", "index": 1, "raw_text": "[CLS] it is currently expected to stand in january ' s elections but is expected to run for a second term in 2012. [SEP] mr. boehner would not be surprised that mr. g. edwards had spent several decades in prison before becoming the governor in the 1980s. [SEP] it was less shocking. [SEP] u. s. forces in southern afghanistan said sunday that eight were killed in the southern afghan capital. [SEP] \" the problem at the beginning of the year was that we ' re on the high end of the market, the point where they are going to be available, \" mr. wood said. [SEP] this is a crime against humanity [SEP]", "detok_text": "[CLS] it is currently expected to stand in january's elections but is expected to run for a second term in 2012. [SEP] mr. boehner would not be surprised that mr. g. edwards had spent several decades in prison before becoming the governor in the 1980s. [SEP] it was less shocking. [SEP] u. s. forces in southern afghanistan said sunday that eight were killed in the southern afghan capital. [SEP] \"the problem at the beginning of the year was that we're on the high end of the market, the point where they are going to be available,\" mr. wood said. [SEP] this is a crime against humanity [SEP]"} +{"type": "sample", "index": 2, "raw_text": "[CLS] ferguson ' s belief that he could still win back - to - back league games with manchester united. [SEP] it was about 15 : 15 on monday november 11, 2008. [SEP] \" there is going to be some talks with some wealthy individuals, \" collis said. [SEP] there was no deal, \" taha says. [SEP] the old station, near crown street, is due to reopen again on saturday monday evening and sunday afternoon. [SEP] but we can ' t bear it anymore. [SEP] this week marks the start of labour ' s \" democratic leadership \" campaign for the future of television. [SEP] the european commission is scheduled to vote [SEP]", "detok_text": "[CLS] ferguson's belief that he could still win back - to - back league games with manchester united. [SEP] it was about 15: 15 on monday november 11, 2008. [SEP] \"there is going to be some talks with some wealthy individuals,\" collis said. [SEP] there was no deal, \"taha says. [SEP] the old station, near crown street, is due to reopen again on saturday monday evening and sunday afternoon. [SEP] but we can't bear it anymore. [SEP] this week marks the start of labour's\" democratic leadership \" campaign for the future of television. [SEP] the european commission is scheduled to vote [SEP]"} +{"type": "sample", "index": 3, "raw_text": "[CLS] - 2 ) drove in the bottom of the ninth. [SEP] defending champion dinara safin lost 6 - 6 7 - 6 7, 6 - 0 to venus williams at the 2002 open and final event of the season. [SEP] it arrives at 1 : 22 : 15, ca. [SEP] the source would not comment about friday ' s report, but said it could begin within an hour after a final review of the investigation - - or a hearing could take place by the day. [SEP] john mccain ' s campaign team came to believe race played a role in the outcome and it was naive to suggest that. [SEP] as well as the political [SEP]", "detok_text": "[CLS] - 2 ) drove in the bottom of the ninth. [SEP] defending champion dinara safin lost 6 - 6 7 - 6 7, 6 - 0 to venus williams at the 2002 open and final event of the season. [SEP] it arrives at 1: 22: 15, ca. [SEP] the source would not comment about friday's report, but said it could begin within an hour after a final review of the investigation - - or a hearing could take place by the day. [SEP] john mccain's campaign team came to believe race played a role in the outcome and it was naive to suggest that. [SEP] as well as the political [SEP]"} +{"type": "sample", "index": 4, "raw_text": "[CLS] ' s way away from the court. [SEP] since july, the 18 u. s. soldiers in afghanistan, eight of them killed in the attack, suffered four gunshots. [SEP] london ( reuters ) - the ryder cup ' s injured kervien is in good form as he prepares to miss the french open and england ' s team tournament in paris later on friday. [SEP] the pair have been called up by their manager for sunday ' s premier league match and in talks with lee campbell, who is understood to be in charge of the game, it turned out - - chelsea - - who had kept their place within a goal [SEP]", "detok_text": "[CLS]'s way away from the court. [SEP] since july, the 18 u. s. soldiers in afghanistan, eight of them killed in the attack, suffered four gunshots. [SEP] london (reuters) - the ryder cup's injured kervien is in good form as he prepares to miss the french open and england's team tournament in paris later on friday. [SEP] the pair have been called up by their manager for sunday's premier league match and in talks with lee campbell, who is understood to be in charge of the game, it turned out - - chelsea - - who had kept their place within a goal [SEP]"} +{"type": "sample", "index": 5, "raw_text": "[CLS], \" he said. [SEP] the defeat was the second, for though, as england ' s win appeared to be under the rug. [SEP] ( cnn ) - - up until the 90s, it didn ' t pay off as england cruised to secure victory in south africa ' s first test in a two - day series where he was named up to friday ' s latest game against sri lanka. [SEP] the web currently receives only over 100, 000 copies a year, which is rare in the world. [SEP] even today, it is the glamour that attracts some of hollywood ' s greatest stars. [SEP] the company added that falling demand is [SEP]", "detok_text": "[CLS], \" he said. [SEP] the defeat was the second, for though, as england's win appeared to be under the rug. [SEP] (cnn) - - up until the 90s, it didn't pay off as england cruised to secure victory in south africa's first test in a two - day series where he was named up to friday's latest game against sri lanka. [SEP] the web currently receives only over 100, 000 copies a year, which is rare in the world. [SEP] even today, it is the glamour that attracts some of hollywood's greatest stars. [SEP] the company added that falling demand is [SEP]"} +{"type": "sample", "index": 6, "raw_text": "[CLS]. s. - led troops sunday, a spokesman said. [SEP] the boy ' s bus driver was able to get to the scene today. [SEP] \" i was shocked, \" he told the members of the company ' s staff. [SEP] ( cnn ) - - two days of the first game of an american pitcher in baseball ' s world series are set to end in the coming days, says a government report. [SEP] well, wait, i don ' t have another clue. [SEP] federer fought back from 2 - 0, losing the tie - break match in the first set, forcing sixth seed safina to pull ahead 6 - [SEP]", "detok_text": "[CLS]. s. - led troops sunday, a spokesman said. [SEP] the boy's bus driver was able to get to the scene today. [SEP] \"i was shocked,\" he told the members of the company's staff. [SEP] (cnn) - - two days of the first game of an american pitcher in baseball's world series are set to end in the coming days, says a government report. [SEP] well, wait, i don't have another clue. [SEP] federer fought back from 2 - 0, losing the tie - break match in the first set, forcing sixth seed safina to pull ahead 6 - [SEP]"} +{"type": "sample", "index": 7, "raw_text": "[CLS] said. [SEP] if they ' re no longer, it will create a better situation, it will definitely happen, \" abdul kazir, deputy governor of the eastern rakni province, told me sunday afternoon. [SEP] basel, switzerland - spain ' s carlos zawika won his first race of the season sunday and the second - ranked armstrong, who won the tour of california title in his giro debut, mounted a superb attack on the 2, 500 - minute mark that brought him his first grand cup victory. [SEP] the fact is, more than a decade ago, the story of the national mall - - it is a huge [SEP]", "detok_text": "[CLS] said. [SEP] if they're no longer, it will create a better situation, it will definitely happen, \" abdul kazir, deputy governor of the eastern rakni province, told me sunday afternoon. [SEP] basel, switzerland - spain's carlos zawika won his first race of the season sunday and the second - ranked armstrong, who won the tour of california title in his giro debut, mounted a superb attack on the 2, 500 - minute mark that brought him his first grand cup victory. [SEP] the fact is, more than a decade ago, the story of the national mall - - it is a huge [SEP]"} +{"type": "sample", "index": 8, "raw_text": "[CLS] who was sent out to action on tuesday, where he played for germany at the french open in august. [SEP] as the 2008 race up between clinton and obama turns closer, independent - minded voters are more likely to be as enthusiastic or undeclarted with obama. [SEP] he attended the conference before his speech and is britain ' s minister on the rights of human rights to the eu ' s largest muslim nation. [SEP] the body was charlyne mclendon in the middle of the night. [SEP] in total between 1999 and 2005, 700 thought to have died in the west of afghanistan. [SEP] last month, the commission approved the [SEP]", "detok_text": "[CLS] who was sent out to action on tuesday, where he played for germany at the french open in august. [SEP] as the 2008 race up between clinton and obama turns closer, independent - minded voters are more likely to be as enthusiastic or undeclarted with obama. [SEP] he attended the conference before his speech and is britain's minister on the rights of human rights to the eu's largest muslim nation. [SEP] the body was charlyne mclendon in the middle of the night. [SEP] in total between 1999 and 2005, 700 thought to have died in the west of afghanistan. [SEP] last month, the commission approved the [SEP]"} +{"type": "sample", "index": 9, "raw_text": "[CLS] in afghanistan, including troops from the u. s. army of engineers and the state health department. [SEP] \" i have no plans to change my heart, they would take me seriously... just in case you try it again. [SEP] the mps have refused to comment on the results of the preliminary inquiry, which will take up their verdicts to see if due to take place at the high court. [SEP] a national trust with a bid to raise the names of a group of children in england are to go to the court. [SEP] but to be a target of a political challenge is difficult. [SEP] that ' s a bit of [SEP]", "detok_text": "[CLS] in afghanistan, including troops from the u. s. army of engineers and the state health department. [SEP] \" i have no plans to change my heart, they would take me seriously... just in case you try it again. [SEP] the mps have refused to comment on the results of the preliminary inquiry, which will take up their verdicts to see if due to take place at the high court. [SEP] a national trust with a bid to raise the names of a group of children in england are to go to the court. [SEP] but to be a target of a political challenge is difficult. [SEP] that's a bit of [SEP]"} +{"type": "sample", "index": 10, "raw_text": "[CLS] - playing, and if he ' s realistic about a competitive position in the middle east, he ' s probably have a little of an interest, and is very confident, \" he told reporters. [SEP] chavez, who won general elections in march, had said on thursday that he intended as a political candidate. [SEP] he looked like it would take a while to the city and he could end the crisis. [SEP] the police said he was able to give up but had been walking close to the pavement when he hit his wife ' s car on sunday. [SEP] this means serving as the choice between president and vice president of the european central bank [SEP]", "detok_text": "[CLS] - playing, and if he's realistic about a competitive position in the middle east, he's probably have a little of an interest, and is very confident, \" he told reporters. [SEP] chavez, who won general elections in march, had said on thursday that he intended as a political candidate. [SEP] he looked like it would take a while to the city and he could end the crisis. [SEP] the police said he was able to give up but had been walking close to the pavement when he hit his wife's car on sunday. [SEP] this means serving as the choice between president and vice president of the european central bank [SEP]"} +{"type": "sample", "index": 11, "raw_text": "[CLS] off the capitals ' 10 - 3 - 11 - 1 - 2 record. [SEP] \" that ' s just the best part of the debate, \" she said. [SEP] they also got away from tehran in the summer of 2007. [SEP] this, in fact, began with a philosophical view as a commitment that a player had the better side of their game. [SEP] dubai ( reuters ) - defending champion tiger woods recovered from a broken wrist to go on 78 in the first round of the barclays open here on wednesday, and failed to claim a two - stroke lead following his victory at the masters. [SEP] labour ' s alex davies said : [SEP]", "detok_text": "[CLS] off the capitals' 10 - 3 - 11 - 1 - 2 record. [SEP] \"that's just the best part of the debate,\" she said. [SEP] they also got away from tehran in the summer of 2007. [SEP] this, in fact, began with a philosophical view as a commitment that a player had the better side of their game. [SEP] dubai (reuters) - defending champion tiger woods recovered from a broken wrist to go on 78 in the first round of the barclays open here on wednesday, and failed to claim a two - stroke lead following his victory at the masters. [SEP] labour's alex davies said: [SEP]"} +{"type": "sample", "index": 12, "raw_text": "[CLS] funds for the region for 8 to 15 years. [SEP] the second attacker detonated the bomb at 8. 0675 gmt ( 10. 40 ) in the middle of the night in the western city of jaipur, the official said. [SEP] it is, then, to cringe at someone ' s house or to shut down. [SEP] years of research at the university have found that most of us have written about the women in sweden since about 50 years ago. [SEP] \" i need to become the captain of wales and i ' ve needed a whole lot of preparation, \" he said. [SEP] india ' s foreign minister gordon mandro [SEP]", "detok_text": "[CLS] funds for the region for 8 to 15 years. [SEP] the second attacker detonated the bomb at 8. 0675 gmt (10. 40) in the middle of the night in the western city of jaipur, the official said. [SEP] it is, then, to cringe at someone's house or to shut down. [SEP] years of research at the university have found that most of us have written about the women in sweden since about 50 years ago. [SEP] \"i need to become the captain of wales and i've needed a whole lot of preparation,\" he said. [SEP] india's foreign minister gordon mandro [SEP]"} +{"type": "sample", "index": 13, "raw_text": "[CLS] australia, gaining 0. 6 per cent to 360. 40. [SEP] mr correa, the interim mayor of the city, has already been beaten by an opponent in the last election, and is expected to lose in the second round of the year. [SEP] \" what i tell me that is, at the expense of my government, is to come to me and bring me to justice. [SEP] but, hopefully, he can use the occasion to sort of the crucial issues of his life but it is better to go to the test. [SEP] large amounts of the illness can come from the mouth and part of the patient is coughing. [SEP]", "detok_text": "[CLS] australia, gaining 0. 6 per cent to 360. 40. [SEP] mr correa, the interim mayor of the city, has already been beaten by an opponent in the last election, and is expected to lose in the second round of the year. [SEP] \" what i tell me that is, at the expense of my government, is to come to me and bring me to justice. [SEP] but, hopefully, he can use the occasion to sort of the crucial issues of his life but it is better to go to the test. [SEP] large amounts of the illness can come from the mouth and part of the patient is coughing. [SEP]"} +{"type": "sample", "index": 14, "raw_text": "[CLS] said. [SEP] the cost of the defense force is about a third of the total costs included in the overall u. s. air war strategy. [SEP] he wasn ' t speaking out after hearing about the interview by the government. [SEP] but liverpool had the right to be close to the stage 2 - 1 and, ultimately, it was a little more difficult by the european cup to hold it at the top. [SEP] i can ' t be very sure. [SEP] i was angry at my words because i had just been caught, \" he said. [SEP] \" we believe that we can be prepared in this increasingly sustainable way, \" the joint [SEP]", "detok_text": "[CLS] said. [SEP] the cost of the defense force is about a third of the total costs included in the overall u. s. air war strategy. [SEP] he wasn't speaking out after hearing about the interview by the government. [SEP] but liverpool had the right to be close to the stage 2 - 1 and, ultimately, it was a little more difficult by the european cup to hold it at the top. [SEP] i can't be very sure. [SEP] i was angry at my words because i had just been caught, \"he said. [SEP]\" we believe that we can be prepared in this increasingly sustainable way, \" the joint [SEP]"} +{"type": "sample", "index": 15, "raw_text": "[CLS], but the area is safe and relatively safe. [SEP] but, mr. conserstein said he believed the pain could be alleviated by the funds. [SEP] the fastest time of the two women ' s downhills was a blustery time of 1. 30 seconds. [SEP] 5 - 11 a. m. [SEP] in the past, however, america ' s opposition had been feeling the brunt of hitler ' s wrath when the soviet was in power and down. [SEP] but some mps said they would reserve the right to put their foot on the liberal democrats and come third in charge of the party. [SEP] a few weeks later [SEP]", "detok_text": "[CLS], but the area is safe and relatively safe. [SEP] but, mr. conserstein said he believed the pain could be alleviated by the funds. [SEP] the fastest time of the two women's downhills was a blustery time of 1. 30 seconds. [SEP] 5 - 11 a. m. [SEP] in the past, however, america's opposition had been feeling the brunt of hitler's wrath when the soviet was in power and down. [SEP] but some mps said they would reserve the right to put their foot on the liberal democrats and come third in charge of the party. [SEP] a few weeks later [SEP]"} +{"type": "sample", "index": 16, "raw_text": "[CLS] and that it ' s just a little compared to apple ' s iphone. [SEP] benitez ' s side made a strong start in the championship on monday and opened it with a three - goal cushion when keane scored the first liverpool goal in less than a minute. [SEP] what would you do this time? [SEP] but pietersen, a young all - rounder, will replace pakistan ' s jekib singh, and middlesex ' s hajha scored the winner for the home side in a fourth - wicket victory with just 11 minutes to play. [SEP] the four - day test is held at friday times, but is due to [SEP]", "detok_text": "[CLS] and that it's just a little compared to apple's iphone. [SEP] benitez's side made a strong start in the championship on monday and opened it with a three - goal cushion when keane scored the first liverpool goal in less than a minute. [SEP] what would you do this time? [SEP] but pietersen, a young all - rounder, will replace pakistan's jekib singh, and middlesex's hajha scored the winner for the home side in a fourth - wicket victory with just 11 minutes to play. [SEP] the four - day test is held at friday times, but is due to [SEP]"} +{"type": "sample", "index": 17, "raw_text": "[CLS] soon. [SEP] when i think at the start of the year, it may be left to me to set out. [SEP] the study looked at 55 small children and three children. [SEP] \" the war is kind of about winning, \" karzai has said. [SEP] policymakers, in some cases, have had little optimism about the company ' s future. [SEP] last year, she had an early season, having missed both tournaments and one game from a side injury. [SEP] it says it shows the impact 25 per cent of the population and that a quarter of the population could even be forced to focus on the treatment of children. [SEP] [SEP]", "detok_text": "[CLS] soon. [SEP] when i think at the start of the year, it may be left to me to set out. [SEP] the study looked at 55 small children and three children. [SEP] \"the war is kind of about winning,\" karzai has said. [SEP] policymakers, in some cases, have had little optimism about the company's future. [SEP] last year, she had an early season, having missed both tournaments and one game from a side injury. [SEP] it says it shows the impact 25 per cent of the population and that a quarter of the population could even be forced to focus on the treatment of children. [SEP] [SEP]"} +{"type": "sample", "index": 18, "raw_text": "[CLS] two points behind. [SEP] ministers have suggested that patients should stay sober if the risk of dying of cancer is rising. [SEP] mr alyddon agreed that there was an important role for the debate, although perhaps he doubted that yesterday ' s statement was not true. [SEP] \" i think it ' s what is happening at a national level. [SEP] \" i ' m the first person to know enough to make a play, \" she said of scotland. [SEP] they were undefeated in the last three games and, after the 2008 world cup, came to the tournament as good hosts. [SEP] kawagan then moved from switzerland in 1992 to the [SEP]", "detok_text": "[CLS] two points behind. [SEP] ministers have suggested that patients should stay sober if the risk of dying of cancer is rising. [SEP] mr alyddon agreed that there was an important role for the debate, although perhaps he doubted that yesterday's statement was not true. [SEP] \"i think it's what is happening at a national level. [SEP]\" i'm the first person to know enough to make a play, \" she said of scotland. [SEP] they were undefeated in the last three games and, after the 2008 world cup, came to the tournament as good hosts. [SEP] kawagan then moved from switzerland in 1992 to the [SEP]"} +{"type": "sample", "index": 19, "raw_text": "[CLS] [SEP] manchester united was comfortably ahead on four occasions and then went side to finish for six minutes from the inside of the goal line. [SEP] in the past few weeks, romney was defeated in the polls ; he was held by bush by primary, followed by mccain ' s. [SEP] \" it is necessary for a complete re - engage in the surge and for giving u. s. forces a greater risk in afghanistan, \" said one former u. s. senator and member of the state department. [SEP] ( ap ) - a college student has been refused permission to make a 14 - minute trip to the great lakes range on the way to [SEP]", "detok_text": "[CLS] [SEP] manchester united was comfortably ahead on four occasions and then went side to finish for six minutes from the inside of the goal line. [SEP] in the past few weeks, romney was defeated in the polls; he was held by bush by primary, followed by mccain's. [SEP] \"it is necessary for a complete re - engage in the surge and for giving u. s. forces a greater risk in afghanistan,\" said one former u. s. senator and member of the state department. [SEP] (ap) - a college student has been refused permission to make a 14 - minute trip to the great lakes range on the way to [SEP]"} +{"type": "sample", "index": 20, "raw_text": "[CLS] fans, said phil dawson, president of the general manager. [SEP] \" there ' s now that more than 150 people on the final day of the presidential election, or more have died in the fighting in north yemen ' s capital bakri, \" the official said, depending on the location of sunday ' s announcement. [SEP] democrats will not win the fight for a new democratic majority. [SEP] before he was able to stand in front of me, they ' ve got to ask him, \" what are you doing now? \" [SEP] the union federation of teachers and traders said that in the days when it is cutting tens of thousands of [SEP]", "detok_text": "[CLS] fans, said phil dawson, president of the general manager. [SEP] \"there's now that more than 150 people on the final day of the presidential election, or more have died in the fighting in north yemen's capital bakri,\" the official said, depending on the location of sunday's announcement. [SEP] democrats will not win the fight for a new democratic majority. [SEP] before he was able to stand in front of me, they've got to ask him, \"what are you doing now?\" [SEP] the union federation of teachers and traders said that in the days when it is cutting tens of thousands of [SEP]"} +{"type": "sample", "index": 21, "raw_text": "[CLS] the fiscal year as the company ' s income stream is unlikely to improve. [SEP] a year ago, the figure was down somewhat compared with a year ago. [SEP] however, the first match having pulled a tear on his left hand, the second seeded agassi struggled to hold up his chance at best. [SEP] but tuesday ' s version of \" american idol \" was as much of a surprise as a reflection of the show ' s power. [SEP] stoner, who started the race at 10 - 1 favourite and then recovered to reach germany ' s fourth victory in two weeks, failed to reach the finish line. [SEP] new york ( [SEP]", "detok_text": "[CLS] the fiscal year as the company's income stream is unlikely to improve. [SEP] a year ago, the figure was down somewhat compared with a year ago. [SEP] however, the first match having pulled a tear on his left hand, the second seeded agassi struggled to hold up his chance at best. [SEP] but tuesday's version of \"american idol\" was as much of a surprise as a reflection of the show's power. [SEP] stoner, who started the race at 10 - 1 favourite and then recovered to reach germany's fourth victory in two weeks, failed to reach the finish line. [SEP] new york ( [SEP]"} +{"type": "sample", "index": 22, "raw_text": "[CLS] concerns over supply risks. [SEP] \" uncertainty about the size of the settlement comes with a bitter cost. [SEP] rbs will have to pay £12bn of new capital to start rescuing the troubled financial system. [SEP] capello is said to know for his future. [SEP] save the nation and grow up again. [SEP] a new trust is being set up by officials. [SEP] it is much less a question of the economy, and it raises doubts about who will be able to lead, said analysts. [SEP] kardashian has 22 points for the hawks ( 29 -. 5 ) in 18 games. [SEP] however, she added, the [SEP]", "detok_text": "[CLS] concerns over supply risks. [SEP] \" uncertainty about the size of the settlement comes with a bitter cost. [SEP] rbs will have to pay £12bn of new capital to start rescuing the troubled financial system. [SEP] capello is said to know for his future. [SEP] save the nation and grow up again. [SEP] a new trust is being set up by officials. [SEP] it is much less a question of the economy, and it raises doubts about who will be able to lead, said analysts. [SEP] kardashian has 22 points for the hawks (29 -. 5) in 18 games. [SEP] however, she added, the [SEP]"} +{"type": "sample", "index": 23, "raw_text": "[CLS] games liverpool and liverpool have lost five straight games and two to inter, who will finish the season with just three points in the champions league. [SEP] he resigned after more than 20 years in the u. s. army. [SEP] in october, 2002, in florida, a student at a school in new york, ny, was found with near - naked brain problems. [SEP] nearly 30, 000 people die every year alone, or only about 15 percent of their lives. [SEP] in the 1980s, the army developed a survey of iraqi soldiers who were ready, and soldiers who were not considered dangerous to serve in combat. [SEP] the inquiry is [SEP]", "detok_text": "[CLS] games liverpool and liverpool have lost five straight games and two to inter, who will finish the season with just three points in the champions league. [SEP] he resigned after more than 20 years in the u. s. army. [SEP] in october, 2002, in florida, a student at a school in new york, ny, was found with near - naked brain problems. [SEP] nearly 30, 000 people die every year alone, or only about 15 percent of their lives. [SEP] in the 1980s, the army developed a survey of iraqi soldiers who were ready, and soldiers who were not considered dangerous to serve in combat. [SEP] the inquiry is [SEP]"} +{"type": "sample", "index": 24, "raw_text": "[CLS] st. bernard parish, a suburb of the city. [SEP] on the recent day, it came with something like mike mcnamee ' s drive to win the championship. [SEP] the un said it might hold a general election, at least at the start of the year. [SEP] the peace deal was announced on a day that peace talks have stalled in south korea, where both leaders have called on the north government to comply with their pledge to withdraw. [SEP] on the eve of next friday he will be summoned by the members of the national council ' s african envoys, all of whom will be brought in in support of robert mugabe [SEP]", "detok_text": "[CLS] st. bernard parish, a suburb of the city. [SEP] on the recent day, it came with something like mike mcnamee's drive to win the championship. [SEP] the un said it might hold a general election, at least at the start of the year. [SEP] the peace deal was announced on a day that peace talks have stalled in south korea, where both leaders have called on the north government to comply with their pledge to withdraw. [SEP] on the eve of next friday he will be summoned by the members of the national council's african envoys, all of whom will be brought in in support of robert mugabe [SEP]"} +{"type": "sample", "index": 25, "raw_text": "[CLS] build a 4 - 3 lead on the dead end and then jumped ahead after just one goal. [SEP] he eventually hit the australian serve then at bay, before the american picked up a set point. [SEP] \" it ' s pretty dangerous and dangerous, \" she said. [SEP] by any standards, i can ' t be bothered. [SEP] at this point, people don ' t feel like the rest of their time is going to pay off. [SEP] although she did, she has been been supportive of the strategy in the past. [SEP] a more human option and, more basicly, a downside of the news and billboards is that [SEP]", "detok_text": "[CLS] build a 4 - 3 lead on the dead end and then jumped ahead after just one goal. [SEP] he eventually hit the australian serve then at bay, before the american picked up a set point. [SEP] \"it's pretty dangerous and dangerous,\" she said. [SEP] by any standards, i can't be bothered. [SEP] at this point, people don't feel like the rest of their time is going to pay off. [SEP] although she did, she has been been supportive of the strategy in the past. [SEP] a more human option and, more basicly, a downside of the news and billboards is that [SEP]"} +{"type": "sample", "index": 26, "raw_text": "[CLS]l in november 2008, in an election that will have left him in the race for the current presidency. [SEP] it was a very emotional day, and one that was a very emotional day, \" he said, being supported by a group of friends. [SEP] something is changed already. [SEP] dallas finished the current team no. 2 points back in third and second overall in sunday ' s first - round playoffs. [SEP] about one in three of its rivals are based in lanarkshire, glasgow, west london, north yorkshire, derbyshire, newham, southwark and doncaster. [SEP] more than 5, 500 people were killed and more than [SEP]", "detok_text": "[CLS]l in november 2008, in an election that will have left him in the race for the current presidency. [SEP] it was a very emotional day, and one that was a very emotional day, \" he said, being supported by a group of friends. [SEP] something is changed already. [SEP] dallas finished the current team no. 2 points back in third and second overall in sunday's first - round playoffs. [SEP] about one in three of its rivals are based in lanarkshire, glasgow, west london, north yorkshire, derbyshire, newham, southwark and doncaster. [SEP] more than 5, 500 people were killed and more than [SEP]"} +{"type": "sample", "index": 27, "raw_text": "[CLS] elsewhere in the region on friday. [SEP] philip sonnex, 30, has been charged with criminal murder after the sept. [SEP] adil rashid made india ' s inclusion in the first match part of a bigger attack against england for the ashes at the world cup. [SEP] the former star, who died due to a series of overdoses and heart disease 2002 - 27, will announce her decision later this week. [SEP] the french player, the us open champion, had the chance to finish in third in 2005, but was ninth in the champions league and sixth in the west. [SEP] denver, runner - up, lost 17 - 0 [SEP]", "detok_text": "[CLS] elsewhere in the region on friday. [SEP] philip sonnex, 30, has been charged with criminal murder after the sept. [SEP] adil rashid made india's inclusion in the first match part of a bigger attack against england for the ashes at the world cup. [SEP] the former star, who died due to a series of overdoses and heart disease 2002 - 27, will announce her decision later this week. [SEP] the french player, the us open champion, had the chance to finish in third in 2005, but was ninth in the champions league and sixth in the west. [SEP] denver, runner - up, lost 17 - 0 [SEP]"} +{"type": "sample", "index": 28, "raw_text": "[CLS] of the war in afghanistan appear to be the result - - directly or indirectly in the form of significant changes in the war policy - - of iraq and both public security and war. [SEP] they ' re a lot more proud of themselves when they beat the world cup favourites england 3 - 0, a draw in a match which ended them after two series of disappointments. [SEP] i ' m really a strength coach. [SEP] the company hopes soon to start its own treatment of cancer in men and women by testing its human hormone test in the united states. [SEP] look at russia ' s osrakhav and i feel a place to come [SEP]", "detok_text": "[CLS] of the war in afghanistan appear to be the result - - directly or indirectly in the form of significant changes in the war policy - - of iraq and both public security and war. [SEP] they're a lot more proud of themselves when they beat the world cup favourites england 3 - 0, a draw in a match which ended them after two series of disappointments. [SEP] i'm really a strength coach. [SEP] the company hopes soon to start its own treatment of cancer in men and women by testing its human hormone test in the united states. [SEP] look at russia's osrakhav and i feel a place to come [SEP]"} +{"type": "sample", "index": 29, "raw_text": "[CLS]. [SEP] when he told the jury he couldn ' t find an answer, he could have saved his own life. [SEP] he is now 17 years of a term. [SEP] that goal is not going to be lost in iran ' s presidential election. [SEP] agents in the main cities are atlanta, geneva, zurich, london, brussels, oslo and stockholm. [SEP] not everyone who had ever heard understood that way. [SEP] the figure was one percent lower than in 2007, when it lost $ $ 384 million over the full fiscal year, according to thomson reuters inc. [SEP] \" i didn ' t know, \" he says. [SEP] the [SEP]", "detok_text": "[CLS]. [SEP] when he told the jury he couldn't find an answer, he could have saved his own life. [SEP] he is now 17 years of a term. [SEP] that goal is not going to be lost in iran's presidential election. [SEP] agents in the main cities are atlanta, geneva, zurich, london, brussels, oslo and stockholm. [SEP] not everyone who had ever heard understood that way. [SEP] the figure was one percent lower than in 2007, when it lost $$384 million over the full fiscal year, according to thomson reuters inc. [SEP] \"i didn't know,\" he says. [SEP] the [SEP]"} +{"type": "sample", "index": 30, "raw_text": "[CLS] russian nikolay davydenko and third seed seed nadal, claimed the win as being a positive. [SEP] ( otc bulletin board : dhen. l ), announced today that it has completed the second quarter distribution of a $ 1. 7 million ( euro676 million ) 2009 operating profit from the company. [SEP] however, according to the daily news, 43 % believed they believed the polls were rigged. [SEP] the report was obtained by canadian government officials. [SEP] the man was later taken to the injury unit at the police station. [SEP] i was an agent of everything. [SEP] this year, the colts will play the afc [SEP]", "detok_text": "[CLS] russian nikolay davydenko and third seed seed nadal, claimed the win as being a positive. [SEP] (otc bulletin board: dhen. l), announced today that it has completed the second quarter distribution of a $1. 7 million (euro676 million) 2009 operating profit from the company. [SEP] however, according to the daily news, 43 % believed they believed the polls were rigged. [SEP] the report was obtained by canadian government officials. [SEP] the man was later taken to the injury unit at the police station. [SEP] i was an agent of everything. [SEP] this year, the colts will play the afc [SEP]"} +{"type": "sample", "index": 31, "raw_text": "[CLS] party ' s real role in the presidential election to be published today. [SEP] the police did not give information to the media. [SEP] the offices are spread from bristol, the west and the north east of england. [SEP] \" i knew that when he put me to the back of one of the cars, i didn ' t make the step right, \" she told cbs news. [SEP] \" it is a very exciting result, \" fauci said. [SEP] \" in japan, when you are playing at 15 minutes a game, it ' s safe to say it is really the only cut you need to take this year. [SEP] the [SEP]", "detok_text": "[CLS] party's real role in the presidential election to be published today. [SEP] the police did not give information to the media. [SEP] the offices are spread from bristol, the west and the north east of england. [SEP] \"i knew that when he put me to the back of one of the cars, i didn't make the step right,\" she told cbs news. [SEP] \"it is a very exciting result,\" fauci said. [SEP] \" in japan, when you are playing at 15 minutes a game, it's safe to say it is really the only cut you need to take this year. [SEP] the [SEP]"} +{"type": "sample", "index": 32, "raw_text": "[CLS]. [SEP] 12 - - 10 days before the start of sept. [SEP] she reached her wimbledon semi - final for the first time since 2005, losing her 6 - 4 record on the first set to venus, and reaching the fourth round, kuznetsova ' s fourth to nadal. [SEP] they had to try to make a game, \" he said. [SEP] the pirates left closer joe owings as a conservative starter, giving up two outs in the eighth inning. [SEP] the lack of an alternative life, particularly health care, is cancer, which can ' t directly affect your life until you ' re 50. [SEP] it came [SEP]", "detok_text": "[CLS]. [SEP] 12 - - 10 days before the start of sept. [SEP] she reached her wimbledon semi - final for the first time since 2005, losing her 6 - 4 record on the first set to venus, and reaching the fourth round, kuznetsova's fourth to nadal. [SEP] they had to try to make a game, \" he said. [SEP] the pirates left closer joe owings as a conservative starter, giving up two outs in the eighth inning. [SEP] the lack of an alternative life, particularly health care, is cancer, which can't directly affect your life until you're 50. [SEP] it came [SEP]"} +{"type": "sample", "index": 33, "raw_text": "[CLS] - income young women living in the region. [SEP] they were held in afghanistan, germany and iraq in 2006. [SEP] the runner - up dropped to sixth in pittsburgh, where the st. louis mystics have a good chance of playing in the playoffs. [SEP] after recent polls in iowa, nevada and texas, mr merkel feels his choice to serve as governor, who is seeking to buy some of his party ' s electoral power, is deductible as uncommitable. [SEP] the cardinals had won their eighth straight game before losing their fourth straight the year before. [SEP] one of those killed in the northern district of ban [SEP]", "detok_text": "[CLS] - income young women living in the region. [SEP] they were held in afghanistan, germany and iraq in 2006. [SEP] the runner - up dropped to sixth in pittsburgh, where the st. louis mystics have a good chance of playing in the playoffs. [SEP] after recent polls in iowa, nevada and texas, mr merkel feels his choice to serve as governor, who is seeking to buy some of his party's electoral power, is deductible as uncommitable. [SEP] the cardinals had won their eighth straight game before losing their fourth straight the year before. [SEP] one of those killed in the northern district of ban [SEP]"} +{"type": "sample", "index": 34, "raw_text": "[CLS] he calls on international support for the united states president.... [SEP] but then, before the match started to close, united would have appeared to be making an impact. [SEP] yesterday, the billionaire investor alex giuliani announced a deal to buy the 49 per cent stake in italy ' s total, the uk ' s largest bank asset manager ( kp ) and rescue the £176bn of mortgage assets that set up britain ' s financial system at the end of last year. [SEP] the day may count as a year ' s end but rather a turning point for labour in the polls and the fate of mr brown ' [SEP]", "detok_text": "[CLS] he calls on international support for the united states president.... [SEP] but then, before the match started to close, united would have appeared to be making an impact. [SEP] yesterday, the billionaire investor alex giuliani announced a deal to buy the 49 per cent stake in italy's total, the uk's largest bank asset manager (kp) and rescue the £176bn of mortgage assets that set up britain's financial system at the end of last year. [SEP] the day may count as a year's end but rather a turning point for labour in the polls and the fate of mr brown ' [SEP]"} +{"type": "sample", "index": 35, "raw_text": "[CLS] just ended the last of their lives. [SEP] who cares about the many friends who are on vacation and trying to get their kids to leave funerals on the way out. [SEP] but the unstring is clear that there are some reasons to remain in the family. [SEP] it is shocking. [SEP] they had to do it. [SEP] a report of khan ' s health has suggested that he was in hospital at the time of the attack for up to a year. [SEP] \" 60 minutes : ny, \" \" newsreet \" ( thursday, 10 ), 9 : 00 ( 9 gmt ). [SEP] i thought it was due [SEP]", "detok_text": "[CLS] just ended the last of their lives. [SEP] who cares about the many friends who are on vacation and trying to get their kids to leave funerals on the way out. [SEP] but the unstring is clear that there are some reasons to remain in the family. [SEP] it is shocking. [SEP] they had to do it. [SEP] a report of khan's health has suggested that he was in hospital at the time of the attack for up to a year. [SEP] \"60 minutes: ny,\" \"newsreet\" (thursday, 10), 9: 00 (9 gmt). [SEP] i thought it was due [SEP]"} +{"type": "sample", "index": 36, "raw_text": "[CLS], hoping to become a presidential contender. [SEP] nearly a year, he took his sixth spot and then came in second for the season. [SEP] i can understand that he ' s able to pay so well to what he did yesterday, but i think his bill doesn ' t go as high as to justify it. [SEP] women ' s doubles : roddick earned a place in the women ' s doubles in men ' s doubles. [SEP] there is a lot more anger at the quality of china ' s banks, where most of them are in the u. s. government. [SEP] the risk of recession was raised when the euro slumped by [SEP]", "detok_text": "[CLS], hoping to become a presidential contender. [SEP] nearly a year, he took his sixth spot and then came in second for the season. [SEP] i can understand that he's able to pay so well to what he did yesterday, but i think his bill doesn't go as high as to justify it. [SEP] women's doubles: roddick earned a place in the women's doubles in men's doubles. [SEP] there is a lot more anger at the quality of china's banks, where most of them are in the u. s. government. [SEP] the risk of recession was raised when the euro slumped by [SEP]"} +{"type": "sample", "index": 37, "raw_text": "[CLS]. [SEP] the belgian was one of the top players on sunday and finished third in the semifinals of the atp tour event, final and final and earned a go - ahead in the third set, according to a statement released tuesday. [SEP] a police official said three rounds were fired, four people standing at a wall and two wounded in a section of the busy area northwest of the capital, the report said. [SEP] in a 2006 study, the researchers studied around 10, 000 finnish adults at harvard ' s general medical center from 1999 until early march. [SEP] des moines, iowa, which has nine games left in the southeastern title game, made [SEP]", "detok_text": "[CLS]. [SEP] the belgian was one of the top players on sunday and finished third in the semifinals of the atp tour event, final and final and earned a go - ahead in the third set, according to a statement released tuesday. [SEP] a police official said three rounds were fired, four people standing at a wall and two wounded in a section of the busy area northwest of the capital, the report said. [SEP] in a 2006 study, the researchers studied around 10, 000 finnish adults at harvard's general medical center from 1999 until early march. [SEP] des moines, iowa, which has nine games left in the southeastern title game, made [SEP]"} +{"type": "sample", "index": 38, "raw_text": "[CLS] and the government said on tuesday retail sales rose by 2. 5 percent in the year to august. [SEP] but it ' s a fairly simple question. [SEP] today, the fashion business is a mess. [SEP] a man suffered a concussion, said he rushed to his friends, though he was recovered at the scene and underwent surgery. [SEP] overall credibility was still a risk, though. [SEP] \" i don ' t have any way of knowing when he ' s getting out of his car, \" he said. [SEP] it has not responded to the original round of hostile offers. [SEP] james paget, the director of microsoft ' s enterprise design [SEP]", "detok_text": "[CLS] and the government said on tuesday retail sales rose by 2. 5 percent in the year to august. [SEP] but it's a fairly simple question. [SEP] today, the fashion business is a mess. [SEP] a man suffered a concussion, said he rushed to his friends, though he was recovered at the scene and underwent surgery. [SEP] overall credibility was still a risk, though. [SEP] \"i don't have any way of knowing when he's getting out of his car,\" he said. [SEP] it has not responded to the original round of hostile offers. [SEP] james paget, the director of microsoft's enterprise design [SEP]"} +{"type": "sample", "index": 39, "raw_text": "[CLS] at the university of british columbia. [SEP] michael broad ' s 10th century off cook was dropped to a modest 200 lower than his mark as south africa had their wickets drawn 5 - 0 in 10 balls to reply to india ' s five runs at tea on friday. [SEP] \" we have been looking at the best part of the year, \" he said. [SEP] back in the third quarter of 2006, more focus was on how the colts used to lose their first 3 games at home. [SEP] insurgents attacked a village of sangin in, north of the centre of the town as well as a home to afghan police. [SEP] during its hearing [SEP]", "detok_text": "[CLS] at the university of british columbia. [SEP] michael broad's 10th century off cook was dropped to a modest 200 lower than his mark as south africa had their wickets drawn 5 - 0 in 10 balls to reply to india's five runs at tea on friday. [SEP] \"we have been looking at the best part of the year,\" he said. [SEP] back in the third quarter of 2006, more focus was on how the colts used to lose their first 3 games at home. [SEP] insurgents attacked a village of sangin in, north of the centre of the town as well as a home to afghan police. [SEP] during its hearing [SEP]"} +{"type": "sample", "index": 40, "raw_text": "[CLS] - final appearance in london, with the french star finally beating lleyton hewitt, 6 - 6 6 - 3. [SEP] the giants went a 4 - yard run in the first quarter for a touchdown when the steelers forced a 27 - yard game to close the way back within five. [SEP] gm ' s chief executive, fritz henderson, said opel ' s factory site in the netherlands would close last night, though two people who worked on the matter were still talking on the matter. [SEP] he won five straight british titles, an average of 3. 07m when he tried to defend his title from 2000 onwards, then lost his [SEP]", "detok_text": "[CLS] - final appearance in london, with the french star finally beating lleyton hewitt, 6 - 6 6 - 3. [SEP] the giants went a 4 - yard run in the first quarter for a touchdown when the steelers forced a 27 - yard game to close the way back within five. [SEP] gm's chief executive, fritz henderson, said opel's factory site in the netherlands would close last night, though two people who worked on the matter were still talking on the matter. [SEP] he won five straight british titles, an average of 3. 07m when he tried to defend his title from 2000 onwards, then lost his [SEP]"} +{"type": "sample", "index": 41, "raw_text": "[CLS], who was expected to turn 65 next year. [SEP] more than half of the uk population are children with autism, according to a survey of early data, published on wednesday. [SEP] ten people have been arrested and several others detained by the fbi. [SEP] although moyes has now failed to travel the right way, he has been short of inviting offers for players who lost their jobs this season. [SEP] the team are due to draw in belfast on thursday. [SEP] the rate for three to 17 years is about 40 per cent, which means the average annual cost of having these two children is £100, 000. [SEP] he brought her back to [SEP]", "detok_text": "[CLS], who was expected to turn 65 next year. [SEP] more than half of the uk population are children with autism, according to a survey of early data, published on wednesday. [SEP] ten people have been arrested and several others detained by the fbi. [SEP] although moyes has now failed to travel the right way, he has been short of inviting offers for players who lost their jobs this season. [SEP] the team are due to draw in belfast on thursday. [SEP] the rate for three to 17 years is about 40 per cent, which means the average annual cost of having these two children is £100, 000. [SEP] he brought her back to [SEP]"} +{"type": "sample", "index": 42, "raw_text": "[CLS] their daughters better than their husbands, the study found. [SEP] they were each found of guilty of five counts of murder. [SEP] the dispute is an important one. [SEP] \" i was at least very positive about the high performance of the performance, \" he said. [SEP] this is simple. [SEP] when williams had more than a point in the fourth game, and safin set up a forehand return to love, but safina bowed out in the first set on a hit - and - run forehand, then lost a match - point, the game went wide. [SEP] what makes the air - based computer safe? [SEP] even [SEP]", "detok_text": "[CLS] their daughters better than their husbands, the study found. [SEP] they were each found of guilty of five counts of murder. [SEP] the dispute is an important one. [SEP] \"i was at least very positive about the high performance of the performance,\" he said. [SEP] this is simple. [SEP] when williams had more than a point in the fourth game, and safin set up a forehand return to love, but safina bowed out in the first set on a hit - and - run forehand, then lost a match - point, the game went wide. [SEP] what makes the air - based computer safe? [SEP] even [SEP]"} +{"type": "sample", "index": 43, "raw_text": "[CLS] people in at least 35 countries, was available in mid - year. [SEP] zafar mujahin, the board ' s chairman, said buying the stake was not an option. [SEP] 18 and was released from the hospital. [SEP] o ' louis ' s fernando gonzalez closed the ninth with a slow - motioning walk from the first batter to open the fourth inning, taking a 14 - run lead against cincinnati in the final innings. [SEP] he said there was certainly no need for help. [SEP] new york, april 13 ( upi ) - - last week a oil tycoon was ordered by a u. s. bankruptcy court [SEP]", "detok_text": "[CLS] people in at least 35 countries, was available in mid - year. [SEP] zafar mujahin, the board's chairman, said buying the stake was not an option. [SEP] 18 and was released from the hospital. [SEP] o' louis's fernando gonzalez closed the ninth with a slow - motioning walk from the first batter to open the fourth inning, taking a 14 - run lead against cincinnati in the final innings. [SEP] he said there was certainly no need for help. [SEP] new york, april 13 (upi) - - last week a oil tycoon was ordered by a u. s. bankruptcy court [SEP]"} +{"type": "sample", "index": 44, "raw_text": "[CLS] institute of architecture at northwestern university and national university between 2000 and 2008. [SEP] the rockets were just 2 - 12 overall and 5 - 9 in games. [SEP] rangers ' alex boyd led liverpool out of the champions league after they lost their last game with leaders manchester united in the championship game. [SEP] the man had been taken to a nearby hospital. [SEP] mr bennett, a former electrical engineer, was found dead at a window outside a flat in birmingham, in west midlands, when he was shot three times in the chest. [SEP] another survived, another man was killed in the abdomen and five others are wounded. [SEP] the park was completed by [SEP]", "detok_text": "[CLS] institute of architecture at northwestern university and national university between 2000 and 2008. [SEP] the rockets were just 2 - 12 overall and 5 - 9 in games. [SEP] rangers' alex boyd led liverpool out of the champions league after they lost their last game with leaders manchester united in the championship game. [SEP] the man had been taken to a nearby hospital. [SEP] mr bennett, a former electrical engineer, was found dead at a window outside a flat in birmingham, in west midlands, when he was shot three times in the chest. [SEP] another survived, another man was killed in the abdomen and five others are wounded. [SEP] the park was completed by [SEP]"} +{"type": "sample", "index": 45, "raw_text": "[CLS] after the fourth round of the french open on thursday, and soon finished the fourth for himself after failing to win. [SEP] 4, when the cubs could be the playoffs. [SEP] the rangers are looking to win for the third time in five games at home, and have dropped all five of the previous 10 games. [SEP] \" the bodies are not dead. [SEP] the next largest middle - income family was $ 2, 500 for children ; fourth - 800 for families ; $ 1, 000 for couples ; and $ 500 per family. [SEP] is there any such uncertainty to the cause of the climate? [SEP] i have seen plenty of the times [SEP]", "detok_text": "[CLS] after the fourth round of the french open on thursday, and soon finished the fourth for himself after failing to win. [SEP] 4, when the cubs could be the playoffs. [SEP] the rangers are looking to win for the third time in five games at home, and have dropped all five of the previous 10 games. [SEP] \" the bodies are not dead. [SEP] the next largest middle - income family was $2, 500 for children; fourth - 800 for families; $1, 000 for couples; and $500 per family. [SEP] is there any such uncertainty to the cause of the climate? [SEP] i have seen plenty of the times [SEP]"} +{"type": "sample", "index": 46, "raw_text": "[CLS] [SEP] south waziristan is widely regarded as a stronghold of the taliban - based militant group al - qaeda, which had fought al - qaeda in the area until last week. [SEP] michael ' s family has not been contacted with the news of the attack by his brother or his parents, or his brother andrew, but he wants to tell his mother in an early morning. [SEP] if you think there is something, or if you ' re a teacher, it ' s no longer true, it ' s time to tell the truth. [SEP] \" it ' s not a matter of £100, 000 or more looking ahead of a new [SEP]", "detok_text": "[CLS] [SEP] south waziristan is widely regarded as a stronghold of the taliban - based militant group al - qaeda, which had fought al - qaeda in the area until last week. [SEP] michael's family has not been contacted with the news of the attack by his brother or his parents, or his brother andrew, but he wants to tell his mother in an early morning. [SEP] if you think there is something, or if you're a teacher, it's no longer true, it's time to tell the truth. [SEP] \" it's not a matter of £100, 000 or more looking ahead of a new [SEP]"} +{"type": "sample", "index": 47, "raw_text": "[CLS] narrowly lost to john o ' brien, the uk ' s current heavyweight champion. [SEP] the increased tax increase on the way cost the city about $ 100 million, however, officials said. [SEP] that ' s a little over two percent of what i think and means everything that could be said. [SEP] the family is being advised to do so early thursday because of reports of problems in the girl ' s body and the results is far from being released. [SEP] it was the biggest national effort of his young life. [SEP] at least one died, said dr. peter klee, a health official at the state ' s department of health. [SEP]", "detok_text": "[CLS] narrowly lost to john o' brien, the uk's current heavyweight champion. [SEP] the increased tax increase on the way cost the city about $100 million, however, officials said. [SEP] that's a little over two percent of what i think and means everything that could be said. [SEP] the family is being advised to do so early thursday because of reports of problems in the girl's body and the results is far from being released. [SEP] it was the biggest national effort of his young life. [SEP] at least one died, said dr. peter klee, a health official at the state's department of health. [SEP]"} +{"type": "sample", "index": 48, "raw_text": "[CLS] refused to give his idea of that prospect. [SEP] they last came on the way to the third largest province, the east of the country. [SEP] the 23 - year - old australian 6 - 4 saved a set point in his last - french open 7 - 0 win over nikolay davydenko, who took a six - game lead early in the second set and then the swiss matt kurret couldn ' t pull even a set on a crucial match point that ended the set. [SEP] he was dismissed for four, who fired home after being dropped on 149 with a stunning 61. 20 average. [SEP] the small number of people who [SEP]", "detok_text": "[CLS] refused to give his idea of that prospect. [SEP] they last came on the way to the third largest province, the east of the country. [SEP] the 23 - year - old australian 6 - 4 saved a set point in his last - french open 7 - 0 win over nikolay davydenko, who took a six - game lead early in the second set and then the swiss matt kurret couldn't pull even a set on a crucial match point that ended the set. [SEP] he was dismissed for four, who fired home after being dropped on 149 with a stunning 61. 20 average. [SEP] the small number of people who [SEP]"} +{"type": "sample", "index": 49, "raw_text": "[CLS], the nation ' s largest transportation expert. [SEP] for the 2008 - 8 figures, overall, 84 per cent of women said they were the most popular source of choice. [SEP] \" you should be sure something ' s done. \" [SEP] the couple have been living in a state of life - threatening conditions for the past three days, according to the polk county sheriff ' s department, kmh - tv. [SEP] the first thing i wanted was to see if he would ever take out the rest of his prost career. [SEP] he has insisted that only he had an idea about taking place, but there ' s no guarantee that he [SEP]", "detok_text": "[CLS], the nation's largest transportation expert. [SEP] for the 2008 - 8 figures, overall, 84 per cent of women said they were the most popular source of choice. [SEP] \"you should be sure something's done.\" [SEP] the couple have been living in a state of life - threatening conditions for the past three days, according to the polk county sheriff's department, kmh - tv. [SEP] the first thing i wanted was to see if he would ever take out the rest of his prost career. [SEP] he has insisted that only he had an idea about taking place, but there's no guarantee that he [SEP]"} +{"type": "sample", "index": 50, "raw_text": "[CLS] them are on a tough and \" difficult course. \" [SEP] ian bell, england ' s captain, is likely to miss two weeks, because of a calf which is likely to require the match. [SEP] kevin st. paul, the acting mayor of new orleans, said people wrote about 1, 000 tickets, and 20, 000 of them came to town. [SEP] the boy ' s mother and daughter had moved to a new home in keene, gloucestershire, this month. [SEP] once more a man with heart disease died in 1993. [SEP] u. s. officials said tuesday ' s report, which came days before congress, was not [SEP]", "detok_text": "[CLS] them are on a tough and \"difficult course.\" [SEP] ian bell, england's captain, is likely to miss two weeks, because of a calf which is likely to require the match. [SEP] kevin st. paul, the acting mayor of new orleans, said people wrote about 1, 000 tickets, and 20, 000 of them came to town. [SEP] the boy's mother and daughter had moved to a new home in keene, gloucestershire, this month. [SEP] once more a man with heart disease died in 1993. [SEP] u. s. officials said tuesday's report, which came days before congress, was not [SEP]"} +{"type": "sample", "index": 51, "raw_text": "[CLS], a bond. [SEP] today is the first financial year to go in which the group is expected to announce its plans for a longer and more detailed financial statement. [SEP] new york -... [SEP] and the rates were set in recent years. [SEP] and that ' s what it ' s going to do for us. [SEP] the federal space agency denied the report, saying the air probe was in its last stage of the investigation. [SEP] with a total mass of a fine of over 20 miles per hour, it is dated around 3, 000 years to 6, 000 years ago, creating the entire network of galaxies. [SEP] swiss banking [SEP]", "detok_text": "[CLS], a bond. [SEP] today is the first financial year to go in which the group is expected to announce its plans for a longer and more detailed financial statement. [SEP] new york -... [SEP] and the rates were set in recent years. [SEP] and that's what it's going to do for us. [SEP] the federal space agency denied the report, saying the air probe was in its last stage of the investigation. [SEP] with a total mass of a fine of over 20 miles per hour, it is dated around 3, 000 years to 6, 000 years ago, creating the entire network of galaxies. [SEP] swiss banking [SEP]"} +{"type": "sample", "index": 52, "raw_text": "[CLS]. [SEP] prof jones spent a few years at the university of wales in 2006 and was on administrative leave from 1978 to 2002. [SEP] the study in 1999 - 97, published of cancer last week, found eight children had called it \" a serious, a traumatic disease, \" and parents had expressed fear of each other ' s disease because of their fear for their lives. [SEP] in fact, he came to dropping back in the tournament in the first round and suffering a nervousness. [SEP] kabul ( ap ) - nato forces announced a deal saturday for the funeral of five soldiers who died at the scene of a suicide attack on an afghan army [SEP]", "detok_text": "[CLS]. [SEP] prof jones spent a few years at the university of wales in 2006 and was on administrative leave from 1978 to 2002. [SEP] the study in 1999 - 97, published of cancer last week, found eight children had called it \"a serious, a traumatic disease,\" and parents had expressed fear of each other's disease because of their fear for their lives. [SEP] in fact, he came to dropping back in the tournament in the first round and suffering a nervousness. [SEP] kabul (ap) - nato forces announced a deal saturday for the funeral of five soldiers who died at the scene of a suicide attack on an afghan army [SEP]"} +{"type": "sample", "index": 53, "raw_text": "[CLS] - year - old in the whack. [SEP] keselowski was intercepted by martin, and moved the ball to the 4, allowing the patriots to a turnover. [SEP] he was also injured in the team ' s opener against the panthers in 2005. [SEP] he was followed by his 14 - year - old son, growing up early in high school. [SEP] by contrast, about 7, 000 residents had little chance of the disease, but was protected by a large population of owls. [SEP] he noted that the north american market is only expected to be bought from the younger generation. [SEP] watson, who was among the first and seventh [SEP]", "detok_text": "[CLS] - year - old in the whack. [SEP] keselowski was intercepted by martin, and moved the ball to the 4, allowing the patriots to a turnover. [SEP] he was also injured in the team's opener against the panthers in 2005. [SEP] he was followed by his 14 - year - old son, growing up early in high school. [SEP] by contrast, about 7, 000 residents had little chance of the disease, but was protected by a large population of owls. [SEP] he noted that the north american market is only expected to be bought from the younger generation. [SEP] watson, who was among the first and seventh [SEP]"} +{"type": "sample", "index": 54, "raw_text": "[CLS] proposal is expected to be published by the end of the year in the report. [SEP] it ' s been a very competitive match of the season in which two dads have lost by way, when nadal ' s tennis and justine henin lost. [SEP] last month, u. s. forces were able to take a position in the afghan taliban stronghold of al - ghazni district on the north side of the balgaz province. [SEP] the author, the son of barry young, will open his shop on the street. [SEP] a change in the effect of the term on january 30, however, will not affect the [SEP]", "detok_text": "[CLS] proposal is expected to be published by the end of the year in the report. [SEP] it's been a very competitive match of the season in which two dads have lost by way, when nadal's tennis and justine henin lost. [SEP] last month, u. s. forces were able to take a position in the afghan taliban stronghold of al - ghazni district on the north side of the balgaz province. [SEP] the author, the son of barry young, will open his shop on the street. [SEP] a change in the effect of the term on january 30, however, will not affect the [SEP]"} +{"type": "sample", "index": 55, "raw_text": "[CLS] 68th street. [SEP] new president frank gazt has ended the prospect of a disastrous victory for germany ' s champions league bid by putting a heartfelt smile on his face. [SEP] russia ' s foreign ministry was not immediately immediately available. [SEP] it was ideal for the evaluation system to assess the quality of a child ' s pregnancies in their work, reading, income, and e - level of education. [SEP] eight days after the attack, the school bus was attacked by four women, three boys and another woman in the car. [SEP] he said a \" growing number \" of children had been treated for abuse of drugs and [SEP]", "detok_text": "[CLS] 68th street. [SEP] new president frank gazt has ended the prospect of a disastrous victory for germany's champions league bid by putting a heartfelt smile on his face. [SEP] russia's foreign ministry was not immediately immediately available. [SEP] it was ideal for the evaluation system to assess the quality of a child's pregnancies in their work, reading, income, and e - level of education. [SEP] eight days after the attack, the school bus was attacked by four women, three boys and another woman in the car. [SEP] he said a \"growing number\" of children had been treated for abuse of drugs and [SEP]"} +{"type": "sample", "index": 56, "raw_text": "[CLS] is hard to get it. [SEP] one can be blamed for the loss of democracy. [SEP] they interviewed some of the parents who declined to be named, saying they were not sure that the children were \" under care \" if they were coping with their hard work or their families. [SEP] the b - 29 flight was delayed for 24 hours and landed about 1 : 35 a. m. [SEP] finally, tennessee, who won five out of their possible 10 in the first half, never led. [SEP] roger federer is the last major title winner, but he lost twice in the french open, the last time in 1998. [SEP] however, the [SEP]", "detok_text": "[CLS] is hard to get it. [SEP] one can be blamed for the loss of democracy. [SEP] they interviewed some of the parents who declined to be named, saying they were not sure that the children were \"under care\" if they were coping with their hard work or their families. [SEP] the b - 29 flight was delayed for 24 hours and landed about 1: 35 a. m. [SEP] finally, tennessee, who won five out of their possible 10 in the first half, never led. [SEP] roger federer is the last major title winner, but he lost twice in the french open, the last time in 1998. [SEP] however, the [SEP]"} +{"type": "sample", "index": 57, "raw_text": "[CLS] it 2 - 0, but gaal came to accept it at the end. [SEP] they took a 15 - point lead with 7 1 / 2 minutes left in the first. [SEP] after finishing the mile - - in 1 : 52. 20 - - bilara captured the final lap in the sixth, with a lap of 55. 17 seconds. [SEP] what has happened in the middle of last year when election is called, the government is the last of three elected government to make it the future of higher education. [SEP] now, he might be close to explaining himself as he faces the temptation to say \" no \" due to a [SEP]", "detok_text": "[CLS] it 2 - 0, but gaal came to accept it at the end. [SEP] they took a 15 - point lead with 7 1/2 minutes left in the first. [SEP] after finishing the mile - - in 1: 52. 20 - - bilara captured the final lap in the sixth, with a lap of 55. 17 seconds. [SEP] what has happened in the middle of last year when election is called, the government is the last of three elected government to make it the future of higher education. [SEP] now, he might be close to explaining himself as he faces the temptation to say \"no\" due to a [SEP]"} +{"type": "sample", "index": 58, "raw_text": "[CLS] taliban to regain control of the country ' s central border. [SEP] impressive but it could not have been better for redknapp, who is a regular manager, has now returned brilliantly to take advantage of his place on the bench. [SEP] so it ' s the right thing. [SEP] that ' s the eye. [SEP] ward, who earlier this season was at his best. [SEP] the safety commission, representing china ' s national agency, said it would review all affected products, saying it would improve the safety of all products in the recall. [SEP] but in the u. s. circuit court of appeals, the panel said the [SEP]", "detok_text": "[CLS] taliban to regain control of the country's central border. [SEP] impressive but it could not have been better for redknapp, who is a regular manager, has now returned brilliantly to take advantage of his place on the bench. [SEP] so it's the right thing. [SEP] that's the eye. [SEP] ward, who earlier this season was at his best. [SEP] the safety commission, representing china's national agency, said it would review all affected products, saying it would improve the safety of all products in the recall. [SEP] but in the u. s. circuit court of appeals, the panel said the [SEP]"} +{"type": "sample", "index": 59, "raw_text": "[CLS] official said. [SEP] the americans took a set 8 - 0 their way to the quarter - finals after losing just one, and lost next to the big - serving frenchman 6 - 4. [SEP] it is just too cold - - it is really very, very cold. [SEP] there were four people today, and a third said the vehicle had \" collapsed. \" [SEP] dinara sharapova, injured by injury, lost in the women ' s first round. [SEP] the defending champion was in his second stop at metzen, germany. [SEP] in one of three he lost his serve after dropping him on no. 14 instead of his [SEP]", "detok_text": "[CLS] official said. [SEP] the americans took a set 8 - 0 their way to the quarter - finals after losing just one, and lost next to the big - serving frenchman 6 - 4. [SEP] it is just too cold - - it is really very, very cold. [SEP] there were four people today, and a third said the vehicle had \"collapsed.\" [SEP] dinara sharapova, injured by injury, lost in the women's first round. [SEP] the defending champion was in his second stop at metzen, germany. [SEP] in one of three he lost his serve after dropping him on no. 14 instead of his [SEP]"} +{"type": "sample", "index": 60, "raw_text": "[CLS] feb. [SEP] the tigers repeated their losses in late 2005, 2005 and again last season, but clemson ' s defense was able to keep it alive. [SEP] he lost his left side, but he was in an eye for the last 45 minutes before recovering in the other crash. [SEP] england comprehensively missed a target, followed by a close wicket in the mid - afternoon, by england, and the end of an anxious afternoon, michael clarke comprehensively dropped twice in front of his wicket and the hosts tried to keep kallis at slip but it was a good bounce. [SEP] the crisis began sept. [SEP] the american, who has admitted [SEP]", "detok_text": "[CLS] feb. [SEP] the tigers repeated their losses in late 2005, 2005 and again last season, but clemson's defense was able to keep it alive. [SEP] he lost his left side, but he was in an eye for the last 45 minutes before recovering in the other crash. [SEP] england comprehensively missed a target, followed by a close wicket in the mid - afternoon, by england, and the end of an anxious afternoon, michael clarke comprehensively dropped twice in front of his wicket and the hosts tried to keep kallis at slip but it was a good bounce. [SEP] the crisis began sept. [SEP] the american, who has admitted [SEP]"} +{"type": "sample", "index": 61, "raw_text": "[CLS]storting the region. [SEP] hull went on for second, but ince dived back to long - range down after taking a long clearance to play the opening minute of a second penalty attempt. [SEP] jacques duverne, an english teacher, recalls how much he had started to fall brilliantly in the morning, and how he came free from the early age of cancer. [SEP] the american moved to a third round in 2 - under 140 and fourth in the houston open to finish at 8 - under 139 along with another american. [SEP] the group, led by the jihadist al - qaida and political group in iraq, [SEP]", "detok_text": "[CLS]storting the region. [SEP] hull went on for second, but ince dived back to long - range down after taking a long clearance to play the opening minute of a second penalty attempt. [SEP] jacques duverne, an english teacher, recalls how much he had started to fall brilliantly in the morning, and how he came free from the early age of cancer. [SEP] the american moved to a third round in 2 - under 140 and fourth in the houston open to finish at 8 - under 139 along with another american. [SEP] the group, led by the jihadist al - qaida and political group in iraq, [SEP]"} +{"type": "sample", "index": 62, "raw_text": "[CLS] people with pictures of relatively personal objects, such as james david, a co - writer of a book called \" the battle of the city, \" originally published in 2008, in the international center for the health science research. [SEP] the prime minister has been forced to resign over a series of bombings and protests. [SEP] in january, a promising 21 - year - old ivory coast international arrived with an interest at stoke and offered a new deal worth £1. 25 million. [SEP] it is only over the next 12 years that the general public of the new administration believes it can afford to cut the budget deficits by 50 percent of the current total [SEP]", "detok_text": "[CLS] people with pictures of relatively personal objects, such as james david, a co - writer of a book called \"the battle of the city,\" originally published in 2008, in the international center for the health science research. [SEP] the prime minister has been forced to resign over a series of bombings and protests. [SEP] in january, a promising 21 - year - old ivory coast international arrived with an interest at stoke and offered a new deal worth £1. 25 million. [SEP] it is only over the next 12 years that the general public of the new administration believes it can afford to cut the budget deficits by 50 percent of the current total [SEP]"} +{"type": "sample", "index": 63, "raw_text": "[CLS] - 3 win on the road against the philadelphia flyers - - either looking to make the finals of the regular season or expecting to be eliminated - - yielded seven goals in the last 10 minutes. [SEP] new england led the quakers ( 2 - 1, 0 - 1 ), who scored just 4. 50 points in the third quarter and moved up three points of the conference after the thrashers held off at one point in the fourth. [SEP] liverpool ' s goal beat liverpool by three earlier in the night, and held a four - and - a - half - 2 - 1 win win for their third straight victory. [SEP] however, the [SEP]", "detok_text": "[CLS] - 3 win on the road against the philadelphia flyers - - either looking to make the finals of the regular season or expecting to be eliminated - - yielded seven goals in the last 10 minutes. [SEP] new england led the quakers (2 - 1, 0 - 1), who scored just 4. 50 points in the third quarter and moved up three points of the conference after the thrashers held off at one point in the fourth. [SEP] liverpool's goal beat liverpool by three earlier in the night, and held a four - and - a - half - 2 - 1 win win for their third straight victory. [SEP] however, the [SEP]"} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_2p0_to_0p8_c256_detok_raw_samples.txt b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_2p0_to_0p8_c256_detok_raw_samples.txt new file mode 100644 index 0000000000000000000000000000000000000000..51d4dcf084f3ca10b990a297b80828d2249cc250 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/linear_2p0_to_0p8_c256_detok_raw_samples.txt @@ -0,0 +1,230 @@ +linear_2p0_to_0p8_c256_detok +{ + "type": "summary", + "name": "linear_2p0_to_0p8_c256", + "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", + "step": 168000, + "decode": { + "kind": "categorical_fullvocab_temp_schedule", + "config": "linear_2p0_to_0p8_c256", + "steps": 128, + "model_t_mode": "post", + "support_power": 1.0, + "semantic_power": 1.0, + "temp_start": 2.0, + "temp_end": 0.8, + "temp_schedule": "linear", + "concentration_min": 1.0, + "concentration_max": 256.0, + "final_from": "state", + "update": "resample", + "n_samples": 64, + "seed": 20260508 + }, + "detok_genppl": { + "ppl": 50.33995014345255, + "nll_per_token": 3.918798999310425, + "tokens": 9698 + }, + "diversity": { + "sample_entropy": 4.20795476641468, + "unique_tokens": 1865, + "token_count": 8192, + "distinct_1": 0.2276611328125, + "distinct_2": 0.7055856299212598, + "top_token_mass": 0.0501708984375 + } +} + +===== sample 000 ===== +[CLS] likely were ready to vote to get their bills out on time. [SEP] they do not want to win an nfc championship game on sunday. [SEP] he had to rally from his serve to take the lead, nearly losing his first break chance and hammering out a backhand into the back of the net. [SEP] "i could focus on my children," she said of her vote for the democratic nomination. [SEP] notes: he failed to play here for the first time in the 2003 - 6 world series.... [SEP] the couple spent two - and - a - half - year years in county jail, including an eight - a - [SEP] + +===== sample 001 ===== +[CLS] term in june 2006. [SEP] the prince's offer of resignation was not made public in the report. [SEP] " obviously, it is not easy to make much more selective with our decisions about troop levels than we do - - but it seems different for some reason. [SEP] however, expectations rise after next week's london olympics that eight athletes from seven olympic teams will be on the big stage. [SEP] what i think at the moment is my priority is to do this thing. [SEP] he said he believed that he had the condition, which had a better idea of himself. [SEP] the agency would not say if the woman was involved in [SEP] + +===== sample 002 ===== +[CLS] ba's chief executive said it could mean "thousands of pounds" of losses this year, if there is delays. [SEP] at the par - four sixth, 10th and eighth holes - - the australian responded with two bogeys and managed just eight birdies. [SEP] that's more than newcastle's heartbreaking collapse when the japanese left - hander broke into the goalie just yards from his frontline, then touched down. [SEP] i can't take your own life for the reason. [SEP] they came a step closer to that point when ryan lee, 33, 19, much more experienced and consistent playing class than [SEP] + +===== sample 003 ===== +[CLS] lead as india battled for four wickets to close in the eighth test. [SEP] kabul, afghanistan (cnn) - - - twenty - five afghans died in fighting on the taliban and nearly half the number killed along the afghan - pakistan - afghanistan border, afghan defense officials said thursday. [SEP] this means much more questioning of people's record about britain more tactically. [SEP] critics, who have been difficult to watch this year, comprehensively compared the deep financial state of britain's financial services industry with the unleashing of wealth during the good times. [SEP] i told the other people to be home rather than being sick, but [SEP] + +===== sample 004 ===== +[CLS]'s death comes from a series of bombings in february, when the u. s. military said 3, 000 people had died in the first year of the war. [SEP] new york is 2 - 1 - 2, the all - time best shut out since march.... [SEP] while the title driver, the unlikely driver who guided jenson button's bid, remains a contender, the world championship brought him button's team to its first major title in the russian grand prix. [SEP] the president, the organisers of the around the world summit, and all the g - 20, which gave it a chance to [SEP] + +===== sample 005 ===== +[CLS] nation's worst military accident in nearly 40 years. [SEP] around 70 % of britain's teenage population, including three - year - olds, have had children before 18, regardless of income, and have to wait until next year. [SEP] everyone loses the argument. [SEP] it's time to try to out - break the french at the back, and then, after just two minutes of her opponent's final set, the russian, not broken in the first set, had to go down. [SEP] with one - half - games in their last two games, pittsburgh were trailing at 4 with 10 minutes left and four - goal [SEP] + +===== sample 006 ===== +[CLS]..... [SEP] city, museum of the arts, nbc city center - -... cultural district, the arts, the arts center, art galleries, the city of new york, downtown l.... [SEP] lolvo goliath, a former retail banking executive in europe and asia who lived in new york, was upbeat, saying that he was a "more independent man." [SEP] "that's how i get right down to the facts," he says. [SEP] the panthers tied it with six minutes left in the second period, with florida's martin biron getting his second goal [SEP] + +===== sample 007 ===== +[CLS] 80 per cent of all women are among men, and 78 per cent of women, it is estimated. [SEP] lieberman, a former independent independent, has been suggested that obama would be a referendum on his own notion of faith, rather than focusing on mccain's religion, but he is cautious at the moment. [SEP] the company's first uk operation is in north africa. [SEP] just as india lost its place in the final series, england are desperate to find india's spot with only only clarke's five coming back to 120 in the waning hours of the day. [SEP] over the years, it became clear to [SEP] + +===== sample 008 ===== +[CLS] there was always out to work. [SEP] andydick was 21 when he won his second straight title, but the 25 - year - old almost lost his chance to make all the rest of it. [SEP] tens of thousands of pounds could be expected. [SEP] the troubled striker - who had the second chance before halftime - was the first to conceive his third goal at the half - post in the 90 minutes after an impressive goal by birmingham defender stephen mcfarland gave them a 2 - 1 lead. [SEP] he and his wife, mr. essa's parents and three children appeared to be married at the hospital, including his [SEP] + +===== sample 009 ===== +[CLS]. [SEP] police said o' gaur was hit by a officer and was stabbed in the legs. [SEP] "we need a lot more time together this year," says robert johnson, president and ceo of the telecoms giant microsoft. [SEP] during the interview at the time, mallon described how it's different to the lack of success for his men. [SEP] the first time he played was boston in the semifinals, failing to take the title in the series before advancing to the second round. [SEP] last year, taliban militants attacked the north regional intelligence agency in wazian, the northeastern province of swat, and killed 20 people [SEP] + +===== sample 010 ===== +[CLS] - 4 tied the game with 53 minutes to go. [SEP] i was even upset. " [SEP] the hearing was due at 12. 30pm on friday night. [SEP] mr medvedev said he was confident that the global economy could turn quickly into a crisis but was hard - pressed. [SEP] we never really knew who was a good school guy. [SEP] prime minister wolfgang grigge announced up to 300, 000 people could flee the devastated north - eastern coastal region sunday, despite massive air attacks in the volatile first 24 hours of the almeria season. [SEP] 18, he struck out six and struck out nine batters while the [SEP] + +===== sample 011 ===== +[CLS], who he regarded as the so - called "special representative" of social housing and secondary schools in the region. [SEP] dallas lost 3 - 4 in the series, and 8 of 11 in eight games, and 10 of 12 on the road. [SEP] no. [SEP] they made the mistake where texas a & m disappointed. [SEP] lee mcculloch's long shot saved the eight - goal lead, but the irish wrapped up the match well before half - time, when tim cahill came off first to secure a 2 - 0 lead for ireland, then ran out of the line to drive into ireland's own own net. [SEP] + +===== sample 012 ===== +[CLS] he said. [SEP] no know when to vote. [SEP] manchester united centre - back joe cole needs one win from a penalty to keep a record 10 goals and a goal since september, but he should have scored more than the resrushing club, 10 points off the pace of the champions league. [SEP] scotland went 4 - 1 to finish the last five games with england, and were taken over by the english championship side who won the davis cup two years ago. [SEP] but i want to know how much a reasonable person makes, and i think, ' if i don't think, i should be allowed back. [SEP] in the [SEP] + +===== sample 013 ===== +[CLS] time, "said d' addis. [SEP] don't take time for questioning your fact that you hadn't thought of building a living life for her. [SEP] police are investigating whether the car was parked over the carriageway before the accident, and after a collision. [SEP] but this is an argument. [SEP] the national bureau for america survey of over - rated nations shows inflation now unchanged at a - 3. 0 percent. [SEP] his score was the first for dallas, who managed 28 points in the loss and losing team was 19 - 0 and the loss of a two - game lead. [SEP]" he was a great and [SEP] + +===== sample 014 ===== +[CLS] said. [SEP] but local political pressure had landed him in a more highly competitive battle with the mayor. [SEP] it is important to make sure. [SEP] they looked tired and struggled to get out, he said. [SEP] despite toronto's pitching record, the right - hander recovered and stopped a long march with a world series average of 17 runs and four runs. [SEP] he was five days back in september and wounded at the end of the war. [SEP] koehler, the u. s. open and 2005 winner, has got a long way, losing two of the seven sets. [SEP] the couple's next - door neighbour [SEP] + +===== sample 015 ===== +[CLS] s jan. [SEP] the investigators, who found that the 40 patients who bought two or more doses of prescription pills from the beginning of 2004, show that some patients stopped work at the retailing company's offices, often in birmingham, atlanta, indianapolis and chicago; in atlanta, miami and new york. [SEP] the whole truth, really, is that i wasn't getting too much of my life into myself.... you were just getting up at the time. [SEP] ottawa rallied past detroit, who trailed 5 - 4 after the final period until brown won all 25 points with a first - period shot for the only goal [SEP] + +===== sample 016 ===== +[CLS] [SEP] he has failed to play against new zealand since early september. [SEP] the meeting, to start at 6pm on monday, will be held on friday afternoon to be forward to the business day on tuesday. [SEP] "if you look at the first season i'm in right now, it's pretty good even, but i'm not sure, you ever know, it's a part of my year," he said. [SEP] much of the remaining traffic is on public roads and are congested. [SEP] mr bolloch, a 66 - year - old schoolteacher from carmarthen, was initially due to [SEP] + +===== sample 017 ===== +[CLS] that will not be easy. [SEP] the 39 - year - old man, from a five - block area on friday, was cleared of the assault and was arrested by the police on tuesday. [SEP] est on monday, 18 june, at 7: 30 am est. [SEP] "it's fun," he says. [SEP] on the other hand, he was less confident about 20 days after he was able to see it again, when a cold spell took him - - perhaps not long after - - to recover. [SEP] federer lost four set points and eight games and came to break down in the third set. [SEP] a high - [SEP] + +===== sample 018 ===== +[CLS] - 2 break and went on to serve for a loss of a first set over italy's filippo mazzari. [SEP] a big new story. [SEP] he was found guilty at liverpool crown court court last friday and ordered to court the night before the murder inquiry. [SEP] but a source who spoke on condition of anonymity because he died, said he remained calm as he was picked up for surgery at a military hospital in washington on thursday. [SEP] williams broke again in the second set, williams serving in the first set but she dropped again, but failed to save another in the second game and netted all five points. [SEP] [SEP] + +===== sample 019 ===== +[CLS] saturday. [SEP] the tourists lost by four, taking 11 1 - 8 overs for a third wicket and a fourth and second innings. [SEP] he said the situation was the most urgent. [SEP] jones scored the first goal of saturday's break, then beat hussey in the final minute to take a 10 - 0 drop zone lead. [SEP] "the way it happens, it doesn't get that right," said daniel canen, a 27 - year - old farmer from the northern region of queen's island, the one - car race in the eastern jungle. [SEP] since then, the company has promised to cut 100 [SEP] + +===== sample 020 ===== +[CLS] started tuesday. [SEP] but he said that he had to take the chance to quit, as he would, before he could go away. [SEP] jong il is also seen as the highest - level figure in north korea's ruling ruling party, communist hardliners. [SEP] don't give up, after all. [SEP] he added six birdies and finished the round with a 2 - under 66 but recovered to post a 73 in the seventh. [SEP] european shares lost 1. 2 % and european stockmarkets closed on monday down 0. 3 %. [SEP] " there's no evidence that it is safe or even possible to [SEP] + +===== sample 021 ===== +[CLS] the school year. [SEP] "if it's difficult it's because there's a new crisis here," she said. [SEP] back to get a laugh about friday... [SEP] " i was only only 15 years ago. [SEP] there, the school he set up seemed over. [SEP] in total of 43, six runs scored of a one - day innings stand by paul collingwood in which he slumped 4 - 0 against australia. [SEP] he won a 48 percent in the final round of the election - - results announced by serbia's ruling party. [SEP] the court said kagans, a former runner - up to [SEP] + +===== sample 022 ===== +[CLS] for over 24 hours. [SEP] it's very difficult to play because they're trying to build great players, " he said. [SEP] but the weather was the only option. [SEP] the government said the person was resting tuesday in an air hospital in the capital of san' a, where he was critically ill. [SEP] it is not so surprising to be surprised that it is on a social environment that in reality changes lives where most parents focus on issues and learning about family in the future. [SEP] according to the washington post, a study - founded in october 2006 by the american federation of schools and libraries in more than 120 u. [SEP] + +===== sample 023 ===== +[CLS] statement. [SEP] a member of the german parliament, janna basquiat, a member of the president - general of belgium's united national society, resigned in the 2008 presidential election and lost his seat by the dutch government. [SEP] she had already planned to take her daughter to a private school in london. [SEP] the four - - aged 12 and 14 - - will have enough time to return, officials said. [SEP] the labor unions are close on a deal on ford's multi - million dollar contract that had collapsed with the bankruptcy of the struggling automaker that was originally due in october. [SEP] there would have to be some [SEP] + +===== sample 024 ===== +[CLS] election. [SEP] a healthcare commission has been ordered to stay ahead of the death of a junior rugby player from south carolina who died from the mrsa last year. [SEP] we should take any decisions about behaviour or income from experience. [SEP] former russian second - half david ktjek is desperate to prove after his side scored 10 of them and the norwegian arjen robben twice rebounded from a range stand - off in the corner. [SEP] the current number of high school - age children left only 1. 6 million children earning less than $65 per 100, according to official figures. [SEP] barack obama turned off administration fears by [SEP] + +===== sample 025 ===== +[CLS] - - southern afghan parliament members have not been told to not run in a special re - election bid in august, but they must then decide what time to hold the referendum, a local election official said on wednesday. [SEP] "within my team, over a couple of weeks it is so clear that this can be a real thing. [SEP] we can take on some kind of massive level of risk," said mr perier. [SEP] that is what we needed all along is his support. [SEP] the recession better come back. [SEP] the first victim, michael k. krese, was a 15 - year - old son. [SEP] [SEP] + +===== sample 026 ===== +[CLS] at a luxury government building in one western city killed about 60 people on tuesday. [SEP] if i don't tell you anything, i'll throw the game and quit my daily job. [SEP] this has been covered by the times and has recently been a major issue of the campaign. [SEP] the alliance, representing 200 unionists from around the country, announced that they would press ahead on the merger. [SEP] major areas of the population - - some are not populated and do not to represent about 90 percent of the human population - - could be at risk, she said. [SEP] that could be a reflection of a slow recovery, but [SEP] + +===== sample 027 ===== +[CLS] a bit of play. [SEP] she was very broad - eyed and very very good in control. [SEP] but, companies such as others, with an increasing supply and loss of jobs, are going to go back to work and get credit for their purchases. [SEP] taylor was summoned and later returned from scotland to leave for the visitors, but he did not. [SEP] there could be other reasons they are more likely to be back on hamilton's way to fourth place, or second. [SEP] mr brown said people had remained in the area for the hours 2. 5 hours a day. [SEP] police found about 40 miles of his home on the [SEP] + +===== sample 028 ===== +[CLS] high court in august, forced to do a bit of job training into a mental ward. [SEP] the 7. 2 quake which killed 1, 000 people could have lives in the archipelago, with a death rate of 6, 695 people in the island's part of the island, according to the spanish government. [SEP] kabul (ap) - u. s. and afghan officials said wednesday that the risk was that the taliban could take a position in the tribal region, including the city of marjah and the city of its base, shar. [SEP] the council's planning committee said the situation made it more likely to show [SEP] + +===== sample 029 ===== +[CLS] its uk manufacturing plant in swindon, estimated to have cost more than 36, 000 jobs. [SEP] heene's father brian hansen told the associated press he heard he had called his son and her son a day earlier friday and received a telephone call from him. [SEP] india had lost out to take their place in the series after the hosts took a home lead in ahmedabad, needing only two wickets at lunch. [SEP] he warned that tensions in europe's political system, france and the eu would cause renewed demand for investments in the world's nuclear energy system. [SEP] a 3 p. m. penalty on martin pelvic was [SEP] + +===== sample 030 ===== +[CLS] olympic titles, it could replace ferrari, mercedes and scab, as well as several other players. [SEP] there was a little out off the next wicket, but his next ball was a short leg, coming off the middle of the over, and collingwood with another bat, which was brilliant, just got his back. [SEP] u. s. officials joshua j. zazis, 27, brian m. schris, 34, of london and zayas zazada, 20, of camden, n., j., and boyd, of hopson, ill. [SEP] when the series began we will be talking about [SEP] + +===== sample 031 ===== +[CLS] i could only say it better ). [SEP] " i am optimistic. [SEP] the former england international, who just won a 3 - 1 victory over tottenham on sunday, was the last manager to deliver a single version of ferguson's record of five premier league titles this season. [SEP] it lost 3 - 0 in the games against france ( toulouse and germany (2006) and fellow french side toulouse, the french cup hosts who had held a narrow lead against lille in 2006 ). [SEP] second - seeded roger federer had an impressive second serve 6 - 0, 6 - 4, 2 - 6 on the 3 - 4 set. [SEP] the [SEP] + +===== sample 032 ===== +[CLS] there's anger in what they all pay for public services, why they just don't care, sen obama. [SEP] the bank's mortgage retailing group, which makes mortgages for each home and sells assets that cannot be equity, collapsed because they are struggling to raise enough to support loans. [SEP] then: worth, say, more than $3. 5m annually. [SEP] this is the second place i have ever held a professional, and i have serious memories of being a part one of the majority of women's foreign - language schools. [SEP] it can be difficult in a very long time. [SEP] if all [SEP] + +===== sample 033 ===== +[CLS] clinton's wife, susan, one who was thrown to obama's side. [SEP] i hope there will not be less. [SEP] the match is to take place on april 3. [SEP] wilshery's throw was headed wide, but mark johnson scored it with his third goal. [SEP] this, after several distractions, has put in a lot of air of time to produce a sense of real - life. [SEP] wickens, 49, was rushed back to the grounds of his suburban suburban home in switzerland after losing his job, germany's military reported tuesday. [SEP] enviable under the current system of low [SEP] + +===== sample 034 ===== +[CLS] being seen as a threat against murration, the british independent reported. [SEP] a group of the group said yesterday that its figures expected that world gdp to fell by 4. 3 per cent by the end of 2007 year - to - end, against a 10 per cent fall in the first quarter. [SEP] the 27 - year - old man from cosham was also seriously treated and was unconwelled. [SEP] with no doubt, british sports management has now given its choice of the terms of the bid, with a final stage of its own due to close the deal in the coming weeks. [SEP] a live band will play the [SEP] + +===== sample 035 ===== +[CLS] club throughout the last eight years of his regime. [SEP] former opposition minister khatami on thursday was due to visit iran with iranian president mahmoud ahmadinejad one of iran's most influential muslim leaders. [SEP] i can see this america's greatest election with much of a glance today. [SEP] i thought they spoke the same tone. [SEP] "it's not their decision to tell us anything is really taking off," one of middle america's two best - selling authors, ali kash, said. [SEP] it's kind of a great race. [SEP] late after last sunday's big 12, the saints and [SEP] + +===== sample 036 ===== +[CLS] record. [SEP] on tuesday, foreign minister ali abdullah saleh said the u. s. and afghan forces were responsible for its security. [SEP] how high could white house press secretary karl rove be able to say this to the political right at the time? [SEP] a pro - tibet envoy is due to visit chinese - ruled taiwan on sunday, hoping to hold a summit in the u. s. - china border. [SEP] an annual report by members of the association of police officers who examined 495 deaths in 28 countries resulted in 10 cases. [SEP] in cuck, about 70 miles west of charlotte, n. c., a study [SEP] + +===== sample 037 ===== +[CLS] experts, air traffic controllers, pilots and airlines, and staff at the agency's regional office. [SEP] those (50 - year - old) fans who agreed to be released by the red sox would have to work days wednesday and buy tickets to the game, he told st. louis and the eastern city of harrisburg yesterday. [SEP] mr heinfeldt will reduce the losses in citi's banking division to another around £42. 5m from € 4. 00. [SEP] i think that the figures have been on the rise. [SEP] the lakers shot poorly in the first - half range, and scored 18 points before coming [SEP] + +===== sample 038 ===== +[CLS] - day sunday morning. [SEP] however, british defence experts said that while only 272 other international troops are serving, the remainder will remain deployed in iraq until january 2010. [SEP] can you make a difference? [SEP] her fame helps her to get involved in cots and cots and also helps her to be active and kept informed. [SEP] experts say they lost weight and weight through the carrals and tremors, which are highly visible and do not cause full - body ptsd symptoms. [SEP] high - caloric foods can save a lot in younger people ageing. [SEP] the response to the nixon plan was very muted, but it [SEP] + +===== sample 039 ===== +[CLS] in india's national elections. [SEP] if we are all successful, we'll spend a lot of time in preparation of the next move, " barone said. [SEP] i couldn't have been better, but when the ball back beat the ball straight back to the right, i was when i got another shot and went the right. [SEP] the german champions lost four of the five games in which liverpool had scored six goals in less than 20 minutes against struggling birmingham this evening, while being held after two games by liverpool could probably claim the edge of one - goal a draw at olympiakose on sunday. [SEP] the party [SEP] + +===== sample 040 ===== +[CLS], from reading, hampshire, when she fell under a bridge at clarence house, o' dres, on wednesday. [SEP] in the previous day's operation, an american suicide bomber killed five afghan soldiers, killing five out of the 25 wounded and doubling the total wounded two days earlier, officials said saturday. [SEP] an israeli missile hit a police base in the southern village of barat early tuesday, killing two soldiers and wounding five, a defense official said. [SEP] many analysts expect to see a significant victory at a time when in pakistan, though it could bring near the end of a 25 - year civil war. [SEP] " there [SEP] + +===== sample 041 ===== +[CLS] return to the school and care for her dog. [SEP] the group could be worth more than it is worth in aid that it is expected to receive. [SEP] i would not know who that guy is fighting for. [SEP] the larger argument is that the lack of equality among women in their thirties in this country may be led to the growth of more women marrying into today's lower income classes. [SEP] "but this is some of the best people i have met, someone who have been training for years," said wada (afld), the team president for england and wales. [SEP] they will not announce the end to their [SEP] + +===== sample 042 ===== +[CLS]. [SEP] "they appear to be receiving a mobile phone call from officers from london's metropolitan police station. [SEP] on tuesday, the president's official speech set the country open for his presidency, saying that obama should be leading the united states well. [SEP] over the past year for women, 6 of 20 women won singles titles in 2002 and 2001. [SEP] the german went on from behind until agassi broke for four hours after returning to the crucial second set, but won an array of 22 service points and held for 3 - 6 - 3 before they sealed the match in the face of a barrage of errors. [SEP]" [SEP] + +===== sample 043 ===== +[CLS] rate, at some time point it will be about 50 per cent. [SEP] police said the man appeared to be suffering from x - rays, but no one is injured. [SEP] in many ways, as i get older and more, they're getting a bit of x - fi. [SEP] i had to take control and it was hard to see my car and get back behind the front. [SEP] a big surprise, though, because there are so many kids that we know some way things look as good as our own. [SEP] members and a crew were nursed to safety at a military air base in afghanistan, the us military said [SEP] + +===== sample 044 ===== +[CLS]. 8 per cent of the population, and britain, 10 per cent and 40 %. [SEP] the pages of newspapers, magazines, newspapers, magazines and radio stations are too short to sell. [SEP] the "critical" report, commissioned by the department of health, was called the national review report that measures health and health services from public sources. [SEP] it's impossible to pick the players you are at and you would now look to play down to him, "he said. [SEP]" it is a defeat, " bayern coach schalz burger said. [SEP] gonzalez's lawyer, 29 - year - old john wasser, [SEP] + +===== sample 045 ===== +[CLS] japanese duo kimi rai on the sunday afternoon and the team of mark webber's confirmed he was ready for the japanese grand prix because of safety concerns. [SEP] as of saturday's day, 45, 000 people had been identified by authorities in the county. [SEP] but a third of the who responded to the call wasn't available by now. [SEP] he took a fourth - play defense and threw three touchdowns to a 17 - year - old, then scored a 27 - yard touchdown with 25 seconds left to put temple up 45 - 21, giving him a fourth - round bye in his first bowl game. [SEP] at the end [SEP] + +===== sample 046 ===== +[CLS], the vice chairman of the white house and vice chairman of the policy council of the senate economic committee, which signed the letter on friday, has not been named. [SEP] they had to move into boston after falling seven straight games after a loss in a 2 - 1 victory at the yankees, and st. louis's sixth win in seven games. [SEP] obama also won 251 of 600 electoral votes on july 5, 27 and 2, 370 on august 28. [SEP] it was this year, in fact, when it was suggested that she would fight to defend her white belt in the beijing olympics that jones gave her her name as a [SEP] + +===== sample 047 ===== +[CLS] was nowhere to be seen. [SEP] as the response gets more obvious, mr. johnson's job is an effective way of learning when there's a bit less of a threat. [SEP] however, it would have been significant if i had had a piped rung through the story. [SEP] he's in his second season, which comes as the americans' focus on their final season from now to february and look at him four or six times. [SEP] the olympic torch is scheduled to start in 2010, with a one - day conference, and will run in 11 countries, according to people closely familiar with the talks thursday. [SEP] + +===== sample 048 ===== +[CLS] a real give away. [SEP] that's true, i can do. [SEP] "that's ridiculous," said state police chief tom milford. [SEP] the mission will be a review within a year. [SEP] "that is really dangerous and exciting in afghanistan," said mr mudd, who now works as a director of terrorist operations at the centre. [SEP] the braves ( 33 - 3 haven't already had a road win in three years before their losing streak against a team in seven years and losing their seventh at home. [SEP] the hearing begins friday 9 april 2010. [SEP] the measure, the highest and final level of [SEP] + +===== sample 049 ===== +[CLS] of the state's most most popular figures, but mr roh is understood to be the best - known member of his family, the most popular of his peers. [SEP] if you can't save a lot of time, it's the lack of a front drive and some expensive equipment that can be much more costly to use than the traditional ones, not just for the child. [SEP] the trojans came from one of their worst string of losses in 2006 and 2007 to go up 0 - 7 after winning their first championship in 2001. [SEP] i'm talking about privacy. [SEP] but there's time for someone to [SEP] + +===== sample 050 ===== +[CLS] very good and teng. "[SEP]" that means that this will be much more civilised, so people can't make their rebuke. [SEP] it is not the kind of future we need, we are in no danger of having reached the end, aren't we. [SEP] he doesn't try to make a point to himself. [SEP] a poll of polls taken at between 12. 00 pm and 2. 00 am gmt on sunday 18 october, 2 april 2010 compared with labour's lead over the weekend. [SEP] (ap) - china's largest island of tainan on tuesday may have been [SEP] + +===== sample 051 ===== +[CLS] cut of 60. [SEP] david cameron announced earlier this week he was a candidate for the job. [SEP] santana is a four - time mvp winner with five titles as coach in 1998 when the boston red sox lost three years ago. [SEP] the 23 - year - old lost a set and lost a game for the first time on a backhand at 6 - 1, going into the final of his career tour career. [SEP] better than usual. [SEP] it hasn't had a real debate, so far. [SEP] it's an extraordinary situation. [SEP] on monday i could be getting out of bed to some of them and spending more reading [SEP] + +===== sample 052 ===== +[CLS] her food. [SEP] "we are very optimistic, you can understand that we feel that we are not always saying to ourselves that they must be falling for a second." [SEP] the singer, who died suddenly on sunday, lost his own life. [SEP] the tense sixth and final set had padraig harrington of ireland serve before clawing back a bid to finish in three pennies. [SEP] foske has received 752 phone calls from st. mary's county and children's inquires and arrived in plano, minn., for help, she said, according to the local park service. [SEP] " [SEP] + +===== sample 053 ===== +[CLS] from its rapidly growing business. [SEP] both concerns were raised by media estimates that 300, 000 tons of cocaine were caught on the market in 2006. [SEP] he lost it in 2004 when the title came from the fifth division, winning it in 2004 when he re - wrote his book. [SEP] she then lost the match and then came up five points behind in the first and lost twice each. [SEP] it was his sixth set victory against rafael nadal who lost a set of points and when the swiss top - broke back to win 2 - 1 was a close match. [SEP] google's deal includes the integration of software, business and customer [SEP] + +===== sample 054 ===== +[CLS] 14 million in costs and the restructuring of its risk - management arm. [SEP] alonso made the decision early this year after struggling for an hour with his problems at the garage, but schumacher - - meanwhile, a driver with ferrari - decided not to accept the fifth edition of the gpc's des mouris. [SEP] it happened on sunday sometime between 2000 gmt and 9 october, 2006. [SEP] not a sign of it either. [SEP] his book is published in the detective book and the latest book in his memoir of small life. [SEP] they're currently waiting for a trial to start after a group of patients take a place [SEP] + +===== sample 055 ===== +[CLS] wazir. [SEP] he says that all of this is because of the mind - based system and that an expert can prove to believe it is the only option. [SEP] according to the club's official e - mail, ashley retired at the end of the summer in 2004 and went on to the 2007 world cup for england, with victory in chelsea's fa cup final, and beckham has already revealed plans to join sunderland in an england squad. [SEP] "while i still feel rather good in her voice, i can't doubt my own face," stouffer told the court. [SEP] in 1990 60 percent of [SEP] + +===== sample 056 ===== +[CLS] on thursday and then it will hold on again, with the czechs hoping for a home victory in one of the three on sunday. [SEP] he faces frenchman hunter mahan, 7. 2 under, while fourth seed cirston will play fellow briton at 6. 10 and on 13 under, and klodenko and belgian ivan nalvin at 7. 6 under. [SEP] bowling: broad 2 - 1, bell 8 - 10 - 5 - 0, mahmood 10 - 0 ( 6 - 0, w l rashid 6 - 7, k a c rashid 4 - 5 ( 6 - 5, m r [SEP] + +===== sample 057 ===== +[CLS]. [SEP] that was his injuries which, though, cost him a nickname because of an era in which he made a top - grade impression he had just been with south africa. [SEP] the striker, though, opened a lead in the half - half with a free kick from the left and then connected with james for a powerful header from the goalline. [SEP] q: if you've remember a year when you could open an n. a. a.. tournament... [SEP] the government on friday said the 10 - day limit would mean that people of 1, 000 or fewer would be able to spend the equivalent of a [SEP] + +===== sample 058 ===== +[CLS] with a big push. [SEP] " i didn't know it, we say just 19. 6 per cent. [SEP] the shares of citigroup were at 41p up $1. 14 or 24. 3 cent at $7. 38, while bank of scotland was 7 cents higher at £11. 35. [SEP] the no. 1 seed, known for his quick thinking and control of the shot, beat veteran federer, who had never lost his serve at 7 - 5 in the season - ending third set of his four - set final and never won a u. s. open title, but he returned from the brink [SEP] + +===== sample 059 ===== +[CLS] system, the met has confirmed. [SEP] my depression has died away. [SEP] in 1997 he died abort, aged five. [SEP] west ham then doubled their lead after a 13th - minute opening four minutes before half - time, when he created a good chance for roberts' cross with a header on friedel, who appeared to give city a goal. [SEP] their base base was last month, home to 4, 000 troops of the u. s. war, after the battle group lost more than 2, 000 troops, their average deployment date in 2006 - 18 months at a time. [SEP] vancouver, china (ap) - - [SEP] + +===== sample 060 ===== +[CLS] an early family in the north of england, lost its own life and changed its life. [SEP] they go to iraq every year to watch the movies. [SEP] defending champion roger federer will speed up his comeback from his second series of injuries, which have affected his confidence and his mind. [SEP] i felt good about coming back over time at the end. [SEP] pittsburgh won a regular - season title at the end of the 2007 season, which state officials said decimated the results. [SEP] it lost 3. 6 per cent after it first released its annual profits warning about the loss of jobs, as recent data suggest the strength of a struggling corporate [SEP] + +===== sample 061 ===== +[CLS] force. [SEP] that's the key. [SEP] he said friday that sarkozy's government's plans for a showdown was "not realistic." [SEP] in the early months of 2004, rubinstein was known as an economist of the new york financial services authority. [SEP] but stay out there and - - well, you're going to a very quiet place. [SEP] it also reported a market loss of $35 million. [SEP] there was his brother, the legendary defender, on the national team's inactive list. [SEP] the lakers also advanced to the conference's third round. [SEP] an investigation into the 2006 death [SEP] + +===== sample 062 ===== +[CLS] court date jan. [SEP] britain's foreign minister, gordon brown, confirmed the case had been lodged in the united states. [SEP] "you want to know," says a sports radio commentator and xm radio host. [SEP] a senior taliban official said the death toll of one other militant remained in nangarhar, the associated press reported. [SEP] "the whole of the investigation should be done," she said, according to reuters. [SEP] every time he makes a mistake, it can be much harder - to make sure there is no mistake here. [SEP] we all agree that the best choice is not going to be the right choice [SEP] + +===== sample 063 ===== +[CLS] and approximately 1, 200 miles (400 square miles, 300 square kilometers) to the east of the kagosi islands. [SEP] the big - time film stars have earned an unlikely status as the face of sir morris - sky's new generation of brand - name presenters - but they're definitely a very different side. [SEP] (cnn) - - the state's supreme court on tuesday related to the circumstances of the death penalty of an elderly man charged in the death of 3 - year - old daniel toddler, ohio, was released friday. [SEP] if the government is the product of a backlash from russia, and the [SEP] + diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/summary.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/summary.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..fc6ed405407d86d8d7156f24f1ccbc5c3830ceff --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260508/lm1b_8gpu_fullycoupled_latest_temp_schedule_128steps_n64/summary.jsonl @@ -0,0 +1,16 @@ +{"type": "summary", "name": "const1p45_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "const1p45_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.45, "temp_end": 1.45, "temp_schedule": "const", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 46.167692609958465, "nll_per_token": 3.8322802593107435, "tokens": 9678}, "diversity": {"sample_entropy": 4.203627610836947, "unique_tokens": 1868, "token_count": 8192, "distinct_1": 0.22802734375, "distinct_2": 0.7084153543307087, "top_token_mass": 0.0589599609375}} +{"type": "summary", "name": "linear_2p0_to_1p0_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_2p0_to_1p0_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 1.0, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 57.89282886876284, "nll_per_token": 4.058593523173776, "tokens": 9687}, "diversity": {"sample_entropy": 4.230719319713245, "unique_tokens": 1950, "token_count": 8192, "distinct_1": 0.238037109375, "distinct_2": 0.7317913385826772, "top_token_mass": 0.0478515625}} +{"type": "summary", "name": "linear_2p0_to_0p8_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_2p0_to_0p8_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 50.33995014345255, "nll_per_token": 3.918798999310425, "tokens": 9698}, "diversity": {"sample_entropy": 4.20795476641468, "unique_tokens": 1865, "token_count": 8192, "distinct_1": 0.2276611328125, "distinct_2": 0.7055856299212598, "top_token_mass": 0.0501708984375}} +{"type": "summary", "name": "linear_1p8_to_0p8_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_1p8_to_0p8_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.8, "temp_end": 0.8, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 42.701768026370516, "nll_per_token": 3.754240325147185, "tokens": 9618}, "diversity": {"sample_entropy": 4.1504656186868445, "unique_tokens": 1733, "token_count": 8192, "distinct_1": 0.2115478515625, "distinct_2": 0.6781496062992126, "top_token_mass": 0.0665283203125}} +{"type": "summary", "name": "cosine_2p0_to_1p0_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_2p0_to_1p0_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 1.0, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 57.69433042345068, "nll_per_token": 4.055158909127353, "tokens": 9666}, "diversity": {"sample_entropy": 4.217734038811499, "unique_tokens": 1913, "token_count": 8192, "distinct_1": 0.2335205078125, "distinct_2": 0.7210875984251969, "top_token_mass": 0.0491943359375}} +{"type": "summary", "name": "cosine_2p0_to_0p8_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_2p0_to_0p8_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 52.61771836855152, "nll_per_token": 3.963052914135212, "tokens": 9670}, "diversity": {"sample_entropy": 4.229658640820065, "unique_tokens": 1833, "token_count": 8192, "distinct_1": 0.2237548828125, "distinct_2": 0.7153051181102362, "top_token_mass": 0.052490234375}} +{"type": "summary", "name": "cosine_1p8_to_0p8_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_1p8_to_0p8_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.8, "temp_end": 0.8, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 44.48490287414872, "nll_per_token": 3.7951498703549906, "tokens": 9708}, "diversity": {"sample_entropy": 4.189465390460094, "unique_tokens": 1853, "token_count": 8192, "distinct_1": 0.2261962890625, "distinct_2": 0.6977116141732284, "top_token_mass": 0.0614013671875}} +{"type": "summary", "name": "late_2p0_to_0p8_c256", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "late_2p0_to_0p8_c256", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "late", "concentration_min": 1.0, "concentration_max": 256.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 76.25641195724324, "nll_per_token": 4.334101503194585, "tokens": 9880}, "diversity": {"sample_entropy": 4.119732817656021, "unique_tokens": 1593, "token_count": 8192, "distinct_1": 0.1944580078125, "distinct_2": 0.6507135826771654, "top_token_mass": 0.050537109375}} +{"type": "summary", "name": "const1p45_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "const1p45_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.45, "temp_end": 1.45, "temp_schedule": "const", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 44.64688583445828, "nll_per_token": 3.7987845587413815, "tokens": 9790}, "diversity": {"sample_entropy": 4.190344770313543, "unique_tokens": 1890, "token_count": 8192, "distinct_1": 0.230712890625, "distinct_2": 0.6918061023622047, "top_token_mass": 0.0584716796875}} +{"type": "summary", "name": "linear_2p0_to_1p0_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_2p0_to_1p0_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 1.0, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 67.09372257056255, "nll_per_token": 4.206090486256429, "tokens": 9916}, "diversity": {"sample_entropy": 4.212984973676147, "unique_tokens": 1701, "token_count": 8192, "distinct_1": 0.2076416015625, "distinct_2": 0.6530511811023622, "top_token_mass": 0.0494384765625}} +{"type": "summary", "name": "linear_2p0_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_2p0_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 59.49218961431751, "nll_per_token": 4.085845036949059, "tokens": 9722}, "diversity": {"sample_entropy": 4.231511210178493, "unique_tokens": 1904, "token_count": 8192, "distinct_1": 0.232421875, "distinct_2": 0.7090305118110236, "top_token_mass": 0.051025390625}} +{"type": "summary", "name": "linear_1p8_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "linear_1p8_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.8, "temp_end": 0.8, "temp_schedule": "linear", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 44.10530348094567, "nll_per_token": 3.7865800355610095, "tokens": 9728}, "diversity": {"sample_entropy": 4.16083612008407, "unique_tokens": 1814, "token_count": 8192, "distinct_1": 0.221435546875, "distinct_2": 0.6830708661417323, "top_token_mass": 0.0643310546875}} +{"type": "summary", "name": "cosine_2p0_to_1p0_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_2p0_to_1p0_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 1.0, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 69.45955054398952, "nll_per_token": 4.240744576577883, "tokens": 9751}, "diversity": {"sample_entropy": 4.014714437300709, "unique_tokens": 1477, "token_count": 8192, "distinct_1": 0.1802978515625, "distinct_2": 0.59251968503937, "top_token_mass": 0.058837890625}} +{"type": "summary", "name": "cosine_2p0_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_2p0_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 61.62004678653673, "nll_per_token": 4.120987252443416, "tokens": 9963}, "diversity": {"sample_entropy": 4.226612023722781, "unique_tokens": 1808, "token_count": 8192, "distinct_1": 0.220703125, "distinct_2": 0.68873031496063, "top_token_mass": 0.048095703125}} +{"type": "summary", "name": "cosine_1p8_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "cosine_1p8_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 1.8, "temp_end": 0.8, "temp_schedule": "cosine", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 49.414174907327684, "nll_per_token": 3.9002373244779345, "tokens": 9721}, "diversity": {"sample_entropy": 4.191741629686525, "unique_tokens": 1821, "token_count": 8192, "distinct_1": 0.2222900390625, "distinct_2": 0.6957431102362205, "top_token_mass": 0.05908203125}} +{"type": "summary", "name": "late_2p0_to_0p8_c1024", "checkpoint": "runs/lta_lm1b_dirichlet_categorical_fullvocab_c1024_fullycoupled_flmpack_onehot_hardce_ddit_small_len128_gbs512_8gpu_1m_nw0/latest.pt", "step": 168000, "decode": {"kind": "categorical_fullvocab_temp_schedule", "config": "late_2p0_to_0p8_c1024", "steps": 128, "model_t_mode": "post", "support_power": 1.0, "semantic_power": 1.0, "temp_start": 2.0, "temp_end": 0.8, "temp_schedule": "late", "concentration_min": 1.0, "concentration_max": 1024.0, "final_from": "state", "update": "resample", "n_samples": 64, "seed": 20260508}, "detok_genppl": {"ppl": 30.292676715795903, "nll_per_token": 3.4109059907549826, "tokens": 6918}, "diversity": {"sample_entropy": 1.950918831735721, "unique_tokens": 508, "token_count": 8192, "distinct_1": 0.06201171875, "distinct_2": 0.21345964566929135, "top_token_mass": 0.4271240234375}} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..1979764d1de9c5c29c49fddf7bbb7c54f4474b17 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +diag_copied_len256_allcorrupt_step69000 69000 none 0.41534423828125 0.0390625 0.63671875 0.0 0 0.0 0 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..967d57f2efc65b2572bdfe3d575b51b9bb8699f3 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/power_high_steps1024/decode_token_acc_summary.json @@ -0,0 +1,159 @@ +{ + "num_rows": 1, + "best_by_run": { + "diag_copied_len256_allcorrupt_step69000::none": { + "run": "diag_copied_len256_allcorrupt_step69000", + "checkpoint": "runs/diag_copied_len256_allcorrupt_step69000/step_0069000.pt", + "ckpt_step": 69000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 1024, + "time_schedule": "power_high", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.41534423828125, + "token_acc_min": 0.0390625, + "token_acc_max": 0.63671875, + "exact_acc": 0.0, + "exact_count": 0, + "exact_ref_coverage": 0.0, + "exact_ref_count": 0, + "exact_ref_hits": [], + "best_ref_idx": [ + 1, + 5, + 6, + 4, + 3, + 6, + 2, + 5, + 4, + 4, + 3, + 1, + 4, + 0, + 5, + 4, + 6, + 1, + 2, + 5, + 1, + 1, + 1, + 3, + 5, + 6, + 0, + 2, + 5, + 2, + 6, + 5, + 3, + 5, + 0, + 0, + 4, + 3, + 6, + 5, + 2, + 7, + 5, + 2, + 1, + 2, + 5, + 2, + 5, + 5, + 2, + 2, + 5, + 6, + 2, + 0, + 1, + 3, + 0, + 5, + 6, + 7, + 2, + 6 + ], + "best_token_acc": [ + 0.53515625, + 0.625, + 0.609375, + 0.30859375, + 0.578125, + 0.5703125, + 0.53515625, + 0.0859375, + 0.515625, + 0.28515625, + 0.44140625, + 0.08203125, + 0.53515625, + 0.14453125, + 0.609375, + 0.53125, + 0.5859375, + 0.5234375, + 0.18359375, + 0.04296875, + 0.046875, + 0.05859375, + 0.53125, + 0.57421875, + 0.62109375, + 0.578125, + 0.44921875, + 0.0390625, + 0.0546875, + 0.50390625, + 0.59765625, + 0.63671875, + 0.578125, + 0.05859375, + 0.4453125, + 0.453125, + 0.55078125, + 0.0859375, + 0.58203125, + 0.546875, + 0.52734375, + 0.0546875, + 0.625, + 0.15234375, + 0.515625, + 0.45703125, + 0.62109375, + 0.546875, + 0.59765625, + 0.06640625, + 0.484375, + 0.16015625, + 0.61328125, + 0.6015625, + 0.48828125, + 0.41796875, + 0.49609375, + 0.56640625, + 0.46484375, + 0.625, + 0.5859375, + 0.04296875, + 0.5, + 0.05078125 + ] + } + }, + "first_exact_by_run": {} +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_power_high_steps1024/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_power_high_steps1024/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..c7dbfcaba37bbc7db5110c51e24d359d37c665a7 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_power_high_steps1024/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/diag_copied_len256_allcorrupt_step69000/step_0069000.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 1024, + "seed": 20314773, + "time_schedule": "power_high", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.40826416015625, + "final_token_acc_min": 0.03125, + "final_token_acc_max": 0.64453125, + "final_exact_count": 0, + "final_best_ref_counts": [ + 3, + 16, + 13, + 4, + 3, + 15, + 8, + 2 + ], + "lock_stats": { + "final_token_acc_mean": 0.40826416015625, + "final_exact_count": 0, + "final_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 5, + 5, + 5, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 2, + 1, + 2, + 1, + 5, + 5, + 6, + 2, + 5, + 5, + 1, + 3, + 2, + 0, + 5, + 2, + 7, + 6, + 5, + 5, + 4, + 7, + 3, + 5, + 1 + ], + "wrong_count_per_sample": [ + 117, + 244, + 110, + 108, + 131, + 221, + 99, + 97, + 112, + 143, + 96, + 118, + 103, + 172, + 239, + 94, + 245, + 107, + 119, + 118, + 134, + 104, + 161, + 231, + 110, + 137, + 235, + 97, + 125, + 180, + 126, + 118, + 243, + 222, + 228, + 124, + 91, + 119, + 119, + 240, + 118, + 122, + 107, + 193, + 247, + 108, + 245, + 96, + 97, + 136, + 117, + 246, + 142, + 105, + 127, + 243, + 102, + 243, + 101, + 136, + 248, + 115, + 244, + 120 + ], + "wrong_state_lock_step": { + "n": 9695, + "min": 0.0, + "p25": 381.0, + "median": 812.0, + "p75": 1012.0, + "max": 1022.0, + "mean": 710.4864363073749 + }, + "wrong_endpoint_first_emit_step": { + "n": 9695, + "min": 1.0, + "p25": 52.0, + "median": 480.0, + "p75": 947.0, + "max": 1022.0, + "mean": 493.38236204228986 + }, + "num_steps": 1024 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1214, + "mass": 0.0740966796875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 870, + "mass": 0.0531005859375 + }, + { + "id": 40, + "old_text": " the", + "count": 840, + "mass": 0.05126953125 + }, + { + "id": 5, + "old_text": ".", + "count": 739, + "mass": 0.04510498046875 + }, + { + "id": 54, + "old_text": " in", + "count": 541, + "mass": 0.03302001953125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.484375, + 0.0390625, + 0.1171875, + 0.42578125, + 0.25, + 0.1484375, + 0.4765625, + 0.21875, + 0.28125, + 0.53125, + 0.2578125, + 0.578125, + 0.3828125, + 0.28515625, + 0.51953125, + 0.28125, + 0.16796875, + 0.53125, + 0.13671875, + 0.32421875, + 0.14453125, + 0.39453125, + 0.55859375, + 0.2421875, + 0.5546875, + 0.47265625, + 0.16015625, + 0.11328125, + 0.12109375, + 0.14453125, + 0.6171875, + 0.3515625, + 0.1875, + 0.078125, + 0.25, + 0.46484375, + 0.2734375, + 0.2265625, + 0.3046875, + 0.17578125, + 0.40234375, + 0.22265625, + 0.19140625, + 0.2265625, + 0.1328125, + 0.578125, + 0.11328125, + 0.453125, + 0.26171875, + 0.4296875, + 0.25390625, + 0.19921875, + 0.36328125, + 0.5390625, + 0.26171875, + 0.18359375, + 0.1328125, + 0.25, + 0.515625, + 0.09765625, + 0.29296875, + 0.203125, + 0.19921875, + 0.19140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 4, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 6, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1217, + "mass": 0.07427978515625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 870, + "mass": 0.0531005859375 + }, + { + "id": 40, + "old_text": " the", + "count": 827, + "mass": 0.05047607421875 + }, + { + "id": 5, + "old_text": ".", + "count": 744, + "mass": 0.04541015625 + }, + { + "id": 54, + "old_text": " in", + "count": 538, + "mass": 0.0328369140625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.484375, + 0.0390625, + 0.12109375, + 0.42578125, + 0.25390625, + 0.1484375, + 0.484375, + 0.22265625, + 0.29296875, + 0.53515625, + 0.265625, + 0.578125, + 0.390625, + 0.28515625, + 0.52734375, + 0.28125, + 0.16796875, + 0.53125, + 0.13671875, + 0.31640625, + 0.13671875, + 0.40625, + 0.5625, + 0.2421875, + 0.55859375, + 0.47265625, + 0.16015625, + 0.1171875, + 0.125, + 0.140625, + 0.62109375, + 0.34765625, + 0.16796875, + 0.07421875, + 0.25390625, + 0.47265625, + 0.27734375, + 0.24609375, + 0.3046875, + 0.17578125, + 0.40234375, + 0.2265625, + 0.203125, + 0.2265625, + 0.1328125, + 0.58203125, + 0.10546875, + 0.44140625, + 0.265625, + 0.4375, + 0.26171875, + 0.1953125, + 0.37109375, + 0.53515625, + 0.2578125, + 0.1953125, + 0.13671875, + 0.24609375, + 0.515625, + 0.11328125, + 0.29296875, + 0.21484375, + 0.19921875, + 0.1953125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 4, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 6, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1209, + "mass": 0.07379150390625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 873, + "mass": 0.05328369140625 + }, + { + "id": 40, + "old_text": " the", + "count": 828, + "mass": 0.050537109375 + }, + { + "id": 5, + "old_text": ".", + "count": 746, + "mass": 0.0455322265625 + }, + { + "id": 54, + "old_text": " in", + "count": 535, + "mass": 0.03265380859375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.4921875, + 0.0390625, + 0.125, + 0.4375, + 0.26171875, + 0.14453125, + 0.4921875, + 0.22265625, + 0.30859375, + 0.5390625, + 0.26953125, + 0.57421875, + 0.41015625, + 0.28515625, + 0.54296875, + 0.2890625, + 0.1640625, + 0.5390625, + 0.15234375, + 0.31640625, + 0.12109375, + 0.40625, + 0.5703125, + 0.2421875, + 0.56640625, + 0.48046875, + 0.16015625, + 0.1171875, + 0.14453125, + 0.1484375, + 0.62890625, + 0.34375, + 0.16015625, + 0.07421875, + 0.2578125, + 0.48046875, + 0.2890625, + 0.26171875, + 0.296875, + 0.17578125, + 0.41796875, + 0.234375, + 0.19921875, + 0.2109375, + 0.125, + 0.6015625, + 0.10546875, + 0.4296875, + 0.265625, + 0.4375, + 0.265625, + 0.19921875, + 0.37109375, + 0.53125, + 0.24609375, + 0.19921875, + 0.15625, + 0.24609375, + 0.51953125, + 0.12890625, + 0.29296875, + 0.2265625, + 0.2109375, + 0.1953125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 4, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1194, + "mass": 0.0728759765625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 896, + "mass": 0.0546875 + }, + { + "id": 40, + "old_text": " the", + "count": 827, + "mass": 0.05047607421875 + }, + { + "id": 5, + "old_text": ".", + "count": 744, + "mass": 0.04541015625 + }, + { + "id": 54, + "old_text": " in", + "count": 509, + "mass": 0.03106689453125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.51953125, + 0.0390625, + 0.10546875, + 0.46484375, + 0.28125, + 0.13671875, + 0.515625, + 0.2421875, + 0.3515625, + 0.55078125, + 0.265625, + 0.58984375, + 0.44921875, + 0.2734375, + 0.625, + 0.3046875, + 0.19140625, + 0.59375, + 0.17578125, + 0.28125, + 0.140625, + 0.4375, + 0.6171875, + 0.2265625, + 0.59765625, + 0.50390625, + 0.171875, + 0.13671875, + 0.1640625, + 0.14453125, + 0.66796875, + 0.328125, + 0.16015625, + 0.08984375, + 0.2578125, + 0.50390625, + 0.30859375, + 0.3125, + 0.3046875, + 0.18359375, + 0.421875, + 0.21875, + 0.19140625, + 0.19140625, + 0.11328125, + 0.640625, + 0.09375, + 0.34375, + 0.26171875, + 0.43359375, + 0.2734375, + 0.18359375, + 0.39453125, + 0.51171875, + 0.19140625, + 0.234375, + 0.20703125, + 0.234375, + 0.48828125, + 0.171875, + 0.28515625, + 0.27734375, + 0.25390625, + 0.20703125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 1, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1170, + "mass": 0.0714111328125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 896, + "mass": 0.0546875 + }, + { + "id": 40, + "old_text": " the", + "count": 801, + "mass": 0.04888916015625 + }, + { + "id": 5, + "old_text": ".", + "count": 744, + "mass": 0.04541015625 + }, + { + "id": 54, + "old_text": " in", + "count": 493, + "mass": 0.03009033203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.578125, + 0.03125, + 0.1328125, + 0.51953125, + 0.33984375, + 0.125, + 0.52734375, + 0.265625, + 0.36328125, + 0.609375, + 0.28515625, + 0.65234375, + 0.53515625, + 0.27734375, + 0.70703125, + 0.35546875, + 0.19921875, + 0.65234375, + 0.15625, + 0.21484375, + 0.44140625, + 0.546875, + 0.72265625, + 0.20703125, + 0.62890625, + 0.5625, + 0.17578125, + 0.19140625, + 0.19921875, + 0.125, + 0.734375, + 0.2421875, + 0.17578125, + 0.09765625, + 0.2421875, + 0.57421875, + 0.4140625, + 0.515625, + 0.3125, + 0.21484375, + 0.421875, + 0.171875, + 0.140625, + 0.1875, + 0.19140625, + 0.73046875, + 0.07421875, + 0.28125, + 0.2578125, + 0.41015625, + 0.296875, + 0.1484375, + 0.4453125, + 0.46875, + 0.34375, + 0.35546875, + 0.31640625, + 0.2109375, + 0.41015625, + 0.234375, + 0.24609375, + 0.36328125, + 0.359375, + 0.2265625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 1, + 1, + 7, + 1, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 5, + 5, + 7, + 6, + 6, + 5, + 0, + 5, + 0, + 2, + 0, + 5, + 2, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1049, + "mass": 0.06402587890625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 777, + "mass": 0.04742431640625 + }, + { + "id": 40, + "old_text": " the", + "count": 729, + "mass": 0.04449462890625 + }, + { + "id": 5, + "old_text": ".", + "count": 655, + "mass": 0.03997802734375 + }, + { + "id": 54, + "old_text": " in", + "count": 477, + "mass": 0.02911376953125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.67578125, + 0.02734375, + 0.18359375, + 0.59375, + 0.39453125, + 0.1796875, + 0.50390625, + 0.234375, + 0.2421875, + 0.640625, + 0.5703125, + 0.7421875, + 0.73828125, + 0.1953125, + 0.78125, + 0.44140625, + 0.12109375, + 0.76171875, + 0.17578125, + 0.4765625, + 0.671875, + 0.64453125, + 0.76953125, + 0.24609375, + 0.62109375, + 0.65625, + 0.1484375, + 0.19921875, + 0.3359375, + 0.31640625, + 0.80859375, + 0.109375, + 0.2109375, + 0.06640625, + 0.1953125, + 0.6640625, + 0.59765625, + 0.69140625, + 0.3828125, + 0.21484375, + 0.47265625, + 0.53125, + 0.29296875, + 0.19921875, + 0.359375, + 0.8125, + 0.0546875, + 0.2890625, + 0.4609375, + 0.34765625, + 0.24609375, + 0.12109375, + 0.5234375, + 0.546875, + 0.609375, + 0.54296875, + 0.390625, + 0.08984375, + 0.28125, + 0.3984375, + 0.18359375, + 0.5234375, + 0.54296875, + 0.4140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 0, + 0, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 1, + 1, + 4, + 0, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 7, + 7, + 6, + 3, + 5, + 0, + 1, + 0, + 7, + 0, + 5, + 2, + 7, + 6, + 5, + 5, + 4, + 7, + 3, + 7, + 1 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 687, + "mass": 0.04193115234375 + }, + { + "id": 40, + "old_text": " the", + "count": 571, + "mass": 0.03485107421875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 508, + "mass": 0.031005859375 + }, + { + "id": 5, + "old_text": ".", + "count": 505, + "mass": 0.03082275390625 + }, + { + "id": 54, + "old_text": " in", + "count": 329, + "mass": 0.02008056640625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.6953125, + 0.0234375, + 0.4296875, + 0.5546875, + 0.51953125, + 0.1171875, + 0.68359375, + 0.625, + 0.04296875, + 0.640625, + 0.58203125, + 0.75390625, + 0.77734375, + 0.328125, + 0.74609375, + 0.30859375, + 0.56640625, + 0.78515625, + 0.4609375, + 0.7109375, + 0.6875, + 0.6953125, + 0.6171875, + 0.0859375, + 0.68359375, + 0.73828125, + 0.0703125, + 0.5703125, + 0.65234375, + 0.2890625, + 0.72265625, + 0.34375, + 0.0390625, + 0.0546875, + 0.14453125, + 0.7265625, + 0.69921875, + 0.734375, + 0.69140625, + 0.21484375, + 0.55078125, + 0.453125, + 0.40625, + 0.05859375, + 0.6171875, + 0.7109375, + 0.01953125, + 0.3359375, + 0.640625, + 0.640625, + 0.4453125, + 0.35546875, + 0.68359375, + 0.70703125, + 0.67578125, + 0.59765625, + 0.7109375, + 0.05859375, + 0.5859375, + 0.6796875, + 0.10546875, + 0.63671875, + 0.6875, + 0.71484375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 5, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 5, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 658, + "mass": 0.0401611328125 + }, + { + "id": 40, + "old_text": " the", + "count": 591, + "mass": 0.03607177734375 + }, + { + "id": 5, + "old_text": ".", + "count": 501, + "mass": 0.03057861328125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 454, + "mass": 0.0277099609375 + }, + { + "id": 113, + "old_text": "�", + "count": 307, + "mass": 0.01873779296875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.66796875, + 0.03515625, + 0.60546875, + 0.59765625, + 0.44140625, + 0.09375, + 0.79296875, + 0.609375, + 0.0546875, + 0.61328125, + 0.58984375, + 0.7578125, + 0.7890625, + 0.28125, + 0.6953125, + 0.53125, + 0.5859375, + 0.78125, + 0.65234375, + 0.72265625, + 0.6640625, + 0.65625, + 0.5859375, + 0.0390625, + 0.69140625, + 0.7421875, + 0.0546875, + 0.703125, + 0.6875, + 0.31640625, + 0.671875, + 0.61328125, + 0.02734375, + 0.09375, + 0.078125, + 0.71875, + 0.69140625, + 0.7421875, + 0.73828125, + 0.3046875, + 0.609375, + 0.3515625, + 0.4609375, + 0.046875, + 0.70703125, + 0.67578125, + 0.0234375, + 0.46875, + 0.6328125, + 0.59765625, + 0.5, + 0.59375, + 0.640625, + 0.734375, + 0.68359375, + 0.59765625, + 0.79296875, + 0.0703125, + 0.6640625, + 0.60546875, + 0.02734375, + 0.65625, + 0.7109375, + 0.76171875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 0, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 5, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 5, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 771, + "mass": 0.04705810546875 + }, + { + "id": 40, + "old_text": " the", + "count": 668, + "mass": 0.040771484375 + }, + { + "id": 5, + "old_text": ".", + "count": 566, + "mass": 0.0345458984375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 525, + "mass": 0.03204345703125 + }, + { + "id": 113, + "old_text": "�", + "count": 283, + "mass": 0.01727294921875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0078125, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.0078125, + 0.01171875, + 0.0234375, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.01171875, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.015625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.7265625, + 0.0703125, + 0.73828125, + 0.72265625, + 0.41015625, + 0.140625, + 0.80859375, + 0.64453125, + 0.13671875, + 0.6796875, + 0.7109375, + 0.78125, + 0.81640625, + 0.37890625, + 0.7890625, + 0.59375, + 0.67578125, + 0.79296875, + 0.69140625, + 0.80078125, + 0.74609375, + 0.703125, + 0.71484375, + 0.0390625, + 0.71875, + 0.78125, + 0.0625, + 0.75, + 0.73828125, + 0.44921875, + 0.73828125, + 0.73046875, + 0.0390625, + 0.125, + 0.0859375, + 0.78125, + 0.7421875, + 0.77734375, + 0.7734375, + 0.4140625, + 0.72265625, + 0.4375, + 0.5625, + 0.0546875, + 0.796875, + 0.765625, + 0.0234375, + 0.6484375, + 0.7109375, + 0.671875, + 0.609375, + 0.6796875, + 0.74609375, + 0.77734375, + 0.69921875, + 0.6953125, + 0.78515625, + 0.109375, + 0.7421875, + 0.66796875, + 0.02734375, + 0.70703125, + 0.7578125, + 0.78515625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 6, + 1, + 0, + 2, + 1, + 6, + 0, + 5, + 4, + 6, + 0, + 6, + 0, + 0, + 4, + 2, + 3, + 5, + 0, + 0, + 7, + 3, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 2, + 6, + 3, + 4, + 6, + 0, + 0, + 0, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 5, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 5, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + } + }, + "last_step": { + "step": 1024, + "progress": 1.0, + "next_progress": 1.0, + "dt": 0.0, + "gamma": 0.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.40826416015625, + "state_acc_after_mean": 0.40826416015625, + "endpoint_acc_mean": 0.4072265625, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.3861534595489502, + "endpoint_pgold_best_mean": 0.3857041299343109, + "state_entropy_mean": 0.6493971943855286, + "endpoint_entropy_mean": 0.6386333703994751, + "state_maxprob_mean": 0.807306170463562, + "endpoint_maxprob_mean": 0.8086662292480469, + "oracle_clean_acc_mean": 0.6689453125, + "oracle_clean_pgold_mean": 0.6261046528816223, + "state_best_ref_mode": 1, + "endpoint_best_ref_mode": 1, + "state_best_ref_counts": [ + 3, + 16, + 13, + 4, + 3, + 15, + 8, + 2 + ], + "endpoint_best_ref_counts": [ + 3, + 16, + 13, + 4, + 3, + 13, + 8, + 4 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..2cd92d3cb2818030f8bb3b1b9be4909b3f7501a5 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/step_metrics.csv @@ -0,0 +1,1025 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.0009765625,0.0009765625,0.0009765625,1.0,1.0,0.00433349609375,0.00433349609375,0.29595947265625,0,0,0.00346405990421772,0.2292836755514145,1.0107636451721191,1.7612433433532715,0.6236546039581299,0.5514998435974121,0.1640625,0.08891157805919647,0,5 +2,0.0009765625,0.001953125,0.0009765625,0.0009775171065493646,1.0,1.0,0.00433349609375,0.00433349609375,0.2974853515625,0,0,0.003527355846017599,0.23104894161224365,1.0178282260894775,1.747196912765503,0.6230463981628418,0.553804337978363,0.16455078125,0.09032813459634781,0,5 +3,0.001953125,0.0029296875,0.0009765625,0.0009784735812133072,1.0,1.0,0.00433349609375,0.00433349609375,0.2987060546875,0,0,0.003598274663090706,0.2321946620941162,1.0243821144104004,1.7403545379638672,0.6224382519721985,0.55501389503479,0.16650390625,0.09089134633541107,0,5 +4,0.0029296875,0.00390625,0.0009765625,0.0009794319294809011,1.0,1.0,0.00433349609375,0.00433349609375,0.3001708984375,0,0,0.003670517820864916,0.2338988035917282,1.0305960178375244,1.7273650169372559,0.6218301653862,0.5571388006210327,0.16552734375,0.09228143095970154,0,5 +5,0.00390625,0.0048828125,0.0009765625,0.000980392156862745,1.0,1.0,0.00433349609375,0.00433349609375,0.30157470703125,0,0,0.003744045039638877,0.23511576652526855,1.036557674407959,1.7193851470947266,0.6212220191955566,0.5585124492645264,0.166015625,0.09304654598236084,0,5 +6,0.0048828125,0.005859375,0.0009765625,0.0009813542688910696,1.0,1.0,0.00433349609375,0.00433349609375,0.302978515625,0,0,0.003831876441836357,0.23641778528690338,1.042316198348999,1.710747480392456,0.6206138134002686,0.5599985718727112,0.16845703125,0.09386983513832092,0,5 +7,0.005859375,0.0068359375,0.0009765625,0.0009823182711198428,1.0,1.0,0.00433349609375,0.00433349609375,0.30487060546875,0,0,0.003932802006602287,0.23769018054008484,1.0479048490524292,1.702648401260376,0.62000572681427,0.5614402294158936,0.1689453125,0.09462428092956543,0,5 +8,0.0068359375,0.0078125,0.0009765625,0.0009832841691248771,1.0,1.0,0.00433349609375,0.00433349609375,0.306884765625,0,0,0.004040825180709362,0.23901033401489258,1.053346872329712,1.6944570541381836,0.6193976402282715,0.5629098415374756,0.169921875,0.09532007575035095,0,5 +9,0.0078125,0.0087890625,0.0009765625,0.000984251968503937,1.0,1.0,0.00433349609375,0.00433349609375,0.30670166015625,0,0,0.004156902898102999,0.2405228614807129,1.0586583614349365,1.6841996908187866,0.618789553642273,0.5647220611572266,0.1708984375,0.09639940410852432,0,5 +10,0.0087890625,0.009765625,0.0009765625,0.0009852216748768472,1.0,1.0,0.00433349609375,0.00433349609375,0.30792236328125,0,0,0.004280736669898033,0.2422267347574234,1.063852071762085,1.6728988885879517,0.6181814074516296,0.5667632818222046,0.1728515625,0.09752374142408371,0,5 +11,0.009765625,0.0107421875,0.0009765625,0.0009861932938856016,1.0,1.0,0.00433349609375,0.00433349609375,0.308837890625,0,0,0.004415544681251049,0.24361585080623627,1.0689418315887451,1.6654704809188843,0.6175733804702759,0.5681878328323364,0.173828125,0.09813611954450607,0,1 +12,0.0107421875,0.01171875,0.0009765625,0.0009871668311944718,1.0,1.0,0.00433349609375,0.00433349609375,0.31085205078125,0,0,0.004566499963402748,0.24521125853061676,1.07393479347229,1.6557013988494873,0.6169652938842773,0.5700024962425232,0.17626953125,0.09901046752929688,0,1 +13,0.01171875,0.0126953125,0.0009765625,0.0009881422924901185,1.0,1.0,0.00433349609375,0.00433349609375,0.31231689453125,0,0,0.004732736852020025,0.24670818448066711,1.0788400173187256,1.6475564241409302,0.6163572669029236,0.5715511441230774,0.17578125,0.09968216717243195,0,1 +14,0.0126953125,0.013671875,0.0009765625,0.0009891196834817012,1.0,1.0,0.00433349609375,0.00433349609375,0.31280517578125,0,0,0.004905569367110729,0.24820727109909058,1.0836634635925293,1.6392110586166382,0.615749180316925,0.5731397867202759,0.17431640625,0.10038775950670242,0,1 +15,0.013671875,0.0146484375,0.0009765625,0.0009900990099009901,1.0,1.0,0.00433349609375,0.00439453125,0.31494140625,0,0,0.005079642869532108,0.25016799569129944,1.08840811252594,1.6265039443969727,0.6151411533355713,0.5753884315490723,0.17578125,0.10159453749656677,0,1 +16,0.0146484375,0.015625,0.0009765625,0.0009910802775024777,1.0,1.0,0.00439453125,0.00439453125,0.3155517578125,0,0,0.00525943748652935,0.25157710909843445,1.0930814743041992,1.6188452243804932,0.6145331859588623,0.5768489241600037,0.17529296875,0.10213130712509155,0,5 +17,0.015625,0.0166015625,0.0009765625,0.000992063492063492,1.0,1.0,0.00439453125,0.00439453125,0.3179931640625,0,0,0.005451486445963383,0.2534636855125427,1.0976873636245728,1.609410285949707,0.6139252185821533,0.5786310434341431,0.1748046875,0.1028895229101181,0,1 +18,0.0166015625,0.017578125,0.0009765625,0.0009930486593843098,1.0,1.0,0.00439453125,0.00439453125,0.3189697265625,0,0,0.00565379299223423,0.2551034688949585,1.1022292375564575,1.6012310981750488,0.6133171319961548,0.5802316665649414,0.17431640625,0.10351883620023727,0,1 +19,0.017578125,0.0185546875,0.0009765625,0.0009940357852882703,1.0,1.0,0.00439453125,0.00439453125,0.320556640625,0,0,0.005868519656360149,0.2567143440246582,1.1067109107971191,1.5934934616088867,0.6127091646194458,0.5818077325820923,0.17529296875,0.10401509702205658,0,1 +20,0.0185546875,0.01953125,0.0009765625,0.0009950248756218905,1.0,1.0,0.00439453125,0.00439453125,0.32232666015625,0,0,0.006090880371630192,0.2588159441947937,1.1111335754394531,1.581028699874878,0.6121012568473816,0.5841203927993774,0.1767578125,0.10514004528522491,0,1 +21,0.01953125,0.0205078125,0.0009765625,0.00099601593625498,1.0,1.0,0.00439453125,0.00439453125,0.32452392578125,0,0,0.006319066509604454,0.26040762662887573,1.115502119064331,1.5735183954238892,0.6114932298660278,0.5856794118881226,0.17724609375,0.10554239153862,0,1 +22,0.0205078125,0.021484375,0.0009765625,0.0009970089730807576,1.0,1.0,0.00439453125,0.00439453125,0.32574462890625,0,0,0.006551823113113642,0.26229041814804077,1.119817852973938,1.5634360313415527,0.6108853220939636,0.5876546502113342,0.1767578125,0.10633876919746399,0,5 +23,0.021484375,0.0224609375,0.0009765625,0.000998003992015968,1.0,1.0,0.00439453125,0.00439453125,0.3271484375,0,0,0.006787937134504318,0.2640594244003296,1.1240832805633545,1.554447889328003,0.6102774143218994,0.5894755125045776,0.17724609375,0.10685961693525314,0,5 +24,0.0224609375,0.0234375,0.0009765625,0.000999000999000999,1.0,1.0,0.00439453125,0.00439453125,0.3292236328125,0,0,0.007026803679764271,0.2659575343132019,1.1283003091812134,1.5456966161727905,0.6096695065498352,0.5912373065948486,0.17919921875,0.10736963897943497,0,5 +25,0.0234375,0.0244140625,0.0009765625,0.001,1.0,1.0,0.00439453125,0.00439453125,0.33172607421875,0,0,0.00726718083024025,0.2679799199104309,1.1324710845947266,1.5370121002197266,0.6090616583824158,0.5930302739143372,0.1796875,0.10790573805570602,0,5 +26,0.0244140625,0.025390625,0.0009765625,0.001001001001001001,1.0,1.0,0.00439453125,0.00439453125,0.33489990234375,0,0,0.007510852999985218,0.2706034183502197,1.1365981101989746,1.525432825088501,0.6084538698196411,0.5953314304351807,0.18017578125,0.10869018733501434,0,1 +27,0.025390625,0.0263671875,0.0009765625,0.001002004008016032,1.0,1.0,0.00439453125,0.00439453125,0.33685302734375,0,0,0.007756526581943035,0.27283212542533875,1.1406816244125366,1.515721082687378,0.6078460216522217,0.5973833203315735,0.18115234375,0.10923074185848236,0,1 +28,0.0263671875,0.02734375,0.0009765625,0.0010030090270812437,1.0,1.0,0.00439453125,0.00439453125,0.33892822265625,0,0,0.00800597295165062,0.27522537112236023,1.1447234153747559,1.5056217908859253,0.6072381734848022,0.5994802713394165,0.18017578125,0.1097998097538948,0,1 +29,0.02734375,0.0283203125,0.0009765625,0.001004016064257028,1.0,1.0,0.00439453125,0.00439453125,0.34149169921875,0,0,0.008259242400527,0.27767789363861084,1.1487253904342651,1.4962648153305054,0.6066304445266724,0.6014896035194397,0.17919921875,0.11017721891403198,0,1 +30,0.0283203125,0.029296875,0.0009765625,0.0010050251256281408,1.0,1.0,0.00439453125,0.00439453125,0.34375,0,0,0.008516049943864346,0.28021883964538574,1.1526870727539062,1.4853641986846924,0.6060225963592529,0.6037746667861938,0.18017578125,0.11087962239980698,0,1 +31,0.029296875,0.0302734375,0.0009765625,0.001006036217303823,1.0,1.0,0.00439453125,0.00439453125,0.34637451171875,0,0,0.008777286857366562,0.28320997953414917,1.1566120386123657,1.4737608432769775,0.6054148077964783,0.6061895489692688,0.1806640625,0.11149053275585175,0,1 +32,0.0302734375,0.03125,0.0009765625,0.0010070493454179255,1.0,1.0,0.00439453125,0.00439453125,0.34918212890625,0,0,0.009040558710694313,0.28593674302101135,1.1605005264282227,1.4636894464492798,0.6048070192337036,0.6083738803863525,0.18115234375,0.11189952492713928,0,1 +33,0.03125,0.0322265625,0.0009765625,0.0010080645161290322,1.0,1.0,0.00439453125,0.00439453125,0.35125732421875,0,0,0.009305710904300213,0.2885456681251526,1.164353847503662,1.4540741443634033,0.6041992902755737,0.610558032989502,0.1796875,0.11227287352085114,0,1 +34,0.0322265625,0.033203125,0.0009765625,0.0010090817356205853,1.0,1.0,0.00439453125,0.00439453125,0.3525390625,0,0,0.009572609327733517,0.2912394404411316,1.1681721210479736,1.443435788154602,0.6035915613174438,0.6129197478294373,0.1796875,0.11272075772285461,0,1 +35,0.033203125,0.0341796875,0.0009765625,0.00101010101010101,1.0,1.0,0.00439453125,0.00439453125,0.35540771484375,0,0,0.009841371327638626,0.2938752770423889,1.1719567775726318,1.433426856994629,0.602983832359314,0.6152172088623047,0.17919921875,0.11304409801959991,0,1 +36,0.0341796875,0.03515625,0.0009765625,0.0010111223458038423,1.0,1.0,0.00439453125,0.00439453125,0.35821533203125,0,0,0.010113147087395191,0.2970627546310425,1.1757087707519531,1.4204424619674683,0.6023761034011841,0.6180436611175537,0.17919921875,0.1136995404958725,0,1 +37,0.03515625,0.0361328125,0.0009765625,0.0010121457489878543,1.0,1.0,0.00439453125,0.00439453125,0.3607177734375,0,0,0.010390468873083591,0.2999393045902252,1.1794291734695435,1.4098470211029053,0.6017683744430542,0.6204874515533447,0.1796875,0.11401352286338806,0,1 +38,0.0361328125,0.037109375,0.0009765625,0.0010131712259371835,1.0,1.0,0.00439453125,0.00439453125,0.36346435546875,0,0,0.010669872164726257,0.30289095640182495,1.1831177473068237,1.3984980583190918,0.6011606454849243,0.623100757598877,0.1806640625,0.11441507190465927,0,1 +39,0.037109375,0.0380859375,0.0009765625,0.0010141987829614604,1.0,1.0,0.00439453125,0.00439453125,0.36614990234375,0,0,0.010951380245387554,0.30565088987350464,1.1867767572402954,1.3888951539993286,0.6005529761314392,0.6253663301467896,0.18115234375,0.11451327800750732,0,1 +40,0.0380859375,0.0390625,0.0009765625,0.0010152284263959391,1.0,1.0,0.00439453125,0.00439453125,0.369384765625,0,0,0.011234814301133156,0.30870211124420166,1.1904058456420898,1.3769526481628418,0.5999452471733093,0.6280325055122375,0.17919921875,0.1150149330496788,0,1 +41,0.0390625,0.0400390625,0.0009765625,0.0010162601626016261,1.0,1.0,0.00439453125,0.00439453125,0.37200927734375,0,0,0.011522632092237473,0.31149500608444214,1.1940057277679443,1.3663092851638794,0.5993375778198242,0.630479097366333,0.1787109375,0.11523537337779999,0,1 +42,0.0400390625,0.041015625,0.0009765625,0.001017293997965412,1.0,1.0,0.00439453125,0.00439453125,0.37530517578125,0,0,0.011812886223196983,0.315083384513855,1.1975796222686768,1.3515297174453735,0.5987298488616943,0.6336390376091003,0.1796875,0.11590208113193512,0,1 +43,0.041015625,0.0419921875,0.0009765625,0.0010183299389002036,1.0,1.0,0.00439453125,0.00439453125,0.3782958984375,0,0,0.012109261006116867,0.3180902600288391,1.2011250257492065,1.3402156829833984,0.598122239112854,0.6361750364303589,0.1796875,0.11625552177429199,0,1 +44,0.0419921875,0.04296875,0.0009765625,0.0010193679918450561,1.0,1.0,0.00439453125,0.00439453125,0.38031005859375,0,0,0.012408485636115074,0.3211978077888489,1.2046442031860352,1.3289260864257812,0.5975145101547241,0.6387296915054321,0.1787109375,0.11641974002122879,0,1 +45,0.04296875,0.0439453125,0.0009765625,0.0010204081632653062,1.0,1.0,0.00439453125,0.00439453125,0.3837890625,0,0,0.01271084975451231,0.32421791553497314,1.2081353664398193,1.317018747329712,0.5969069004058838,0.6414167881011963,0.1796875,0.1168660968542099,0,1 +46,0.0439453125,0.044921875,0.0009765625,0.0010214504596527069,1.0,1.0,0.00439453125,0.00439453125,0.3880615234375,0,0,0.013015872798860073,0.32705140113830566,1.21160089969635,1.3070961236953735,0.5962992906570435,0.6437674760818481,0.18017578125,0.1168982982635498,0,1 +47,0.044921875,0.0458984375,0.0009765625,0.0010224948875255625,1.0,1.0,0.00439453125,0.00439453125,0.3916015625,0,0,0.013325205072760582,0.33060210943222046,1.2150425910949707,1.2930525541305542,0.5956916809082031,0.6469112634658813,0.1796875,0.11735599488019943,0,1 +48,0.0458984375,0.046875,0.0009765625,0.0010235414534288639,1.0,1.0,0.00439453125,0.00439453125,0.3939208984375,0,0,0.013637262396514416,0.3335649371147156,1.2184593677520752,1.2823939323425293,0.5950840711593628,0.6494311094284058,0.18017578125,0.11753720045089722,0,1 +49,0.046875,0.0478515625,0.0009765625,0.0010245901639344263,1.0,1.0,0.00439453125,0.00439453125,0.39697265625,0,0,0.01395326480269432,0.3365691304206848,1.2218520641326904,1.271115779876709,0.5944764614105225,0.652097225189209,0.1806640625,0.11779767274856567,0,1 +50,0.0478515625,0.048828125,0.0009765625,0.0010256410256410256,1.0,1.0,0.00439453125,0.00439453125,0.3990478515625,0,0,0.014277243986725807,0.33946728706359863,1.2252206802368164,1.2602934837341309,0.5938688516616821,0.654647707939148,0.17919921875,0.11800259351730347,0,1 +51,0.048828125,0.0498046875,0.0009765625,0.001026694045174538,1.0,1.0,0.00439453125,0.00439453125,0.40130615234375,0,0,0.014604640193283558,0.3422996401786804,1.2285656929016113,1.2496721744537354,0.5932612419128418,0.6571506261825562,0.18115234375,0.1181095689535141,0,1 +52,0.0498046875,0.05078125,0.0009765625,0.0010277492291880781,1.0,1.0,0.00439453125,0.00439453125,0.40435791015625,0,0,0.01493450440466404,0.34544843435287476,1.231890320777893,1.2377705574035645,0.5926536321640015,0.6598734855651855,0.18115234375,0.11837448179721832,0,1 +53,0.05078125,0.0517578125,0.0009765625,0.00102880658436214,1.0,1.0,0.00439453125,0.00439453125,0.406494140625,0,0,0.015266981907188892,0.34842270612716675,1.2351925373077393,1.2271442413330078,0.5920460224151611,0.6623275876045227,0.18212890625,0.1185271143913269,0,1 +54,0.0517578125,0.052734375,0.0009765625,0.0010298661174047373,1.0,1.0,0.00439453125,0.00439453125,0.40911865234375,0,0,0.015601889230310917,0.35161179304122925,1.2384731769561768,1.2159651517868042,0.5914384722709656,0.6649042367935181,0.181640625,0.11877582967281342,0,1 +55,0.052734375,0.0537109375,0.0009765625,0.0010309278350515464,1.0,1.0,0.00439453125,0.00439453125,0.411865234375,0,0,0.01593913696706295,0.354678750038147,1.2417325973510742,1.2058603763580322,0.59083092212677,0.6672648191452026,0.1826171875,0.11896708607673645,0,1 +56,0.0537109375,0.0546875,0.0009765625,0.0010319917440660474,1.0,1.0,0.00439453125,0.00439453125,0.41522216796875,0,0,0.016278507187962532,0.3578106760978699,1.2449723482131958,1.1956632137298584,0.5902233123779297,0.6696370840072632,0.18212890625,0.11909125000238419,0,1 +57,0.0546875,0.0556640625,0.0009765625,0.0010330578512396695,1.0,1.0,0.00439453125,0.00439453125,0.418701171875,0,0,0.01661994867026806,0.360667884349823,1.2481917142868042,1.1861299276351929,0.5896157622337341,0.6718621850013733,0.18115234375,0.11923795938491821,0,1 +58,0.0556640625,0.056640625,0.0009765625,0.001034126163391934,1.0,1.0,0.00439453125,0.00439453125,0.42205810546875,0,0,0.016963260248303413,0.3639878034591675,1.251393437385559,1.1747210025787354,0.5890082120895386,0.6744613647460938,0.18310546875,0.11959146708250046,0,1 +59,0.056640625,0.0576171875,0.0009765625,0.0010351966873706005,1.0,1.0,0.00439453125,0.00439453125,0.424560546875,0,0,0.017308499664068222,0.36681705713272095,1.2545762062072754,1.1655216217041016,0.588400661945343,0.6766622066497803,0.18359375,0.11972053349018097,0,1 +60,0.0576171875,0.05859375,0.0009765625,0.0010362694300518134,1.0,1.0,0.00439453125,0.00439453125,0.427001953125,0,0,0.017655977979302406,0.3696686029434204,1.2577404975891113,1.1559653282165527,0.5877931118011475,0.678908109664917,0.18408203125,0.1198708713054657,0,1 +61,0.05859375,0.0595703125,0.0009765625,0.001037344398340249,1.0,1.0,0.00439453125,0.00439453125,0.4298095703125,0,0,0.018005317077040672,0.3721230626106262,1.2608869075775146,1.1486921310424805,0.5871856212615967,0.6806822419166565,0.1826171875,0.11977000534534454,0,1 +62,0.0595703125,0.060546875,0.0009765625,0.0010384215991692627,1.0,1.0,0.00439453125,0.00439453125,0.4317626953125,0,0,0.01835591159760952,0.3748340308666229,1.2640159130096436,1.1397430896759033,0.5865780711174011,0.6828206181526184,0.1826171875,0.11993557214736938,0,1 +63,0.060546875,0.0615234375,0.0009765625,0.0010395010395010396,1.0,1.0,0.00439453125,0.00439453125,0.43359375,0,0,0.018707873299717903,0.37752214074134827,1.2671287059783936,1.130502462387085,0.5859705209732056,0.6849682331085205,0.18212890625,0.12016898393630981,0,1 +64,0.0615234375,0.0625,0.0009765625,0.001040582726326743,1.0,1.0,0.00439453125,0.00439453125,0.4349365234375,0,0,0.01906120404601097,0.3798215687274933,1.270226001739502,1.1235122680664062,0.5853630304336548,0.6866639852523804,0.18212890625,0.1200939416885376,0,1 +65,0.0625,0.0634765625,0.0009765625,0.0010416666666666667,1.0,1.0,0.00439453125,0.00439453125,0.43646240234375,0,0,0.019421817734837532,0.3821220397949219,1.2733060121536255,1.1156907081604004,0.5847554802894592,0.6885173320770264,0.18212890625,0.12025638669729233,0,1 +66,0.0634765625,0.064453125,0.0009765625,0.0010427528675703858,1.0,1.0,0.00439453125,0.00439453125,0.43780517578125,0,0,0.019788194447755814,0.3841800093650818,1.2763699293136597,1.108634352684021,0.5841479301452637,0.6902000904083252,0.181640625,0.12042704224586487,0,1 +67,0.064453125,0.0654296875,0.0009765625,0.0010438413361169101,1.0,1.0,0.00439453125,0.00439453125,0.43939208984375,0,0,0.020155783742666245,0.38618502020835876,1.279419183731079,1.1017825603485107,0.5835404396057129,0.6918917298316956,0.18212890625,0.12042530626058578,0,1 +68,0.0654296875,0.06640625,0.0009765625,0.0010449320794148381,1.0,1.0,0.00439453125,0.00439453125,0.4423828125,0,0,0.02052447572350502,0.3882359266281128,1.2824535369873047,1.095881700515747,0.5829329490661621,0.6933865547180176,0.18115234375,0.12045308947563171,0,1 +69,0.06640625,0.0673828125,0.0009765625,0.0010460251046025104,1.0,1.0,0.00439453125,0.00439453125,0.4444580078125,0,0,0.020894095301628113,0.3910440504550934,1.2854773998260498,1.0879459381103516,0.5823253393173218,0.6952453851699829,0.1796875,0.12076017260551453,0,1 +70,0.0673828125,0.068359375,0.0009765625,0.0010471204188481676,1.0,1.0,0.00439453125,0.00439453125,0.447509765625,0,0,0.021264612674713135,0.39319825172424316,1.288487195968628,1.0835834741592407,0.581717848777771,0.6963710188865662,0.18017578125,0.1206626445055008,0,1 +71,0.068359375,0.0693359375,0.0009765625,0.0010482180293501049,1.0,1.0,0.00439453125,0.00439453125,0.44927978515625,0,0,0.02163568325340748,0.39569512009620667,1.2914824485778809,1.077376127243042,0.5811102986335754,0.6978256702423096,0.1796875,0.1208588182926178,0,1 +72,0.0693359375,0.0703125,0.0009765625,0.001049317943336831,1.0,1.0,0.00439453125,0.00439453125,0.4517822265625,0,0,0.022007480263710022,0.3979172110557556,1.2944655418395996,1.07293701171875,0.5805027484893799,0.698960542678833,0.18017578125,0.12082783877849579,0,1 +73,0.0703125,0.0712890625,0.0009765625,0.0010504201680672268,1.0,1.0,0.00439453125,0.00439453125,0.45428466796875,0,0,0.022379746660590172,0.400123655796051,1.2974355220794678,1.067996621131897,0.5798951983451843,0.7001802921295166,0.1806640625,0.12083826214075089,0,1 +74,0.0712890625,0.072265625,0.0009765625,0.0010515247108307045,1.0,1.0,0.00439453125,0.00439453125,0.45635986328125,0,0,0.02275247313082218,0.40239575505256653,1.3003959655761719,1.063246488571167,0.5792877078056335,0.701341450214386,0.1806640625,0.12099036574363708,0,1 +75,0.072265625,0.0732421875,0.0009765625,0.0010526315789473684,1.0,1.0,0.00439453125,0.00439453125,0.45745849609375,0,0,0.023125432431697845,0.40416187047958374,1.3033438920974731,1.0597851276397705,0.578680157661438,0.702261209487915,0.1796875,0.12095054984092712,0,1 +76,0.0732421875,0.07421875,0.0009765625,0.001053740779768177,1.0,1.0,0.00439453125,0.00439453125,0.4586181640625,0,0,0.023498615249991417,0.40592366456985474,1.3062807321548462,1.0566604137420654,0.5780726671218872,0.7031011581420898,0.1796875,0.1209004670381546,0,1 +77,0.07421875,0.0751953125,0.0009765625,0.0010548523206751054,1.0,1.0,0.00439453125,0.00439453125,0.461181640625,0,0,0.023871928453445435,0.40750494599342346,1.3092067241668701,1.0539524555206299,0.5774650573730469,0.7038218975067139,0.17919921875,0.12088041007518768,0,1 +78,0.0751953125,0.076171875,0.0009765625,0.0010559662090813093,1.0,1.0,0.00439453125,0.00439453125,0.464111328125,0,0,0.024245288223028183,0.40917086601257324,1.3121211528778076,1.0502570867538452,0.5768575668334961,0.7047533988952637,0.18017578125,0.12105727195739746,0,1 +79,0.076171875,0.0771484375,0.0009765625,0.0010570824524312897,1.0,1.0,0.00439453125,0.00439453125,0.466064453125,0,0,0.024618787690997124,0.4105840027332306,1.3150250911712646,1.0482134819030762,0.5762499570846558,0.7053791284561157,0.1796875,0.12098719924688339,0,1 +80,0.0771484375,0.078125,0.0009765625,0.0010582010582010583,1.0,1.0,0.00439453125,0.00439453125,0.469482421875,0,0,0.024992212653160095,0.412109375,1.3179211616516113,1.0455504655838013,0.575642466545105,0.7061198949813843,0.18017578125,0.12112516164779663,0,1 +81,0.078125,0.0791015625,0.0009765625,0.001059322033898305,1.0,1.0,0.00439453125,0.00439453125,0.470458984375,0,0,0.02536701038479805,0.41336357593536377,1.3208059072494507,1.0433688163757324,0.5750348567962646,0.7067488431930542,0.18115234375,0.12130804359912872,0,1 +82,0.0791015625,0.080078125,0.0009765625,0.0010604453870625664,1.0,1.0,0.00439453125,0.00439453125,0.47149658203125,0,0,0.025747252628207207,0.4143095016479492,1.3236823081970215,1.0434414148330688,0.5744273662567139,0.7068846225738525,0.17919921875,0.12115280330181122,0,1 +83,0.080078125,0.0810546875,0.0009765625,0.0010615711252653928,1.0,1.0,0.00439453125,0.00439453125,0.47332763671875,0,0,0.02612747997045517,0.4154886305332184,1.326550006866455,1.04210364818573,0.5738197565078735,0.7072205543518066,0.1787109375,0.12128035724163055,0,1 +84,0.0810546875,0.08203125,0.0009765625,0.0010626992561105207,1.0,1.0,0.00439453125,0.00439453125,0.47467041015625,0,0,0.026507791131734848,0.4162653088569641,1.3294081687927246,1.0422558784484863,0.573212206363678,0.7071747183799744,0.1796875,0.1212523952126503,0,1 +85,0.08203125,0.0830078125,0.0009765625,0.0010638297872340426,1.0,1.0,0.00439453125,0.00439453125,0.4755859375,0,0,0.026889588683843613,0.4170253276824951,1.332261323928833,1.0432119369506836,0.5726045966148376,0.706871747970581,0.1806640625,0.12117022275924683,0,1 +86,0.0830078125,0.083984375,0.0009765625,0.0010649627263045794,1.0,1.0,0.00439453125,0.00439453125,0.4765625,0,0,0.02727585658431053,0.4178779721260071,1.3351037502288818,1.0426690578460693,0.5719970464706421,0.7069053649902344,0.18017578125,0.12132960557937622,0,1 +87,0.083984375,0.0849609375,0.0009765625,0.0010660980810234541,1.0,1.0,0.00439453125,0.00439453125,0.4775390625,0,0,0.027665497735142708,0.4186389148235321,1.3379387855529785,1.0431171655654907,0.5713894367218018,0.7067022323608398,0.1796875,0.12135989218950272,0,1 +88,0.0849609375,0.0859375,0.0009765625,0.0010672358591248667,1.0,1.0,0.00439453125,0.00439453125,0.4791259765625,0,0,0.028057074174284935,0.41906827688217163,1.3407649993896484,1.0447973012924194,0.5707818269729614,0.7062960863113403,0.1796875,0.1212473139166832,0,1 +89,0.0859375,0.0869140625,0.0009765625,0.0010683760683760685,1.0,1.0,0.00439453125,0.00439453125,0.4801025390625,0,0,0.02844832092523575,0.4194660782814026,1.343584418296814,1.046861171722412,0.5701742172241211,0.7057785391807556,0.177734375,0.12116910517215729,0,1 +90,0.0869140625,0.087890625,0.0009765625,0.0010695187165775401,1.0,1.0,0.00439453125,0.00439453125,0.48199462890625,0,0,0.02883915975689888,0.4200112819671631,1.346395492553711,1.0480602979660034,0.569566547870636,0.7054485082626343,0.17724609375,0.12129804491996765,0,1 +91,0.087890625,0.0888671875,0.0009765625,0.0010706638115631692,1.0,1.0,0.00439453125,0.00439453125,0.4840087890625,0,0,0.029230613261461258,0.42038267850875854,1.3492012023925781,1.0501621961593628,0.5689588785171509,0.7048708200454712,0.177734375,0.12144961953163147,0,1 +92,0.0888671875,0.08984375,0.0009765625,0.0010718113612004287,1.0,1.0,0.00439453125,0.00439453125,0.48480224609375,0,0,0.029627738520503044,0.4206237494945526,1.3519997596740723,1.0525145530700684,0.5683512687683105,0.704281210899353,0.17822265625,0.12146450579166412,0,1 +93,0.08984375,0.0908203125,0.0009765625,0.001072961373390558,1.0,1.0,0.00439453125,0.00439453125,0.48577880859375,0,0,0.030024517327547073,0.4208092987537384,1.3547909259796143,1.055159568786621,0.5677436590194702,0.7036378979682922,0.17724609375,0.12142512202262878,0,1 +94,0.0908203125,0.091796875,0.0009765625,0.0010741138560687433,1.0,1.0,0.00439453125,0.00439453125,0.48663330078125,0,0,0.03042096272110939,0.42111921310424805,1.3575735092163086,1.0570576190948486,0.5671359896659851,0.7031562328338623,0.177734375,0.12148211151361465,0,1 +95,0.091796875,0.0927734375,0.0009765625,0.001075268817204301,1.0,1.0,0.00439453125,0.00439453125,0.48779296875,0,0,0.030819568783044815,0.42116230726242065,1.3603506088256836,1.060456395149231,0.5665283203125,0.7023069858551025,0.17626953125,0.12139631807804108,0,1 +96,0.0927734375,0.09375,0.0009765625,0.001076426264800861,1.0,1.0,0.00439453125,0.00439453125,0.4886474609375,0,0,0.031222324818372726,0.4213438034057617,1.363120675086975,1.0628796815872192,0.5659207105636597,0.7016501426696777,0.177734375,0.12160228192806244,0,1 +97,0.09375,0.0947265625,0.0009765625,0.0010775862068965517,1.0,1.0,0.00439453125,0.00439453125,0.48944091796875,0,0,0.031627267599105835,0.4210410714149475,1.3658874034881592,1.067627191543579,0.5653129816055298,0.7004735469818115,0.1767578125,0.12165821343660355,0,1 +98,0.0947265625,0.095703125,0.0009765625,0.0010787486515641855,1.0,1.0,0.00439453125,0.00439453125,0.49041748046875,0,0,0.032031767070293427,0.42092007398605347,1.3686474561691284,1.071368932723999,0.5647052526473999,0.699568510055542,0.177734375,0.12165730446577072,0,1 +99,0.095703125,0.0966796875,0.0009765625,0.0010799136069114472,1.0,1.0,0.00439453125,0.00439453125,0.490234375,0,0,0.03243589401245117,0.42098963260650635,1.3713995218276978,1.0737972259521484,0.5640975832939148,0.6989363431930542,0.17822265625,0.12180028110742569,0,1 +100,0.0966796875,0.09765625,0.0009765625,0.001081081081081081,1.0,1.0,0.00439453125,0.00439453125,0.49139404296875,0,0,0.03283984959125519,0.4206179976463318,1.374146819114685,1.0786672830581665,0.5634899139404297,0.697770357131958,0.177734375,0.12165675312280655,0,1 +101,0.09765625,0.0986328125,0.0009765625,0.0010822510822510823,1.0,1.0,0.00439453125,0.00439453125,0.491943359375,0,0,0.03324317932128906,0.4208390712738037,1.376884937286377,1.0807204246520996,0.5628821849822998,0.6972494125366211,0.17724609375,0.12177717685699463,0,1 +102,0.0986328125,0.099609375,0.0009765625,0.0010834236186348862,1.0,1.0,0.00439453125,0.00439453125,0.4923095703125,0,0,0.033646389842033386,0.4207199811935425,1.379618763923645,1.0850008726119995,0.5622744560241699,0.6961489319801331,0.17724609375,0.12184790521860123,0,1 +103,0.099609375,0.1005859375,0.0009765625,0.0010845986984815619,1.0,1.0,0.00439453125,0.00439453125,0.4918212890625,0,0,0.03404904156923294,0.42057785391807556,1.3823468685150146,1.089599370956421,0.56166672706604,0.6949992775917053,0.177734375,0.12184472382068634,0,1 +104,0.1005859375,0.1015625,0.0009765625,0.0010857763300760044,1.0,1.0,0.00439453125,0.00439453125,0.49224853515625,0,0,0.03445114195346832,0.4205472469329834,1.3850681781768799,1.093181848526001,0.5610589981079102,0.6940658092498779,0.1767578125,0.12186944484710693,0,1 +105,0.1015625,0.1025390625,0.0009765625,0.0010869565217391304,1.0,1.0,0.00439453125,0.00439453125,0.4930419921875,0,0,0.03485281765460968,0.42030400037765503,1.3877842426300049,1.0980939865112305,0.5604512691497803,0.6928430795669556,0.17529296875,0.12183400988578796,0,1 +106,0.1025390625,0.103515625,0.0009765625,0.001088139281828074,1.0,1.0,0.00439453125,0.00439453125,0.49346923828125,0,0,0.03525383770465851,0.42047932744026184,1.390491247177124,1.1005114316940308,0.5598435401916504,0.6921918392181396,0.17578125,0.12200914323329926,0,1 +107,0.103515625,0.1044921875,0.0009765625,0.0010893246187363835,1.0,1.0,0.00439453125,0.00439453125,0.4937744140625,0,0,0.03565467894077301,0.4202152490615845,1.393194317817688,1.1051602363586426,0.5592358112335205,0.6909849047660828,0.1748046875,0.12211888283491135,0,1 +108,0.1044921875,0.10546875,0.0009765625,0.0010905125408942203,1.0,1.0,0.00439453125,0.00439453125,0.494140625,0,0,0.036054827272892,0.42043745517730713,1.3958877325057983,1.1072180271148682,0.5586280822753906,0.6904406547546387,0.17431640625,0.12228485196828842,0,1 +109,0.10546875,0.1064453125,0.0009765625,0.001091703056768559,1.0,1.0,0.00439453125,0.00439453125,0.49407958984375,0,0,0.03645481914281845,0.4199880361557007,1.3985769748687744,1.1127822399139404,0.5580203533172607,0.6890568733215332,0.173828125,0.1221279501914978,0,1 +110,0.1064453125,0.107421875,0.0009765625,0.001092896174863388,1.0,1.0,0.00439453125,0.00439453125,0.49444580078125,0,0,0.03685498237609863,0.4197959303855896,1.4012598991394043,1.11702561378479,0.5574126243591309,0.6879706382751465,0.17333984375,0.12217545509338379,0,1 +111,0.107421875,0.1083984375,0.0009765625,0.0010940919037199124,1.0,1.0,0.00439453125,0.00439453125,0.49481201171875,0,0,0.03725951537489891,0.41970932483673096,1.4039357900619507,1.1205363273620605,0.5568048357963562,0.6870373487472534,0.1728515625,0.12225133180618286,0,1 +112,0.1083984375,0.109375,0.0009765625,0.001095290251916758,1.0,1.0,0.00439453125,0.00439453125,0.49627685546875,0,0,0.03766826540231705,0.4196832478046417,1.4066044092178345,1.1238794326782227,0.5561970472335815,0.6861610412597656,0.17333984375,0.12256580591201782,0,1 +113,0.109375,0.1103515625,0.0009765625,0.0010964912280701754,1.0,1.0,0.00439453125,0.00439453125,0.49609375,0,0,0.03808349370956421,0.41948866844177246,1.4092676639556885,1.1279222965240479,0.5555893182754517,0.6851321458816528,0.173828125,0.12264348566532135,0,1 +114,0.1103515625,0.111328125,0.0009765625,0.0010976948408342481,1.0,1.0,0.00439453125,0.00439453125,0.4974365234375,0,0,0.038499023765325546,0.41957902908325195,1.4119222164154053,1.1302958726882935,0.5549815893173218,0.684518575668335,0.1748046875,0.12280599772930145,0,1 +115,0.111328125,0.1123046875,0.0009765625,0.001098901098901099,1.0,1.0,0.00439453125,0.00439453125,0.49688720703125,0,0,0.038914576172828674,0.41938984394073486,1.4145699739456177,1.134213924407959,0.5543738603591919,0.683570384979248,0.1748046875,0.122822605073452,0,1 +116,0.1123046875,0.11328125,0.0009765625,0.0011001100110011,1.0,1.0,0.00439453125,0.00439453125,0.49713134765625,0,0,0.039329834282398224,0.41921162605285645,1.417210578918457,1.1378569602966309,0.5537661910057068,0.682697594165802,0.1748046875,0.122840516269207,0,1 +117,0.11328125,0.1142578125,0.0009765625,0.0011013215859030838,1.0,1.0,0.00439453125,0.00439453125,0.497802734375,0,0,0.039744794368743896,0.41901350021362305,1.419844627380371,1.1415151357650757,0.5531585216522217,0.6817916631698608,0.17431640625,0.12288953363895416,0,1 +118,0.1142578125,0.115234375,0.0009765625,0.0011025358324145535,1.0,1.0,0.00439453125,0.00439453125,0.49810791015625,0,0,0.0401594415307045,0.41914016008377075,1.4224700927734375,1.143481969833374,0.5525507926940918,0.6812789440155029,0.1767578125,0.12329789251089096,0,1 +119,0.115234375,0.1162109375,0.0009765625,0.0011037527593818985,1.0,1.0,0.00439453125,0.00439453125,0.49859619140625,0,0,0.040574125945568085,0.41903480887413025,1.425087332725525,1.146306037902832,0.5519430637359619,0.6805772185325623,0.17626953125,0.12327273190021515,0,1 +120,0.1162109375,0.1171875,0.0009765625,0.0011049723756906078,1.0,1.0,0.00439453125,0.00439453125,0.49847412109375,0,0,0.040988579392433167,0.4189273715019226,1.427696943283081,1.1493487358093262,0.5513353943824768,0.6798112392425537,0.17578125,0.12353265285491943,0,1 +121,0.1171875,0.1181640625,0.0009765625,0.0011061946902654867,1.0,1.0,0.00439453125,0.00439453125,0.49945068359375,0,0,0.041402801871299744,0.4189078211784363,1.4302973747253418,1.151625394821167,0.5507276058197021,0.6792327761650085,0.17578125,0.12362250685691833,0,1 +122,0.1181640625,0.119140625,0.0009765625,0.0011074197120708748,1.0,1.0,0.00439453125,0.00439453125,0.499267578125,0,0,0.041816893965005875,0.4188620150089264,1.4328892230987549,1.1539900302886963,0.5501198768615723,0.6786458492279053,0.17529296875,0.12378645688295364,0,1 +123,0.119140625,0.1201171875,0.0009765625,0.0011086474501108647,1.0,1.0,0.00439453125,0.00439453125,0.49981689453125,0,0,0.04223080724477768,0.41889017820358276,1.435472011566162,1.1560215950012207,0.5495122671127319,0.6781500577926636,0.173828125,0.12387335300445557,0,1 +124,0.1201171875,0.12109375,0.0009765625,0.0011098779134295228,1.0,1.0,0.00439453125,0.00439453125,0.50054931640625,0,0,0.04264463111758232,0.41907596588134766,1.438044548034668,1.1571555137634277,0.5489044785499573,0.6778483390808105,0.173828125,0.12423596531152725,0,1 +125,0.12109375,0.1220703125,0.0009765625,0.0011111111111111111,1.0,1.0,0.00439453125,0.00439453125,0.500244140625,0,0,0.04305851459503174,0.41852694749832153,1.4406120777130127,1.1617631912231445,0.5482968091964722,0.6767444610595703,0.1728515625,0.12415773421525955,0,1 +126,0.1220703125,0.123046875,0.0009765625,0.0011123470522803114,1.0,1.0,0.00439453125,0.00439453125,0.5010986328125,0,0,0.043471671640872955,0.4189170300960541,1.4431674480438232,1.161794662475586,0.5476890802383423,0.6767122745513916,0.17431640625,0.12445423752069473,0,1 +127,0.123046875,0.1240234375,0.0009765625,0.0011135857461024498,1.0,1.0,0.00439453125,0.00439453125,0.50152587890625,0,0,0.043885111808776855,0.41844677925109863,1.4457170963287354,1.1658693552017212,0.5470813512802124,0.6757238507270813,0.173828125,0.12450364977121353,0,1 +128,0.1240234375,0.125,0.0009765625,0.0011148272017837235,1.0,1.0,0.00439453125,0.00439453125,0.50164794921875,0,0,0.044297896325588226,0.4185631573200226,1.448256015777588,1.1669576168060303,0.5464736223220825,0.6754441857337952,0.17333984375,0.12470583617687225,0,1 +129,0.125,0.1259765625,0.0009765625,0.0011160714285714285,1.0,1.0,0.00439453125,0.00439453125,0.5018310546875,0,0,0.0447106659412384,0.4185987114906311,1.4507849216461182,1.168494701385498,0.5458658933639526,0.675055980682373,0.17333984375,0.12490895390510559,0,1 +130,0.1259765625,0.126953125,0.0009765625,0.0011173184357541898,1.0,1.0,0.00439453125,0.00439453125,0.502685546875,0,0,0.04512330889701843,0.41881704330444336,1.4533030986785889,1.1690640449523926,0.5452581644058228,0.6748641133308411,0.17333984375,0.1253812611103058,0,1 +131,0.126953125,0.1279296875,0.0009765625,0.0011185682326621924,1.0,1.0,0.00439453125,0.00439453125,0.50262451171875,0,0,0.04553603753447533,0.41881710290908813,1.4558117389678955,1.1705725193023682,0.5446504354476929,0.6744898557662964,0.17431640625,0.12554244697093964,0,1 +132,0.1279296875,0.12890625,0.0009765625,0.0011198208286674132,1.0,1.0,0.00439453125,0.00439453125,0.50372314453125,0,0,0.045948609709739685,0.41891539096832275,1.458309531211853,1.171722412109375,0.5440427660942078,0.6742052435874939,0.17529296875,0.12577059864997864,0,1 +133,0.12890625,0.1298828125,0.0009765625,0.0011210762331838565,1.0,1.0,0.00439453125,0.00439453125,0.50372314453125,0,0,0.04636111855506897,0.4190583825111389,1.46079683303833,1.1725224256515503,0.5434350967407227,0.6740104556083679,0.17529296875,0.12596064805984497,0,1 +134,0.1298828125,0.130859375,0.0009765625,0.001122334455667789,1.0,1.0,0.00439453125,0.00439453125,0.5032958984375,0,0,0.046773623675107956,0.41895318031311035,1.4632751941680908,1.1745476722717285,0.5428274869918823,0.6735343337059021,0.17529296875,0.12605218589305878,0,1 +135,0.130859375,0.1318359375,0.0009765625,0.0011235955056179776,1.0,1.0,0.00439453125,0.00439453125,0.5040283203125,0,0,0.04718583822250366,0.41915416717529297,1.465742588043213,1.1749296188354492,0.5422197580337524,0.673416256904602,0.17578125,0.12635014951229095,0,1 +136,0.1318359375,0.1328125,0.0009765625,0.0011248593925759281,1.0,1.0,0.00439453125,0.00439453125,0.50445556640625,0,0,0.04759809747338295,0.41969433426856995,1.4681963920593262,1.1737456321716309,0.5416121482849121,0.6736880540847778,0.17529296875,0.12678015232086182,0,1 +137,0.1328125,0.1337890625,0.0009765625,0.0011261261261261261,1.0,1.0,0.00439453125,0.00439453125,0.5048828125,0,0,0.04801149293780327,0.41935864090919495,1.4706430435180664,1.1768503189086914,0.5410044193267822,0.6729519963264465,0.17578125,0.12681278586387634,0,1 +138,0.1337890625,0.134765625,0.0009765625,0.0011273957158962795,1.0,1.0,0.00439453125,0.00439453125,0.505615234375,0,0,0.04842442274093628,0.4201757311820984,1.4730738401412964,1.1740961074829102,0.5403968095779419,0.6735862493515015,0.17529296875,0.12730520963668823,0,1 +139,0.134765625,0.1357421875,0.0009765625,0.001128668171557562,1.0,1.0,0.00439453125,0.00439453125,0.50604248046875,0,0,0.04883810877799988,0.4200088083744049,1.4754962921142578,1.176241159439087,0.539789080619812,0.6730740070343018,0.17578125,0.1273745894432068,0,1 +140,0.1357421875,0.13671875,0.0009765625,0.0011299435028248588,1.0,1.0,0.00439453125,0.00439453125,0.50640869140625,0,0,0.04925194010138512,0.42003297805786133,1.477908730506897,1.177325963973999,0.5391814708709717,0.6728101968765259,0.1767578125,0.12753207981586456,0,1 +141,0.13671875,0.1376953125,0.0009765625,0.0011312217194570137,1.0,1.0,0.00439453125,0.00439453125,0.50701904296875,0,0,0.049665626138448715,0.420468807220459,1.480309247970581,1.1766114234924316,0.5385737419128418,0.672930121421814,0.17724609375,0.12812162935733795,0,1 +142,0.1376953125,0.138671875,0.0009765625,0.0011325028312570782,1.0,1.0,0.00439453125,0.00439453125,0.50787353515625,0,0,0.05007963627576828,0.42113280296325684,1.4826951026916504,1.1745994091033936,0.5379660725593567,0.6733977198600769,0.17822265625,0.12858372926712036,0,1 +143,0.138671875,0.1396484375,0.0009765625,0.0011337868480725624,1.0,1.0,0.00439453125,0.00439453125,0.5076904296875,0,0,0.05049420893192291,0.42129939794540405,1.4850702285766602,1.1749482154846191,0.5373584032058716,0.6733143329620361,0.1787109375,0.1287907361984253,0,1 +144,0.1396484375,0.140625,0.0009765625,0.0011350737797956867,1.0,1.0,0.00439453125,0.00439453125,0.50836181640625,0,0,0.050908803939819336,0.42187365889549255,1.4874317646026611,1.173416256904602,0.5367507338523865,0.6736792922019958,0.1787109375,0.12916289269924164,0,1 +145,0.140625,0.1416015625,0.0009765625,0.0011363636363636363,1.0,1.0,0.00439453125,0.00439453125,0.5081787109375,0,0,0.05132387578487396,0.42189517617225647,1.489783763885498,1.174383521080017,0.5361430644989014,0.6734555959701538,0.17822265625,0.12930899858474731,0,1 +146,0.1416015625,0.142578125,0.0009765625,0.0011376564277588168,1.0,1.0,0.00439453125,0.00439453125,0.509521484375,0,0,0.05173880606889725,0.42254775762557983,1.492121696472168,1.1722337007522583,0.5355353951454163,0.6739565134048462,0.17919921875,0.1298057734966278,0,1 +147,0.142578125,0.1435546875,0.0009765625,0.0011389521640091116,1.0,1.0,0.00439453125,0.00439453125,0.510498046875,0,0,0.052154313772916794,0.4230932593345642,1.4944462776184082,1.170662522315979,0.5349277257919312,0.6743295788764954,0.17919921875,0.13012251257896423,0,1 +148,0.1435546875,0.14453125,0.0009765625,0.0011402508551881414,1.0,1.0,0.00439453125,0.00439453125,0.5107421875,0,0,0.05257026106119156,0.4235720634460449,1.496758222579956,1.1695328950881958,0.5343199968338013,0.6745988726615906,0.1787109375,0.13043802976608276,0,1 +149,0.14453125,0.1455078125,0.0009765625,0.001141552511415525,1.0,1.0,0.00439453125,0.00439453125,0.51141357421875,0,0,0.052986592054367065,0.42401134967803955,1.4990577697753906,1.1682765483856201,0.5337123274803162,0.6748946309089661,0.17919921875,0.13074977695941925,0,1 +150,0.1455078125,0.146484375,0.0009765625,0.001142857142857143,1.0,1.0,0.00439453125,0.00439453125,0.51153564453125,0,0,0.053403258323669434,0.4243142306804657,1.5013456344604492,1.1678218841552734,0.533104658126831,0.6750039458274841,0.1796875,0.1310662031173706,0,1 +151,0.146484375,0.1474609375,0.0009765625,0.0011441647597254005,1.0,1.0,0.00439453125,0.00439453125,0.51220703125,0,0,0.05382012575864792,0.42489224672317505,1.5036202669143677,1.1660906076431274,0.5324969291687012,0.6754189133644104,0.18017578125,0.1314428746700287,0,1 +152,0.1474609375,0.1484375,0.0009765625,0.001145475372279496,1.0,1.0,0.00439453125,0.00439453125,0.5135498046875,0,0,0.05423750355839729,0.42596209049224854,1.5058784484863281,1.1620360612869263,0.5318893194198608,0.6763549447059631,0.18115234375,0.13217779994010925,0,1 +153,0.1484375,0.1494140625,0.0009765625,0.0011467889908256881,1.0,1.0,0.00439453125,0.00439453125,0.51361083984375,0,0,0.054655931890010834,0.4262908697128296,1.5081253051757812,1.1613317728042603,0.5312817096710205,0.6765304207801819,0.1806640625,0.13247087597846985,0,1 +154,0.1494140625,0.150390625,0.0009765625,0.001148105625717566,1.0,1.0,0.00439453125,0.00439453125,0.5145263671875,0,0,0.05507460981607437,0.4271364212036133,1.5103569030761719,1.1581344604492188,0.5306739807128906,0.6772918105125427,0.18115234375,0.1328561007976532,0,1 +155,0.150390625,0.1513671875,0.0009765625,0.0011494252873563218,1.0,1.0,0.00439453125,0.00439453125,0.51470947265625,0,0,0.05549410730600357,0.4277624487876892,1.512575387954712,1.1561353206634521,0.5300664901733398,0.6777689456939697,0.181640625,0.1333162486553192,0,1 +156,0.1513671875,0.15234375,0.0009765625,0.0011507479861910242,1.0,1.0,0.00439453125,0.00439453125,0.5150146484375,0,0,0.05591418966650963,0.42829614877700806,1.5147809982299805,1.1544086933135986,0.5294589400291443,0.6781736016273499,0.1826171875,0.1336284577846527,0,1 +157,0.15234375,0.1533203125,0.0009765625,0.001152073732718894,1.0,1.0,0.00439453125,0.00439453125,0.51544189453125,0,0,0.056334756314754486,0.42902809381484985,1.5169727802276611,1.1517966985702515,0.5288513898849487,0.6787861585617065,0.18359375,0.13412582874298096,0,1 +158,0.1533203125,0.154296875,0.0009765625,0.0011534025374855825,1.0,1.0,0.00439453125,0.00439453125,0.51629638671875,0,0,0.05675603449344635,0.43026480078697205,1.5191471576690674,1.1467329263687134,0.5282437801361084,0.6799764633178711,0.18359375,0.13480323553085327,0,1 +159,0.154296875,0.1552734375,0.0009765625,0.0011547344110854503,1.0,1.0,0.00439453125,0.00439453125,0.51617431640625,0,0,0.05717860907316208,0.4309658706188202,1.5213079452514648,1.144144058227539,0.5276362895965576,0.6805921792984009,0.1845703125,0.13520418107509613,0,1 +160,0.1552734375,0.15625,0.0009765625,0.0011560693641618498,1.0,1.0,0.00439453125,0.00439453125,0.51690673828125,0,0,0.05760186165571213,0.4312945306301117,1.5234577655792236,1.1434459686279297,0.5270287394523621,0.6807617545127869,0.185546875,0.135489821434021,0,1 +161,0.15625,0.1572265625,0.0009765625,0.0011574074074074073,1.0,1.0,0.00439453125,0.00439453125,0.5179443359375,0,0,0.05802540108561516,0.4323066174983978,1.5255918502807617,1.1394069194793701,0.5264211893081665,0.6817301511764526,0.18701171875,0.13601118326187134,0,1 +162,0.1572265625,0.158203125,0.0009765625,0.0011587485515643105,1.0,1.0,0.00439453125,0.00439453125,0.51806640625,0,0,0.058449991047382355,0.4330465793609619,1.5277118682861328,1.1365420818328857,0.5258136987686157,0.6824072599411011,0.18701171875,0.13642317056655884,0,1 +163,0.158203125,0.1591796875,0.0009765625,0.001160092807424594,1.0,1.0,0.00439453125,0.00439453125,0.5186767578125,0,0,0.05887533724308014,0.43433940410614014,1.5298149585723877,1.1314064264297485,0.5252061486244202,0.6836072206497192,0.1875,0.1372453272342682,0,1 +164,0.1591796875,0.16015625,0.0009765625,0.0011614401858304297,1.0,1.0,0.00439453125,0.00439453125,0.5191650390625,0,0,0.05930206924676895,0.4348596930503845,1.5319058895111084,1.1297138929367065,0.5245985984802246,0.6840213537216187,0.18896484375,0.13761237263679504,0,1 +165,0.16015625,0.1611328125,0.0009765625,0.0011627906976744186,1.0,1.0,0.00439453125,0.00439453125,0.5206298828125,0,0,0.05972931534051895,0.43622130155563354,1.5339791774749756,1.1239458322525024,0.5239911079406738,0.6853969097137451,0.18994140625,0.13829028606414795,0,1 +166,0.1611328125,0.162109375,0.0009765625,0.0011641443538998836,1.0,1.0,0.00439453125,0.00439453125,0.5211181640625,0,0,0.060158029198646545,0.43677642941474915,1.5360400676727295,1.1220638751983643,0.5233835577964783,0.6858710050582886,0.19140625,0.13868805766105652,0,1 +167,0.162109375,0.1630859375,0.0009765625,0.0011655011655011655,1.0,1.0,0.00439453125,0.00439453125,0.52178955078125,0,0,0.060587313026189804,0.43788397312164307,1.5380852222442627,1.1175956726074219,0.5227760672569275,0.686950147151947,0.19140625,0.1392432004213333,0,1 +168,0.1630859375,0.1640625,0.0009765625,0.0011668611435239206,1.0,1.0,0.00439453125,0.00439453125,0.52215576171875,0,0,0.06101778894662857,0.43867477774620056,1.540116786956787,1.1146020889282227,0.5221685171127319,0.6876755356788635,0.193359375,0.13966865837574005,0,1 +169,0.1640625,0.1650390625,0.0009765625,0.0011682242990654205,1.0,1.0,0.00439453125,0.00439453125,0.5234375,0,0,0.06144910305738449,0.4403069019317627,1.5421292781829834,1.1076220273971558,0.5215610265731812,0.6893434524536133,0.1923828125,0.1404929757118225,0,1 +170,0.1650390625,0.166015625,0.0009765625,0.0011695906432748538,1.0,1.0,0.00439453125,0.00439453125,0.5240478515625,0,0,0.06188222020864487,0.4408162236213684,1.5441302061080933,1.1058778762817383,0.5209536552429199,0.6897660493850708,0.1923828125,0.14085416495800018,0,1 +171,0.166015625,0.1669921875,0.0009765625,0.00117096018735363,1.0,1.0,0.00439453125,0.00439453125,0.52471923828125,0,0,0.06231587007641792,0.44225984811782837,1.5461132526397705,1.0997669696807861,0.5203461647033691,0.6912310123443604,0.1923828125,0.14158302545547485,0,1 +172,0.1669921875,0.16796875,0.0009765625,0.0011723329425556857,1.0,1.0,0.00439453125,0.00439453125,0.52587890625,0,0,0.06275111436843872,0.4433501958847046,1.548081398010254,1.0956156253814697,0.5197386741638184,0.6922280192375183,0.19384765625,0.14235825836658478,0,1 +173,0.16796875,0.1689453125,0.0009765625,0.0011737089201877935,1.0,1.0,0.00439453125,0.00439453125,0.5272216796875,0,0,0.06318756192922592,0.4442548155784607,1.5500357151031494,1.0920686721801758,0.5191311836242676,0.6930819153785706,0.19287109375,0.14287441968917847,0,1 +174,0.1689453125,0.169921875,0.0009765625,0.0011750881316098707,1.0,1.0,0.00439453125,0.00439453125,0.528076171875,0,0,0.06362500041723251,0.4455116391181946,1.551973581314087,1.086824655532837,0.5185238122940063,0.6943564414978027,0.1953125,0.143513023853302,0,1 +175,0.169921875,0.1708984375,0.0009765625,0.001176470588235294,1.0,1.0,0.00439453125,0.00439453125,0.52935791015625,0,0,0.06406383216381073,0.4468042850494385,1.5538952350616455,1.081393837928772,0.5179163217544556,0.6956765651702881,0.19677734375,0.14429429173469543,0,1 +176,0.1708984375,0.171875,0.0009765625,0.001177856301531213,1.0,1.0,0.00439453125,0.00439453125,0.53045654296875,0,0,0.06450411677360535,0.44785943627357483,1.5558022260665894,1.0771235227584839,0.5173088312149048,0.696710467338562,0.1962890625,0.14486579596996307,0,1 +177,0.171875,0.1728515625,0.0009765625,0.0011792452830188679,1.0,1.0,0.00439453125,0.00439453125,0.53094482421875,0,0,0.06495009362697601,0.4488833546638489,1.557694911956787,1.073114037513733,0.5167014002799988,0.6976889371871948,0.19677734375,0.14550082385540009,0,1 +178,0.1728515625,0.173828125,0.0009765625,0.0011806375442739079,1.0,1.0,0.00439453125,0.00445556640625,0.53204345703125,0,0,0.06539992243051529,0.4502224922180176,1.5595710277557373,1.0673941373825073,0.5160939693450928,0.6990743279457092,0.19677734375,0.1461285799741745,0,1 +179,0.173828125,0.1748046875,0.0009765625,0.001182033096926714,1.0,1.0,0.00445556640625,0.00445556640625,0.53375244140625,0,0,0.06585131585597992,0.45128339529037476,1.5614327192306519,1.0631297826766968,0.515486478805542,0.7001108527183533,0.197265625,0.146757572889328,0,1 +180,0.1748046875,0.17578125,0.0009765625,0.001183431952662722,1.0,1.0,0.00445556640625,0.00445556640625,0.53466796875,0,0,0.06630393862724304,0.4524536728858948,1.5632792711257935,1.0583381652832031,0.5148791074752808,0.7012854218482971,0.19677734375,0.14737744629383087,0,1 +181,0.17578125,0.1767578125,0.0009765625,0.001184834123222749,1.0,1.0,0.00445556640625,0.00445556640625,0.53509521484375,0,0,0.066757932305336,0.45400720834732056,1.5651085376739502,1.0517446994781494,0.51427161693573,0.7028828859329224,0.197265625,0.1482730507850647,0,1 +182,0.1767578125,0.177734375,0.0009765625,0.0011862396204033216,1.0,1.0,0.00445556640625,0.00445556640625,0.53582763671875,0,0,0.06721373647451401,0.45524948835372925,1.5669221878051758,1.0465023517608643,0.5136642456054688,0.7041553258895874,0.19775390625,0.1488848626613617,0,1 +183,0.177734375,0.1787109375,0.0009765625,0.0011876484560570072,1.0,1.0,0.00445556640625,0.00445556640625,0.536376953125,0,0,0.06767100095748901,0.4561585783958435,1.5687227249145508,1.0429584980010986,0.5130568742752075,0.7050203084945679,0.19921875,0.14942874014377594,0,1 +184,0.1787109375,0.1796875,0.0009765625,0.0011890606420927466,1.0,1.0,0.00445556640625,0.00445556640625,0.53759765625,0,0,0.06812931597232819,0.4578564465045929,1.570505142211914,1.0356544256210327,0.5124494433403015,0.7067904472351074,0.19970703125,0.15033674240112305,0,1 +185,0.1796875,0.1806640625,0.0009765625,0.0011904761904761906,1.0,1.0,0.00445556640625,0.00445556640625,0.53839111328125,0,0,0.06858999282121658,0.45885276794433594,1.5722742080688477,1.031874656677246,0.5118420124053955,0.7076977491378784,0.2001953125,0.15100887417793274,0,1 +186,0.1806640625,0.181640625,0.0009765625,0.0011918951132300357,1.0,1.0,0.00445556640625,0.00445556640625,0.5396728515625,0,0,0.06905201077461243,0.4603971242904663,1.5740264654159546,1.0253987312316895,0.5112345814704895,0.7092529535293579,0.20068359375,0.15194067358970642,0,1 +187,0.181640625,0.1826171875,0.0009765625,0.0011933174224343676,1.0,1.0,0.00445556640625,0.00445556640625,0.5411376953125,0,0,0.06951583921909332,0.4619654417037964,1.5757620334625244,1.018843412399292,0.5106271505355835,0.710838258266449,0.20263671875,0.15287816524505615,0,1 +188,0.1826171875,0.18359375,0.0009765625,0.0011947431302270011,1.0,1.0,0.00445556640625,0.00445556640625,0.54217529296875,0,0,0.06998151540756226,0.46306687593460083,1.5774834156036377,1.0143849849700928,0.5100197196006775,0.7119221687316895,0.2041015625,0.15351811051368713,0,1 +189,0.18359375,0.1845703125,0.0009765625,0.0011961722488038277,1.0,1.0,0.00445556640625,0.00445556640625,0.5430908203125,0,0,0.07044848799705505,0.46453163027763367,1.5791889429092407,1.0082703828811646,0.5094122886657715,0.7133911848068237,0.2060546875,0.1544293761253357,0,1 +190,0.1845703125,0.185546875,0.0009765625,0.0011976047904191617,1.0,1.0,0.00445556640625,0.00445556640625,0.5445556640625,0,0,0.07091718912124634,0.46579408645629883,1.5808793306350708,1.002878189086914,0.5088049173355103,0.7146960496902466,0.20751953125,0.1551043838262558,0,1 +191,0.185546875,0.1865234375,0.0009765625,0.001199040767386091,1.0,1.0,0.00445556640625,0.00445556640625,0.545654296875,0,0,0.07138737291097641,0.4669954180717468,1.5825554132461548,0.997946560382843,0.5081974864006042,0.7158951163291931,0.208984375,0.15577879548072815,0,1 +192,0.1865234375,0.1875,0.0009765625,0.0012004801920768306,1.0,1.0,0.00445556640625,0.00445556640625,0.54669189453125,0,0,0.0718589797616005,0.46888554096221924,1.584213376045227,0.990135669708252,0.5075900554656982,0.7177736759185791,0.21240234375,0.157079815864563,0,1 +193,0.1875,0.1884765625,0.0009765625,0.001201923076923077,1.0,1.0,0.00445556640625,0.00445556640625,0.5478515625,0,0,0.07233282178640366,0.47039860486984253,1.5858553647994995,0.9837209582328796,0.5069826245307922,0.7193294763565063,0.21240234375,0.15793663263320923,0,1 +194,0.1884765625,0.189453125,0.0009765625,0.0012033694344163659,1.0,1.0,0.00445556640625,0.00445556640625,0.5489501953125,0,0,0.07280845940113068,0.4714571237564087,1.5874838829040527,0.9794442057609558,0.5063751935958862,0.7203457355499268,0.21337890625,0.15860870480537415,0,1 +195,0.189453125,0.1904296875,0.0009765625,0.0012048192771084338,1.0,1.0,0.00445556640625,0.00445556640625,0.54925537109375,0,0,0.07328535616397858,0.472703218460083,1.5890982151031494,0.9742670655250549,0.505767822265625,0.7215931415557861,0.21240234375,0.15926259756088257,0,1 +196,0.1904296875,0.19140625,0.0009765625,0.0012062726176115801,1.0,1.0,0.00445556640625,0.00445556640625,0.55035400390625,0,0,0.07376372814178467,0.47400233149528503,1.590698003768921,0.9689586758613586,0.505160391330719,0.722858190536499,0.21240234375,0.1601763218641281,0,1 +197,0.19140625,0.1923828125,0.0009765625,0.0012077294685990338,1.0,1.0,0.00445556640625,0.00445556640625,0.5517578125,0,0,0.07424364238977432,0.4755403995513916,1.5922819375991821,0.962421178817749,0.504552960395813,0.7244336009025574,0.2138671875,0.16104638576507568,0,1 +198,0.1923828125,0.193359375,0.0009765625,0.0012091898428053204,1.0,1.0,0.00445556640625,0.00445556640625,0.552978515625,0,0,0.07472538203001022,0.4770454168319702,1.5938502550125122,0.956113338470459,0.5039455890655518,0.7259454727172852,0.2158203125,0.1620795577764511,0,1 +199,0.193359375,0.1943359375,0.0009765625,0.0012106537530266344,1.0,1.0,0.00445556640625,0.0045166015625,0.55413818359375,0,0,0.07520891726016998,0.4786972403526306,1.5954022407531738,0.9489990472793579,0.5033382773399353,0.7276656627655029,0.216796875,0.16309824585914612,0,1 +200,0.1943359375,0.1953125,0.0009765625,0.0012121212121212121,1.0,1.0,0.0045166015625,0.0045166015625,0.55511474609375,0,0,0.07569442689418793,0.47990691661834717,1.596940517425537,0.9441120624542236,0.5027310848236084,0.7288473844528198,0.2177734375,0.16392681002616882,0,1 +201,0.1953125,0.1962890625,0.0009765625,0.0012135922330097086,1.0,1.0,0.0045166015625,0.0045166015625,0.5565185546875,0,0,0.07618138194084167,0.4810948371887207,1.598465085029602,0.9391658306121826,0.5021238327026367,0.7300384044647217,0.2177734375,0.1646309196949005,0,1 +202,0.1962890625,0.197265625,0.0009765625,0.001215066828675577,1.0,1.0,0.0045166015625,0.0045166015625,0.5577392578125,0,0,0.07666975259780884,0.4819611608982086,1.5999782085418701,0.9358019232749939,0.501516580581665,0.7308570146560669,0.21875,0.1652563512325287,0,1 +203,0.197265625,0.1982421875,0.0009765625,0.0012165450121654502,1.0,1.0,0.0045166015625,0.0045166015625,0.55865478515625,0,0,0.07715915888547897,0.483991801738739,1.601473093032837,0.9271250367164612,0.5009093284606934,0.7329761981964111,0.22119140625,0.1666010469198227,0,1 +204,0.1982421875,0.19921875,0.0009765625,0.001218026796589525,1.0,1.0,0.0045166015625,0.0045166015625,0.5599365234375,0,0,0.0776509940624237,0.4861992597579956,1.6029491424560547,0.9178662300109863,0.5003021359443665,0.7352257966995239,0.2236328125,0.16816546022891998,0,1 +205,0.19921875,0.2001953125,0.0009765625,0.0012195121951219512,1.0,1.0,0.0045166015625,0.0045166015625,0.56121826171875,0,0,0.07814548164606094,0.48717188835144043,1.6044135093688965,0.9140920639038086,0.4996950328350067,0.7361454963684082,0.22509765625,0.16890788078308105,0,1 +206,0.2001953125,0.201171875,0.0009765625,0.001221001221001221,1.0,1.0,0.0045166015625,0.0045166015625,0.5621337890625,0,0,0.0786411389708519,0.488529771566391,1.6058635711669922,0.9084241986274719,0.49908798933029175,0.7375402450561523,0.2255859375,0.16985616087913513,0,1 +207,0.201171875,0.2021484375,0.0009765625,0.0012224938875305623,1.0,1.0,0.0045166015625,0.0045166015625,0.56298828125,0,0,0.07913842797279358,0.48970353603363037,1.6073005199432373,0.9035860300064087,0.49848097562789917,0.7387222051620483,0.2255859375,0.17061445116996765,0,1 +208,0.2021484375,0.203125,0.0009765625,0.0012239902080783353,1.0,1.0,0.0045166015625,0.0045166015625,0.5635986328125,0,0,0.07963712513446808,0.49071601033210754,1.6087250709533691,0.8994204998016357,0.4978739023208618,0.7397443056106567,0.2255859375,0.17135082185268402,0,1 +209,0.203125,0.2041015625,0.0009765625,0.0012254901960784314,1.0,1.0,0.0045166015625,0.0045166015625,0.56475830078125,0,0,0.08013705164194107,0.49302127957344055,1.610130786895752,0.8895140886306763,0.49726688861846924,0.742159903049469,0.22607421875,0.17304478585720062,0,1 +210,0.2041015625,0.205078125,0.0009765625,0.001226993865030675,1.0,1.0,0.0045166015625,0.0045166015625,0.56610107421875,0,0,0.08064083009958267,0.4943898320198059,1.6115224361419678,0.883756160736084,0.49665993452072144,0.7435739040374756,0.2275390625,0.17399950325489044,0,1 +211,0.205078125,0.2060546875,0.0009765625,0.0012285012285012285,1.0,1.0,0.0045166015625,0.0045166015625,0.56640625,0,0,0.08114668726921082,0.49536988139152527,1.6129024028778076,0.8798757791519165,0.49605295062065125,0.7445181608200073,0.228515625,0.17472444474697113,0,1 +212,0.2060546875,0.20703125,0.0009765625,0.0012300123001230013,1.0,1.0,0.0045166015625,0.00457763671875,0.5672607421875,0,0,0.08165373653173447,0.4966944754123688,1.6142685413360596,0.8743883371353149,0.4954460859298706,0.7458668351173401,0.23046875,0.17575910687446594,0,1 +213,0.20703125,0.2080078125,0.0009765625,0.0012315270935960591,1.0,1.0,0.00457763671875,0.00469970703125,0.56854248046875,0,0,0.08216241002082825,0.49843427538871765,1.61561918258667,0.866884171962738,0.4948393702507019,0.7477085590362549,0.232421875,0.1769770085811615,0,1 +214,0.2080078125,0.208984375,0.0009765625,0.0012330456226880395,1.0,1.0,0.00469970703125,0.00482177734375,0.56915283203125,0,0,0.08267320692539215,0.4992719292640686,1.6169586181640625,0.8636609315872192,0.49423283338546753,0.7484996318817139,0.2333984375,0.17766013741493225,0,1 +215,0.208984375,0.2099609375,0.0009765625,0.0012345679012345679,1.0,1.0,0.00482177734375,0.00482177734375,0.5704345703125,0,0,0.08318503201007843,0.5014007091522217,1.6182810068130493,0.8549214601516724,0.49362632632255554,0.7506486177444458,0.236328125,0.1795315146446228,0,1 +216,0.2099609375,0.2109375,0.0009765625,0.0012360939431396785,1.0,1.0,0.00482177734375,0.00482177734375,0.5711669921875,0,0,0.08369946479797363,0.5026222467422485,1.6195902824401855,0.8496965765953064,0.49301987886428833,0.7519146203994751,0.23828125,0.18035843968391418,0,1 +217,0.2109375,0.2119140625,0.0009765625,0.0012376237623762376,1.0,1.0,0.00482177734375,0.00482177734375,0.57257080078125,0,0,0.08421538770198822,0.5039190649986267,1.6208864450454712,0.8442920446395874,0.4924134612083435,0.7532517910003662,0.23876953125,0.18140685558319092,0,1 +218,0.2119140625,0.212890625,0.0009765625,0.0012391573729863693,1.0,1.0,0.00482177734375,0.00482177734375,0.57318115234375,0,0,0.08473291993141174,0.5049903988838196,1.6221705675125122,0.8399860858917236,0.49180710315704346,0.7543126344680786,0.2392578125,0.18230164051055908,0,1 +219,0.212890625,0.2138671875,0.0009765625,0.0012406947890818859,1.0,1.0,0.00482177734375,0.0048828125,0.5740966796875,0,0,0.08525175601243973,0.5068565607070923,1.623438835144043,0.8320122361183167,0.4912008047103882,0.7562737464904785,0.2392578125,0.18384242057800293,0,1 +220,0.2138671875,0.21484375,0.0009765625,0.0012422360248447205,1.0,1.0,0.0048828125,0.00494384765625,0.57476806640625,0,0,0.08577288687229156,0.5076300501823425,1.6246964931488037,0.8289657831192017,0.49059465527534485,0.7570282220840454,0.23974609375,0.18465372920036316,0,1 +221,0.21484375,0.2158203125,0.0009765625,0.0012437810945273632,1.0,1.0,0.00494384765625,0.0050048828125,0.5758056640625,0,0,0.0862949788570404,0.5093598961830139,1.6259393692016602,0.8217050433158875,0.48998862504959106,0.7588164806365967,0.2412109375,0.18620294332504272,0,1 +222,0.2158203125,0.216796875,0.0009765625,0.0012453300124533001,1.0,1.0,0.0050048828125,0.0050048828125,0.5762939453125,0,0,0.08681920170783997,0.5106911659240723,1.6271687746047974,0.8160122036933899,0.489382803440094,0.7602274417877197,0.24169921875,0.18725883960723877,0,1 +223,0.216796875,0.2177734375,0.0009765625,0.0012468827930174563,1.0,1.0,0.0050048828125,0.00506591796875,0.57684326171875,0,0,0.08734506368637085,0.5118679404258728,1.6283860206604004,0.8111310005187988,0.488777220249176,0.7614308595657349,0.24169921875,0.188287615776062,0,1 +224,0.2177734375,0.21875,0.0009765625,0.0012484394506866417,1.0,1.0,0.00506591796875,0.00506591796875,0.57757568359375,0,0,0.08787238597869873,0.5132108926773071,1.6295900344848633,0.8054311871528625,0.48817166686058044,0.7628422975540161,0.2421875,0.18941399455070496,0,1 +225,0.21875,0.2197265625,0.0009765625,0.00125,1.0,1.0,0.00506591796875,0.00518798828125,0.5782470703125,0,0,0.08840136229991913,0.5141644477844238,1.6307828426361084,0.801547646522522,0.4875662922859192,0.7638023495674133,0.2431640625,0.19037827849388123,0,1 +226,0.2197265625,0.220703125,0.0009765625,0.0012515644555694619,1.0,1.0,0.00518798828125,0.00531005859375,0.57891845703125,0,0,0.08893153071403503,0.5156264305114746,1.6319620609283447,0.7953610420227051,0.4869611859321594,0.7653413414955139,0.244140625,0.19164592027664185,0,1 +227,0.220703125,0.2216796875,0.0009765625,0.0012531328320802004,1.0,1.0,0.00531005859375,0.00537109375,0.57965087890625,0,0,0.0894635021686554,0.5174258351325989,1.6331264972686768,0.7879675030708313,0.48635613918304443,0.7671672701835632,0.2470703125,0.19355341792106628,0,1 +228,0.2216796875,0.22265625,0.0009765625,0.0012547051442910915,1.0,1.0,0.00537109375,0.00537109375,0.58013916015625,0,0,0.08999771624803543,0.518586277961731,1.6342787742614746,0.7831088900566101,0.4857512414455414,0.7683515548706055,0.2470703125,0.19467660784721375,0,1 +229,0.22265625,0.2236328125,0.0009765625,0.001256281407035176,1.0,1.0,0.00537109375,0.00543212890625,0.5814208984375,0,0,0.09053336828947067,0.5197259783744812,1.6354191303253174,0.7782680988311768,0.4851463735103607,0.7695331573486328,0.2470703125,0.19563689827919006,0,1 +230,0.2236328125,0.224609375,0.0009765625,0.0012578616352201257,1.0,1.0,0.00543212890625,0.00543212890625,0.5823974609375,0,0,0.09107044339179993,0.5208725929260254,1.6365476846694946,0.7735479474067688,0.4845416843891144,0.7706924676895142,0.25,0.19679811596870422,0,1 +231,0.224609375,0.2255859375,0.0009765625,0.0012594458438287153,1.0,1.0,0.00543212890625,0.0054931640625,0.58294677734375,0,0,0.0916089341044426,0.5219565033912659,1.6376644372940063,0.7689188718795776,0.48393720388412476,0.7718179821968079,0.2509765625,0.19791385531425476,0,1 +232,0.2255859375,0.2265625,0.0009765625,0.0012610340479192938,1.0,1.0,0.0054931640625,0.005615234375,0.5838623046875,0,0,0.0921487882733345,0.523175835609436,1.6387690305709839,0.7638623714447021,0.4833327531814575,0.7730638980865479,0.251953125,0.1992478221654892,0,1 +233,0.2265625,0.2275390625,0.0009765625,0.0012626262626262627,1.0,1.0,0.005615234375,0.0057373046875,0.5845947265625,0,0,0.09269015491008759,0.52449631690979,1.6398611068725586,0.7582203149795532,0.4827285408973694,0.7744548320770264,0.25390625,0.20063437521457672,0,1 +234,0.2275390625,0.228515625,0.0009765625,0.0012642225031605564,1.0,1.0,0.0057373046875,0.00579833984375,0.58538818359375,0,0,0.09323317557573318,0.52587890625,1.6409401893615723,0.7522557377815247,0.4821245074272156,0.7759110927581787,0.25537109375,0.20204855501651764,0,1 +235,0.228515625,0.2294921875,0.0009765625,0.0012658227848101266,1.0,1.0,0.00579833984375,0.00579833984375,0.5858154296875,0,0,0.09377792477607727,0.5269288420677185,1.642007827758789,0.7478260397911072,0.4815206229686737,0.7769902944564819,0.25537109375,0.20321175456047058,0,1 +236,0.2294921875,0.23046875,0.0009765625,0.0012674271229404308,1.0,1.0,0.00579833984375,0.005859375,0.587158203125,0,0,0.09432397782802582,0.5279675722122192,1.6430644989013672,0.7436531186103821,0.48091673851013184,0.7780177593231201,0.25732421875,0.20451992750167847,0,1 +237,0.23046875,0.2314453125,0.0009765625,0.0012690355329949238,1.0,1.0,0.005859375,0.00592041015625,0.58795166015625,0,0,0.09487134963274002,0.5293562412261963,1.6441082954406738,0.7375046610832214,0.4803130030632019,0.7795398235321045,0.25732421875,0.20588572323322296,0,1 +238,0.2314453125,0.232421875,0.0009765625,0.0012706480304955528,1.0,1.0,0.00592041015625,0.00604248046875,0.58892822265625,0,0,0.09542044997215271,0.5303707122802734,1.6451411247253418,0.7335662841796875,0.47970929741859436,0.780523955821991,0.259765625,0.20727267861366272,0,1 +239,0.232421875,0.2333984375,0.0009765625,0.001272264631043257,1.0,1.0,0.00604248046875,0.0062255859375,0.58978271484375,0,0,0.09597082436084747,0.5316480994224548,1.646161675453186,0.728095293045044,0.479106068611145,0.7818871736526489,0.26123046875,0.20882943272590637,0,1 +240,0.2333984375,0.234375,0.0009765625,0.0012738853503184713,1.0,1.0,0.0062255859375,0.00634765625,0.59027099609375,0,0,0.09652280807495117,0.5328947305679321,1.6471703052520752,0.7228177785873413,0.47850316762924194,0.7832050323486328,0.26318359375,0.2102496325969696,0,1 +241,0.234375,0.2353515625,0.0009765625,0.0012755102040816326,1.0,1.0,0.00634765625,0.00653076171875,0.59124755859375,0,0,0.09707636386156082,0.5337021350860596,1.6481688022613525,0.719397783279419,0.47790053486824036,0.7840516567230225,0.2646484375,0.21125422418117523,0,1 +242,0.2353515625,0.236328125,0.0009765625,0.001277139208173691,1.0,1.0,0.00653076171875,0.0067138671875,0.5916748046875,0,0,0.09763094037771225,0.5348368883132935,1.6491557359695435,0.7145004272460938,0.4772983193397522,0.7852696180343628,0.2705078125,0.212680384516716,0,1 +243,0.236328125,0.2373046875,0.0009765625,0.0012787723785166241,1.0,1.0,0.0067138671875,0.00689697265625,0.59222412109375,0,0,0.09818693995475769,0.5357763767242432,1.6501319408416748,0.7104828357696533,0.4766964316368103,0.7862744331359863,0.27001953125,0.21383416652679443,0,1 +244,0.2373046875,0.23828125,0.0009765625,0.0012804097311139564,1.0,1.0,0.00689697265625,0.0069580078125,0.5927734375,0,0,0.09874412417411804,0.5369202494621277,1.6510967016220093,0.7054672837257385,0.47609463334083557,0.7875183820724487,0.27099609375,0.21521450579166412,0,1 +245,0.23828125,0.2392578125,0.0009765625,0.001282051282051282,1.0,1.0,0.0069580078125,0.007080078125,0.59332275390625,0,0,0.0993027538061142,0.5382965207099915,1.652048945426941,0.6994107961654663,0.47549301385879517,0.7890300750732422,0.2734375,0.21703235805034637,0,1 +246,0.2392578125,0.240234375,0.0009765625,0.0012836970474967907,1.0,1.0,0.007080078125,0.00726318359375,0.59368896484375,0,0,0.09986311942338943,0.5390623807907104,1.6529912948608398,0.6962469816207886,0.4748918414115906,0.7898157835006714,0.2744140625,0.21812483668327332,0,1 +247,0.240234375,0.2412109375,0.0009765625,0.0012853470437017994,1.0,1.0,0.00726318359375,0.0074462890625,0.594482421875,0,0,0.10042445361614227,0.5402778387069702,1.6539218425750732,0.6908022165298462,0.47429102659225464,0.791181743144989,0.275390625,0.21967679262161255,0,1 +248,0.2412109375,0.2421875,0.0009765625,0.001287001287001287,1.0,1.0,0.0074462890625,0.00750732421875,0.59539794921875,0,0,0.10098733752965927,0.5410134196281433,1.6548428535461426,0.6877620220184326,0.47369062900543213,0.7919436693191528,0.27783203125,0.2207895815372467,1,1 +249,0.2421875,0.2431640625,0.0009765625,0.001288659793814433,1.0,1.0,0.00750732421875,0.0076904296875,0.59539794921875,0,0,0.10155114531517029,0.54180908203125,1.6557538509368896,0.6843215227127075,0.47309044003486633,0.7928090691566467,0.2783203125,0.22188472747802734,0,1 +250,0.2431640625,0.244140625,0.0009765625,0.0012903225806451613,1.0,1.0,0.0076904296875,0.00787353515625,0.59600830078125,0,0,0.10211597383022308,0.5428904891014099,1.656653642654419,0.6794811487197876,0.4724906086921692,0.7940051555633545,0.27978515625,0.22334274649620056,0,1 +251,0.244140625,0.2451171875,0.0009765625,0.0012919896640826874,1.0,1.0,0.00787353515625,0.0079345703125,0.59674072265625,0,0,0.10268216580152512,0.5443547964096069,1.657541036605835,0.6733217835426331,0.4718910753726959,0.7955626249313354,0.28466796875,0.2257547378540039,0,1 +252,0.2451171875,0.24609375,0.0009765625,0.00129366106080207,1.0,1.0,0.0079345703125,0.0081787109375,0.596923828125,0,0,0.10325022041797638,0.5451244115829468,1.6584186553955078,0.6700838208198547,0.4712918996810913,0.7963694930076599,0.2861328125,0.22705423831939697,0,1 +253,0.24609375,0.2470703125,0.0009765625,0.0012953367875647669,1.0,1.0,0.0081787109375,0.00830078125,0.59759521484375,0,0,0.10381926596164703,0.5461790561676025,1.6592854261398315,0.6653900146484375,0.4706931412220001,0.7975370287895203,0.28759765625,0.2285778820514679,0,1 +254,0.2470703125,0.248046875,0.0009765625,0.0012970168612191958,1.0,1.0,0.00830078125,0.00836181640625,0.59844970703125,0,0,0.10438965260982513,0.5469269752502441,1.660142421722412,0.662095308303833,0.4700947105884552,0.7983561754226685,0.28759765625,0.2297484278678894,0,1 +255,0.248046875,0.2490234375,0.0009765625,0.0012987012987012987,1.0,1.0,0.00836181640625,0.00848388671875,0.5987548828125,0,0,0.10496101528406143,0.5476052165031433,1.6609902381896973,0.6592331528663635,0.4694964587688446,0.7990676164627075,0.2890625,0.23092374205589294,0,1 +256,0.2490234375,0.25,0.0009765625,0.0013003901170351106,1.0,1.0,0.00848388671875,0.00860595703125,0.5989990234375,0,0,0.10553434491157532,0.5486902594566345,1.6618268489837646,0.65425044298172,0.46889856457710266,0.8003101348876953,0.2900390625,0.2324933111667633,0,1 +257,0.25,0.2509765625,0.0009765625,0.0013020833333333333,1.0,1.0,0.00860595703125,0.00909423828125,0.59954833984375,0,0,0.10610908269882202,0.5498095750808716,1.662652611732483,0.6493748426437378,0.46830105781555176,0.8015322685241699,0.29345703125,0.23455454409122467,0,1 +258,0.2509765625,0.251953125,0.0009765625,0.001303780964797914,1.0,1.0,0.00909423828125,0.00933837890625,0.599853515625,0,0,0.10668526589870453,0.5504764318466187,1.6634690761566162,0.6463134288787842,0.4677042067050934,0.80229252576828,0.294921875,0.23557601869106293,0,1 +259,0.251953125,0.2529296875,0.0009765625,0.0013054830287206266,1.0,1.0,0.00933837890625,0.00946044921875,0.60052490234375,0,0,0.10726229846477509,0.5512577295303345,1.6642756462097168,0.642844557762146,0.4671076834201813,0.8031624555587769,0.29833984375,0.23687492311000824,0,1 +260,0.2529296875,0.25390625,0.0009765625,0.00130718954248366,1.0,1.0,0.00946044921875,0.00982666015625,0.6009521484375,0,0,0.10784033685922623,0.5520820617675781,1.6650723218917847,0.6391355991363525,0.466511607170105,0.8040898442268372,0.2998046875,0.23834212124347687,1,1 +261,0.25390625,0.2548828125,0.0009765625,0.0013089005235602095,1.0,1.0,0.00982666015625,0.01019287109375,0.60162353515625,0,0,0.10841945558786392,0.5528465509414673,1.665859341621399,0.6356453895568848,0.46591609716415405,0.8049639463424683,0.30224609375,0.23976503312587738,1,1 +262,0.2548828125,0.255859375,0.0009765625,0.001310615989515072,1.0,1.0,0.01019287109375,0.0106201171875,0.6021728515625,0,0,0.10899955034255981,0.5536282062530518,1.6666367053985596,0.6320662498474121,0.4653211832046509,0.80586838722229,0.302734375,0.24108855426311493,1,1 +263,0.255859375,0.2568359375,0.0009765625,0.0013123359580052493,1.0,1.0,0.0106201171875,0.01068115234375,0.60308837890625,0,0,0.10958066582679749,0.5546115636825562,1.6674039363861084,0.6280980110168457,0.46472662687301636,0.8068944215774536,0.30712890625,0.24317920207977295,1,1 +264,0.2568359375,0.2578125,0.0009765625,0.001314060446780552,1.0,1.0,0.01068115234375,0.0108642578125,0.6038818359375,0,0,0.11016305536031723,0.5555910468101501,1.6681606769561768,0.6234334707260132,0.46413230895996094,0.8080903887748718,0.30859375,0.24485228955745697,1,1 +265,0.2578125,0.2587890625,0.0009765625,0.0013157894736842105,1.0,1.0,0.0108642578125,0.01129150390625,0.60400390625,0,0,0.11074671149253845,0.5562188625335693,1.6689084768295288,0.6206918358802795,0.46353858709335327,0.8087794780731201,0.310546875,0.24609977006912231,1,1 +266,0.2587890625,0.259765625,0.0009765625,0.0013175230566534915,1.0,1.0,0.01129150390625,0.0115966796875,0.60455322265625,0,0,0.11133119463920593,0.5569144487380981,1.6696467399597168,0.6173268556594849,0.46294528245925903,0.8096331357955933,0.3115234375,0.2474135458469391,1,1 +267,0.259765625,0.2607421875,0.0009765625,0.0013192612137203166,1.0,1.0,0.0115966796875,0.01202392578125,0.60455322265625,0,0,0.11191722750663757,0.5576345920562744,1.6703758239746094,0.614121675491333,0.46235278248786926,0.8104525208473206,0.31298828125,0.24896320700645447,1,1 +268,0.2607421875,0.26171875,0.0009765625,0.001321003963011889,1.0,1.0,0.01202392578125,0.01239013671875,0.605224609375,0,0,0.11250488460063934,0.5584972500801086,1.6710951328277588,0.6102573275566101,0.4617610573768616,0.8114451169967651,0.314453125,0.25077345967292786,1,1 +269,0.26171875,0.2626953125,0.0009765625,0.0013227513227513227,1.0,1.0,0.01239013671875,0.01275634765625,0.60601806640625,0,0,0.11309367418289185,0.559524416923523,1.6718041896820068,0.6058710217475891,0.4611697793006897,0.8125985264778137,0.31640625,0.253211110830307,1,1 +270,0.2626953125,0.263671875,0.0009765625,0.0013245033112582781,1.0,1.0,0.01275634765625,0.0130615234375,0.6060791015625,0,0,0.11368383467197418,0.5601965188980103,1.67250394821167,0.6027869582176208,0.46057918667793274,0.813376784324646,0.318359375,0.2546220123767853,1,1 +271,0.263671875,0.2646484375,0.0009765625,0.001326259946949602,1.0,1.0,0.0130615234375,0.013427734375,0.6063232421875,0,0,0.11427487432956696,0.5608228445053101,1.6731948852539062,0.5999169945716858,0.4599895477294922,0.8141154050827026,0.31982421875,0.2560008466243744,1,1 +272,0.2646484375,0.265625,0.0009765625,0.0013280212483399733,1.0,1.0,0.013427734375,0.01361083984375,0.606689453125,0,0,0.11486675590276718,0.5615270137786865,1.6738766431808472,0.5964668989181519,0.4594005346298218,0.814995288848877,0.32080078125,0.2574513256549835,1,1 +273,0.265625,0.2666015625,0.0009765625,0.0013297872340425532,1.0,1.0,0.01361083984375,0.013916015625,0.60693359375,0,0,0.11545956134796143,0.5620920658111572,1.6745495796203613,0.5939602851867676,0.45881223678588867,0.8156377077102661,0.32275390625,0.2588481605052948,1,1 +274,0.2666015625,0.267578125,0.0009765625,0.0013315579227696406,1.0,1.0,0.013916015625,0.01434326171875,0.6072998046875,0,0,0.11605311930179596,0.5627784132957458,1.6752135753631592,0.5906375646591187,0.4582247734069824,0.816478431224823,0.32421875,0.260285347700119,1,1 +275,0.267578125,0.2685546875,0.0009765625,0.0013333333333333333,1.0,1.0,0.01434326171875,0.01495361328125,0.60784912109375,0,0,0.11664760112762451,0.5636128187179565,1.675868034362793,0.5868837833404541,0.4576382637023926,0.8174561262130737,0.326171875,0.2623822093009949,1,1 +276,0.2685546875,0.26953125,0.0009765625,0.0013351134846461949,1.0,1.0,0.01495361328125,0.0152587890625,0.60797119140625,0,0,0.11724318563938141,0.5641490817070007,1.676513910293579,0.5842978954315186,0.4570525884628296,0.8181127905845642,0.32763671875,0.26360243558883667,1,1 +277,0.26953125,0.2705078125,0.0009765625,0.001336898395721925,1.0,1.0,0.0152587890625,0.01556396484375,0.60797119140625,0,0,0.11783947050571442,0.5647127628326416,1.6771512031555176,0.581554114818573,0.4564675986766815,0.8188034296035767,0.32958984375,0.2648836374282837,1,1 +278,0.2705078125,0.271484375,0.0009765625,0.0013386880856760374,1.0,1.0,0.01556396484375,0.01580810546875,0.60791015625,0,0,0.1184365302324295,0.5652797818183899,1.6777799129486084,0.5789141058921814,0.45588311553001404,0.8194838762283325,0.330078125,0.2662883698940277,1,1 +279,0.271484375,0.2724609375,0.0009765625,0.0013404825737265416,1.0,1.0,0.01580810546875,0.01605224609375,0.6085205078125,0,0,0.11903434246778488,0.5658089518547058,1.6784001588821411,0.5764338374137878,0.4552991986274719,0.8201213479042053,0.33154296875,0.2676347494125366,1,1 +280,0.2724609375,0.2734375,0.0009765625,0.0013422818791946308,1.0,1.0,0.01605224609375,0.016357421875,0.60894775390625,0,0,0.11963286250829697,0.5663416385650635,1.6790120601654053,0.5739291906356812,0.45471590757369995,0.8207658529281616,0.3330078125,0.26906290650367737,1,1 +281,0.2734375,0.2744140625,0.0009765625,0.0013440860215053765,1.0,1.0,0.016357421875,0.01690673828125,0.609375,0,0,0.12023209780454636,0.5670701265335083,1.679614782333374,0.5704566240310669,0.4541334807872772,0.8216562271118164,0.33642578125,0.27112269401550293,1,1 +282,0.2744140625,0.275390625,0.0009765625,0.0013458950201884253,1.0,1.0,0.01690673828125,0.01739501953125,0.610107421875,0,0,0.12083231657743454,0.567797064781189,1.6802082061767578,0.5668954849243164,0.4535519480705261,0.8225725293159485,0.33740234375,0.27294886112213135,1,1 +283,0.275390625,0.2763671875,0.0009765625,0.0013477088948787063,1.0,1.0,0.01739501953125,0.01824951171875,0.6103515625,0,0,0.12143350392580032,0.5682511329650879,1.6807940006256104,0.5648771524429321,0.4529714584350586,0.8230885863304138,0.33837890625,0.2742553949356079,1,1 +284,0.2763671875,0.27734375,0.0009765625,0.001349527665317139,1.0,1.0,0.01824951171875,0.01898193359375,0.61077880859375,0,0,0.12203530967235565,0.568799614906311,1.6813709735870361,0.5620421767234802,0.452392041683197,0.8238152265548706,0.3388671875,0.27557632327079773,1,1 +285,0.27734375,0.2783203125,0.0009765625,0.0013513513513513514,1.0,1.0,0.01898193359375,0.01959228515625,0.61083984375,0,0,0.12263785302639008,0.5692687034606934,1.681939959526062,0.5598735809326172,0.4518137574195862,0.8243836164474487,0.33984375,0.27705633640289307,1,1 +286,0.2783203125,0.279296875,0.0009765625,0.0013531799729364006,1.0,1.0,0.01959228515625,0.02056884765625,0.61138916015625,0,0,0.12324102967977524,0.5697032809257507,1.682500958442688,0.5577873587608337,0.4512367248535156,0.82491135597229,0.34130859375,0.27834460139274597,1,1 +287,0.279296875,0.2802734375,0.0009765625,0.0013550135501355014,1.0,1.0,0.02056884765625,0.02105712890625,0.611572265625,0,0,0.12384479492902756,0.5706417560577393,1.6830523014068604,0.5537242889404297,0.4506608247756958,0.8259783983230591,0.34326171875,0.2812402844429016,1,1 +288,0.2802734375,0.28125,0.0009765625,0.0013568521031207597,1.0,1.0,0.02105712890625,0.021728515625,0.611572265625,0,0,0.12444983422756195,0.5713052749633789,1.6835951805114746,0.5505203604698181,0.4500860273838043,0.826815128326416,0.345703125,0.2832285761833191,1,1 +289,0.28125,0.2822265625,0.0009765625,0.001358695652173913,1.0,1.0,0.021728515625,0.0225830078125,0.61151123046875,0,0,0.12505576014518738,0.571701169013977,1.6841299533843994,0.5485705137252808,0.44951266050338745,0.8273124694824219,0.34619140625,0.28450921177864075,1,1 +290,0.2822265625,0.283203125,0.0009765625,0.0013605442176870747,1.0,1.0,0.0225830078125,0.02349853515625,0.61163330078125,0,0,0.12566223740577698,0.5721150636672974,1.6846568584442139,0.5464154481887817,0.44894060492515564,0.8278569579124451,0.34814453125,0.2857046127319336,1,1 +291,0.283203125,0.2841796875,0.0009765625,0.0013623978201634877,1.0,1.0,0.02349853515625,0.02410888671875,0.6119384765625,0,0,0.12626928091049194,0.5726292133331299,1.6851756572723389,0.5438038110733032,0.4483696222305298,0.828533411026001,0.3505859375,0.2872755527496338,1,1 +292,0.2841796875,0.28515625,0.0009765625,0.001364256480218281,1.0,1.0,0.02410888671875,0.02447509765625,0.6116943359375,0,0,0.12687700986862183,0.5728511810302734,1.6856871843338013,0.5427682399749756,0.44779959321022034,0.8287973403930664,0.3515625,0.2881377041339874,1,1 +293,0.28515625,0.2861328125,0.0009765625,0.001366120218579235,1.0,1.0,0.02447509765625,0.0252685546875,0.61248779296875,0,0,0.12748503684997559,0.5737243890762329,1.6861894130706787,0.5384893417358398,0.44723084568977356,0.8298841714859009,0.35498046875,0.2910339832305908,1,1 +294,0.2861328125,0.287109375,0.0009765625,0.0013679890560875513,1.0,1.0,0.0252685546875,0.02606201171875,0.6126708984375,0,0,0.12809425592422485,0.5740315914154053,1.6866843700408936,0.5370370149612427,0.44666382670402527,0.8302611112594604,0.35595703125,0.292136549949646,1,1 +295,0.287109375,0.2880859375,0.0009765625,0.0013698630136986301,1.0,1.0,0.02606201171875,0.026611328125,0.6129150390625,0,0,0.12870392203330994,0.5744957327842712,1.6871711015701294,0.5347351431846619,0.44609808921813965,0.8308486938476562,0.35546875,0.2937657833099365,1,1 +296,0.2880859375,0.2890625,0.0009765625,0.0013717421124828531,1.0,1.0,0.026611328125,0.02734375,0.6131591796875,0,0,0.12931419909000397,0.5749726295471191,1.6876499652862549,0.5323278903961182,0.44553351402282715,0.831473708152771,0.3564453125,0.2953786551952362,1,1 +297,0.2890625,0.2900390625,0.0009765625,0.0013736263736263737,1.0,1.0,0.02734375,0.0283203125,0.6129150390625,0,0,0.12992528080940247,0.5752784013748169,1.6881213188171387,0.5306023955345154,0.4449703097343445,0.8318971395492554,0.357421875,0.29645103216171265,1,1 +298,0.2900390625,0.291015625,0.0009765625,0.001375515818431912,1.0,1.0,0.0283203125,0.028564453125,0.61322021484375,0,0,0.1305370032787323,0.575883150100708,1.6885844469070435,0.5278415679931641,0.4444081783294678,0.8326069116592407,0.359375,0.29863983392715454,1,1 +299,0.291015625,0.2919921875,0.0009765625,0.0013774104683195593,1.0,1.0,0.028564453125,0.0291748046875,0.6131591796875,0,0,0.13114959001541138,0.5764753222465515,1.6890392303466797,0.5249860286712646,0.44384726881980896,0.833327054977417,0.36279296875,0.3007941246032715,1,1 +300,0.2919921875,0.29296875,0.0009765625,0.001379310344827586,1.0,1.0,0.0291748046875,0.03009033203125,0.61334228515625,0,0,0.13176299631595612,0.5768072605133057,1.6894867420196533,0.5233688354492188,0.4432876408100128,0.8337386846542358,0.365234375,0.30222225189208984,1,1 +301,0.29296875,0.2939453125,0.0009765625,0.0013812154696132596,1.0,1.0,0.03009033203125,0.03106689453125,0.613525390625,0,0,0.13237684965133667,0.5771031379699707,1.6899268627166748,0.5218567252159119,0.4427297115325928,0.8341240882873535,0.3662109375,0.3033229112625122,1,1 +302,0.2939453125,0.294921875,0.0009765625,0.0013831258644536654,1.0,1.0,0.03106689453125,0.03173828125,0.61376953125,0,0,0.13299112021923065,0.577386736869812,1.6903595924377441,0.520234227180481,0.4421728253364563,0.8345323801040649,0.3681640625,0.30456259846687317,1,1 +303,0.294921875,0.2958984375,0.0009765625,0.0013850415512465374,1.0,1.0,0.03173828125,0.03271484375,0.6138916015625,0,0,0.13360576331615448,0.5779532194137573,1.690784215927124,0.5172194838523865,0.4416176676750183,0.8352950215339661,0.369140625,0.3067857623100281,1,1 +304,0.2958984375,0.296875,0.0009765625,0.0013869625520110957,1.0,1.0,0.03271484375,0.03375244140625,0.6141357421875,0,0,0.13422121107578278,0.5781817436218262,1.6912016868591309,0.5160039663314819,0.4410642087459564,0.8356075286865234,0.37109375,0.3077274262905121,1,1 +305,0.296875,0.2978515625,0.0009765625,0.001388888888888889,1.0,1.0,0.03375244140625,0.03485107421875,0.61444091796875,0,0,0.13483697175979614,0.5788481831550598,1.6916108131408691,0.5130128860473633,0.44051292538642883,0.8363752365112305,0.376953125,0.31060791015625,1,1 +306,0.2978515625,0.298828125,0.0009765625,0.0013908205841446453,1.0,1.0,0.03485107421875,0.0355224609375,0.6142578125,0,0,0.13545364141464233,0.5791496634483337,1.6920127868652344,0.511439323425293,0.43996331095695496,0.8367708921432495,0.37890625,0.31204935908317566,1,1 +307,0.298828125,0.2998046875,0.0009765625,0.001392757660167131,1.0,1.0,0.0355224609375,0.03564453125,0.61468505859375,0,0,0.13607074320316315,0.5795818567276001,1.6924071311950684,0.5092790126800537,0.4394146502017975,0.8373326659202576,0.380859375,0.31372618675231934,1,1 +308,0.2998046875,0.30078125,0.0009765625,0.001394700139470014,1.0,1.0,0.03564453125,0.0364990234375,0.614990234375,0,0,0.1366884559392929,0.5798206329345703,1.6927942037582397,0.5079561471939087,0.43886688351631165,0.837672770023346,0.3818359375,0.31491854786872864,1,1 +309,0.30078125,0.3017578125,0.0009765625,0.0013966480446927375,1.0,1.0,0.0364990234375,0.0369873046875,0.61529541015625,0,0,0.13730648159980774,0.5801661014556885,1.6931740045547485,0.5060826539993286,0.4383206367492676,0.8381490707397461,0.38427734375,0.3165053725242615,1,1 +310,0.3017578125,0.302734375,0.0009765625,0.0013986013986013986,1.0,1.0,0.0369873046875,0.03778076171875,0.61517333984375,0,0,0.13792499899864197,0.5805429220199585,1.6935465335845947,0.5041985511779785,0.4377760887145996,0.8386286497116089,0.384765625,0.3182324767112732,1,1 +311,0.302734375,0.3037109375,0.0009765625,0.0014005602240896359,1.0,1.0,0.03778076171875,0.038818359375,0.61529541015625,0,0,0.13854405283927917,0.5809097290039062,1.6939113140106201,0.502294659614563,0.43723350763320923,0.8391188383102417,0.3876953125,0.3200123608112335,1,1 +312,0.3037109375,0.3046875,0.0009765625,0.001402524544179523,1.0,1.0,0.038818359375,0.0399169921875,0.6153564453125,0,0,0.13916361331939697,0.5813264846801758,1.6942689418792725,0.5001010298728943,0.4366922378540039,0.8396800756454468,0.388671875,0.3219592571258545,1,1 +313,0.3046875,0.3056640625,0.0009765625,0.0014044943820224719,1.0,1.0,0.0399169921875,0.0408935546875,0.615478515625,0,0,0.13978375494480133,0.5816091299057007,1.6946191787719727,0.49839481711387634,0.4361528158187866,0.8401129245758057,0.390625,0.3234032988548279,1,1 +314,0.3056640625,0.306640625,0.0009765625,0.0014064697609001407,1.0,1.0,0.0408935546875,0.04180908203125,0.6158447265625,0,0,0.14040429890155792,0.5817571878433228,1.6949628591537476,0.4975132942199707,0.43561500310897827,0.8403313159942627,0.3916015625,0.3243101239204407,1,1 +315,0.306640625,0.3076171875,0.0009765625,0.0014084507042253522,1.0,1.0,0.04180908203125,0.04278564453125,0.61572265625,0,0,0.14102505147457123,0.5820510983467102,1.6952993869781494,0.49579495191574097,0.43507903814315796,0.8407706022262573,0.39306640625,0.3256969451904297,1,1 +316,0.3076171875,0.30859375,0.0009765625,0.0014104372355430183,1.0,1.0,0.04278564453125,0.0438232421875,0.61578369140625,0,0,0.14164620637893677,0.5823538899421692,1.6956288814544678,0.49415168166160583,0.4345446825027466,0.8411829471588135,0.39697265625,0.32732877135276794,1,1 +317,0.30859375,0.3095703125,0.0009765625,0.0014124293785310734,1.0,1.0,0.0438232421875,0.04486083984375,0.615966796875,0,0,0.14226779341697693,0.5826765894889832,1.695950984954834,0.4924318492412567,0.4340129494667053,0.841607928276062,0.3994140625,0.3290802240371704,1,1 +318,0.3095703125,0.310546875,0.0009765625,0.0014144271570014145,1.0,1.0,0.04486083984375,0.04595947265625,0.6160888671875,0,0,0.1428898572921753,0.5830111503601074,1.6962660551071167,0.49059873819351196,0.43348345160484314,0.8420665860176086,0.4013671875,0.3308134973049164,1,1 +319,0.310546875,0.3115234375,0.0009765625,0.00141643059490085,1.0,1.0,0.04595947265625,0.0467529296875,0.6160888671875,0,0,0.14351236820220947,0.5831410884857178,1.6965744495391846,0.48964712023735046,0.4329557716846466,0.8423089981079102,0.4013671875,0.331743061542511,1,1 +320,0.3115234375,0.3125,0.0009765625,0.0014184397163120568,1.0,1.0,0.0467529296875,0.04833984375,0.61590576171875,0,0,0.14413507282733917,0.5834307670593262,1.6968756914138794,0.4879210591316223,0.4324305057525635,0.8427385091781616,0.40283203125,0.33339723944664,1,1 +321,0.3125,0.3134765625,0.0009765625,0.0014204545454545455,1.0,1.0,0.04833984375,0.0494384765625,0.6158447265625,0,0,0.1447581946849823,0.5836988091468811,1.6971700191497803,0.4863220453262329,0.4319077730178833,0.8431425094604492,0.40380859375,0.3349943459033966,1,1 +322,0.3134765625,0.314453125,0.0009765625,0.001422475106685633,1.0,1.0,0.0494384765625,0.0511474609375,0.61627197265625,0,0,0.14538168907165527,0.5839166641235352,1.6974575519561768,0.48501303791999817,0.43138718605041504,0.8434679508209229,0.4052734375,0.33628547191619873,1,1 +323,0.314453125,0.3154296875,0.0009765625,0.0014245014245014246,1.0,1.0,0.0511474609375,0.05218505859375,0.61590576171875,0,0,0.14600548148155212,0.5844078063964844,1.697737693786621,0.4828428626060486,0.430868923664093,0.8440158367156982,0.40771484375,0.3390030264854431,1,1 +324,0.3154296875,0.31640625,0.0009765625,0.0014265335235378032,1.0,1.0,0.05218505859375,0.05316162109375,0.61627197265625,0,0,0.14662998914718628,0.5846685767173767,1.698010802268982,0.4813840985298157,0.4303531050682068,0.8443707227706909,0.41162109375,0.3406355082988739,1,1 +325,0.31640625,0.3173828125,0.0009765625,0.0014285714285714286,1.0,1.0,0.05316162109375,0.05426025390625,0.6163330078125,0,0,0.14725486934185028,0.5848726034164429,1.698277235031128,0.4801926016807556,0.42983922362327576,0.8446604013442993,0.41455078125,0.3420249819755554,1,1 +326,0.3173828125,0.318359375,0.0009765625,0.001430615164520744,1.0,1.0,0.05426025390625,0.055419921875,0.61676025390625,0,0,0.14788003265857697,0.5851233005523682,1.6985368728637695,0.4787328541278839,0.42932742834091187,0.8450156450271606,0.416015625,0.34363651275634766,1,1 +327,0.318359375,0.3193359375,0.0009765625,0.0014326647564469914,1.0,1.0,0.055419921875,0.05670166015625,0.61669921875,0,0,0.1485055685043335,0.5853116512298584,1.6987898349761963,0.47747430205345154,0.42881834506988525,0.8453332185745239,0.41796875,0.3449317216873169,1,1 +328,0.3193359375,0.3203125,0.0009765625,0.0014347202295552368,1.0,1.0,0.05670166015625,0.05804443359375,0.61700439453125,0,0,0.14913135766983032,0.5855861902236938,1.6990357637405396,0.4756193161010742,0.4283115267753601,0.8457921147346497,0.4208984375,0.3466874659061432,1,1 +329,0.3203125,0.3212890625,0.0009765625,0.0014367816091954023,1.0,1.0,0.05804443359375,0.059326171875,0.61700439453125,0,0,0.14975756406784058,0.5856330394744873,1.6992754936218262,0.47514525055885315,0.4278073310852051,0.8459084630012512,0.42138671875,0.34750545024871826,1,1 +330,0.3212890625,0.322265625,0.0009765625,0.0014388489208633094,1.0,1.0,0.059326171875,0.06060791015625,0.6173095703125,0,0,0.15038380026817322,0.5859966278076172,1.6995080709457397,0.4731745421886444,0.4273054599761963,0.8463938236236572,0.42333984375,0.34983643889427185,1,1 +331,0.322265625,0.3232421875,0.0009765625,0.001440922190201729,1.0,1.0,0.06060791015625,0.06170654296875,0.61761474609375,0,0,0.15101058781147003,0.5861787796020508,1.699734091758728,0.4719286859035492,0.42680615186691284,0.8467065095901489,0.42333984375,0.3512169122695923,1,1 +332,0.3232421875,0.32421875,0.0009765625,0.001443001443001443,1.0,1.0,0.06170654296875,0.063232421875,0.61761474609375,0,0,0.15163762867450714,0.5863447189331055,1.699953556060791,0.47088342905044556,0.4263089597225189,0.8469715118408203,0.4228515625,0.3525157868862152,1,1 +333,0.32421875,0.3251953125,0.0009765625,0.001445086705202312,1.0,1.0,0.063232421875,0.0640869140625,0.61761474609375,0,0,0.15226492285728455,0.5864489674568176,1.7001668214797974,0.470045268535614,0.42581427097320557,0.8471770286560059,0.4248046875,0.35349780321121216,1,1 +334,0.3251953125,0.326171875,0.0009765625,0.001447178002894356,1.0,1.0,0.0640869140625,0.06536865234375,0.61785888671875,0,0,0.1528923511505127,0.5866390466690063,1.7003734111785889,0.4686834514141083,0.42532193660736084,0.8475226759910583,0.42626953125,0.3550494313240051,1,1 +335,0.326171875,0.3271484375,0.0009765625,0.0014492753623188406,1.0,1.0,0.06536865234375,0.06640625,0.617919921875,0,0,0.15352004766464233,0.5868521928787231,1.7005733251571655,0.4673900902271271,0.42483147978782654,0.8478608131408691,0.4287109375,0.3567184507846832,1,1 +336,0.3271484375,0.328125,0.0009765625,0.001451378809869376,1.0,1.0,0.06640625,0.06793212890625,0.61810302734375,0,0,0.15414807200431824,0.5871734619140625,1.7007664442062378,0.46604955196380615,0.42434364557266235,0.848200798034668,0.43017578125,0.3589378595352173,1,1 +337,0.328125,0.3291015625,0.0009765625,0.0014534883720930232,1.0,1.0,0.06793212890625,0.06890869140625,0.6181640625,0,0,0.15477657318115234,0.5873835682868958,1.7009528875350952,0.4644450545310974,0.423858106136322,0.8486008644104004,0.43310546875,0.3606995642185211,1,1 +338,0.3291015625,0.330078125,0.0009765625,0.001455604075691412,1.0,1.0,0.06890869140625,0.0709228515625,0.618408203125,0,0,0.15540535748004913,0.587526798248291,1.7011330127716064,0.46358782052993774,0.42337530851364136,0.8488158583641052,0.43310546875,0.36197227239608765,1,1 +339,0.330078125,0.3310546875,0.0009765625,0.0014577259475218659,1.0,1.0,0.0709228515625,0.0723876953125,0.61865234375,0,0,0.15603435039520264,0.5876154899597168,1.7013068199157715,0.46246808767318726,0.42289549112319946,0.849095344543457,0.43359375,0.3631187677383423,1,1 +340,0.3310546875,0.33203125,0.0009765625,0.00145985401459854,1.0,1.0,0.0723876953125,0.07366943359375,0.6190185546875,0,0,0.15666347742080688,0.58774733543396,1.7014741897583008,0.46154719591140747,0.4224191904067993,0.8493297100067139,0.43505859375,0.3645066022872925,1,1 +341,0.33203125,0.3330078125,0.0009765625,0.0014619883040935672,1.0,1.0,0.07366943359375,0.07513427734375,0.6190185546875,0,0,0.15729279816150665,0.5878017544746399,1.7016355991363525,0.4609544277191162,0.42194539308547974,0.8494783639907837,0.43701171875,0.36541521549224854,1,1 +342,0.3330078125,0.333984375,0.0009765625,0.0014641288433382138,1.0,1.0,0.07513427734375,0.07666015625,0.618896484375,0,0,0.1579221934080124,0.5881695747375488,1.7017899751663208,0.45893359184265137,0.42147406935691833,0.8500053882598877,0.43798828125,0.3682134747505188,1,1 +343,0.333984375,0.3349609375,0.0009765625,0.001466275659824047,1.0,1.0,0.07666015625,0.0780029296875,0.6192626953125,0,0,0.1585521250963211,0.5883744955062866,1.7019377946853638,0.4575415849685669,0.4210054576396942,0.850356936454773,0.43994140625,0.37017908692359924,1,1 +344,0.3349609375,0.3359375,0.0009765625,0.0014684287812041115,1.0,1.0,0.0780029296875,0.07952880859375,0.6192626953125,0,0,0.1591823697090149,0.5885933637619019,1.7020790576934814,0.456557959318161,0.42053940892219543,0.8506070971488953,0.44189453125,0.37191975116729736,1,1 +345,0.3359375,0.3369140625,0.0009765625,0.0014705882352941176,1.0,1.0,0.07952880859375,0.08123779296875,0.61932373046875,0,0,0.15981292724609375,0.5885214805603027,1.7022147178649902,0.45613107085227966,0.4200759530067444,0.8507175445556641,0.44189453125,0.37228813767433167,1,1 +346,0.3369140625,0.337890625,0.0009765625,0.0014727540500736377,1.0,1.0,0.08123779296875,0.0826416015625,0.6195068359375,0,0,0.16044339537620544,0.5887893438339233,1.7023435831069946,0.45467936992645264,0.41961580514907837,0.8510876893997192,0.443359375,0.3744237720966339,1,1 +347,0.337890625,0.3388671875,0.0009765625,0.0014749262536873156,1.0,1.0,0.0826416015625,0.08447265625,0.61932373046875,0,0,0.16107423603534698,0.5888106822967529,1.7024664878845215,0.4541042149066925,0.41915878653526306,0.8512416481971741,0.44384765625,0.3752742409706116,1,1 +348,0.3388671875,0.33984375,0.0009765625,0.0014771048744460858,1.0,1.0,0.08447265625,0.08563232421875,0.61932373046875,0,0,0.1617051064968109,0.5891234874725342,1.702582836151123,0.45246776938438416,0.41870468854904175,0.8516680002212524,0.44580078125,0.3779439628124237,1,1 +349,0.33984375,0.3408203125,0.0009765625,0.0014792899408284023,1.0,1.0,0.08563232421875,0.08734130859375,0.6195068359375,0,0,0.16233645379543304,0.5891578197479248,1.702692985534668,0.45172637701034546,0.41825300455093384,0.8518564701080322,0.4462890625,0.3789024353027344,1,1 +350,0.3408203125,0.341796875,0.0009765625,0.0014814814814814814,1.0,1.0,0.08734130859375,0.0894775390625,0.61932373046875,0,0,0.16296783089637756,0.5891984701156616,1.7027971744537354,0.4510994851589203,0.41780516505241394,0.852027416229248,0.44921875,0.3799082040786743,1,1 +351,0.341796875,0.3427734375,0.0009765625,0.001483679525222552,1.0,1.0,0.0894775390625,0.09039306640625,0.619140625,0,0,0.16359929740428925,0.589351236820221,1.702895164489746,0.449843168258667,0.4173601269721985,0.8523521423339844,0.44970703125,0.381693571805954,1,1 +352,0.3427734375,0.34375,0.0009765625,0.0014858841010401188,1.0,1.0,0.09039306640625,0.0919189453125,0.61932373046875,0,0,0.16423097252845764,0.5893611311912537,1.7029871940612793,0.4493311047554016,0.4169173240661621,0.8524907231330872,0.4501953125,0.38252389430999756,1,1 +353,0.34375,0.3447265625,0.0009765625,0.001488095238095238,1.0,1.0,0.0919189453125,0.09381103515625,0.61920166015625,0,0,0.16486266255378723,0.5894448757171631,1.7030730247497559,0.44824445247650146,0.41647809743881226,0.8527750968933105,0.45263671875,0.3839274048805237,1,1 +354,0.3447265625,0.345703125,0.0009765625,0.0014903129657228018,1.0,1.0,0.09381103515625,0.0955810546875,0.61895751953125,0,0,0.16549450159072876,0.5895062685012817,1.7031528949737549,0.4475989043712616,0.41604214906692505,0.8529436588287354,0.45263671875,0.3851318955421448,1,1 +355,0.345703125,0.3466796875,0.0009765625,0.0014925373134328358,1.0,1.0,0.0955810546875,0.09722900390625,0.61907958984375,0,0,0.16612640023231506,0.5896662473678589,1.7032265663146973,0.44642728567123413,0.4156089425086975,0.8532519340515137,0.455078125,0.38699620962142944,1,1 +356,0.3466796875,0.34765625,0.0009765625,0.0014947683109118087,1.0,1.0,0.09722900390625,0.09991455078125,0.619140625,0,0,0.16675855219364166,0.5897647142410278,1.7032941579818726,0.44569289684295654,0.41517961025238037,0.8534493446350098,0.45703125,0.38847339153289795,1,1 +357,0.34765625,0.3486328125,0.0009765625,0.0014970059880239522,1.0,1.0,0.09991455078125,0.1015625,0.619140625,0,0,0.167390838265419,0.5898022651672363,1.7033556699752808,0.4448651969432831,0.4147542715072632,0.853664755821228,0.45947265625,0.3896438479423523,1,1 +358,0.3486328125,0.349609375,0.0009765625,0.0014992503748125937,1.0,1.0,0.1015625,0.10357666015625,0.61920166015625,0,0,0.16802319884300232,0.5898064374923706,1.7034114599227905,0.44447195529937744,0.4143330454826355,0.8537702560424805,0.46044921875,0.39055949449539185,1,1 +359,0.349609375,0.3505859375,0.0009765625,0.0015015015015015015,1.0,1.0,0.10357666015625,0.10504150390625,0.618896484375,0,0,0.16865557432174683,0.5899182558059692,1.7034610509872437,0.4432940185070038,0.4139147698879242,0.8540850281715393,0.46044921875,0.39223167300224304,1,1 +360,0.3505859375,0.3515625,0.0009765625,0.0015037593984962407,1.0,1.0,0.10504150390625,0.107421875,0.61907958984375,0,0,0.16928808391094208,0.5898771286010742,1.703505039215088,0.4429314434528351,0.41350048780441284,0.8541854023933411,0.4609375,0.39300337433815,1,1 +361,0.3515625,0.3525390625,0.0009765625,0.0015060240963855422,1.0,1.0,0.107421875,0.10931396484375,0.6192626953125,0,0,0.16992056369781494,0.5902971029281616,1.7035419940948486,0.4412344694137573,0.4130902886390686,0.8546348810195923,0.46533203125,0.39649975299835205,1,1 +362,0.3525390625,0.353515625,0.0009765625,0.0015082956259426848,1.0,1.0,0.10931396484375,0.111083984375,0.61895751953125,0,0,0.17055365443229675,0.5903756618499756,1.703573226928711,0.44042325019836426,0.41268330812454224,0.8548460006713867,0.46435546875,0.3980470299720764,1,1 +363,0.353515625,0.3544921875,0.0009765625,0.0015105740181268882,1.0,1.0,0.111083984375,0.11322021484375,0.6192626953125,0,0,0.17118686437606812,0.5903475880622864,1.7035987377166748,0.4396665096282959,0.41228026151657104,0.8550459146499634,0.46533203125,0.3989604115486145,1,1 +364,0.3544921875,0.35546875,0.0009765625,0.0015128593040847202,1.0,1.0,0.11322021484375,0.114990234375,0.619384765625,0,0,0.1718200296163559,0.5903650522232056,1.7036182880401611,0.43920958042144775,0.41188064217567444,0.8551687002182007,0.466796875,0.3998779058456421,1,1 +365,0.35546875,0.3564453125,0.0009765625,0.0015151515151515152,1.0,1.0,0.114990234375,0.1173095703125,0.61968994140625,0,0,0.17245322465896606,0.5903657674789429,1.703632116317749,0.438632607460022,0.4114847779273987,0.855338454246521,0.46728515625,0.40102213621139526,1,1 +366,0.3564453125,0.357421875,0.0009765625,0.0015174506828528073,1.0,1.0,0.1173095703125,0.119140625,0.6195068359375,0,0,0.17308643460273743,0.5904053449630737,1.7036402225494385,0.43789273500442505,0.41109317541122437,0.8555322885513306,0.46923828125,0.40244150161743164,1,1 +367,0.357421875,0.3583984375,0.0009765625,0.001519756838905775,1.0,1.0,0.119140625,0.12066650390625,0.61944580078125,0,0,0.17371970415115356,0.5903624296188354,1.7036423683166504,0.43770113587379456,0.4107051193714142,0.8555846810340881,0.4697265625,0.40308284759521484,1,1 +368,0.3583984375,0.359375,0.0009765625,0.0015220700152207,1.0,1.0,0.12066650390625,0.12213134765625,0.61907958984375,0,0,0.17435289919376373,0.5905811786651611,1.7036385536193848,0.4360930323600769,0.4103206992149353,0.8560186624526978,0.4736328125,0.40579813718795776,1,1 +369,0.359375,0.3603515625,0.0009765625,0.001524390243902439,1.0,1.0,0.12213134765625,0.1243896484375,0.619140625,0,0,0.17498642206192017,0.5905261635780334,1.7036290168762207,0.43562063574790955,0.4099399149417877,0.8561417460441589,0.4736328125,0.406460702419281,1,1 +370,0.3603515625,0.361328125,0.0009765625,0.0015267175572519084,1.0,1.0,0.1243896484375,0.126220703125,0.61932373046875,0,0,0.17561987042427063,0.5905314087867737,1.7036137580871582,0.43508630990982056,0.40956366062164307,0.8563030362129211,0.474609375,0.4077509641647339,1,1 +371,0.361328125,0.3623046875,0.0009765625,0.0015290519877675841,1.0,1.0,0.126220703125,0.12860107421875,0.61956787109375,0,0,0.1762533187866211,0.5905776023864746,1.7035930156707764,0.43440085649490356,0.40919214487075806,0.8564937114715576,0.47607421875,0.4089130759239197,1,1 +372,0.3623046875,0.36328125,0.0009765625,0.0015313935681470138,1.0,1.0,0.12860107421875,0.13006591796875,0.61981201171875,0,0,0.17688685655593872,0.5905190706253052,1.7035664319992065,0.4342532157897949,0.40882426500320435,0.8565413355827332,0.4765625,0.4097141623497009,1,1 +373,0.36328125,0.3642578125,0.0009765625,0.0015337423312883436,1.0,1.0,0.13006591796875,0.13201904296875,0.6197509765625,0,0,0.1775202751159668,0.5905574560165405,1.7035340070724487,0.4335099458694458,0.4084599018096924,0.8567491769790649,0.4775390625,0.41117191314697266,1,1 +374,0.3642578125,0.365234375,0.0009765625,0.0015360983102918587,1.0,1.0,0.13201904296875,0.134033203125,0.61981201171875,0,0,0.17815378308296204,0.5907557010650635,1.7034955024719238,0.43228083848953247,0.4080999791622162,0.8570868372917175,0.47900390625,0.41359907388687134,1,1 +375,0.365234375,0.3662109375,0.0009765625,0.0015384615384615385,1.0,1.0,0.134033203125,0.13592529296875,0.619873046875,0,0,0.17878755927085876,0.5907607078552246,1.70345139503479,0.4317466616630554,0.4077441096305847,0.8572217226028442,0.48046875,0.4148281216621399,1,1 +376,0.3662109375,0.3671875,0.0009765625,0.0015408320493066256,1.0,1.0,0.13592529296875,0.13812255859375,0.61968994140625,0,0,0.17942138016223907,0.5907232761383057,1.7034015655517578,0.43128490447998047,0.40739262104034424,0.8573571443557739,0.48193359375,0.41584622859954834,1,1 +377,0.3671875,0.3681640625,0.0009765625,0.0015432098765432098,1.0,1.0,0.13812255859375,0.13958740234375,0.61932373046875,0,0,0.18005512654781342,0.590653657913208,1.7033463716506958,0.43084996938705444,0.4070455729961395,0.8574812412261963,0.48193359375,0.41668418049812317,1,1 +378,0.3681640625,0.369140625,0.0009765625,0.0015455950540958269,1.0,1.0,0.13958740234375,0.14166259765625,0.61944580078125,0,0,0.1806887686252594,0.5906964540481567,1.7032853364944458,0.43026232719421387,0.40670260787010193,0.8576449155807495,0.482421875,0.4180895686149597,1,1 +379,0.369140625,0.3701171875,0.0009765625,0.0015479876160990713,1.0,1.0,0.14166259765625,0.14324951171875,0.619140625,0,0,0.18132247030735016,0.5906716585159302,1.703218936920166,0.42996442317962646,0.40636366605758667,0.8577322959899902,0.48388671875,0.41904008388519287,1,1 +380,0.3701171875,0.37109375,0.0009765625,0.0015503875968992248,1.0,1.0,0.14324951171875,0.1448974609375,0.619384765625,0,0,0.18195614218711853,0.5907654762268066,1.7031465768814087,0.42876148223876953,0.4060284197330475,0.8580636978149414,0.4853515625,0.4211540222167969,1,1 +381,0.37109375,0.3720703125,0.0009765625,0.0015527950310559005,1.0,1.0,0.1448974609375,0.1473388671875,0.6195068359375,0,0,0.18258994817733765,0.5907384157180786,1.703068733215332,0.4284178614616394,0.4056968092918396,0.8581482768058777,0.4853515625,0.4222012758255005,1,1 +382,0.3720703125,0.373046875,0.0009765625,0.0015552099533437014,1.0,1.0,0.1473388671875,0.15008544921875,0.619140625,0,0,0.18322372436523438,0.5907511711120605,1.7029852867126465,0.4278019070625305,0.4053702652454376,0.858314037322998,0.48681640625,0.42357856035232544,1,1 +383,0.373046875,0.3740234375,0.0009765625,0.001557632398753894,1.0,1.0,0.15008544921875,0.15240478515625,0.6192626953125,0,0,0.1838575005531311,0.5907496213912964,1.7028963565826416,0.4272761642932892,0.4050493836402893,0.85846346616745,0.48876953125,0.4248247742652893,1,1 +384,0.3740234375,0.375,0.0009765625,0.0015600624024961,1.0,1.0,0.15240478515625,0.15411376953125,0.619384765625,0,0,0.18449130654335022,0.5906662940979004,1.7028019428253174,0.42709457874298096,0.4047323763370514,0.8585097789764404,0.490234375,0.4254530370235443,1,1 +385,0.375,0.3759765625,0.0009765625,0.0015625,1.0,1.0,0.15411376953125,0.156005859375,0.6192626953125,0,0,0.1851249635219574,0.5906391143798828,1.7027020454406738,0.4265732169151306,0.4044191539287567,0.8586505651473999,0.4931640625,0.4267559349536896,1,1 +386,0.3759765625,0.376953125,0.0009765625,0.001564945226917058,1.0,1.0,0.156005859375,0.158447265625,0.61962890625,0,0,0.1857585608959198,0.5906112194061279,1.7025967836380005,0.4261699616909027,0.4041096270084381,0.8587545156478882,0.49267578125,0.4277418851852417,1,1 +387,0.376953125,0.3779296875,0.0009765625,0.001567398119122257,1.0,1.0,0.158447265625,0.16064453125,0.619384765625,0,0,0.1863921582698822,0.5907623171806335,1.7024855613708496,0.4249781370162964,0.40380480885505676,0.8590733408927917,0.49462890625,0.43025892972946167,1,1 +388,0.3779296875,0.37890625,0.0009765625,0.0015698587127158557,1.0,1.0,0.16064453125,0.16339111328125,0.61956787109375,0,0,0.18702596426010132,0.5906887054443359,1.7023687362670898,0.42483389377593994,0.40350469946861267,0.8591146469116211,0.49560546875,0.4310991168022156,1,1 +389,0.37890625,0.3798828125,0.0009765625,0.0015723270440251573,1.0,1.0,0.16339111328125,0.165771484375,0.61981201171875,0,0,0.18765965104103088,0.5906611680984497,1.7022466659545898,0.4243887662887573,0.4032100439071655,0.8592421412467957,0.49658203125,0.4320691227912903,1,1 +390,0.3798828125,0.380859375,0.0009765625,0.0015748031496062992,1.0,1.0,0.165771484375,0.16827392578125,0.6192626953125,0,0,0.18829330801963806,0.5906267166137695,1.7021191120147705,0.42400288581848145,0.4029202163219452,0.8593425750732422,0.49755859375,0.43322426080703735,1,1 +391,0.380859375,0.3818359375,0.0009765625,0.0015772870662460567,1.0,1.0,0.16827392578125,0.1708984375,0.61920166015625,0,0,0.18892690539360046,0.5905462503433228,1.701986312866211,0.4237361550331116,0.40263640880584717,0.8594093918800354,0.4990234375,0.43414002656936646,1,1 +392,0.3818359375,0.3828125,0.0009765625,0.001579778830963665,1.0,1.0,0.1708984375,0.1732177734375,0.619140625,0,0,0.18956036865711212,0.590511679649353,1.701848030090332,0.4233362078666687,0.4023572504520416,0.8595136404037476,0.50146484375,0.43520885705947876,1,1 +393,0.3828125,0.3837890625,0.0009765625,0.0015822784810126582,1.0,1.0,0.1732177734375,0.17529296875,0.61859130859375,0,0,0.190193772315979,0.5905424356460571,1.7017043828964233,0.4225783348083496,0.40208253264427185,0.859711766242981,0.5029296875,0.4369127154350281,1,1 +394,0.3837890625,0.384765625,0.0009765625,0.001584786053882726,1.0,1.0,0.17529296875,0.17724609375,0.61865234375,0,0,0.19082723557949066,0.5904592275619507,1.7015553712844849,0.4222661256790161,0.40181243419647217,0.8598005771636963,0.50341796875,0.4378061890602112,1,1 +395,0.384765625,0.3857421875,0.0009765625,0.0015873015873015873,1.0,1.0,0.17724609375,0.17889404296875,0.6187744140625,0,0,0.19146057963371277,0.5904152393341064,1.7014009952545166,0.42175835371017456,0.4015466272830963,0.859939455986023,0.50390625,0.43906933069229126,1,1 +396,0.3857421875,0.38671875,0.0009765625,0.001589825119236884,1.0,1.0,0.17889404296875,0.180908203125,0.61846923828125,0,0,0.1920938342809677,0.5903103947639465,1.7012414932250977,0.4217380881309509,0.4012843370437622,0.859955370426178,0.5048828125,0.43964898586273193,1,1 +397,0.38671875,0.3876953125,0.0009765625,0.0015923566878980893,1.0,1.0,0.180908203125,0.18304443359375,0.61834716796875,0,0,0.19272692501544952,0.5902068614959717,1.701076865196228,0.4214874804019928,0.4010257124900818,0.860021710395813,0.50537109375,0.4403693675994873,1,1 +398,0.3876953125,0.388671875,0.0009765625,0.001594896331738437,1.0,1.0,0.18304443359375,0.1851806640625,0.61798095703125,0,0,0.1933598667383194,0.5901666283607483,1.7009068727493286,0.4210268557071686,0.4007719159126282,0.8601481914520264,0.50732421875,0.4415985345840454,1,1 +399,0.388671875,0.3896484375,0.0009765625,0.001597444089456869,1.0,1.0,0.1851806640625,0.186767578125,0.61798095703125,0,0,0.1939927190542221,0.5900841355323792,1.700731635093689,0.4208780527114868,0.4005223512649536,0.8601800203323364,0.5087890625,0.4423424005508423,1,1 +400,0.3896484375,0.390625,0.0009765625,0.0016,1.0,1.0,0.186767578125,0.1888427734375,0.61798095703125,0,0,0.19462546706199646,0.5902750492095947,1.7005505561828613,0.4196428656578064,0.400277316570282,0.8605082631111145,0.51171875,0.44509270787239075,1,1 +401,0.390625,0.3916015625,0.0009765625,0.0016025641025641025,1.0,1.0,0.1888427734375,0.1912841796875,0.617919921875,0,0,0.1952584981918335,0.5902508497238159,1.7003638744354248,0.4191944897174835,0.40003702044487,0.8606253862380981,0.513671875,0.4465177357196808,1,1 +402,0.3916015625,0.392578125,0.0009765625,0.0016051364365971107,1.0,1.0,0.1912841796875,0.19390869140625,0.61761474609375,0,0,0.19589149951934814,0.5901843309402466,1.7001721858978271,0.41893401741981506,0.39980220794677734,0.8606928586959839,0.51513671875,0.4475439190864563,1,1 +403,0.392578125,0.3935546875,0.0009765625,0.001607717041800643,1.0,1.0,0.19390869140625,0.1968994140625,0.617431640625,0,0,0.19652439653873444,0.5900563597679138,1.6999752521514893,0.41888442635536194,0.39957237243652344,0.8607089519500732,0.51611328125,0.44808468222618103,1,1 +404,0.3935546875,0.39453125,0.0009765625,0.001610305958132045,1.0,1.0,0.1968994140625,0.19879150390625,0.61724853515625,0,0,0.197157084941864,0.5899513959884644,1.6997734308242798,0.4187343418598175,0.39934802055358887,0.8607499599456787,0.515625,0.4488028287887573,1,1 +405,0.39453125,0.3955078125,0.0009765625,0.0016129032258064516,1.0,1.0,0.19879150390625,0.2010498046875,0.6173095703125,0,0,0.19778960943222046,0.5899361371994019,1.699566125869751,0.41822558641433716,0.39912769198417664,0.8608783483505249,0.51611328125,0.4502272605895996,1,1 +406,0.3955078125,0.396484375,0.0009765625,0.0016155088852988692,1.0,1.0,0.2010498046875,0.2032470703125,0.61712646484375,0,0,0.19842210412025452,0.5899052619934082,1.699353575706482,0.4177544414997101,0.39891254901885986,0.8609994649887085,0.51611328125,0.4516114592552185,1,1 +407,0.396484375,0.3974609375,0.0009765625,0.0016181229773462784,1.0,1.0,0.2032470703125,0.205078125,0.61712646484375,0,0,0.1990545392036438,0.5898584723472595,1.6991357803344727,0.41731154918670654,0.3987017869949341,0.8611161112785339,0.51611328125,0.45274215936660767,1,1 +408,0.3974609375,0.3984375,0.0009765625,0.0016207455429497568,1.0,1.0,0.205078125,0.207275390625,0.6170654296875,0,0,0.1996869146823883,0.5897424221038818,1.6989130973815918,0.41717514395713806,0.3984953761100769,0.8611445426940918,0.515625,0.4535577893257141,1,1 +409,0.3984375,0.3994140625,0.0009765625,0.0016233766233766235,1.0,1.0,0.207275390625,0.20947265625,0.6170654296875,0,0,0.2003190815448761,0.5896581411361694,1.6986850500106812,0.4170016646385193,0.39829349517822266,0.8611882925033569,0.515625,0.45438632369041443,1,1 +410,0.3994140625,0.400390625,0.0009765625,0.0016260162601626016,1.0,1.0,0.20947265625,0.21173095703125,0.61688232421875,0,0,0.20095114409923553,0.5895580053329468,1.6984522342681885,0.4166773557662964,0.3980964720249176,0.8612654209136963,0.5166015625,0.4554246664047241,1,1 +411,0.400390625,0.4013671875,0.0009765625,0.0016286644951140066,1.0,1.0,0.21173095703125,0.21417236328125,0.61663818359375,0,0,0.20158299803733826,0.58940589427948,1.6982142925262451,0.4166070818901062,0.39790406823158264,0.8612809181213379,0.5166015625,0.45603400468826294,1,1 +412,0.4013671875,0.40234375,0.0009765625,0.0016313213703099511,1.0,1.0,0.21417236328125,0.21649169921875,0.6165771484375,0,0,0.20221464335918427,0.5892481803894043,1.6979714632034302,0.41643786430358887,0.39771705865859985,0.8613231182098389,0.51806640625,0.45657116174697876,1,1 +413,0.40234375,0.4033203125,0.0009765625,0.0016339869281045752,1.0,1.0,0.21649169921875,0.21820068359375,0.61688232421875,0,0,0.20284602046012878,0.5894786715507507,1.6977226734161377,0.415341317653656,0.39753457903862,0.8616025447845459,0.5205078125,0.45940548181533813,1,1 +414,0.4033203125,0.404296875,0.0009765625,0.0016366612111292963,1.0,1.0,0.21820068359375,0.2198486328125,0.61663818359375,0,0,0.20347777009010315,0.589326024055481,1.6974691152572632,0.41541028022766113,0.3973562717437744,0.8615737557411194,0.52001953125,0.4598938822746277,1,1 +415,0.404296875,0.4052734375,0.0009765625,0.001639344262295082,1.0,1.0,0.2198486328125,0.221435546875,0.6160888671875,0,0,0.2041092813014984,0.5892218351364136,1.6972103118896484,0.4151748716831207,0.39718174934387207,0.8616451025009155,0.52099609375,0.46088188886642456,1,1 +416,0.4052734375,0.40625,0.0009765625,0.0016420361247947454,1.0,1.0,0.221435546875,0.22296142578125,0.6158447265625,0,0,0.20474061369895935,0.5890909433364868,1.6969468593597412,0.4150829613208771,0.39701157808303833,0.8616635799407959,0.521484375,0.4614604711532593,1,1 +417,0.40625,0.4072265625,0.0009765625,0.001644736842105263,1.0,1.0,0.22296142578125,0.22528076171875,0.61553955078125,0,0,0.20537173748016357,0.5889829397201538,1.6966782808303833,0.41503700613975525,0.39684557914733887,0.8616704344749451,0.52294921875,0.4621477723121643,1,1 +418,0.4072265625,0.408203125,0.0009765625,0.0016474464579901153,1.0,1.0,0.22528076171875,0.2275390625,0.61553955078125,0,0,0.20600265264511108,0.5888962149620056,1.6964046955108643,0.41455498337745667,0.3966842293739319,0.8617831468582153,0.5234375,0.46331527829170227,1,1 +419,0.408203125,0.4091796875,0.0009765625,0.0016501650165016502,1.0,1.0,0.2275390625,0.23028564453125,0.61529541015625,0,0,0.20663344860076904,0.5888505578041077,1.6961259841918945,0.41431427001953125,0.39652812480926514,0.8618407249450684,0.525390625,0.4645635783672333,1,1 +420,0.4091796875,0.41015625,0.0009765625,0.001652892561983471,1.0,1.0,0.23028564453125,0.23248291015625,0.61529541015625,0,0,0.20726418495178223,0.5887347459793091,1.6958425045013428,0.41401293873786926,0.39637643098831177,0.8619083762168884,0.5263671875,0.4656289219856262,1,1 +421,0.41015625,0.4111328125,0.0009765625,0.0016556291390728477,1.0,1.0,0.23248291015625,0.23455810546875,0.61529541015625,0,0,0.2078947126865387,0.588649570941925,1.6955536603927612,0.41376328468322754,0.3962300419807434,0.8619611263275146,0.52587890625,0.46657440066337585,1,1 +422,0.4111328125,0.412109375,0.0009765625,0.001658374792703151,1.0,1.0,0.23455810546875,0.237060546875,0.61505126953125,0,0,0.20852510631084442,0.588647723197937,1.6952598094940186,0.4134308099746704,0.396089106798172,0.8620477914810181,0.5283203125,0.46803104877471924,1,1 +423,0.412109375,0.4130859375,0.0009765625,0.0016611295681063123,1.0,1.0,0.237060546875,0.23968505859375,0.61468505859375,0,0,0.20915549993515015,0.5884760022163391,1.6949610710144043,0.4132899045944214,0.3959534764289856,0.8620723485946655,0.5283203125,0.4686495363712311,1,1 +424,0.4130859375,0.4140625,0.0009765625,0.0016638935108153079,1.0,1.0,0.23968505859375,0.24261474609375,0.61492919921875,0,0,0.209785595536232,0.5883351564407349,1.6946576833724976,0.41344571113586426,0.3958241939544678,0.8620123863220215,0.5283203125,0.4690014719963074,1,1 +425,0.4140625,0.4150390625,0.0009765625,0.0016666666666666668,1.0,1.0,0.24261474609375,0.2451171875,0.61474609375,0,0,0.21041545271873474,0.5882256031036377,1.6943492889404297,0.413064569234848,0.39570027589797974,0.8621025681495667,0.5283203125,0.47017401456832886,1,1 +426,0.4150390625,0.416015625,0.0009765625,0.001669449081803005,1.0,1.0,0.2451171875,0.248046875,0.61468505859375,0,0,0.21104514598846436,0.5883133411407471,1.694035291671753,0.4124310612678528,0.3955826163291931,0.8622713088989258,0.52978515625,0.4720888137817383,1,1 +427,0.416015625,0.4169921875,0.0009765625,0.0016722408026755853,1.0,1.0,0.248046875,0.250244140625,0.61456298828125,0,0,0.21167495846748352,0.5882023572921753,1.6937165260314941,0.4123148024082184,0.3954705595970154,0.8622933030128479,0.53125,0.4729686677455902,1,1 +428,0.4169921875,0.41796875,0.0009765625,0.0016750418760469012,1.0,1.0,0.250244140625,0.2529296875,0.61419677734375,0,0,0.21230462193489075,0.588162899017334,1.6933925151824951,0.41183215379714966,0.39536362886428833,0.8624112606048584,0.53173828125,0.4743955433368683,1,1 +429,0.41796875,0.4189453125,0.0009765625,0.0016778523489932886,1.0,1.0,0.2529296875,0.255126953125,0.614013671875,0,0,0.21293418109416962,0.5879514217376709,1.6930639743804932,0.41187790036201477,0.39526230096817017,0.8623968362808228,0.53173828125,0.474663645029068,1,1 +430,0.4189453125,0.419921875,0.0009765625,0.0016806722689075631,1.0,1.0,0.255126953125,0.25677490234375,0.61383056640625,0,0,0.21356341242790222,0.5878027677536011,1.6927307844161987,0.4119319021701813,0.39516565203666687,0.8623818755149841,0.5322265625,0.4752286374568939,1,1 +431,0.419921875,0.4208984375,0.0009765625,0.0016835016835016834,1.0,1.0,0.25677490234375,0.25921630859375,0.6138916015625,0,0,0.21419239044189453,0.5876845121383667,1.6923924684524536,0.4117045998573303,0.39507365226745605,0.8624307513237,0.533203125,0.4762168526649475,1,1 +432,0.4208984375,0.421875,0.0009765625,0.0016863406408094434,1.0,1.0,0.25921630859375,0.261474609375,0.61395263671875,0,0,0.21482115983963013,0.5875352025032043,1.6920497417449951,0.4118017554283142,0.39498627185821533,0.8624016046524048,0.5341796875,0.47673729062080383,1,1 +433,0.421875,0.4228515625,0.0009765625,0.0016891891891891893,1.0,1.0,0.261474609375,0.26318359375,0.61419677734375,0,0,0.21544967591762543,0.5875223875045776,1.6917016506195068,0.4112454354763031,0.3949040472507477,0.8625348806381226,0.53515625,0.478418231010437,1,1 +434,0.4228515625,0.423828125,0.0009765625,0.001692047377326565,1.0,1.0,0.26318359375,0.2646484375,0.61395263671875,0,0,0.21607817709445953,0.5873899459838867,1.6913487911224365,0.4113006591796875,0.39482659101486206,0.8625231981277466,0.53515625,0.4789729714393616,1,1 +435,0.423828125,0.4248046875,0.0009765625,0.001694915254237288,1.0,1.0,0.2646484375,0.267822265625,0.61383056640625,0,0,0.21670645475387573,0.5872225165367126,1.6909912824630737,0.41121891140937805,0.394754558801651,0.8625321984291077,0.53515625,0.4796193540096283,1,1 +436,0.4248046875,0.42578125,0.0009765625,0.001697792869269949,1.0,1.0,0.267822265625,0.27099609375,0.61334228515625,0,0,0.21733444929122925,0.5870580673217773,1.6906291246414185,0.411085307598114,0.3946897089481354,0.8625682592391968,0.53515625,0.48026591539382935,1,1 +437,0.42578125,0.4267578125,0.0009765625,0.0017006802721088435,1.0,1.0,0.27099609375,0.27423095703125,0.6134033203125,0,0,0.21796217560768127,0.5869359374046326,1.6902621984481812,0.4108361601829529,0.39463189244270325,0.8626210689544678,0.53564453125,0.48134884238243103,1,1 +438,0.4267578125,0.427734375,0.0009765625,0.0017035775127768314,1.0,1.0,0.27423095703125,0.276611328125,0.61334228515625,0,0,0.2185896784067154,0.5868246555328369,1.6898903846740723,0.4108119010925293,0.39458030462265015,0.8626242876052856,0.53759765625,0.4821280837059021,1,1 +439,0.427734375,0.4287109375,0.0009765625,0.0017064846416382253,1.0,1.0,0.276611328125,0.279296875,0.61297607421875,0,0,0.21921700239181519,0.5867377519607544,1.6895136833190918,0.4106193780899048,0.39453423023223877,0.8626798391342163,0.5390625,0.4831606149673462,1,1 +440,0.4287109375,0.4296875,0.0009765625,0.0017094017094017094,1.0,1.0,0.279296875,0.28173828125,0.613037109375,0,0,0.21984416246414185,0.5866564512252808,1.6891319751739502,0.4103574752807617,0.39449343085289,0.8627412915229797,0.54248046875,0.4843412935733795,1,1 +441,0.4296875,0.4306640625,0.0009765625,0.0017123287671232876,1.0,1.0,0.28173828125,0.284423828125,0.612548828125,0,0,0.22047120332717896,0.5865020751953125,1.6887458562850952,0.4101828336715698,0.3944576382637024,0.8627772927284241,0.54443359375,0.4851400554180145,1,1 +442,0.4306640625,0.431640625,0.0009765625,0.0017152658662092624,1.0,1.0,0.284423828125,0.28668212890625,0.61212158203125,0,0,0.2210979461669922,0.5863491296768188,1.6883548498153687,0.41029566526412964,0.3944263160228729,0.8627499938011169,0.5439453125,0.4856114983558655,1,1 +443,0.431640625,0.4326171875,0.0009765625,0.001718213058419244,1.0,1.0,0.28668212890625,0.2886962890625,0.61199951171875,0,0,0.2217244654893875,0.5861958265304565,1.6879591941833496,0.41020721197128296,0.3944008946418762,0.8627742528915405,0.544921875,0.48624348640441895,1,1 +444,0.4326171875,0.43359375,0.0009765625,0.0017211703958691911,1.0,1.0,0.2886962890625,0.29144287109375,0.6124267578125,0,0,0.22235068678855896,0.5862663388252258,1.6875581741333008,0.4096912145614624,0.3943804204463959,0.8629140853881836,0.54736328125,0.48820391297340393,1,1 +445,0.43359375,0.4345703125,0.0009765625,0.0017241379310344827,1.0,1.0,0.29144287109375,0.29425048828125,0.6123046875,0,0,0.22297705709934235,0.5861413478851318,1.68715238571167,0.4096333086490631,0.39436641335487366,0.862930178642273,0.5478515625,0.4889390170574188,1,1 +446,0.4345703125,0.435546875,0.0009765625,0.0017271157167530224,1.0,1.0,0.29425048828125,0.296630859375,0.6124267578125,0,0,0.22360318899154663,0.5860757231712341,1.686741590499878,0.40936899185180664,0.3943585455417633,0.8629997968673706,0.548828125,0.49016669392585754,1,1 +447,0.435546875,0.4365234375,0.0009765625,0.0017301038062283738,1.0,1.0,0.296630859375,0.29962158203125,0.61181640625,0,0,0.22422923147678375,0.5858322381973267,1.686326503753662,0.40932053327560425,0.39435622096061707,0.8629933595657349,0.54833984375,0.49059033393859863,1,1 +448,0.4365234375,0.4375,0.0009765625,0.0017331022530329288,1.0,1.0,0.29962158203125,0.30267333984375,0.61181640625,0,0,0.22485484182834625,0.5856980085372925,1.6859066486358643,0.4093618392944336,0.39436012506484985,0.862987756729126,0.54931640625,0.4911392629146576,1,1 +449,0.4375,0.4384765625,0.0009765625,0.001736111111111111,1.0,1.0,0.30267333984375,0.30523681640625,0.61181640625,0,0,0.22548022866249084,0.5855988264083862,1.685482144355774,0.4091457426548004,0.39436981081962585,0.8630387187004089,0.55126953125,0.492338091135025,1,1 +450,0.4384765625,0.439453125,0.0009765625,0.0017391304347826088,1.0,1.0,0.30523681640625,0.30755615234375,0.61163330078125,0,0,0.2261054366827011,0.5854325294494629,1.6850531101226807,0.4091615676879883,0.3943846821784973,0.8630381226539612,0.552734375,0.4927874803543091,1,1 +451,0.439453125,0.4404296875,0.0009765625,0.0017421602787456446,1.0,1.0,0.30755615234375,0.31072998046875,0.61175537109375,0,0,0.2267303466796875,0.5852567553520203,1.6846193075180054,0.4093342423439026,0.3944063186645508,0.8630011081695557,0.5537109375,0.493213951587677,1,1 +452,0.4404296875,0.44140625,0.0009765625,0.0017452006980802793,1.0,1.0,0.31072998046875,0.31304931640625,0.6114501953125,0,0,0.22735495865345,0.5851122140884399,1.6841809749603271,0.40933501720428467,0.39443403482437134,0.8629971742630005,0.5537109375,0.49392998218536377,1,1 +453,0.44140625,0.4423828125,0.0009765625,0.0017482517482517483,1.0,1.0,0.31304931640625,0.31573486328125,0.61077880859375,0,0,0.22797930240631104,0.585073709487915,1.6837376356124878,0.4089091420173645,0.39446696639060974,0.8631190061569214,0.55517578125,0.4953039288520813,1,1 +454,0.4423828125,0.443359375,0.0009765625,0.0017513134851138354,1.0,1.0,0.31573486328125,0.31866455078125,0.61090087890625,0,0,0.22860360145568848,0.5848999619483948,1.6832897663116455,0.4087575674057007,0.39450663328170776,0.8631643652915955,0.55517578125,0.49606049060821533,1,1 +455,0.443359375,0.4443359375,0.0009765625,0.0017543859649122807,1.0,1.0,0.31866455078125,0.321044921875,0.61053466796875,0,0,0.22922760248184204,0.5847100019454956,1.6828374862670898,0.4088382124900818,0.39455223083496094,0.8631525039672852,0.55615234375,0.4964551329612732,1,1 +456,0.4443359375,0.4453125,0.0009765625,0.0017574692442882249,1.0,1.0,0.321044921875,0.32373046875,0.610595703125,0,0,0.22985124588012695,0.5847207307815552,1.682379961013794,0.40858304500579834,0.39460310339927673,0.8632240295410156,0.55712890625,0.4978615641593933,1,1 +457,0.4453125,0.4462890625,0.0009765625,0.0017605633802816902,1.0,1.0,0.32373046875,0.32647705078125,0.6107177734375,0,0,0.23047490417957306,0.5845845937728882,1.6819179058074951,0.4082978367805481,0.39466017484664917,0.8633016347885132,0.55859375,0.4989703297615051,1,1 +458,0.4462890625,0.447265625,0.0009765625,0.001763668430335097,1.0,1.0,0.32647705078125,0.32916259765625,0.6103515625,0,0,0.23109833896160126,0.5844056606292725,1.6814512014389038,0.4084683358669281,0.39472341537475586,0.8632662296295166,0.5595703125,0.4993267059326172,1,1 +459,0.447265625,0.4482421875,0.0009765625,0.0017667844522968198,1.0,1.0,0.32916259765625,0.331787109375,0.60986328125,0,0,0.23172146081924438,0.5840717554092407,1.6809806823730469,0.40872952342033386,0.3947916626930237,0.8631958961486816,0.55908203125,0.49919593334198,1,1 +460,0.4482421875,0.44921875,0.0009765625,0.0017699115044247787,1.0,1.0,0.331787109375,0.3338623046875,0.610107421875,0,0,0.23234398663043976,0.5841555595397949,1.6805046796798706,0.4081419110298157,0.3948655128479004,0.8633670210838318,0.560546875,0.5011580586433411,1,1 +461,0.44921875,0.4501953125,0.0009765625,0.0017730496453900709,1.0,1.0,0.3338623046875,0.3355712890625,0.60980224609375,0,0,0.23296666145324707,0.5839811563491821,1.6800241470336914,0.4082369804382324,0.3949442505836487,0.8633453845977783,0.5615234375,0.5016013383865356,1,1 +462,0.4501953125,0.451171875,0.0009765625,0.0017761989342806395,1.0,1.0,0.3355712890625,0.3385009765625,0.60955810546875,0,0,0.2335890382528305,0.5838163495063782,1.6795390844345093,0.4083191156387329,0.39502769708633423,0.863326370716095,0.5615234375,0.502202033996582,1,1 +463,0.451171875,0.4521484375,0.0009765625,0.0017793594306049821,1.0,1.0,0.3385009765625,0.3411865234375,0.6087646484375,0,0,0.23421111702919006,0.5836485624313354,1.6790496110916138,0.40813469886779785,0.39511704444885254,0.8633764386177063,0.56103515625,0.5030516386032104,1,1 +464,0.4521484375,0.453125,0.0009765625,0.0017825311942959,1.0,1.0,0.3411865234375,0.34356689453125,0.60919189453125,0,0,0.23483288288116455,0.583454966545105,1.6785556077957153,0.4083520174026489,0.39521270990371704,0.8633264303207397,0.56201171875,0.503314197063446,1,1 +465,0.453125,0.4541015625,0.0009765625,0.0017857142857142857,1.0,1.0,0.34356689453125,0.34588623046875,0.60882568359375,0,0,0.23545430600643158,0.5832778215408325,1.6780571937561035,0.40846219658851624,0.39531373977661133,0.8633135557174683,0.5625,0.50376957654953,1,1 +466,0.4541015625,0.455078125,0.0009765625,0.0017889087656529517,1.0,1.0,0.34588623046875,0.3477783203125,0.608642578125,0,0,0.23607541620731354,0.5831224322319031,1.6775543689727783,0.4084266126155853,0.3954195976257324,0.8633338212966919,0.5634765625,0.5044121742248535,1,1 +467,0.455078125,0.4560546875,0.0009765625,0.0017921146953405018,1.0,1.0,0.3477783203125,0.3502197265625,0.608642578125,0,0,0.2366962432861328,0.5831023454666138,1.6770464181900024,0.40794748067855835,0.39553219079971313,0.8634658455848694,0.56494140625,0.5060623288154602,1,1 +468,0.4560546875,0.45703125,0.0009765625,0.0017953321364452424,1.0,1.0,0.3502197265625,0.35308837890625,0.6087646484375,0,0,0.2373170554637909,0.5829956531524658,1.676533579826355,0.4078095555305481,0.39565184712409973,0.8635091781616211,0.56494140625,0.5071183443069458,1,1 +469,0.45703125,0.4580078125,0.0009765625,0.0017985611510791368,1.0,1.0,0.35308837890625,0.35638427734375,0.60845947265625,0,0,0.23793765902519226,0.5828161239624023,1.6760164499282837,0.40794992446899414,0.3957790732383728,0.8634787201881409,0.5654296875,0.5074646472930908,1,1 +470,0.4580078125,0.458984375,0.0009765625,0.0018018018018018018,1.0,1.0,0.35638427734375,0.359619140625,0.60809326171875,0,0,0.23855794966220856,0.5825995802879333,1.6754947900772095,0.40791749954223633,0.39591318368911743,0.8635014891624451,0.5654296875,0.5080976486206055,1,1 +471,0.458984375,0.4599609375,0.0009765625,0.0018050541516245488,1.0,1.0,0.359619140625,0.36187744140625,0.60784912109375,0,0,0.2391778528690338,0.5824180245399475,1.674968957901001,0.4081264138221741,0.39605340361595154,0.8634480834007263,0.5654296875,0.5083402991294861,1,1 +472,0.4599609375,0.4609375,0.0009765625,0.0018083182640144665,1.0,1.0,0.36187744140625,0.36395263671875,0.60760498046875,0,0,0.2397974133491516,0.582239031791687,1.674438714981079,0.40812402963638306,0.3961995840072632,0.863447904586792,0.5654296875,0.5090314745903015,1,1 +473,0.4609375,0.4619140625,0.0009765625,0.0018115942028985507,1.0,1.0,0.36395263671875,0.36639404296875,0.60760498046875,0,0,0.24041666090488434,0.5822479724884033,1.6739031076431274,0.40768611431121826,0.396351158618927,0.8635824918746948,0.56591796875,0.5104809999465942,1,1 +474,0.4619140625,0.462890625,0.0009765625,0.0018148820326678765,1.0,1.0,0.36639404296875,0.36895751953125,0.607421875,0,0,0.24103589355945587,0.5821161270141602,1.6733629703521729,0.40751969814300537,0.39650821685791016,0.8636348247528076,0.568359375,0.5114275217056274,1,1 +475,0.462890625,0.4638671875,0.0009765625,0.0018181818181818182,1.0,1.0,0.36895751953125,0.37152099609375,0.60711669921875,0,0,0.24165493249893188,0.5819381475448608,1.6728184223175049,0.40769055485725403,0.3966711759567261,0.8636071085929871,0.5693359375,0.5117958188056946,1,1 +476,0.4638671875,0.46484375,0.0009765625,0.0018214936247723133,1.0,1.0,0.37152099609375,0.3743896484375,0.60699462890625,0,0,0.24227362871170044,0.5817381143569946,1.6722698211669922,0.4077351689338684,0.3968397378921509,0.8635921478271484,0.568359375,0.5123107433319092,1,1 +477,0.46484375,0.4658203125,0.0009765625,0.0018248175182481751,1.0,1.0,0.3743896484375,0.3760986328125,0.60687255859375,0,0,0.24289196729660034,0.5816149115562439,1.6717162132263184,0.40754804015159607,0.39701372385025024,0.8636484146118164,0.56884765625,0.5134644508361816,1,1 +478,0.4658203125,0.466796875,0.0009765625,0.0018281535648994515,1.0,1.0,0.3760986328125,0.37860107421875,0.60662841796875,0,0,0.24351006746292114,0.581420361995697,1.6711583137512207,0.40767115354537964,0.3971940875053406,0.8636306524276733,0.56884765625,0.513840913772583,1,1 +479,0.466796875,0.4677734375,0.0009765625,0.0018315018315018315,1.0,1.0,0.37860107421875,0.380859375,0.60638427734375,0,0,0.2441278100013733,0.5812106132507324,1.6705963611602783,0.4078136682510376,0.3973802328109741,0.8636010885238647,0.56787109375,0.5141121745109558,1,1 +480,0.4677734375,0.46875,0.0009765625,0.001834862385321101,1.0,1.0,0.380859375,0.38372802734375,0.60638427734375,0,0,0.2447451949119568,0.5811418294906616,1.6700292825698853,0.4075095057487488,0.3975728154182434,0.8636771440505981,0.56982421875,0.5154703855514526,1,1 +481,0.46875,0.4697265625,0.0009765625,0.001838235294117647,1.0,1.0,0.38372802734375,0.38623046875,0.60614013671875,0,0,0.24536243081092834,0.5809805393218994,1.6694579124450684,0.4075767993927002,0.39777135848999023,0.863672137260437,0.57080078125,0.5159950852394104,1,1 +482,0.4697265625,0.470703125,0.0009765625,0.001841620626151013,1.0,1.0,0.38623046875,0.3883056640625,0.60626220703125,0,0,0.24597936868667603,0.580734372138977,1.6688823699951172,0.40783822536468506,0.39797520637512207,0.863593578338623,0.57080078125,0.5162001252174377,1,1 +483,0.470703125,0.4716796875,0.0009765625,0.0018450184501845018,1.0,1.0,0.3883056640625,0.39031982421875,0.60589599609375,0,0,0.2465958595275879,0.5805633664131165,1.6683025360107422,0.4077256917953491,0.39818447828292847,0.8636389970779419,0.57177734375,0.5170193910598755,1,1 +484,0.4716796875,0.47265625,0.0009765625,0.0018484288354898336,1.0,1.0,0.39031982421875,0.3929443359375,0.60565185546875,0,0,0.2472120225429535,0.5803855061531067,1.6677182912826538,0.4078114330768585,0.3983997702598572,0.8636136651039124,0.57177734375,0.5174434185028076,1,1 +485,0.47265625,0.4736328125,0.0009765625,0.001851851851851852,1.0,1.0,0.3929443359375,0.3948974609375,0.60552978515625,0,0,0.2478279024362564,0.5801903009414673,1.667129635810852,0.40801337361335754,0.39862051606178284,0.8635592460632324,0.57177734375,0.5177584886550903,1,1 +486,0.4736328125,0.474609375,0.0009765625,0.0018552875695732839,1.0,1.0,0.3948974609375,0.39703369140625,0.60546875,0,0,0.2484433650970459,0.5800366401672363,1.666536569595337,0.407882958650589,0.39884668588638306,0.8636021018028259,0.57373046875,0.5186161398887634,1,1 +487,0.474609375,0.4755859375,0.0009765625,0.0018587360594795538,1.0,1.0,0.39703369140625,0.399658203125,0.60552978515625,0,0,0.2490585744380951,0.5799462795257568,1.6659389734268188,0.4076783061027527,0.39907902479171753,0.8636701107025146,0.57568359375,0.5196841359138489,1,1 +488,0.4755859375,0.4765625,0.0009765625,0.00186219739292365,1.0,1.0,0.399658203125,0.4014892578125,0.605224609375,0,0,0.24967360496520996,0.5797733068466187,1.6653366088867188,0.40772444009780884,0.3993176221847534,0.8636617660522461,0.576171875,0.520296573638916,1,1 +489,0.4765625,0.4775390625,0.0009765625,0.0018656716417910447,1.0,1.0,0.4014892578125,0.404052734375,0.60491943359375,0,0,0.25028833746910095,0.5795919895172119,1.664730191230774,0.4077431559562683,0.39956212043762207,0.8636553883552551,0.57666015625,0.520843505859375,1,1 +490,0.4775390625,0.478515625,0.0009765625,0.001869158878504673,1.0,1.0,0.404052734375,0.4058837890625,0.60467529296875,0,0,0.2509026825428009,0.5793693661689758,1.6641194820404053,0.4080365002155304,0.39981281757354736,0.8635697960853577,0.576171875,0.5210120677947998,1,1 +491,0.478515625,0.4794921875,0.0009765625,0.0018726591760299626,1.0,1.0,0.4058837890625,0.40899658203125,0.60467529296875,0,0,0.2515166401863098,0.5794007778167725,1.663503646850586,0.4076221287250519,0.40007007122039795,0.8636912107467651,0.57763671875,0.5226616859436035,1,1 +492,0.4794921875,0.48046875,0.0009765625,0.001876172607879925,1.0,1.0,0.40899658203125,0.4112548828125,0.6043701171875,0,0,0.2521306574344635,0.5792074799537659,1.6628834009170532,0.40769606828689575,0.4003332257270813,0.8636683821678162,0.57861328125,0.5231449604034424,1,1 +493,0.48046875,0.4814453125,0.0009765625,0.0018796992481203006,1.0,1.0,0.4112548828125,0.4136962890625,0.6038818359375,0,0,0.25274431705474854,0.5790224671363831,1.6622589826583862,0.40781450271606445,0.400603711605072,0.8636418581008911,0.57861328125,0.5234929919242859,1,1 +494,0.4814453125,0.482421875,0.0009765625,0.0018832391713747645,1.0,1.0,0.4136962890625,0.4166259765625,0.603759765625,0,0,0.2533576190471649,0.5789353847503662,1.661629557609558,0.40748757123947144,0.4008808732032776,0.8637345433235168,0.58203125,0.5249056816101074,1,1 +495,0.482421875,0.4833984375,0.0009765625,0.0018867924528301887,1.0,1.0,0.4166259765625,0.41876220703125,0.6036376953125,0,0,0.253970742225647,0.5787312984466553,1.6609960794448853,0.40772703289985657,0.4011637568473816,0.8636797666549683,0.58251953125,0.5251809358596802,1,1 +496,0.4833984375,0.484375,0.0009765625,0.001890359168241966,1.0,1.0,0.41876220703125,0.4210205078125,0.603515625,0,0,0.2545835077762604,0.5785518884658813,1.660358190536499,0.4078172445297241,0.40145203471183777,0.8636538982391357,0.58251953125,0.5256038308143616,1,1 +497,0.484375,0.4853515625,0.0009765625,0.001893939393939394,1.0,1.0,0.4210205078125,0.423828125,0.603515625,0,0,0.2551959156990051,0.5783796906471252,1.6597158908843994,0.4077160060405731,0.4017462134361267,0.8636833429336548,0.583984375,0.5264245867729187,1,1 +498,0.4853515625,0.486328125,0.0009765625,0.0018975332068311196,1.0,1.0,0.423828125,0.4263916015625,0.60333251953125,0,0,0.2558079957962036,0.5781919956207275,1.659069538116455,0.4078686833381653,0.4020477533340454,0.863648533821106,0.583984375,0.5268516540527344,1,1 +499,0.486328125,0.4873046875,0.0009765625,0.0019011406844106464,1.0,1.0,0.4263916015625,0.42950439453125,0.60272216796875,0,0,0.25641974806785583,0.5779991149902344,1.658418893814087,0.40811342000961304,0.40235644578933716,0.8635895252227783,0.5849609375,0.5270420908927917,1,1 +500,0.4873046875,0.48828125,0.0009765625,0.0019047619047619048,1.0,1.0,0.42950439453125,0.43170166015625,0.60247802734375,0,0,0.257031112909317,0.5777718424797058,1.657763957977295,0.40808042883872986,0.4026714563369751,0.8636054992675781,0.58544921875,0.527722954750061,1,1 +501,0.48828125,0.4892578125,0.0009765625,0.0019083969465648854,1.0,1.0,0.43170166015625,0.43499755859375,0.6026611328125,0,0,0.2576420307159424,0.577702522277832,1.6571044921875,0.4079688787460327,0.4029928147792816,0.8636310696601868,0.5869140625,0.5287438631057739,1,1 +502,0.4892578125,0.490234375,0.0009765625,0.0019120458891013384,1.0,1.0,0.43499755859375,0.4378662109375,0.6025390625,0,0,0.2582528591156006,0.5775123834609985,1.6564406156539917,0.40811917185783386,0.4033210277557373,0.8636013269424438,0.587890625,0.5290555953979492,1,1 +503,0.490234375,0.4912109375,0.0009765625,0.0019157088122605363,1.0,1.0,0.4378662109375,0.4405517578125,0.60247802734375,0,0,0.25886330008506775,0.5773152112960815,1.6557726860046387,0.4081279933452606,0.403656542301178,0.8636010885238647,0.58837890625,0.5296379923820496,1,1 +504,0.4912109375,0.4921875,0.0009765625,0.0019193857965451055,1.0,1.0,0.4405517578125,0.444091796875,0.60211181640625,0,0,0.25947335362434387,0.5770889520645142,1.6551004648208618,0.40828755497932434,0.4039994478225708,0.8635501265525818,0.58837890625,0.5299710631370544,1,1 +505,0.4921875,0.4931640625,0.0009765625,0.0019230769230769232,1.0,1.0,0.444091796875,0.44671630859375,0.601806640625,0,0,0.26008298993110657,0.5770328640937805,1.654423475265503,0.40822654962539673,0.4043494462966919,0.8635776042938232,0.5888671875,0.5308732986450195,1,1 +506,0.4931640625,0.494140625,0.0009765625,0.0019267822736030828,1.0,1.0,0.44671630859375,0.44952392578125,0.60137939453125,0,0,0.2606925070285797,0.5767598748207092,1.653742790222168,0.40830010175704956,0.4047047793865204,0.8635549545288086,0.5888671875,0.5313074588775635,1,1 +507,0.494140625,0.4951171875,0.0009765625,0.0019305019305019305,1.0,1.0,0.44952392578125,0.45220947265625,0.600830078125,0,0,0.2613014876842499,0.5765219330787659,1.6530579328536987,0.4085932970046997,0.40506666898727417,0.8634792566299438,0.5888671875,0.5314642786979675,1,1 +508,0.4951171875,0.49609375,0.0009765625,0.0019342359767891683,1.0,1.0,0.45220947265625,0.45440673828125,0.60064697265625,0,0,0.26191002130508423,0.5765511989593506,1.6523678302764893,0.40818047523498535,0.40543609857559204,0.8636037707328796,0.5908203125,0.5329934358596802,1,1 +509,0.49609375,0.4970703125,0.0009765625,0.001937984496124031,1.0,1.0,0.45440673828125,0.45703125,0.60089111328125,0,0,0.26251861453056335,0.5763530731201172,1.6516735553741455,0.40836915373802185,0.405811607837677,0.8635532259941101,0.5908203125,0.533358633518219,1,1 +510,0.4970703125,0.498046875,0.0009765625,0.001941747572815534,1.0,1.0,0.45703125,0.45916748046875,0.6007080078125,0,0,0.26312682032585144,0.5761727690696716,1.6509751081466675,0.4084293842315674,0.40619319677352905,0.863537073135376,0.59130859375,0.5338038206100464,1,1 +511,0.498046875,0.4990234375,0.0009765625,0.0019455252918287938,1.0,1.0,0.45916748046875,0.4620361328125,0.600341796875,0,0,0.2637346684932709,0.5758978128433228,1.6502728462219238,0.4086422920227051,0.4065816402435303,0.8634761571884155,0.59130859375,0.5340052843093872,1,1 +512,0.4990234375,0.5,0.0009765625,0.001949317738791423,1.0,1.0,0.4620361328125,0.46484375,0.60009765625,0,0,0.2643420100212097,0.5758001804351807,1.6495658159255981,0.40851670503616333,0.40697723627090454,0.8635177612304688,0.59375,0.5350438356399536,1,1 +513,0.5,0.5009765625,0.0009765625,0.001953125,1.0,1.0,0.46484375,0.467041015625,0.60003662109375,0,0,0.26494914293289185,0.5755914449691772,1.6488548517227173,0.40879684686660767,0.4073806405067444,0.8634423017501831,0.5927734375,0.5352219939231873,1,1 +514,0.5009765625,0.501953125,0.0009765625,0.0019569471624266144,1.0,1.0,0.467041015625,0.4693603515625,0.59954833984375,0,0,0.26555585861206055,0.5753600597381592,1.6481397151947021,0.4089304208755493,0.40778979659080505,0.8634240627288818,0.59375,0.5354849100112915,1,1 +515,0.501953125,0.5029296875,0.0009765625,0.00196078431372549,1.0,1.0,0.4693603515625,0.472412109375,0.599365234375,0,0,0.26616212725639343,0.5753045082092285,1.6474196910858154,0.4086083769798279,0.40820616483688354,0.8635261058807373,0.595703125,0.5369210839271545,1,1 +516,0.5029296875,0.50390625,0.0009765625,0.0019646365422396855,1.0,1.0,0.472412109375,0.474609375,0.5989990234375,0,0,0.26676827669143677,0.5751071572303772,1.6466953754425049,0.40881213545799255,0.4086293578147888,0.863473117351532,0.59619140625,0.5372377634048462,1,1 +517,0.50390625,0.5048828125,0.0009765625,0.001968503937007874,1.0,1.0,0.474609375,0.47705078125,0.59893798828125,0,0,0.26737403869628906,0.5749337673187256,1.6459670066833496,0.4088708758354187,0.4090583920478821,0.8634624481201172,0.595703125,0.5378755927085876,1,1 +518,0.5048828125,0.505859375,0.0009765625,0.0019723865877712033,1.0,1.0,0.47705078125,0.47906494140625,0.5985107421875,0,0,0.2679795026779175,0.5747048258781433,1.64523446559906,0.40901124477386475,0.409493625164032,0.8634450435638428,0.595703125,0.5381173491477966,1,1 +519,0.505859375,0.5068359375,0.0009765625,0.001976284584980237,1.0,1.0,0.47906494140625,0.48095703125,0.5985107421875,0,0,0.2685844600200653,0.5745725035667419,1.6444975137710571,0.4091198146343231,0.4099343717098236,0.8634245991706848,0.595703125,0.5386718511581421,1,1 +520,0.5068359375,0.5078125,0.0009765625,0.0019801980198019802,1.0,1.0,0.48095703125,0.48333740234375,0.5980224609375,0,0,0.26918917894363403,0.5743275880813599,1.643756628036499,0.40933072566986084,0.41038066148757935,0.8633824586868286,0.595703125,0.5388662815093994,1,1 +521,0.5078125,0.5087890625,0.0009765625,0.001984126984126984,1.0,1.0,0.48333740234375,0.4854736328125,0.5977783203125,0,0,0.26979342103004456,0.5741386413574219,1.6430116891860962,0.4092162251472473,0.4108330011367798,0.8634245991706848,0.59521484375,0.5396972298622131,1,1 +522,0.5087890625,0.509765625,0.0009765625,0.0019880715705765406,1.0,1.0,0.4854736328125,0.488037109375,0.59771728515625,0,0,0.27039727568626404,0.5741347074508667,1.6422615051269531,0.40911442041397095,0.4112916588783264,0.863476574420929,0.59619140625,0.540711522102356,1,1 +523,0.509765625,0.5107421875,0.0009765625,0.00199203187250996,1.0,1.0,0.488037109375,0.4898681640625,0.59771728515625,0,0,0.2710011601448059,0.5739224553108215,1.6415071487426758,0.40915942192077637,0.4117572009563446,0.8634812235832214,0.59619140625,0.541262149810791,1,1 +524,0.5107421875,0.51171875,0.0009765625,0.001996007984031936,1.0,1.0,0.4898681640625,0.4923095703125,0.59765625,0,0,0.2716045677661896,0.5737506151199341,1.6407487392425537,0.40930137038230896,0.4122287333011627,0.8634641170501709,0.59716796875,0.5416274666786194,1,1 +525,0.51171875,0.5126953125,0.0009765625,0.002,1.0,1.0,0.4923095703125,0.49395751953125,0.59747314453125,0,0,0.272207647562027,0.5735344886779785,1.6399860382080078,0.4094005227088928,0.41270536184310913,0.8634403944015503,0.59716796875,0.5421528816223145,1,1 +526,0.5126953125,0.513671875,0.0009765625,0.002004008016032064,1.0,1.0,0.49395751953125,0.49603271484375,0.59735107421875,0,0,0.27281031012535095,0.5733462572097778,1.6392195224761963,0.40961140394210815,0.4131872057914734,0.8634036183357239,0.59716796875,0.54239422082901,1,1 +527,0.513671875,0.5146484375,0.0009765625,0.002008032128514056,1.0,1.0,0.49603271484375,0.498291015625,0.596923828125,0,0,0.2734125852584839,0.5731762051582336,1.638448715209961,0.4097169041633606,0.4136747717857361,0.8634045124053955,0.59765625,0.5429240465164185,1,1 +528,0.5146484375,0.515625,0.0009765625,0.002012072434607646,1.0,1.0,0.498291015625,0.50030517578125,0.59686279296875,0,0,0.27401453256607056,0.5728921890258789,1.6376739740371704,0.40987229347229004,0.41416701674461365,0.8633652925491333,0.59716796875,0.5431128740310669,1,1 +529,0.515625,0.5166015625,0.0009765625,0.0020161290322580645,1.0,1.0,0.50030517578125,0.50250244140625,0.596923828125,0,0,0.2746158838272095,0.5726366639137268,1.6368956565856934,0.4101845622062683,0.41466569900512695,0.8632957935333252,0.59765625,0.5432111024856567,1,1 +530,0.5166015625,0.517578125,0.0009765625,0.00202020202020202,1.0,1.0,0.50250244140625,0.504150390625,0.59686279296875,0,0,0.2752166986465454,0.5726308822631836,1.6361117362976074,0.40981078147888184,0.4151693284511566,0.8634080290794373,0.59765625,0.5447322130203247,1,1 +531,0.517578125,0.5185546875,0.0009765625,0.0020242914979757085,1.0,1.0,0.504150390625,0.50634765625,0.59661865234375,0,0,0.27581754326820374,0.5724220275878906,1.6353240013122559,0.40998128056526184,0.41567733883857727,0.8633801937103271,0.5986328125,0.5450032353401184,1,1 +532,0.5185546875,0.51953125,0.0009765625,0.002028397565922921,1.0,1.0,0.50634765625,0.5081787109375,0.5960693359375,0,0,0.27641797065734863,0.5721834897994995,1.6345323324203491,0.4101613759994507,0.4161908030509949,0.8633561134338379,0.5986328125,0.5453202724456787,1,1 +533,0.51953125,0.5205078125,0.0009765625,0.0020325203252032522,1.0,1.0,0.5081787109375,0.5107421875,0.5958251953125,0,0,0.27701789140701294,0.5720065832138062,1.633736491203308,0.41030389070510864,0.4167093336582184,0.8633267879486084,0.59912109375,0.5457115173339844,1,1 +534,0.5205078125,0.521484375,0.0009765625,0.002036659877800407,1.0,1.0,0.5107421875,0.512451171875,0.5955810546875,0,0,0.277617484331131,0.5718234777450562,1.6329364776611328,0.4104872941970825,0.4172343611717224,0.8632886409759521,0.59912109375,0.5460946559906006,1,1 +535,0.521484375,0.5224609375,0.0009765625,0.0020408163265306124,1.0,1.0,0.512451171875,0.51361083984375,0.595458984375,0,0,0.278216689825058,0.5715834498405457,1.6321325302124023,0.4105733633041382,0.4177631139755249,0.8632960915565491,0.6005859375,0.5465257167816162,1,1 +536,0.5224609375,0.5234375,0.0009765625,0.002044989775051125,1.0,1.0,0.51361083984375,0.51531982421875,0.59527587890625,0,0,0.2788153886795044,0.5713667869567871,1.6313245296478271,0.4107648730278015,0.4182969331741333,0.8632456064224243,0.60107421875,0.5467783212661743,1,1 +537,0.5234375,0.5244140625,0.0009765625,0.0020491803278688526,1.0,1.0,0.51531982421875,0.51708984375,0.5953369140625,0,0,0.279413640499115,0.5712125897407532,1.6305122375488281,0.4108279347419739,0.4188358783721924,0.8632393479347229,0.6015625,0.5473906993865967,1,1 +538,0.5244140625,0.525390625,0.0009765625,0.002053388090349076,1.0,1.0,0.51708984375,0.518798828125,0.59466552734375,0,0,0.2800115942955017,0.5710068941116333,1.6296958923339844,0.4110371172428131,0.41937893629074097,0.8631967902183533,0.60107421875,0.5476785898208618,1,1 +539,0.525390625,0.5263671875,0.0009765625,0.00205761316872428,1.0,1.0,0.518798828125,0.52032470703125,0.5947265625,0,0,0.280609130859375,0.5708231925964355,1.6288752555847168,0.41106292605400085,0.4199266731739044,0.863206684589386,0.60205078125,0.5481595396995544,1,1 +540,0.5263671875,0.52734375,0.0009765625,0.002061855670103093,1.0,1.0,0.52032470703125,0.52191162109375,0.5946044921875,0,0,0.28120625019073486,0.5706608295440674,1.628050446510315,0.41102170944213867,0.4204789400100708,0.8632297515869141,0.60400390625,0.5488934516906738,1,1 +541,0.52734375,0.5283203125,0.0009765625,0.002066115702479339,1.0,1.0,0.52191162109375,0.523193359375,0.594482421875,0,0,0.28180307149887085,0.5703990459442139,1.6272218227386475,0.4113590121269226,0.4210357367992401,0.8631532192230225,0.603515625,0.548957109451294,1,1 +542,0.5283203125,0.529296875,0.0009765625,0.002070393374741201,1.0,1.0,0.523193359375,0.5247802734375,0.59423828125,0,0,0.28239935636520386,0.5703741312026978,1.6263880729675293,0.4112587571144104,0.42159682512283325,0.8631930947303772,0.60498046875,0.5499601364135742,1,1 +543,0.529296875,0.5302734375,0.0009765625,0.002074688796680498,1.0,1.0,0.5247802734375,0.52655029296875,0.59405517578125,0,0,0.2829955816268921,0.5701716542243958,1.625550389289856,0.41128501296043396,0.4221632182598114,0.8632004261016846,0.607421875,0.5505000948905945,1,1 +544,0.5302734375,0.53125,0.0009765625,0.002079002079002079,1.0,1.0,0.52655029296875,0.52777099609375,0.59393310546875,0,0,0.2835913896560669,0.5700535774230957,1.6247079372406006,0.4111953675746918,0.4227350950241089,0.8632283806800842,0.607421875,0.5513362884521484,1,1 +545,0.53125,0.5322265625,0.0009765625,0.0020833333333333333,1.0,1.0,0.52777099609375,0.5294189453125,0.59375,0,0,0.2841869294643402,0.5698538422584534,1.6238614320755005,0.4113476872444153,0.4233125150203705,0.8632010817527771,0.6083984375,0.5517810583114624,1,1 +546,0.5322265625,0.533203125,0.0009765625,0.0020876826722338203,1.0,1.0,0.5294189453125,0.53118896484375,0.5936279296875,0,0,0.2847820520401001,0.5696711540222168,1.6230107545852661,0.4115256667137146,0.4238938093185425,0.8631657958030701,0.60986328125,0.5520067811012268,1,1 +547,0.533203125,0.5341796875,0.0009765625,0.0020920502092050207,1.0,1.0,0.53118896484375,0.53240966796875,0.59326171875,0,0,0.2853768467903137,0.5693695545196533,1.6221565008163452,0.41177719831466675,0.42447924613952637,0.8631092309951782,0.609375,0.5521641373634338,1,1 +548,0.5341796875,0.53515625,0.0009765625,0.0020964360587002098,1.0,1.0,0.53240966796875,0.533203125,0.5933837890625,0,0,0.28597092628479004,0.5691756010055542,1.6212981939315796,0.41205140948295593,0.42506855726242065,0.8630485534667969,0.609375,0.5523546934127808,1,1 +549,0.53515625,0.5361328125,0.0009765625,0.0021008403361344537,1.0,1.0,0.533203125,0.534912109375,0.59320068359375,0,0,0.2865646779537201,0.5690533518791199,1.620435357093811,0.41187065839767456,0.42566177248954773,0.8631033301353455,0.609375,0.5533475279808044,1,1 +550,0.5361328125,0.537109375,0.0009765625,0.002105263157894737,1.0,1.0,0.534912109375,0.5362548828125,0.59320068359375,0,0,0.28715813159942627,0.5687785148620605,1.6195687055587769,0.4120636284351349,0.42625999450683594,0.8630553483963013,0.609375,0.5535588264465332,1,1 +551,0.537109375,0.5380859375,0.0009765625,0.002109704641350211,1.0,1.0,0.5362548828125,0.53802490234375,0.5928955078125,0,0,0.2877510190010071,0.5686390399932861,1.6186976432800293,0.4122350811958313,0.4268631935119629,0.8630146980285645,0.60888671875,0.5540037155151367,1,1 +552,0.5380859375,0.5390625,0.0009765625,0.0021141649048625794,1.0,1.0,0.53802490234375,0.5391845703125,0.59283447265625,0,0,0.288343608379364,0.5684148073196411,1.6178226470947266,0.41235238313674927,0.42747071385383606,0.8629802465438843,0.609375,0.5543745160102844,1,1 +553,0.5390625,0.5400390625,0.0009765625,0.00211864406779661,1.0,1.0,0.5391845703125,0.54022216796875,0.5924072265625,0,0,0.28893572092056274,0.5682599544525146,1.6169432401657104,0.41239839792251587,0.4280816912651062,0.862968385219574,0.60888671875,0.5550187826156616,1,1 +554,0.5400390625,0.541015625,0.0009765625,0.0021231422505307855,1.0,1.0,0.54022216796875,0.54150390625,0.5924072265625,0,0,0.2895275056362152,0.568017303943634,1.6160600185394287,0.412589967250824,0.4286956489086151,0.8629076480865479,0.609375,0.5552046895027161,1,1 +555,0.541015625,0.5419921875,0.0009765625,0.002127659574468085,1.0,1.0,0.54150390625,0.5423583984375,0.592041015625,0,0,0.2901187837123871,0.5677812099456787,1.615173101425171,0.4129384756088257,0.4293128252029419,0.862811803817749,0.60986328125,0.555364727973938,1,1 +556,0.5419921875,0.54296875,0.0009765625,0.0021321961620469083,1.0,1.0,0.5423583984375,0.5435791015625,0.591796875,0,0,0.29070955514907837,0.5675303339958191,1.6142821311950684,0.4130750894546509,0.4299333691596985,0.8627734184265137,0.60986328125,0.5557488203048706,1,1 +557,0.54296875,0.5439453125,0.0009765625,0.002136752136752137,1.0,1.0,0.5435791015625,0.54449462890625,0.59136962890625,0,0,0.2912997901439667,0.5673224329948425,1.6133872270584106,0.41332924365997314,0.430557519197464,0.86271071434021,0.60986328125,0.5559561252593994,1,1 +558,0.5439453125,0.544921875,0.0009765625,0.0021413276231263384,1.0,1.0,0.54449462890625,0.5452880859375,0.59112548828125,0,0,0.29188957810401917,0.5671302676200867,1.6124881505966187,0.413394033908844,0.4311840236186981,0.8627013564109802,0.60986328125,0.5564018487930298,1,1 +559,0.544921875,0.5458984375,0.0009765625,0.002145922746781116,1.0,1.0,0.5452880859375,0.54656982421875,0.59112548828125,0,0,0.2924789786338806,0.5671816468238831,1.6115834712982178,0.41297805309295654,0.43181508779525757,0.8627931475639343,0.6103515625,0.5578980445861816,1,1 +560,0.5458984375,0.546875,0.0009765625,0.002150537634408602,1.0,1.0,0.54656982421875,0.54754638671875,0.5909423828125,0,0,0.29306846857070923,0.5669589638710022,1.6106747388839722,0.4132479429244995,0.43244996666908264,0.8627279996871948,0.611328125,0.5581161975860596,1,1 +561,0.546875,0.5478515625,0.0009765625,0.0021551724137931034,1.0,1.0,0.54754638671875,0.5484619140625,0.59075927734375,0,0,0.29365748167037964,0.5666950941085815,1.6097623109817505,0.413577139377594,0.4330875873565674,0.8626358509063721,0.611328125,0.5581933259963989,1,1 +562,0.5478515625,0.548828125,0.0009765625,0.0021598272138228943,1.0,1.0,0.5484619140625,0.549560546875,0.590087890625,0,0,0.2942459285259247,0.5664065480232239,1.6088465452194214,0.41385558247566223,0.4337281584739685,0.8625535368919373,0.611328125,0.5582444667816162,1,1 +563,0.548828125,0.5498046875,0.0009765625,0.0021645021645021645,1.0,1.0,0.549560546875,0.5504150390625,0.5897216796875,0,0,0.2948337495326996,0.5662198066711426,1.607926368713379,0.41395100951194763,0.4343716502189636,0.8625160455703735,0.61279296875,0.5587626099586487,1,1 +564,0.5498046875,0.55078125,0.0009765625,0.0021691973969631237,1.0,1.0,0.5504150390625,0.55133056640625,0.5897216796875,0,0,0.29542115330696106,0.5659438371658325,1.6070027351379395,0.4143015742301941,0.43501755595207214,0.8624073266983032,0.61328125,0.5588136315345764,1,1 +565,0.55078125,0.5517578125,0.0009765625,0.002173913043478261,1.0,1.0,0.55133056640625,0.5521240234375,0.589599609375,0,0,0.2960079610347748,0.5657641887664795,1.6060748100280762,0.4142259657382965,0.43566614389419556,0.8624387383460999,0.61279296875,0.5595525503158569,1,1 +566,0.5517578125,0.552734375,0.0009765625,0.002178649237472767,1.0,1.0,0.5521240234375,0.55352783203125,0.58935546875,0,0,0.29659441113471985,0.5656331777572632,1.6051422357559204,0.41423922777175903,0.4363180994987488,0.862432062625885,0.61376953125,0.5601854920387268,1,1 +567,0.552734375,0.5537109375,0.0009765625,0.002183406113537118,1.0,1.0,0.55352783203125,0.5543212890625,0.5889892578125,0,0,0.29718053340911865,0.5654329061508179,1.60420560836792,0.41446661949157715,0.43697285652160645,0.8623580932617188,0.61328125,0.5604748129844666,1,1 +568,0.5537109375,0.5546875,0.0009765625,0.002188183807439825,1.0,1.0,0.5543212890625,0.5550537109375,0.58880615234375,0,0,0.29776620864868164,0.5651763677597046,1.603265404701233,0.41483864188194275,0.437630832195282,0.8622402548789978,0.61279296875,0.5606299638748169,1,1 +569,0.5546875,0.5556640625,0.0009765625,0.0021929824561403508,1.0,1.0,0.5550537109375,0.5560302734375,0.5887451171875,0,0,0.29835137724876404,0.5651208162307739,1.6023200750350952,0.414639949798584,0.43829232454299927,0.8622854948043823,0.61376953125,0.561654806137085,1,1 +570,0.5556640625,0.556640625,0.0009765625,0.002197802197802198,1.0,1.0,0.5560302734375,0.55718994140625,0.58868408203125,0,0,0.2989363968372345,0.5648165941238403,1.6013710498809814,0.41487470269203186,0.438957154750824,0.8622097969055176,0.61328125,0.5617892146110535,1,1 +571,0.556640625,0.5576171875,0.0009765625,0.0022026431718061676,1.0,1.0,0.55718994140625,0.5577392578125,0.58843994140625,0,0,0.2995207607746124,0.5645795464515686,1.6004185676574707,0.41525474190711975,0.4396246075630188,0.8620802164077759,0.6142578125,0.5619653463363647,1,1 +572,0.5576171875,0.55859375,0.0009765625,0.002207505518763797,1.0,1.0,0.5577392578125,0.55828857421875,0.588134765625,0,0,0.300104558467865,0.5643352270126343,1.5994622707366943,0.41552087664604187,0.44029441475868225,0.8620060682296753,0.61376953125,0.5620543956756592,1,1 +573,0.55859375,0.5595703125,0.0009765625,0.0022123893805309734,1.0,1.0,0.55828857421875,0.55938720703125,0.587646484375,0,0,0.30068787932395935,0.564109206199646,1.5985019207000732,0.4156099557876587,0.4409671723842621,0.8619774580001831,0.61328125,0.5625348687171936,1,1 +574,0.5595703125,0.560546875,0.0009765625,0.0022172949002217295,1.0,1.0,0.55938720703125,0.56048583984375,0.5875244140625,0,0,0.30127066373825073,0.5641919374465942,1.5975358486175537,0.4152233898639679,0.4416435658931732,0.8620737791061401,0.615234375,0.5639994144439697,1,1 +575,0.560546875,0.5615234375,0.0009765625,0.0022222222222222222,1.0,1.0,0.56048583984375,0.56121826171875,0.58740234375,0,0,0.30185362696647644,0.5639829039573669,1.5965654850006104,0.4153863787651062,0.44232308864593506,0.8620359897613525,0.615234375,0.564441442489624,1,1 +576,0.5615234375,0.5625,0.0009765625,0.0022271714922048997,1.0,1.0,0.56121826171875,0.56207275390625,0.5872802734375,0,0,0.30243611335754395,0.5637469291687012,1.5955911874771118,0.41565537452697754,0.4430047869682312,0.8619598746299744,0.61572265625,0.5646398067474365,1,1 +577,0.5625,0.5634765625,0.0009765625,0.002232142857142857,1.0,1.0,0.56207275390625,0.56231689453125,0.58697509765625,0,0,0.30301815271377563,0.5634777545928955,1.5946134328842163,0.4159936308860779,0.44368886947631836,0.8618495464324951,0.615234375,0.5645698308944702,1,1 +578,0.5634765625,0.564453125,0.0009765625,0.0022371364653243847,1.0,1.0,0.56231689453125,0.56329345703125,0.5867919921875,0,0,0.3035995364189148,0.5632182359695435,1.5936319828033447,0.41621387004852295,0.4443753659725189,0.8617768883705139,0.61572265625,0.5648748278617859,1,1 +579,0.564453125,0.5654296875,0.0009765625,0.002242152466367713,1.0,1.0,0.56329345703125,0.56427001953125,0.586669921875,0,0,0.3041803240776062,0.563056230545044,1.5926462411880493,0.4162326157093048,0.44506439566612244,0.8617708683013916,0.6162109375,0.5656028389930725,1,1 +580,0.5654296875,0.56640625,0.0009765625,0.0022471910112359553,1.0,1.0,0.56427001953125,0.56494140625,0.58642578125,0,0,0.30476075410842896,0.5628132820129395,1.5916566848754883,0.4165317416191101,0.4457564055919647,0.8616857528686523,0.615234375,0.565766453742981,1,1 +581,0.56640625,0.5673828125,0.0009765625,0.0022522522522522522,1.0,1.0,0.56494140625,0.56536865234375,0.58612060546875,0,0,0.30534064769744873,0.5626246929168701,1.590662956237793,0.41677772998809814,0.4464508891105652,0.861617922782898,0.61767578125,0.566055178642273,1,1 +582,0.5673828125,0.568359375,0.0009765625,0.002257336343115124,1.0,1.0,0.56536865234375,0.5657958984375,0.58599853515625,0,0,0.3059201240539551,0.5623818039894104,1.589665412902832,0.4168691635131836,0.447147011756897,0.8615847826004028,0.61669921875,0.5665069818496704,1,1 +583,0.568359375,0.5693359375,0.0009765625,0.0022624434389140274,1.0,1.0,0.5657958984375,0.566650390625,0.58563232421875,0,0,0.30649903416633606,0.5621725916862488,1.588663935661316,0.41707366704940796,0.44784438610076904,0.8615226149559021,0.6171875,0.5668627023696899,1,1 +584,0.5693359375,0.5703125,0.0009765625,0.0022675736961451248,1.0,1.0,0.566650390625,0.56707763671875,0.5853271484375,0,0,0.3070774972438812,0.5619385838508606,1.5876586437225342,0.41735297441482544,0.4485437273979187,0.8614299297332764,0.61767578125,0.5670470595359802,1,1 +585,0.5703125,0.5712890625,0.0009765625,0.0022727272727272726,1.0,1.0,0.56707763671875,0.567626953125,0.58489990234375,0,0,0.307655394077301,0.5616136789321899,1.5866501331329346,0.4176831841468811,0.44924527406692505,0.8613135814666748,0.61767578125,0.5671038627624512,1,1 +586,0.5712890625,0.572265625,0.0009765625,0.002277904328018223,1.0,1.0,0.567626953125,0.56817626953125,0.58477783203125,0,0,0.3082325756549835,0.5614079236984253,1.5856375694274902,0.4178383946418762,0.44994887709617615,0.8612854480743408,0.61865234375,0.5674518346786499,1,1 +587,0.572265625,0.5732421875,0.0009765625,0.00228310502283105,1.0,1.0,0.56817626953125,0.568603515625,0.5841064453125,0,0,0.3088092803955078,0.5611590147018433,1.5846214294433594,0.4181910455226898,0.45065420866012573,0.8611794710159302,0.61865234375,0.5676697492599487,1,1 +588,0.5732421875,0.57421875,0.0009765625,0.002288329519450801,1.0,1.0,0.568603515625,0.5694580078125,0.58392333984375,0,0,0.30938541889190674,0.560987114906311,1.5836009979248047,0.4183926582336426,0.45136189460754395,0.861116886138916,0.6181640625,0.568016767501831,1,1 +589,0.57421875,0.5751953125,0.0009765625,0.0022935779816513763,1.0,1.0,0.5694580078125,0.570068359375,0.58367919921875,0,0,0.3099611699581146,0.5608723163604736,1.582575798034668,0.41824203729629517,0.4520720839500427,0.8611419200897217,0.6201171875,0.5689595341682434,1,1 +590,0.5751953125,0.576171875,0.0009765625,0.0022988505747126436,1.0,1.0,0.570068359375,0.57073974609375,0.58380126953125,0,0,0.3105366826057434,0.5606163740158081,1.5815467834472656,0.4185069501399994,0.45278480648994446,0.8610509037971497,0.61865234375,0.569186806678772,1,1 +591,0.576171875,0.5771484375,0.0009765625,0.002304147465437788,1.0,1.0,0.57073974609375,0.571533203125,0.58349609375,0,0,0.31111156940460205,0.5603762865066528,1.5805139541625977,0.4188077747821808,0.4535001516342163,0.860975444316864,0.61865234375,0.5693252086639404,1,1 +592,0.5771484375,0.578125,0.0009765625,0.0023094688221709007,1.0,1.0,0.571533203125,0.5721435546875,0.5831298828125,0,0,0.3116858899593353,0.560145378112793,1.5794777870178223,0.4191771149635315,0.45421791076660156,0.8608583211898804,0.61865234375,0.5694321393966675,1,1 +593,0.578125,0.5791015625,0.0009765625,0.0023148148148148147,1.0,1.0,0.5721435546875,0.57269287109375,0.58258056640625,0,0,0.312259703874588,0.5597809553146362,1.5784382820129395,0.41947025060653687,0.4549376368522644,0.8607618808746338,0.61865234375,0.569458544254303,1,1 +594,0.5791015625,0.580078125,0.0009765625,0.002320185614849188,1.0,1.0,0.57269287109375,0.57354736328125,0.582275390625,0,0,0.31283268332481384,0.5595772862434387,1.5773946046829224,0.41966712474823,0.4556593894958496,0.8607109785079956,0.61865234375,0.5699266791343689,1,1 +595,0.580078125,0.5810546875,0.0009765625,0.002325581395348837,1.0,1.0,0.57354736328125,0.57366943359375,0.58221435546875,0,0,0.3134051561355591,0.5593454241752625,1.5763473510742188,0.41992712020874023,0.4563835859298706,0.8606337308883667,0.61865234375,0.5701767206192017,1,1 +596,0.5810546875,0.58203125,0.0009765625,0.002331002331002331,1.0,1.0,0.57366943359375,0.57470703125,0.58209228515625,0,0,0.31397712230682373,0.5592654347419739,1.5752949714660645,0.4197859764099121,0.4571102261543274,0.8606646060943604,0.61865234375,0.5710901021957397,1,1 +597,0.58203125,0.5830078125,0.0009765625,0.002336448598130841,1.0,1.0,0.57470703125,0.5751953125,0.58197021484375,0,0,0.31454887986183167,0.5592069029808044,1.5742377042770386,0.419827938079834,0.45783960819244385,0.8606512546539307,0.619140625,0.5717592239379883,1,1 +598,0.5830078125,0.583984375,0.0009765625,0.00234192037470726,1.0,1.0,0.5751953125,0.5758056640625,0.58172607421875,0,0,0.31512051820755005,0.5590620040893555,1.5731759071350098,0.42004066705703735,0.45857149362564087,0.8605735301971436,0.61865234375,0.5722507238388062,1,1 +599,0.583984375,0.5849609375,0.0009765625,0.002347417840375587,1.0,1.0,0.5758056640625,0.57611083984375,0.58154296875,0,0,0.31569182872772217,0.5587491393089294,1.5721107721328735,0.42017173767089844,0.45930570363998413,0.860531210899353,0.619140625,0.5725444555282593,1,1 +600,0.5849609375,0.5859375,0.0009765625,0.002352941176470588,1.0,1.0,0.57611083984375,0.57666015625,0.58135986328125,0,0,0.3162623643875122,0.5585386753082275,1.5710418224334717,0.420415461063385,0.4600421190261841,0.8604625463485718,0.61962890625,0.5728302001953125,1,1 +601,0.5859375,0.5869140625,0.0009765625,0.0023584905660377358,1.0,1.0,0.57666015625,0.5771484375,0.581298828125,0,0,0.31683242321014404,0.5582976341247559,1.5699689388275146,0.42074763774871826,0.4607800841331482,0.8603799343109131,0.61962890625,0.5729615092277527,1,1 +602,0.5869140625,0.587890625,0.0009765625,0.002364066193853428,1.0,1.0,0.5771484375,0.5777587890625,0.58087158203125,0,0,0.3174019157886505,0.5579907894134521,1.5688929557800293,0.42110249400138855,0.46151983737945557,0.8602735996246338,0.61962890625,0.5730182528495789,1,1 +603,0.587890625,0.5888671875,0.0009765625,0.002369668246445498,1.0,1.0,0.5777587890625,0.57794189453125,0.58074951171875,0,0,0.3179706633090973,0.5577633380889893,1.5678131580352783,0.42142096161842346,0.46226146817207336,0.860183835029602,0.61962890625,0.5732290744781494,1,1 +604,0.5888671875,0.58984375,0.0009765625,0.0023752969121140144,1.0,1.0,0.57794189453125,0.57843017578125,0.58050537109375,0,0,0.3185389041900635,0.5576454401016235,1.5667285919189453,0.4213571846485138,0.46300509572029114,0.8602002859115601,0.6201171875,0.5740635991096497,1,1 +605,0.58984375,0.5908203125,0.0009765625,0.002380952380952381,1.0,1.0,0.57843017578125,0.5791015625,0.5802001953125,0,0,0.3191068768501282,0.5573779344558716,1.5656405687332153,0.42179059982299805,0.4637508690357208,0.8600739240646362,0.62060546875,0.5740964412689209,1,1 +606,0.5908203125,0.591796875,0.0009765625,0.002386634844868735,1.0,1.0,0.5791015625,0.57940673828125,0.58001708984375,0,0,0.31967419385910034,0.5571067333221436,1.5645488500595093,0.42191818356513977,0.4644978642463684,0.8600224256515503,0.619140625,0.57445228099823,1,1 +607,0.591796875,0.5927734375,0.0009765625,0.0023923444976076554,1.0,1.0,0.57940673828125,0.57977294921875,0.57989501953125,0,0,0.32024085521698,0.556865394115448,1.563453197479248,0.42210352420806885,0.46524667739868164,0.859970211982727,0.61962890625,0.5747742056846619,1,1 +608,0.5927734375,0.59375,0.0009765625,0.002398081534772182,1.0,1.0,0.57977294921875,0.58026123046875,0.57977294921875,0,0,0.32080692052841187,0.5565937757492065,1.5623542070388794,0.4225233793258667,0.4659973084926605,0.8598354458808899,0.6201171875,0.5748153328895569,1,1 +609,0.59375,0.5947265625,0.0009765625,0.002403846153846154,1.0,1.0,0.58026123046875,0.58074951171875,0.5794677734375,0,0,0.321372389793396,0.556338906288147,1.5612516403198242,0.42288511991500854,0.46674931049346924,0.8597239255905151,0.6201171875,0.5749194622039795,1,1 +610,0.5947265625,0.595703125,0.0009765625,0.0024096385542168677,1.0,1.0,0.58074951171875,0.58135986328125,0.57891845703125,0,0,0.3219372034072876,0.556043267250061,1.5601458549499512,0.4232373833656311,0.4675025939941406,0.8596134781837463,0.61962890625,0.5749562382698059,1,1 +611,0.595703125,0.5966796875,0.0009765625,0.0024154589371980675,1.0,1.0,0.58135986328125,0.5819091796875,0.5791015625,0,0,0.3225013017654419,0.5559848546981812,1.5590345859527588,0.42300599813461304,0.4682583212852478,0.8596612811088562,0.62109375,0.5761260986328125,1,1 +612,0.5966796875,0.59765625,0.0009765625,0.002421307506053269,1.0,1.0,0.5819091796875,0.58251953125,0.57879638671875,0,0,0.32306528091430664,0.5557180643081665,1.5579198598861694,0.4234013557434082,0.46901553869247437,0.8595421314239502,0.62109375,0.5761730074882507,1,1 +613,0.59765625,0.5986328125,0.0009765625,0.0024271844660194173,1.0,1.0,0.58251953125,0.58306884765625,0.57843017578125,0,0,0.32362860441207886,0.5554500818252563,1.5568015575408936,0.4237596392631531,0.4697742462158203,0.8594502210617065,0.61962890625,0.5762753486633301,1,1 +614,0.5986328125,0.599609375,0.0009765625,0.0024330900243309003,1.0,1.0,0.58306884765625,0.58355712890625,0.57806396484375,0,0,0.32419127225875854,0.5551731586456299,1.5556801557540894,0.4242210388183594,0.47053444385528564,0.8593135476112366,0.6201171875,0.5763112306594849,1,1 +615,0.599609375,0.6005859375,0.0009765625,0.0024390243902439024,1.0,1.0,0.58355712890625,0.58392333984375,0.57757568359375,0,0,0.3247532546520233,0.5549701452255249,1.5545543432235718,0.42419278621673584,0.4712962508201599,0.8593080043792725,0.62109375,0.5769085884094238,1,1 +616,0.6005859375,0.6015625,0.0009765625,0.0024449877750611247,1.0,1.0,0.58392333984375,0.58453369140625,0.57733154296875,0,0,0.3253147602081299,0.5546119809150696,1.5534255504608154,0.42463135719299316,0.472059428691864,0.8591793775558472,0.62109375,0.5768647193908691,1,1 +617,0.6015625,0.6025390625,0.0009765625,0.0024509803921568627,1.0,1.0,0.58453369140625,0.58465576171875,0.576904296875,0,0,0.3258754014968872,0.5543316006660461,1.5522935390472412,0.4250696003437042,0.4728238880634308,0.8590607643127441,0.62109375,0.5768835544586182,1,1 +618,0.6025390625,0.603515625,0.0009765625,0.002457002457002457,1.0,1.0,0.58465576171875,0.5850830078125,0.57666015625,0,0,0.3264353275299072,0.5540781021118164,1.5511581897735596,0.42536962032318115,0.47358959913253784,0.8589748740196228,0.62060546875,0.5770816802978516,1,1 +619,0.603515625,0.6044921875,0.0009765625,0.0024630541871921183,1.0,1.0,0.5850830078125,0.5850830078125,0.5767822265625,0,0,0.3269946575164795,0.5541728734970093,1.550015926361084,0.42489928007125854,0.4743576645851135,0.8590993881225586,0.6220703125,0.5785812139511108,1,1 +620,0.6044921875,0.60546875,0.0009765625,0.0024691358024691358,1.0,1.0,0.5850830078125,0.58544921875,0.57647705078125,0,0,0.32755419611930847,0.5539196729660034,1.5488699674606323,0.42519694566726685,0.47512733936309814,0.8590049147605896,0.6220703125,0.5788384675979614,1,1 +621,0.60546875,0.6064453125,0.0009765625,0.0024752475247524753,1.0,1.0,0.58544921875,0.5855712890625,0.5762939453125,0,0,0.3281131386756897,0.553651750087738,1.5477206707000732,0.42559850215911865,0.475898414850235,0.8588946461677551,0.6220703125,0.578842282295227,1,1 +622,0.6064453125,0.607421875,0.0009765625,0.0024813895781637717,1.0,1.0,0.5855712890625,0.585693359375,0.57611083984375,0,0,0.328671395778656,0.5534321069717407,1.546567440032959,0.4258407950401306,0.47667115926742554,0.8588123321533203,0.6220703125,0.5791736841201782,1,1 +623,0.607421875,0.6083984375,0.0009765625,0.0024875621890547263,1.0,1.0,0.585693359375,0.5859375,0.57623291015625,0,0,0.32922911643981934,0.5531513690948486,1.5454108715057373,0.4261029362678528,0.47744494676589966,0.8587352633476257,0.62158203125,0.5793511867523193,1,1 +624,0.6083984375,0.609375,0.0009765625,0.0024937655860349127,1.0,1.0,0.5859375,0.58599853515625,0.57635498046875,0,0,0.32978612184524536,0.5529114007949829,1.54425048828125,0.42639923095703125,0.4782196879386902,0.8586381673812866,0.62255859375,0.5796740055084229,1,1 +625,0.609375,0.6103515625,0.0009765625,0.0025,1.0,1.0,0.58599853515625,0.5863037109375,0.57623291015625,0,0,0.3303425908088684,0.5526022911071777,1.5430870056152344,0.42685091495513916,0.4789949059486389,0.8584964871406555,0.6220703125,0.5796020030975342,1,1 +626,0.6103515625,0.611328125,0.0009765625,0.002506265664160401,1.0,1.0,0.5863037109375,0.5865478515625,0.5760498046875,0,0,0.3308981955051422,0.5523310899734497,1.5419199466705322,0.427206814289093,0.47977113723754883,0.858394980430603,0.6220703125,0.5797414779663086,1,1 +627,0.611328125,0.6123046875,0.0009765625,0.002512562814070352,1.0,1.0,0.5865478515625,0.5865478515625,0.576171875,0,0,0.3314531743526459,0.5521292686462402,1.5407485961914062,0.4272400140762329,0.48054826259613037,0.858367919921875,0.6220703125,0.5804077386856079,1,1 +628,0.6123046875,0.61328125,0.0009765625,0.0025188916876574307,1.0,1.0,0.5865478515625,0.5865478515625,0.575927734375,0,0,0.33200764656066895,0.5519117712974548,1.5395734310150146,0.42751455307006836,0.4813261032104492,0.858282208442688,0.62255859375,0.5806273221969604,1,1 +629,0.61328125,0.6142578125,0.0009765625,0.0025252525252525255,1.0,1.0,0.5865478515625,0.5867919921875,0.57568359375,0,0,0.33256155252456665,0.551618218421936,1.5383951663970947,0.4279341697692871,0.48210445046424866,0.8581481575965881,0.62255859375,0.5806385278701782,1,1 +630,0.6142578125,0.615234375,0.0009765625,0.002531645569620253,1.0,1.0,0.5867919921875,0.58721923828125,0.57562255859375,0,0,0.33311474323272705,0.5515351295471191,1.5372114181518555,0.4278584420681,0.48288440704345703,0.858161211013794,0.62255859375,0.5814703702926636,1,1 +631,0.615234375,0.6162109375,0.0009765625,0.0025380710659898475,1.0,1.0,0.58721923828125,0.587646484375,0.57550048828125,0,0,0.33366766571998596,0.551295280456543,1.5360240936279297,0.42814964056015015,0.4836651086807251,0.8580632209777832,0.62255859375,0.5817773938179016,1,1 +632,0.6162109375,0.6171875,0.0009765625,0.002544529262086514,1.0,1.0,0.587646484375,0.58795166015625,0.57537841796875,0,0,0.3342200517654419,0.5509963035583496,1.5348334312438965,0.4285541772842407,0.48444610834121704,0.8579262495040894,0.62255859375,0.5818416476249695,1,1 +633,0.6171875,0.6181640625,0.0009765625,0.002551020408163265,1.0,1.0,0.58795166015625,0.58807373046875,0.5750732421875,0,0,0.33477166295051575,0.550697922706604,1.5336395502090454,0.42888471484184265,0.48522713780403137,0.8578243255615234,0.62353515625,0.5820087194442749,1,1 +634,0.6181640625,0.619140625,0.0009765625,0.0025575447570332483,1.0,1.0,0.58807373046875,0.58843994140625,0.5745849609375,0,0,0.3353224992752075,0.5504730343818665,1.5324418544769287,0.4291101396083832,0.4860095679759979,0.8577356338500977,0.6240234375,0.5823443531990051,1,1 +635,0.619140625,0.6201171875,0.0009765625,0.002564102564102564,1.0,1.0,0.58843994140625,0.58880615234375,0.574462890625,0,0,0.33587270975112915,0.5502431392669678,1.5312402248382568,0.42940062284469604,0.48679429292678833,0.8576266765594482,0.6240234375,0.5826202630996704,1,1 +636,0.6201171875,0.62109375,0.0009765625,0.002570694087403599,1.0,1.0,0.58880615234375,0.58917236328125,0.57415771484375,0,0,0.3364223837852478,0.550014853477478,1.5300348997116089,0.42967838048934937,0.48758023977279663,0.8575344085693359,0.62451171875,0.5828300714492798,1,1 +637,0.62109375,0.6220703125,0.0009765625,0.002577319587628866,1.0,1.0,0.58917236328125,0.58953857421875,0.573974609375,0,0,0.3369714617729187,0.5499927997589111,1.5288236141204834,0.4294354319572449,0.4883679151535034,0.8575904369354248,0.6259765625,0.5838371515274048,1,1 +638,0.6220703125,0.623046875,0.0009765625,0.002583979328165375,1.0,1.0,0.58953857421875,0.58990478515625,0.57354736328125,0,0,0.3375204801559448,0.549724817276001,1.5276089906692505,0.42983579635620117,0.4891561269760132,0.8574594855308533,0.62548828125,0.5839876532554626,1,1 +639,0.623046875,0.6240234375,0.0009765625,0.0025906735751295338,1.0,1.0,0.58990478515625,0.59014892578125,0.5733642578125,0,0,0.3380688428878784,0.5492057204246521,1.5263928174972534,0.43059980869293213,0.4899446964263916,0.8572190403938293,0.62548828125,0.58350670337677,1,1 +640,0.6240234375,0.625,0.0009765625,0.0025974025974025974,1.0,1.0,0.59014892578125,0.59039306640625,0.57293701171875,0,0,0.3386158049106598,0.5489416122436523,1.5251734256744385,0.43102920055389404,0.49073436856269836,0.8570868968963623,0.62548828125,0.5835776329040527,1,1 +641,0.625,0.6259765625,0.0009765625,0.0026041666666666665,1.0,1.0,0.59039306640625,0.590576171875,0.5728759765625,0,0,0.33916211128234863,0.5486305952072144,1.5239508152008057,0.4313111901283264,0.49152469635009766,0.8569890260696411,0.62548828125,0.5837912559509277,1,1 +642,0.6259765625,0.626953125,0.0009765625,0.0026109660574412533,1.0,1.0,0.590576171875,0.5906982421875,0.57269287109375,0,0,0.339707612991333,0.5483829379081726,1.5227243900299072,0.43158531188964844,0.4923155605792999,0.8568990230560303,0.625,0.5840774774551392,1,1 +643,0.626953125,0.6279296875,0.0009765625,0.002617801047120419,1.0,1.0,0.5906982421875,0.59075927734375,0.57269287109375,0,0,0.34025245904922485,0.5483942031860352,1.5214920043945312,0.43143394589424133,0.4931080937385559,0.8569356203079224,0.6259765625,0.5849778652191162,1,1 +644,0.6279296875,0.62890625,0.0009765625,0.0026246719160104987,1.0,1.0,0.59075927734375,0.59100341796875,0.57196044921875,0,0,0.3407973051071167,0.5481044054031372,1.5202562808990479,0.4318040609359741,0.4939011335372925,0.8568004369735718,0.6279296875,0.5851566195487976,1,1 +645,0.62890625,0.6298828125,0.0009765625,0.002631578947368421,1.0,1.0,0.59100341796875,0.5911865234375,0.57159423828125,0,0,0.34134143590927124,0.5478793382644653,1.5190165042877197,0.4320217967033386,0.4946954846382141,0.8567352890968323,0.626953125,0.5854713320732117,1,1 +646,0.6298828125,0.630859375,0.0009765625,0.002638522427440633,1.0,1.0,0.5911865234375,0.59112548828125,0.57147216796875,0,0,0.341884970664978,0.5475732088088989,1.5177737474441528,0.4324190020561218,0.4954908788204193,0.8566175699234009,0.62646484375,0.5855440497398376,1,1 +647,0.630859375,0.6318359375,0.0009765625,0.0026455026455026454,1.0,1.0,0.59112548828125,0.59136962890625,0.571044921875,0,0,0.34242767095565796,0.5472937822341919,1.5165276527404785,0.4328776001930237,0.4962870478630066,0.8564820289611816,0.62646484375,0.5856581926345825,1,1 +648,0.6318359375,0.6328125,0.0009765625,0.002652519893899204,1.0,1.0,0.59136962890625,0.59161376953125,0.57080078125,0,0,0.3429696559906006,0.5469905138015747,1.5152782201766968,0.43319857120513916,0.49708351492881775,0.8563766479492188,0.626953125,0.5857957601547241,1,1 +649,0.6328125,0.6337890625,0.0009765625,0.0026595744680851063,1.0,1.0,0.59161376953125,0.5916748046875,0.57061767578125,0,0,0.34351080656051636,0.5467084646224976,1.5140256881713867,0.4336477220058441,0.4978805184364319,0.8562378883361816,0.626953125,0.5858670473098755,1,1 +650,0.6337890625,0.634765625,0.0009765625,0.0026666666666666666,1.0,1.0,0.5916748046875,0.5919189453125,0.57037353515625,0,0,0.3440512418746948,0.5464658737182617,1.5127689838409424,0.43381065130233765,0.4986785352230072,0.8561933636665344,0.62744140625,0.5861621499061584,1,1 +651,0.634765625,0.6357421875,0.0009765625,0.00267379679144385,1.0,1.0,0.5919189453125,0.5919189453125,0.57025146484375,0,0,0.34459102153778076,0.5463173985481262,1.5115077495574951,0.43390899896621704,0.49947744607925415,0.856150209903717,0.62744140625,0.5867465734481812,1,1 +652,0.6357421875,0.63671875,0.0009765625,0.002680965147453083,1.0,1.0,0.5919189453125,0.59197998046875,0.5701904296875,0,0,0.34513038396835327,0.5460450649261475,1.5102431774139404,0.4343244731426239,0.5002776980400085,0.8560065031051636,0.6279296875,0.5869036316871643,1,1 +653,0.63671875,0.6376953125,0.0009765625,0.002688172043010753,1.0,1.0,0.59197998046875,0.59210205078125,0.56982421875,0,0,0.3456690311431885,0.5457362532615662,1.5089755058288574,0.43483439087867737,0.5010792016983032,0.8558605909347534,0.6279296875,0.5869233012199402,1,1 +654,0.6376953125,0.638671875,0.0009765625,0.0026954177897574125,1.0,1.0,0.59210205078125,0.5924072265625,0.56964111328125,0,0,0.3462068438529968,0.5455533266067505,1.5077035427093506,0.43494290113449097,0.5018823146820068,0.855827808380127,0.62841796875,0.5873626470565796,1,1 +655,0.638671875,0.6396484375,0.0009765625,0.002702702702702703,1.0,1.0,0.5924072265625,0.59259033203125,0.5693359375,0,0,0.3467441499233246,0.5451960563659668,1.5064284801483154,0.4353436827659607,0.5026867985725403,0.8557015061378479,0.62841796875,0.5874568819999695,1,1 +656,0.6396484375,0.640625,0.0009765625,0.0027100271002710027,1.0,1.0,0.59259033203125,0.59259033203125,0.56878662109375,0,0,0.34728050231933594,0.5448964834213257,1.505150556564331,0.43580758571624756,0.5034919381141663,0.8555480241775513,0.6279296875,0.5874656438827515,1,1 +657,0.640625,0.6416015625,0.0009765625,0.002717391304347826,1.0,1.0,0.59259033203125,0.59271240234375,0.56854248046875,0,0,0.3478160798549652,0.5446022748947144,1.5038691759109497,0.4361380934715271,0.5042973160743713,0.8554345965385437,0.62841796875,0.5876486301422119,1,1 +658,0.6416015625,0.642578125,0.0009765625,0.0027247956403269754,1.0,1.0,0.59271240234375,0.5927734375,0.56842041015625,0,0,0.3483508229255676,0.5443212985992432,1.502584457397461,0.43656349182128906,0.5051028728485107,0.8553100824356079,0.6279296875,0.5877678394317627,1,1 +659,0.642578125,0.6435546875,0.0009765625,0.00273224043715847,1.0,1.0,0.5927734375,0.5928955078125,0.56793212890625,0,0,0.3488847613334656,0.5442109107971191,1.5012948513031006,0.436659038066864,0.5059093236923218,0.8552677631378174,0.6279296875,0.5883398056030273,1,1 +660,0.6435546875,0.64453125,0.0009765625,0.0027397260273972603,1.0,1.0,0.5928955078125,0.5931396484375,0.5673828125,0,0,0.3494184613227844,0.5438547134399414,1.500002145767212,0.4370465874671936,0.5067163705825806,0.8551515936851501,0.62890625,0.5883849859237671,1,1 +661,0.64453125,0.6455078125,0.0009765625,0.0027472527472527475,1.0,1.0,0.5931396484375,0.5931396484375,0.56732177734375,0,0,0.3499511480331421,0.5436170101165771,1.4987058639526367,0.4374038577079773,0.5075243711471558,0.8550451993942261,0.62939453125,0.5886024236679077,1,1 +662,0.6455078125,0.646484375,0.0009765625,0.0027548209366391185,1.0,1.0,0.5931396484375,0.5927734375,0.56695556640625,0,0,0.350483238697052,0.5432852506637573,1.4974069595336914,0.4379362463951111,0.5083329677581787,0.8548866510391235,0.62890625,0.5885951519012451,1,1 +663,0.646484375,0.6474609375,0.0009765625,0.0027624309392265192,1.0,1.0,0.5927734375,0.5928955078125,0.56634521484375,0,0,0.3510143458843231,0.5431071519851685,1.496103286743164,0.4379860758781433,0.5091431736946106,0.8548551797866821,0.6298828125,0.5891928672790527,1,1 +664,0.6474609375,0.6484375,0.0009765625,0.002770083102493075,1.0,1.0,0.5928955078125,0.5931396484375,0.5662841796875,0,0,0.3515450060367584,0.5428509712219238,1.494795799255371,0.4382784962654114,0.5099544525146484,0.8547805547714233,0.63037109375,0.589425802230835,1,1 +665,0.6484375,0.6494140625,0.0009765625,0.002777777777777778,1.0,1.0,0.5931396484375,0.59320068359375,0.5662841796875,0,0,0.35207492113113403,0.5427694320678711,1.4934829473495483,0.43833106756210327,0.5107669830322266,0.8547468185424805,0.630859375,0.5900932550430298,1,1 +666,0.6494140625,0.650390625,0.0009765625,0.002785515320334262,1.0,1.0,0.59320068359375,0.59332275390625,0.566162109375,0,0,0.35260462760925293,0.542463481426239,1.4921672344207764,0.43884652853012085,0.5115804672241211,0.854596734046936,0.63037109375,0.5901018977165222,1,1 +667,0.650390625,0.6513671875,0.0009765625,0.002793296089385475,1.0,1.0,0.59332275390625,0.59332275390625,0.56585693359375,0,0,0.35313349962234497,0.5423775911331177,1.4908456802368164,0.4386458396911621,0.5123953819274902,0.8546383380889893,0.63134765625,0.5909702181816101,1,1 +668,0.6513671875,0.65234375,0.0009765625,0.0028011204481792717,1.0,1.0,0.59332275390625,0.593505859375,0.56591796875,0,0,0.3536621034145355,0.5420756340026855,1.4895210266113281,0.4391578733921051,0.5132105946540833,0.8544905781745911,0.63134765625,0.5909599661827087,1,1 +669,0.65234375,0.6533203125,0.0009765625,0.0028089887640449437,1.0,1.0,0.593505859375,0.5936279296875,0.56573486328125,0,0,0.3541898727416992,0.5417466163635254,1.4881938695907593,0.4396951496601105,0.5140250325202942,0.8543351888656616,0.630859375,0.5909391045570374,1,1 +670,0.6533203125,0.654296875,0.0009765625,0.0028169014084507044,1.0,1.0,0.5936279296875,0.59332275390625,0.56524658203125,0,0,0.3547167181968689,0.5414647459983826,1.4868628978729248,0.4399144947528839,0.5148398280143738,0.854278564453125,0.63037109375,0.5913017392158508,1,1 +671,0.654296875,0.6552734375,0.0009765625,0.002824858757062147,1.0,1.0,0.59332275390625,0.5933837890625,0.56512451171875,0,0,0.3552427887916565,0.5411982536315918,1.4855284690856934,0.4403264820575714,0.5156554579734802,0.8541567325592041,0.630859375,0.5914052724838257,1,1 +672,0.6552734375,0.65625,0.0009765625,0.0028328611898017,1.0,1.0,0.5933837890625,0.59320068359375,0.56475830078125,0,0,0.355768084526062,0.5408924221992493,1.4841909408569336,0.4408011734485626,0.5164719820022583,0.8540338277816772,0.630859375,0.5914840698242188,1,1 +673,0.65625,0.6572265625,0.0009765625,0.002840909090909091,1.0,1.0,0.59320068359375,0.59332275390625,0.56439208984375,0,0,0.3562924861907959,0.5405648946762085,1.4828507900238037,0.4413199722766876,0.5172885656356812,0.8538805246353149,0.63037109375,0.591446578502655,1,1 +674,0.6572265625,0.658203125,0.0009765625,0.002849002849002849,1.0,1.0,0.59332275390625,0.59326171875,0.56396484375,0,0,0.35681599378585815,0.540371298789978,1.4815059900283813,0.44141504168510437,0.5181061029434204,0.8538472652435303,0.6318359375,0.5919206142425537,1,1 +675,0.658203125,0.6591796875,0.0009765625,0.002857142857142857,1.0,1.0,0.59326171875,0.5933837890625,0.56402587890625,0,0,0.35733896493911743,0.5401772260665894,1.480156421661377,0.44151371717453003,0.5189244747161865,0.8538004159927368,0.6328125,0.5924500226974487,1,1 +676,0.6591796875,0.66015625,0.0009765625,0.0028653295128939827,1.0,1.0,0.5933837890625,0.5933837890625,0.56365966796875,0,0,0.35786134004592896,0.5398946404457092,1.4788037538528442,0.4419843256473541,0.5197433829307556,0.8536591529846191,0.6328125,0.5925254225730896,1,1 +677,0.66015625,0.6611328125,0.0009765625,0.0028735632183908046,1.0,1.0,0.5933837890625,0.59320068359375,0.5634765625,0,0,0.3583829402923584,0.5395817756652832,1.4774481058120728,0.4424721598625183,0.5205636024475098,0.8535168170928955,0.6328125,0.5925743579864502,1,1 +678,0.6611328125,0.662109375,0.0009765625,0.002881844380403458,1.0,1.0,0.59320068359375,0.5931396484375,0.56304931640625,0,0,0.35890358686447144,0.5393286347389221,1.4760887622833252,0.44279050827026367,0.5213842988014221,0.8534179925918579,0.6328125,0.5927445888519287,1,1 +679,0.662109375,0.6630859375,0.0009765625,0.002890173410404624,1.0,1.0,0.5931396484375,0.59307861328125,0.5631103515625,0,0,0.35942357778549194,0.5390011072158813,1.4747264385223389,0.4432273507118225,0.522205650806427,0.8532716035842896,0.6328125,0.5928554534912109,1,1 +680,0.6630859375,0.6640625,0.0009765625,0.002898550724637681,1.0,1.0,0.59307861328125,0.593017578125,0.5625,0,0,0.35994258522987366,0.5386843681335449,1.4733612537384033,0.44374096393585205,0.5230270624160767,0.8531210422515869,0.63232421875,0.5928769111633301,1,1 +681,0.6640625,0.6650390625,0.0009765625,0.0029069767441860465,1.0,1.0,0.593017578125,0.59295654296875,0.5621337890625,0,0,0.36046066880226135,0.5384659171104431,1.4719915390014648,0.44388484954833984,0.5238492488861084,0.8530746698379517,0.6337890625,0.5933526754379272,1,1 +682,0.6650390625,0.666015625,0.0009765625,0.0029154518950437317,1.0,1.0,0.59295654296875,0.59307861328125,0.56170654296875,0,0,0.3609781265258789,0.5380921363830566,1.4706196784973145,0.4444599151611328,0.524671196937561,0.8529093265533447,0.63330078125,0.5932403206825256,1,1 +683,0.666015625,0.6669921875,0.0009765625,0.0029239766081871343,1.0,1.0,0.59307861328125,0.59326171875,0.5616455078125,0,0,0.3614944815635681,0.5380078554153442,1.4692418575286865,0.44447070360183716,0.5254942774772644,0.8528953194618225,0.63330078125,0.5939738750457764,1,1 +684,0.6669921875,0.66796875,0.0009765625,0.002932551319648094,1.0,1.0,0.59326171875,0.59320068359375,0.56109619140625,0,0,0.3620105981826782,0.5376320481300354,1.4678616523742676,0.444915235042572,0.5263172388076782,0.8527668714523315,0.63330078125,0.593999981880188,1,1 +685,0.66796875,0.6689453125,0.0009765625,0.0029411764705882353,1.0,1.0,0.59320068359375,0.59283447265625,0.560791015625,0,0,0.3625256419181824,0.5373643636703491,1.466477870941162,0.44534918665885925,0.5271406173706055,0.8526420593261719,0.6328125,0.5941203832626343,1,1 +686,0.6689453125,0.669921875,0.0009765625,0.0029498525073746312,1.0,1.0,0.59283447265625,0.5927734375,0.55999755859375,0,0,0.36303985118865967,0.5370715856552124,1.4650909900665283,0.4458211660385132,0.5279642939567566,0.8525139093399048,0.63232421875,0.5942239761352539,1,1 +687,0.669921875,0.6708984375,0.0009765625,0.0029585798816568047,1.0,1.0,0.5927734375,0.59271240234375,0.55975341796875,0,0,0.3635532259941101,0.5368647575378418,1.4636995792388916,0.44602036476135254,0.5287883281707764,0.8524439334869385,0.6337890625,0.5945898294448853,1,1 +688,0.6708984375,0.671875,0.0009765625,0.002967359050445104,1.0,1.0,0.59271240234375,0.59283447265625,0.55987548828125,0,0,0.3640660047531128,0.5366268157958984,1.4623044729232788,0.44630488753318787,0.5296129584312439,0.8523529171943665,0.63427734375,0.5949091911315918,1,1 +689,0.671875,0.6728515625,0.0009765625,0.002976190476190476,1.0,1.0,0.59283447265625,0.5926513671875,0.5595703125,0,0,0.3645780086517334,0.5362529158592224,1.4609066247940063,0.44678881764411926,0.5304375886917114,0.8522081971168518,0.63330078125,0.5949081182479858,1,1 +690,0.6728515625,0.673828125,0.0009765625,0.0029850746268656717,1.0,1.0,0.5926513671875,0.59246826171875,0.55914306640625,0,0,0.36508896946907043,0.5359688997268677,1.4595054388046265,0.447238564491272,0.5312620401382446,0.8520791530609131,0.63330078125,0.595036506652832,1,1 +691,0.673828125,0.6748046875,0.0009765625,0.0029940119760479044,1.0,1.0,0.59246826171875,0.592529296875,0.55908203125,0,0,0.3655990660190582,0.5356695652008057,1.458101511001587,0.4477573335170746,0.5320861339569092,0.8519211411476135,0.6328125,0.5950758457183838,1,1 +692,0.6748046875,0.67578125,0.0009765625,0.003003003003003003,1.0,1.0,0.592529296875,0.59234619140625,0.5592041015625,0,0,0.366108238697052,0.5356433391571045,1.4566909074783325,0.4475736618041992,0.532910943031311,0.8519617319107056,0.634765625,0.5959036946296692,1,1 +693,0.67578125,0.6767578125,0.0009765625,0.0030120481927710845,1.0,1.0,0.59234619140625,0.59197998046875,0.55865478515625,0,0,0.366617351770401,0.535396933555603,1.4552764892578125,0.44791877269744873,0.5337361097335815,0.8518579006195068,0.6357421875,0.5961567759513855,1,1 +694,0.6767578125,0.677734375,0.0009765625,0.0030211480362537764,1.0,1.0,0.59197998046875,0.59185791015625,0.55841064453125,0,0,0.3671257495880127,0.5351194143295288,1.4538583755493164,0.4482184648513794,0.5345613956451416,0.8517622351646423,0.6357421875,0.5964034199714661,1,1 +695,0.677734375,0.6787109375,0.0009765625,0.0030303030303030303,1.0,1.0,0.59185791015625,0.5916748046875,0.55804443359375,0,0,0.36763328313827515,0.5347151160240173,1.4524378776550293,0.44872504472732544,0.5353866815567017,0.8516314029693604,0.63525390625,0.5963297486305237,1,1 +696,0.6787109375,0.6796875,0.0009765625,0.00303951367781155,1.0,1.0,0.5916748046875,0.59161376953125,0.55792236328125,0,0,0.3681395947933197,0.5343738198280334,1.451014757156372,0.44933056831359863,0.5362111330032349,0.8514643907546997,0.6357421875,0.5962855815887451,1,1 +697,0.6796875,0.6806640625,0.0009765625,0.003048780487804878,1.0,1.0,0.59161376953125,0.59149169921875,0.55767822265625,0,0,0.3686448633670807,0.5340778827667236,1.4495887756347656,0.44982194900512695,0.5370358228683472,0.8513361215591431,0.63525390625,0.5963155627250671,1,1 +698,0.6806640625,0.681640625,0.0009765625,0.0030581039755351682,1.0,1.0,0.59149169921875,0.5911865234375,0.55755615234375,0,0,0.36914920806884766,0.5337476134300232,1.4481596946716309,0.45028185844421387,0.537860095500946,0.8512102961540222,0.634765625,0.5964536666870117,1,1 +699,0.681640625,0.6826171875,0.0009765625,0.003067484662576687,1.0,1.0,0.5911865234375,0.591064453125,0.5572509765625,0,0,0.36965256929397583,0.5334821939468384,1.44672691822052,0.45057767629623413,0.5386847853660583,0.8511213064193726,0.63623046875,0.596691370010376,1,1 +700,0.6826171875,0.68359375,0.0009765625,0.003076923076923077,1.0,1.0,0.591064453125,0.59100341796875,0.55712890625,0,0,0.37015512585639954,0.5333657264709473,1.4452884197235107,0.45062461495399475,0.5395094752311707,0.8511065244674683,0.63525390625,0.5972714424133301,1,1 +701,0.68359375,0.6845703125,0.0009765625,0.0030864197530864196,1.0,1.0,0.59100341796875,0.59100341796875,0.55682373046875,0,0,0.3706573247909546,0.5331611037254333,1.443845272064209,0.45077237486839294,0.5403344631195068,0.8510704636573792,0.63671875,0.5976696014404297,1,1 +702,0.6845703125,0.685546875,0.0009765625,0.0030959752321981426,1.0,1.0,0.59100341796875,0.591064453125,0.556396484375,0,0,0.3711588680744171,0.5328347682952881,1.442399501800537,0.45135653018951416,0.5411584377288818,0.8509014844894409,0.63623046875,0.5976362824440002,1,1 +703,0.685546875,0.6865234375,0.0009765625,0.003105590062111801,1.0,1.0,0.591064453125,0.59112548828125,0.55615234375,0,0,0.37165939807891846,0.5325510501861572,1.4409503936767578,0.4517876207828522,0.5419824123382568,0.8507782220840454,0.6357421875,0.597848117351532,1,1 +704,0.6865234375,0.6875,0.0009765625,0.003115264797507788,1.0,1.0,0.59112548828125,0.5909423828125,0.55596923828125,0,0,0.37215906381607056,0.5322679281234741,1.4394983053207397,0.4522797465324402,0.5428063869476318,0.8506504893302917,0.63671875,0.5978862047195435,1,1 +705,0.6875,0.6884765625,0.0009765625,0.003125,1.0,1.0,0.5909423828125,0.5909423828125,0.55572509765625,0,0,0.372657835483551,0.5319538116455078,1.4380427598953247,0.45265454053878784,0.5436307787895203,0.8505421876907349,0.63671875,0.5980188846588135,1,1 +706,0.6884765625,0.689453125,0.0009765625,0.003134796238244514,1.0,1.0,0.5909423828125,0.5909423828125,0.555419921875,0,0,0.3731556534767151,0.5317054986953735,1.4365832805633545,0.4529590308666229,0.5444552302360535,0.8504455089569092,0.63671875,0.5983296036720276,1,1 +707,0.689453125,0.6904296875,0.0009765625,0.0031446540880503146,1.0,1.0,0.5909423828125,0.5909423828125,0.5550537109375,0,0,0.37365269660949707,0.5313699841499329,1.4351208209991455,0.4534984230995178,0.5452792644500732,0.8502958416938782,0.63671875,0.598364531993866,1,1 +708,0.6904296875,0.69140625,0.0009765625,0.0031545741324921135,1.0,1.0,0.5909423828125,0.59100341796875,0.554931640625,0,0,0.3741486370563507,0.5310424566268921,1.4336553812026978,0.453906774520874,0.5461026430130005,0.8501726984977722,0.6376953125,0.5984787940979004,1,1 +709,0.69140625,0.6923828125,0.0009765625,0.0031645569620253164,1.0,1.0,0.59100341796875,0.59100341796875,0.55462646484375,0,0,0.37464356422424316,0.5309593677520752,1.4321842193603516,0.4540245234966278,0.5469262599945068,0.8501259088516235,0.63818359375,0.599021315574646,1,1 +710,0.6923828125,0.693359375,0.0009765625,0.0031746031746031746,1.0,1.0,0.59100341796875,0.59112548828125,0.55438232421875,0,0,0.3751382529735565,0.5307254791259766,1.430708885192871,0.4542895257472992,0.5477501153945923,0.8500491380691528,0.63818359375,0.5994032621383667,1,1 +711,0.693359375,0.6943359375,0.0009765625,0.0031847133757961785,1.0,1.0,0.59112548828125,0.5909423828125,0.553955078125,0,0,0.3756321668624878,0.5303374528884888,1.42923104763031,0.45478546619415283,0.5485736131668091,0.8498976230621338,0.63818359375,0.5993071794509888,1,1 +712,0.6943359375,0.6953125,0.0009765625,0.003194888178913738,1.0,1.0,0.5909423828125,0.59051513671875,0.5537109375,0,0,0.37612485885620117,0.5299967527389526,1.427750587463379,0.45531514286994934,0.5493966937065125,0.8497409820556641,0.6376953125,0.5993701219558716,1,1 +713,0.6953125,0.6962890625,0.0009765625,0.003205128205128205,1.0,1.0,0.59051513671875,0.5904541015625,0.55328369140625,0,0,0.3766164481639862,0.5296489000320435,1.426267385482788,0.4558742344379425,0.5502196550369263,0.849582850933075,0.6376953125,0.599383533000946,1,1 +714,0.6962890625,0.697265625,0.0009765625,0.003215434083601286,1.0,1.0,0.5904541015625,0.59027099609375,0.552978515625,0,0,0.3771069645881653,0.5293047428131104,1.4247815608978271,0.4564175307750702,0.5510423183441162,0.8494280576705933,0.6376953125,0.5994014739990234,1,1 +715,0.697265625,0.6982421875,0.0009765625,0.0032258064516129032,1.0,1.0,0.59027099609375,0.59033203125,0.55255126953125,0,0,0.37759631872177124,0.5290146470069885,1.4232921600341797,0.45671889185905457,0.5518644452095032,0.8493366241455078,0.63818359375,0.5995936393737793,1,1 +716,0.6982421875,0.69921875,0.0009765625,0.003236245954692557,1.0,1.0,0.59033203125,0.590576171875,0.55218505859375,0,0,0.37808477878570557,0.5286858081817627,1.4218000173568726,0.4572974741458893,0.5526858568191528,0.8491723537445068,0.63818359375,0.5996547341346741,1,1 +717,0.69921875,0.7001953125,0.0009765625,0.003246753246753247,1.0,1.0,0.590576171875,0.5904541015625,0.552490234375,0,0,0.37857216596603394,0.5287494659423828,1.4202995300292969,0.4568970799446106,0.5535086393356323,0.849277138710022,0.64013671875,0.6006792783737183,1,1 +718,0.7001953125,0.701171875,0.0009765625,0.003257328990228013,1.0,1.0,0.5904541015625,0.59014892578125,0.55224609375,0,0,0.37905973196029663,0.5284519195556641,1.4187960624694824,0.4574022889137268,0.5543316602706909,0.849136471748352,0.6416015625,0.6007495522499084,1,1 +719,0.701171875,0.7021484375,0.0009765625,0.0032679738562091504,1.0,1.0,0.59014892578125,0.5899658203125,0.55157470703125,0,0,0.3795463740825653,0.5280851125717163,1.417290449142456,0.4580298662185669,0.5551542639732361,0.8489636182785034,0.640625,0.600702166557312,1,1 +720,0.7021484375,0.703125,0.0009765625,0.003278688524590164,1.0,1.0,0.5899658203125,0.59002685546875,0.55157470703125,0,0,0.3800317943096161,0.5277793407440186,1.4157817363739014,0.45853739976882935,0.5559762716293335,0.8488295078277588,0.640625,0.6007979512214661,1,1 +721,0.703125,0.7041015625,0.0009765625,0.003289473684210526,1.0,1.0,0.59002685546875,0.58990478515625,0.55096435546875,0,0,0.3805162012577057,0.5274703502655029,1.4142687320709229,0.45870333909988403,0.5567978620529175,0.8487874269485474,0.64111328125,0.6010738015174866,1,1 +722,0.7041015625,0.705078125,0.0009765625,0.0033003300330033004,1.0,1.0,0.58990478515625,0.5899658203125,0.55047607421875,0,0,0.3809996247291565,0.5271736979484558,1.412752628326416,0.4591173231601715,0.5576188564300537,0.8486686944961548,0.642578125,0.6012632846832275,1,1 +723,0.705078125,0.7060546875,0.0009765625,0.0033112582781456954,1.0,1.0,0.5899658203125,0.5897216796875,0.55023193359375,0,0,0.38148200511932373,0.5268298387527466,1.4112340211868286,0.45972374081611633,0.5584393739700317,0.8485090732574463,0.64208984375,0.6012966632843018,1,1 +724,0.7060546875,0.70703125,0.0009765625,0.0033222591362126247,1.0,1.0,0.5897216796875,0.58966064453125,0.54974365234375,0,0,0.381963312625885,0.5264370441436768,1.4097132682800293,0.4603394865989685,0.5592591166496277,0.8483429551124573,0.64208984375,0.6012042760848999,1,1 +725,0.70703125,0.7080078125,0.0009765625,0.0033333333333333335,1.0,1.0,0.58966064453125,0.5894775390625,0.54913330078125,0,0,0.38244330883026123,0.5261532068252563,1.4081889390945435,0.46072691679000854,0.560078501701355,0.8482432961463928,0.64208984375,0.601433515548706,1,1 +726,0.7080078125,0.708984375,0.0009765625,0.0033444816053511705,1.0,1.0,0.5894775390625,0.58929443359375,0.54913330078125,0,0,0.38292232155799866,0.5260177254676819,1.4066587686538696,0.46076691150665283,0.5608986616134644,0.8482261300086975,0.64208984375,0.6019579172134399,1,1 +727,0.708984375,0.7099609375,0.0009765625,0.003355704697986577,1.0,1.0,0.58929443359375,0.5889892578125,0.548828125,0,0,0.38340091705322266,0.525701642036438,1.405125379562378,0.46121102571487427,0.5617184638977051,0.8480989933013916,0.642578125,0.6020603775978088,1,1 +728,0.7099609375,0.7109375,0.0009765625,0.003367003367003367,1.0,1.0,0.5889892578125,0.5887451171875,0.548583984375,0,0,0.3838784098625183,0.5253711938858032,1.4035894870758057,0.4617663025856018,0.5625377297401428,0.8479469418525696,0.642578125,0.6020866632461548,1,1 +729,0.7109375,0.7119140625,0.0009765625,0.0033783783783783786,1.0,1.0,0.5887451171875,0.58856201171875,0.548095703125,0,0,0.384354829788208,0.5250358581542969,1.402050495147705,0.46221405267715454,0.5633563995361328,0.8478276133537292,0.642578125,0.6022247076034546,1,1 +730,0.7119140625,0.712890625,0.0009765625,0.003389830508474576,1.0,1.0,0.58856201171875,0.5882568359375,0.5478515625,0,0,0.384830117225647,0.5246843695640564,1.4005088806152344,0.46278077363967896,0.5641739964485168,0.8476638793945312,0.642578125,0.6022504568099976,1,1 +731,0.712890625,0.7138671875,0.0009765625,0.003401360544217687,1.0,1.0,0.5882568359375,0.58819580078125,0.5477294921875,0,0,0.38530418276786804,0.5244609117507935,1.3989627361297607,0.4630008935928345,0.5649913549423218,0.8475991487503052,0.6435546875,0.6025964021682739,1,1 +732,0.7138671875,0.71484375,0.0009765625,0.0034129692832764505,1.0,1.0,0.58819580078125,0.5877685546875,0.5472412109375,0,0,0.3857775330543518,0.5241615176200867,1.3974127769470215,0.46333152055740356,0.5658086538314819,0.8475061058998108,0.64404296875,0.6028227210044861,1,1 +733,0.71484375,0.7158203125,0.0009765625,0.003424657534246575,1.0,1.0,0.5877685546875,0.58758544921875,0.54681396484375,0,0,0.3862497806549072,0.5238085985183716,1.3958605527877808,0.46392014622688293,0.5666254758834839,0.84734708070755,0.6435546875,0.6027957201004028,1,1 +734,0.7158203125,0.716796875,0.0009765625,0.003436426116838488,1.0,1.0,0.58758544921875,0.58770751953125,0.54632568359375,0,0,0.3867208957672119,0.5236548185348511,1.3943027257919312,0.46402543783187866,0.5674420595169067,0.8473091721534729,0.64453125,0.6033411026000977,1,1 +735,0.716796875,0.7177734375,0.0009765625,0.0034482758620689655,1.0,1.0,0.58770751953125,0.58770751953125,0.54595947265625,0,0,0.3871914744377136,0.5233719348907471,1.3927412033081055,0.46439340710639954,0.5682581663131714,0.8472115993499756,0.64453125,0.6035300493240356,1,1 +736,0.7177734375,0.71875,0.0009765625,0.0034602076124567475,1.0,1.0,0.58770751953125,0.58770751953125,0.5457763671875,0,0,0.38766103982925415,0.5229662656784058,1.3911776542663574,0.4650003910064697,0.5690732002258301,0.8470566272735596,0.64501953125,0.6034806966781616,1,1 +737,0.71875,0.7197265625,0.0009765625,0.003472222222222222,1.0,1.0,0.58770751953125,0.58746337890625,0.54541015625,0,0,0.38812923431396484,0.5226260423660278,1.3896114826202393,0.46558189392089844,0.569887638092041,0.8469140529632568,0.64501953125,0.6035268306732178,1,1 +738,0.7197265625,0.720703125,0.0009765625,0.003484320557491289,1.0,1.0,0.58746337890625,0.5872802734375,0.54547119140625,0,0,0.38859623670578003,0.5222575664520264,1.38804292678833,0.4660927653312683,0.5707009434700012,0.8467880487442017,0.64501953125,0.6034739017486572,1,1 +739,0.720703125,0.7216796875,0.0009765625,0.0034965034965034965,1.0,1.0,0.5872802734375,0.58721923828125,0.545166015625,0,0,0.38906195759773254,0.5219084620475769,1.3864717483520508,0.466662734746933,0.5715134739875793,0.8466314077377319,0.64501953125,0.6034889221191406,1,1 +740,0.7216796875,0.72265625,0.0009765625,0.0035087719298245615,1.0,1.0,0.58721923828125,0.58734130859375,0.544921875,0,0,0.38952645659446716,0.5215784907341003,1.3848974704742432,0.4671372175216675,0.5723247528076172,0.8465089797973633,0.64453125,0.6036480665206909,1,1 +741,0.72265625,0.7236328125,0.0009765625,0.0035211267605633804,1.0,1.0,0.58734130859375,0.58721923828125,0.544677734375,0,0,0.38998979330062866,0.5212598443031311,1.3833205699920654,0.46765923500061035,0.5731353759765625,0.8463491201400757,0.64501953125,0.6036717295646667,1,1 +742,0.7236328125,0.724609375,0.0009765625,0.0035335689045936395,1.0,1.0,0.58721923828125,0.5869140625,0.5445556640625,0,0,0.3904520273208618,0.5208908915519714,1.3817411661148071,0.4682878255844116,0.5739448070526123,0.8461555242538452,0.64501953125,0.6036492586135864,1,1 +743,0.724609375,0.7255859375,0.0009765625,0.0035460992907801418,1.0,1.0,0.5869140625,0.58673095703125,0.54449462890625,0,0,0.3909129202365875,0.5207922458648682,1.380155086517334,0.46822813153266907,0.5747548341751099,0.8461776375770569,0.6455078125,0.6042847633361816,1,1 +744,0.7255859375,0.7265625,0.0009765625,0.0035587188612099642,1.0,1.0,0.58673095703125,0.5865478515625,0.5439453125,0,0,0.39137348532676697,0.5204858183860779,1.3785650730133057,0.46850141882896423,0.5755646228790283,0.8461005687713623,0.64599609375,0.6044561862945557,1,1 +745,0.7265625,0.7275390625,0.0009765625,0.0035714285714285713,1.0,1.0,0.5865478515625,0.58648681640625,0.54400634765625,0,0,0.39183294773101807,0.5201354026794434,1.3769727945327759,0.46909594535827637,0.5763736367225647,0.8459281921386719,0.64599609375,0.6044453978538513,1,1 +746,0.7275390625,0.728515625,0.0009765625,0.0035842293906810036,1.0,1.0,0.58648681640625,0.58636474609375,0.54345703125,0,0,0.39229118824005127,0.5198944807052612,1.3753759860992432,0.46939048171043396,0.577182412147522,0.8458352088928223,0.646484375,0.6047834157943726,1,1 +747,0.728515625,0.7294921875,0.0009765625,0.0035971223021582736,1.0,1.0,0.58636474609375,0.58612060546875,0.54327392578125,0,0,0.39274853467941284,0.5196189880371094,1.3737751245498657,0.4697378873825073,0.5779911279678345,0.8457351922988892,0.6474609375,0.6050703525543213,1,1 +748,0.7294921875,0.73046875,0.0009765625,0.0036101083032490976,1.0,1.0,0.58612060546875,0.586181640625,0.542724609375,0,0,0.393204927444458,0.5192326307296753,1.3721723556518555,0.47035494446754456,0.5787987112998962,0.8455613255500793,0.6474609375,0.6050057411193848,1,1 +749,0.73046875,0.7314453125,0.0009765625,0.0036231884057971015,1.0,1.0,0.586181640625,0.58587646484375,0.542236328125,0,0,0.39365988969802856,0.518884539604187,1.3705670833587646,0.4709208309650421,0.5796049237251282,0.8453966379165649,0.6474609375,0.60502028465271,1,1 +750,0.7314453125,0.732421875,0.0009765625,0.0036363636363636364,1.0,1.0,0.58587646484375,0.58587646484375,0.54193115234375,0,0,0.39411357045173645,0.518549382686615,1.368958592414856,0.47137755155563354,0.5804108381271362,0.8452669978141785,0.64794921875,0.6050963401794434,1,1 +751,0.732421875,0.7333984375,0.0009765625,0.0036496350364963502,1.0,1.0,0.58587646484375,0.5855712890625,0.54132080078125,0,0,0.39456605911254883,0.5182164311408997,1.3673475980758667,0.4719422459602356,0.58121657371521,0.845111072063446,0.6484375,0.6051449775695801,1,1 +752,0.7333984375,0.734375,0.0009765625,0.003663003663003663,1.0,1.0,0.5855712890625,0.58489990234375,0.54150390625,0,0,0.3950173258781433,0.5183224081993103,1.3657262325286865,0.47140592336654663,0.5820251703262329,0.8452656269073486,0.64892578125,0.606185793876648,1,1 +753,0.734375,0.7353515625,0.0009765625,0.003676470588235294,1.0,1.0,0.58489990234375,0.584716796875,0.54150390625,0,0,0.39546895027160645,0.5179680585861206,1.3641027212142944,0.4720292389392853,0.5828327536582947,0.8450860381126404,0.6484375,0.6061899662017822,1,1 +754,0.7353515625,0.736328125,0.0009765625,0.0036900369003690036,1.0,1.0,0.584716796875,0.5848388671875,0.541259765625,0,0,0.3959192931652069,0.5176430940628052,1.3624764680862427,0.4725671708583832,0.5836394429206848,0.8449258804321289,0.6484375,0.6062111854553223,1,1 +755,0.736328125,0.7373046875,0.0009765625,0.003703703703703704,1.0,1.0,0.5848388671875,0.584716796875,0.54095458984375,0,0,0.3963683843612671,0.5173479318618774,1.3608465194702148,0.4729693830013275,0.5844449996948242,0.8448119759559631,0.6494140625,0.6064507365226746,1,1 +756,0.7373046875,0.73828125,0.0009765625,0.0037174721189591076,1.0,1.0,0.584716796875,0.584716796875,0.5406494140625,0,0,0.3968164622783661,0.5170111656188965,1.3592135906219482,0.4734232425689697,0.5852491855621338,0.8446803092956543,0.6494140625,0.6064805388450623,1,1 +757,0.73828125,0.7392578125,0.0009765625,0.0037313432835820895,1.0,1.0,0.584716796875,0.58477783203125,0.540283203125,0,0,0.39726322889328003,0.5167129635810852,1.357576608657837,0.4737589359283447,0.586052656173706,0.8445743322372437,0.64892578125,0.6067311763763428,1,1 +758,0.7392578125,0.740234375,0.0009765625,0.003745318352059925,1.0,1.0,0.58477783203125,0.58465576171875,0.5400390625,0,0,0.39770886301994324,0.5163801908493042,1.3559372425079346,0.4743286073207855,0.5868551731109619,0.8444206118583679,0.6494140625,0.6067326068878174,1,1 +759,0.740234375,0.7412109375,0.0009765625,0.0037593984962406013,1.0,1.0,0.58465576171875,0.58428955078125,0.53955078125,0,0,0.39815327525138855,0.5160329341888428,1.3542951345443726,0.4748854637145996,0.5876572132110596,0.8442514538764954,0.64990234375,0.6067957878112793,1,1 +760,0.7412109375,0.7421875,0.0009765625,0.0037735849056603774,1.0,1.0,0.58428955078125,0.5841064453125,0.53936767578125,0,0,0.3985963463783264,0.5156925916671753,1.3526504039764404,0.47543805837631226,0.5884583592414856,0.84409499168396,0.6494140625,0.6068130135536194,1,1 +761,0.7421875,0.7431640625,0.0009765625,0.003787878787878788,1.0,1.0,0.5841064453125,0.58392333984375,0.53924560546875,0,0,0.3990381360054016,0.5155302286148071,1.3509994745254517,0.4754682779312134,0.5892603397369385,0.8440805673599243,0.6494140625,0.6073358654975891,1,1 +762,0.7431640625,0.744140625,0.0009765625,0.0038022813688212928,1.0,1.0,0.58392333984375,0.583984375,0.5389404296875,0,0,0.39947929978370667,0.5151814818382263,1.3493459224700928,0.47604596614837646,0.590062141418457,0.8439115881919861,0.64990234375,0.607336699962616,1,1 +763,0.744140625,0.7451171875,0.0009765625,0.003816793893129771,1.0,1.0,0.583984375,0.58355712890625,0.5386962890625,0,0,0.3999191224575043,0.5148923397064209,1.3476885557174683,0.4763745665550232,0.5908634662628174,0.8438118696212769,0.64990234375,0.6075021028518677,1,1 +764,0.7451171875,0.74609375,0.0009765625,0.0038314176245210726,1.0,1.0,0.58355712890625,0.5836181640625,0.5377197265625,0,0,0.40035784244537354,0.5144837498664856,1.3460290431976318,0.47696882486343384,0.5916640162467957,0.8436439037322998,0.65087890625,0.6074618697166443,1,1 +765,0.74609375,0.7470703125,0.0009765625,0.0038461538461538464,1.0,1.0,0.5836181640625,0.5828857421875,0.53741455078125,0,0,0.40079498291015625,0.5141822099685669,1.3443663120269775,0.4774353504180908,0.5924644470214844,0.8435108065605164,0.650390625,0.607552707195282,1,1 +766,0.7470703125,0.748046875,0.0009765625,0.003861003861003861,1.0,1.0,0.5828857421875,0.5826416015625,0.53692626953125,0,0,0.40123096108436584,0.5138514637947083,1.3427008390426636,0.4779839813709259,0.5932654142379761,0.8433529734611511,0.6513671875,0.6076128482818604,1,1 +767,0.748046875,0.7490234375,0.0009765625,0.003875968992248062,1.0,1.0,0.5826416015625,0.58245849609375,0.53656005859375,0,0,0.4016656279563904,0.5135176181793213,1.3410325050354004,0.47853827476501465,0.5940653085708618,0.8432133793830872,0.65087890625,0.6076768636703491,1,1 +768,0.7490234375,0.75,0.0009765625,0.0038910505836575876,1.0,1.0,0.58245849609375,0.582275390625,0.5364990234375,0,0,0.40209901332855225,0.5133073329925537,1.3393588066101074,0.4786567687988281,0.5948643684387207,0.8431780934333801,0.65087890625,0.608029842376709,1,1 +769,0.75,0.7509765625,0.0009765625,0.00390625,1.0,1.0,0.582275390625,0.5819091796875,0.53607177734375,0,0,0.40253156423568726,0.5129454135894775,1.3376822471618652,0.4791245460510254,0.5956618785858154,0.8430551290512085,0.6513671875,0.6080513596534729,1,1 +770,0.7509765625,0.751953125,0.0009765625,0.00392156862745098,1.0,1.0,0.5819091796875,0.58154296875,0.53582763671875,0,0,0.40296268463134766,0.5127887725830078,1.335999608039856,0.479269802570343,0.5964595079421997,0.8430215120315552,0.65185546875,0.608424723148346,1,1 +771,0.751953125,0.7529296875,0.0009765625,0.003937007874015748,1.0,1.0,0.58154296875,0.58148193359375,0.53558349609375,0,0,0.4033931791782379,0.5124428272247314,1.3343144655227661,0.4798628091812134,0.5972564220428467,0.842869222164154,0.6513671875,0.6084433794021606,1,1 +772,0.7529296875,0.75390625,0.0009765625,0.003952569169960474,1.0,1.0,0.58148193359375,0.58135986328125,0.53564453125,0,0,0.40382227301597595,0.5122030377388,1.3326250314712524,0.48017555475234985,0.5980522632598877,0.842798113822937,0.65234375,0.6086053848266602,1,1 +773,0.75390625,0.7548828125,0.0009765625,0.003968253968253968,1.0,1.0,0.58135986328125,0.5814208984375,0.5355224609375,0,0,0.40425044298171997,0.5119529962539673,1.3309309482574463,0.48045268654823303,0.5988472700119019,0.8427371382713318,0.65234375,0.6088976860046387,1,1 +774,0.7548828125,0.755859375,0.0009765625,0.00398406374501992,1.0,1.0,0.5814208984375,0.58135986328125,0.53509521484375,0,0,0.4046775996685028,0.5115561485290527,1.3292348384857178,0.4810449481010437,0.5996410846710205,0.8425866365432739,0.65234375,0.6088612079620361,1,1 +775,0.755859375,0.7568359375,0.0009765625,0.004,1.0,1.0,0.58135986328125,0.5806884765625,0.53466796875,0,0,0.4051031470298767,0.5112091302871704,1.327535629272461,0.4815123379230499,0.6004340052604675,0.8424755930900574,0.65283203125,0.6089301109313965,1,1 +776,0.7568359375,0.7578125,0.0009765625,0.004016064257028112,1.0,1.0,0.5806884765625,0.5802001953125,0.5341796875,0,0,0.40552735328674316,0.5108180642127991,1.3258345127105713,0.48210468888282776,0.601226270198822,0.8423259258270264,0.65185546875,0.6088378429412842,1,1 +777,0.7578125,0.7587890625,0.0009765625,0.004032258064516129,1.0,1.0,0.5802001953125,0.57958984375,0.53424072265625,0,0,0.4059498906135559,0.5105359554290771,1.3241294622421265,0.48247793316841125,0.6020179390907288,0.8422431945800781,0.6513671875,0.6089853644371033,1,1 +778,0.7587890625,0.759765625,0.0009765625,0.004048582995951417,1.0,1.0,0.57958984375,0.5792236328125,0.533447265625,0,0,0.4063712954521179,0.5102117657661438,1.3224213123321533,0.48301056027412415,0.602808952331543,0.842103123664856,0.65185546875,0.6090704202651978,1,1 +779,0.759765625,0.7607421875,0.0009765625,0.0040650406504065045,1.0,1.0,0.5792236328125,0.57891845703125,0.53326416015625,0,0,0.40679141879081726,0.5100052356719971,1.3207076787948608,0.4831729531288147,0.6036003232002258,0.8420745134353638,0.65234375,0.6094114184379578,1,1 +780,0.7607421875,0.76171875,0.0009765625,0.004081632653061225,1.0,1.0,0.57891845703125,0.5787353515625,0.5325927734375,0,0,0.40721064805984497,0.5096549987792969,1.3189916610717773,0.483743816614151,0.6043906211853027,0.8419253826141357,0.65283203125,0.6093921065330505,1,1 +781,0.76171875,0.7626953125,0.0009765625,0.004098360655737705,1.0,1.0,0.5787353515625,0.57855224609375,0.5325927734375,0,0,0.40762847661972046,0.5093028545379639,1.3172723054885864,0.48418503999710083,0.6051793694496155,0.8418228030204773,0.65234375,0.6093854904174805,1,1 +782,0.7626953125,0.763671875,0.0009765625,0.00411522633744856,1.0,1.0,0.57855224609375,0.57830810546875,0.5325927734375,0,0,0.40804481506347656,0.5089800953865051,1.315550446510315,0.4847378432750702,0.6059670448303223,0.8416770696640015,0.65283203125,0.6094028949737549,1,1 +783,0.763671875,0.7646484375,0.0009765625,0.004132231404958678,1.0,1.0,0.57830810546875,0.57818603515625,0.53216552734375,0,0,0.40845978260040283,0.5087461471557617,1.3138238191604614,0.48501020669937134,0.6067541837692261,0.8416121006011963,0.65283203125,0.609630286693573,1,1 +784,0.7646484375,0.765625,0.0009765625,0.004149377593360996,1.0,1.0,0.57818603515625,0.5780029296875,0.53173828125,0,0,0.4088738262653351,0.5084140300750732,1.3120940923690796,0.4855149984359741,0.6075403690338135,0.8414731025695801,0.65234375,0.6096479892730713,1,1 +785,0.765625,0.7666015625,0.0009765625,0.004166666666666667,1.0,1.0,0.5780029296875,0.5780029296875,0.531494140625,0,0,0.4092864692211151,0.5080859661102295,1.3103617429733276,0.4860827326774597,0.6083253622055054,0.8413445949554443,0.65234375,0.6095958948135376,1,1 +786,0.7666015625,0.767578125,0.0009765625,0.0041841004184100415,1.0,1.0,0.5780029296875,0.57757568359375,0.53125,0,0,0.4096977412700653,0.5077518820762634,1.3086265325546265,0.48661553859710693,0.6091090440750122,0.8412086963653564,0.65234375,0.6096693277359009,1,1 +787,0.767578125,0.7685546875,0.0009765625,0.004201680672268907,1.0,1.0,0.57757568359375,0.5771484375,0.53057861328125,0,0,0.4101075530052185,0.5073424577713013,1.3068889379501343,0.48708608746528625,0.6098922491073608,0.8410944938659668,0.65234375,0.6096046566963196,1,1 +788,0.7685546875,0.76953125,0.0009765625,0.004219409282700422,1.0,1.0,0.5771484375,0.5765380859375,0.531005859375,0,0,0.4105156660079956,0.5076075196266174,1.3051377534866333,0.4863635301589966,0.6106784343719482,0.8413101434707642,0.65283203125,0.6107849478721619,1,1 +789,0.76953125,0.7705078125,0.0009765625,0.00423728813559322,1.0,1.0,0.5765380859375,0.576416015625,0.53082275390625,0,0,0.41092488169670105,0.5072748064994812,1.303383708000183,0.48689621686935425,0.6114634275436401,0.8411750793457031,0.65283203125,0.6107645034790039,1,1 +790,0.7705078125,0.771484375,0.0009765625,0.00425531914893617,1.0,1.0,0.576416015625,0.576416015625,0.53033447265625,0,0,0.4113326668739319,0.5068955421447754,1.3016273975372314,0.48746436834335327,0.6122468113899231,0.8410479426383972,0.65283203125,0.6107714176177979,1,1 +791,0.771484375,0.7724609375,0.0009765625,0.004273504273504274,1.0,1.0,0.576416015625,0.5762939453125,0.5301513671875,0,0,0.4117388129234314,0.5065300464630127,1.2998685836791992,0.4880111515522003,0.6130290031433105,0.8409189581871033,0.65283203125,0.6106904745101929,1,1 +792,0.7724609375,0.7734375,0.0009765625,0.004291845493562232,1.0,1.0,0.5762939453125,0.5762939453125,0.5296630859375,0,0,0.41214340925216675,0.5063971877098083,1.2981024980545044,0.4879704415798187,0.6138114929199219,0.8409451246261597,0.6533203125,0.611170768737793,1,1 +793,0.7734375,0.7744140625,0.0009765625,0.004310344827586207,1.0,1.0,0.5762939453125,0.5762939453125,0.529541015625,0,0,0.41254743933677673,0.5058278441429138,1.296337366104126,0.48887398838996887,0.6145910024642944,0.8407146334648132,0.65283203125,0.6107150912284851,1,1 +794,0.7744140625,0.775390625,0.0009765625,0.004329004329004329,1.0,1.0,0.5762939453125,0.5762939453125,0.529296875,0,0,0.41294896602630615,0.5057374238967896,1.294564962387085,0.48889029026031494,0.615370512008667,0.8407343626022339,0.65283203125,0.6111745238304138,1,1 +795,0.775390625,0.7763671875,0.0009765625,0.004347826086956522,1.0,1.0,0.5762939453125,0.57598876953125,0.529052734375,0,0,0.4133501350879669,0.5054196119308472,1.2927896976470947,0.4894160032272339,0.6161488890647888,0.8406111001968384,0.6533203125,0.6112314462661743,1,1 +796,0.7763671875,0.77734375,0.0009765625,0.004366812227074236,1.0,1.0,0.57598876953125,0.57574462890625,0.52923583984375,0,0,0.4137498736381531,0.505112886428833,1.2910113334655762,0.48992812633514404,0.6169272661209106,0.840472936630249,0.654296875,0.6112275719642639,1,1 +797,0.77734375,0.7783203125,0.0009765625,0.0043859649122807015,1.0,1.0,0.57574462890625,0.57513427734375,0.5291748046875,0,0,0.4141482710838318,0.5048202872276306,1.2892290353775024,0.49031302332878113,0.6177051067352295,0.8403729796409607,0.6533203125,0.61138916015625,1,1 +798,0.7783203125,0.779296875,0.0009765625,0.004405286343612335,1.0,1.0,0.57513427734375,0.57476806640625,0.529052734375,0,0,0.41454535722732544,0.5046337842941284,1.2874407768249512,0.49046191573143005,0.6184830665588379,0.8403396606445312,0.654296875,0.6116930246353149,1,1 +799,0.779296875,0.7802734375,0.0009765625,0.004424778761061947,1.0,1.0,0.57476806640625,0.57464599609375,0.52862548828125,0,0,0.4149416387081146,0.5043177604675293,1.2856495380401611,0.49097418785095215,0.6192612051963806,0.8402097225189209,0.654296875,0.611709475517273,1,1 +800,0.7802734375,0.78125,0.0009765625,0.0044444444444444444,1.0,1.0,0.57464599609375,0.57427978515625,0.5286865234375,0,0,0.4153364896774292,0.5042310953140259,1.2838505506515503,0.4909600615501404,0.620040237903595,0.8402197360992432,0.6552734375,0.6121383309364319,1,1 +801,0.78125,0.7822265625,0.0009765625,0.004464285714285714,1.0,1.0,0.57427978515625,0.573974609375,0.52880859375,0,0,0.41573095321655273,0.5039596557617188,1.282047152519226,0.49128684401512146,0.620820164680481,0.8401384353637695,0.6552734375,0.6122804880142212,1,1 +802,0.7822265625,0.783203125,0.0009765625,0.004484304932735426,1.0,1.0,0.573974609375,0.57373046875,0.5284423828125,0,0,0.41612422466278076,0.5036457777023315,1.2802401781082153,0.4917047321796417,0.621599018573761,0.8400143384933472,0.6552734375,0.612360417842865,1,1 +803,0.783203125,0.7841796875,0.0009765625,0.0045045045045045045,1.0,1.0,0.57373046875,0.57366943359375,0.52825927734375,0,0,0.4165160357952118,0.5034295320510864,1.2784273624420166,0.4918682277202606,0.6223775148391724,0.839972198009491,0.65478515625,0.6125694513320923,1,1 +804,0.7841796875,0.78515625,0.0009765625,0.004524886877828055,1.0,1.0,0.57366943359375,0.57366943359375,0.52777099609375,0,0,0.4169068932533264,0.5031089186668396,1.2766118049621582,0.492411732673645,0.623155415058136,0.8398059606552124,0.6552734375,0.612615704536438,1,1 +805,0.78515625,0.7861328125,0.0009765625,0.004545454545454545,1.0,1.0,0.57366943359375,0.57373046875,0.52783203125,0,0,0.41729623079299927,0.5028084516525269,1.2747931480407715,0.4929339289665222,0.6239320039749146,0.8396669626235962,0.65478515625,0.6125640273094177,1,1 +806,0.7861328125,0.787109375,0.0009765625,0.0045662100456621,1.0,1.0,0.57373046875,0.57342529296875,0.527587890625,0,0,0.41768425703048706,0.5024992823600769,1.2729710340499878,0.49341830611228943,0.6247081756591797,0.83952796459198,0.6552734375,0.6126501560211182,1,1 +807,0.787109375,0.7880859375,0.0009765625,0.0045871559633027525,1.0,1.0,0.57342529296875,0.5732421875,0.527099609375,0,0,0.41807085275650024,0.5022664070129395,1.271144151687622,0.493757426738739,0.6254836916923523,0.8394308090209961,0.65576171875,0.6128274202346802,1,1 +808,0.7880859375,0.7890625,0.0009765625,0.004608294930875576,1.0,1.0,0.5732421875,0.57318115234375,0.52716064453125,0,0,0.4184563457965851,0.5021164417266846,1.2693102359771729,0.4937893748283386,0.6262584328651428,0.8394349813461304,0.6552734375,0.6131864786148071,1,1 +809,0.7890625,0.7900390625,0.0009765625,0.004629629629629629,1.0,1.0,0.57318115234375,0.57305908203125,0.52679443359375,0,0,0.418841153383255,0.5018637180328369,1.2674713134765625,0.4940723478794098,0.6270322799682617,0.8393580913543701,0.6552734375,0.6133185029029846,1,1 +810,0.7900390625,0.791015625,0.0009765625,0.004651162790697674,1.0,1.0,0.57305908203125,0.57293701171875,0.52630615234375,0,0,0.4192247986793518,0.5015324354171753,1.2656290531158447,0.4945335388183594,0.6278048753738403,0.8392420411109924,0.6552734375,0.613295316696167,1,1 +811,0.791015625,0.7919921875,0.0009765625,0.004672897196261682,1.0,1.0,0.57293701171875,0.57275390625,0.52593994140625,0,0,0.41960686445236206,0.5011524558067322,1.2637841701507568,0.4950726330280304,0.6285760402679443,0.8390980958938599,0.65576171875,0.6132492423057556,1,1 +812,0.7919921875,0.79296875,0.0009765625,0.004694835680751174,1.0,1.0,0.57275390625,0.57275390625,0.52569580078125,0,0,0.41998714208602905,0.5008457899093628,1.2619361877441406,0.4955822229385376,0.6293454766273499,0.8389569520950317,0.65576171875,0.6132745146751404,1,1 +813,0.79296875,0.7939453125,0.0009765625,0.0047169811320754715,1.0,1.0,0.57275390625,0.5726318359375,0.5260009765625,0,0,0.42036595940589905,0.5005176067352295,1.260085105895996,0.49614498019218445,0.6301138401031494,0.8388105630874634,0.65576171875,0.6133018732070923,1,1 +814,0.7939453125,0.794921875,0.0009765625,0.004739336492890996,1.0,1.0,0.5726318359375,0.572509765625,0.5255126953125,0,0,0.4207432270050049,0.5002176761627197,1.2582310438156128,0.49667298793792725,0.6308805346488953,0.8386796712875366,0.65576171875,0.6132669448852539,1,1 +815,0.794921875,0.7958984375,0.0009765625,0.004761904761904762,1.0,1.0,0.572509765625,0.57208251953125,0.52471923828125,0,0,0.4211190938949585,0.4998955726623535,1.2563735246658325,0.4971354901790619,0.6316465139389038,0.8385577201843262,0.65625,0.6133331656455994,1,1 +816,0.7958984375,0.796875,0.0009765625,0.004784688995215311,1.0,1.0,0.57208251953125,0.572021484375,0.5245361328125,0,0,0.42149341106414795,0.49956029653549194,1.2545132637023926,0.4977005422115326,0.632412314414978,0.8384168148040771,0.65625,0.6132795810699463,1,1 +817,0.796875,0.7978515625,0.0009765625,0.004807692307692308,1.0,1.0,0.572021484375,0.572021484375,0.52496337890625,0,0,0.4218660593032837,0.4995748996734619,1.2526423931121826,0.497453510761261,0.6331796050071716,0.8385063409805298,0.65673828125,0.6139187812805176,1,1 +818,0.7978515625,0.798828125,0.0009765625,0.004830917874396135,1.0,1.0,0.572021484375,0.57159423828125,0.52435302734375,0,0,0.422238826751709,0.4992559254169464,1.2507685422897339,0.49801766872406006,0.6339459419250488,0.8383661508560181,0.65673828125,0.6139308214187622,1,1 +819,0.798828125,0.7998046875,0.0009765625,0.0048543689320388345,1.0,1.0,0.57159423828125,0.57122802734375,0.524169921875,0,0,0.42260998487472534,0.49894797801971436,1.2488913536071777,0.4985314607620239,0.6347112655639648,0.8382270336151123,0.65673828125,0.6139447689056396,1,1 +820,0.7998046875,0.80078125,0.0009765625,0.004878048780487805,1.0,1.0,0.57122802734375,0.57061767578125,0.52362060546875,0,0,0.4229796826839447,0.49863550066947937,1.2470111846923828,0.4990827441215515,0.6354761123657227,0.8380670547485352,0.65625,0.6139241456985474,1,1 +821,0.80078125,0.8017578125,0.0009765625,0.004901960784313725,1.0,1.0,0.57061767578125,0.57037353515625,0.5235595703125,0,0,0.4233478307723999,0.4983200430870056,1.2451276779174805,0.4996289908885956,0.6362401247024536,0.8379117846488953,0.65625,0.6139630675315857,1,1 +822,0.8017578125,0.802734375,0.0009765625,0.0049261083743842365,1.0,1.0,0.57037353515625,0.570068359375,0.52294921875,0,0,0.42371442914009094,0.4981304407119751,1.243237018585205,0.4996843636035919,0.6370037198066711,0.8378982543945312,0.65576171875,0.6142270565032959,1,1 +823,0.802734375,0.8037109375,0.0009765625,0.0049504950495049506,1.0,1.0,0.570068359375,0.56964111328125,0.5230712890625,0,0,0.4240800440311432,0.497782438993454,1.2413438558578491,0.5002471208572388,0.6377665996551514,0.8377453088760376,0.65625,0.6142005920410156,1,1 +824,0.8037109375,0.8046875,0.0009765625,0.004975124378109453,1.0,1.0,0.56964111328125,0.56939697265625,0.52276611328125,0,0,0.42444396018981934,0.4974721074104309,1.239446997642517,0.5007870197296143,0.6385292410850525,0.8375824093818665,0.65625,0.6141529083251953,1,1 +825,0.8046875,0.8056640625,0.0009765625,0.005,1.0,1.0,0.56939697265625,0.56903076171875,0.5225830078125,0,0,0.42480629682540894,0.49721696972846985,1.2375450134277344,0.5010710954666138,0.6392918229103088,0.8375018835067749,0.65625,0.6143322587013245,1,1 +826,0.8056640625,0.806640625,0.0009765625,0.005025125628140704,1.0,1.0,0.56903076171875,0.56878662109375,0.5224609375,0,0,0.42516738176345825,0.4972798228263855,1.2356318235397339,0.5008884072303772,0.6400560736656189,0.8375731706619263,0.6572265625,0.6149716377258301,1,1 +827,0.806640625,0.8076171875,0.0009765625,0.005050505050505051,1.0,1.0,0.56878662109375,0.568359375,0.52178955078125,0,0,0.42552873492240906,0.4967065155506134,1.2337208986282349,0.5019518733024597,0.6408173441886902,0.837252676486969,0.65673828125,0.614475429058075,1,1 +828,0.8076171875,0.80859375,0.0009765625,0.005076142131979695,1.0,1.0,0.568359375,0.5682373046875,0.5218505859375,0,0,0.42588716745376587,0.49639320373535156,1.2318065166473389,0.5024393796920776,0.6415771245956421,0.8371224403381348,0.65673828125,0.6144992709159851,1,1 +829,0.80859375,0.8095703125,0.0009765625,0.00510204081632653,1.0,1.0,0.5682373046875,0.56781005859375,0.521484375,0,0,0.42624402046203613,0.4961037039756775,1.2298884391784668,0.5029901266098022,0.6423354744911194,0.8369729518890381,0.65673828125,0.6144841909408569,1,1 +830,0.8095703125,0.810546875,0.0009765625,0.005128205128205128,1.0,1.0,0.56781005859375,0.5673828125,0.5216064453125,0,0,0.426599383354187,0.49600452184677124,1.2279613018035889,0.5028934478759766,0.6430951356887817,0.8370068073272705,0.6572265625,0.6149876713752747,1,1 +831,0.810546875,0.8115234375,0.0009765625,0.005154639175257732,1.0,1.0,0.5673828125,0.567138671875,0.52166748046875,0,0,0.4269542098045349,0.4958292245864868,1.226027011871338,0.5030462741851807,0.643854022026062,0.8369776010513306,0.65869140625,0.6152279376983643,1,1 +832,0.8115234375,0.8125,0.0009765625,0.0051813471502590676,1.0,1.0,0.567138671875,0.5665283203125,0.52154541015625,0,0,0.4273081421852112,0.49558085203170776,1.2240874767303467,0.5033987760543823,0.6446127891540527,0.8368858098983765,0.65771484375,0.6152917146682739,1,1 +833,0.8125,0.8134765625,0.0009765625,0.005208333333333333,1.0,1.0,0.5665283203125,0.5662841796875,0.52069091796875,0,0,0.4276607632637024,0.49496012926101685,1.2221522331237793,0.5046411752700806,0.6453688740730286,0.8365552425384521,0.65673828125,0.6147865653038025,1,1 +834,0.8134765625,0.814453125,0.0009765625,0.005235602094240838,1.0,1.0,0.5662841796875,0.56610107421875,0.52032470703125,0,0,0.42801010608673096,0.4947962164878845,1.2202095985412598,0.5047881603240967,0.6461257934570312,0.8365344405174255,0.65771484375,0.6150652170181274,1,1 +835,0.814453125,0.8154296875,0.0009765625,0.005263157894736842,1.0,1.0,0.56610107421875,0.5660400390625,0.519775390625,0,0,0.42835861444473267,0.49448996782302856,1.2182635068893433,0.5053317546844482,0.6468808650970459,0.8363816142082214,0.658203125,0.6150611639022827,1,1 +836,0.8154296875,0.81640625,0.0009765625,0.005291005291005291,1.0,1.0,0.5660400390625,0.565673828125,0.52032470703125,0,0,0.42870548367500305,0.49465811252593994,1.2163022756576538,0.5047322511672974,0.6476382613182068,0.8365832567214966,0.6591796875,0.6159427165985107,1,1 +837,0.81640625,0.8173828125,0.0009765625,0.005319148936170213,1.0,1.0,0.565673828125,0.56500244140625,0.5198974609375,0,0,0.4290532171726227,0.49436965584754944,1.21433687210083,0.5051860809326172,0.6483962535858154,0.8364782929420471,0.6591796875,0.6159961223602295,1,1 +838,0.8173828125,0.818359375,0.0009765625,0.0053475935828877,1.0,1.0,0.56500244140625,0.564453125,0.51947021484375,0,0,0.42939940094947815,0.4940553605556488,1.212367296218872,0.5056161284446716,0.6491539478302002,0.8363969326019287,0.6591796875,0.6160358190536499,1,1 +839,0.818359375,0.8193359375,0.0009765625,0.005376344086021506,1.0,1.0,0.564453125,0.56439208984375,0.51953125,0,0,0.4297439157962799,0.4937882423400879,1.2103933095932007,0.5060663223266602,0.6499109864234924,0.8363113403320312,0.65869140625,0.616037130355835,1,1 +840,0.8193359375,0.8203125,0.0009765625,0.005405405405405406,1.0,1.0,0.56439208984375,0.56427001953125,0.519287109375,0,0,0.43008697032928467,0.4934275150299072,1.2084167003631592,0.5066776871681213,0.6506667733192444,0.8361697196960449,0.6591796875,0.6160305738449097,1,1 +841,0.8203125,0.8212890625,0.0009765625,0.005434782608695652,1.0,1.0,0.56427001953125,0.5640869140625,0.51904296875,0,0,0.43042802810668945,0.4930681586265564,1.2064368724822998,0.5072245597839355,0.6514217853546143,0.8360496759414673,0.6591796875,0.6160199642181396,1,1 +842,0.8212890625,0.822265625,0.0009765625,0.00546448087431694,1.0,1.0,0.5640869140625,0.56378173828125,0.51904296875,0,0,0.43076714873313904,0.4927503168582916,1.2044532299041748,0.5077173709869385,0.6521769762039185,0.8359466791152954,0.66015625,0.6160125732421875,1,1 +843,0.822265625,0.8232421875,0.0009765625,0.005494505494505495,1.0,1.0,0.56378173828125,0.56365966796875,0.5186767578125,0,0,0.43110454082489014,0.49245357513427734,1.2024657726287842,0.5082478523254395,0.6529315710067749,0.8358275890350342,0.66015625,0.616020679473877,1,1 +844,0.8232421875,0.82421875,0.0009765625,0.0055248618784530384,1.0,1.0,0.56365966796875,0.56341552734375,0.518310546875,0,0,0.43144023418426514,0.49210840463638306,1.200474500656128,0.5086917877197266,0.6536858081817627,0.8357328176498413,0.66064453125,0.6160612106323242,1,1 +845,0.82421875,0.8251953125,0.0009765625,0.005555555555555556,1.0,1.0,0.56341552734375,0.56280517578125,0.51800537109375,0,0,0.4317740201950073,0.4917900562286377,1.198479413986206,0.5092406272888184,0.6544415950775146,0.8356058597564697,0.65966796875,0.6160317063331604,1,1 +846,0.8251953125,0.826171875,0.0009765625,0.00558659217877095,1.0,1.0,0.56280517578125,0.56231689453125,0.5177001953125,0,0,0.432106077671051,0.4918127655982971,1.1964712142944336,0.5088692903518677,0.6552004814147949,0.8357448577880859,0.66015625,0.6166521310806274,1,1 +847,0.826171875,0.8271484375,0.0009765625,0.0056179775280898875,1.0,1.0,0.56231689453125,0.5621337890625,0.51727294921875,0,0,0.4324381947517395,0.4914926588535309,1.194459080696106,0.5094107389450073,0.6559592485427856,0.8356194496154785,0.66015625,0.6166267991065979,1,1 +848,0.8271484375,0.828125,0.0009765625,0.005649717514124294,1.0,1.0,0.5621337890625,0.561767578125,0.51739501953125,0,0,0.43276849389076233,0.49118655920028687,1.1924432516098022,0.509960412979126,0.6567169427871704,0.835484504699707,0.66015625,0.6166362166404724,1,1 +849,0.828125,0.8291015625,0.0009765625,0.005681818181818182,1.0,1.0,0.561767578125,0.561279296875,0.51654052734375,0,0,0.43309706449508667,0.4908345341682434,1.1904239654541016,0.5104943513870239,0.6574740409851074,0.8353637456893921,0.66064453125,0.6166105270385742,1,1 +850,0.8291015625,0.830078125,0.0009765625,0.005714285714285714,1.0,1.0,0.561279296875,0.5611572265625,0.51666259765625,0,0,0.43342363834381104,0.4905189871788025,1.1884011030197144,0.5110671520233154,0.6582295894622803,0.835235059261322,0.66064453125,0.6166094541549683,1,1 +851,0.830078125,0.8310546875,0.0009765625,0.005747126436781609,1.0,1.0,0.5611572265625,0.5609130859375,0.51605224609375,0,0,0.43374836444854736,0.4901672899723053,1.1863746643066406,0.5116773843765259,0.6589836478233337,0.8350804448127747,0.65966796875,0.6165462136268616,1,1 +852,0.8310546875,0.83203125,0.0009765625,0.005780346820809248,1.0,1.0,0.5609130859375,0.5606689453125,0.51580810546875,0,0,0.43407106399536133,0.4899158775806427,1.1843417882919312,0.5119279623031616,0.6597378849983215,0.8350403308868408,0.66064453125,0.6167411804199219,1,1 +853,0.83203125,0.8330078125,0.0009765625,0.005813953488372093,1.0,1.0,0.5606689453125,0.56036376953125,0.51580810546875,0,0,0.4343922734260559,0.48959922790527344,1.1823045015335083,0.5124446153640747,0.6604903936386108,0.8349099159240723,0.66015625,0.6167463660240173,1,1 +854,0.8330078125,0.833984375,0.0009765625,0.005847953216374269,1.0,1.0,0.56036376953125,0.56005859375,0.51611328125,0,0,0.43471166491508484,0.48938021063804626,1.1802599430084229,0.5127211213111877,0.6612419486045837,0.8348402976989746,0.662109375,0.6169715523719788,1,1 +855,0.833984375,0.8349609375,0.0009765625,0.0058823529411764705,1.0,1.0,0.56005859375,0.55963134765625,0.515625,0,0,0.43503111600875854,0.4889957904815674,1.178212285041809,0.5132981538772583,0.6619924306869507,0.8347084522247314,0.6611328125,0.6169180870056152,1,1 +856,0.8349609375,0.8359375,0.0009765625,0.005917159763313609,1.0,1.0,0.55963134765625,0.55950927734375,0.51568603515625,0,0,0.4353485107421875,0.48898446559906006,1.1761528253555298,0.5131831765174866,0.6627447605133057,0.8347673416137695,0.66162109375,0.6174358129501343,1,1 +857,0.8359375,0.8369140625,0.0009765625,0.005952380952380952,1.0,1.0,0.55950927734375,0.5595703125,0.51544189453125,0,0,0.43566590547561646,0.4886707365512848,1.174088954925537,0.5137429237365723,0.6634958982467651,0.8346267938613892,0.662109375,0.6174272298812866,1,1 +858,0.8369140625,0.837890625,0.0009765625,0.005988023952095809,1.0,1.0,0.5595703125,0.55914306640625,0.51495361328125,0,0,0.4359813928604126,0.48834800720214844,1.1720210313796997,0.5143216252326965,0.6642467975616455,0.8344863653182983,0.66162109375,0.6174302697181702,1,1 +859,0.837890625,0.8388671875,0.0009765625,0.006024096385542169,1.0,1.0,0.55914306640625,0.55816650390625,0.51458740234375,0,0,0.4362949728965759,0.4880605638027191,1.1699471473693848,0.5146597623825073,0.6649978160858154,0.8344297409057617,0.66259765625,0.6175082325935364,1,1 +860,0.8388671875,0.83984375,0.0009765625,0.006060606060606061,1.0,1.0,0.55816650390625,0.55767822265625,0.5146484375,0,0,0.43660682439804077,0.48783770203590393,1.1678651571273804,0.5148895978927612,0.6657512187957764,0.8343874216079712,0.662109375,0.6177213788032532,1,1 +861,0.83984375,0.8408203125,0.0009765625,0.006097560975609756,1.0,1.0,0.55767822265625,0.55731201171875,0.51446533203125,0,0,0.4369173049926758,0.4874570369720459,1.1657795906066895,0.5154546499252319,0.6665040254592896,0.8342435956001282,0.66162109375,0.6176623106002808,1,1 +862,0.8408203125,0.841796875,0.0009765625,0.006134969325153374,1.0,1.0,0.55731201171875,0.55694580078125,0.513916015625,0,0,0.43722546100616455,0.48711514472961426,1.1636899709701538,0.516067385673523,0.667255699634552,0.8340775966644287,0.662109375,0.6176942586898804,1,1 +863,0.841796875,0.8427734375,0.0009765625,0.006172839506172839,1.0,1.0,0.55694580078125,0.55670166015625,0.513671875,0,0,0.4375315308570862,0.48676884174346924,1.1615962982177734,0.5166445970535278,0.6680071949958801,0.8339276313781738,0.66162109375,0.6177163124084473,1,1 +864,0.8427734375,0.84375,0.0009765625,0.006211180124223602,1.0,1.0,0.55670166015625,0.5562744140625,0.51336669921875,0,0,0.4378354549407959,0.4865078330039978,1.1594966650009155,0.5170813798904419,0.6687581539154053,0.8338296413421631,0.662109375,0.6177254915237427,1,1 +865,0.84375,0.8447265625,0.0009765625,0.00625,1.0,1.0,0.5562744140625,0.55596923828125,0.51300048828125,0,0,0.4381377696990967,0.48611435294151306,1.1573933362960815,0.517707109451294,0.6695080995559692,0.8336696028709412,0.662109375,0.617728590965271,1,1 +866,0.8447265625,0.845703125,0.0009765625,0.006289308176100629,1.0,1.0,0.55596923828125,0.5557861328125,0.51275634765625,0,0,0.4384376108646393,0.48578450083732605,1.1552858352661133,0.5182738304138184,0.6702566146850586,0.833526611328125,0.66162109375,0.617737889289856,1,1 +867,0.845703125,0.8466796875,0.0009765625,0.006329113924050633,1.0,1.0,0.5557861328125,0.5552978515625,0.5123291015625,0,0,0.4387354254722595,0.48567289113998413,1.1531676054000854,0.5183523893356323,0.671006441116333,0.8335164189338684,0.6630859375,0.618015706539154,1,1 +868,0.8466796875,0.84765625,0.0009765625,0.006369426751592357,1.0,1.0,0.5552978515625,0.55517578125,0.5118408203125,0,0,0.43903249502182007,0.4854607582092285,1.151039719581604,0.5184206366539001,0.6717562079429626,0.833508312702179,0.662109375,0.618360161781311,1,1 +869,0.84765625,0.8486328125,0.0009765625,0.00641025641025641,1.0,1.0,0.55517578125,0.55487060546875,0.511962890625,0,0,0.4393281936645508,0.4851236045360565,1.1489059925079346,0.5188202857971191,0.672505259513855,0.8334142565727234,0.66259765625,0.6183751225471497,1,1 +870,0.8486328125,0.849609375,0.0009765625,0.0064516129032258064,1.0,1.0,0.55487060546875,0.5546875,0.51177978515625,0,0,0.4396217465400696,0.48476994037628174,1.1467678546905518,0.5194015502929688,0.6732514500617981,0.8332517147064209,0.66259765625,0.6183586716651917,1,1 +871,0.849609375,0.8505859375,0.0009765625,0.006493506493506494,1.0,1.0,0.5546875,0.55438232421875,0.51141357421875,0,0,0.4399130344390869,0.4844399690628052,1.144624948501587,0.519988477230072,0.6739966869354248,0.833092451095581,0.66259765625,0.6183720827102661,1,1 +872,0.8505859375,0.8515625,0.0009765625,0.006535947712418301,1.0,1.0,0.55438232421875,0.5540771484375,0.5106201171875,0,0,0.44020214676856995,0.48406627774238586,1.1424775123596191,0.5205404162406921,0.6747424602508545,0.8329595327377319,0.66259765625,0.6183141469955444,1,1 +873,0.8515625,0.8525390625,0.0009765625,0.006578947368421052,1.0,1.0,0.5540771484375,0.55352783203125,0.51043701171875,0,0,0.4404888153076172,0.4837108254432678,1.1403255462646484,0.5211217403411865,0.6754869222640991,0.8328049778938293,0.662109375,0.6182973384857178,1,1 +874,0.8525390625,0.853515625,0.0009765625,0.006622516556291391,1.0,1.0,0.55352783203125,0.552978515625,0.5103759765625,0,0,0.4407731890678406,0.4834994673728943,1.1381654739379883,0.5214523673057556,0.6762344241142273,0.8327184915542603,0.66259765625,0.6185029745101929,1,1 +875,0.853515625,0.8544921875,0.0009765625,0.006666666666666667,1.0,1.0,0.552978515625,0.55206298828125,0.51019287109375,0,0,0.44105613231658936,0.4831494987010956,1.136000633239746,0.5220158100128174,0.6769838333129883,0.8325762152671814,0.662109375,0.6185123324394226,1,1 +876,0.8544921875,0.85546875,0.0009765625,0.006711409395973154,1.0,1.0,0.55206298828125,0.5516357421875,0.50982666015625,0,0,0.4413367509841919,0.4828401207923889,1.1338293552398682,0.5224518775939941,0.6777335405349731,0.8324643969535828,0.66259765625,0.6185223460197449,1,1 +877,0.85546875,0.8564453125,0.0009765625,0.006756756756756757,1.0,1.0,0.5516357421875,0.551513671875,0.510009765625,0,0,0.4416152834892273,0.4831165075302124,1.1316330432891846,0.5214008092880249,0.6784883737564087,0.8327875137329102,0.66455078125,0.6195517182350159,1,1 +878,0.8564453125,0.857421875,0.0009765625,0.006802721088435374,1.0,1.0,0.551513671875,0.55108642578125,0.509765625,0,0,0.4418957233428955,0.4827728271484375,1.1294317245483398,0.5219282507896423,0.6792429089546204,0.832665205001831,0.6640625,0.6195306777954102,1,1 +879,0.857421875,0.8583984375,0.0009765625,0.00684931506849315,1.0,1.0,0.55108642578125,0.5509033203125,0.50933837890625,0,0,0.4421737790107727,0.48239853978157043,1.127224326133728,0.522384762763977,0.6799975037574768,0.8325512409210205,0.6640625,0.6195441484451294,1,1 +880,0.8583984375,0.859375,0.0009765625,0.006896551724137931,1.0,1.0,0.5509033203125,0.55023193359375,0.50860595703125,0,0,0.44244927167892456,0.48206213116645813,1.1250112056732178,0.5228815078735352,0.6807511448860168,0.8324308395385742,0.6640625,0.6195855140686035,1,1 +881,0.859375,0.8603515625,0.0009765625,0.006944444444444444,1.0,1.0,0.55023193359375,0.54974365234375,0.50830078125,0,0,0.44272249937057495,0.48167842626571655,1.1227930784225464,0.523443877696991,0.6815046072006226,0.8323031663894653,0.6650390625,0.6195103526115417,1,1 +882,0.8603515625,0.861328125,0.0009765625,0.006993006993006993,1.0,1.0,0.54974365234375,0.54931640625,0.50830078125,0,0,0.4429929852485657,0.4813304543495178,1.1205694675445557,0.5239881277084351,0.6822571754455566,0.8321710228919983,0.6650390625,0.6195270419120789,1,1 +883,0.861328125,0.8623046875,0.0009765625,0.007042253521126761,1.0,1.0,0.54931640625,0.54827880859375,0.50750732421875,0,0,0.4432610869407654,0.48074138164520264,1.1183476448059082,0.5250504016876221,0.6830084323883057,0.8318902254104614,0.6640625,0.6191012859344482,1,1 +884,0.8623046875,0.86328125,0.0009765625,0.0070921985815602835,1.0,1.0,0.54827880859375,0.54779052734375,0.50732421875,0,0,0.4435250461101532,0.48039019107818604,1.1161197423934937,0.5255789756774902,0.6837605237960815,0.8317679166793823,0.6640625,0.6191046237945557,1,1 +885,0.86328125,0.8642578125,0.0009765625,0.007142857142857143,1.0,1.0,0.54779052734375,0.54742431640625,0.5072021484375,0,0,0.44378650188446045,0.4800402522087097,1.1138861179351807,0.5260902643203735,0.684512197971344,0.8316519260406494,0.6640625,0.6191598773002625,1,1 +886,0.8642578125,0.865234375,0.0009765625,0.007194244604316547,1.0,1.0,0.54742431640625,0.54718017578125,0.50701904296875,0,0,0.44404542446136475,0.47981828451156616,1.1116411685943604,0.5261572599411011,0.6852640509605408,0.8316699862480164,0.66455078125,0.6194237470626831,1,1 +887,0.865234375,0.8662109375,0.0009765625,0.007246376811594203,1.0,1.0,0.54718017578125,0.547119140625,0.5069580078125,0,0,0.4443027973175049,0.47983962297439575,1.1093790531158447,0.5258979797363281,0.6860190629959106,0.8317883014678955,0.6650390625,0.6200085878372192,1,1 +888,0.8662109375,0.8671875,0.0009765625,0.0072992700729927005,1.0,1.0,0.547119140625,0.546875,0.50653076171875,0,0,0.44456028938293457,0.4794823229312897,1.1071099042892456,0.526285707950592,0.6867753267288208,0.831727921962738,0.66552734375,0.6200107932090759,1,1 +889,0.8671875,0.8681640625,0.0009765625,0.007352941176470588,1.0,1.0,0.546875,0.54644775390625,0.50628662109375,0,0,0.4448152184486389,0.479137122631073,1.1048351526260376,0.5268399715423584,0.6875306367874146,0.8315985798835754,0.6650390625,0.6199671030044556,1,1 +890,0.8681640625,0.869140625,0.0009765625,0.007407407407407408,1.0,1.0,0.54644775390625,0.5460205078125,0.5057373046875,0,0,0.44506755471229553,0.47877562046051025,1.1025545597076416,0.527363657951355,0.688286542892456,0.8314810991287231,0.6650390625,0.6200089454650879,1,1 +891,0.869140625,0.8701171875,0.0009765625,0.007462686567164179,1.0,1.0,0.5460205078125,0.54571533203125,0.50518798828125,0,0,0.44531723856925964,0.47838854789733887,1.1002683639526367,0.5279257297515869,0.6890417337417603,0.831344485282898,0.66552734375,0.6199992895126343,1,1 +892,0.8701171875,0.87109375,0.0009765625,0.007518796992481203,1.0,1.0,0.54571533203125,0.54522705078125,0.5050048828125,0,0,0.44556403160095215,0.47804564237594604,1.0979760885238647,0.5284529328346252,0.689795970916748,0.8312219977378845,0.66552734375,0.6199668049812317,1,1 +893,0.87109375,0.8720703125,0.0009765625,0.007575757575757576,1.0,1.0,0.54522705078125,0.54473876953125,0.50469970703125,0,0,0.4458082318305969,0.4776783883571625,1.0956780910491943,0.5290390253067017,0.6905502080917358,0.8310795426368713,0.66552734375,0.6199604272842407,1,1 +894,0.8720703125,0.873046875,0.0009765625,0.007633587786259542,1.0,1.0,0.54473876953125,0.5445556640625,0.50439453125,0,0,0.4460497200489044,0.47747594118118286,1.0933680534362793,0.5291275978088379,0.6913058757781982,0.8310807943344116,0.66552734375,0.6202517747879028,1,1 +895,0.873046875,0.8740234375,0.0009765625,0.007692307692307693,1.0,1.0,0.5445556640625,0.54412841796875,0.5040283203125,0,0,0.446289598941803,0.4770604372024536,1.0910521745681763,0.5296032428741455,0.6920621395111084,0.8309788107872009,0.66650390625,0.6201666593551636,1,1 +896,0.8740234375,0.875,0.0009765625,0.007751937984496124,1.0,1.0,0.54412841796875,0.54388427734375,0.50347900390625,0,0,0.44652628898620605,0.4768039882183075,1.0887269973754883,0.529915988445282,0.6928199529647827,0.8309117555618286,0.666015625,0.6203738451004028,1,1 +897,0.875,0.8759765625,0.0009765625,0.0078125,1.0,1.0,0.54388427734375,0.54388427734375,0.50311279296875,0,0,0.44676101207733154,0.4764522910118103,1.086395025253296,0.5304256081581116,0.693576455116272,0.8307950496673584,0.666015625,0.6203674077987671,1,1 +898,0.8759765625,0.876953125,0.0009765625,0.007874015748031496,1.0,1.0,0.54388427734375,0.54351806640625,0.50250244140625,0,0,0.446992963552475,0.4763149619102478,1.0840506553649902,0.5305705070495605,0.6943331360816956,0.8307886123657227,0.66650390625,0.6207108497619629,1,1 +899,0.876953125,0.8779296875,0.0009765625,0.007936507936507936,1.0,1.0,0.54351806640625,0.54345703125,0.50238037109375,0,0,0.44722384214401245,0.4759926497936249,1.081697940826416,0.5309450626373291,0.695090115070343,0.8307197690010071,0.66552734375,0.6206724643707275,1,1 +900,0.8779296875,0.87890625,0.0009765625,0.008,1.0,1.0,0.54345703125,0.5433349609375,0.502197265625,0,0,0.4474521279335022,0.47563350200653076,1.0793386697769165,0.5315046906471252,0.6958454847335815,0.830594539642334,0.666015625,0.6206803321838379,1,1 +901,0.87890625,0.8798828125,0.0009765625,0.008064516129032258,1.0,1.0,0.5433349609375,0.54290771484375,0.50164794921875,0,0,0.4476776123046875,0.47527217864990234,1.0769734382629395,0.5321013927459717,0.6966000199317932,0.8304746150970459,0.666015625,0.6206945776939392,1,1 +902,0.8798828125,0.880859375,0.0009765625,0.008130081300813009,1.0,1.0,0.54290771484375,0.5423583984375,0.5008544921875,0,0,0.44790011644363403,0.4749257564544678,1.0746021270751953,0.5326935052871704,0.6973543167114258,0.8303532600402832,0.66552734375,0.6206924915313721,1,1 +903,0.880859375,0.8818359375,0.0009765625,0.00819672131147541,1.0,1.0,0.5423583984375,0.54193115234375,0.50042724609375,0,0,0.4481198191642761,0.47466781735420227,1.0722200870513916,0.5329179763793945,0.6981082558631897,0.8303442001342773,0.666015625,0.6209273934364319,1,1 +904,0.8818359375,0.8828125,0.0009765625,0.008264462809917356,1.0,1.0,0.54193115234375,0.54144287109375,0.50006103515625,0,0,0.4483374357223511,0.4743100106716156,1.0698301792144775,0.5333447456359863,0.6988620758056641,0.8302741050720215,0.666015625,0.6210181713104248,1,1 +905,0.8828125,0.8837890625,0.0009765625,0.008333333333333333,1.0,1.0,0.54144287109375,0.540771484375,0.49981689453125,0,0,0.44855207204818726,0.47398921847343445,1.0674331188201904,0.533885657787323,0.6996164321899414,0.8301719427108765,0.666015625,0.6210004091262817,1,1 +906,0.8837890625,0.884765625,0.0009765625,0.008403361344537815,1.0,1.0,0.540771484375,0.54034423828125,0.4993896484375,0,0,0.44876405596733093,0.47362732887268066,1.0650291442871094,0.5344326496124268,0.7003704905509949,0.8300609588623047,0.66650390625,0.6209908127784729,1,1 +907,0.884765625,0.8857421875,0.0009765625,0.00847457627118644,1.0,1.0,0.54034423828125,0.54010009765625,0.4990234375,0,0,0.44897300004959106,0.47328412532806396,1.0626184940338135,0.5349828004837036,0.7011210918426514,0.8299506902694702,0.666015625,0.6210711002349854,1,1 +908,0.8857421875,0.88671875,0.0009765625,0.008547008547008548,1.0,1.0,0.54010009765625,0.5400390625,0.49835205078125,0,0,0.4491789937019348,0.4729197025299072,1.060201644897461,0.5356121063232422,0.701867938041687,0.8298088312149048,0.666015625,0.621066689491272,1,1 +909,0.88671875,0.8876953125,0.0009765625,0.008620689655172414,1.0,1.0,0.5400390625,0.5396728515625,0.498291015625,0,0,0.44938191771507263,0.47284644842147827,1.0577664375305176,0.5353980660438538,0.7026158571243286,0.8299278616905212,0.666015625,0.6215124130249023,1,1 +910,0.8876953125,0.888671875,0.0009765625,0.008695652173913044,1.0,1.0,0.5396728515625,0.539306640625,0.49761962890625,0,0,0.4495841860771179,0.47247767448425293,1.0553250312805176,0.5360461473464966,0.7033619284629822,0.8297776579856873,0.66650390625,0.6215272545814514,1,1 +911,0.888671875,0.8896484375,0.0009765625,0.008771929824561403,1.0,1.0,0.539306640625,0.5389404296875,0.49749755859375,0,0,0.4497832655906677,0.47209876775741577,1.05287766456604,0.536655843257904,0.7041085958480835,0.8296645879745483,0.66650390625,0.6215102672576904,1,1 +912,0.8896484375,0.890625,0.0009765625,0.008849557522123894,1.0,1.0,0.5389404296875,0.53826904296875,0.49700927734375,0,0,0.4499790072441101,0.47166985273361206,1.0504264831542969,0.5374457836151123,0.7048560380935669,0.8294848203659058,0.66650390625,0.6214712262153625,1,1 +913,0.890625,0.8916015625,0.0009765625,0.008928571428571428,1.0,1.0,0.53826904296875,0.537841796875,0.49652099609375,0,0,0.45017093420028687,0.47131574153900146,1.0479671955108643,0.5379683971405029,0.7056014537811279,0.8293805122375488,0.66650390625,0.6215066909790039,1,1 +914,0.8916015625,0.892578125,0.0009765625,0.009009009009009009,1.0,1.0,0.537841796875,0.53729248046875,0.49603271484375,0,0,0.4503597617149353,0.47089874744415283,1.0455024242401123,0.5386477708816528,0.7063442468643188,0.8292253017425537,0.66650390625,0.6214656233787537,1,1 +915,0.892578125,0.8935546875,0.0009765625,0.00909090909090909,1.0,1.0,0.53729248046875,0.53668212890625,0.49578857421875,0,0,0.4505447745323181,0.47054627537727356,1.0430294275283813,0.5391219854354858,0.7070896625518799,0.8291356563568115,0.66650390625,0.6215469837188721,1,1 +916,0.8935546875,0.89453125,0.0009765625,0.009174311926605505,1.0,1.0,0.53668212890625,0.5361328125,0.49566650390625,0,0,0.45072656869888306,0.47019195556640625,1.0405479669570923,0.5395967960357666,0.7078399658203125,0.8290321826934814,0.66650390625,0.6215794086456299,1,1 +917,0.89453125,0.8955078125,0.0009765625,0.009259259259259259,1.0,1.0,0.5361328125,0.53570556640625,0.4951171875,0,0,0.4509051442146301,0.4697061777114868,1.0380640029907227,0.5405244827270508,0.7085900902748108,0.8287957906723022,0.66650390625,0.6214388608932495,1,1 +918,0.8955078125,0.896484375,0.0009765625,0.009345794392523364,1.0,1.0,0.53570556640625,0.5355224609375,0.49468994140625,0,0,0.45107921957969666,0.46939778327941895,1.035570740699768,0.5409882068634033,0.7093428373336792,0.828687846660614,0.66650390625,0.6215871572494507,1,1 +919,0.896484375,0.8974609375,0.0009765625,0.009433962264150943,1.0,1.0,0.5355224609375,0.5350341796875,0.4942626953125,0,0,0.45125043392181396,0.46900463104248047,1.033071517944336,0.5416873097419739,0.7100968360900879,0.8285185098648071,0.66650390625,0.621592104434967,1,1 +920,0.8974609375,0.8984375,0.0009765625,0.009523809523809525,1.0,1.0,0.5350341796875,0.53460693359375,0.49383544921875,0,0,0.4514179229736328,0.4687959551811218,1.0305570363998413,0.5417829751968384,0.7108537554740906,0.8285225629806519,0.6669921875,0.6218165755271912,1,1 +921,0.8984375,0.8994140625,0.0009765625,0.009615384615384616,1.0,1.0,0.53460693359375,0.5340576171875,0.49310302734375,0,0,0.4515834152698517,0.4684520661830902,1.0280342102050781,0.5423575639724731,0.7116125822067261,0.8284018039703369,0.6669921875,0.6219742298126221,1,1 +922,0.8994140625,0.900390625,0.0009765625,0.009708737864077669,1.0,1.0,0.5340576171875,0.53363037109375,0.49285888671875,0,0,0.4517455995082855,0.46813854575157166,1.0255014896392822,0.5427992343902588,0.7123734354972839,0.828319787979126,0.66748046875,0.6221325397491455,1,1 +923,0.900390625,0.9013671875,0.0009765625,0.00980392156862745,1.0,1.0,0.53363037109375,0.53338623046875,0.49200439453125,0,0,0.4519047439098358,0.4675523340702057,1.0229706764221191,0.5439836978912354,0.7131313681602478,0.8280200958251953,0.66650390625,0.6218331456184387,1,1 +924,0.9013671875,0.90234375,0.0009765625,0.009900990099009901,1.0,1.0,0.53338623046875,0.53277587890625,0.491943359375,0,0,0.45205816626548767,0.46735715866088867,1.0204235315322876,0.5440405607223511,0.713893473148346,0.8280514478683472,0.66748046875,0.6221702098846436,1,1 +925,0.90234375,0.9033203125,0.0009765625,0.01,1.0,1.0,0.53277587890625,0.53216552734375,0.4913330078125,0,0,0.45220962166786194,0.4669167399406433,1.0178711414337158,0.544781506061554,0.7146568298339844,0.8278911113739014,0.66748046875,0.6221835613250732,1,1 +926,0.9033203125,0.904296875,0.0009765625,0.010101010101010102,1.0,1.0,0.53216552734375,0.53173828125,0.49102783203125,0,0,0.4523566961288452,0.46651339530944824,1.0153133869171143,0.5455493330955505,0.7154194712638855,0.8277169466018677,0.66748046875,0.6221923828125,1,1 +927,0.904296875,0.9052734375,0.0009765625,0.01020408163265306,1.0,1.0,0.53173828125,0.53106689453125,0.49053955078125,0,0,0.4524996876716614,0.46608078479766846,1.0127508640289307,0.546310544013977,0.7161861062049866,0.8275552988052368,0.66748046875,0.622194766998291,1,1 +928,0.9052734375,0.90625,0.0009765625,0.010309278350515464,1.0,1.0,0.53106689453125,0.53082275390625,0.49005126953125,0,0,0.45263826847076416,0.4656580984592438,1.0101826190948486,0.5470693111419678,0.7169536352157593,0.8274120092391968,0.66748046875,0.6221774816513062,1,1 +929,0.90625,0.9072265625,0.0009765625,0.010416666666666666,1.0,1.0,0.53082275390625,0.5306396484375,0.48974609375,0,0,0.45277249813079834,0.4651845097541809,1.0076117515563965,0.54796302318573,0.7177178859710693,0.8272162079811096,0.6669921875,0.6221328973770142,1,1 +930,0.9072265625,0.908203125,0.0009765625,0.010526315789473684,1.0,1.0,0.5306396484375,0.52978515625,0.4893798828125,0,0,0.45290178060531616,0.4647255539894104,1.0050368309020996,0.5487920641899109,0.7184816002845764,0.827039897441864,0.6669921875,0.6220711469650269,1,1 +931,0.908203125,0.9091796875,0.0009765625,0.010638297872340425,1.0,1.0,0.52978515625,0.5294189453125,0.48907470703125,0,0,0.4530262053012848,0.4646041989326477,1.0024410486221313,0.54864901304245,0.7192513942718506,0.8271529078483582,0.66796875,0.622604489326477,1,1 +932,0.9091796875,0.91015625,0.0009765625,0.010752688172043012,1.0,1.0,0.5294189453125,0.5286865234375,0.4886474609375,0,0,0.45314937829971313,0.46415096521377563,0.9998414516448975,0.5495045185089111,0.720018744468689,0.8269588947296143,0.66845703125,0.6225574016571045,1,1 +933,0.91015625,0.9111328125,0.0009765625,0.010869565217391304,1.0,1.0,0.5286865234375,0.52813720703125,0.488037109375,0,0,0.4532676637172699,0.4637487530708313,0.9972350597381592,0.5501996278762817,0.7207844853401184,0.8268277645111084,0.66845703125,0.6226275563240051,1,1 +934,0.9111328125,0.912109375,0.0009765625,0.01098901098901099,1.0,1.0,0.52813720703125,0.5277099609375,0.4871826171875,0,0,0.45338159799575806,0.4633093476295471,0.994623064994812,0.550915002822876,0.7215510010719299,0.8266844153404236,0.66796875,0.6226438283920288,1,1 +935,0.912109375,0.9130859375,0.0009765625,0.011111111111111112,1.0,1.0,0.5277099609375,0.527099609375,0.4869384765625,0,0,0.45349064469337463,0.4628623127937317,0.992006778717041,0.5517563819885254,0.7223191261291504,0.8264999985694885,0.6669921875,0.6226421594619751,1,1 +936,0.9130859375,0.9140625,0.0009765625,0.011235955056179775,1.0,1.0,0.527099609375,0.52655029296875,0.48687744140625,0,0,0.45359480381011963,0.46234625577926636,0.9893872141838074,0.5526086091995239,0.7230842113494873,0.8263158202171326,0.66845703125,0.6225659251213074,1,1 +937,0.9140625,0.9150390625,0.0009765625,0.011363636363636364,1.0,1.0,0.52655029296875,0.52581787109375,0.48602294921875,0,0,0.45369309186935425,0.4619116187095642,0.9867621660232544,0.5533914566040039,0.7238484621047974,0.8261597156524658,0.66845703125,0.622643232345581,1,1 +938,0.9150390625,0.916015625,0.0009765625,0.011494252873563218,1.0,1.0,0.52581787109375,0.52532958984375,0.48583984375,0,0,0.4537864923477173,0.4614565372467041,0.9841326475143433,0.5542550683021545,0.7246115803718567,0.8259882926940918,0.66845703125,0.6226333379745483,1,1 +939,0.916015625,0.9169921875,0.0009765625,0.011627906976744186,1.0,1.0,0.52532958984375,0.52447509765625,0.48529052734375,0,0,0.4538746476173401,0.46100151538848877,0.9814987778663635,0.5551429986953735,0.7253754734992981,0.8258070945739746,0.66845703125,0.6226248741149902,1,1 +940,0.9169921875,0.91796875,0.0009765625,0.011764705882352941,1.0,1.0,0.52447509765625,0.52398681640625,0.48486328125,0,0,0.4539574980735779,0.4605308771133423,0.9788621664047241,0.5561067461967468,0.726135790348053,0.8256036043167114,0.66845703125,0.6225337982177734,1,1 +941,0.91796875,0.9189453125,0.0009765625,0.011904761904761904,1.0,1.0,0.52398681640625,0.5235595703125,0.48431396484375,0,0,0.45403483510017395,0.4600669741630554,0.976220965385437,0.5569766759872437,0.7268956303596497,0.8254300355911255,0.66796875,0.6225605607032776,1,1 +942,0.9189453125,0.919921875,0.0009765625,0.012048192771084338,1.0,1.0,0.5235595703125,0.52325439453125,0.48394775390625,0,0,0.4541066288948059,0.45961594581604004,0.9735754132270813,0.5578783750534058,0.7276510000228882,0.8252375721931458,0.66845703125,0.6225795745849609,1,1 +943,0.919921875,0.9208984375,0.0009765625,0.012195121951219513,1.0,1.0,0.52325439453125,0.5228271484375,0.48370361328125,0,0,0.4541729986667633,0.4595431983470917,0.9709025621414185,0.5575835704803467,0.7284083962440491,0.8253993391990662,0.66748046875,0.6231195330619812,1,1 +944,0.9208984375,0.921875,0.0009765625,0.012345679012345678,1.0,1.0,0.5228271484375,0.52227783203125,0.48321533203125,0,0,0.4542384743690491,0.45907580852508545,0.9682254791259766,0.5584893226623535,0.729163646697998,0.8252070546150208,0.66796875,0.6231440901756287,1,1 +945,0.921875,0.9228515625,0.0009765625,0.0125,1.0,1.0,0.52227783203125,0.52197265625,0.4827880859375,0,0,0.454298198223114,0.4586193561553955,0.965542733669281,0.5592969655990601,0.7299192547798157,0.8250292539596558,0.66748046875,0.6231191158294678,1,1 +946,0.9228515625,0.923828125,0.0009765625,0.012658227848101266,1.0,1.0,0.52197265625,0.521728515625,0.48175048828125,0,0,0.4543522000312805,0.45814353227615356,0.9628559350967407,0.5601963996887207,0.7306703329086304,0.8248410820960999,0.66845703125,0.6231163144111633,1,1 +947,0.923828125,0.9248046875,0.0009765625,0.01282051282051282,1.0,1.0,0.521728515625,0.52069091796875,0.4814453125,0,0,0.4544001817703247,0.4576822817325592,0.960163950920105,0.561095654964447,0.7314189672470093,0.8246361017227173,0.66796875,0.6231269240379333,1,1 +948,0.9248046875,0.92578125,0.0009765625,0.012987012987012988,1.0,1.0,0.52069091796875,0.51983642578125,0.48101806640625,0,0,0.45444226264953613,0.45718955993652344,0.9574683904647827,0.5620474219322205,0.7321726083755493,0.8244094848632812,0.66748046875,0.6230961680412292,1,1 +949,0.92578125,0.9267578125,0.0009765625,0.013157894736842105,1.0,1.0,0.51983642578125,0.51947021484375,0.48077392578125,0,0,0.4544779062271118,0.4567442834377289,0.954766571521759,0.5628871917724609,0.7329281568527222,0.8242166042327881,0.66845703125,0.6231303811073303,1,1 +950,0.9267578125,0.927734375,0.0009765625,0.013333333333333334,1.0,1.0,0.51947021484375,0.518798828125,0.4801025390625,0,0,0.4545077085494995,0.45627570152282715,0.9520595073699951,0.5638004541397095,0.733680784702301,0.823997974395752,0.66845703125,0.623131513595581,1,1 +951,0.927734375,0.9287109375,0.0009765625,0.013513513513513514,1.0,1.0,0.518798828125,0.518310546875,0.47979736328125,0,0,0.4545312821865082,0.45579633116722107,0.9493475556373596,0.5647256374359131,0.7344313859939575,0.823776125907898,0.66796875,0.6231387257575989,1,1 +952,0.9287109375,0.9296875,0.0009765625,0.0136986301369863,1.0,1.0,0.518310546875,0.517822265625,0.4791259765625,0,0,0.45454835891723633,0.4552529454231262,0.9466308355331421,0.5655910968780518,0.7351762056350708,0.8235704302787781,0.66796875,0.6230586171150208,1,1 +953,0.9296875,0.9306640625,0.0009765625,0.013888888888888888,1.0,1.0,0.517822265625,0.51727294921875,0.4783935546875,0,0,0.45455801486968994,0.45479536056518555,0.9439073801040649,0.5664448738098145,0.7359210252761841,0.8233534097671509,0.6669921875,0.6230455040931702,1,1 +954,0.9306640625,0.931640625,0.0009765625,0.014084507042253521,1.0,1.0,0.51727294921875,0.51617431640625,0.47784423828125,0,0,0.4545612931251526,0.45466265082359314,0.9411578178405762,0.5664798021316528,0.7366692423820496,0.8233897686004639,0.66748046875,0.6236382722854614,1,1 +955,0.931640625,0.9326171875,0.0009765625,0.014285714285714285,1.0,1.0,0.51617431640625,0.51531982421875,0.4771728515625,0,0,0.4545626938343048,0.45417463779449463,0.9384016394615173,0.5673366189002991,0.7374176979064941,0.823188304901123,0.6669921875,0.623636782169342,1,1 +956,0.9326171875,0.93359375,0.0009765625,0.014492753623188406,1.0,1.0,0.51531982421875,0.51446533203125,0.47650146484375,0,0,0.4545571208000183,0.45367157459259033,0.9356397390365601,0.5682307481765747,0.7381656169891357,0.8229926824569702,0.66796875,0.6236305236816406,1,1 +957,0.93359375,0.9345703125,0.0009765625,0.014705882352941176,1.0,1.0,0.51446533203125,0.51397705078125,0.47576904296875,0,0,0.4545443058013916,0.4531199038028717,0.9328739047050476,0.5691893100738525,0.7389130592346191,0.8227699995040894,0.66650390625,0.623503565788269,1,1 +958,0.9345703125,0.935546875,0.0009765625,0.014925373134328358,1.0,1.0,0.51397705078125,0.5135498046875,0.4757080078125,0,0,0.45452332496643066,0.45260244607925415,0.9301018714904785,0.5700656771659851,0.739660382270813,0.8225883841514587,0.66650390625,0.6235290169715881,1,1 +959,0.935546875,0.9365234375,0.0009765625,0.015151515151515152,1.0,1.0,0.5135498046875,0.51312255859375,0.47503662109375,0,0,0.4544946551322937,0.4520705044269562,0.9273242950439453,0.5709654092788696,0.7404061555862427,0.8223764300346375,0.6669921875,0.6234602928161621,1,1 +960,0.9365234375,0.9375,0.0009765625,0.015384615384615385,1.0,1.0,0.51312255859375,0.5120849609375,0.474609375,0,0,0.4544578790664673,0.45153936743736267,0.9245407581329346,0.5718610286712646,0.7411492466926575,0.8221819996833801,0.66650390625,0.6234420537948608,1,1 +961,0.9375,0.9384765625,0.0009765625,0.015625,1.0,1.0,0.5120849609375,0.51116943359375,0.47412109375,0,0,0.4544129967689514,0.4510453939437866,0.9217489957809448,0.5726702809333801,0.7418898940086365,0.8219959735870361,0.6669921875,0.6234666109085083,1,1 +962,0.9384765625,0.939453125,0.0009765625,0.015873015873015872,1.0,1.0,0.51116943359375,0.51043701171875,0.47430419921875,0,0,0.45436036586761475,0.4506469964981079,0.9189420938491821,0.573215126991272,0.7426314353942871,0.821872353553772,0.66796875,0.6236571669578552,1,1 +963,0.939453125,0.9404296875,0.0009765625,0.016129032258064516,1.0,1.0,0.51043701171875,0.510009765625,0.4735107421875,0,0,0.4543014168739319,0.4500492215156555,0.9161322712898254,0.5742185711860657,0.7433722615242004,0.8216087222099304,0.666015625,0.6234793663024902,1,1 +964,0.9404296875,0.94140625,0.0009765625,0.01639344262295082,1.0,1.0,0.510009765625,0.5093994140625,0.472900390625,0,0,0.4542328119277954,0.4496217370033264,0.9133080244064331,0.5748019218444824,0.7441126108169556,0.8214706778526306,0.66748046875,0.623644232749939,1,1 +965,0.94140625,0.9423828125,0.0009765625,0.016666666666666666,1.0,1.0,0.5093994140625,0.5086669921875,0.472412109375,0,0,0.4541572034358978,0.4490918815135956,0.910476565361023,0.5757092237472534,0.7448529005050659,0.8212283849716187,0.66748046875,0.6236362457275391,1,1 +966,0.9423828125,0.943359375,0.0009765625,0.01694915254237288,1.0,1.0,0.5086669921875,0.50799560546875,0.47210693359375,0,0,0.4540727734565735,0.4488691985607147,0.9076133966445923,0.5756325125694275,0.7455974817276001,0.8212877511978149,0.66748046875,0.624022364616394,1,1 +967,0.943359375,0.9443359375,0.0009765625,0.017241379310344827,1.0,1.0,0.50799560546875,0.5069580078125,0.4713134765625,0,0,0.4539845585823059,0.4483308792114258,0.9047431945800781,0.5765337944030762,0.7463382482528687,0.8210676312446594,0.66748046875,0.624031662940979,1,1 +968,0.9443359375,0.9453125,0.0009765625,0.017543859649122806,1.0,1.0,0.5069580078125,0.50616455078125,0.470703125,0,0,0.45388704538345337,0.4478222131729126,0.901864767074585,0.5773965120315552,0.7470778226852417,0.8208939433097839,0.66796875,0.6240425109863281,1,1 +969,0.9453125,0.9462890625,0.0009765625,0.017857142857142856,1.0,1.0,0.50616455078125,0.50531005859375,0.4698486328125,0,0,0.4537806212902069,0.4472639262676239,0.8989790678024292,0.578311562538147,0.747819185256958,0.8207188844680786,0.66748046875,0.6240425109863281,1,1 +970,0.9462890625,0.947265625,0.0009765625,0.01818181818181818,1.0,1.0,0.50531005859375,0.50445556640625,0.4693603515625,0,0,0.45366424322128296,0.4467419385910034,0.8960835933685303,0.5791375637054443,0.748562216758728,0.8205736875534058,0.66748046875,0.6240328550338745,1,1 +971,0.947265625,0.9482421875,0.0009765625,0.018518518518518517,1.0,1.0,0.50445556640625,0.50396728515625,0.46905517578125,0,0,0.45353835821151733,0.4462165832519531,0.8931785225868225,0.5799698829650879,0.7493085265159607,0.8204057812690735,0.66796875,0.6240456700325012,1,1 +972,0.9482421875,0.94921875,0.0009765625,0.018867924528301886,1.0,1.0,0.50396728515625,0.50335693359375,0.46832275390625,0,0,0.4534027576446533,0.4456748962402344,0.8902637362480164,0.5808150172233582,0.7500569224357605,0.8202089071273804,0.66748046875,0.6240274310112,1,1 +973,0.94921875,0.9501953125,0.0009765625,0.019230769230769232,1.0,1.0,0.50335693359375,0.50262451171875,0.4681396484375,0,0,0.4532569348812103,0.44517117738723755,0.8873375654220581,0.5816501379013062,0.7508010864257812,0.8200202584266663,0.66748046875,0.6240392923355103,1,1 +974,0.9501953125,0.951171875,0.0009765625,0.0196078431372549,1.0,1.0,0.50262451171875,0.501220703125,0.4678955078125,0,0,0.45310142636299133,0.4445991516113281,0.8844001293182373,0.5824461579322815,0.751545250415802,0.8198381662368774,0.66748046875,0.6239705681800842,1,1 +975,0.951171875,0.9521484375,0.0009765625,0.02,1.0,1.0,0.501220703125,0.500244140625,0.46722412109375,0,0,0.4529346823692322,0.44405698776245117,0.881453275680542,0.5833960175514221,0.752290666103363,0.8196009993553162,0.6669921875,0.6239850521087646,1,1 +976,0.9521484375,0.953125,0.0009765625,0.02040816326530612,1.0,1.0,0.500244140625,0.4993896484375,0.46630859375,0,0,0.4527571201324463,0.443501740694046,0.8784981369972229,0.5843831300735474,0.7530347108840942,0.8193854093551636,0.66748046875,0.6239738464355469,1,1 +977,0.953125,0.9541015625,0.0009765625,0.020833333333333332,1.0,1.0,0.4993896484375,0.4991455078125,0.465087890625,0,0,0.4525682330131531,0.44295522570610046,0.8755363821983337,0.5854443311691284,0.7537756562232971,0.8191787004470825,0.66748046875,0.6239839792251587,1,1 +978,0.9541015625,0.955078125,0.0009765625,0.02127659574468085,1.0,1.0,0.4991455078125,0.49774169921875,0.46490478515625,0,0,0.452367901802063,0.44265416264533997,0.8725435733795166,0.5857460498809814,0.754524827003479,0.8191909790039062,0.66650390625,0.6242766976356506,1,1 +979,0.955078125,0.9560546875,0.0009765625,0.021739130434782608,1.0,1.0,0.49774169921875,0.496826171875,0.4647216796875,0,0,0.45216119289398193,0.44204282760620117,0.869549036026001,0.5869354605674744,0.7552711963653564,0.8189230561256409,0.66748046875,0.6242619752883911,1,1 +980,0.9560546875,0.95703125,0.0009765625,0.022222222222222223,1.0,1.0,0.496826171875,0.49609375,0.46435546875,0,0,0.45194122195243835,0.441396564245224,0.8665537238121033,0.5881791114807129,0.7560168504714966,0.8186458945274353,0.66748046875,0.6242570877075195,1,1 +981,0.95703125,0.9580078125,0.0009765625,0.022727272727272728,1.0,1.0,0.49609375,0.49517822265625,0.46356201171875,0,0,0.4517068862915039,0.4407818019390106,0.8635565042495728,0.5893821120262146,0.7567566633224487,0.8184047937393188,0.66796875,0.6242610812187195,1,1 +982,0.9580078125,0.958984375,0.0009765625,0.023255813953488372,1.0,1.0,0.49517822265625,0.49456787109375,0.4632568359375,0,0,0.45145854353904724,0.44026485085487366,0.860547661781311,0.5903491973876953,0.7574926018714905,0.8182145953178406,0.66796875,0.6243524551391602,1,1 +983,0.958984375,0.9599609375,0.0009765625,0.023809523809523808,1.0,1.0,0.49456787109375,0.4937744140625,0.46270751953125,0,0,0.4511982202529907,0.43969690799713135,0.8575271368026733,0.5912908315658569,0.7582331299781799,0.8180143237113953,0.66796875,0.6244916915893555,1,1 +984,0.9599609375,0.9609375,0.0009765625,0.024390243902439025,1.0,1.0,0.4937744140625,0.4931640625,0.4615478515625,0,0,0.4509243369102478,0.4390515089035034,0.8545045852661133,0.5925350189208984,0.758975088596344,0.817779541015625,0.66796875,0.6244736909866333,1,1 +985,0.9609375,0.9619140625,0.0009765625,0.025,1.0,1.0,0.4931640625,0.49267578125,0.46124267578125,0,0,0.4506347179412842,0.4383516311645508,0.8514836430549622,0.5938601493835449,0.7597113251686096,0.817499041557312,0.66748046875,0.6244368553161621,1,1 +986,0.9619140625,0.962890625,0.0009765625,0.02564102564102564,1.0,1.0,0.49267578125,0.49200439453125,0.46124267578125,0,0,0.45032763481140137,0.4376853406429291,0.8484583497047424,0.5950108170509338,0.7604415416717529,0.8172748684883118,0.66748046875,0.6244584321975708,1,1 +987,0.962890625,0.9638671875,0.0009765625,0.02631578947368421,1.0,1.0,0.49200439453125,0.4910888671875,0.46038818359375,0,0,0.450003445148468,0.4370092749595642,0.8454318046569824,0.5962835550308228,0.7611666917800903,0.8170220851898193,0.6669921875,0.6244341135025024,1,1 +988,0.9638671875,0.96484375,0.0009765625,0.02702702702702703,1.0,1.0,0.4910888671875,0.48974609375,0.45941162109375,0,0,0.4496614634990692,0.436360627412796,0.8424009680747986,0.5974389314651489,0.7618943452835083,0.816831111907959,0.66748046875,0.624488115310669,1,1 +989,0.96484375,0.9658203125,0.0009765625,0.027777777777777776,1.0,1.0,0.48974609375,0.4888916015625,0.45843505859375,0,0,0.44930195808410645,0.435657262802124,0.8393703103065491,0.5986961722373962,0.7626212239265442,0.8166364431381226,0.66796875,0.6245079040527344,1,1 +990,0.9658203125,0.966796875,0.0009765625,0.02857142857142857,1.0,1.0,0.4888916015625,0.4879150390625,0.457763671875,0,0,0.44892287254333496,0.4351538419723511,0.8363156914710999,0.5993437767028809,0.7633464336395264,0.8166429996490479,0.66796875,0.6248338222503662,1,1 +991,0.966796875,0.9677734375,0.0009765625,0.029411764705882353,1.0,1.0,0.4879150390625,0.48675537109375,0.45684814453125,0,0,0.4485294818878174,0.4344539940357208,0.8332611918449402,0.6005550622940063,0.7640639543533325,0.8165137767791748,0.66796875,0.6248159408569336,1,1 +992,0.9677734375,0.96875,0.0009765625,0.030303030303030304,1.0,1.0,0.48675537109375,0.486083984375,0.455810546875,0,0,0.44811543822288513,0.4338794946670532,0.8301869034767151,0.6013035774230957,0.7647746205329895,0.816555917263031,0.66748046875,0.6249241232872009,1,1 +993,0.96875,0.9697265625,0.0009765625,0.03125,1.0,1.0,0.486083984375,0.48486328125,0.455322265625,0,0,0.44768399000167847,0.43318066000938416,0.8271136283874512,0.602547287940979,0.7654767036437988,0.8164612054824829,0.66845703125,0.624945878982544,1,1 +994,0.9697265625,0.970703125,0.0009765625,0.03225806451612903,1.0,1.0,0.48486328125,0.4837646484375,0.45489501953125,0,0,0.4472307562828064,0.43246203660964966,0.824046790599823,0.6039461493492126,0.7661627531051636,0.8163195848464966,0.66796875,0.6249690055847168,1,1 +995,0.970703125,0.9716796875,0.0009765625,0.03333333333333333,1.0,1.0,0.4837646484375,0.4825439453125,0.45416259765625,0,0,0.4467542767524719,0.43174609541893005,0.8209897875785828,0.6054178476333618,0.7668424844741821,0.8161348700523376,0.66845703125,0.6249858140945435,1,1 +996,0.9716796875,0.97265625,0.0009765625,0.034482758620689655,1.0,1.0,0.4825439453125,0.48065185546875,0.45343017578125,0,0,0.4462539553642273,0.4310207962989807,0.8179539442062378,0.607109010219574,0.7675178050994873,0.8158701658248901,0.66845703125,0.6249433755874634,1,1 +997,0.97265625,0.9736328125,0.0009765625,0.03571428571428571,1.0,1.0,0.48065185546875,0.4794921875,0.45263671875,0,0,0.4457286596298218,0.43028438091278076,0.8149470090866089,0.6089122295379639,0.7681938409805298,0.8155782222747803,0.66796875,0.6249250173568726,1,1 +998,0.9736328125,0.974609375,0.0009765625,0.037037037037037035,1.0,1.0,0.4794921875,0.47894287109375,0.45172119140625,0,0,0.44517701864242554,0.42954394221305847,0.8119785785675049,0.6107967495918274,0.7688754200935364,0.8152315020561218,0.66796875,0.6249650716781616,1,1 +999,0.974609375,0.9755859375,0.0009765625,0.038461538461538464,1.0,1.0,0.47894287109375,0.47723388671875,0.45135498046875,0,0,0.4445979595184326,0.4287174940109253,0.809071958065033,0.6130908131599426,0.7695382833480835,0.8146888613700867,0.66796875,0.6249040365219116,1,1 +1000,0.9755859375,0.9765625,0.0009765625,0.04,1.0,1.0,0.47723388671875,0.4761962890625,0.4505615234375,0,0,0.4439871311187744,0.4279627799987793,0.8062301278114319,0.6153883337974548,0.7701953649520874,0.814060628414154,0.66748046875,0.6249200105667114,1,1 +1001,0.9765625,0.9775390625,0.0009765625,0.041666666666666664,1.0,1.0,0.4761962890625,0.47442626953125,0.44970703125,0,0,0.4433460831642151,0.42715686559677124,0.8034648299217224,0.617919921875,0.7708410620689392,0.813495397567749,0.66796875,0.6248980760574341,1,1 +1002,0.9775390625,0.978515625,0.0009765625,0.043478260869565216,1.0,1.0,0.47442626953125,0.473388671875,0.4488525390625,0,0,0.4426714777946472,0.42640501260757446,0.800771176815033,0.6204370856285095,0.7714826464653015,0.812943160533905,0.66748046875,0.6248923540115356,1,1 +1003,0.978515625,0.9794921875,0.0009765625,0.045454545454545456,1.0,1.0,0.473388671875,0.47174072265625,0.44921875,0,0,0.44196420907974243,0.42626428604125977,0.7980141043663025,0.6208769083023071,0.7721455693244934,0.8129963874816895,0.66943359375,0.6256443858146667,1,1 +1004,0.9794921875,0.98046875,0.0009765625,0.047619047619047616,1.0,1.0,0.47174072265625,0.47064208984375,0.448486328125,0,0,0.4412505030632019,0.42526453733444214,0.7953423261642456,0.6236242055892944,0.7727774381637573,0.8124183416366577,0.66796875,0.6252926588058472,1,1 +1005,0.98046875,0.9814453125,0.0009765625,0.05,1.0,1.0,0.47064208984375,0.46905517578125,0.44793701171875,0,0,0.4404892027378082,0.4248756468296051,0.7925882935523987,0.6241899728775024,0.7734220027923584,0.812385082244873,0.6689453125,0.625586986541748,1,1 +1006,0.9814453125,0.982421875,0.0009765625,0.05263157894736842,1.0,1.0,0.46905517578125,0.46746826171875,0.4473876953125,0,0,0.4397084414958954,0.4240834712982178,0.7897907495498657,0.625503420829773,0.774085521697998,0.8122819662094116,0.66748046875,0.6254386901855469,1,1 +1007,0.982421875,0.9833984375,0.0009765625,0.05555555555555555,1.0,1.0,0.46746826171875,0.46630859375,0.44708251953125,0,0,0.43888601660728455,0.42371949553489685,0.7868175506591797,0.6252961158752441,0.7747567892074585,0.812544047832489,0.66845703125,0.625798225402832,1,1 +1008,0.9833984375,0.984375,0.0009765625,0.058823529411764705,1.0,1.0,0.46630859375,0.4652099609375,0.44659423828125,0,0,0.4380433261394501,0.42281508445739746,0.783767819404602,0.6265456080436707,0.7754371166229248,0.8122957348823547,0.66845703125,0.6254653334617615,1,1 +1009,0.984375,0.9853515625,0.0009765625,0.0625,1.0,1.0,0.4652099609375,0.46368408203125,0.44659423828125,0,0,0.43714600801467896,0.4221901297569275,0.7805397510528564,0.6266939043998718,0.7761543989181519,0.8123217821121216,0.66845703125,0.6254720687866211,1,1 +1010,0.9853515625,0.986328125,0.0009765625,0.06666666666666667,1.0,1.0,0.46368408203125,0.4620361328125,0.44580078125,0,0,0.4362071752548218,0.4215887784957886,0.7770950794219971,0.6266288757324219,0.7769194841384888,0.8124310970306396,0.66845703125,0.6254661083221436,1,1 +1011,0.986328125,0.9873046875,0.0009765625,0.07142857142857142,1.0,1.0,0.4620361328125,0.46063232421875,0.44482421875,0,0,0.43522611260414124,0.4209393262863159,0.7733967304229736,0.626326322555542,0.7777426838874817,0.8126369714736938,0.66796875,0.6254381537437439,1,1 +1012,0.9873046875,0.98828125,0.0009765625,0.07692307692307693,1.0,1.0,0.46063232421875,0.4591064453125,0.4432373046875,0,0,0.4341973066329956,0.4203327000141144,0.7694271206855774,0.6261377334594727,0.7786405682563782,0.812749445438385,0.66748046875,0.6254247426986694,1,1 +1013,0.98828125,0.9892578125,0.0009765625,0.08333333333333333,1.0,1.0,0.4591064453125,0.45672607421875,0.44281005859375,0,0,0.4331199824810028,0.4196928143501282,0.7651655673980713,0.6259869337081909,0.7796698808670044,0.812860369682312,0.66796875,0.6254367828369141,1,1 +1014,0.9892578125,0.990234375,0.0009765625,0.09090909090909091,1.0,1.0,0.45672607421875,0.45513916015625,0.44134521484375,0,0,0.4319869875907898,0.41904038190841675,0.7605912685394287,0.6259833574295044,0.7808020114898682,0.8129944801330566,0.66845703125,0.6253970265388489,1,1 +1015,0.990234375,0.9912109375,0.0009765625,0.1,1.0,1.0,0.45513916015625,0.452392578125,0.44073486328125,0,0,0.43079233169555664,0.4183279275894165,0.7557353973388672,0.626396656036377,0.7820700407028198,0.8130290508270264,0.66796875,0.6254329681396484,1,1 +1016,0.9912109375,0.9921875,0.0009765625,0.1111111111111111,1.0,1.0,0.452392578125,0.4510498046875,0.44049072265625,0,0,0.42952466011047363,0.41796815395355225,0.7504546642303467,0.6257821321487427,0.7834457159042358,0.8132020831108093,0.66845703125,0.6259255409240723,1,1 +1017,0.9921875,0.9931640625,0.0009765625,0.125,1.0,1.0,0.4510498046875,0.45050048828125,0.43927001953125,0,0,0.4282160699367523,0.41713064908981323,0.7448009848594666,0.6260373592376709,0.7848750352859497,0.8130455017089844,0.6689453125,0.6258982419967651,1,1 +1018,0.9931640625,0.994140625,0.0009765625,0.14285714285714285,1.0,1.0,0.45050048828125,0.448974609375,0.43817138671875,0,0,0.4268033802509308,0.41619908809661865,0.7385579347610474,0.6257579326629639,0.7865091562271118,0.8131273984909058,0.66845703125,0.6259098052978516,1,1 +1019,0.994140625,0.9951171875,0.0009765625,0.16666666666666666,1.0,1.0,0.448974609375,0.44696044921875,0.43670654296875,0,0,0.42526358366012573,0.4151105284690857,0.7316384315490723,0.6253140568733215,0.7882576584815979,0.8133993744850159,0.66845703125,0.6259193420410156,1,1 +1020,0.9951171875,0.99609375,0.0009765625,0.2,1.0,1.0,0.44696044921875,0.4444580078125,0.4351806640625,0,0,0.423552542924881,0.41391074657440186,0.7238587737083435,0.6245875358581543,0.790046751499176,0.8136376142501831,0.66845703125,0.6258631944656372,1,1 +1021,0.99609375,0.9970703125,0.0009765625,0.25,1.0,1.0,0.4444580078125,0.442138671875,0.43463134765625,0,0,0.42160260677337646,0.41284316778182983,0.7144265174865723,0.623635470867157,0.7924044132232666,0.8138197660446167,0.66845703125,0.625874400138855,1,1 +1022,0.9970703125,0.998046875,0.0009765625,0.3333333333333333,1.0,1.0,0.442138671875,0.4385986328125,0.43304443359375,0,0,0.41936177015304565,0.4117148220539093,0.7015626430511475,0.6227275133132935,0.7956986427307129,0.8141393065452576,0.66943359375,0.6260902881622314,1,1 +1023,0.998046875,0.9990234375,0.0009765625,0.5,1.0,1.0,0.4385986328125,0.4351806640625,0.4324951171875,0,0,0.4167923033237457,0.4097844660282135,0.6835914850234985,0.6268265247344971,0.800687313079834,0.813711404800415,0.6689453125,0.6260848045349121,1,1 +1024,0.9990234375,1.0,0.0009765625,1.0,1.0,1.0,0.4351806640625,0.42962646484375,0.42962646484375,0,0,0.41327762603759766,0.40738481283187866,0.637602686882019,0.6376000642776489,0.8117479085922241,0.8117512464523315,0.6689453125,0.6261046528816223,1,1 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..255d373c532940caa8cb51d7d4af5a3a41d87ffb --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/allcorrupt/trace_uniform_steps1024/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/diag_copied_len256_allcorrupt_step69000/step_0069000.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 1024, + "seed": 20314773, + "time_schedule": "uniform", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.42962646484375, + "final_token_acc_min": 0.02734375, + "final_token_acc_max": 0.6640625, + "final_exact_count": 0, + "final_best_ref_counts": [ + 4, + 15, + 11, + 5, + 4, + 12, + 8, + 5 + ], + "lock_stats": { + "final_token_acc_mean": 0.42962646484375, + "final_exact_count": 0, + "final_best_ref": [ + 2, + 1, + 4, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 5, + 2, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 3, + 1, + 2, + 1, + 5, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 5, + 6, + 5, + 5, + 4, + 7, + 3, + 7, + 1 + ], + "wrong_count_per_sample": [ + 119, + 239, + 136, + 105, + 144, + 217, + 103, + 93, + 108, + 136, + 94, + 119, + 106, + 167, + 243, + 93, + 244, + 105, + 117, + 109, + 125, + 102, + 153, + 107, + 104, + 121, + 234, + 95, + 113, + 151, + 113, + 109, + 243, + 223, + 244, + 114, + 86, + 107, + 109, + 245, + 109, + 119, + 95, + 200, + 242, + 107, + 243, + 93, + 96, + 109, + 110, + 237, + 141, + 101, + 117, + 244, + 101, + 243, + 95, + 142, + 249, + 111, + 237, + 109 + ], + "wrong_state_lock_step": { + "n": 9345, + "min": 0.0, + "p25": 585.0, + "median": 935.0, + "p75": 1018.0, + "max": 1024.0, + "mean": 810.4166934189406 + }, + "wrong_endpoint_first_emit_step": { + "n": 9345, + "min": 1.0, + "p25": 74.0, + "median": 654.0, + "p75": 995.0, + "max": 1024.0, + "mean": 552.5198501872659 + }, + "num_steps": 1024 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1219, + "mass": 0.07440185546875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 867, + "mass": 0.05291748046875 + }, + { + "id": 40, + "old_text": " the", + "count": 840, + "mass": 0.05126953125 + }, + { + "id": 5, + "old_text": ".", + "count": 735, + "mass": 0.04486083984375 + }, + { + "id": 54, + "old_text": " in", + "count": 542, + "mass": 0.0330810546875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.484375, + 0.0390625, + 0.1171875, + 0.421875, + 0.25, + 0.14453125, + 0.47265625, + 0.21484375, + 0.28125, + 0.53125, + 0.26171875, + 0.578125, + 0.3828125, + 0.28125, + 0.51171875, + 0.28515625, + 0.1640625, + 0.5234375, + 0.1328125, + 0.32421875, + 0.14453125, + 0.39453125, + 0.5546875, + 0.2421875, + 0.5546875, + 0.47265625, + 0.16015625, + 0.109375, + 0.12109375, + 0.14453125, + 0.6171875, + 0.3515625, + 0.19140625, + 0.078125, + 0.2578125, + 0.4609375, + 0.2734375, + 0.2265625, + 0.3046875, + 0.1796875, + 0.40234375, + 0.22265625, + 0.19140625, + 0.2265625, + 0.1328125, + 0.56640625, + 0.11328125, + 0.45703125, + 0.2578125, + 0.4296875, + 0.25390625, + 0.19921875, + 0.36328125, + 0.5390625, + 0.2734375, + 0.18359375, + 0.125, + 0.25390625, + 0.51953125, + 0.09765625, + 0.29296875, + 0.2109375, + 0.1953125, + 0.19140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 6, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1216, + "mass": 0.07421875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 871, + "mass": 0.05316162109375 + }, + { + "id": 40, + "old_text": " the", + "count": 839, + "mass": 0.05120849609375 + }, + { + "id": 5, + "old_text": ".", + "count": 739, + "mass": 0.04510498046875 + }, + { + "id": 54, + "old_text": " in", + "count": 539, + "mass": 0.03289794921875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.484375, + 0.0390625, + 0.1171875, + 0.4296875, + 0.24609375, + 0.14453125, + 0.48046875, + 0.21875, + 0.28515625, + 0.53515625, + 0.265625, + 0.578125, + 0.38671875, + 0.28515625, + 0.51953125, + 0.28125, + 0.16796875, + 0.53125, + 0.13671875, + 0.3203125, + 0.14453125, + 0.40234375, + 0.5625, + 0.2421875, + 0.5546875, + 0.47265625, + 0.16015625, + 0.1171875, + 0.12109375, + 0.14453125, + 0.62109375, + 0.3515625, + 0.18359375, + 0.07421875, + 0.25390625, + 0.46875, + 0.27734375, + 0.234375, + 0.3046875, + 0.17578125, + 0.40234375, + 0.23046875, + 0.1953125, + 0.22265625, + 0.12890625, + 0.578125, + 0.109375, + 0.453125, + 0.26171875, + 0.4296875, + 0.26171875, + 0.19921875, + 0.3671875, + 0.53515625, + 0.265625, + 0.1875, + 0.1328125, + 0.24609375, + 0.515625, + 0.10546875, + 0.29296875, + 0.20703125, + 0.19921875, + 0.19140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 6, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1204, + "mass": 0.073486328125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 869, + "mass": 0.05303955078125 + }, + { + "id": 40, + "old_text": " the", + "count": 836, + "mass": 0.051025390625 + }, + { + "id": 5, + "old_text": ".", + "count": 746, + "mass": 0.0455322265625 + }, + { + "id": 54, + "old_text": " in", + "count": 536, + "mass": 0.03271484375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.48828125, + 0.0390625, + 0.12109375, + 0.43359375, + 0.2578125, + 0.14453125, + 0.484375, + 0.22265625, + 0.3046875, + 0.5390625, + 0.26953125, + 0.57421875, + 0.39453125, + 0.2890625, + 0.5390625, + 0.2890625, + 0.1640625, + 0.53515625, + 0.14453125, + 0.31640625, + 0.125, + 0.40625, + 0.56640625, + 0.2421875, + 0.56640625, + 0.47265625, + 0.16015625, + 0.1171875, + 0.1328125, + 0.1484375, + 0.62109375, + 0.34765625, + 0.1640625, + 0.07421875, + 0.2578125, + 0.48046875, + 0.2890625, + 0.2421875, + 0.3046875, + 0.17578125, + 0.4140625, + 0.23046875, + 0.203125, + 0.2109375, + 0.12890625, + 0.5859375, + 0.10546875, + 0.44140625, + 0.265625, + 0.43359375, + 0.26171875, + 0.19921875, + 0.37109375, + 0.53125, + 0.24609375, + 0.1953125, + 0.14453125, + 0.24609375, + 0.515625, + 0.1171875, + 0.296875, + 0.21875, + 0.20703125, + 0.1953125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 4, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 6, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1190, + "mass": 0.0726318359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 883, + "mass": 0.05389404296875 + }, + { + "id": 40, + "old_text": " the", + "count": 828, + "mass": 0.050537109375 + }, + { + "id": 5, + "old_text": ".", + "count": 730, + "mass": 0.0445556640625 + }, + { + "id": 54, + "old_text": " in", + "count": 525, + "mass": 0.03204345703125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.5, + 0.0390625, + 0.11328125, + 0.4453125, + 0.265625, + 0.14453125, + 0.4921875, + 0.23828125, + 0.3203125, + 0.54296875, + 0.26953125, + 0.578125, + 0.41796875, + 0.28515625, + 0.55859375, + 0.30078125, + 0.1796875, + 0.55859375, + 0.16015625, + 0.30859375, + 0.1171875, + 0.4296875, + 0.5859375, + 0.234375, + 0.5859375, + 0.49609375, + 0.1640625, + 0.1171875, + 0.15234375, + 0.15625, + 0.63671875, + 0.34375, + 0.15234375, + 0.08203125, + 0.2578125, + 0.48828125, + 0.2890625, + 0.2734375, + 0.29296875, + 0.18359375, + 0.4140625, + 0.234375, + 0.203125, + 0.203125, + 0.125, + 0.609375, + 0.10546875, + 0.4140625, + 0.26953125, + 0.42578125, + 0.2734375, + 0.1953125, + 0.375, + 0.5234375, + 0.234375, + 0.20703125, + 0.171875, + 0.24609375, + 0.51953125, + 0.16015625, + 0.29296875, + 0.2421875, + 0.23046875, + 0.20703125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 5, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 4, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 1, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1193, + "mass": 0.07281494140625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 899, + "mass": 0.05487060546875 + }, + { + "id": 40, + "old_text": " the", + "count": 819, + "mass": 0.04998779296875 + }, + { + "id": 5, + "old_text": ".", + "count": 737, + "mass": 0.04498291015625 + }, + { + "id": 54, + "old_text": " in", + "count": 509, + "mass": 0.03106689453125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.51953125, + 0.0390625, + 0.10546875, + 0.47265625, + 0.28515625, + 0.14453125, + 0.51953125, + 0.234375, + 0.35546875, + 0.55859375, + 0.265625, + 0.59375, + 0.453125, + 0.27734375, + 0.6328125, + 0.3046875, + 0.19140625, + 0.6015625, + 0.16796875, + 0.27734375, + 0.16015625, + 0.44921875, + 0.63671875, + 0.22265625, + 0.59765625, + 0.51171875, + 0.171875, + 0.140625, + 0.16796875, + 0.14453125, + 0.6796875, + 0.30859375, + 0.17578125, + 0.09375, + 0.25390625, + 0.5078125, + 0.3125, + 0.33203125, + 0.30078125, + 0.1796875, + 0.41796875, + 0.2265625, + 0.19140625, + 0.19140625, + 0.11328125, + 0.65234375, + 0.08984375, + 0.32421875, + 0.265625, + 0.421875, + 0.28125, + 0.1875, + 0.3984375, + 0.5, + 0.18359375, + 0.25, + 0.21875, + 0.23046875, + 0.48046875, + 0.171875, + 0.27734375, + 0.30078125, + 0.26171875, + 0.2109375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 6, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 1, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 4, + 5, + 5, + 5, + 6, + 6, + 7, + 5, + 5, + 0, + 2, + 0, + 5, + 2, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1159, + "mass": 0.07073974609375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 898, + "mass": 0.0548095703125 + }, + { + "id": 40, + "old_text": " the", + "count": 800, + "mass": 0.048828125 + }, + { + "id": 5, + "old_text": ".", + "count": 740, + "mass": 0.045166015625 + }, + { + "id": 54, + "old_text": " in", + "count": 493, + "mass": 0.03009033203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.58984375, + 0.03125, + 0.1328125, + 0.5234375, + 0.34765625, + 0.125, + 0.53125, + 0.26953125, + 0.359375, + 0.609375, + 0.29296875, + 0.66015625, + 0.53515625, + 0.27734375, + 0.70703125, + 0.359375, + 0.19921875, + 0.65234375, + 0.15625, + 0.21875, + 0.4609375, + 0.55859375, + 0.72265625, + 0.2109375, + 0.62890625, + 0.55859375, + 0.171875, + 0.203125, + 0.1953125, + 0.125, + 0.7421875, + 0.25, + 0.171875, + 0.1015625, + 0.23828125, + 0.5859375, + 0.4140625, + 0.5234375, + 0.3125, + 0.21484375, + 0.421875, + 0.17578125, + 0.140625, + 0.1875, + 0.19921875, + 0.73046875, + 0.0703125, + 0.28515625, + 0.25390625, + 0.4140625, + 0.30078125, + 0.15234375, + 0.44921875, + 0.48046875, + 0.35546875, + 0.3671875, + 0.3125, + 0.2109375, + 0.421875, + 0.234375, + 0.24609375, + 0.375, + 0.3671875, + 0.2265625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 4, + 4, + 6, + 2, + 2, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 1, + 7, + 0, + 0, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 7, + 1, + 1, + 1, + 7, + 1, + 7, + 5, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 5, + 5, + 7, + 6, + 6, + 5, + 0, + 5, + 0, + 2, + 0, + 5, + 2, + 7, + 6, + 5, + 4, + 4, + 4, + 3, + 7, + 0 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 990, + "mass": 0.0604248046875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 717, + "mass": 0.04376220703125 + }, + { + "id": 40, + "old_text": " the", + "count": 683, + "mass": 0.04168701171875 + }, + { + "id": 5, + "old_text": ".", + "count": 626, + "mass": 0.0382080078125 + }, + { + "id": 54, + "old_text": " in", + "count": 456, + "mass": 0.02783203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.69140625, + 0.01953125, + 0.1875, + 0.61328125, + 0.41796875, + 0.1796875, + 0.59375, + 0.296875, + 0.1953125, + 0.640625, + 0.64453125, + 0.76953125, + 0.765625, + 0.26953125, + 0.7890625, + 0.41015625, + 0.1796875, + 0.78125, + 0.19140625, + 0.5234375, + 0.69921875, + 0.65234375, + 0.7578125, + 0.32421875, + 0.66015625, + 0.70703125, + 0.1328125, + 0.234375, + 0.42578125, + 0.30859375, + 0.81640625, + 0.08984375, + 0.1640625, + 0.05859375, + 0.19921875, + 0.67578125, + 0.63671875, + 0.70703125, + 0.41796875, + 0.20703125, + 0.53515625, + 0.58984375, + 0.34375, + 0.1875, + 0.39453125, + 0.81640625, + 0.046875, + 0.28515625, + 0.37109375, + 0.3828125, + 0.19921875, + 0.140625, + 0.59765625, + 0.59375, + 0.65234375, + 0.58203125, + 0.35546875, + 0.046875, + 0.25, + 0.50390625, + 0.19140625, + 0.58984375, + 0.578125, + 0.56640625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 0, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 5, + 1, + 1, + 1, + 7, + 0, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 7, + 7, + 6, + 2, + 5, + 0, + 5, + 0, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 723, + "mass": 0.04412841796875 + }, + { + "id": 40, + "old_text": " the", + "count": 584, + "mass": 0.03564453125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 548, + "mass": 0.033447265625 + }, + { + "id": 5, + "old_text": ".", + "count": 536, + "mass": 0.03271484375 + }, + { + "id": 54, + "old_text": " in", + "count": 372, + "mass": 0.022705078125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.69140625, + 0.01953125, + 0.2890625, + 0.56640625, + 0.515625, + 0.13671875, + 0.6796875, + 0.6015625, + 0.0546875, + 0.65625, + 0.62109375, + 0.76171875, + 0.77734375, + 0.3671875, + 0.7734375, + 0.2734375, + 0.51171875, + 0.78515625, + 0.375, + 0.67578125, + 0.6953125, + 0.68359375, + 0.65234375, + 0.2578125, + 0.6796875, + 0.73828125, + 0.0703125, + 0.5546875, + 0.62109375, + 0.30078125, + 0.765625, + 0.26953125, + 0.03515625, + 0.05859375, + 0.1640625, + 0.7421875, + 0.72265625, + 0.73828125, + 0.59765625, + 0.2109375, + 0.578125, + 0.5078125, + 0.421875, + 0.078125, + 0.6015625, + 0.73046875, + 0.0234375, + 0.3359375, + 0.61328125, + 0.58203125, + 0.390625, + 0.20703125, + 0.69921875, + 0.72265625, + 0.6953125, + 0.62109375, + 0.55078125, + 0.0546875, + 0.37109375, + 0.6640625, + 0.125, + 0.6328125, + 0.671875, + 0.703125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 0, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 7, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 640, + "mass": 0.0390625 + }, + { + "id": 40, + "old_text": " the", + "count": 580, + "mass": 0.035400390625 + }, + { + "id": 5, + "old_text": ".", + "count": 503, + "mass": 0.03070068359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 445, + "mass": 0.02716064453125 + }, + { + "id": 113, + "old_text": "�", + "count": 316, + "mass": 0.019287109375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.67578125, + 0.03125, + 0.5625, + 0.55078125, + 0.5, + 0.08984375, + 0.76953125, + 0.6171875, + 0.03125, + 0.6171875, + 0.56640625, + 0.75390625, + 0.77734375, + 0.29296875, + 0.69140625, + 0.265625, + 0.59765625, + 0.79296875, + 0.55859375, + 0.7265625, + 0.67578125, + 0.6640625, + 0.5859375, + 0.1875, + 0.68359375, + 0.71875, + 0.0703125, + 0.6328125, + 0.66796875, + 0.26953125, + 0.671875, + 0.46484375, + 0.02734375, + 0.07421875, + 0.078125, + 0.70703125, + 0.6875, + 0.7421875, + 0.75, + 0.2421875, + 0.5703125, + 0.3828125, + 0.42578125, + 0.04296875, + 0.703125, + 0.6640625, + 0.015625, + 0.38671875, + 0.6171875, + 0.578125, + 0.44921875, + 0.3984375, + 0.6484375, + 0.7109375, + 0.6640625, + 0.5703125, + 0.74609375, + 0.05078125, + 0.62890625, + 0.65234375, + 0.05859375, + 0.63671875, + 0.68359375, + 0.75 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 1, + 4, + 6, + 2, + 1, + 6, + 5, + 6, + 0, + 5, + 4, + 6, + 2, + 7, + 5, + 7, + 6, + 2, + 1, + 2, + 3, + 0, + 1, + 3, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 2, + 4, + 2, + 5, + 1, + 1, + 7, + 1, + 2, + 1, + 5, + 7, + 6, + 0, + 5, + 5, + 1, + 3, + 7, + 0, + 5, + 2, + 7, + 6, + 7, + 5, + 4, + 7, + 3, + 7, + 1 + ] + } + }, + "last_step": { + "step": 1024, + "progress": 0.9990234375, + "next_progress": 1.0, + "dt": 0.0009765625, + "gamma": 1.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.4351806640625, + "state_acc_after_mean": 0.42962646484375, + "endpoint_acc_mean": 0.42962646484375, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.41327762603759766, + "endpoint_pgold_best_mean": 0.40738481283187866, + "state_entropy_mean": 0.637602686882019, + "endpoint_entropy_mean": 0.6376000642776489, + "state_maxprob_mean": 0.8117479085922241, + "endpoint_maxprob_mean": 0.8117512464523315, + "oracle_clean_acc_mean": 0.6689453125, + "oracle_clean_pgold_mean": 0.6261046528816223, + "state_best_ref_mode": 1, + "endpoint_best_ref_mode": 1, + "state_best_ref_counts": [ + 4, + 15, + 11, + 5, + 4, + 12, + 8, + 5 + ], + "endpoint_best_ref_counts": [ + 4, + 15, + 11, + 5, + 4, + 12, + 8, + 5 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f3abcd29fd838603d5fb2253367844185ec30994 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.jsonl @@ -0,0 +1 @@ +{"run": "diag_copied_len256_onehot_step69500", "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", "ckpt_step": 69500, "endpoint_softening": "none", "decode_rule": "flowmap", "steps": 1024, "time_schedule": "power_high", "model_t_mode": "post", "final_from": "state", "n_gen": 64, "n_refs": 8, "token_acc_mean": 0.26007080078125, "token_acc_min": 0.02734375, "token_acc_max": 0.546875, "exact_acc": 0.0, "exact_count": 0, "exact_ref_coverage": 0.0, "exact_ref_count": 0, "exact_ref_hits": [], "best_ref_idx": [1, 7, 1, 1, 1, 1, 4, 1, 3, 0, 2, 2, 1, 7, 1, 2, 7, 1, 5, 4, 0, 4, 0, 0, 4, 5, 1, 2, 4, 4, 1, 1, 5, 6, 1, 5, 4, 1, 7, 0, 1, 0, 2, 4, 4, 0, 6, 3, 1, 3, 2, 4, 0, 1, 1, 1, 6, 3, 5, 2, 4, 0, 5, 1], "best_token_acc": [0.44140625, 0.20703125, 0.046875, 0.4453125, 0.05859375, 0.046875, 0.1171875, 0.484375, 0.0390625, 0.02734375, 0.26953125, 0.30078125, 0.046875, 0.19921875, 0.046875, 0.30859375, 0.25390625, 0.03125, 0.3515625, 0.47265625, 0.0390625, 0.5078125, 0.2421875, 0.33984375, 0.4765625, 0.26171875, 0.4609375, 0.19140625, 0.51171875, 0.31640625, 0.46484375, 0.046875, 0.390625, 0.16796875, 0.53125, 0.328125, 0.44921875, 0.046875, 0.2265625, 0.0546875, 0.546875, 0.390625, 0.12890625, 0.421875, 0.46875, 0.1171875, 0.375, 0.0546875, 0.3125, 0.0390625, 0.203125, 0.4609375, 0.234375, 0.046875, 0.046875, 0.046875, 0.4140625, 0.05078125, 0.33984375, 0.0546875, 0.46875, 0.359375, 0.3125, 0.5]} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..e591e4b01e3c83c956f61f5d50ac512ba8aa719a --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +diag_copied_len256_onehot_step69500 69500 none 0.26007080078125 0.02734375 0.546875 0.0 0 0.0 0 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..27a7a93af08dc7cbdc4dc1dab43a2a3383666b9a --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/power_high_steps1024/decode_token_acc_summary.json @@ -0,0 +1,159 @@ +{ + "num_rows": 1, + "best_by_run": { + "diag_copied_len256_onehot_step69500::none": { + "run": "diag_copied_len256_onehot_step69500", + "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", + "ckpt_step": 69500, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 1024, + "time_schedule": "power_high", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.26007080078125, + "token_acc_min": 0.02734375, + "token_acc_max": 0.546875, + "exact_acc": 0.0, + "exact_count": 0, + "exact_ref_coverage": 0.0, + "exact_ref_count": 0, + "exact_ref_hits": [], + "best_ref_idx": [ + 1, + 7, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 0, + 2, + 2, + 1, + 7, + 1, + 2, + 7, + 1, + 5, + 4, + 0, + 4, + 0, + 0, + 4, + 5, + 1, + 2, + 4, + 4, + 1, + 1, + 5, + 6, + 1, + 5, + 4, + 1, + 7, + 0, + 1, + 0, + 2, + 4, + 4, + 0, + 6, + 3, + 1, + 3, + 2, + 4, + 0, + 1, + 1, + 1, + 6, + 3, + 5, + 2, + 4, + 0, + 5, + 1 + ], + "best_token_acc": [ + 0.44140625, + 0.20703125, + 0.046875, + 0.4453125, + 0.05859375, + 0.046875, + 0.1171875, + 0.484375, + 0.0390625, + 0.02734375, + 0.26953125, + 0.30078125, + 0.046875, + 0.19921875, + 0.046875, + 0.30859375, + 0.25390625, + 0.03125, + 0.3515625, + 0.47265625, + 0.0390625, + 0.5078125, + 0.2421875, + 0.33984375, + 0.4765625, + 0.26171875, + 0.4609375, + 0.19140625, + 0.51171875, + 0.31640625, + 0.46484375, + 0.046875, + 0.390625, + 0.16796875, + 0.53125, + 0.328125, + 0.44921875, + 0.046875, + 0.2265625, + 0.0546875, + 0.546875, + 0.390625, + 0.12890625, + 0.421875, + 0.46875, + 0.1171875, + 0.375, + 0.0546875, + 0.3125, + 0.0390625, + 0.203125, + 0.4609375, + 0.234375, + 0.046875, + 0.046875, + 0.046875, + 0.4140625, + 0.05078125, + 0.33984375, + 0.0546875, + 0.46875, + 0.359375, + 0.3125, + 0.5 + ] + } + }, + "first_exact_by_run": {} +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..957b901756e8295a766ee45afc604ca1e79be555 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/step_metrics.csv @@ -0,0 +1,1025 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.0013883113861083984,0.0013883113861083984,0.0013883113861083984,1.0,1.0,0.00433349609375,0.00433349609375,0.25445556640625,0,0,0.00346405990421772,0.21648083627223969,1.0133271217346191,1.384942889213562,0.6233986020088196,0.6058433055877686,0.0888671875,0.06526586413383484,0,4 +2,0.0013883113861083984,0.0034126639366149902,0.002024352550506592,0.002027166889380661,1.0,1.0,0.00433349609375,0.00433349609375,0.25518798828125,0,0,0.003579175565391779,0.21734511852264404,1.0262765884399414,1.3800660371780396,0.6221387386322021,0.6068928241729736,0.08837890625,0.06494209170341492,0,4 +3,0.0034126639366149902,0.004445970058441162,0.0010333061218261719,0.0010368445237402169,1.0,1.0,0.00433349609375,0.00433349609375,0.25714111328125,0,0,0.003792067989706993,0.21804621815681458,1.0323482751846313,1.3759820461273193,0.6214956045150757,0.607823371887207,0.08837890625,0.06481915712356567,0,4 +4,0.004445970058441162,0.004791676998138428,0.0003457069396972656,0.0003472508063852239,1.0,1.0,0.00433349609375,0.00433349609375,0.25714111328125,0,0,0.003913801163434982,0.2183496505022049,1.034322738647461,1.3746144771575928,0.6212804317474365,0.608155369758606,0.08837890625,0.06476449966430664,0,4 +5,0.004791676998138428,0.005512714385986328,0.0007210373878479004,0.0007245090009627579,1.0,1.0,0.00433349609375,0.00433349609375,0.25750732421875,0,0,0.003955303691327572,0.21857833862304688,1.0383614301681519,1.3722741603851318,0.6208317279815674,0.6086508631706238,0.08837890625,0.06477527320384979,0,4 +6,0.005512714385986328,0.011519193649291992,0.006006479263305664,0.006039774816826502,1.0,1.0,0.00433349609375,0.00433349609375,0.25830078125,0,0,0.004046976566314697,0.22005829215049744,1.0690449476242065,1.359765887260437,0.6170936822891235,0.6111738681793213,0.0869140625,0.06411516666412354,0,4 +7,0.011519193649291992,0.0132598876953125,0.0017406940460205078,0.001760979105347361,1.0,1.0,0.00433349609375,0.00433349609375,0.2598876953125,0,0,0.004936052020639181,0.221910297870636,1.0772342681884766,1.3500666618347168,0.6160103678703308,0.613509476184845,0.0869140625,0.06392326951026917,0,4 +8,0.0132598876953125,0.013638973236083984,0.0003790855407714844,0.0003841797207230891,1.0,1.0,0.00433349609375,0.00433349609375,0.2608642578125,0,0,0.005241207778453827,0.22246325016021729,1.0789856910705566,1.3477555513381958,0.6157744526863098,0.6141024827957153,0.0869140625,0.06379296630620956,0,4 +9,0.013638973236083984,0.013888895511627197,0.0002499222755432129,0.00025337809256633514,1.0,1.0,0.00433349609375,0.00433349609375,0.26129150390625,0,0,0.005308416672050953,0.22251631319522858,1.080134391784668,1.34739089012146,0.6156189441680908,0.6141835451126099,0.0869140625,0.06375371664762497,0,4 +10,0.013888895511627197,0.022696733474731445,0.008807837963104248,0.00893189207890935,1.0,1.0,0.00433349609375,0.00433349609375,0.2635498046875,0,0,0.005352729931473732,0.22446273267269135,1.1180250644683838,1.3285102844238281,0.6101378202438354,0.6178981065750122,0.0859375,0.06291861087083817,0,4 +11,0.022696733474731445,0.024245500564575195,0.00154876708984375,0.0015847354070045012,1.0,1.0,0.00433349609375,0.00433349609375,0.2650146484375,0,0,0.007071210537105799,0.2268967479467392,1.1242703199386597,1.3154478073120117,0.6091740131378174,0.6211207509040833,0.0859375,0.06288327276706696,0,0 +12,0.024245500564575195,0.02547895908355713,0.0012334585189819336,0.0012641074365484528,1.0,1.0,0.00433349609375,0.00433349609375,0.265380859375,0,0,0.007393974810838699,0.22777755558490753,1.129167079925537,1.3103134632110596,0.6084064841270447,0.6222440004348755,0.08642578125,0.06277608871459961,0,0 +13,0.02547895908355713,0.027118265628814697,0.0016393065452575684,0.0016821663939815593,1.0,1.0,0.00433349609375,0.00433349609375,0.2662353515625,0,0,0.007653809618204832,0.22851797938346863,1.1355758905410767,1.305983304977417,0.6073864102363586,0.623211681842804,0.0859375,0.062464550137519836,0,0 +14,0.027118265628814697,0.027287006378173828,0.00016874074935913086,0.0001734442567864584,1.0,1.0,0.00433349609375,0.00433349609375,0.26666259765625,0,0,0.008009230718016624,0.22895097732543945,1.1362296342849731,1.3039898872375488,0.6072814464569092,0.6237319707870483,0.0859375,0.062464550137519836,0,4 +15,0.027287006378173828,0.03006911277770996,0.002782106399536133,0.002860151368161704,1.0,1.0,0.00433349609375,0.00433349609375,0.26788330078125,0,0,0.008045930415391922,0.22964833676815033,1.1468439102172852,1.2980791330337524,0.6055503487586975,0.6249499917030334,0.0849609375,0.06223861128091812,0,4 +16,0.03006911277770996,0.030069470405578613,3.5762786865234375e-07,3.6871479541859574e-07,1.0,1.0,0.00433349609375,0.00433349609375,0.2686767578125,0,0,0.008653007447719574,0.23062224686145782,1.1468452215194702,1.2945473194122314,0.6055501103401184,0.6258763670921326,0.0849609375,0.06223861128091812,0,0 +17,0.030069470405578613,0.03155297040939331,0.0014835000038146973,0.001529490987808195,1.0,1.0,0.00433349609375,0.00433349609375,0.269287109375,0,0,0.008653085678815842,0.23096893727779388,1.152389645576477,1.291595458984375,0.6046270728111267,0.626490592956543,0.083984375,0.062068067491054535,0,4 +18,0.03155297040939331,0.032324135303497314,0.0007711648941040039,0.0007962902157178383,1.0,1.0,0.00433349609375,0.00433349609375,0.26953125,0,0,0.008978390134871006,0.2316369116306305,1.1552417278289795,1.287675142288208,0.6041473150253296,0.6273928880691528,0.0849609375,0.06205616518855095,0,0 +19,0.032324135303497314,0.03365606069564819,0.001331925392150879,0.0013764168775343155,1.0,1.0,0.00433349609375,0.00433349609375,0.2698974609375,0,0,0.009147902950644493,0.23226383328437805,1.1601197719573975,1.2840635776519775,0.6033185720443726,0.6281770467758179,0.0830078125,0.06185944378376007,0,0 +20,0.03365606069564819,0.034011244773864746,0.00035518407821655273,0.0003675545152921861,1.0,1.0,0.00433349609375,0.00433349609375,0.2705078125,0,0,0.009441380389034748,0.2327742576599121,1.1614110469818115,1.2817617654800415,0.6030975580215454,0.6287596225738525,0.0830078125,0.06188105046749115,0,0 +21,0.034011244773864746,0.03446471691131592,0.0004534721374511719,0.0004694383190257896,1.0,1.0,0.00433349609375,0.00433349609375,0.271240234375,0,0,0.009519919753074646,0.2330915629863739,1.163053274154663,1.27974534034729,0.6028153896331787,0.6292163133621216,0.0830078125,0.06181348115205765,0,0 +22,0.03446471691131592,0.03895694017410278,0.004492223262786865,0.004652572869648572,1.0,1.0,0.00433349609375,0.00433349609375,0.2730712890625,0,0,0.009620727971196175,0.23443953692913055,1.1789681911468506,1.270458459854126,0.6000204086303711,0.631196141242981,0.08447265625,0.06141255795955658,0,0 +23,0.03895694017410278,0.04053819179534912,0.0015812516212463379,0.0016453493993628108,1.0,1.0,0.00433349609375,0.00433349609375,0.27410888671875,0,0,0.01062633004039526,0.23657208681106567,1.1844322681427002,1.2615230083465576,0.5990365743637085,0.6335265040397644,0.08447265625,0.06114538386464119,0,4 +24,0.04053819179534912,0.04332852363586426,0.0027903318405151367,0.0029082260665866605,1.0,1.0,0.00433349609375,0.00433349609375,0.27484130859375,0,0,0.010983774438500404,0.23791028559207916,1.1939051151275635,1.253396987915039,0.5973005294799805,0.6353898048400879,0.08349609375,0.06104288995265961,0,0 +25,0.04332852363586426,0.04461711645126343,0.00128859281539917,0.001346954359187663,1.0,1.0,0.00433349609375,0.00433349609375,0.27471923828125,0,0,0.011617645621299744,0.23946736752986908,1.1982113122940063,1.2463897466659546,0.5964987874031067,0.6371279954910278,0.08251953125,0.06088197976350784,0,0 +26,0.04461711645126343,0.04583156108856201,0.001214444637298584,0.0012711601371667572,1.0,1.0,0.00433349609375,0.00433349609375,0.27642822265625,0,0,0.011912008747458458,0.24027308821678162,1.2022310495376587,1.2419836521148682,0.5957432389259338,0.6381325125694275,0.08203125,0.06086480990052223,0,0 +27,0.04583156108856201,0.04603451490402222,0.00020295381546020508,0.000212702293624116,1.0,1.0,0.00433349609375,0.00433349609375,0.27716064453125,0,0,0.0121901985257864,0.24089834094047546,1.20289945602417,1.2397146224975586,0.5956169366836548,0.6387422680854797,0.08154296875,0.06075264513492584,0,0 +28,0.04603451490402222,0.04678142070770264,0.0007469058036804199,0.0007829484560495124,1.0,1.0,0.00433349609375,0.00433349609375,0.277587890625,0,0,0.012236789800226688,0.24116379022598267,1.2053499221801758,1.2375328540802002,0.5951522588729858,0.6392151117324829,0.08154296875,0.06077693775296211,0,4 +29,0.04678142070770264,0.0470615029335022,0.00028008222579956055,0.0002938279130139315,1.0,1.0,0.00433349609375,0.00433349609375,0.27801513671875,0,0,0.012409457005560398,0.24160505831241608,1.2062654495239258,1.2360446453094482,0.5949779748916626,0.6396181583404541,0.08154296875,0.06070992723107338,0,4 +30,0.0470615029335022,0.04988616704940796,0.0028246641159057617,0.0029641620362711105,1.0,1.0,0.00433349609375,0.00433349609375,0.27862548828125,0,0,0.012474821880459785,0.24251562356948853,1.215390920639038,1.2303524017333984,0.593220591545105,0.6408438086509705,0.08154296875,0.06042586266994476,0,0 +31,0.04988616704940796,0.050949811935424805,0.0010636448860168457,0.0011194920536139142,1.0,1.0,0.00433349609375,0.00433349609375,0.28057861328125,0,0,0.013135809451341629,0.24432821571826935,1.218780517578125,1.2234681844711304,0.5925588607788086,0.6426061987876892,0.0810546875,0.060321398079395294,0,4 +32,0.050949811935424805,0.057336628437042236,0.006386816501617432,0.006729693099415793,1.0,1.0,0.00433349609375,0.00433349609375,0.2816162109375,0,0,0.013386078178882599,0.24687039852142334,1.2386006116867065,1.2098103761672974,0.5885852575302124,0.6456518173217773,0.08154296875,0.0598369762301445,0,0 +33,0.057336628437042236,0.057993948459625244,0.0006573200225830078,0.0006973009055111115,1.0,1.0,0.00433349609375,0.00433349609375,0.28564453125,0,0,0.014914728701114655,0.2507510781288147,1.2405939102172852,1.1978085041046143,0.5881763696670532,0.6489267349243164,0.08203125,0.05967787653207779,0,0 +34,0.057993948459625244,0.06259161233901978,0.004597663879394531,0.004880715863636332,1.0,1.0,0.00433349609375,0.00433349609375,0.2879638671875,0,0,0.01507487054914236,0.25280267000198364,1.254292607307434,1.1876683235168457,0.5853160619735718,0.651259183883667,0.080078125,0.05930910259485245,0,0 +35,0.06259161233901978,0.06473046541213989,0.002138853073120117,0.0022816662420281726,1.0,1.0,0.00433349609375,0.00433349609375,0.29205322265625,0,0,0.016209878027439117,0.25653964281082153,1.2605302333831787,1.1747033596038818,0.5839853286743164,0.6546522378921509,0.080078125,0.059308137744665146,0,0 +36,0.06473046541213989,0.06489276885986328,0.00016230344772338867,0.00017353654932736584,1.0,1.0,0.00433349609375,0.00433349609375,0.29345703125,0,0,0.016744647175073624,0.25809091329574585,1.2610002756118774,1.1702744960784912,0.5838843584060669,0.6559070944786072,0.080078125,0.059278570115566254,0,0 +37,0.06489276885986328,0.06527960300445557,0.00038683414459228516,0.00041367891479208714,1.0,1.0,0.00433349609375,0.00433349609375,0.29400634765625,0,0,0.016785547137260437,0.2583937644958496,1.2621186971664429,1.1689255237579346,0.5836437940597534,0.6562516689300537,0.080078125,0.05923857539892197,0,0 +38,0.06527960300445557,0.06611675024032593,0.0008371472358703613,0.0008956124618240804,1.0,1.0,0.00433349609375,0.00433349609375,0.29473876953125,0,0,0.016883114352822304,0.2590136229991913,1.264529824256897,1.1667698621749878,0.583122968673706,0.6568120121955872,0.07958984375,0.059112582355737686,0,0 +39,0.06611675024032593,0.06840652227401733,0.0022897720336914062,0.002451882539151074,1.0,1.0,0.00433349609375,0.00433349609375,0.2958984375,0,0,0.01709464192390442,0.260545015335083,1.2710597515106201,1.1603078842163086,0.5816984176635742,0.6583793759346008,0.07958984375,0.05901273339986801,0,0 +40,0.06840652227401733,0.06842303276062012,1.6510486602783203e-05,1.772284477891071e-05,1.0,1.0,0.00433349609375,0.00433349609375,0.2982177734375,0,0,0.017675630748271942,0.2622680962085724,1.271106481552124,1.155687689781189,0.5816881656646729,0.6597287654876709,0.07958984375,0.05901273339986801,0,0 +41,0.06842303276062012,0.0688057541847229,0.0003827214241027832,0.000410831780477499,1.0,1.0,0.00433349609375,0.00433349609375,0.2979736328125,0,0,0.017679844051599503,0.26230180263519287,1.2721890211105347,1.1551711559295654,0.5814499855041504,0.6598303318023682,0.07958984375,0.05901481211185455,0,0 +42,0.0688057541847229,0.06928598880767822,0.00048023462295532227,0.0005157190619609857,1.0,1.0,0.00433349609375,0.00433349609375,0.29815673828125,0,0,0.017777498811483383,0.2628782391548157,1.2735440731048584,1.1536076068878174,0.5811512470245361,0.6602656841278076,0.07958984375,0.05890965461730957,0,0 +43,0.06928598880767822,0.07181495428085327,0.002528965473175049,0.0027172315477825833,1.0,1.0,0.00433349609375,0.00433349609375,0.29986572265625,0,0,0.01790022850036621,0.26412996649742126,1.2806141376495361,1.1482224464416504,0.5795779228210449,0.6616054177284241,0.07861328125,0.0586683563888073,0,0 +44,0.07181495428085327,0.07199698686599731,0.00018203258514404297,0.0001961166967552319,1.0,1.0,0.00433349609375,0.00433349609375,0.302490234375,0,0,0.018548695370554924,0.26629865169525146,1.2811189889907837,1.1415557861328125,0.5794646739959717,0.6634560823440552,0.0791015625,0.05880831554532051,0,0 +45,0.07199698686599731,0.07213973999023438,0.00014275312423706055,0.00015382829820235415,1.0,1.0,0.00433349609375,0.00433349609375,0.3023681640625,0,0,0.01859569177031517,0.2663881778717041,1.2815146446228027,1.1412832736968994,0.5793758630752563,0.6635435819625854,0.0791015625,0.05880831554532051,0,0 +46,0.07213973999023438,0.07221400737762451,7.426738739013672e-05,8.00415650836852e-05,1.0,1.0,0.00433349609375,0.00433349609375,0.30255126953125,0,0,0.0186325516551733,0.2665596902370453,1.2817201614379883,1.140782117843628,0.5793297290802002,0.6636743545532227,0.0791015625,0.0587887167930603,0,0 +47,0.07221400737762451,0.07237350940704346,0.0001595020294189453,0.0001719168328550799,1.0,1.0,0.00433349609375,0.00433349609375,0.3028564453125,0,0,0.01865173690021038,0.266741007566452,1.2821615934371948,1.1402838230133057,0.5792304277420044,0.6638213396072388,0.0791015625,0.058716729283332825,0,0 +48,0.07237350940704346,0.07538628578186035,0.0030127763748168945,0.0032478334818694865,1.0,1.0,0.00433349609375,0.00433349609375,0.30401611328125,0,0,0.01869296282529831,0.26785358786582947,1.2904188632965088,1.135195255279541,0.5773561596870422,0.6650506258010864,0.07958984375,0.058465443551540375,0,0 +49,0.07538628578186035,0.07671880722045898,0.0013325214385986328,0.0014411655571488285,1.0,1.0,0.00433349609375,0.00433349609375,0.30657958984375,0,0,0.019473979249596596,0.2709258794784546,1.2940254211425781,1.1252375841140747,0.5765271782875061,0.6677514314651489,0.07958984375,0.05848676711320877,0,0 +50,0.07671880722045898,0.07754898071289062,0.0008301734924316406,0.0008991556406910019,1.0,1.0,0.00433349609375,0.00433349609375,0.3084716796875,0,0,0.019822770729660988,0.27229034900665283,1.2962586879730225,1.1215057373046875,0.5760107040405273,0.6688265204429626,0.07958984375,0.05837365984916687,0,0 +51,0.07754898071289062,0.0799100399017334,0.0023610591888427734,0.002559549655728553,1.0,1.0,0.00433349609375,0.00433349609375,0.3094482421875,0,0,0.020040882751345634,0.27391472458839417,1.3025522232055664,1.1157197952270508,0.5745418071746826,0.670326828956604,0.0791015625,0.05809638649225235,0,0 +52,0.0799100399017334,0.08099430799484253,0.0010842680931091309,0.0011784370443443703,1.0,1.0,0.00433349609375,0.00433349609375,0.312744140625,0,0,0.02066371589899063,0.2764263451099396,1.305413842201233,1.1072313785552979,0.5738673210144043,0.672630786895752,0.0791015625,0.05820586532354355,0,0 +53,0.08099430799484253,0.08573168516159058,0.004737377166748047,0.0051548942601342025,1.0,1.0,0.00433349609375,0.00433349609375,0.31494140625,0,0,0.020951732993125916,0.279015451669693,1.317710280418396,1.0963571071624756,0.5709201693534851,0.6754403710365295,0.0771484375,0.057952236384153366,0,0 +54,0.08573168516159058,0.08630210161209106,0.0005704164505004883,0.0006239048660472341,1.0,1.0,0.00433349609375,0.00433349609375,0.3194580078125,0,0,0.022224705666303635,0.28356608748435974,1.3191699981689453,1.084405779838562,0.5705653429031372,0.6788220405578613,0.07666015625,0.057893089950084686,0,0 +55,0.08630210161209106,0.08973944187164307,0.003437340259552002,0.003762009593780071,1.0,1.0,0.00433349609375,0.00433349609375,0.32073974609375,0,0,0.022381244227290154,0.2853699326515198,1.3278687000274658,1.0768016576766968,0.5684269666671753,0.6807845830917358,0.07666015625,0.05771792307496071,0,0 +56,0.08973944187164307,0.0936700701713562,0.003930628299713135,0.004318135356534774,1.0,1.0,0.00433349609375,0.00433349609375,0.32415771484375,0,0,0.02334011159837246,0.28989842534065247,1.3376191854476929,1.0626676082611084,0.5659816861152649,0.6845584511756897,0.07666015625,0.057441093027591705,0,0 +57,0.0936700701713562,0.09701955318450928,0.003349483013153076,0.003695655304891398,1.0,1.0,0.00433349609375,0.00433349609375,0.329345703125,0,0,0.02445743978023529,0.295063316822052,1.3457714319229126,1.046589970588684,0.563897967338562,0.6887713670730591,0.076171875,0.057256344705820084,0,0 +58,0.09701955318450928,0.0987902283668518,0.0017706751823425293,0.001960923061609038,1.0,1.0,0.00433349609375,0.00433349609375,0.3333740234375,0,0,0.025432199239730835,0.29919368028640747,1.3500241041183472,1.034690260887146,0.562796413898468,0.6919927000999451,0.076171875,0.05727016180753708,0,0 +59,0.0987902283668518,0.09942889213562012,0.0006386637687683105,0.0007086738169859623,1.0,1.0,0.00433349609375,0.00433349609375,0.336181640625,0,0,0.025954969227313995,0.3013060390949249,1.3515489101409912,1.0295910835266113,0.56239914894104,0.6934227347373962,0.07666015625,0.05717746168375015,0,0 +60,0.09942889213562012,0.10077887773513794,0.0013499855995178223,0.0014990327667952692,1.0,1.0,0.00433349609375,0.00433349609375,0.336669921875,0,0,0.026144729927182198,0.3023208677768707,1.3547555208206177,1.0258281230926514,0.5615593194961548,0.694402813911438,0.07666015625,0.05709204822778702,0,0 +61,0.10077887773513794,0.101284921169281,0.0005060434341430664,0.0005627575038145215,1.0,1.0,0.00433349609375,0.00433349609375,0.3394775390625,0,0,0.026547010987997055,0.30391913652420044,1.3559520244598389,1.0214256048202515,0.5612444877624512,0.6955889463424683,0.07666015625,0.05706150829792023,0,0 +62,0.101284921169281,0.10221868753433228,0.0009337663650512695,0.0010390015557168067,1.0,1.0,0.00433349609375,0.00433349609375,0.33953857421875,0,0,0.02669854462146759,0.3047020733356476,1.358150839805603,1.0185376405715942,0.5606635808944702,0.696323037147522,0.07666015625,0.05705593526363373,0,0 +63,0.10221868753433228,0.10234087705612183,0.00012218952178955078,0.00013610165425917512,1.0,1.0,0.00433349609375,0.00433349609375,0.34063720703125,0,0,0.026978809386491776,0.3057772219181061,1.3584378957748413,1.0159943103790283,0.5605875849723816,0.6970508098602295,0.07666015625,0.05705593526363373,0,0 +64,0.10234087705612183,0.10319024324417114,0.0008493661880493164,0.0009462012542843826,1.0,1.0,0.00433349609375,0.00433349609375,0.34033203125,0,0,0.027015602216124535,0.30610573291778564,1.3604272603988647,1.0135841369628906,0.5600591897964478,0.6975807547569275,0.07666015625,0.05709964781999588,0,0 +65,0.10319024324417114,0.10440826416015625,0.0012180209159851074,0.0013581709016985345,1.0,1.0,0.00433349609375,0.00433349609375,0.3414306640625,0,0,0.027271609753370285,0.3072323799133301,1.3632653951644897,1.0105029344558716,0.559301495552063,0.6984385251998901,0.07666015625,0.05698429048061371,0,0 +66,0.10440826416015625,0.10757040977478027,0.0031621456146240234,0.00353078918449232,1.0,1.0,0.00433349609375,0.00433349609375,0.34326171875,0,0,0.02763989567756653,0.3092903792858124,1.3705501556396484,1.0018978118896484,0.557334303855896,0.7006018161773682,0.0771484375,0.056886687874794006,0,0 +67,0.10757040977478027,0.10797935724258423,0.0004089474678039551,0.00045824059655031187,1.0,1.0,0.00433349609375,0.00433349609375,0.34686279296875,0,0,0.028603676706552505,0.31291326880455017,1.3714842796325684,0.9925568103790283,0.5570798516273499,0.7032606601715088,0.0771484375,0.05688676983118057,0,0 +68,0.10797935724258423,0.10812705755233765,0.00014770030975341797,0.00016557947504089874,1.0,1.0,0.00433349609375,0.00433349609375,0.34716796875,0,0,0.028729669749736786,0.31340622901916504,1.3718211650848389,0.9914820194244385,0.5569879412651062,0.7035908102989197,0.0771484375,0.0568709671497345,0,0 +69,0.10812705755233765,0.1089392900466919,0.000812232494354248,0.0009107042670508105,1.0,1.0,0.00433349609375,0.00433349609375,0.34747314453125,0,0,0.028775237500667572,0.3136667311191559,1.373669981956482,0.9906396269798279,0.5564826726913452,0.7038215398788452,0.0771484375,0.05677095800638199,0,0 +70,0.1089392900466919,0.11263054609298706,0.003691256046295166,0.0041425415856216905,1.0,1.0,0.00433349609375,0.00433349609375,0.34912109375,0,0,0.02902599796652794,0.315104603767395,1.3819698095321655,0.9828555583953857,0.5541863441467285,0.7056639194488525,0.0771484375,0.056725673377513885,0,0 +71,0.11263054609298706,0.11443424224853516,0.0018036961555480957,0.002032632684849105,1.0,1.0,0.00433349609375,0.00433349609375,0.3525390625,0,0,0.030170351266860962,0.3194451332092285,1.3859739303588867,0.9705308079719543,0.553064227104187,0.7090453505516052,0.0771484375,0.05664888769388199,0,0 +72,0.11443424224853516,0.11449658870697021,6.23464584350586e-05,7.040296882454234e-05,1.0,1.0,0.00433349609375,0.00433349609375,0.3548583984375,0,0,0.030738286674022675,0.3214864134788513,1.3861117362976074,0.9656163454055786,0.553025484085083,0.7104618549346924,0.0771484375,0.05664888769388199,0,0 +73,0.11449658870697021,0.1151379942893982,0.0006414055824279785,0.0007243400468569458,1.0,1.0,0.00433349609375,0.00433349609375,0.35504150390625,0,0,0.0307580828666687,0.3216634690761566,1.3875277042388916,0.96486496925354,0.5526264905929565,0.7106163501739502,0.07666015625,0.05655428022146225,0,0 +74,0.1151379942893982,0.11810636520385742,0.0029683709144592285,0.0033546144995517503,1.0,1.0,0.00433349609375,0.00433349609375,0.355712890625,0,0,0.030961817130446434,0.32251161336898804,1.3940153121948242,0.9597057104110718,0.5507799386978149,0.7117331027984619,0.0751953125,0.056494489312171936,0,0 +75,0.11810636520385742,0.12044632434844971,0.002339959144592285,0.0026533348833311255,1.0,1.0,0.00433349609375,0.00433349609375,0.3577880859375,0,0,0.031906843185424805,0.32593008875846863,1.3990674018859863,0.9493697285652161,0.5493243932723999,0.71449875831604,0.0751953125,0.056379999965429306,0,0 +76,0.12044632434844971,0.1259647011756897,0.00551837682723999,0.006274064880863719,1.0,1.0,0.00433349609375,0.00433349609375,0.3602294921875,0,0,0.0326591394841671,0.3286735415458679,1.41074538230896,0.9363135099411011,0.5458917617797852,0.7175413966178894,0.07373046875,0.056351128965616226,0,0 +77,0.1259647011756897,0.1303611397743225,0.0043964385986328125,0.005030046960971241,1.0,1.0,0.00433349609375,0.00433349609375,0.3656005859375,0,0,0.03445927053689957,0.3345985412597656,1.419833779335022,0.9174437522888184,0.5431572794914246,0.7223333716392517,0.07275390625,0.0563003234565258,0,0 +78,0.1303611397743225,0.13160645961761475,0.0012453198432922363,0.0014319965450590225,1.0,1.0,0.00433349609375,0.00433349609375,0.36932373046875,0,0,0.035920701920986176,0.33930379152297974,1.422379493713379,0.9054650068283081,0.5423826575279236,0.7255576848983765,0.072265625,0.05624014884233475,0,0 +79,0.13160645961761475,0.13191747665405273,0.0003110170364379883,0.00035815217637505246,1.0,1.0,0.00433349609375,0.00433349609375,0.3702392578125,0,0,0.03634316846728325,0.34068647027015686,1.4230133295059204,0.9017874002456665,0.5421892404556274,0.7265197038650513,0.07177734375,0.056293241679668427,0,0 +80,0.13191747665405273,0.13244515657424927,0.0005276799201965332,0.0006078683834834477,1.0,1.0,0.00433349609375,0.00433349609375,0.37017822265625,0,0,0.03644957020878792,0.34098243713378906,1.424086570739746,0.9007532596588135,0.5418610572814941,0.7267687320709229,0.072265625,0.05623900890350342,0,0 +81,0.13244515657424927,0.13269668817520142,0.00025153160095214844,0.00028993164277536034,1.0,1.0,0.00433349609375,0.00433349609375,0.37066650390625,0,0,0.03663024306297302,0.3415432274341583,1.4245972633361816,0.8992146253585815,0.541704535484314,0.7271691560745239,0.07177734375,0.05625109374523163,0,0 +82,0.13269668817520142,0.13461512327194214,0.0019184350967407227,0.002211954077177858,1.0,1.0,0.00433349609375,0.00433349609375,0.37115478515625,0,0,0.03671650215983391,0.3417450785636902,1.4284682273864746,0.8964848518371582,0.5405112504959106,0.727707028388977,0.0712890625,0.05625074729323387,0,0 +83,0.13461512327194214,0.1380409598350525,0.0034258365631103516,0.0039587432773994504,1.0,1.0,0.00433349609375,0.00433349609375,0.37261962890625,0,0,0.03737472742795944,0.3435046672821045,1.4352900981903076,0.8891288042068481,0.5383804440498352,0.7294905185699463,0.0712890625,0.05613870918750763,0,0 +84,0.1380409598350525,0.13813114166259766,9.018182754516602e-05,0.00010462426094853475,1.0,1.0,0.00433349609375,0.00433349609375,0.376708984375,0,0,0.038555629551410675,0.3472725450992584,1.4354686737060547,0.8811882734298706,0.5383243560791016,0.731781005859375,0.0712890625,0.05613870918750763,0,0 +85,0.13813114166259766,0.14003640413284302,0.0019052624702453613,0.0022106176036116782,1.0,1.0,0.00433349609375,0.00433349609375,0.3763427734375,0,0,0.038587041199207306,0.34723418951034546,1.4392178058624268,0.8791460990905762,0.5371392369270325,0.7321986556053162,0.0712890625,0.05614611878991127,0,0 +86,0.14003640413284302,0.14219379425048828,0.0021573901176452637,0.002508699354267232,1.0,1.0,0.00433349609375,0.00433349609375,0.3775634765625,0,0,0.03925057128071785,0.3489851951599121,1.443425178527832,0.8732674717903137,0.5357973575592041,0.7337586283683777,0.07080078125,0.056078627705574036,0,0 +87,0.14219379425048828,0.14416170120239258,0.001967906951904297,0.00229411601211818,1.0,1.0,0.00433349609375,0.00433349609375,0.38018798828125,0,0,0.040005359798669815,0.3510672152042389,1.4472246170043945,0.8662236332893372,0.5345733165740967,0.7355984449386597,0.07080078125,0.056149013340473175,0,0 +88,0.14416170120239258,0.1472298502922058,0.0030681490898132324,0.003584963531222856,1.0,1.0,0.00433349609375,0.00439453125,0.3809814453125,0,0,0.04069777950644493,0.3526739776134491,1.453076720237732,0.8599435091018677,0.5326650142669678,0.7372219562530518,0.06982421875,0.05607656389474869,0,0 +89,0.1472298502922058,0.1472664475440979,3.6597251892089844e-05,4.291572811809849e-05,1.0,1.0,0.00439453125,0.00439453125,0.38421630859375,0,0,0.04178181290626526,0.35579949617385864,1.4531463384628296,0.8535525798797607,0.5326423048973083,0.7391514778137207,0.06982421875,0.05607656389474869,0,0 +90,0.1472664475440979,0.14925765991210938,0.0019912123680114746,0.002335093256594295,1.0,1.0,0.00439453125,0.00439453125,0.38397216796875,0,0,0.041794851422309875,0.35561299324035645,1.4569029808044434,0.8516418933868408,0.5314038991928101,0.7395341992378235,0.06982421875,0.056143734604120255,0,0 +91,0.14925765991210938,0.15054339170455933,0.0012857317924499512,0.0015113057524762687,1.0,1.0,0.00439453125,0.00439453125,0.38519287109375,0,0,0.04250701516866684,0.35735440254211426,1.459311604499817,0.8462064862251282,0.5306042432785034,0.741028904914856,0.06982421875,0.05614572763442993,0,0 +92,0.15054339170455933,0.15562015771865845,0.005076766014099121,0.005976486573324089,1.0,1.0,0.00439453125,0.00439453125,0.38555908203125,0,0,0.042970478534698486,0.3578193783760071,1.4686492681503296,0.839958906173706,0.5274468660354614,0.7425216436386108,0.0693359375,0.05612143129110336,0,0 +93,0.15562015771865845,0.15602755546569824,0.0004073977470397949,0.0004824816115210538,1.0,1.0,0.00439453125,0.00439453125,0.39013671875,0,0,0.04480349272489548,0.36248645186424255,1.469393014907837,0.8301669359207153,0.527193546295166,0.7455183267593384,0.0693359375,0.05609370023012161,0,0 +94,0.15602755546569824,0.15634089708328247,0.0003133416175842285,0.00037126996220490145,1.0,1.0,0.00439453125,0.00439453125,0.390625,0,0,0.04495316371321678,0.36279845237731934,1.4699642658233643,0.829490065574646,0.5269986391067505,0.7457401156425476,0.0693359375,0.056071847677230835,0,0 +95,0.15634089708328247,0.1581854224205017,0.0018445253372192383,0.0021863396374700436,1.0,1.0,0.00439453125,0.00439453125,0.39080810546875,0,0,0.045068368315696716,0.3628809452056885,1.4733030796051025,0.8268449306488037,0.5258515477180481,0.7463452816009521,0.06982421875,0.056156739592552185,0,0 +96,0.1581854224205017,0.15999960899353027,0.0018141865730285645,0.0021550904692633913,1.0,1.0,0.00439453125,0.00439453125,0.391845703125,0,0,0.045747675001621246,0.3642871677875519,1.4765586853027344,0.8221404552459717,0.5247232913970947,0.7476848363876343,0.06982421875,0.056172989308834076,0,0 +97,0.15999960899353027,0.16238683462142944,0.00238722562789917,0.002841933948434059,1.0,1.0,0.00439453125,0.00439453125,0.39312744140625,0,0,0.04641816020011902,0.3656608462333679,1.4807955026626587,0.8165448904037476,0.5232385993003845,0.7492043375968933,0.06982421875,0.0562252514064312,0,0 +98,0.16238683462142944,0.16420215368270874,0.0018153190612792969,0.002167252302509881,1.0,1.0,0.00439453125,0.00439453125,0.3946533203125,0,0,0.04730326682329178,0.36747461557388306,1.4839891195297241,0.8112705945968628,0.5221097469329834,0.7508041858673096,0.0703125,0.05619904026389122,0,0 +99,0.16420215368270874,0.1701330542564392,0.005930900573730469,0.007096094587780189,1.0,1.0,0.00439453125,0.00439453125,0.39544677734375,0,0,0.0479792021214962,0.36808183789253235,1.4941790103912354,0.8040615320205688,0.5184213519096375,0.7526628971099854,0.07080078125,0.056248389184474945,0,0 +100,0.1701330542564392,0.17520010471343994,0.005067050457000732,0.006105858876522254,1.0,1.0,0.00439453125,0.00439453125,0.40057373046875,0,0,0.050187770277261734,0.3724302053451538,1.5026555061340332,0.7898461818695068,0.515270471572876,0.756810188293457,0.07080078125,0.056444235146045685,0,0 +101,0.17520010471343994,0.17550557851791382,0.00030547380447387695,0.00037036110966981423,1.0,1.0,0.00439453125,0.00439453125,0.4041748046875,0,0,0.05209391191601753,0.37647318840026855,1.5031640529632568,0.783039927482605,0.5150805711746216,0.7592049837112427,0.07080078125,0.05643304064869881,0,0 +102,0.17550557851791382,0.1764114499092102,0.0009058713912963867,0.0010986992363975245,1.0,1.0,0.00439453125,0.00439453125,0.4036865234375,0,0,0.05221129581332207,0.376464307308197,1.5046660900115967,0.7821606397628784,0.5145173072814941,0.7594081163406372,0.07080078125,0.056401580572128296,0,0 +103,0.1764114499092102,0.1790388822555542,0.002627432346343994,0.003190224470768024,1.0,1.0,0.00439453125,0.00439453125,0.4039306640625,0,0,0.052559852600097656,0.3768901824951172,1.5089707374572754,0.778075098991394,0.5128836631774902,0.7604001760482788,0.07080078125,0.05654706060886383,0,0 +104,0.1790388822555542,0.18021231889724731,0.0011734366416931152,0.001429344966929835,1.0,1.0,0.00439453125,0.00439453125,0.4053955078125,0,0,0.053574733436107635,0.37866371870040894,1.5108811855316162,0.7745307087898254,0.5121541023254395,0.7615533471107483,0.06982421875,0.05652064085006714,0,0 +105,0.18021231889724731,0.18176758289337158,0.0015552639961242676,0.0018971546315897003,1.0,1.0,0.00439453125,0.00439453125,0.40570068359375,0,0,0.0540299266576767,0.37923508882522583,1.5133949518203735,0.7720541954040527,0.5111873149871826,0.7622653841972351,0.06982421875,0.0565115287899971,0,0 +106,0.18176758289337158,0.18336361646652222,0.0015960335731506348,0.0019505870701070583,1.0,1.0,0.00439453125,0.00445556640625,0.40704345703125,0,0,0.05463393032550812,0.380256712436676,1.5159516334533691,0.7678576707839966,0.5101951360702515,0.7634108662605286,0.07080078125,0.0566168949007988,0,0 +107,0.18336361646652222,0.18388748168945312,0.0005238652229309082,0.0006414914073069002,1.0,1.0,0.00445556640625,0.00445556640625,0.4085693359375,0,0,0.055255211889743805,0.3813343644142151,1.516788125038147,0.7657727003097534,0.5098695158958435,0.7641197443008423,0.0703125,0.05663321167230606,0,0 +108,0.18388748168945312,0.18806523084640503,0.004177749156951904,0.005119084762479025,1.0,1.0,0.00445556640625,0.00445556640625,0.408203125,0,0,0.055459655821323395,0.3811771869659424,1.5233365297317505,0.7613827586174011,0.5072728395462036,0.7651245594024658,0.0703125,0.05675740912556648,0,0 +109,0.18806523084640503,0.19332385063171387,0.005258619785308838,0.006476653033088742,1.0,1.0,0.00445556640625,0.00445556640625,0.4100341796875,0,0,0.05709395185112953,0.3833843469619751,1.5313646793365479,0.7520580291748047,0.5040047764778137,0.7677667140960693,0.0693359375,0.05687946826219559,0,0 +110,0.19332385063171387,0.19468218088150024,0.001358330249786377,0.0016838606804603,1.0,1.0,0.00445556640625,0.00445556640625,0.413330078125,0,0,0.05917006731033325,0.3864103853702545,1.5334219932556152,0.7463077902793884,0.5031606554985046,0.7696840167045593,0.0693359375,0.0568854883313179,0,0 +111,0.19468218088150024,0.19538789987564087,0.000705718994140625,0.0008763235798173502,1.0,1.0,0.00445556640625,0.00445556640625,0.4140625,0,0,0.05971035361289978,0.3870600461959839,1.534487009048462,0.7447171211242676,0.5027222633361816,0.7701802253723145,0.06884765625,0.05688073858618736,0,0 +112,0.19538789987564087,0.19687587022781372,0.0014879703521728516,0.0018493014857008416,1.0,1.0,0.00445556640625,0.00445556640625,0.41436767578125,0,0,0.05999147891998291,0.3874925374984741,1.5367143154144287,0.7418197393417358,0.5017979145050049,0.7708803415298462,0.068359375,0.05701003223657608,0,0 +113,0.19687587022781372,0.1994314193725586,0.002555549144744873,0.003182010165065989,1.0,1.0,0.00445556640625,0.00445556640625,0.414306640625,0,0,0.06058469042181969,0.3879791498184204,1.540492296218872,0.7385818362236023,0.5002107620239258,0.7717596888542175,0.068359375,0.05703238397836685,0,0 +114,0.1994314193725586,0.19950807094573975,7.665157318115234e-05,9.574641702910334e-05,1.0,1.0,0.00445556640625,0.00445556640625,0.4156494140625,0,0,0.06160413846373558,0.3893425464630127,1.5406054258346558,0.7365769147872925,0.500163197517395,0.7724893093109131,0.068359375,0.05702686309814453,0,0 +115,0.19950807094573975,0.20240110158920288,0.0028930306434631348,0.00361406597425798,1.0,1.0,0.00445556640625,0.00457763671875,0.41485595703125,0,0,0.06163482367992401,0.38920027017593384,1.544816493988037,0.73343825340271,0.4983668923377991,0.7731913328170776,0.06884765625,0.057133693248033524,0,0 +116,0.20240110158920288,0.20406192541122437,0.0016608238220214844,0.0020822794832473426,1.0,1.0,0.00457763671875,0.00457763671875,0.4161376953125,0,0,0.06279173493385315,0.3905079960823059,1.5472124814987183,0.7296282052993774,0.497335821390152,0.7743558883666992,0.06884765625,0.057181935757398605,0,0 +117,0.20406192541122437,0.2088702917098999,0.004808366298675537,0.006041131153525728,1.0,1.0,0.00457763671875,0.0047607421875,0.4163818359375,0,0,0.06345778703689575,0.3910115957260132,1.5539777278900146,0.7233563661575317,0.494351863861084,0.7759631872177124,0.068359375,0.05735469236969948,0,0 +118,0.2088702917098999,0.21246826648712158,0.0035979747772216797,0.004547894914726593,1.0,1.0,0.0047607421875,0.0047607421875,0.4188232421875,0,0,0.06538671255111694,0.3929985761642456,1.5589449405670166,0.7169677019119263,0.49211984872817993,0.7778772115707397,0.068359375,0.057500243186950684,0,0 +119,0.21246826648712158,0.2155245542526245,0.0030562877655029297,0.0038808439526239746,1.0,1.0,0.0047607421875,0.0048828125,0.419921875,0,0,0.06683603674173355,0.39437323808670044,1.563093900680542,0.7113926410675049,0.49022480845451355,0.7795043587684631,0.068359375,0.05766989290714264,0,0 +120,0.2155245542526245,0.21562254428863525,9.799003601074219e-05,0.00012491153998757268,1.0,1.0,0.0048828125,0.0048828125,0.42034912109375,0,0,0.06807051599025726,0.3955457806587219,1.5632269382476807,0.7103109359741211,0.49016404151916504,0.7800607681274414,0.068359375,0.05766989290714264,0,0 +121,0.21562254428863525,0.21615886688232422,0.0005363225936889648,0.0006837557476745237,1.0,1.0,0.0048828125,0.0048828125,0.4200439453125,0,0,0.06811019033193588,0.3955498933792114,1.5639530420303345,0.7096462249755859,0.4898315668106079,0.780205488204956,0.068359375,0.05768290162086487,0,0 +122,0.21615886688232422,0.21626567840576172,0.0001068115234375,0.00013626680066235398,1.0,1.0,0.0048828125,0.0048828125,0.4200439453125,0,0,0.06832732260227203,0.3957057595252991,1.5640976428985596,0.709558367729187,0.48976534605026245,0.7802751064300537,0.068359375,0.05767945945262909,0,0 +123,0.21626567840576172,0.21681249141693115,0.0005468130111694336,0.0006977020096008177,1.0,1.0,0.0048828125,0.0048828125,0.41998291015625,0,0,0.06837057322263718,0.3957488238811493,1.564835786819458,0.7090455889701843,0.4894263744354248,0.7804001569747925,0.068359375,0.05770230293273926,0,0 +124,0.21681249141693115,0.21913683414459229,0.002324342727661133,0.002967798518475223,1.0,1.0,0.0048828125,0.0050048828125,0.420166015625,0,0,0.06859201192855835,0.39587682485580444,1.5679330825805664,0.7063602209091187,0.4879860281944275,0.7810264229774475,0.068359375,0.05777083337306976,0,0 +125,0.21913683414459229,0.2205706238746643,0.0014337897300720215,0.0018361600249146802,1.0,1.0,0.0050048828125,0.0050048828125,0.4202880859375,0,0,0.06953313946723938,0.39671850204467773,1.5698297023773193,0.703978955745697,0.48709768056869507,0.781727135181427,0.06787109375,0.05785282328724861,0,0 +126,0.2205706238746643,0.22106480598449707,0.0004941821098327637,0.0006340306446870396,1.0,1.0,0.0050048828125,0.0050048828125,0.4210205078125,0,0,0.07011450827121735,0.3971339166164398,1.5704818964004517,0.7031186819076538,0.48679155111312866,0.7820116281509399,0.06787109375,0.05786721408367157,0,0 +127,0.22106480598449707,0.22137373685836792,0.0003089308738708496,0.00039660664487153863,1.0,1.0,0.0050048828125,0.005126953125,0.4212646484375,0,0,0.07031503319740295,0.39723995327949524,1.5708892345428467,0.7030301094055176,0.48660022020339966,0.7820597290992737,0.06787109375,0.057860784232616425,0,0 +128,0.22137373685836792,0.2261580228805542,0.004784286022186279,0.0061445217669417575,1.0,1.0,0.005126953125,0.0054931640625,0.4207763671875,0,0,0.0704403966665268,0.39761224389076233,1.5770124197006226,0.6960418224334717,0.48363977670669556,0.7835993766784668,0.068359375,0.0581631138920784,0,0 +129,0.2261580228805542,0.22624433040618896,8.630752563476562e-05,0.00011153120170094326,1.0,1.0,0.0054931640625,0.0054931640625,0.423583984375,0,0,0.07240502536296844,0.3989725112915039,1.5771232843399048,0.6957824230194092,0.4835864007472992,0.7840375900268555,0.068359375,0.05816297233104706,0,0 +130,0.22624433040618896,0.22850608825683594,0.0022617578506469727,0.002923090504570131,1.0,1.0,0.0054931640625,0.00555419921875,0.42376708984375,0,0,0.07244075834751129,0.39901667833328247,1.579986572265625,0.6930122971534729,0.48218804597854614,0.7846543788909912,0.0673828125,0.0582810640335083,0,0 +131,0.22850608825683594,0.228587806224823,8.171796798706055e-05,0.00010592172762896028,1.0,1.0,0.00555419921875,0.00555419921875,0.42401123046875,0,0,0.07337716221809387,0.39954158663749695,1.5800901651382446,0.6931602954864502,0.482137531042099,0.7848193645477295,0.0673828125,0.0582810640335083,0,0 +132,0.228587806224823,0.22966957092285156,0.0010817646980285645,0.0014023173431243915,1.0,1.0,0.00555419921875,0.00579833984375,0.42425537109375,0,0,0.07341102510690689,0.399594247341156,1.581453561782837,0.6922557353973389,0.48146891593933105,0.7850286960601807,0.06689453125,0.05829359591007233,0,0 +133,0.22966957092285156,0.2310948371887207,0.0014252662658691406,0.0018502011761064685,1.0,1.0,0.00579833984375,0.00579833984375,0.42425537109375,0,0,0.07386046648025513,0.39980828762054443,1.5832363367080688,0.6907672882080078,0.4805886149406433,0.7854530811309814,0.0673828125,0.05833672359585762,0,0 +134,0.2310948371887207,0.23125052452087402,0.0001556873321533203,0.00020247923890131603,1.0,1.0,0.00579833984375,0.005859375,0.4248046875,0,0,0.07445511221885681,0.4000706076622009,1.5834312438964844,0.6909745931625366,0.4804924726486206,0.7855474352836609,0.0673828125,0.058329083025455475,0,0 +135,0.23125052452087402,0.23323941230773926,0.0019888877868652344,0.0025871728701026466,1.0,1.0,0.005859375,0.006103515625,0.425537109375,0,0,0.07452009618282318,0.4005391001701355,1.585883378982544,0.6868067979812622,0.47926509380340576,0.7864793539047241,0.0673828125,0.0585712231695652,0,0 +136,0.23323941230773926,0.2342662811279297,0.0010268688201904297,0.0013392300499964708,1.0,1.0,0.006103515625,0.00634765625,0.42608642578125,0,0,0.07535126060247421,0.4007875919342041,1.5871458053588867,0.6868487000465393,0.47863203287124634,0.7866416573524475,0.06689453125,0.05853947624564171,0,0 +137,0.2342662811279297,0.23453199863433838,0.0002657175064086914,0.00034701032468583814,1.0,1.0,0.00634765625,0.00640869140625,0.426513671875,0,0,0.07578055560588837,0.40102383494377136,1.5874722003936768,0.6865942478179932,0.4784683287143707,0.7867799401283264,0.06689453125,0.05856996774673462,0,0 +138,0.23453199863433838,0.2347482442855835,0.0002162456512451172,0.0002825012291295209,1.0,1.0,0.00640869140625,0.00640869140625,0.4266357421875,0,0,0.07589170336723328,0.40105366706848145,1.5877376794815063,0.6866788864135742,0.47833508253097534,0.7867848873138428,0.0673828125,0.05857144296169281,0,0 +139,0.2347482442855835,0.23915523290634155,0.004406988620758057,0.005758874236941569,1.0,1.0,0.00640869140625,0.007080078125,0.42669677734375,0,0,0.07598216086626053,0.4012904167175293,1.5929983854293823,0.6811738014221191,0.475623220205307,0.7880407571792603,0.06689453125,0.058748338371515274,0,0 +140,0.23915523290634155,0.24002480506896973,0.0008695721626281738,0.0011429035201882794,1.0,1.0,0.007080078125,0.00732421875,0.42657470703125,0,0,0.07782625406980515,0.401978462934494,1.5940361022949219,0.6812506318092346,0.47508925199508667,0.7884290218353271,0.06689453125,0.05881579965353012,0,0 +141,0.24002480506896973,0.24080485105514526,0.0007800459861755371,0.001026409797817583,1.0,1.0,0.00732421875,0.0074462890625,0.4263916015625,0,0,0.07819060981273651,0.4019487798213959,1.594964623451233,0.6813030242919922,0.4746105670928955,0.7884836196899414,0.06689453125,0.05880335718393326,0,0 +142,0.24080485105514526,0.24095195531845093,0.00014710426330566406,0.00019376343949261614,1.0,1.0,0.0074462890625,0.0074462890625,0.4268798828125,0,0,0.07851740717887878,0.4020436406135559,1.595139741897583,0.6816680431365967,0.4745202958583832,0.7884595394134521,0.06689453125,0.05880335718393326,0,0 +143,0.24095195531845093,0.24193412065505981,0.0009821653366088867,0.0012939435698315306,1.0,1.0,0.0074462890625,0.00775146484375,0.42791748046875,0,0,0.0785791203379631,0.4026867747306824,1.596297264099121,0.6782331466674805,0.47391805052757263,0.7892369031906128,0.0673828125,0.059037383645772934,0,0 +144,0.24193412065505981,0.24497365951538086,0.003039538860321045,0.004009597243642691,1.0,1.0,0.00775146484375,0.00811767578125,0.42706298828125,0,0,0.07899180054664612,0.4026792645454407,1.5998203754425049,0.6760464310646057,0.4720565974712372,0.7898063063621521,0.06787109375,0.05909711495041847,0,0 +145,0.24497365951538086,0.2516927719116211,0.006719112396240234,0.008899176142553547,1.0,1.0,0.00811767578125,0.00933837890625,0.42852783203125,0,0,0.08026857674121857,0.40384605526924133,1.607274055480957,0.6671528816223145,0.4679577052593231,0.7920193672180176,0.06689453125,0.059574224054813385,0,0 +146,0.2516927719116211,0.25507229566574097,0.003379523754119873,0.004516224923756495,1.0,1.0,0.00933837890625,0.010009765625,0.42877197265625,0,0,0.08309806138277054,0.40426233410835266,1.6109875440597534,0.6673078536987305,0.46590524911880493,0.7924399375915527,0.06787109375,0.059665389358997345,0,0 +147,0.25507229566574097,0.25881385803222656,0.0037415623664855957,0.005022718774876853,1.0,1.0,0.010009765625,0.01123046875,0.42919921875,0,0,0.08452116698026657,0.40491169691085815,1.615012288093567,0.6641067266464233,0.4636395573616028,0.7933938503265381,0.0693359375,0.05992312729358673,0,0 +148,0.25881385803222656,0.26017582416534424,0.0013619661331176758,0.0018375493766003164,1.0,1.0,0.01123046875,0.011474609375,0.42926025390625,0,0,0.08609828352928162,0.4054950177669525,1.616470456123352,0.6631917357444763,0.46281698346138,0.7937981486320496,0.06982421875,0.0601097047328949,0,0 +149,0.26017582416534424,0.26561248302459717,0.00543665885925293,0.0073485823210891876,1.0,1.0,0.011474609375,0.01300048828125,0.42901611328125,0,0,0.08667275309562683,0.40585529804229736,1.622086763381958,0.6579781770706177,0.45954635739326477,0.7950516939163208,0.07080078125,0.06036479398608208,0,0 +150,0.26561248302459717,0.26583194732666016,0.00021946430206298828,0.00029883991351985207,1.0,1.0,0.01300048828125,0.01300048828125,0.4287109375,0,0,0.08896656334400177,0.4056570529937744,1.622316598892212,0.662357747554779,0.45941460132598877,0.7942667007446289,0.0703125,0.06036810576915741,0,0 +151,0.26583194732666016,0.2664739489555359,0.0006420016288757324,0.0008744614077635222,1.0,1.0,0.01300048828125,0.01312255859375,0.428955078125,0,0,0.08905897289514542,0.4056326746940613,1.622986912727356,0.6621677875518799,0.4590294361114502,0.7943143248558044,0.07080078125,0.06037028506398201,0,0 +152,0.2664739489555359,0.2665204405784607,4.649162292480469e-05,6.33810112927898e-05,1.0,1.0,0.01312255859375,0.01318359375,0.42889404296875,0,0,0.08932923525571823,0.4056099057197571,1.6230354309082031,0.662733793258667,0.4590015411376953,0.7942287921905518,0.07080078125,0.06036942079663277,0,0 +153,0.2665204405784607,0.26695239543914795,0.00043195486068725586,0.0005889119269089356,1.0,1.0,0.01318359375,0.01324462890625,0.42926025390625,0,0,0.08934879302978516,0.4060203433036804,1.6234842538833618,0.6607962846755981,0.45874249935150146,0.7946605086326599,0.07080078125,0.06050098314881325,0,0 +154,0.26695239543914795,0.26697975397109985,2.7358531951904297e-05,3.732163065766242e-05,1.0,1.0,0.01324462890625,0.01324462890625,0.42974853515625,0,0,0.08953078091144562,0.4060814678668976,1.623512625694275,0.6607694625854492,0.45872610807418823,0.7946853637695312,0.07080078125,0.06049404293298721,0,0 +155,0.26697975397109985,0.26754337549209595,0.0005636215209960938,0.0007689030747097159,1.0,1.0,0.01324462890625,0.013427734375,0.429931640625,0,0,0.08954231441020966,0.4060121774673462,1.6240967512130737,0.660658597946167,0.4583882987499237,0.7947124242782593,0.07080078125,0.060494061559438705,0,0 +156,0.26754337549209595,0.2683336138725281,0.0007902383804321289,0.0010788876146257057,1.0,1.0,0.013427734375,0.01361083984375,0.43035888671875,0,0,0.08977970480918884,0.4065236449241638,1.624908447265625,0.6584529876708984,0.45791491866111755,0.7952436208724976,0.07080078125,0.06065429374575615,0,0 +157,0.2683336138725281,0.2709272503852844,0.0025936365127563477,0.003544834861806103,1.0,1.0,0.01361083984375,0.0145263671875,0.4305419921875,0,0,0.09011297672986984,0.4067719578742981,1.627528190612793,0.6563023328781128,0.45636406540870667,0.7957713007926941,0.07080078125,0.060771431773900986,0,0 +158,0.2709272503852844,0.2713034749031067,0.0003762245178222656,0.0005160315181455959,1.0,1.0,0.0145263671875,0.01470947265625,0.43145751953125,0,0,0.09120690822601318,0.4069799482822418,1.6279089450836182,0.6566778421401978,0.4561395049095154,0.795870840549469,0.07080078125,0.060884736478328705,0,0 +159,0.2713034749031067,0.27375268936157227,0.002449214458465576,0.0033610898009152836,1.0,1.0,0.01470947265625,0.01593017578125,0.43096923828125,0,0,0.09136553108692169,0.40719282627105713,1.6303441524505615,0.6544010639190674,0.45468103885650635,0.7963986396789551,0.0712890625,0.06098688393831253,0,0 +160,0.27375268936157227,0.2738466262817383,9.393692016601562e-05,0.00012934563583228665,1.0,1.0,0.01593017578125,0.01593017578125,0.43121337890625,0,0,0.09239833056926727,0.4069654941558838,1.630438208580017,0.6567293405532837,0.4546252191066742,0.7961269617080688,0.0712890625,0.06097978353500366,0,0 +161,0.2738466262817383,0.2741541862487793,0.0003075599670410156,0.00042354684034057107,1.0,1.0,0.01593017578125,0.01605224609375,0.43115234375,0,0,0.09243787825107574,0.4070828855037689,1.630745530128479,0.656053900718689,0.45444250106811523,0.7962916493415833,0.0712890625,0.060999177396297455,0,0 +162,0.2741541862487793,0.28019529581069946,0.006041109561920166,0.00832285514012859,1.0,1.0,0.01605224609375,0.01824951171875,0.4322509765625,0,0,0.09256739914417267,0.4084983468055725,1.6364666223526,0.6464364528656006,0.4508708119392395,0.7984052896499634,0.0712890625,0.061503905802965164,0,0 +163,0.28019529581069946,0.28197556734085083,0.0017802715301513672,0.0024732702075856063,1.0,1.0,0.01824951171875,0.01910400390625,0.43310546875,0,0,0.09512020647525787,0.4082275927066803,1.6381595134735107,0.6493565440177917,0.44982439279556274,0.798229992389679,0.07080078125,0.06164765730500221,0,0 +164,0.28197556734085083,0.28325939178466797,0.0012838244438171387,0.0017879954851433007,1.0,1.0,0.01910400390625,0.01971435546875,0.43243408203125,0,0,0.09587005525827408,0.4081602990627289,1.639374852180481,0.6494279503822327,0.44907182455062866,0.7983618974685669,0.07080078125,0.06172626465559006,0,0 +165,0.28325939178466797,0.28586405515670776,0.002604663372039795,0.0036340390682276925,1.0,1.0,0.01971435546875,0.02081298828125,0.4326171875,0,0,0.09641025960445404,0.4087100028991699,1.6417882442474365,0.6461602449417114,0.44754958152770996,0.799200713634491,0.072265625,0.06195605546236038,0,0 +166,0.28586405515670776,0.2887153625488281,0.0028513073921203613,0.003992667520392134,1.0,1.0,0.02081298828125,0.02215576171875,0.4329833984375,0,0,0.09750722348690033,0.4092335104942322,1.6443779468536377,0.6435039043426514,0.4458927810192108,0.7999993562698364,0.07275390625,0.062273137271404266,0,0 +167,0.2887153625488281,0.2945631742477417,0.005847811698913574,0.008221478984656144,1.0,1.0,0.02215576171875,0.02484130859375,0.433349609375,0,0,0.09870848059654236,0.4097990095615387,1.649465799331665,0.6384093165397644,0.4425250291824341,0.8013951778411865,0.07373046875,0.06269212812185287,0,0 +168,0.2945631742477417,0.29467910528182983,0.00011593103408813477,0.0001643393566312747,1.0,1.0,0.02484130859375,0.02496337890625,0.4322509765625,0,0,0.101181261241436,0.4086652398109436,1.649568796157837,0.644270658493042,0.4424585998058319,0.8004884123802185,0.07373046875,0.062743179500103,0,0 +169,0.29467910528182983,0.30039119720458984,0.00571209192276001,0.008098571821046686,1.0,1.0,0.02496337890625,0.028564453125,0.4332275390625,0,0,0.10123012959957123,0.41010546684265137,1.6543599367141724,0.6353393793106079,0.43920832872390747,0.8025563955307007,0.07421875,0.06325340270996094,0,0 +170,0.30039119720458984,0.3019285202026367,0.001537322998046875,0.002197403737494769,1.0,1.0,0.028564453125,0.029296875,0.4326171875,0,0,0.10365378856658936,0.4090023636817932,1.6556613445281982,0.6397081613540649,0.4383400082588196,0.8017805814743042,0.07421875,0.06341880559921265,0,0 +171,0.3019285202026367,0.3040109872817993,0.0020824670791625977,0.002983171694347258,1.0,1.0,0.029296875,0.0306396484375,0.43267822265625,0,0,0.104305699467659,0.4095868468284607,1.6573879718780518,0.6367481350898743,0.4371699094772339,0.8025025725364685,0.07470703125,0.06379352509975433,0,0 +172,0.3040109872817993,0.30444324016571045,0.0004322528839111328,0.0006210627984240146,1.0,1.0,0.0306396484375,0.03082275390625,0.43243408203125,0,0,0.10518988966941833,0.40914541482925415,1.6577481031417847,0.6385046243667603,0.436927855014801,0.802153468132019,0.07470703125,0.06384233385324478,0,0 +173,0.30444324016571045,0.306520938873291,0.0020776987075805664,0.002987101596245805,1.0,1.0,0.03082275390625,0.03253173828125,0.4324951171875,0,0,0.10537298023700714,0.40960150957107544,1.6594429016113281,0.6357256770133972,0.43576890230178833,0.8028079271316528,0.07470703125,0.06403058767318726,0,0 +174,0.306520938873291,0.30680930614471436,0.00028836727142333984,0.0004158269334835055,1.0,1.0,0.03253173828125,0.03271484375,0.43231201171875,0,0,0.10625415295362473,0.4088895320892334,1.6596803665161133,0.6385741233825684,0.4356086552143097,0.8022053241729736,0.07470703125,0.0640391856431961,0,0 +175,0.30680930614471436,0.31073933839797974,0.003930032253265381,0.005669482132554186,1.0,1.0,0.03271484375,0.03570556640625,0.43267822265625,0,0,0.10637607425451279,0.40973764657974243,1.662783145904541,0.633141040802002,0.4334409832954407,0.8034536838531494,0.07470703125,0.06437572091817856,0,0 +176,0.31073933839797974,0.3107595443725586,2.0205974578857422e-05,2.9315432759347536e-05,1.0,1.0,0.03570556640625,0.03570556640625,0.4317626953125,0,0,0.10804620385169983,0.40831589698791504,1.6627994775772095,0.6389269828796387,0.43342989683151245,0.8022179007530212,0.07470703125,0.06436128914356232,0,0 +177,0.3107595443725586,0.3125140070915222,0.001754462718963623,0.0025455016527816403,1.0,1.0,0.03570556640625,0.0367431640625,0.43255615234375,0,0,0.10805477201938629,0.4092278778553009,1.6641795635223389,0.6345873475074768,0.4324701428413391,0.8032233119010925,0.07470703125,0.06464795768260956,0,0 +178,0.3125140070915222,0.3132712244987488,0.0007572174072265625,0.0011014295782566842,1.0,1.0,0.0367431640625,0.03741455078125,0.4326171875,0,0,0.10880120098590851,0.4090542197227478,1.66477370262146,0.6349660754203796,0.4320571720600128,0.8031748533248901,0.0751953125,0.06479192525148392,0,0 +179,0.3132712244987488,0.31540268659591675,0.0021314620971679688,0.0031037902782101857,1.0,1.0,0.03741455078125,0.0390625,0.4326171875,0,0,0.10912299901247025,0.4096478819847107,1.6664056777954102,0.6317063570022583,0.4309004843235016,0.8039368391036987,0.07568359375,0.06508149206638336,0,0 +180,0.31540268659591675,0.3168019652366638,0.0013992786407470703,0.002043944101663669,1.0,1.0,0.0390625,0.03973388671875,0.43218994140625,0,0,0.11003033816814423,0.40918827056884766,1.667473554611206,0.6329978704452515,0.4301449656486511,0.8036618232727051,0.07568359375,0.0652053952217102,0,0 +181,0.3168019652366638,0.3187534213066101,0.001951456069946289,0.002856354922950393,1.0,1.0,0.03973388671875,0.0418701171875,0.4320068359375,0,0,0.11062469333410263,0.4088039994239807,1.6689478158950806,0.633544385433197,0.4290975332260132,0.8035575151443481,0.0751953125,0.06526248157024384,0,0 +182,0.3187534213066101,0.31920820474624634,0.00045478343963623047,0.0006675753741156267,1.0,1.0,0.0418701171875,0.04241943359375,0.43194580078125,0,0,0.111452117562294,0.40851783752441406,1.6692917346954346,0.6343940496444702,0.42885446548461914,0.8034150004386902,0.0751953125,0.06543335318565369,0,0 +183,0.31920820474624634,0.3208189010620117,0.0016106963157653809,0.0023659161684888123,1.0,1.0,0.04241943359375,0.04400634765625,0.43182373046875,0,0,0.11164466291666031,0.4085841178894043,1.6704928874969482,0.6334338188171387,0.4279967248439789,0.8036423921585083,0.07568359375,0.06553348898887634,0,0 +184,0.3208189010620117,0.32228654623031616,0.0014676451683044434,0.002160904021916023,1.0,1.0,0.04400634765625,0.0457763671875,0.4310302734375,0,0,0.11232657730579376,0.40892672538757324,1.67156982421875,0.6315187215805054,0.42721956968307495,0.8041520118713379,0.07568359375,0.06587129086256027,0,0 +185,0.32228654623031616,0.32243698835372925,0.00015044212341308594,0.00022198485595390383,1.0,1.0,0.0457763671875,0.04583740234375,0.4307861328125,0,0,0.11294832825660706,0.40842878818511963,1.6716809272766113,0.6333596706390381,0.42714017629623413,0.8038058280944824,0.07568359375,0.06588087975978851,0,0 +186,0.32243698835372925,0.3249087929725647,0.0024718046188354492,0.0036480808077609204,1.0,1.0,0.04583740234375,0.047607421875,0.4310302734375,0,0,0.1130119264125824,0.4094163775444031,1.6734448671340942,0.6285482048988342,0.4258427619934082,0.8049114942550659,0.07666015625,0.06625284999608994,0,0 +187,0.3249087929725647,0.32710039615631104,0.002191603183746338,0.0032463808755507496,1.0,1.0,0.047607421875,0.04876708984375,0.43072509765625,0,0,0.11406026780605316,0.4087211489677429,1.6749961376190186,0.6300878524780273,0.42470043897628784,0.8046793937683105,0.07763671875,0.06638959050178528,0,0 +188,0.32710039615631104,0.3273133635520935,0.0002129673957824707,0.0003164920807888333,1.0,1.0,0.04876708984375,0.048828125,0.4300537109375,0,0,0.1149868443608284,0.40779900550842285,1.6751487255096436,0.6332638263702393,0.42458978295326233,0.8040494918823242,0.07763671875,0.06640680879354477,0,0 +189,0.3273133635520935,0.3306043744087219,0.003291010856628418,0.004892338688347464,1.0,1.0,0.048828125,0.05218505859375,0.43109130859375,0,0,0.11507654190063477,0.40976929664611816,1.677375078201294,0.6245298385620117,0.4228940010070801,0.8060704469680786,0.07958984375,0.06712524592876434,0,0 +190,0.3306043744087219,0.33350670337677,0.0029023289680480957,0.0043357453456384105,1.0,1.0,0.05218505859375,0.05511474609375,0.43060302734375,0,0,0.11647193133831024,0.40880879759788513,1.6793173551559448,0.6266111135482788,0.4214196503162384,0.8057470321655273,0.080078125,0.06730883568525314,0,0 +191,0.33350670337677,0.3363104462623596,0.0028037428855895996,0.004206708304186533,1.0,1.0,0.05511474609375,0.05780029296875,0.43084716796875,0,0,0.11769711226224899,0.4085366129875183,1.6811548471450806,0.626167893409729,0.42001378536224365,0.8059858083724976,0.08154296875,0.06769441068172455,0,0 +192,0.3363104462623596,0.33822351694107056,0.0019130706787109375,0.002882478212798846,1.0,1.0,0.05780029296875,0.0595703125,0.43109130859375,0,0,0.11887846887111664,0.4078853726387024,1.6823991537094116,0.62747722864151,0.41906479001045227,0.8057955503463745,0.08203125,0.06791145354509354,0,0 +193,0.33822351694107056,0.3384885787963867,0.0002650618553161621,0.0004005307866048166,1.0,1.0,0.0595703125,0.0599365234375,0.430419921875,0,0,0.11968204379081726,0.40686410665512085,1.6825737953186035,0.6308606863021851,0.41893404722213745,0.8050718307495117,0.08154296875,0.06791649013757706,0,0 +194,0.3384885787963867,0.3394283652305603,0.000939786434173584,0.0014206654700891666,1.0,1.0,0.0599365234375,0.061279296875,0.43084716796875,0,0,0.11979292333126068,0.4077169597148895,1.6831804513931274,0.627639651298523,0.4184724688529968,0.8058245182037354,0.0830078125,0.06829673051834106,0,0 +195,0.3394283652305603,0.3415253162384033,0.0020969510078430176,0.0031744490642183257,1.0,1.0,0.061279296875,0.063720703125,0.430908203125,0,0,0.1201871857047081,0.40792566537857056,1.68450129032135,0.6256252527236938,0.41744935512542725,0.806338906288147,0.08203125,0.06851121038198471,0,0 +196,0.3415253162384033,0.34201580286026,0.0004904866218566895,0.0007448830364361769,1.0,1.0,0.063720703125,0.06390380859375,0.4307861328125,0,0,0.1210772693157196,0.40732264518737793,1.6848115921020508,0.6273665428161621,0.4172114133834839,0.8059945106506348,0.08349609375,0.06870812177658081,0,0 +197,0.34201580286026,0.34241145849227905,0.00039565563201904297,0.0006013147940922588,1.0,1.0,0.06390380859375,0.0643310546875,0.43035888671875,0,0,0.12128552794456482,0.4071745276451111,1.6850615739822388,0.627684473991394,0.41701966524124146,0.8059281706809998,0.0830078125,0.06873247027397156,0,0 +198,0.34241145849227905,0.3427039384841919,0.0002924799919128418,0.0004447765942548859,1.0,1.0,0.0643310546875,0.0645751953125,0.429931640625,0,0,0.1214534342288971,0.4069419205188751,1.6852465867996216,0.6283916234970093,0.4168781340122223,0.8057750463485718,0.08349609375,0.06873024255037308,0,0 +199,0.3427039384841919,0.34423136711120605,0.0015274286270141602,0.002323806145272978,1.0,1.0,0.0645751953125,0.06585693359375,0.4305419921875,0,0,0.12157744914293289,0.4075430631637573,1.686189889907837,0.6256235837936401,0.4161422848701477,0.8064205646514893,0.0849609375,0.06900599598884583,0,0 +200,0.34423136711120605,0.3525904417037964,0.008359074592590332,0.01274698754005191,1.0,1.0,0.06585693359375,0.0758056640625,0.432861328125,0,0,0.12222742289304733,0.4101598858833313,1.6907379627227783,0.6126807928085327,0.4122421145439148,0.8095035552978516,0.0849609375,0.07027201354503632,0,0 +201,0.3525904417037964,0.3526398539543152,4.941225051879883e-05,7.632301668334602e-05,1.0,1.0,0.0758056640625,0.07586669921875,0.427734375,0,0,0.1258404552936554,0.40562140941619873,1.6907670497894287,0.627503514289856,0.4122195541858673,0.8062105178833008,0.08544921875,0.07027275115251541,0,0 +202,0.3526398539543152,0.354198157787323,0.0015583038330078125,0.0024071667718912086,1.0,1.0,0.07586669921875,0.0775146484375,0.42864990234375,0,0,0.12586146593093872,0.4063999652862549,1.691657304763794,0.624244213104248,0.41151148080825806,0.8069858551025391,0.08544921875,0.07054716348648071,0,0 +203,0.354198157787323,0.35644394159317017,0.002245783805847168,0.0034775122321617363,1.0,1.0,0.0775146484375,0.08050537109375,0.42822265625,0,0,0.12652575969696045,0.40641582012176514,1.6929082870483398,0.6230010986328125,0.4105056822299957,0.8073209524154663,0.08447265625,0.07084867358207703,0,0 +204,0.35644394159317017,0.3597562909126282,0.003312349319458008,0.005146947614257523,1.0,1.0,0.08050537109375,0.08544921875,0.42919921875,0,0,0.127483069896698,0.4069559574127197,1.6946698427200317,0.6195384860038757,0.40905246138572693,0.8081626296043396,0.0849609375,0.0715511292219162,0,0 +205,0.3597562909126282,0.35995447635650635,0.00019818544387817383,0.00030954688201571714,1.0,1.0,0.08544921875,0.0859375,0.42669677734375,0,0,0.12889759242534637,0.4049890637397766,1.6947788000106812,0.6257240176200867,0.408966600894928,0.8066482543945312,0.08447265625,0.07154767215251923,0,0 +206,0.35995447635650635,0.3615739941596985,0.0016195178031921387,0.002530316584315669,1.0,1.0,0.0859375,0.08856201171875,0.4276123046875,0,0,0.12898162007331848,0.4056372046470642,1.6956431865692139,0.6229043006896973,0.4082712233066559,0.80733323097229,0.0849609375,0.07182161509990692,0,0 +207,0.3615739941596985,0.36345893144607544,0.0018849372863769531,0.0029524757280148437,1.0,1.0,0.08856201171875,0.0906982421875,0.42755126953125,0,0,0.12966977059841156,0.4058280289173126,1.6966238021850586,0.6213318109512329,0.407470703125,0.8077242374420166,0.08544921875,0.0722300112247467,0,0 +208,0.36345893144607544,0.36547166109085083,0.0020127296447753906,0.003161979240943324,1.0,1.0,0.0906982421875,0.09393310546875,0.42767333984375,0,0,0.13047121465206146,0.4056326746940613,1.6976492404937744,0.620799720287323,0.4066286087036133,0.8078694343566895,0.0859375,0.07256174087524414,0,0 +209,0.36547166109085083,0.3658730983734131,0.00040143728256225586,0.0006326546159504675,1.0,1.0,0.09393310546875,0.09429931640625,0.4263916015625,0,0,0.13132627308368683,0.40439629554748535,1.6978578567504883,0.6246013045310974,0.4064621925354004,0.8069818019866943,0.0859375,0.07256630808115005,0,0 +210,0.3658730983734131,0.3685625195503235,0.0026894211769104004,0.004241140330132371,1.0,1.0,0.09429931640625,0.0975341796875,0.4278564453125,0,0,0.13149601221084595,0.4059120714664459,1.6991705894470215,0.618351399898529,0.40536290407180786,0.8084774017333984,0.08642578125,0.07320995628833771,0,0 +211,0.3685625195503235,0.3707679510116577,0.0022054314613342285,0.003492715477965667,1.0,1.0,0.0975341796875,0.1007080078125,0.42645263671875,0,0,0.1326395571231842,0.40496915578842163,1.7002384662628174,0.6203733682632446,0.40447747707366943,0.8080040216445923,0.0859375,0.07349620014429092,0,0 +212,0.3707679510116577,0.37565529346466064,0.00488734245300293,0.007767154360399524,1.0,1.0,0.1007080078125,0.10791015625,0.4285888671875,0,0,0.13357388973236084,0.40690305829048157,1.7023711204528809,0.6116862297058105,0.4025825262069702,0.8101184368133545,0.0869140625,0.07471473515033722,0,0 +213,0.37565529346466064,0.3760995864868164,0.0004442930221557617,0.0007116149420426194,1.0,1.0,0.10791015625,0.10870361328125,0.4263916015625,0,0,0.13566981256008148,0.4041619598865509,1.702575445175171,0.6198776364326477,0.4024134874343872,0.8081741333007812,0.087890625,0.07479555159807205,0,0 +214,0.3760995864868164,0.37744057178497314,0.0013409852981567383,0.002149357924938131,1.0,1.0,0.10870361328125,0.1104736328125,0.42657470703125,0,0,0.1358598917722702,0.4042525887489319,1.7031807899475098,0.6190964579582214,0.40190744400024414,0.8083640336990356,0.087890625,0.07492715865373611,0,0 +215,0.37744057178497314,0.37937819957733154,0.0019376277923583984,0.003112357960610883,1.0,1.0,0.1104736328125,0.11297607421875,0.42633056640625,0,0,0.13643380999565125,0.4046178162097931,1.7040245532989502,0.6169358491897583,0.4011878967285156,0.8088956475257874,0.0888671875,0.07540363818407059,0,0 +216,0.37937819957733154,0.3809274435043335,0.0015492439270019531,0.0024962770014634607,1.0,1.0,0.11297607421875,0.11541748046875,0.42608642578125,0,0,0.1372641772031784,0.40366435050964355,1.704700231552124,0.6193689703941345,0.4006217122077942,0.8083301186561584,0.0888671875,0.07549130916595459,0,0 +217,0.3809274435043335,0.38107722997665405,0.00014978647232055664,0.00024195301624811266,1.0,1.0,0.11541748046875,0.1156005859375,0.42578125,0,0,0.13792574405670166,0.40345627069473267,1.7047655582427979,0.6197028160095215,0.4005674719810486,0.8082730770111084,0.08935546875,0.0757618248462677,0,0 +218,0.38107722997665405,0.38386106491088867,0.002783834934234619,0.004497871251577337,1.0,1.0,0.1156005859375,0.1192626953125,0.42645263671875,0,0,0.13798965513706207,0.40438181161880493,1.705910563468933,0.6156527996063232,0.39957430958747864,0.8092606067657471,0.08984375,0.07611921429634094,0,0 +219,0.38386106491088867,0.3871520161628723,0.0032909512519836426,0.005341248644687057,1.0,1.0,0.1192626953125,0.123779296875,0.4263916015625,0,0,0.13918158411979675,0.40464720129966736,1.7071903944015503,0.6132376194000244,0.39843490719795227,0.809890866279602,0.0908203125,0.07691790908575058,0,0 +220,0.3871520161628723,0.38741159439086914,0.00025957822799682617,0.0004235605481991966,1.0,1.0,0.123779296875,0.1241455078125,0.4239501953125,0,0,0.1405920386314392,0.40253645181655884,1.707296371459961,0.6196553707122803,0.3983463644981384,0.8084110021591187,0.0908203125,0.0769200399518013,0,0 +221,0.38741159439086914,0.38777774572372437,0.0003661513328552246,0.0005977118233100411,1.0,1.0,0.1241455078125,0.12469482421875,0.4241943359375,0,0,0.14070239663124084,0.4027194380760193,1.7074443101882935,0.618833065032959,0.3982219099998474,0.8086104393005371,0.09033203125,0.07704852521419525,0,0 +222,0.38777774572372437,0.38811367750167847,0.00033593177795410156,0.0005487088644812749,1.0,1.0,0.12469482421875,0.125244140625,0.4239501953125,0,0,0.14085817337036133,0.4025944471359253,1.7075798511505127,0.6190912127494812,0.3981081247329712,0.8085573315620422,0.09033203125,0.07711299508810043,0,0 +223,0.38811367750167847,0.39253419637680054,0.00442051887512207,0.007224411974226138,1.0,1.0,0.125244140625,0.13250732421875,0.426025390625,0,0,0.14100103080272675,0.40450921654701233,1.7091659307479858,0.6113777160644531,0.39666131138801575,0.810400128364563,0.09130859375,0.07785728573799133,0,0 +224,0.39253419637680054,0.39381277561187744,0.0012785792350769043,0.0021047756556021465,1.0,1.0,0.13250732421875,0.13470458984375,0.42462158203125,0,0,0.14289453625679016,0.40288054943084717,1.7096340656280518,0.6154483556747437,0.3962559700012207,0.8094455599784851,0.091796875,0.07841810584068298,0,0 +225,0.39381277561187744,0.39389556646347046,8.279085159301758e-05,0.0001365763715600994,1.0,1.0,0.13470458984375,0.13482666015625,0.42431640625,0,0,0.14343880116939545,0.40200141072273254,1.709665060043335,0.6180306077003479,0.39622995257377625,0.808815598487854,0.091796875,0.0784149318933487,0,0 +226,0.39389556646347046,0.3972674012184143,0.0033718347549438477,0.005563125046404448,1.0,1.0,0.13482666015625,0.1395263671875,0.42596435546875,0,0,0.14347392320632935,0.4039602279663086,1.7107946872711182,0.6105958223342896,0.39519399404525757,0.8106393814086914,0.09375,0.07917886972427368,0,0 +227,0.3972674012184143,0.3986099362373352,0.0013425350189208984,0.002227413983638535,1.0,1.0,0.1395263671875,0.14166259765625,0.42510986328125,0,0,0.14491519331932068,0.40218043327331543,1.7112573385238647,0.6154420971870422,0.39479202032089233,0.8094567060470581,0.09375,0.07930231094360352,0,0 +228,0.3986099362373352,0.3994171619415283,0.0008072257041931152,0.001342266447075325,1.0,1.0,0.14166259765625,0.14276123046875,0.42413330078125,0,0,0.14548508822917938,0.40158993005752563,1.7115364074707031,0.6169085502624512,0.3945533037185669,0.8090981245040894,0.09423828125,0.07942745089530945,0,0 +229,0.3994171619415283,0.4020821452140808,0.0026649832725524902,0.004437328381156693,1.0,1.0,0.14276123046875,0.145751953125,0.4256591796875,0,0,0.14582696557044983,0.40256190299987793,1.7123903036117554,0.6128674745559692,0.3937842845916748,0.8100911378860474,0.0947265625,0.08000639081001282,0,0 +230,0.4020821452140808,0.40461206436157227,0.002529919147491455,0.004231215253468684,1.0,1.0,0.145751953125,0.150146484375,0.42633056640625,0,0,0.14695990085601807,0.4031086564064026,1.7131462097167969,0.6096962690353394,0.39308130741119385,0.8108786344528198,0.0966796875,0.08094806969165802,0,0 +231,0.40461206436157227,0.40561288595199585,0.001000821590423584,0.0016809571214277533,1.0,1.0,0.150146484375,0.15179443359375,0.42431640625,0,0,0.14803771674633026,0.40186798572540283,1.7134515047073364,0.6130025386810303,0.39280980825424194,0.8100898265838623,0.09765625,0.08112118393182755,0,0 +232,0.40561288595199585,0.405800998210907,0.0001881122589111328,0.000316481051599548,1.0,1.0,0.15179443359375,0.15191650390625,0.4234619140625,0,0,0.14846199750900269,0.4011785387992859,1.7135099172592163,0.6150712966918945,0.39275914430618286,0.809600830078125,0.09765625,0.08113037049770355,0,0 +233,0.405800998210907,0.4063038229942322,0.0005028247833251953,0.0008462228677786801,1.0,1.0,0.15191650390625,0.15252685546875,0.42327880859375,0,0,0.14854153990745544,0.40099167823791504,1.7136659622192383,0.6155251264572144,0.39262425899505615,0.8094843626022339,0.09716796875,0.08109553903341293,0,0 +234,0.4063038229942322,0.40760552883148193,0.0013017058372497559,0.0021925454258687432,1.0,1.0,0.15252685546875,0.154296875,0.4234619140625,0,0,0.14875397086143494,0.4014298617839813,1.7140536308288574,0.6136664748191833,0.3922799527645111,0.8099489212036133,0.09765625,0.08143706619739532,0,0 +235,0.40760552883148193,0.4102723002433777,0.002666771411895752,0.004501681804415654,1.0,1.0,0.154296875,0.15777587890625,0.42352294921875,0,0,0.1493048518896103,0.4015815258026123,1.7148027420043945,0.6122737526893616,0.3915950655937195,0.8103194236755371,0.09765625,0.08177191764116287,0,0 +236,0.4102723002433777,0.4104098677635193,0.00013756752014160156,0.0002332729498688547,1.0,1.0,0.15777587890625,0.15789794921875,0.42083740234375,0,0,0.15043410658836365,0.39969930052757263,1.714843988418579,0.6177923083305359,0.39156025648117065,0.8090299367904663,0.09716796875,0.08177569508552551,0,0 +237,0.4104098677635193,0.4130597710609436,0.0026499032974243164,0.004494483799063071,1.0,1.0,0.15789794921875,0.16229248046875,0.42333984375,0,0,0.15049192309379578,0.40190190076828003,1.7155330181121826,0.6097701787948608,0.39091265201568604,0.8109554648399353,0.09765625,0.08270096778869629,0,0 +238,0.4130597710609436,0.4138181805610657,0.0007584095001220703,0.0012921409416644673,1.0,1.0,0.16229248046875,0.1634521484375,0.42205810546875,0,0,0.1516154557466507,0.4010114073753357,1.7157330513000488,0.6118004322052002,0.3907317519187927,0.8105127811431885,0.09716796875,0.08312878012657166,0,0 +239,0.4138181805610657,0.4139173626899719,9.918212890625e-05,0.00016920028158018015,1.0,1.0,0.1634521484375,0.16363525390625,0.42156982421875,0,0,0.1519358605146408,0.4004836678504944,1.7157596349716187,0.6133149862289429,0.3907082676887512,0.8101575374603271,0.09765625,0.08313232660293579,0,0 +240,0.4139173626899719,0.4155430197715759,0.001625657081604004,0.0027737676875489114,1.0,1.0,0.16363525390625,0.16650390625,0.42236328125,0,0,0.15197768807411194,0.40114468336105347,1.716169834136963,0.6108424663543701,0.3903302550315857,0.8107606172561646,0.09765625,0.08337666839361191,0,0 +241,0.4155430197715759,0.41625410318374634,0.0007110834121704102,0.0012166565482586871,1.0,1.0,0.16650390625,0.16754150390625,0.42108154296875,0,0,0.15266484022140503,0.4002054035663605,1.716353178024292,0.6134152412414551,0.3901677131652832,0.8101786375045776,0.09765625,0.08343726396560669,0,0 +242,0.41625410318374634,0.41739892959594727,0.0011448264122009277,0.0019611725212028103,1.0,1.0,0.16754150390625,0.1693115234375,0.42120361328125,0,0,0.1529642641544342,0.40028390288352966,1.7166396379470825,0.6126818060874939,0.38991039991378784,0.8103698492050171,0.09716796875,0.08366984874010086,0,0 +243,0.41739892959594727,0.4187028408050537,0.0013039112091064453,0.0022380858452631072,1.0,1.0,0.1693115234375,0.1712646484375,0.42144775390625,0,0,0.1534464955329895,0.4001697301864624,1.7169568538665771,0.6125044822692871,0.38962361216545105,0.8104346990585327,0.09716796875,0.08394268900156021,0,0 +244,0.4187028408050537,0.4191896319389343,0.00048679113388061523,0.0008374221793114989,1.0,1.0,0.1712646484375,0.172119140625,0.42059326171875,0,0,0.15399546921253204,0.39962589740753174,1.7170765399932861,0.6138511896133423,0.38951820135116577,0.8101500868797302,0.09765625,0.08406053483486176,0,0 +245,0.4191896319389343,0.42389386892318726,0.00470423698425293,0.008099436998614894,1.0,1.0,0.172119140625,0.17913818359375,0.423583984375,0,0,0.15419995784759521,0.4027737081050873,1.7179548740386963,0.6025213003158569,0.38857147097587585,0.8128868341445923,0.0986328125,0.08547291159629822,0,0 +246,0.42389386892318726,0.4252482056617737,0.0013543367385864258,0.002350845904130555,1.0,1.0,0.17913818359375,0.18109130859375,0.4208984375,0,0,0.15620151162147522,0.4002711772918701,1.7182300090789795,0.6091547012329102,0.3883122503757477,0.8113402128219604,0.0986328125,0.08578886091709137,0,0 +247,0.4252482056617737,0.4253559112548828,0.00010770559310913086,0.00018739496626216524,1.0,1.0,0.18109130859375,0.181396484375,0.420166015625,0,0,0.15677188336849213,0.39928197860717773,1.7182528972625732,0.6120296716690063,0.38829177618026733,0.8106201887130737,0.0986328125,0.08578912913799286,0,0 +248,0.4253559112548828,0.42660707235336304,0.0012511610984802246,0.002177280029474341,1.0,1.0,0.181396484375,0.1834716796875,0.4205322265625,0,0,0.15681706368923187,0.3995274305343628,1.7185072898864746,0.6109789609909058,0.38805824518203735,0.8108772039413452,0.09912109375,0.08588548749685287,0,0 +249,0.42660707235336304,0.4276626706123352,0.001055598258972168,0.0018409683971942852,1.0,1.0,0.1834716796875,0.184814453125,0.42095947265625,0,0,0.1573423594236374,0.3994825482368469,1.7187151908874512,0.6106415390968323,0.38786548376083374,0.810958981513977,0.099609375,0.08623988926410675,0,0 +250,0.4276626706123352,0.4283526539802551,0.0006899833679199219,0.0012055536699975954,1.0,1.0,0.184814453125,0.18609619140625,0.41998291015625,0,0,0.15778544545173645,0.3988758325576782,1.7188527584075928,0.6122215390205383,0.3877415955066681,0.8105418682098389,0.099609375,0.08626771718263626,0,0 +251,0.4283526539802551,0.4304842948913574,0.002131640911102295,0.0037289439476006375,1.0,1.0,0.18609619140625,0.189697265625,0.4219970703125,0,0,0.15807434916496277,0.4003511369228363,1.7192167043685913,0.6068268418312073,0.3873771131038666,0.8119043111801147,0.10107421875,0.08710174262523651,0,0 +252,0.4304842948913574,0.4305956959724426,0.00011140108108520508,0.00019560668843004753,1.0,1.0,0.189697265625,0.19024658203125,0.419921875,0,0,0.1589723527431488,0.39876675605773926,1.7192374467849731,0.6113479137420654,0.38735857605934143,0.8107441663742065,0.10107421875,0.08711892366409302,0,0 +253,0.4305956959724426,0.43607741594314575,0.005481719970703125,0.009627113690446968,1.0,1.0,0.19024658203125,0.19952392578125,0.42291259765625,0,0,0.15901899337768555,0.40162020921707153,1.7199339866638184,0.6012659072875977,0.3865394592285156,0.8132672309875488,0.10107421875,0.08820631355047226,0,0 +254,0.43607741594314575,0.4370152950286865,0.0009378790855407715,0.0016631344657163354,1.0,1.0,0.19952392578125,0.200927734375,0.419189453125,0,0,0.1613403856754303,0.3982768654823303,1.7200795412063599,0.6103935241699219,0.38640910387039185,0.8109073042869568,0.10205078125,0.08847057819366455,0,0 +255,0.4370152950286865,0.4383549690246582,0.0013396739959716797,0.002379592170341363,1.0,1.0,0.200927734375,0.20379638671875,0.41851806640625,0,0,0.16173198819160461,0.3980284333229065,1.7202813625335693,0.6108965873718262,0.3862304389476776,0.8107719421386719,0.1015625,0.08860712498426437,0,0 +256,0.4383549690246582,0.4389508366584778,0.0005958676338195801,0.001060932797330741,1.0,1.0,0.20379638671875,0.2047119140625,0.4176025390625,0,0,0.1622907817363739,0.3973824381828308,1.7203729152679443,0.6124632358551025,0.3861538767814636,0.8103839159011841,0.1015625,0.08872905373573303,0,0 +257,0.4389508366584778,0.4391617178916931,0.00021088123321533203,0.0003758694371084273,1.0,1.0,0.2047119140625,0.205078125,0.4183349609375,0,0,0.16253861784934998,0.39786702394485474,1.7204036712646484,0.6105276346206665,0.3861273229122162,0.8108596801757812,0.10205078125,0.0891771912574768,0,0 +258,0.4391617178916931,0.44037628173828125,0.0012145638465881348,0.002165622221832537,1.0,1.0,0.205078125,0.2076416015625,0.4193115234375,0,0,0.1626265048980713,0.39868757128715515,1.7205607891082764,0.6075405478477478,0.3859809637069702,0.8116186857223511,0.1025390625,0.08959230780601501,0,0 +259,0.44037628173828125,0.44134819507598877,0.0009719133377075195,0.0017367264931630107,1.0,1.0,0.2076416015625,0.2091064453125,0.41864013671875,0,0,0.16313451528549194,0.39795684814453125,1.720689058303833,0.6094764471054077,0.3858689069747925,0.8111286163330078,0.1025390625,0.08961353451013565,0,0 +260,0.44134819507598877,0.44280141592025757,0.0014532208442687988,0.002601299828372466,1.0,1.0,0.2091064453125,0.2115478515625,0.41876220703125,0,0,0.16353975236415863,0.3984019458293915,1.7208616733551025,0.607728123664856,0.3857114315032959,0.8115771412849426,0.10205078125,0.09008032083511353,0,0 +261,0.44280141592025757,0.44418448209762573,0.001383066177368164,0.002482178198016076,1.0,1.0,0.2115478515625,0.21392822265625,0.41845703125,0,0,0.16414682567119598,0.3981662690639496,1.721017837524414,0.6077812910079956,0.38557058572769165,0.8115639686584473,0.1015625,0.09040410816669464,0,0 +262,0.44418448209762573,0.4447091221809387,0.0005246400833129883,0.0009439104638405188,1.0,1.0,0.21392822265625,0.2147216796875,0.417236328125,0,0,0.16472399234771729,0.3974508047103882,1.7210793495178223,0.6096602082252502,0.3855191469192505,0.8110949993133545,0.1015625,0.09053486585617065,0,0 +263,0.4447091221809387,0.4456430673599243,0.0009339451789855957,0.0016819026140924955,1.0,1.0,0.2147216796875,0.21600341796875,0.4173583984375,0,0,0.16494223475456238,0.3974650502204895,1.7211836576461792,0.6092854738235474,0.38543054461479187,0.8112039566040039,0.10205078125,0.09070371836423874,0,0 +264,0.4456430673599243,0.44628357887268066,0.0006405115127563477,0.001155413552250476,1.0,1.0,0.21600341796875,0.21710205078125,0.41705322265625,0,0,0.16533078253269196,0.39727967977523804,1.7212536334991455,0.6094912886619568,0.3853720724582672,0.8111615180969238,0.10205078125,0.09090526401996613,0,0 +265,0.44628357887268066,0.4466923475265503,0.0004087686538696289,0.0007382274360536587,1.0,1.0,0.21710205078125,0.217529296875,0.41656494140625,0,0,0.16559702157974243,0.39698976278305054,1.7212986946105957,0.610221266746521,0.38533568382263184,0.8109910488128662,0.10205078125,0.09099354594945908,0,0 +266,0.4466923475265503,0.44696950912475586,0.0002771615982055664,0.0005009177027763337,1.0,1.0,0.217529296875,0.218017578125,0.41668701171875,0,0,0.16576674580574036,0.3967844843864441,1.7213294506072998,0.6106606721878052,0.38531139492988586,0.8108881115913391,0.10205078125,0.0909828469157219,0,0 +267,0.44696950912475586,0.44927191734313965,0.002302408218383789,0.004163257282143562,1.0,1.0,0.218017578125,0.2225341796875,0.418701171875,0,0,0.1658816933631897,0.39890044927597046,1.7214994430541992,0.6035476922988892,0.38513296842575073,0.8126605153083801,0.10302734375,0.09206704795360565,0,0 +268,0.44927191734313965,0.4508514404296875,0.0015795230865478516,0.0028680634532522974,1.0,1.0,0.2225341796875,0.22552490234375,0.4169921875,0,0,0.16684550046920776,0.3977392911911011,1.7216215133666992,0.6064053773880005,0.3850244879722595,0.8119566440582275,0.10302734375,0.09222939610481262,0,0 +269,0.4508514404296875,0.4565664529800415,0.005715012550354004,0.010407042776959627,1.0,1.0,0.22552490234375,0.2354736328125,0.42022705078125,0,0,0.16750329732894897,0.4000033736228943,1.7217470407485962,0.5981016755104065,0.38476622104644775,0.8140314817428589,0.10302734375,0.09365999698638916,0,0 +270,0.4565664529800415,0.457985520362854,0.0014190673828125,0.0026112988250252102,1.0,1.0,0.2354736328125,0.23834228515625,0.41668701171875,0,0,0.16990706324577332,0.3972735106945038,1.7218059301376343,0.604902982711792,0.38472479581832886,0.8124054670333862,0.10400390625,0.09435345232486725,0,0 +271,0.457985520362854,0.45977771282196045,0.0017921924591064453,0.0033065398184680167,1.0,1.0,0.23834228515625,0.2423095703125,0.41619873046875,0,0,0.17049774527549744,0.3972335457801819,1.7218620777130127,0.6043998003005981,0.3846912980079651,0.8125388622283936,0.10400390625,0.09485969692468643,0,0 +272,0.45977771282196045,0.46000075340270996,0.00022304058074951172,0.0004128681582439135,1.0,1.0,0.2423095703125,0.2427978515625,0.41497802734375,0,0,0.1712435930967331,0.3960418701171875,1.7218717336654663,0.607624888420105,0.384688138961792,0.8117374181747437,0.10498046875,0.09488790482282639,0,0 +273,0.46000075340270996,0.46374666690826416,0.0037459135055541992,0.0069368865404135505,1.0,1.0,0.2427978515625,0.249267578125,0.4176025390625,0,0,0.17133590579032898,0.39836037158966064,1.7218599319458008,0.5999592542648315,0.3846920430660248,0.8136319518089294,0.1064453125,0.0960080623626709,0,0 +274,0.46374666690826416,0.46454358100891113,0.0007969141006469727,0.0014860776641749023,1.0,1.0,0.249267578125,0.25067138671875,0.414794921875,0,0,0.17290249466896057,0.39596354961395264,1.721874475479126,0.6063786745071411,0.38469958305358887,0.8120169639587402,0.10693359375,0.09612716734409332,0,0 +275,0.46454358100891113,0.4676607847213745,0.003117203712463379,0.005821582489078828,1.0,1.0,0.25067138671875,0.255859375,0.41717529296875,0,0,0.17323216795921326,0.39817383885383606,1.7217965126037598,0.5987539291381836,0.3847731351852417,0.8139085173606873,0.10986328125,0.09757841378450394,0,0 +276,0.4676607847213745,0.4687042236328125,0.0010434389114379883,0.001960101532050112,1.0,1.0,0.255859375,0.25799560546875,0.4154052734375,0,0,0.17453455924987793,0.3963191509246826,1.7217859029769897,0.6037302017211914,0.38480624556541443,0.8126496076583862,0.10986328125,0.09773188084363937,0,0 +277,0.4687042236328125,0.4702575206756592,0.0015532970428466797,0.0029236013383497515,1.0,1.0,0.25799560546875,0.26031494140625,0.41534423828125,0,0,0.17496682703495026,0.39643701910972595,1.721753716468811,0.6029363870620728,0.38486793637275696,0.8128485083580017,0.111328125,0.0982043445110321,0,0 +278,0.4702575206756592,0.4703626036643982,0.00010508298873901367,0.0001983661738304272,1.0,1.0,0.26031494140625,0.2603759765625,0.41412353515625,0,0,0.17561066150665283,0.39527153968811035,1.7217528820037842,0.6061305999755859,0.3848723769187927,0.81203293800354,0.11083984375,0.09820294380187988,0,0 +279,0.4703626036643982,0.4734088182449341,0.0030462145805358887,0.005751509620755086,1.0,1.0,0.2603759765625,0.2650146484375,0.41656494140625,0,0,0.17565396428108215,0.39726388454437256,1.7216084003448486,0.5995893478393555,0.3850351572036743,0.8136904239654541,0.11328125,0.09918076545000076,0,0 +280,0.4734088182449341,0.474722683429718,0.0013138651847839355,0.002495038333921542,1.0,1.0,0.2650146484375,0.2669677734375,0.4146728515625,0,0,0.17692124843597412,0.39566025137901306,1.721559762954712,0.6036133766174316,0.38511598110198975,0.8126806020736694,0.11376953125,0.09947731345891953,0,0 +281,0.474722683429718,0.4763699769973755,0.0016472935676574707,0.003136045505283233,1.0,1.0,0.2669677734375,0.26971435546875,0.41552734375,0,0,0.17746376991271973,0.39647844433784485,1.721466064453125,0.6005223989486694,0.3852326273918152,0.8134650588035583,0.1142578125,0.10053672641515732,0,0 +282,0.4763699769973755,0.477496862411499,0.0011268854141235352,0.0021520641762702883,1.0,1.0,0.26971435546875,0.27105712890625,0.41448974609375,0,0,0.17814652621746063,0.39585837721824646,1.721402883529663,0.6019105315208435,0.38531994819641113,0.8131237626075745,0.1142578125,0.1008472666144371,0,0 +283,0.477496862411499,0.47779351472854614,0.00029665231704711914,0.0005677522213861779,1.0,1.0,0.27105712890625,0.27178955078125,0.414306640625,0,0,0.17861221730709076,0.3950306475162506,1.721388578414917,0.6041754484176636,0.3853434920310974,0.8125803470611572,0.1142578125,0.10085724294185638,0,0 +284,0.47779351472854614,0.4784184694290161,0.0006249547004699707,0.0011967578306598513,1.0,1.0,0.27178955078125,0.27301025390625,0.41424560546875,0,0,0.17873433232307434,0.39520907402038574,1.7213549613952637,0.6034945249557495,0.3853951394557953,0.8127621412277222,0.1142578125,0.10103926062583923,0,0 +285,0.4784184694290161,0.47848331928253174,6.4849853515625e-05,0.00012433310942707807,1.0,1.0,0.27301025390625,0.2730712890625,0.41400146484375,0,0,0.17899182438850403,0.394735723733902,1.7213518619537354,0.6047405004501343,0.38540056347846985,0.8124716281890869,0.1142578125,0.10103926062583923,0,0 +286,0.47848331928253174,0.47879940271377563,0.0003160834312438965,0.000606084988133169,1.0,1.0,0.2730712890625,0.2735595703125,0.41436767578125,0,0,0.17901846766471863,0.39497244358062744,1.7213348150253296,0.6039190292358398,0.3854275941848755,0.8126745223999023,0.11376953125,0.10123060643672943,0,0 +287,0.47879940271377563,0.4797492027282715,0.0009498000144958496,0.0018223310169659189,1.0,1.0,0.2735595703125,0.2752685546875,0.41461181640625,0,0,0.17914855480194092,0.39514249563217163,1.721276879310608,0.6032589673995972,0.3855120539665222,0.8128480911254883,0.11376953125,0.10141646862030029,0,0 +288,0.4797492027282715,0.4800289273262024,0.0002797245979309082,0.0005376725982887965,1.0,1.0,0.2752685546875,0.275634765625,0.41400146484375,0,0,0.1795397251844406,0.39478299021720886,1.7212603092193604,0.6040264368057251,0.38553744554519653,0.8126763105392456,0.11376953125,0.10168561339378357,0,0 +289,0.4800289273262024,0.48159462213516235,0.001565694808959961,0.003011119062660232,1.0,1.0,0.275634765625,0.27789306640625,0.4141845703125,0,0,0.17965474724769592,0.3950413465499878,1.7211514711380005,0.6031962633132935,0.3856862783432007,0.8128831386566162,0.11328125,0.1018153578042984,0,0 +290,0.48159462213516235,0.4823211431503296,0.0007265210151672363,0.0014014534690198759,1.0,1.0,0.27789306640625,0.279052734375,0.41400146484375,0,0,0.18029925227165222,0.39495331048965454,1.7210980653762817,0.6028661727905273,0.38575905561447144,0.8130043148994446,0.11376953125,0.10240917652845383,0,0 +291,0.4823211431503296,0.482658326625824,0.00033718347549438477,0.0006513371582264562,1.0,1.0,0.279052734375,0.27972412109375,0.41339111328125,0,0,0.180598184466362,0.3944072425365448,1.7210747003555298,0.604306161403656,0.38579341769218445,0.8126625418663025,0.11376953125,0.10241197794675827,0,0 +292,0.482658326625824,0.48406827449798584,0.0014099478721618652,0.002725370765061288,1.0,1.0,0.27972412109375,0.2821044921875,0.4141845703125,0,0,0.18073655664920807,0.3953075110912323,1.720950722694397,0.601391077041626,0.3859472870826721,0.8133859634399414,0.11572265625,0.10314503312110901,0,0 +293,0.48406827449798584,0.4859609603881836,0.001892685890197754,0.003668481306041268,1.0,1.0,0.2821044921875,0.28558349609375,0.41387939453125,0,0,0.18131762742996216,0.39524397253990173,1.7207651138305664,0.6010186672210693,0.3861716389656067,0.8135161399841309,0.11572265625,0.10365937650203705,0,0 +294,0.4859609603881836,0.48636430501937866,0.00040334463119506836,0.0007846575845672336,1.0,1.0,0.28558349609375,0.28619384765625,0.4136962890625,0,0,0.18209736049175262,0.3949820101261139,1.7207255363464355,0.6012307405471802,0.3862217664718628,0.8135138750076294,0.11572265625,0.10449367016553879,0,0 +295,0.48636430501937866,0.48813748359680176,0.0017731785774230957,0.00345221057405287,1.0,1.0,0.28619384765625,0.28948974609375,0.4140625,0,0,0.1822633147239685,0.39524078369140625,1.7205289602279663,0.6001312732696533,0.3864556550979614,0.8137707114219666,0.1162109375,0.1047450602054596,0,0 +296,0.48813748359680176,0.48813772201538086,2.384185791015625e-07,4.657863614958636e-07,1.0,1.0,0.28948974609375,0.28948974609375,0.4134521484375,0,0,0.18299375474452972,0.3939438462257385,1.7205289602279663,0.6036573648452759,0.3864557147026062,0.812935471534729,0.1162109375,0.1047450602054596,0,0 +297,0.48813772201538086,0.4895719885826111,0.0014342665672302246,0.0028020556093280285,1.0,1.0,0.28948974609375,0.29144287109375,0.41387939453125,0,0,0.1829938441514969,0.3948231041431427,1.7203655242919922,0.6010276079177856,0.3866569697856903,0.8135894536972046,0.1171875,0.10530021786689758,0,0 +298,0.4895719885826111,0.4929824471473694,0.0034104585647583008,0.006681566231617898,1.0,1.0,0.29144287109375,0.29693603515625,0.414306640625,0,0,0.18358346819877625,0.39555272459983826,1.7198847532272339,0.598187267780304,0.38718557357788086,0.8143135905265808,0.11865234375,0.106352798640728,0,0 +299,0.4929824471473694,0.4943515658378601,0.0013691186904907227,0.00270033785376395,1.0,1.0,0.29693603515625,0.29888916015625,0.41375732421875,0,0,0.1849902868270874,0.3944959342479706,1.7196968793869019,0.6003890633583069,0.3874112665653229,0.8137943744659424,0.12158203125,0.10734902322292328,0,0 +300,0.4943515658378601,0.49948668479919434,0.0051351189613342285,0.010155512435914347,1.0,1.0,0.29888916015625,0.3079833984375,0.41522216796875,0,0,0.18555215001106262,0.3969574272632599,1.718702793121338,0.5921320915222168,0.3883812427520752,0.8158519268035889,0.12255859375,0.10982562601566315,0,0 +301,0.49948668479919434,0.5009299516677856,0.0014432668685913086,0.0028835733730925234,1.0,1.0,0.3079833984375,0.30999755859375,0.412841796875,0,0,0.1876842975616455,0.3940606117248535,1.7184603214263916,0.5997190475463867,0.3886730670928955,0.8140152096748352,0.125,0.11037766933441162,0,0 +302,0.5009299516677856,0.5024100542068481,0.0014801025390625,0.002965721032565843,1.0,1.0,0.30999755859375,0.3121337890625,0.41265869140625,0,0,0.18827512860298157,0.39350318908691406,1.7182101011276245,0.6010093092918396,0.38898128271102905,0.8137134909629822,0.12451171875,0.11065465211868286,0,0 +303,0.5024100542068481,0.5033402442932129,0.0009301900863647461,0.0018693908392422103,1.0,1.0,0.3121337890625,0.31304931640625,0.41290283203125,0,0,0.1888793408870697,0.3936501145362854,1.7180454730987549,0.5999918580055237,0.3891804814338684,0.8139803409576416,0.1259765625,0.11164058744907379,0,0 +304,0.5033402442932129,0.5040556192398071,0.0007153749465942383,0.0014403722837905432,1.0,1.0,0.31304931640625,0.3138427734375,0.41259765625,0,0,0.18925929069519043,0.3932013511657715,1.7179203033447266,0.6011801958084106,0.3893357515335083,0.8136894702911377,0.12744140625,0.11173515021800995,0,0 +305,0.5040556192398071,0.5060049295425415,0.001949310302734375,0.003930501843264028,1.0,1.0,0.3138427734375,0.31719970703125,0.413818359375,0,0,0.18955084681510925,0.3948814272880554,1.717515230178833,0.5955835580825806,0.38977932929992676,0.8151108622550964,0.1298828125,0.11362588405609131,0,0 +306,0.5060049295425415,0.5080426931381226,0.0020377635955810547,0.004125068684782638,1.0,1.0,0.31719970703125,0.320068359375,0.41363525390625,0,0,0.19035187363624573,0.3943820595741272,1.717082142829895,0.5965785384178162,0.39026308059692383,0.8148705363273621,0.1298828125,0.11427218466997147,0,0 +307,0.5080426931381226,0.5085041522979736,0.0004614591598510742,0.0009380065168554028,1.0,1.0,0.320068359375,0.32061767578125,0.412353515625,0,0,0.1911870837211609,0.3931371569633484,1.7169899940490723,0.5999096035957336,0.39037376642227173,0.8140455484390259,0.130859375,0.11434255540370941,0,0 +308,0.5085041522979736,0.5086015462875366,9.739398956298828e-05,0.000198158316124848,1.0,1.0,0.32061767578125,0.3206787109375,0.41241455078125,0,0,0.19137504696846008,0.39300796389579773,1.716970682144165,0.6001977324485779,0.39039725065231323,0.8139780759811401,0.1298828125,0.1145409494638443,0,0 +309,0.5086015462875366,0.5092599987983704,0.0006584525108337402,0.0013399564159374152,1.0,1.0,0.3206787109375,0.3216552734375,0.412353515625,0,0,0.1914146989583969,0.3934060037136078,1.7168339490890503,0.5988674163818359,0.3905579745769501,0.8143073916435242,0.130859375,0.11491741985082626,0,0 +310,0.5092599987983704,0.512453556060791,0.0031935572624206543,0.006507635926561695,1.0,1.0,0.3216552734375,0.3270263671875,0.41357421875,0,0,0.19168323278427124,0.39432215690612793,1.7160829305648804,0.595989465713501,0.39138227701187134,0.8150286674499512,0.13134765625,0.11588529497385025,0,0 +311,0.512453556060791,0.5137332081794739,0.0012796521186828613,0.002624677370926365,1.0,1.0,0.3270263671875,0.3292236328125,0.41326904296875,0,0,0.19299158453941345,0.3940141797065735,1.7157752513885498,0.5958584547042847,0.39172881841659546,0.8150966763496399,0.1328125,0.11770553886890411,0,0 +312,0.5137332081794739,0.5137836933135986,5.048513412475586e-05,0.00010382188332406046,1.0,1.0,0.3292236328125,0.32928466796875,0.4124755859375,0,0,0.19351494312286377,0.3931097686290741,1.7157636880874634,0.5982803702354431,0.3917425870895386,0.814480721950531,0.1328125,0.11770553886890411,0,0 +313,0.5137836933135986,0.5140501260757446,0.0002664327621459961,0.0005479716712130744,1.0,1.0,0.32928466796875,0.32977294921875,0.41253662109375,0,0,0.19353549182415009,0.393103688955307,1.7157021760940552,0.5982863306999207,0.3918154239654541,0.8144875168800354,0.1328125,0.1177387610077858,0,0 +314,0.5140501260757446,0.516415536403656,0.002365410327911377,0.004867601484922026,1.0,1.0,0.32977294921875,0.3326416015625,0.4136962890625,0,0,0.1936439424753189,0.3945944309234619,1.715083122253418,0.5936363935470581,0.3924867510795593,0.8156612515449524,0.1328125,0.11910794675350189,0,0 +315,0.516415536403656,0.5164281129837036,1.2576580047607422e-05,2.60069977312284e-05,1.0,1.0,0.3326416015625,0.3326416015625,0.41259765625,0,0,0.19461405277252197,0.39295363426208496,1.7150801420211792,0.598004162311554,0.39249032735824585,0.8145911693572998,0.1328125,0.11911577731370926,0,0 +316,0.5164281129837036,0.5171530246734619,0.0007249116897583008,0.001499077405494152,1.0,1.0,0.3326416015625,0.333740234375,0.41259765625,0,0,0.19461917877197266,0.3931303024291992,1.7149007320404053,0.5974801778793335,0.3926984667778015,0.8147150278091431,0.13330078125,0.11921554803848267,0,0 +317,0.5171530246734619,0.518159031867981,0.001006007194519043,0.0020834907246518506,1.0,1.0,0.333740234375,0.3348388671875,0.41290283203125,0,0,0.19491425156593323,0.39339596033096313,1.7146425247192383,0.5964974164962769,0.39299237728118896,0.8149843215942383,0.1357421875,0.11984950304031372,0,0 +318,0.518159031867981,0.5211326479911804,0.002973616123199463,0.006171364246438931,1.0,1.0,0.3348388671875,0.33917236328125,0.413330078125,0,0,0.19532427191734314,0.3941734731197357,1.7138044834136963,0.5938876271247864,0.39390090107917786,0.8156605362892151,0.13720703125,0.12100335955619812,0,4 +319,0.5211326479911804,0.521475613117218,0.00034296512603759766,0.0007162006860540392,1.0,1.0,0.33917236328125,0.3394775390625,0.41168212890625,0,0,0.1965409368276596,0.39226654171943665,1.7137153148651123,0.5988951921463013,0.3940065801143646,0.8144059181213379,0.13720703125,0.12122783809900284,0,4 +320,0.521475613117218,0.5217857360839844,0.0003101229667663574,0.0006480818434073336,1.0,1.0,0.3394775390625,0.3399658203125,0.41143798828125,0,0,0.19667987525463104,0.3920401334762573,1.7136352062225342,0.5994963645935059,0.3941023647785187,0.8142561316490173,0.13720703125,0.1212339922785759,0,4 +321,0.5217857360839844,0.5231008529663086,0.0013151168823242188,0.0027500578329783584,1.0,1.0,0.3399658203125,0.3414306640625,0.41156005859375,0,0,0.19680535793304443,0.39258497953414917,1.7132765054702759,0.5978224277496338,0.3945152163505554,0.814690113067627,0.1376953125,0.12183761596679688,0,4 +322,0.5231008529663086,0.5283386707305908,0.0052378177642822266,0.01098307220061392,1.0,1.0,0.3414306640625,0.34765625,0.414794921875,0,0,0.19733896851539612,0.39571940898895264,1.7114973068237305,0.5876911878585815,0.39628666639328003,0.8172681331634521,0.14306640625,0.1255040168762207,0,4 +323,0.5283386707305908,0.5291573405265808,0.0008186697959899902,0.001735715321962239,1.0,1.0,0.34765625,0.34844970703125,0.4117431640625,0,0,0.19949831068515778,0.39231401681900024,1.71125066280365,0.5967141389846802,0.3965676724910736,0.8149623870849609,0.14306640625,0.12556880712509155,0,4 +324,0.5291573405265808,0.5307433009147644,0.0015859603881835938,0.0033683447246630103,1.0,1.0,0.34844970703125,0.34991455078125,0.412353515625,0,0,0.19982978701591492,0.3924931287765503,1.7107560634613037,0.5960248112678528,0.39712217450141907,0.8151748776435852,0.1435546875,0.12616069614887238,0,4 +325,0.5307433009147644,0.531144917011261,0.00040161609649658203,0.0008558558615774447,1.0,1.0,0.34991455078125,0.350341796875,0.4112548828125,0,0,0.20047250390052795,0.3915102779865265,1.7106350660324097,0.5985410213470459,0.3972630500793457,0.8145384788513184,0.1435546875,0.12621362507343292,0,4 +326,0.531144917011261,0.5315245389938354,0.0003796219825744629,0.00080967871811167,1.0,1.0,0.350341796875,0.35101318359375,0.4112548828125,0,0,0.2006344199180603,0.3915444612503052,1.710519552230835,0.5983425974845886,0.39739686250686646,0.8145959377288818,0.1435546875,0.12651705741882324,0,4 +327,0.5315245389938354,0.531775712966919,0.0002511739730834961,0.0005361518243539141,1.0,1.0,0.35101318359375,0.35137939453125,0.41107177734375,0,0,0.20078745484352112,0.39129242300987244,1.7104438543319702,0.5990415215492249,0.39748555421829224,0.814426064491272,0.14404296875,0.12650994956493378,0,4 +328,0.531775712966919,0.5320242643356323,0.0002485513687133789,0.0005308382661829292,1.0,1.0,0.35137939453125,0.351806640625,0.4117431640625,0,0,0.20088858902454376,0.39166033267974854,1.710367202758789,0.5978273153305054,0.3975737690925598,0.8147380352020264,0.14453125,0.12700524926185608,0,4 +329,0.5320242643356323,0.5331665277481079,0.001142263412475586,0.0024408603383121075,1.0,1.0,0.351806640625,0.35333251953125,0.41265869140625,0,0,0.20098884403705597,0.39280325174331665,1.7099894285202026,0.5942006707191467,0.39798709750175476,0.8156822919845581,0.146484375,0.12839117646217346,0,4 +330,0.5331665277481079,0.5340146422386169,0.0008481144905090332,0.0018167388178442591,1.0,1.0,0.35333251953125,0.354248046875,0.41204833984375,0,0,0.20145243406295776,0.3921906352043152,1.709712028503418,0.5957207083702087,0.3982965648174286,0.8153079748153687,0.1474609375,0.12845709919929504,0,4 +331,0.5340146422386169,0.5381155014038086,0.00410085916519165,0.008800403482402071,1.0,1.0,0.354248046875,0.3575439453125,0.41375732421875,0,0,0.20179548859596252,0.39417028427124023,1.708180546760559,0.5895423293113708,0.3998619019985199,0.8168908357620239,0.15087890625,0.13071030378341675,0,4 +332,0.5381155014038086,0.5448111295700073,0.0066956281661987305,0.014496325783932557,1.0,1.0,0.3575439453125,0.36431884765625,0.416015625,0,0,0.20347152650356293,0.39595305919647217,1.7052967548370361,0.58295077085495,0.40261274576187134,0.8186553716659546,0.15576171875,0.13515132665634155,0,4 +333,0.5448111295700073,0.5472956299781799,0.0024845004081726074,0.005458174770014988,1.0,1.0,0.36431884765625,0.3670654296875,0.4122314453125,0,0,0.20623311400413513,0.393012672662735,1.7042862176895142,0.5900651216506958,0.4036617875099182,0.8169830441474915,0.15771484375,0.1366575062274933,0,4 +334,0.5472956299781799,0.552313506603241,0.005017876625061035,0.011084223960151249,1.0,1.0,0.3670654296875,0.37078857421875,0.4136962890625,0,0,0.20724144577980042,0.3946497440338135,1.702004313468933,0.5843241214752197,0.4058835804462433,0.8185019493103027,0.16015625,0.14013385772705078,0,4 +335,0.552313506603241,0.552844762802124,0.0005312561988830566,0.001186670151364684,1.0,1.0,0.37078857421875,0.371337890625,0.4107666015625,0,0,0.20929676294326782,0.3913896083831787,1.7017844915390015,0.5928094387054443,0.4061185419559479,0.8163567185401917,0.16064453125,0.14021052420139313,0,4 +336,0.552844762802124,0.5528843402862549,3.9577484130859375e-05,8.850949477607364e-05,1.0,1.0,0.371337890625,0.371337890625,0.40997314453125,0,0,0.20951130986213684,0.3910006284713745,1.701768159866333,0.5937899947166443,0.40613603591918945,0.8160892724990845,0.16064453125,0.14021052420139313,0,4 +337,0.5528843402862549,0.5556241273880005,0.0027397871017456055,0.0061276921132659215,1.0,1.0,0.371337890625,0.37384033203125,0.41180419921875,0,0,0.20952731370925903,0.3923298418521881,1.7005597352981567,0.5899814367294312,0.40737393498420715,0.8171188831329346,0.16259765625,0.14135000109672546,0,4 +338,0.5556241273880005,0.557401180267334,0.001777052879333496,0.003998985968540881,1.0,1.0,0.37384033203125,0.37567138671875,0.41058349609375,0,0,0.21064403653144836,0.3912273347377777,1.699784755706787,0.592449426651001,0.4081884026527405,0.8164427876472473,0.16357421875,0.14219817519187927,0,4 +339,0.557401180267334,0.5587959885597229,0.001394808292388916,0.0031514053589916796,1.0,1.0,0.37567138671875,0.37646484375,0.41033935546875,0,0,0.21136392652988434,0.39110851287841797,1.6991682052612305,0.5922953486442566,0.40883541107177734,0.8164846301078796,0.1640625,0.14337044954299927,0,4 +340,0.5587959885597229,0.5594148635864258,0.0006188750267028809,0.001402695829266398,1.0,1.0,0.37646484375,0.37701416015625,0.410400390625,0,0,0.2119285762310028,0.3907058537006378,1.6988959312438965,0.5930882096290588,0.40912383794784546,0.8162707090377808,0.166015625,0.1439436674118042,0,4 +341,0.5594148635864258,0.5594430565834045,2.8192996978759766e-05,6.398989581957934e-05,1.0,1.0,0.37701416015625,0.37701416015625,0.409912109375,0,0,0.2121785283088684,0.3902274966239929,1.6988837718963623,0.5943651795387268,0.4091370105743408,0.8159469366073608,0.1650390625,0.14385369420051575,0,4 +342,0.5594430565834045,0.5612993240356445,0.0018562674522399902,0.004213456353324758,1.0,1.0,0.37701416015625,0.3779296875,0.4107666015625,0,0,0.21218988299369812,0.39131027460098267,1.6980326175689697,0.5911288857460022,0.4100147485733032,0.8168002963066101,0.166015625,0.14499539136886597,0,4 +343,0.5612993240356445,0.561749279499054,0.00044995546340942383,0.0010256548212977516,1.0,1.0,0.3779296875,0.3780517578125,0.41046142578125,0,0,0.21294212341308594,0.390743613243103,1.6978285312652588,0.5922618508338928,0.41022810339927673,0.8164969682693481,0.1650390625,0.14578503370285034,0,4 +344,0.561749279499054,0.5648680925369263,0.0031188130378723145,0.007116504073986073,1.0,1.0,0.3780517578125,0.380859375,0.411376953125,0,0,0.2131238877773285,0.3920767307281494,1.6963058710098267,0.5881822109222412,0.4117439091205597,0.8175621032714844,0.16748046875,0.14746034145355225,0,4 +345,0.5648680925369263,0.5665026903152466,0.0016345977783203125,0.003756556920521918,1.0,1.0,0.380859375,0.38201904296875,0.40985107421875,0,0,0.21439310908317566,0.39061999320983887,1.6955273151397705,0.5918385982513428,0.41254502534866333,0.8165944218635559,0.1669921875,0.14811868965625763,0,4 +346,0.5665026903152466,0.5665625333786011,5.984306335449219e-05,0.00013804713897304477,1.0,1.0,0.38201904296875,0.382080078125,0.40924072265625,0,0,0.21505281329154968,0.3894832134246826,1.6954998970031738,0.5947874784469604,0.41257423162460327,0.815855860710144,0.1669921875,0.1481272280216217,0,4 +347,0.5665625333786011,0.567345142364502,0.0007826089859008789,0.0018055868404760588,1.0,1.0,0.382080078125,0.38250732421875,0.40936279296875,0,0,0.21507680416107178,0.38990145921707153,1.695131778717041,0.593564510345459,0.41295939683914185,0.816162109375,0.16796875,0.14854499697685242,0,4 +348,0.567345142364502,0.5735148191452026,0.006169676780700684,0.014260042784261299,1.0,1.0,0.38250732421875,0.38690185546875,0.41339111328125,0,0,0.2153913527727127,0.3936280608177185,1.6917107105255127,0.5821903944015503,0.41614872217178345,0.8190430402755737,0.17138671875,0.15334969758987427,0,4 +349,0.5735148191452026,0.576417088508606,0.0029022693634033203,0.006805088414998028,1.0,1.0,0.38690185546875,0.38873291015625,0.40985107421875,0,0,0.2179238200187683,0.3909500241279602,1.6901695728302002,0.5887295007705688,0.41766971349716187,0.8173602819442749,0.171875,0.15486055612564087,0,4 +350,0.576417088508606,0.5782968997955322,0.0018798112869262695,0.004437882728336792,1.0,1.0,0.38873291015625,0.38970947265625,0.40911865234375,0,0,0.21909679472446442,0.38982802629470825,1.6891855001449585,0.5915765762329102,0.41866016387939453,0.8166027665138245,0.1728515625,0.15566116571426392,0,4 +351,0.5782968997955322,0.578392744064331,9.584426879882812e-05,0.0002272790234464885,1.0,1.0,0.38970947265625,0.38983154296875,0.4075927734375,0,0,0.21985149383544922,0.3885376751422882,1.6891372203826904,0.5948836803436279,0.41871050000190735,0.8157490491867065,0.17333984375,0.15568488836288452,0,4 +352,0.578392744064331,0.5797513127326965,0.0013585686683654785,0.003222355994207026,1.0,1.0,0.38983154296875,0.390380859375,0.40802001953125,0,0,0.21988967061042786,0.38909029960632324,1.6884311437606812,0.5932565927505493,0.4194301664829254,0.8161787390708923,0.17333984375,0.15625710785388947,0,4 +353,0.5797513127326965,0.5816065073013306,0.0018551945686340332,0.004414516035011473,1.0,1.0,0.390380859375,0.39166259765625,0.40899658203125,0,0,0.22043271362781525,0.38978296518325806,1.6874279975891113,0.5907866954803467,0.42042750120162964,0.8168299198150635,0.1748046875,0.1582944095134735,0,4 +354,0.5816065073013306,0.585981011390686,0.004374504089355469,0.010455478313344667,1.0,1.0,0.39166259765625,0.394287109375,0.40997314453125,0,0,0.22117727994918823,0.3911198377609253,1.6848771572113037,0.5863704085350037,0.42284637689590454,0.8180015087127686,0.177734375,0.161333829164505,0,4 +355,0.585981011390686,0.5865666270256042,0.0005856156349182129,0.001414465642953456,1.0,1.0,0.394287109375,0.39459228515625,0.4073486328125,0,0,0.2229466736316681,0.38831841945648193,1.6845593452453613,0.5934652090072632,0.4231683611869812,0.8161844611167908,0.177734375,0.16138972342014313,0,4 +356,0.5865666270256042,0.5873767137527466,0.000810086727142334,0.0019594130036340906,1.0,1.0,0.39459228515625,0.39495849609375,0.407470703125,0,0,0.22317959368228912,0.38843226432800293,1.6841151714324951,0.5930747985839844,0.42361605167388916,0.8162885904312134,0.17822265625,0.16189754009246826,0,4 +357,0.5873767137527466,0.5891208648681641,0.0017441511154174805,0.004226981785929417,1.0,1.0,0.39495849609375,0.39569091796875,0.40740966796875,0,0,0.22350196540355682,0.38868051767349243,1.683135747909546,0.5921738147735596,0.4245877265930176,0.8165181279182434,0.17919921875,0.16282311081886292,0,4 +358,0.5891208648681641,0.5905367136001587,0.001415848731994629,0.003445900779411287,1.0,1.0,0.39569091796875,0.39666748046875,0.40789794921875,0,0,0.22419710457324982,0.38924965262413025,1.6823160648345947,0.5898729562759399,0.4253843426704407,0.8171073198318481,0.18310546875,0.1653696894645691,0,4 +359,0.5905367136001587,0.5907591581344604,0.0002224445343017578,0.0005432588016805504,1.0,1.0,0.39666748046875,0.396728515625,0.40673828125,0,0,0.22476330399513245,0.3883960247039795,1.6821900606155396,0.5919786691665649,0.4255092740058899,0.8165669441223145,0.18310546875,0.16540127992630005,0,4 +360,0.5907591581344604,0.5908334851264954,7.432699203491211e-05,0.00018162163799705268,1.0,1.0,0.396728515625,0.396728515625,0.4066162109375,0,0,0.2248518019914627,0.3882438838481903,1.6821479797363281,0.5923446416854858,0.42555105686187744,0.8164834976196289,0.1826171875,0.16538986563682556,0,4 +361,0.5908334851264954,0.5911120772361755,0.0002785921096801758,0.0006808770990614997,1.0,1.0,0.396728515625,0.39703369140625,0.4066162109375,0,0,0.2248813509941101,0.3882744610309601,1.681990146636963,0.5921968817710876,0.4257075786590576,0.8165148496627808,0.18359375,0.16546621918678284,0,4 +362,0.5911120772361755,0.592221736907959,0.0011096596717834473,0.0027138480008967927,1.0,1.0,0.39703369140625,0.39764404296875,0.40673828125,0,0,0.22499209642410278,0.3884846866130829,1.681351661682129,0.5916554927825928,0.4263339042663574,0.816648006439209,0.18359375,0.16576306521892548,0,4 +363,0.592221736907959,0.5946629047393799,0.0024411678314208984,0.005986507993119521,1.0,1.0,0.39764404296875,0.39862060546875,0.40777587890625,0,0,0.22543375194072723,0.38905590772628784,1.6798934936523438,0.5896731615066528,0.42772746086120605,0.8171600103378296,0.1865234375,0.16740956902503967,0,4 +364,0.5946629047393799,0.5954475402832031,0.0007846355438232422,0.0019357605138970665,1.0,1.0,0.39862060546875,0.39886474609375,0.40728759765625,0,0,0.22640877962112427,0.388170450925827,1.6794326305389404,0.5916000008583069,0.4281749129295349,0.8167197704315186,0.18701171875,0.1683931052684784,0,4 +365,0.5954475402832031,0.5965652465820312,0.001117706298828125,0.0027628216612761783,1.0,1.0,0.39886474609375,0.39959716796875,0.4068603515625,0,0,0.2267204374074936,0.3879643380641937,1.678772211074829,0.5919978022575378,0.4288151264190674,0.8166357278823853,0.1875,0.16872000694274902,0,4 +366,0.5965652465820312,0.5966368913650513,7.164478302001953e-05,0.0001775870383327975,1.0,1.0,0.39959716796875,0.39959716796875,0.4063720703125,0,0,0.22716382145881653,0.3873147666454315,1.6787307262420654,0.5935896635055542,0.42885613441467285,0.8162524104118347,0.1875,0.16878727078437805,0,4 +367,0.5966368913650513,0.597609281539917,0.0009723901748657227,0.002410706765317386,1.0,1.0,0.39959716796875,0.400390625,0.4068603515625,0,0,0.22719213366508484,0.3878496289253235,1.6781522035598755,0.592003583908081,0.4294162690639496,0.8166307210922241,0.18994140625,0.16967527568340302,0,4 +368,0.597609281539917,0.6005775332450867,0.0029682517051696777,0.007376541179997737,1.0,1.0,0.400390625,0.40106201171875,0.4080810546875,0,0,0.2275775820016861,0.38915544748306274,1.676277756690979,0.5879311561584473,0.43115460872650146,0.8176047205924988,0.1923828125,0.17233185470104218,0,4 +369,0.6005775332450867,0.6017192602157593,0.0011417269706726074,0.002858444543564381,1.0,1.0,0.40106201171875,0.4014892578125,0.4072265625,0,0,0.22876371443271637,0.387790322303772,1.6755743026733398,0.5910723209381104,0.43182215094566345,0.8168383836746216,0.1943359375,0.1730516254901886,0,4 +370,0.6017192602157593,0.6017917394638062,7.2479248046875e-05,0.0001819802988367927,1.0,1.0,0.4014892578125,0.40155029296875,0.406005859375,0,0,0.2292160540819168,0.38703593611717224,1.6755304336547852,0.5929269790649414,0.43186435103416443,0.816423237323761,0.1943359375,0.1730516254901886,0,4 +371,0.6017917394638062,0.6050887107849121,0.003296971321105957,0.008279515137798829,1.0,1.0,0.40155029296875,0.4031982421875,0.40802001953125,0,0,0.22924461960792542,0.38886481523513794,1.6733860969543457,0.587795615196228,0.4338257908821106,0.8176075220108032,0.19384765625,0.17547227442264557,0,4 +372,0.6050887107849121,0.6061186790466309,0.00102996826171875,0.0026081003249258322,1.0,1.0,0.4031982421875,0.4034423828125,0.4061279296875,0,0,0.23055964708328247,0.38721799850463867,1.6727368831634521,0.5916576385498047,0.4344358742237091,0.8167224526405334,0.1953125,0.17628736793994904,0,4 +373,0.6061186790466309,0.6079394817352295,0.0018208026885986328,0.00462271905707911,1.0,1.0,0.4034423828125,0.404541015625,0.40667724609375,0,0,0.23096616566181183,0.38741081953048706,1.671565055847168,0.5909786820411682,0.4355212152004242,0.8168696761131287,0.19677734375,0.17742659151554108,0,4 +374,0.6079394817352295,0.6086198091506958,0.0006803274154663086,0.0017352612256836906,1.0,1.0,0.404541015625,0.40484619140625,0.40533447265625,0,0,0.23168569803237915,0.3862375020980835,1.671137809753418,0.5940014123916626,0.43592485785484314,0.8161743879318237,0.19677734375,0.1772817224264145,0,4 +375,0.6086198091506958,0.6104180812835693,0.0017982721328735352,0.00459469379114779,1.0,1.0,0.40484619140625,0.4056396484375,0.40679931640625,0,0,0.2319525182247162,0.3876708149909973,1.669947862625122,0.5896719694137573,0.43700695037841797,0.8171824216842651,0.201171875,0.18022629618644714,0,4 +376,0.6104180812835693,0.610863447189331,0.00044536590576171875,0.0011431893636878261,1.0,1.0,0.4056396484375,0.40582275390625,0.40557861328125,0,0,0.2326643019914627,0.3867532014846802,1.6696584224700928,0.5919152498245239,0.4372742772102356,0.8166611194610596,0.20166015625,0.18060511350631714,0,4 +377,0.610863447189331,0.6135205030441284,0.0026570558547973633,0.006828080877023472,1.0,1.0,0.40582275390625,0.40692138671875,0.40643310546875,0,0,0.23283952474594116,0.38774222135543823,1.6678526401519775,0.5891087055206299,0.4388924241065979,0.8173186779022217,0.2021484375,0.18232586979866028,0,4 +378,0.6135205030441284,0.6140123605728149,0.0004918575286865234,0.00127266137676298,1.0,1.0,0.40692138671875,0.40679931640625,0.4049072265625,0,0,0.23389165103435516,0.3861066699028015,1.6675300598144531,0.5934209823608398,0.43919044733047485,0.8163324594497681,0.2021484375,0.18231913447380066,0,4 +379,0.6140123605728149,0.6147383451461792,0.0007259845733642578,0.0018808492791158712,1.0,1.0,0.40679931640625,0.40704345703125,0.4056396484375,0,0,0.23408429324626923,0.3866690397262573,1.6670448780059814,0.5916714668273926,0.43963295221328735,0.8167422413825989,0.203125,0.18369948863983154,0,4 +380,0.6147383451461792,0.6163470149040222,0.0016086697578430176,0.004175525224417656,1.0,1.0,0.40704345703125,0.40753173828125,0.4056396484375,0,0,0.23436976969242096,0.38646161556243896,1.6659600734710693,0.5921590328216553,0.44061681628227234,0.8166424036026001,0.203125,0.1838953047990799,0,4 +381,0.6163470149040222,0.6181051731109619,0.0017581582069396973,0.0045826782932494635,1.0,1.0,0.40753173828125,0.40838623046875,0.4053955078125,0,0,0.23500140011310577,0.38653564453125,1.664754867553711,0.5917363166809082,0.44169920682907104,0.8167667388916016,0.2041015625,0.18553677201271057,0,4 +382,0.6181051731109619,0.6189332008361816,0.0008280277252197266,0.002168208802315919,1.0,1.0,0.40838623046875,0.40869140625,0.40362548828125,0,0,0.23569202423095703,0.38546431064605713,1.6641976833343506,0.5945178866386414,0.44220781326293945,0.8161693811416626,0.20458984375,0.1856290102005005,0,4 +383,0.6189332008361816,0.6203050017356873,0.0013718008995056152,0.00359989614029819,1.0,1.0,0.40869140625,0.4093017578125,0.4046630859375,0,0,0.23601499199867249,0.3865978419780731,1.663238525390625,0.5911005735397339,0.44306039810180664,0.816939115524292,0.20654296875,0.18847088515758514,0,4 +384,0.6203050017356873,0.6235671043395996,0.0032621026039123535,0.008591376285766986,1.0,1.0,0.4093017578125,0.40997314453125,0.40478515625,0,0,0.23655405640602112,0.3868808150291443,1.6608853340148926,0.5902979969978333,0.44510748982429504,0.8171683549880981,0.20703125,0.18984372913837433,0,4 +385,0.6235671043395996,0.6254756450653076,0.0019085407257080078,0.0050700689225359336,1.0,1.0,0.40997314453125,0.410888671875,0.4034423828125,0,0,0.23783835768699646,0.38566112518310547,1.6595265865325928,0.5935916900634766,0.4463061988353729,0.8164525032043457,0.20654296875,0.19111093878746033,0,4 +386,0.6254756450653076,0.6262716054916382,0.0007959604263305664,0.002125256784620487,1.0,1.0,0.410888671875,0.4111328125,0.40283203125,0,0,0.23858365416526794,0.3849446773529053,1.658965826034546,0.595526933670044,0.446805864572525,0.8160138130187988,0.2080078125,0.19191773235797882,0,4 +387,0.6262716054916382,0.6290576457977295,0.0027860403060913086,0.007454719381855728,1.0,1.0,0.4111328125,0.41217041015625,0.40350341796875,0,0,0.23889297246932983,0.3856276571750641,1.6569278240203857,0.5935009121894836,0.4485742747783661,0.8164832592010498,0.20947265625,0.19369564950466156,0,4 +388,0.6290576457977295,0.6290725469589233,1.4901161193847656e-05,4.0171096735214625e-05,1.0,1.0,0.41217041015625,0.4122314453125,0.40167236328125,0,0,0.23998069763183594,0.3838249146938324,1.6569173336029053,0.5985783934593201,0.4485836625099182,0.8152734041213989,0.20947265625,0.19369564950466156,0,4 +389,0.6290725469589233,0.6293692588806152,0.00029671192169189453,0.0007999190118155976,1.0,1.0,0.4122314453125,0.41229248046875,0.40167236328125,0,0,0.23998644948005676,0.3839131295681,1.6567083597183228,0.5982948541641235,0.4487709403038025,0.8153454065322876,0.20947265625,0.1937248408794403,0,4 +390,0.6293692588806152,0.6294018030166626,3.254413604736328e-05,8.780743860876993e-05,1.0,1.0,0.41229248046875,0.41229248046875,0.4014892578125,0,0,0.2401009202003479,0.3837185502052307,1.6566855907440186,0.5988190174102783,0.4487914741039276,0.8152181506156921,0.20947265625,0.1937248408794403,0,4 +391,0.6294018030166626,0.6308640241622925,0.0014622211456298828,0.003945570047378364,1.0,1.0,0.41229248046875,0.412353515625,0.40234375,0,0,0.24011346697807312,0.38521385192871094,1.6556100845336914,0.5944159626960754,0.44972580671310425,0.8162561655044556,0.212890625,0.19640503823757172,0,4 +392,0.6308640241622925,0.6322100162506104,0.001345992088317871,0.003646331369526668,1.0,1.0,0.412353515625,0.4127197265625,0.40301513671875,0,0,0.24068275094032288,0.38535964488983154,1.654606580734253,0.5938892960548401,0.45058923959732056,0.8163585066795349,0.2138671875,0.19814643263816833,0,4 +393,0.6322100162506104,0.6329514980316162,0.0007414817810058594,0.002016046694493729,1.0,1.0,0.4127197265625,0.4132080078125,0.4019775390625,0,0,0.2412073314189911,0.38453173637390137,1.6540608406066895,0.5962202548980713,0.45106396079063416,0.815808117389679,0.2138671875,0.19815224409103394,0,4 +394,0.6329514980316162,0.6336326003074646,0.0006811022758483887,0.0018556192770051308,1.0,1.0,0.4132080078125,0.41339111328125,0.4019775390625,0,0,0.24149465560913086,0.3842998743057251,1.6535598039627075,0.5969340801239014,0.45150086283683777,0.8156188130378723,0.21435546875,0.1985577642917633,0,4 +395,0.6336326003074646,0.6340808868408203,0.0004482865333557129,0.0012235983161491062,1.0,1.0,0.41339111328125,0.4134521484375,0.40191650390625,0,0,0.24175813794136047,0.3839128315448761,1.6532316207885742,0.5980396270751953,0.45178818702697754,0.8153384923934937,0.2138671875,0.19849415123462677,0,4 +396,0.6340808868408203,0.634651243686676,0.0005703568458557129,0.001558696513367423,1.0,1.0,0.4134521484375,0.41339111328125,0.402099609375,0,0,0.24193108081817627,0.3840656578540802,1.652811050415039,0.5976358652114868,0.45215433835983276,0.8154300451278687,0.21484375,0.1991882622241974,0,4 +397,0.634651243686676,0.6354532837867737,0.0008020401000976562,0.0021952725614585774,1.0,1.0,0.41339111328125,0.4134521484375,0.40228271484375,0,0,0.24215134978294373,0.3840137720108032,1.6522167921066284,0.5977672934532166,0.45267027616500854,0.815387487411499,0.21484375,0.19963288307189941,0,4 +398,0.6354532837867737,0.6354759931564331,2.2709369659423828e-05,6.229481339269816e-05,1.0,1.0,0.4134521484375,0.4134521484375,0.40216064453125,0,0,0.24246099591255188,0.38350731134414673,1.6522002220153809,0.5992332696914673,0.4526848793029785,0.8150166273117065,0.21484375,0.19963288307189941,0,4 +399,0.6354759931564331,0.6368452310562134,0.0013692378997802734,0.0037562351836209046,1.0,1.0,0.4134521484375,0.41351318359375,0.402099609375,0,0,0.24246974289417267,0.38384342193603516,1.6511785984039307,0.5983802080154419,0.45356765389442444,0.8152173757553101,0.21484375,0.20001080632209778,0,4 +400,0.6368452310562134,0.6378171443939209,0.0009719133377075195,0.002676306139485019,1.0,1.0,0.41351318359375,0.41375732421875,0.40283203125,0,0,0.24299770593643188,0.38409358263015747,1.6504442691802979,0.5974935293197632,0.4541966915130615,0.815399169921875,0.21728515625,0.2019105851650238,0,4 +401,0.6378171443939209,0.6394551992416382,0.0016380548477172852,0.004522728843628321,1.0,1.0,0.41375732421875,0.413818359375,0.40289306640625,0,0,0.24337317049503326,0.38382869958877563,1.6491971015930176,0.5981807708740234,0.4552587568759918,0.8152110576629639,0.21630859375,0.2024204134941101,0,4 +402,0.6394551992416382,0.6423894166946411,0.0029342174530029297,0.008138288076353237,1.0,1.0,0.413818359375,0.4144287109375,0.4033203125,0,0,0.2440047413110733,0.38514044880867004,1.6468465328216553,0.5941681861877441,0.45719385147094727,0.8161158561706543,0.22509765625,0.20667003095149994,0,4 +403,0.6423894166946411,0.6424488425254822,5.942583084106445e-05,0.00016617469844375812,1.0,1.0,0.4144287109375,0.4144287109375,0.40179443359375,0,0,0.24514667689800262,0.3833671510219574,1.6468007564544678,0.5992186069488525,0.4572327733039856,0.8148621320724487,0.22509765625,0.20669783651828766,0,4 +404,0.6424488425254822,0.6425021886825562,5.334615707397461e-05,0.00014919866978133477,1.0,1.0,0.4144287109375,0.41436767578125,0.4017333984375,0,0,0.2451694905757904,0.38332927227020264,1.6467597484588623,0.5993201732635498,0.45726773142814636,0.8148372173309326,0.22509765625,0.20669783651828766,0,4 +405,0.6425021886825562,0.6451691389083862,0.002666950225830078,0.007460046303505708,1.0,1.0,0.41436767578125,0.41485595703125,0.40264892578125,0,0,0.24518999457359314,0.3841902017593384,1.644624948501587,0.5968639850616455,0.45903757214546204,0.8154067993164062,0.22705078125,0.20811763405799866,0,4 +406,0.6451691389083862,0.6454877257347107,0.0003185868263244629,0.0008978554608929773,1.0,1.0,0.41485595703125,0.4149169921875,0.40118408203125,0,0,0.24622085690498352,0.38284629583358765,1.6443768739700317,0.6005387306213379,0.45924800634384155,0.8144983053207397,0.2275390625,0.20863142609596252,0,4 +407,0.6454877257347107,0.6455193161964417,3.159046173095703e-05,8.910964168004293e-05,1.0,1.0,0.4149169921875,0.4149169921875,0.40087890625,0,0,0.24634279310703278,0.38265466690063477,1.6443524360656738,0.601038932800293,0.45926880836486816,0.814368724822998,0.2275390625,0.20863142609596252,0,4 +408,0.6455193161964417,0.6464371681213379,0.0009178519248962402,0.002589286149664741,1.0,1.0,0.4149169921875,0.41522216796875,0.40106201171875,0,0,0.2463548630475998,0.3827804923057556,1.643633484840393,0.6007101535797119,0.45987606048583984,0.8144468665122986,0.2275390625,0.2087801992893219,0,4 +409,0.6464371681213379,0.6483945846557617,0.001957416534423828,0.005536262180113962,1.0,1.0,0.41522216796875,0.4158935546875,0.40057373046875,0,0,0.2467060089111328,0.38288742303848267,1.6420738697052002,0.6004329919815063,0.46117812395095825,0.8145018815994263,0.22802734375,0.20982524752616882,0,4 +410,0.6483945846557617,0.6486186981201172,0.00022411346435546875,0.0006374004909339952,1.0,1.0,0.4158935546875,0.41595458984375,0.39990234375,0,0,0.2474554479122162,0.38167819380760193,1.6418997049331665,0.6037453413009644,0.4613261818885803,0.8137079477310181,0.22802734375,0.20986692607402802,0,4 +411,0.6486186981201172,0.6487811803817749,0.00016248226165771484,0.00046241009634957254,1.0,1.0,0.41595458984375,0.4161376953125,0.39971923828125,0,0,0.24754048883914948,0.38150614500045776,1.6417738199234009,0.6041936874389648,0.4614335000514984,0.8135837912559509,0.22802734375,0.20979861915111542,0,4 +412,0.6487811803817749,0.6490411162376404,0.0002599358558654785,0.0007400966045840847,1.0,1.0,0.4161376953125,0.41632080078125,0.39996337890625,0,0,0.24760206043720245,0.38173753023147583,1.641571044921875,0.6035817265510559,0.46160539984703064,0.8137372732162476,0.22802734375,0.21027158200740814,0,4 +413,0.6490411162376404,0.649851381778717,0.0008102655410766602,0.0023087192789948154,1.0,1.0,0.41632080078125,0.41650390625,0.4002685546875,0,0,0.2477007508277893,0.38282081484794617,1.640918493270874,0.6002428531646729,0.4621460437774658,0.8145394921302795,0.23193359375,0.2129802256822586,0,4 +414,0.649851381778717,0.6505936980247498,0.0007423162460327148,0.0021200033568705796,1.0,1.0,0.41650390625,0.416748046875,0.400146484375,0,0,0.2480108141899109,0.38269853591918945,1.6403191089630127,0.6005157232284546,0.46264171600341797,0.8144662380218506,0.23193359375,0.21357209980487823,0,4 +415,0.6505936980247498,0.6510933637619019,0.0004996657371520996,0.0014300421438520384,1.0,1.0,0.416748046875,0.416748046875,0.400146484375,0,0,0.2482946217060089,0.38223564624786377,1.6399179697036743,0.6017727851867676,0.4629753828048706,0.8141836524009705,0.23193359375,0.21353405714035034,0,4 +416,0.6510933637619019,0.6511290073394775,3.5643577575683594e-05,0.0001021579238503219,1.0,1.0,0.416748046875,0.416748046875,0.40008544921875,0,0,0.2484849989414215,0.3819896876811981,1.6398894786834717,0.6024318933486938,0.4629991054534912,0.8140329718589783,0.23193359375,0.2135920226573944,0,4 +417,0.6511290073394775,0.6512855291366577,0.00015652179718017578,0.0004486523685633078,1.0,1.0,0.416748046875,0.4169921875,0.40020751953125,0,0,0.2484985589981079,0.3819839656352997,1.6397643089294434,0.6024434566497803,0.4631035327911377,0.8140268325805664,0.23193359375,0.21363705396652222,4,4 +418,0.6512855291366577,0.6528449058532715,0.0015593767166137695,0.0044717866532842385,1.0,1.0,0.4169921875,0.4168701171875,0.40057373046875,0,0,0.24855807423591614,0.38296517729759216,1.6384766101837158,0.5995616912841797,0.46415334939956665,0.8147042989730835,0.23583984375,0.21562550961971283,4,4 +419,0.6528449058532715,0.6568939685821533,0.004049062728881836,0.011663555561049782,1.0,1.0,0.4168701171875,0.41766357421875,0.4014892578125,0,0,0.2491554617881775,0.38352397084236145,1.6349995136260986,0.5978918075561523,0.46691328287124634,0.8150925636291504,0.23779296875,0.21803885698318481,4,4 +420,0.6568939685821533,0.6578422784805298,0.0009483098983764648,0.00276389748806712,1.0,1.0,0.41766357421875,0.41748046875,0.3988037109375,0,0,0.2507130205631256,0.38145339488983154,1.634213924407959,0.6032549738883972,0.4675544500350952,0.8138792514801025,0.23828125,0.21894583106040955,4,4 +421,0.6578422784805298,0.6582997441291809,0.00045746564865112305,0.001337002264977648,1.0,1.0,0.41748046875,0.41754150390625,0.3980712890625,0,0,0.25107210874557495,0.3809329867362976,1.6338376998901367,0.6045652031898499,0.4678632616996765,0.8135830760002136,0.2392578125,0.21899276971817017,4,4 +422,0.6582997441291809,0.6586726903915405,0.00037294626235961914,0.0010914427365855198,1.0,1.0,0.41754150390625,0.41754150390625,0.39813232421875,0,0,0.2512446641921997,0.3810725808143616,1.6335291862487793,0.6041134595870972,0.46811556816101074,0.8137037754058838,0.23974609375,0.2198908030986786,4,4 +423,0.6586726903915405,0.6591455340385437,0.00047284364700317383,0.0013853085694947125,1.0,1.0,0.41754150390625,0.41748046875,0.39813232421875,0,0,0.2513854503631592,0.3808828592300415,1.6331381797790527,0.6045722961425781,0.46843552589416504,0.8135894536972046,0.23974609375,0.2199133038520813,4,4 +424,0.6591455340385437,0.6608762741088867,0.0017307400703430176,0.005077651147861824,1.0,1.0,0.41748046875,0.41766357421875,0.39971923828125,0,0,0.25156369805336,0.3820275664329529,1.6316523551940918,0.6011568307876587,0.4696193039417267,0.8143863677978516,0.2421875,0.22281789779663086,4,4 +425,0.6608762741088867,0.6617047786712646,0.0008285045623779297,0.0024430746041164578,1.0,1.0,0.41766357421875,0.41790771484375,0.39825439453125,0,0,0.252221941947937,0.38101625442504883,1.6309514045715332,0.6037989258766174,0.47018367052078247,0.813777506351471,0.2431640625,0.22284600138664246,4,4 +426,0.6617047786712646,0.6624699234962463,0.0007651448249816895,0.0022617665776548668,1.0,1.0,0.41790771484375,0.4180908203125,0.3988037109375,0,0,0.25253456830978394,0.3811873197555542,1.6302982568740845,0.6031873822212219,0.47070616483688354,0.8139051198959351,0.24560546875,0.22417333722114563,4,4 +427,0.6624699234962463,0.662935733795166,0.00046581029891967773,0.0013800556790218293,1.0,1.0,0.4180908203125,0.41827392578125,0.3983154296875,0,0,0.2528236508369446,0.38069936633110046,1.6299033164978027,0.6044603586196899,0.47102367877960205,0.813619077205658,0.24560546875,0.22406482696533203,4,4 +428,0.662935733795166,0.6645171046257019,0.0015813708305358887,0.004691600353669319,1.0,1.0,0.41827392578125,0.4183349609375,0.39874267578125,0,0,0.2529990077018738,0.3810000419616699,1.6285383701324463,0.6036028861999512,0.4721065163612366,0.8138126134872437,0.24658203125,0.2250860035419464,4,4 +429,0.6645171046257019,0.6673382520675659,0.0028211474418640137,0.008409213944324824,1.0,1.0,0.4183349609375,0.41839599609375,0.3995361328125,0,0,0.25359562039375305,0.38168421387672424,1.6260199546813965,0.6013314127922058,0.47405505180358887,0.8143576383590698,0.25,0.22828641533851624,4,4 +430,0.6673382520675659,0.6676801443099976,0.0003418922424316406,0.0010277473877191355,1.0,1.0,0.41839599609375,0.4183349609375,0.3974609375,0,0,0.25466567277908325,0.37994858622550964,1.6257244348526,0.6057119965553284,0.474289208650589,0.8133050203323364,0.25048828125,0.22829443216323853,4,4 +431,0.6676801443099976,0.668522834777832,0.0008426904678344727,0.0025357812763994415,1.0,1.0,0.4183349609375,0.41845703125,0.397705078125,0,0,0.25479358434677124,0.37994518876075745,1.6249914169311523,0.6056368350982666,0.47486698627471924,0.813310980796814,0.25048828125,0.2286079078912735,4,4 +432,0.668522834777832,0.6692107915878296,0.0006879568099975586,0.0020754274567796097,1.0,1.0,0.41845703125,0.41839599609375,0.3974609375,0,0,0.2551088333129883,0.37971943616867065,1.6243927478790283,0.6061079502105713,0.4753386676311493,0.8131923079490662,0.25146484375,0.22915923595428467,4,4 +433,0.6692107915878296,0.6706384420394897,0.0014276504516601562,0.004315891859087716,1.0,1.0,0.41839599609375,0.4188232421875,0.39862060546875,0,0,0.2553656995296478,0.38083866238594055,1.623106598854065,0.6026186943054199,0.4763283431529999,0.8140274286270142,0.25537109375,0.2326505184173584,4,4 +434,0.6706384420394897,0.6715089082717896,0.0008704662322998047,0.0026428895882383814,1.0,1.0,0.4188232421875,0.4190673828125,0.3978271484375,0,0,0.25590360164642334,0.38021495938301086,1.6223278045654297,0.6041978597640991,0.47693097591400146,0.8136183023452759,0.25634765625,0.23314373195171356,4,4 +435,0.6715089082717896,0.6715838313102722,7.492303848266602e-05,0.00022808240579216813,1.0,1.0,0.4190673828125,0.41900634765625,0.3973388671875,0,0,0.2562299072742462,0.3796790838241577,1.6222612857818604,0.6055347919464111,0.4769826829433441,0.813267707824707,0.25634765625,0.23314373195171356,4,4 +436,0.6715838313102722,0.6735743284225464,0.00199049711227417,0.0060608986464204765,1.0,1.0,0.41900634765625,0.41937255859375,0.39788818359375,0,0,0.2562578320503235,0.3804216980934143,1.6204452514648438,0.6034939885139465,0.4783672094345093,0.8137580156326294,0.25927734375,0.2346506267786026,4,4 +437,0.6735743284225464,0.6736117601394653,3.743171691894531e-05,0.0001146714862775846,1.0,1.0,0.41937255859375,0.41937255859375,0.39727783203125,0,0,0.2570052742958069,0.37941601872444153,1.6204118728637695,0.6058632731437683,0.478393018245697,0.8131152391433716,0.25927734375,0.2351636290550232,4,4 +438,0.6736117601394653,0.6739685535430908,0.0003567934036254883,0.001093156431671514,1.0,1.0,0.41937255859375,0.41949462890625,0.3970947265625,0,0,0.25701919198036194,0.3794684410095215,1.620091438293457,0.605713427066803,0.4786396920681,0.8131512403488159,0.25927734375,0.23526369035243988,4,4 +439,0.6739685535430908,0.6747071743011475,0.0007386207580566406,0.0022654893142470614,1.0,1.0,0.41949462890625,0.41961669921875,0.39727783203125,0,0,0.25715214014053345,0.3796853721141815,1.6194217205047607,0.6049672961235046,0.47915133833885193,0.8133200407028198,0.25927734375,0.2361764758825302,4,4 +440,0.6747071743011475,0.6753418445587158,0.0006346702575683594,0.0019510736402035508,1.0,1.0,0.41961669921875,0.41949462890625,0.39715576171875,0,0,0.25742781162261963,0.3797111511230469,1.6188433170318604,0.6048015356063843,0.4795912504196167,0.8133470416069031,0.26025390625,0.237211674451828,4,4 +441,0.6753418445587158,0.6759152412414551,0.0005733966827392578,0.0017661551793143205,1.0,1.0,0.41949462890625,0.4195556640625,0.39691162109375,0,0,0.2576647400856018,0.3794359862804413,1.618321418762207,0.6053831577301025,0.4799882769584656,0.8131623268127441,0.26025390625,0.23738040030002594,4,4 +442,0.6759152412414551,0.6769508719444275,0.0010356307029724121,0.0031955550978069757,1.0,1.0,0.4195556640625,0.41961669921875,0.39691162109375,0,0,0.25787830352783203,0.3791807293891907,1.6173768043518066,0.6061043739318848,0.48070526123046875,0.8129414916038513,0.26123046875,0.23733238875865936,4,4 +443,0.6769508719444275,0.6777790784835815,0.0008282065391540527,0.0025637169929509313,1.0,1.0,0.41961669921875,0.41998291015625,0.396728515625,0,0,0.2582632303237915,0.3792041838169098,1.6166154146194458,0.6056272983551025,0.481280118227005,0.8130102157592773,0.26416015625,0.23893682658672333,4,4 +444,0.6777790784835815,0.6779030561447144,0.0001239776611328125,0.00038475981183765356,1.0,1.0,0.41998291015625,0.41998291015625,0.39617919921875,0,0,0.2585710883140564,0.37868732213974,1.6165025234222412,0.6069903373718262,0.4813659191131592,0.8126457333564758,0.26416015625,0.2388627529144287,4,4 +445,0.6779030561447144,0.6779308319091797,2.777576446533203e-05,8.623417575117184e-05,1.0,1.0,0.41998291015625,0.41998291015625,0.3961181640625,0,0,0.25861698389053345,0.3786206841468811,1.6164772510528564,0.607135534286499,0.48138517141342163,0.8126024603843689,0.26416015625,0.2388627529144287,4,4 +446,0.6779308319091797,0.6788630485534668,0.0009322166442871094,0.002894460993621822,1.0,1.0,0.41998291015625,0.420166015625,0.39654541015625,0,0,0.2586272358894348,0.3789534866809845,1.6156185865402222,0.6062930226325989,0.48203253746032715,0.8128150701522827,0.265625,0.23943695425987244,4,4 +447,0.6788630485534668,0.6824889183044434,0.0036258697509765625,0.011290727319432257,1.0,1.0,0.420166015625,0.42034912109375,0.39794921875,0,0,0.25897306203842163,0.380642294883728,1.6120775938034058,0.6011563539505005,0.4845995306968689,0.814057469367981,0.26953125,0.24473115801811218,4,0 +448,0.6824889183044434,0.6860758662223816,0.0035869479179382324,0.011297079455568588,1.0,1.0,0.42034912109375,0.4205322265625,0.3966064453125,0,0,0.2603369653224945,0.37962716817855835,1.6085543632507324,0.6031736135482788,0.487143337726593,0.813416600227356,0.27197265625,0.24692818522453308,4,0 +449,0.6860758662223816,0.686131477355957,5.561113357543945e-05,0.0001771483221319772,1.0,1.0,0.4205322265625,0.4205322265625,0.39483642578125,0,0,0.261674702167511,0.37747180461883545,1.60850191116333,0.6081123352050781,0.48718222975730896,0.8120849132537842,0.27197265625,0.24694007635116577,4,4 +450,0.686131477355957,0.6876343488693237,0.0015028715133666992,0.004788219923127174,1.0,1.0,0.4205322265625,0.4207763671875,0.3956298828125,0,0,0.2616950571537018,0.37840741872787476,1.6070417165756226,0.6055220365524292,0.4882432818412781,0.812737226486206,0.2744140625,0.2492530792951584,4,4 +451,0.6876343488693237,0.6882838010787964,0.0006494522094726562,0.0020791409270571872,1.0,1.0,0.4207763671875,0.42071533203125,0.39501953125,0,0,0.2622497081756592,0.3777059316635132,1.6064159870147705,0.6069682836532593,0.48870012164115906,0.8123286962509155,0.27685546875,0.24959243834018707,4,4 +452,0.6882838010787964,0.6895504593849182,0.0012666583061218262,0.004063498498010414,1.0,1.0,0.42071533203125,0.42047119140625,0.3946533203125,0,0,0.26248788833618164,0.37763211131095886,1.6051864624023438,0.6071081757545471,0.4895932972431183,0.8122678995132446,0.27880859375,0.24997970461845398,0,4 +453,0.6895504593849182,0.6899707317352295,0.0004202723503112793,0.0013537541382042627,1.0,1.0,0.42047119140625,0.42041015625,0.394287109375,0,0,0.26295217871665955,0.37742871046066284,1.6047781705856323,0.607126772403717,0.48988986015319824,0.8122239112854004,0.27978515625,0.2515958547592163,0,4 +454,0.6899707317352295,0.6904377341270447,0.00046700239181518555,0.0015063171113778755,1.0,1.0,0.42041015625,0.42034912109375,0.39508056640625,0,0,0.26310592889785767,0.3780946135520935,1.6043169498443604,0.6051006317138672,0.4902215600013733,0.8127152323722839,0.283203125,0.2539471685886383,0,4 +455,0.6904377341270447,0.6907752752304077,0.0003375411033630371,0.001090381937899254,1.0,1.0,0.42034912109375,0.420166015625,0.3948974609375,0,0,0.2632777690887451,0.37789738178253174,1.603983998298645,0.6055053472518921,0.49046120047569275,0.8126052618026733,0.283203125,0.2539898455142975,0,4 +456,0.6907752752304077,0.6908235549926758,4.8279762268066406e-05,0.00015613163631737515,1.0,1.0,0.420166015625,0.42010498046875,0.39471435546875,0,0,0.2634017765522003,0.377694308757782,1.6039366722106934,0.6059762239456177,0.4904954731464386,0.8124637007713318,0.283203125,0.25399234890937805,0,4 +457,0.6908235549926758,0.6936768293380737,0.0028532743453979492,0.009228627832014683,1.0,1.0,0.42010498046875,0.42047119140625,0.3951416015625,0,0,0.2634194791316986,0.3783673942089081,1.6010384559631348,0.6041005253791809,0.49253711104393005,0.8129329681396484,0.28515625,0.2555064260959625,0,4 +458,0.6936768293380737,0.6938843727111816,0.00020754337310791016,0.0006775307681081869,1.0,1.0,0.42047119140625,0.42047119140625,0.393798828125,0,0,0.2644718885421753,0.3767293691635132,1.6008334159851074,0.6077082753181458,0.4926837682723999,0.8119958639144897,0.28564453125,0.25559449195861816,0,4 +459,0.6938843727111816,0.6978168487548828,0.003932476043701172,0.012846374680476221,1.0,1.0,0.42047119140625,0.4207763671875,0.3953857421875,0,0,0.26454731822013855,0.37824732065200806,1.5967323780059814,0.6035888195037842,0.495510458946228,0.812997579574585,0.287109375,0.25913897156715393,0,4 +460,0.6978168487548828,0.6978181004524231,1.2516975402832031e-06,4.142181769981885e-06,1.0,1.0,0.4207763671875,0.4207763671875,0.3935546875,0,0,0.26599594950675964,0.3759048581123352,1.596731185913086,0.6087841987609863,0.49551132321357727,0.8116511106491089,0.287109375,0.25913897156715393,0,4 +461,0.6978181004524231,0.6984392404556274,0.0006211400032043457,0.0020555169059904284,1.0,1.0,0.4207763671875,0.4205322265625,0.39361572265625,0,0,0.26599642634391785,0.3759586811065674,1.5961062908172607,0.6086825132369995,0.495951384305954,0.8116770386695862,0.28662109375,0.25918418169021606,0,4 +462,0.6984392404556274,0.6992093920707703,0.0007701516151428223,0.0025538853805330726,1.0,1.0,0.4205322265625,0.4205322265625,0.393310546875,0,0,0.2662205100059509,0.375890851020813,1.595327615737915,0.608679473400116,0.49649778008461,0.8116638660430908,0.28662109375,0.2598656415939331,0,4 +463,0.6992093920707703,0.699629545211792,0.0004201531410217285,0.00139682932227918,1.0,1.0,0.4205322265625,0.42047119140625,0.39300537109375,0,0,0.2664981484413147,0.375646710395813,1.5949034690856934,0.6091330051422119,0.4967955946922302,0.8115245699882507,0.28759765625,0.26045501232147217,0,4 +464,0.699629545211792,0.7020711898803711,0.0024416446685791016,0.008128777746468812,1.0,1.0,0.42047119140625,0.420166015625,0.39404296875,0,0,0.2666492164134979,0.37696224451065063,1.592330813407898,0.605231761932373,0.49854785203933716,0.8124895691871643,0.29052734375,0.2641758918762207,0,4 +465,0.7020711898803711,0.7023505568504333,0.00027936697006225586,0.0009376970624293777,1.0,1.0,0.420166015625,0.4202880859375,0.39288330078125,0,0,0.2675379514694214,0.37548166513442993,1.5920436382293701,0.6085624098777771,0.4987460970878601,0.8116133213043213,0.29052734375,0.2640705406665802,0,4 +466,0.7023505568504333,0.706542432308197,0.004191875457763672,0.014083263228741488,1.0,1.0,0.4202880859375,0.41973876953125,0.39434814453125,0,0,0.26763826608657837,0.3773766756057739,1.5874570608139038,0.6032226085662842,0.5017775297164917,0.8129500150680542,0.294921875,0.2688506841659546,0,4 +467,0.706542432308197,0.7072246074676514,0.0006821751594543457,0.002324612600111183,1.0,1.0,0.41973876953125,0.41986083984375,0.39202880859375,0,0,0.2691693902015686,0.37509042024612427,1.5867360830307007,0.6084361672401428,0.5022636651992798,0.8115406632423401,0.294921875,0.2692210078239441,0,4 +468,0.7072246074676514,0.7091647386550903,0.0019401311874389648,0.0066266880240783916,1.0,1.0,0.41986083984375,0.41973876953125,0.39208984375,0,0,0.26941317319869995,0.3753185570240021,1.5846495628356934,0.6077144145965576,0.5036516189575195,0.81170654296875,0.29638671875,0.2705284059047699,0,4 +469,0.7091647386550903,0.7099899053573608,0.0008251667022705078,0.002837230597330905,1.0,1.0,0.41973876953125,0.41961669921875,0.3905029296875,0,0,0.2701078951358795,0.37453263998031616,1.5837690830230713,0.6093868017196655,0.5042388439178467,0.8112680315971375,0.29541015625,0.2712380290031433,0,4 +470,0.7099899053573608,0.7118476629257202,0.001857757568359375,0.006405837599027615,1.0,1.0,0.41961669921875,0.4197998046875,0.3917236328125,0,0,0.2704010605812073,0.3754839301109314,1.5817241668701172,0.6063767671585083,0.505573034286499,0.8119935989379883,0.2978515625,0.2748187184333801,0,4 +471,0.7118476629257202,0.7122858762741089,0.0004382133483886719,0.0015207697179832674,1.0,1.0,0.4197998046875,0.4197998046875,0.39068603515625,0,0,0.27106714248657227,0.37444666028022766,1.5812487602233887,0.6087790131568909,0.5058856010437012,0.8113671541213989,0.2978515625,0.2748883068561554,0,4 +472,0.7122858762741089,0.7137770652770996,0.0014911890029907227,0.005182884259138413,1.0,1.0,0.4197998046875,0.41986083984375,0.39044189453125,0,0,0.27122268080711365,0.3748006820678711,1.5796034336090088,0.607625424861908,0.5069557428359985,0.8116681575775146,0.29833984375,0.2763659656047821,0,4 +473,0.7137770652770996,0.716023325920105,0.002246260643005371,0.007847940784969004,1.0,1.0,0.41986083984375,0.41912841796875,0.390625,0,0,0.2717536687850952,0.37482914328575134,1.5770854949951172,0.6072374582290649,0.5085738897323608,0.8117351531982422,0.30078125,0.2783190608024597,0,4 +474,0.716023325920105,0.7169420719146729,0.0009187459945678711,0.0032352868331340053,1.0,1.0,0.41912841796875,0.41888427734375,0.39013671875,0,0,0.27255362272262573,0.3740764856338501,1.5760629177093506,0.608794093132019,0.5092332363128662,0.8113211393356323,0.3017578125,0.2796650826931,0,4 +475,0.7169420719146729,0.7175518274307251,0.0006097555160522461,0.0021541721872154617,1.0,1.0,0.41888427734375,0.4188232421875,0.38946533203125,0,0,0.27287834882736206,0.37360185384750366,1.57538640499115,0.609868586063385,0.5096704363822937,0.8110613822937012,0.30126953125,0.2797621488571167,0,4 +476,0.7175518274307251,0.7177066206932068,0.00015479326248168945,0.0005480412957663018,1.0,1.0,0.4188232421875,0.4188232421875,0.38909912109375,0,0,0.2730928063392639,0.37324821949005127,1.5752155780792236,0.6106854677200317,0.5097813606262207,0.8108553886413574,0.3017578125,0.2797808349132538,0,4 +477,0.7177066206932068,0.7181954979896545,0.0004888772964477539,0.0017318057463772385,1.0,1.0,0.4188232421875,0.4188232421875,0.38934326171875,0,0,0.2731470465660095,0.3736017942428589,1.5746705532073975,0.6096705198287964,0.5101324319839478,0.8111085295677185,0.30419921875,0.28076422214508057,0,4 +478,0.7181954979896545,0.7186474800109863,0.0004519820213317871,0.001603885027057496,1.0,1.0,0.4188232421875,0.41888427734375,0.38934326171875,0,0,0.2733190059661865,0.37334054708480835,1.574167251586914,0.6103129386901855,0.5104568004608154,0.8109445571899414,0.302734375,0.28078365325927734,0,4 +479,0.7186474800109863,0.7189837098121643,0.0003362298011779785,0.0011950481239375703,1.0,1.0,0.41888427734375,0.41900634765625,0.38909912109375,0,0,0.27347755432128906,0.3732960820198059,1.5737922191619873,0.6102808117866516,0.5106981992721558,0.8109651803970337,0.3046875,0.28137895464897156,0,4 +480,0.7189837098121643,0.7190451622009277,6.145238876342773e-05,0.00021867909765071623,1.0,1.0,0.41900634765625,0.41912841796875,0.38897705078125,0,0,0.2735954225063324,0.37310105562210083,1.5737240314483643,0.6107993721961975,0.5107423067092896,0.8108209371566772,0.3046875,0.2813994288444519,0,4 +481,0.7190451622009277,0.7195801138877869,0.0005349516868591309,0.001904048675758013,1.0,1.0,0.41912841796875,0.41925048828125,0.38916015625,0,0,0.2736169397830963,0.3730880916118622,1.573127031326294,0.6107787489891052,0.5111266374588013,0.8108295202255249,0.30517578125,0.2814195156097412,0,4 +482,0.7195801138877869,0.7200493812561035,0.0004692673683166504,0.001673445399406759,1.0,1.0,0.41925048828125,0.4193115234375,0.38916015625,0,0,0.27380409836769104,0.37285536527633667,1.572603702545166,0.6113277673721313,0.5114633440971375,0.8106950521469116,0.3056640625,0.2815070152282715,0,4 +483,0.7200493812561035,0.7201870083808899,0.00013762712478637695,0.0004916121471847167,1.0,1.0,0.4193115234375,0.41937255859375,0.3887939453125,0,0,0.2739678621292114,0.37279394268989563,1.5724502801895142,0.6113755702972412,0.5115621089935303,0.8106850981712341,0.30615234375,0.28209537267684937,0,4 +484,0.7201870083808899,0.7211947441101074,0.0010077357292175293,0.0036014615453927516,1.0,1.0,0.41937255859375,0.41943359375,0.3895263671875,0,0,0.274015873670578,0.3738723695278168,1.5712947845458984,0.6081212759017944,0.5122917890548706,0.8115054368972778,0.31103515625,0.2850990295410156,0,4 +485,0.7211947441101074,0.7218462228775024,0.0006514787673950195,0.002336680366069947,1.0,1.0,0.41943359375,0.41912841796875,0.3890380859375,0,0,0.2743712067604065,0.3735259771347046,1.570549488067627,0.6090364456176758,0.5127624273300171,0.8112860918045044,0.310546875,0.28546953201293945,0,4 +486,0.7218462228775024,0.7223681211471558,0.0005218982696533203,0.0018762940235878187,1.0,1.0,0.41912841796875,0.419189453125,0.38897705078125,0,0,0.2746001183986664,0.3731794059276581,1.5699536800384521,0.6097983121871948,0.5131393074989319,0.8111180067062378,0.310546875,0.285469651222229,0,4 +487,0.7223681211471558,0.7236833572387695,0.0013152360916137695,0.004737338150965351,1.0,1.0,0.419189453125,0.41876220703125,0.38958740234375,0,0,0.27478283643722534,0.3734886050224304,1.5684304237365723,0.6089054346084595,0.5140936970710754,0.8113792538642883,0.3125,0.28678178787231445,0,4 +488,0.7236833572387695,0.7238652110099792,0.0001818537712097168,0.0006581354253310739,1.0,1.0,0.41876220703125,0.41876220703125,0.38916015625,0,0,0.27524474263191223,0.3728506863117218,1.5682218074798584,0.6103309392929077,0.5142251253128052,0.8110750913619995,0.3125,0.2869938611984253,0,4 +489,0.7238652110099792,0.7262885570526123,0.0024233460426330566,0.00877595340846616,1.0,1.0,0.41876220703125,0.41900634765625,0.3892822265625,0,0,0.27530819177627563,0.3734230101108551,1.5653660297393799,0.6086735129356384,0.5159890651702881,0.8115085363388062,0.31591796875,0.2886466383934021,0,4 +490,0.7262885570526123,0.7287440299987793,0.002455472946166992,0.008971027735362085,1.0,1.0,0.41900634765625,0.4188232421875,0.3897705078125,0,0,0.2761586010456085,0.3733648359775543,1.5624301433563232,0.6084150075912476,0.5177817940711975,0.8117367625236511,0.318359375,0.29168546199798584,0,4 +491,0.7287440299987793,0.7294482588768005,0.0007042288780212402,0.002596178355145773,1.0,1.0,0.4188232421875,0.41876220703125,0.38818359375,0,0,0.2770225405693054,0.3720856308937073,1.561601996421814,0.6115226745605469,0.5182913541793823,0.8110606074333191,0.3193359375,0.2918567359447479,0,4 +492,0.7294482588768005,0.7304035425186157,0.0009552836418151855,0.00353087227548162,1.0,1.0,0.41876220703125,0.41888427734375,0.3876953125,0,0,0.2772674858570099,0.37179508805274963,1.560476303100586,0.6121913194656372,0.5189827680587769,0.8109122514724731,0.3193359375,0.29195529222488403,0,4 +493,0.7304035425186157,0.7310725450515747,0.0006690025329589844,0.002481496007807073,1.0,1.0,0.41888427734375,0.4188232421875,0.387451171875,0,0,0.27759870886802673,0.37181398272514343,1.5596837997436523,0.612031877040863,0.5194677114486694,0.8109725117683411,0.32080078125,0.29339516162872314,0,4 +494,0.7310725450515747,0.7312479019165039,0.00017535686492919922,0.0006520601065548664,1.0,1.0,0.4188232421875,0.4188232421875,0.386962890625,0,0,0.27783071994781494,0.37143123149871826,1.5594772100448608,0.6129910945892334,0.5195944309234619,0.8107514381408691,0.3203125,0.29333943128585815,0,4 +495,0.7312479019165039,0.7316003441810608,0.00035244226455688477,0.0013114028395320202,1.0,1.0,0.4188232421875,0.4188232421875,0.3878173828125,0,0,0.2778913378715515,0.372098445892334,1.5590556859970093,0.6109625697135925,0.5198503732681274,0.8112587928771973,0.3232421875,0.29532483220100403,0,4 +496,0.7316003441810608,0.7320827841758728,0.0004824399948120117,0.0017974687536017663,1.0,1.0,0.4188232421875,0.41900634765625,0.3870849609375,0,0,0.2780139148235321,0.37194204330444336,1.5584778785705566,0.6112637519836426,0.5202009677886963,0.8111947178840637,0.32373046875,0.2954617738723755,0,4 +497,0.7320827841758728,0.736833930015564,0.004751145839691162,0.017733633970017162,1.0,1.0,0.41900634765625,0.41845703125,0.389404296875,0,0,0.2781814932823181,0.37347349524497986,1.5524706840515137,0.6070980429649353,0.523725152015686,0.8123457431793213,0.3271484375,0.2995991110801697,0,4 +498,0.736833930015564,0.737569272518158,0.0007353425025939941,0.0027942147049484123,1.0,1.0,0.41845703125,0.418212890625,0.38671875,0,0,0.27985864877700806,0.37094858288764954,1.5515751838684082,0.6138483881950378,0.5242615938186646,0.81067955493927,0.3271484375,0.2996138036251068,0,4 +499,0.737569272518158,0.7395429015159607,0.0019736289978027344,0.007520571301770646,1.0,1.0,0.418212890625,0.41802978515625,0.3876953125,0,0,0.2801111340522766,0.37183013558387756,1.549105167388916,0.6113780736923218,0.5257138013839722,0.8113567233085632,0.330078125,0.30270200967788696,0,4 +500,0.7395429015159607,0.740439236164093,0.0008963346481323242,0.0034413907447688593,1.0,1.0,0.41802978515625,0.41802978515625,0.38714599609375,0,0,0.2807953953742981,0.37069612741470337,1.547999382019043,0.6147431135177612,0.5263680815696716,0.8105015754699707,0.330078125,0.3022903800010681,0,4 +501,0.740439236164093,0.7416112422943115,0.0011720061302185059,0.0045153439714773,1.0,1.0,0.41802978515625,0.41796875,0.38720703125,0,0,0.28110218048095703,0.37083572149276733,1.5465387105941772,0.6143372058868408,0.5272260308265686,0.8106250166893005,0.33056640625,0.30391642451286316,0,4 +502,0.7416112422943115,0.7423375844955444,0.0007263422012329102,0.002811044132424031,1.0,1.0,0.41796875,0.41790771484375,0.3870849609375,0,0,0.28150397539138794,0.3706818222999573,1.545630693435669,0.6146945357322693,0.5277578830718994,0.8105279207229614,0.3330078125,0.3052329421043396,0,0 +503,0.7423375844955444,0.74251389503479,0.00017631053924560547,0.0006842695272433191,1.0,1.0,0.41790771484375,0.41790771484375,0.38677978515625,0,0,0.2817525565624237,0.3703610599040985,1.545411229133606,0.6156965494155884,0.527886688709259,0.8102697134017944,0.33251953125,0.3052651584148407,0,4 +504,0.74251389503479,0.7427741289138794,0.00026023387908935547,0.001010671543322762,1.0,1.0,0.41790771484375,0.4178466796875,0.38690185546875,0,0,0.2818126678466797,0.370428204536438,1.5450866222381592,0.6155157089233398,0.5280769467353821,0.8103229999542236,0.33251953125,0.3057681918144226,0,4 +505,0.7427741289138794,0.7429845333099365,0.0002104043960571289,0.0008179752494129347,1.0,1.0,0.4178466796875,0.417724609375,0.38677978515625,0,0,0.281901478767395,0.3702852129936218,1.5448246002197266,0.6159324049949646,0.5282306671142578,0.8102211356163025,0.33251953125,0.3057662844657898,0,4 +506,0.7429845333099365,0.7438952922821045,0.0009107589721679688,0.003543595970690194,1.0,1.0,0.417724609375,0.4178466796875,0.38665771484375,0,0,0.28197312355041504,0.3704458773136139,1.5436793565750122,0.6154906749725342,0.5288981199264526,0.8103477954864502,0.33349609375,0.3063814640045166,0,4 +507,0.7438952922821045,0.7442021369934082,0.00030684471130371094,0.001198122104189145,1.0,1.0,0.4178466796875,0.417724609375,0.38665771484375,0,0,0.2822839617729187,0.3703674077987671,1.5432935953140259,0.6157873868942261,0.5291230082511902,0.8102797865867615,0.333984375,0.30730104446411133,0,4 +508,0.7442021369934082,0.744255542755127,5.340576171875e-05,0.00020878110978344552,1.0,1.0,0.417724609375,0.417724609375,0.3863525390625,0,0,0.2823885679244995,0.37020444869995117,1.543226718902588,0.6162497997283936,0.5291621088981628,0.8101762533187866,0.333984375,0.30731886625289917,0,4 +509,0.744255542755127,0.7457364797592163,0.0014809370040893555,0.005790690519917588,1.0,1.0,0.417724609375,0.41790771484375,0.3870849609375,0,0,0.282406747341156,0.3707200884819031,1.5413349866867065,0.6148021221160889,0.5302541255950928,0.8105616569519043,0.3349609375,0.3086279630661011,0,4 +510,0.7457364797592163,0.7463171482086182,0.0005806684494018555,0.0022837269335843824,1.0,1.0,0.41790771484375,0.41796875,0.38623046875,0,0,0.2829136550426483,0.36998486518859863,1.540600299835205,0.616974949836731,0.5306804776191711,0.8100054264068604,0.33544921875,0.3086821436882019,0,0 +511,0.7463171482086182,0.749992311000824,0.0036751627922058105,0.014487233828592051,1.0,1.0,0.41796875,0.41802978515625,0.38726806640625,0,0,0.28311073780059814,0.37090253829956055,1.5357697010040283,0.6145919561386108,0.5334128141403198,0.8106887936592102,0.337890625,0.311463326215744,0,0 +512,0.749992311000824,0.7511435151100159,0.0011512041091918945,0.004604674815404132,1.0,1.0,0.41802978515625,0.41778564453125,0.38494873046875,0,0,0.28437119722366333,0.3692660331726074,1.5342894792556763,0.6195054054260254,0.5342588424682617,0.8094029426574707,0.33984375,0.312233030796051,0,0 +513,0.7511435151100159,0.7513648867607117,0.00022137165069580078,0.0008895554833287387,1.0,1.0,0.41778564453125,0.417724609375,0.38470458984375,0,0,0.28475838899612427,0.36872944235801697,1.5340077877044678,0.6211967468261719,0.534420907497406,0.8089727759361267,0.33984375,0.3122732639312744,0,4 +514,0.7513648867607117,0.7521769404411316,0.0008120536804199219,0.003266045852656359,1.0,1.0,0.417724609375,0.4176025390625,0.38525390625,0,0,0.2848323583602905,0.36942723393440247,1.5329556465148926,0.6192612648010254,0.5350200533866882,0.8094922304153442,0.34228515625,0.3143599331378937,0,4 +515,0.7521769404411316,0.7554216384887695,0.0032446980476379395,0.01309280118409315,1.0,1.0,0.4176025390625,0.417236328125,0.3868408203125,0,0,0.28510597348213196,0.3703714609146118,1.5285946130752563,0.6167400479316711,0.5374479293823242,0.8102217316627502,0.34521484375,0.31771788001060486,0,4 +516,0.7554216384887695,0.7575141787528992,0.0020925402641296387,0.008555704810515522,1.0,1.0,0.417236328125,0.417236328125,0.38677978515625,0,0,0.28621143102645874,0.36988556385040283,1.5257763862609863,0.6185404062271118,0.5390126705169678,0.8097455501556396,0.34765625,0.32067471742630005,0,0 +517,0.7575141787528992,0.7582240700721741,0.0007098913192749023,0.002927558055246044,1.0,1.0,0.417236328125,0.417236328125,0.38525390625,0,0,0.28692078590393066,0.36883145570755005,1.524834394454956,0.6218305826187134,0.5395407676696777,0.8088430762290955,0.34765625,0.3207341432571411,0,4 +518,0.7582240700721741,0.7598408460617065,0.0016167759895324707,0.006687084152732263,1.0,1.0,0.417236328125,0.4166259765625,0.38531494140625,0,0,0.2871590852737427,0.36906737089157104,1.5226588249206543,0.6213018298149109,0.5407512187957764,0.8090037107467651,0.34765625,0.3221368193626404,0,0 +519,0.7598408460617065,0.7611840963363647,0.0013432502746582031,0.0055931670837054085,1.0,1.0,0.4166259765625,0.4163818359375,0.38470458984375,0,0,0.28770333528518677,0.36833080649375916,1.5208590030670166,0.6235591173171997,0.5417544841766357,0.8084005117416382,0.34814453125,0.32235419750213623,0,0 +520,0.7611840963363647,0.7636767029762268,0.0024926066398620605,0.010437356145982719,1.0,1.0,0.4163818359375,0.415283203125,0.38568115234375,0,0,0.28815126419067383,0.36934712529182434,1.5174111127853394,0.6208279132843018,0.5436385869979858,0.8091340065002441,0.3544921875,0.3268362283706665,0,0 +521,0.7636767029762268,0.7643880844116211,0.0007113814353942871,0.003010204429073808,1.0,1.0,0.415283203125,0.4150390625,0.384521484375,0,0,0.28899306058883667,0.36813443899154663,1.516444444656372,0.6245486736297607,0.5441725254058838,0.8080781698226929,0.3544921875,0.32694441080093384,4,0 +522,0.7643880844116211,0.7650143504142761,0.0006262660026550293,0.0026580404522033377,1.0,1.0,0.4150390625,0.41497802734375,0.38433837890625,0,0,0.2892295718193054,0.36822041869163513,1.5155891180038452,0.6243350505828857,0.5446439981460571,0.8081321716308594,0.35693359375,0.328080415725708,4,0 +523,0.7650143504142761,0.7654734253883362,0.0004590749740600586,0.0019536298274784045,1.0,1.0,0.41497802734375,0.414794921875,0.38397216796875,0,0,0.28943800926208496,0.3678961396217346,1.5149641036987305,0.6252948045730591,0.544988751411438,0.8078809976577759,0.3564453125,0.3280457854270935,4,0 +524,0.7654734253883362,0.7658525705337524,0.00037914514541625977,0.0016166404427475213,1.0,1.0,0.414794921875,0.41485595703125,0.38397216796875,0,0,0.28959017992019653,0.3678235411643982,1.5144473314285278,0.6255592107772827,0.5452736020088196,0.8078199625015259,0.35693359375,0.3284796476364136,4,0 +525,0.7658525705337524,0.7664679884910583,0.0006154179573059082,0.0026283353129640955,1.0,1.0,0.41485595703125,0.4146728515625,0.3837890625,0,0,0.2897157073020935,0.3676564395427704,1.5136072635650635,0.6260273456573486,0.5457358360290527,0.8076995611190796,0.35693359375,0.3286048173904419,4,0 +526,0.7664679884910583,0.7666708827018738,0.0002028942108154297,0.0008688068479539522,1.0,1.0,0.4146728515625,0.41461181640625,0.38323974609375,0,0,0.28991907835006714,0.3673725426197052,1.513331413269043,0.6268598437309265,0.54588782787323,0.8074697852134705,0.35693359375,0.32859134674072266,4,0 +527,0.7666708827018738,0.7668210864067078,0.00015020370483398438,0.000643741795165959,1.0,1.0,0.41461181640625,0.41461181640625,0.38299560546875,0,0,0.2899858355522156,0.3672723174095154,1.513127326965332,0.6271466016769409,0.5460001230239868,0.8073930740356445,0.35693359375,0.3286091685295105,4,0 +528,0.7668210864067078,0.7702458500862122,0.0034247636795043945,0.014687278651095462,1.0,1.0,0.41461181640625,0.41436767578125,0.385009765625,0,0,0.2900352478027344,0.36881113052368164,1.5082533359527588,0.6230274438858032,0.5486099123954773,0.8085415363311768,0.36181640625,0.3326680660247803,4,0 +529,0.7702458500862122,0.7704429626464844,0.0001971125602722168,0.0008579281825646267,1.0,1.0,0.41436767578125,0.4144287109375,0.3826904296875,0,0,0.2911837697029114,0.3670285940170288,1.507981300354004,0.6281193494796753,0.5487577319145203,0.8071410655975342,0.36181640625,0.33269038796424866,4,0 +530,0.7704429626464844,0.7715646624565125,0.0011216998100280762,0.004886366468916696,1.0,1.0,0.4144287109375,0.414306640625,0.383056640625,0,0,0.2912483215332031,0.36719220876693726,1.5064175128936768,0.6276940703392029,0.5496019124984741,0.8072583079338074,0.36181640625,0.33324605226516724,4,0 +531,0.7715646624565125,0.7718891501426697,0.00032448768615722656,0.001420479377869693,1.0,1.0,0.414306640625,0.414306640625,0.3824462890625,0,0,0.2916165590286255,0.3666090667247772,1.505968689918518,0.6293301582336426,0.5498449206352234,0.8068484663963318,0.3623046875,0.33327221870422363,4,0 +532,0.7718891501426697,0.7727917432785034,0.0009025931358337402,0.003956818083831866,1.0,1.0,0.414306640625,0.4141845703125,0.38275146484375,0,0,0.29172223806381226,0.36702460050582886,1.5047039985656738,0.6281615495681763,0.550524115562439,0.8071715831756592,0.3642578125,0.33468788862228394,4,0 +533,0.7727917432785034,0.7740560173988342,0.0012642741203308105,0.005564384580796774,1.0,1.0,0.4141845703125,0.414306640625,0.38323974609375,0,0,0.2920178771018982,0.36738649010658264,1.5029047727584839,0.6269898414611816,0.5514804124832153,0.8074904084205627,0.36572265625,0.33687880635261536,0,0 +534,0.7740560173988342,0.7751343250274658,0.0010783076286315918,0.004772455615846209,1.0,1.0,0.414306640625,0.41400146484375,0.3831787109375,0,0,0.2924339771270752,0.3670782148838043,1.5013697147369385,0.6279079914093018,0.5522940158843994,0.8072757720947266,0.36669921875,0.33774709701538086,0,0 +535,0.7751343250274658,0.7752991914749146,0.00016486644744873047,0.0007331774734799688,1.0,1.0,0.41400146484375,0.41400146484375,0.38232421875,0,0,0.29278743267059326,0.36652082204818726,1.501137137413025,0.6294860243797302,0.5524179339408875,0.8068610429763794,0.36669921875,0.33775895833969116,0,0 +536,0.7752991914749146,0.777591347694397,0.002292156219482422,0.010200925553085079,1.0,1.0,0.41400146484375,0.41339111328125,0.383056640625,0,0,0.2928410768508911,0.367127925157547,1.497819185256958,0.6277788877487183,0.5541608929634094,0.8073310852050781,0.369140625,0.3394318222999573,0,0 +537,0.777591347694397,0.7780233025550842,0.00043195486068725586,0.001942167520055486,1.0,1.0,0.41339111328125,0.41339111328125,0.38134765625,0,0,0.2935929000377655,0.365942120552063,1.4972047805786133,0.6309843063354492,0.5544865131378174,0.806550145149231,0.36962890625,0.3394155204296112,0,0 +538,0.7780233025550842,0.7813425660133362,0.003319263458251953,0.014953206784579894,1.0,1.0,0.41339111328125,0.412353515625,0.38238525390625,0,0,0.29373228549957275,0.36695948243141174,1.492297649383545,0.6281483769416809,0.5570223331451416,0.8073338270187378,0.37353515625,0.34246429800987244,0,0 +539,0.7813425660133362,0.782414972782135,0.0010724067687988281,0.004904506328672253,1.0,1.0,0.412353515625,0.411865234375,0.38092041015625,0,0,0.294818639755249,0.3654957115650177,1.4907410144805908,0.6321324110031128,0.5578310489654541,0.8064080476760864,0.373046875,0.3430187404155731,0,0 +540,0.782414972782135,0.7825527191162109,0.00013774633407592773,0.000633068993014874,1.0,1.0,0.411865234375,0.41192626953125,0.38031005859375,0,0,0.2951623797416687,0.3649797737598419,1.4905428886413574,0.6334943175315857,0.5579343438148499,0.8060895204544067,0.3740234375,0.34306880831718445,0,0 +541,0.7825527191162109,0.7827016115188599,0.00014889240264892578,0.0006847287399675453,1.0,1.0,0.41192626953125,0.411865234375,0.38018798828125,0,0,0.2952061891555786,0.36490675806999207,1.4903285503387451,0.6336886882781982,0.5580459833145142,0.8060426115989685,0.37353515625,0.34308063983917236,0,0 +542,0.7827016115188599,0.7827816009521484,7.998943328857422e-05,0.0003681087275781463,1.0,1.0,0.411865234375,0.411865234375,0.38018798828125,0,0,0.2952535152435303,0.3648073077201843,1.4902136325836182,0.6339908838272095,0.5581059455871582,0.8059607148170471,0.373046875,0.34301748871803284,0,0 +543,0.7827816009521484,0.783465564250946,0.0006839632987976074,0.0031487355665803223,1.0,1.0,0.411865234375,0.411865234375,0.3807373046875,0,0,0.2952788770198822,0.3654814660549164,1.4892144203186035,0.6319490075111389,0.558622419834137,0.8064938187599182,0.37353515625,0.34491533041000366,0,0 +544,0.783465564250946,0.7838848829269409,0.00041931867599487305,0.0019364988046558552,1.0,1.0,0.411865234375,0.4117431640625,0.380615234375,0,0,0.2954980731010437,0.36534857749938965,1.4886019229888916,0.6324286460876465,0.5589386224746704,0.8063741326332092,0.37353515625,0.3454579710960388,0,0 +545,0.7838848829269409,0.7871488928794861,0.003264009952545166,0.015103107995179008,1.0,1.0,0.4117431640625,0.41119384765625,0.38232421875,0,0,0.29563218355178833,0.3666344881057739,1.4836175441741943,0.6285577416419983,0.561449408531189,0.8073463439941406,0.37548828125,0.34947675466537476,4,0 +546,0.7871488928794861,0.7880786657333374,0.0009297728538513184,0.0043681842506221565,1.0,1.0,0.41119384765625,0.4114990234375,0.3812255859375,0,0,0.2966955006122589,0.36517879366874695,1.482224941253662,0.6324196457862854,0.5621577501296997,0.8063888549804688,0.37548828125,0.3498879075050354,4,0 +547,0.7880786657333374,0.7884109020233154,0.00033223628997802734,0.001567734042104375,1.0,1.0,0.4114990234375,0.41131591796875,0.3809814453125,0,0,0.2969920039176941,0.3649166226387024,1.4817283153533936,0.6330298185348511,0.5624104738235474,0.8062542676925659,0.376953125,0.35043418407440186,4,0 +548,0.7884109020233154,0.7885202765464783,0.0001093745231628418,0.000516919464229173,1.0,1.0,0.41131591796875,0.41131591796875,0.38079833984375,0,0,0.2970975339412689,0.36472949385643005,1.4815651178359985,0.6335694789886475,0.5624935626983643,0.8061257600784302,0.3759765625,0.35042786598205566,4,0 +549,0.7885202765464783,0.791245698928833,0.0027254223823547363,0.012887393353120778,1.0,1.0,0.41131591796875,0.41082763671875,0.3814697265625,0,0,0.2971321642398834,0.3653506338596344,1.4773820638656616,0.6318764686584473,0.5645830631256104,0.8065636157989502,0.37646484375,0.3519057035446167,4,0 +550,0.791245698928833,0.7933056950569153,0.0020599961280822754,0.009868041604469729,1.0,1.0,0.41082763671875,0.41070556640625,0.380859375,0,0,0.2980034351348877,0.3645877242088318,1.4742166996002197,0.6337025165557861,0.5661559700965881,0.8061504364013672,0.37890625,0.35349759459495544,4,0 +551,0.7933056950569153,0.7933416366577148,3.594160079956055e-05,0.00017388771698115927,1.0,1.0,0.41070556640625,0.41070556640625,0.38043212890625,0,0,0.29865434765815735,0.3635029196739197,1.4741624593734741,0.6364729404449463,0.5661830902099609,0.8054654598236084,0.37890625,0.35349759459495544,4,0 +552,0.7933416366577148,0.7935192584991455,0.00017762184143066406,0.0008594950553076415,1.0,1.0,0.41070556640625,0.41070556640625,0.38043212890625,0,0,0.29866552352905273,0.363491415977478,1.4738942384719849,0.6365330219268799,0.5663172006607056,0.8054385185241699,0.37841796875,0.3535020053386688,4,0 +553,0.7935192584991455,0.7943580150604248,0.0008387565612792969,0.004062153957713416,1.0,1.0,0.41070556640625,0.4105224609375,0.38031005859375,0,0,0.29872065782546997,0.36381933093070984,1.472611665725708,0.6355102062225342,0.5669531226158142,0.805683970451355,0.37890625,0.35452789068222046,4,0 +554,0.7943580150604248,0.7946635484695435,0.00030553340911865234,0.0014857540361148953,1.0,1.0,0.4105224609375,0.410400390625,0.38043212890625,0,0,0.29898253083229065,0.3635970950126648,1.4721455574035645,0.6359966397285461,0.5671842098236084,0.8055704832077026,0.37939453125,0.3550496995449066,4,0 +555,0.7946635484695435,0.7965661287307739,0.0019025802612304688,0.009265672251807995,1.0,1.0,0.410400390625,0.41015625,0.380859375,0,0,0.2990776002407074,0.3646337389945984,1.4691543579101562,0.6330255270004272,0.5686423182487488,0.8063231706619263,0.3828125,0.3582603335380554,4,0 +556,0.7965661287307739,0.7974892258644104,0.0009230971336364746,0.004537578368229744,1.0,1.0,0.41015625,0.4097900390625,0.38067626953125,0,0,0.299679160118103,0.3640556335449219,1.4677070379257202,0.6343401670455933,0.5693455934524536,0.8059478402137756,0.38330078125,0.35920727252960205,4,0 +557,0.7974892258644104,0.798763632774353,0.001274406909942627,0.006293032631880402,1.0,1.0,0.4097900390625,0.4097900390625,0.38018798828125,0,0,0.2999683618545532,0.3637876510620117,1.4657002687454224,0.634967565536499,0.5703141689300537,0.8057926893234253,0.3828125,0.35961878299713135,4,0 +558,0.798763632774353,0.7992169857025146,0.0004533529281616211,0.0022528379656808007,1.0,1.0,0.4097900390625,0.40966796875,0.3798828125,0,0,0.3003659248352051,0.36312344670295715,1.4649916887283325,0.6366348266601562,0.5706568956375122,0.8053513765335083,0.38330078125,0.35965561866760254,4,0 +559,0.7992169857025146,0.7997227311134338,0.0005057454109191895,0.002518865516033462,1.0,1.0,0.40966796875,0.40966796875,0.3800048828125,0,0,0.3005058169364929,0.3635852336883545,1.4641926288604736,0.6352524757385254,0.5710410475730896,0.8057039976119995,0.38671875,0.36142316460609436,4,0 +560,0.7997227311134338,0.8011309504508972,0.001408219337463379,0.007031348816030499,1.0,1.0,0.40966796875,0.40936279296875,0.38031005859375,0,0,0.3006630539894104,0.36358997225761414,1.4619450569152832,0.6351318955421448,0.5721139907836914,0.8057442903518677,0.38720703125,0.3620259761810303,4,0 +561,0.8011309504508972,0.8015758395195007,0.0004448890686035156,0.0022370955642027545,1.0,1.0,0.40936279296875,0.40924072265625,0.37982177734375,0,0,0.3011009097099304,0.3629138469696045,1.4612412452697754,0.6368314027786255,0.572451114654541,0.8052996397018433,0.3876953125,0.36214593052864075,4,0 +562,0.8015758395195007,0.8016475439071655,7.170438766479492e-05,0.0003613692379554852,1.0,1.0,0.40924072265625,0.40924072265625,0.379638671875,0,0,0.30123770236968994,0.362678587436676,1.4611279964447021,0.6374150514602661,0.5725052356719971,0.8051427006721497,0.3876953125,0.36214834451675415,4,0 +563,0.8016475439071655,0.8017771244049072,0.00012958049774169922,0.0006532840595684479,1.0,1.0,0.40924072265625,0.4091796875,0.3795166015625,0,0,0.3012596666812897,0.3626437187194824,1.460923671722412,0.6375070214271545,0.572603166103363,0.8051126003265381,0.3876953125,0.3621522784233093,4,0 +564,0.8017771244049072,0.802297830581665,0.0005207061767578125,0.0026268722779577273,1.0,1.0,0.4091796875,0.40911865234375,0.38006591796875,0,0,0.3012993037700653,0.36303555965423584,1.460093379020691,0.6363738775253296,0.5729984045028687,0.8054015040397644,0.38818359375,0.36333897709846497,4,0 +565,0.802297830581665,0.8045123219490051,0.002214491367340088,0.01120114854508377,1.0,1.0,0.40911865234375,0.408935546875,0.380126953125,0,0,0.30145972967147827,0.36317816376686096,1.4565002918243408,0.6359397768974304,0.5746937990188599,0.8055397272109985,0.38916015625,0.3641420900821686,4,0 +566,0.8045123219490051,0.8050671815872192,0.0005548596382141113,0.0028383356114617658,1.0,1.0,0.408935546875,0.40875244140625,0.3800048828125,0,0,0.3021434545516968,0.3623935282230377,1.4556076526641846,0.6377570629119873,0.5751165151596069,0.805068850517273,0.38916015625,0.3651294708251953,4,0 +567,0.8050671815872192,0.8062204718589783,0.0011532902717590332,0.0059163473916274,1.0,1.0,0.40875244140625,0.40850830078125,0.38055419921875,0,0,0.3023125231266022,0.363080769777298,1.4537150859832764,0.6355729103088379,0.5760027766227722,0.8056583404541016,0.39208984375,0.36768507957458496,4,0 +568,0.8062204718589783,0.8076386451721191,0.0014181733131408691,0.007318488834944439,1.0,1.0,0.40850830078125,0.408203125,0.38018798828125,0,0,0.3026679456233978,0.3631201386451721,1.4513635635375977,0.6352229118347168,0.5770972967147827,0.8057940602302551,0.39306640625,0.3692857027053833,4,0 +569,0.8076386451721191,0.8094863295555115,0.001847684383392334,0.009605278487696172,1.0,1.0,0.408203125,0.40777587890625,0.3802490234375,0,0,0.3031052350997925,0.3624381422996521,1.4482921361923218,0.6369491219520569,0.5785210132598877,0.8053508400917053,0.3935546875,0.36932075023651123,4,0 +570,0.8094863295555115,0.8097203969955444,0.00023406744003295898,0.0012286123063340018,1.0,1.0,0.40777587890625,0.40777587890625,0.37860107421875,0,0,0.3036683201789856,0.36147618293762207,1.4479087591171265,0.6393194794654846,0.5786994099617004,0.8047463297843933,0.3935546875,0.36918097734451294,4,4 +571,0.8097203969955444,0.8103785514831543,0.0006581544876098633,0.003458880916387302,1.0,1.0,0.40777587890625,0.40789794921875,0.3792724609375,0,0,0.30373847484588623,0.3619842529296875,1.4468165636062622,0.6377328634262085,0.5792045593261719,0.8051835298538208,0.39453125,0.3708810806274414,4,4 +572,0.8103785514831543,0.810573160648346,0.0001946091651916504,0.0010263035469553518,1.0,1.0,0.40789794921875,0.4078369140625,0.37884521484375,0,0,0.3039374351501465,0.3615875840187073,1.4464954137802124,0.6387976408004761,0.5793533325195312,0.8049173355102539,0.39453125,0.3707311153411865,4,0 +573,0.810573160648346,0.8129106760025024,0.002337515354156494,0.012339937477482297,1.0,1.0,0.4078369140625,0.40704345703125,0.379638671875,0,0,0.30399584770202637,0.36263370513916016,1.442507266998291,0.6357219219207764,0.5811716318130493,0.8057571053504944,0.39697265625,0.37349021434783936,4,0 +574,0.8129106760025024,0.813579797744751,0.0006691217422485352,0.0035764827620922137,1.0,1.0,0.40704345703125,0.40692138671875,0.37835693359375,0,0,0.3047104775905609,0.3614373803138733,1.4413831233978271,0.6386863589286804,0.581688404083252,0.8050124645233154,0.3974609375,0.37342366576194763,4,0 +575,0.813579797744751,0.8136088252067566,2.9027462005615234e-05,0.00015570985147774085,1.0,1.0,0.40692138671875,0.406982421875,0.3782958984375,0,0,0.3049107491970062,0.361063688993454,1.44133460521698,0.6395837068557739,0.581710696220398,0.8047796487808228,0.3974609375,0.37342366576194763,4,0 +576,0.8136088252067566,0.8153225183486938,0.0017136931419372559,0.009194068033737058,1.0,1.0,0.406982421875,0.40673828125,0.3780517578125,0,0,0.30491936206817627,0.3613582253456116,1.438422441482544,0.6387252807617188,0.5830442309379578,0.8050358295440674,0.39697265625,0.37406057119369507,4,0 +577,0.8153225183486938,0.8155308365821838,0.00020831823348999023,0.0011280110148097033,1.0,1.0,0.40673828125,0.40667724609375,0.37847900390625,0,0,0.3054314851760864,0.36078017950057983,1.4380714893341064,0.6399883031845093,0.5832053422927856,0.8047200441360474,0.3974609375,0.3748629093170166,4,0 +578,0.8155308365821838,0.8161473274230957,0.0006164908409118652,0.0033419723355905028,1.0,1.0,0.40667724609375,0.40667724609375,0.3782958984375,0,0,0.3054930567741394,0.36072060465812683,1.4370288848876953,0.6401193141937256,0.5836820602416992,0.8046903610229492,0.3974609375,0.37497371435165405,4,0 +579,0.8161473274230957,0.8183520436286926,0.002204716205596924,0.011991754999779546,1.0,1.0,0.40667724609375,0.40625,0.37908935546875,0,0,0.3056751489639282,0.3619772791862488,1.4331599473953247,0.6361635327339172,0.5854179263114929,0.8058029413223267,0.40380859375,0.37918490171432495,4,0 +580,0.8183520436286926,0.8184710144996643,0.00011897087097167969,0.0006549529834978755,1.0,1.0,0.40625,0.40625,0.37835693359375,0,0,0.30634140968322754,0.36081188917160034,1.432955026626587,0.6389367580413818,0.5855106711387634,0.805103600025177,0.4033203125,0.37910282611846924,4,0 +581,0.8184710144996643,0.8199948072433472,0.0015237927436828613,0.008394211753472524,1.0,1.0,0.40625,0.40631103515625,0.3785400390625,0,0,0.306376576423645,0.36106637120246887,1.4302904605865479,0.638257622718811,0.5867043733596802,0.8053141236305237,0.40380859375,0.37973371148109436,4,0 +582,0.8199948072433472,0.8205059766769409,0.00051116943359375,0.002839748263733673,1.0,1.0,0.40631103515625,0.40625,0.3775634765625,0,0,0.3068292737007141,0.36035698652267456,1.4294037818908691,0.6397712826728821,0.5871027112007141,0.8048971891403198,0.4052734375,0.37994498014450073,4,0 +583,0.8205059766769409,0.8205850720405579,7.909536361694336e-05,0.00044065736648281036,1.0,1.0,0.40625,0.40618896484375,0.3775634765625,0,0,0.3069790303707123,0.36010873317718506,1.429267168045044,0.640432596206665,0.5871641635894775,0.8047300577163696,0.4052734375,0.379960834980011,4,0 +584,0.8205850720405579,0.8207958340644836,0.00021076202392578125,0.0011747184379965602,1.0,1.0,0.40618896484375,0.4061279296875,0.37738037109375,0,0,0.30700209736824036,0.3600711226463318,1.4289026260375977,0.6405186653137207,0.5873281359672546,0.8047040700912476,0.4052734375,0.37997815012931824,4,0 +585,0.8207958340644836,0.8214731216430664,0.0006772875785827637,0.00377941871522381,1.0,1.0,0.4061279296875,0.40606689453125,0.37744140625,0,0,0.307063490152359,0.3604533076286316,1.4277184009552002,0.639398455619812,0.5878572463989258,0.8050366640090942,0.4072265625,0.38116455078125,4,0 +586,0.8214731216430664,0.8217519521713257,0.00027883052825927734,0.0015618406081229067,1.0,1.0,0.40606689453125,0.40606689453125,0.3773193359375,0,0,0.3072623014450073,0.3600897192955017,1.4272328615188599,0.6402296423912048,0.5880741477012634,0.8048032522201538,0.40771484375,0.3811878561973572,4,0 +587,0.8217519521713257,0.8234124183654785,0.001660466194152832,0.009315480390275091,1.0,1.0,0.40606689453125,0.40594482421875,0.376953125,0,0,0.3073435425758362,0.3600248694419861,1.4243048429489136,0.6402887105941772,0.5893733501434326,0.8048089742660522,0.40771484375,0.38124457001686096,4,0 +588,0.8234124183654785,0.8236309885978699,0.00021857023239135742,0.0012377440721948743,1.0,1.0,0.40594482421875,0.40576171875,0.37506103515625,0,0,0.30782678723335266,0.35914289951324463,1.4239249229431152,0.6422345638275146,0.58954256772995,0.8043172955513,0.40771484375,0.38124996423721313,4,0 +589,0.8236309885978699,0.8241025805473328,0.0004715919494628906,0.0026738934788699217,1.0,1.0,0.40576171875,0.40594482421875,0.37591552734375,0,0,0.30788928270339966,0.35961389541625977,1.4230958223342896,0.6409045457839966,0.5899098515510559,0.8047019243240356,0.40869140625,0.3826823830604553,4,0 +590,0.8241025805473328,0.82410728931427,4.708766937255859e-06,2.676996030929809e-05,1.0,1.0,0.40594482421875,0.40594482421875,0.37530517578125,0,0,0.3080253601074219,0.35936418175697327,1.4230875968933105,0.6414543986320496,0.589913547039032,0.8045706748962402,0.40869140625,0.3826823830604553,4,0 +591,0.82410728931427,0.8243792057037354,0.00027191638946533203,0.0015459218770649849,1.0,1.0,0.40594482421875,0.406005859375,0.375732421875,0,0,0.3080267310142517,0.35940438508987427,1.4226104021072388,0.6413612365722656,0.590124785900116,0.8045957088470459,0.408203125,0.38273975253105164,0,0 +592,0.8243792057037354,0.824649453163147,0.0002702474594116211,0.0015388124196484693,1.0,1.0,0.406005859375,0.40576171875,0.37518310546875,0,0,0.30810484290122986,0.35925406217575073,1.4221361875534058,0.641660213470459,0.590334415435791,0.8045085668563843,0.408203125,0.38272082805633545,0,0 +593,0.824649453163147,0.8253806829452515,0.0007312297821044922,0.004170102661754638,1.0,1.0,0.40576171875,0.40582275390625,0.37518310546875,0,0,0.3081822693347931,0.3591392934322357,1.4208481311798096,0.6418777108192444,0.5909023284912109,0.8044732809066772,0.408203125,0.38269031047821045,0,0 +594,0.8253806829452515,0.8258081078529358,0.00042742490768432617,0.002447752716558359,1.0,1.0,0.40582275390625,0.40582275390625,0.375,0,0,0.3083912134170532,0.35896867513656616,1.4200947284698486,0.6421226859092712,0.5912342071533203,0.804424524307251,0.40869140625,0.3833010792732239,0,0 +595,0.8258081078529358,0.8276774883270264,0.0018693804740905762,0.01073173068533134,1.0,1.0,0.40582275390625,0.4063720703125,0.3756103515625,0,0,0.30851292610168457,0.35970085859298706,1.4167139530181885,0.6398476362228394,0.5927037596702576,0.8050816059112549,0.41015625,0.38556814193725586,0,0 +596,0.8276774883270264,0.8280437588691711,0.0003662705421447754,0.002125494449848016,1.0,1.0,0.4063720703125,0.40618896484375,0.3753662109375,0,0,0.30905312299728394,0.3593953251838684,1.416053295135498,0.639982283115387,0.5929901599884033,0.8051043152809143,0.4140625,0.3874204754829407,0,0 +597,0.8280437588691711,0.8300018310546875,0.0019580721855163574,0.011387037612822696,1.0,1.0,0.40618896484375,0.406005859375,0.3756103515625,0,0,0.3091582655906677,0.35977303981781006,1.4124451875686646,0.6387445330619812,0.5945361852645874,0.8054482936859131,0.41552734375,0.3887246251106262,0,0 +598,0.8300018310546875,0.8307979106903076,0.0007960796356201172,0.0046828718247913115,1.0,1.0,0.406005859375,0.40576171875,0.37506103515625,0,0,0.30972468852996826,0.35879218578338623,1.4109926223754883,0.6407848596572876,0.5951593518257141,0.8049167394638062,0.4150390625,0.3888348639011383,0,0 +599,0.8307979106903076,0.8309907913208008,0.00019288063049316406,0.0011399423687974241,1.0,1.0,0.40576171875,0.40576171875,0.37481689453125,0,0,0.3099502921104431,0.3583381772041321,1.4106428623199463,0.6417022943496704,0.595309317111969,0.804652750492096,0.4150390625,0.38875019550323486,0,4 +600,0.8309907913208008,0.8319830298423767,0.0009922385215759277,0.0058709139539214195,1.0,1.0,0.40576171875,0.40576171875,0.3753662109375,0,0,0.31000441312789917,0.3590708374977112,1.4088082313537598,0.6394913792610168,0.5960890054702759,0.8052777647972107,0.4169921875,0.39080068469047546,0,0 +601,0.8319830298423767,0.8335428833961487,0.0015598535537719727,0.009283904788359254,1.0,1.0,0.40576171875,0.4056396484375,0.37518310546875,0,0,0.3102872371673584,0.3586250841617584,1.4059087038040161,0.6403518915176392,0.5973122119903564,0.8050421476364136,0.41748046875,0.3909982442855835,0,0 +602,0.8335428833961487,0.8350597023963928,0.0015168190002441406,0.009112370988943623,1.0,1.0,0.4056396484375,0.40484619140625,0.37493896484375,0,0,0.31072765588760376,0.3583824038505554,1.4030654430389404,0.640285849571228,0.5985038876533508,0.805060863494873,0.419921875,0.39241093397140503,0,4 +603,0.8350597023963928,0.8367061018943787,0.0016463994979858398,0.00998179051393826,1.0,1.0,0.40484619140625,0.4046630859375,0.37432861328125,0,0,0.3111536502838135,0.3578068017959595,1.3999677896499634,0.6413589715957642,0.599799633026123,0.8047628402709961,0.419921875,0.39284253120422363,4,0 +604,0.8367061018943787,0.836839497089386,0.00013339519500732422,0.0008169025086353311,1.0,1.0,0.4046630859375,0.40460205078125,0.37384033203125,0,0,0.31161031126976013,0.3568916320800781,1.3997201919555664,0.6431789398193359,0.5999034643173218,0.8042663335800171,0.419921875,0.3928309679031372,4,0 +605,0.836839497089386,0.8369332551956177,9.375810623168945e-05,0.000574637271638308,1.0,1.0,0.40460205078125,0.4046630859375,0.373779296875,0,0,0.31164658069610596,0.35681745409965515,1.3995461463928223,0.6433190107345581,0.5999764204025269,0.8042314052581787,0.41943359375,0.39283597469329834,4,0 +606,0.8369332551956177,0.8378660678863525,0.0009328126907348633,0.005720434855395448,1.0,1.0,0.4046630859375,0.40435791015625,0.37408447265625,0,0,0.31167200207710266,0.3573185205459595,1.397788166999817,0.6418805122375488,0.6007072925567627,0.8046455383300781,0.4208984375,0.3941507637500763,4,0 +607,0.8378660678863525,0.8384773135185242,0.0006112456321716309,0.003770004367396576,1.0,1.0,0.40435791015625,0.40423583984375,0.37322998046875,0,0,0.3119279444217682,0.35682815313339233,1.3966388702392578,0.6429001092910767,0.6011849641799927,0.8043816089630127,0.42138671875,0.3941812813282013,4,0 +608,0.8384773135185242,0.839981734752655,0.0015044212341308594,0.009313993389426404,1.0,1.0,0.40423583984375,0.40399169921875,0.37420654296875,0,0,0.3120937943458557,0.3579223155975342,1.3937236070632935,0.6393775343894958,0.6023774147033691,0.8054094910621643,0.4248046875,0.39773619174957275,4,4 +609,0.839981734752655,0.84083092212677,0.0008491873741149902,0.0053068152738837415,1.0,1.0,0.40399169921875,0.40386962890625,0.37359619140625,0,0,0.31251227855682373,0.3571024239063263,1.3920867443084717,0.6410062909126282,0.6030441522598267,0.8049737215042114,0.42431640625,0.3977070152759552,4,4 +610,0.84083092212677,0.8410433530807495,0.0002124309539794922,0.0013346245188948231,1.0,1.0,0.40386962890625,0.40362548828125,0.373291015625,0,0,0.3127441704273224,0.35679203271865845,1.3916785717010498,0.6415086388587952,0.60321044921875,0.8048562407493591,0.42529296875,0.39817172288894653,4,4 +611,0.8410433530807495,0.8437041640281677,0.002660810947418213,0.01673922417833774,1.0,1.0,0.40362548828125,0.40289306640625,0.373779296875,0,0,0.3128017485141754,0.35757607221603394,1.3863893747329712,0.639148473739624,0.6053366661071777,0.8055592775344849,0.42724609375,0.4003656506538391,4,4 +612,0.8437041640281677,0.8445199728012085,0.0008158087730407715,0.005219644963464011,1.0,1.0,0.40289306640625,0.40264892578125,0.372314453125,0,0,0.3135363459587097,0.3560698628425598,1.3847934007644653,0.6422813534736633,0.6059802770614624,0.8047196865081787,0.4267578125,0.4002879858016968,4,4 +613,0.8445199728012085,0.84600830078125,0.001488327980041504,0.009572470540788998,1.0,1.0,0.40264892578125,0.4022216796875,0.3724365234375,0,0,0.31375378370285034,0.35635942220687866,1.3818310499191284,0.6410910487174988,0.6071640253067017,0.8050881028175354,0.4287109375,0.4019673466682434,4,4 +614,0.84600830078125,0.8467574119567871,0.0007491111755371094,0.004864620491478399,1.0,1.0,0.4022216796875,0.40185546875,0.3721923828125,0,0,0.314153254032135,0.35570842027664185,1.3803448677062988,0.6422688364982605,0.6077582836151123,0.8048108220100403,0.4287109375,0.40247082710266113,0,4 +615,0.8467574119567871,0.847652792930603,0.000895380973815918,0.005842899061215472,1.0,1.0,0.40185546875,0.40167236328125,0.37152099609375,0,0,0.3143511712551117,0.35523542761802673,1.378568410873413,0.643372654914856,0.6084685921669006,0.8045185804367065,0.4287109375,0.4023537039756775,0,4 +616,0.847652792930603,0.8506975769996643,0.0030447840690612793,0.019985821385450957,1.0,1.0,0.40167236328125,0.40093994140625,0.3720703125,0,0,0.31458500027656555,0.35636430978775024,1.3722625970840454,0.6397190690040588,0.6109507083892822,0.8055917024612427,0.4326171875,0.406203955411911,0,4 +617,0.8506975769996643,0.8516843318939209,0.0009867548942565918,0.006609101677166841,1.0,1.0,0.40093994140625,0.4005126953125,0.3714599609375,0,0,0.31540292501449585,0.35521525144577026,1.370235800743103,0.6417573094367981,0.6117486953735352,0.8050405979156494,0.435546875,0.4076859951019287,0,4 +618,0.8516843318939209,0.8519859313964844,0.00030159950256347656,0.0020334972455355494,1.0,1.0,0.4005126953125,0.400390625,0.37115478515625,0,0,0.3156604766845703,0.3546701967716217,1.3696194887161255,0.6428613662719727,0.6119919419288635,0.8047064542770386,0.43505859375,0.4078332185745239,0,4 +619,0.8519859313964844,0.8543764352798462,0.0023905038833618164,0.01615051802788588,1.0,1.0,0.400390625,0.39971923828125,0.37109375,0,0,0.31573811173439026,0.35480207204818726,1.3646267652511597,0.6424942016601562,0.6139463186264038,0.8048578500747681,0.4365234375,0.4083011746406555,0,4 +620,0.8543764352798462,0.8555328845977783,0.001156449317932129,0.007941361139967207,1.0,1.0,0.39971923828125,0.3997802734375,0.37042236328125,0,0,0.31635555624961853,0.3539101779460907,1.362221121788025,0.6441588401794434,0.6148859262466431,0.8043884038925171,0.43701171875,0.4094502329826355,0,4 +621,0.8555328845977783,0.8558468222618103,0.0003139376640319824,0.0021730735272032335,1.0,1.0,0.3997802734375,0.39984130859375,0.36962890625,0,0,0.3166472315788269,0.35322847962379456,1.3615729808807373,0.6456370949745178,0.6151394844055176,0.8039780259132385,0.43701171875,0.40945547819137573,0,4 +622,0.8558468222618103,0.8563107252120972,0.00046390295028686523,0.003218125035921189,1.0,1.0,0.39984130859375,0.39984130859375,0.36956787109375,0,0,0.3167249262332916,0.35323941707611084,1.3606114387512207,0.6454581022262573,0.615514874458313,0.804052472114563,0.4365234375,0.40995413064956665,0,4 +623,0.8563107252120972,0.8567695617675781,0.00045883655548095703,0.003193255419781591,1.0,1.0,0.39984130859375,0.3995361328125,0.3692626953125,0,0,0.3168397843837738,0.3531278669834137,1.3596580028533936,0.6456423401832581,0.6158870458602905,0.8040120601654053,0.4375,0.41031259298324585,0,4 +624,0.8567695617675781,0.8568958044052124,0.00012624263763427734,0.0008813953178682717,1.0,1.0,0.3995361328125,0.39971923828125,0.36883544921875,0,0,0.31695303320884705,0.3528403639793396,1.3593964576721191,0.6462541222572327,0.6159892082214355,0.8038583993911743,0.4375,0.41031259298324585,0,4 +625,0.8568958044052124,0.8604335188865662,0.0035377144813537598,0.0247212492034204,1.0,1.0,0.39971923828125,0.39923095703125,0.37030029296875,0,0,0.3169839382171631,0.3540295362472534,1.351703405380249,0.6427950859069824,0.6189342737197876,0.8048615455627441,0.43994140625,0.4130150377750397,0,4 +626,0.8604335188865662,0.8606248497962952,0.0001913309097290039,0.0013708944167869224,1.0,1.0,0.39923095703125,0.39898681640625,0.36859130859375,0,0,0.3178795874118805,0.351909339427948,1.35129976272583,0.6471248865127563,0.6190900802612305,0.8037863969802856,0.43994140625,0.4130150377750397,0,4 +627,0.8606248497962952,0.8610044717788696,0.0003796219825744629,0.002723742231090861,1.0,1.0,0.39898681640625,0.3988037109375,0.36834716796875,0,0,0.3179250955581665,0.3518083095550537,1.3504974842071533,0.6473467350006104,0.619399905204773,0.803731381893158,0.4404296875,0.41303324699401855,0,4 +628,0.8610044717788696,0.861491858959198,0.00048738718032836914,0.003506495400002916,1.0,1.0,0.3988037109375,0.3988037109375,0.368408203125,0,0,0.3180151581764221,0.35206231474876404,1.3494576215744019,0.6463847756385803,0.6197998523712158,0.8040305972099304,0.4423828125,0.414303183555603,0,4 +629,0.861491858959198,0.8632000684738159,0.00170820951461792,0.012332917774953836,1.0,1.0,0.3988037109375,0.3988037109375,0.36871337890625,0,0,0.318131685256958,0.35262560844421387,1.3457242250442505,0.6446410417556763,0.6212203502655029,0.8045533895492554,0.4453125,0.4160749316215515,0,4 +630,0.8632000684738159,0.8636163473129272,0.0004162788391113281,0.0030429754932417537,1.0,1.0,0.3988037109375,0.3985595703125,0.367919921875,0,0,0.31854695081710815,0.35158514976501465,1.3448255062103271,0.6466940641403198,0.6215624809265137,0.8040536642074585,0.44580078125,0.41607311367988586,0,4 +631,0.8636163473129272,0.8641136884689331,0.0004973411560058594,0.0036466332013191513,1.0,1.0,0.3985595703125,0.39825439453125,0.36773681640625,0,0,0.31864500045776367,0.35134243965148926,1.3437507152557373,0.6471856832504272,0.6219709515571594,0.8039247989654541,0.44580078125,0.41608256101608276,0,4 +632,0.8641136884689331,0.8643839359283447,0.0002702474594116211,0.0019887761789003744,1.0,1.0,0.39825439453125,0.39825439453125,0.36761474609375,0,0,0.3187611997127533,0.3510715961456299,1.343167781829834,0.6476728320121765,0.6221928596496582,0.8038101196289062,0.4453125,0.41617149114608765,0,4 +633,0.8643839359283447,0.8646798133850098,0.00029587745666503906,0.0021817286815572724,1.0,1.0,0.39825439453125,0.39813232421875,0.36737060546875,0,0,0.31882381439208984,0.35091376304626465,1.342529058456421,0.6479628682136536,0.6224358081817627,0.8037405014038086,0.4453125,0.416159451007843,0,4 +634,0.8646798133850098,0.864861011505127,0.0001811981201171875,0.0013390324433465944,1.0,1.0,0.39813232421875,0.398193359375,0.36749267578125,0,0,0.3188920021057129,0.35126161575317383,1.3421351909637451,0.6468273401260376,0.6225854158401489,0.8040938377380371,0.4462890625,0.4174996316432953,0,4 +635,0.864861011505127,0.8649102449417114,4.9233436584472656e-05,0.0003643170422748909,1.0,1.0,0.398193359375,0.39813232421875,0.367431640625,0,0,0.31893420219421387,0.35114145278930664,1.3420283794403076,0.6470407247543335,0.6226260662078857,0.8040487766265869,0.4462890625,0.4174996316432953,0,4 +636,0.8649102449417114,0.865429699420929,0.0005194544792175293,0.003845254430977352,1.0,1.0,0.39813232421875,0.3978271484375,0.36724853515625,0,0,0.31894564628601074,0.35115090012550354,1.3408949375152588,0.6469890475273132,0.6230566501617432,0.8040738701820374,0.44580078125,0.4175085425376892,0,4 +637,0.865429699420929,0.8655908107757568,0.00016111135482788086,0.0011972281709604622,1.0,1.0,0.3978271484375,0.39794921875,0.3670654296875,0,0,0.31906625628471375,0.35084205865859985,1.340544581413269,0.6476049423217773,0.6231898069381714,0.8039087057113647,0.44580078125,0.4175136387348175,0,4 +638,0.8655908107757568,0.8658792972564697,0.0002884864807128906,0.0021463300417026605,1.0,1.0,0.39794921875,0.39788818359375,0.36737060546875,0,0,0.31910330057144165,0.35125431418418884,1.3399115800857544,0.6463963985443115,0.6234296560287476,0.8042701482772827,0.447265625,0.4186921715736389,0,4 +639,0.8658792972564697,0.8668102025985718,0.0009309053421020508,0.0069408027475233005,1.0,1.0,0.39788818359375,0.3978271484375,0.36767578125,0,0,0.3191705048084259,0.35111987590789795,1.3378548622131348,0.6466037631034851,0.6242050528526306,0.8042405843734741,0.447265625,0.4187038838863373,0,4 +640,0.8668102025985718,0.8668704032897949,6.020069122314453e-05,0.00045199176211449803,1.0,1.0,0.3978271484375,0.39776611328125,0.3668212890625,0,0,0.31938642263412476,0.35053953528404236,1.3377230167388916,0.6477042436599731,0.6242547035217285,0.80398029088974,0.447265625,0.41870617866516113,0,4 +641,0.8668704032897949,0.8670033812522888,0.00013297796249389648,0.0009988610029621086,1.0,1.0,0.39776611328125,0.397705078125,0.36676025390625,0,0,0.3194001317024231,0.3505101799964905,1.3374313116073608,0.6477669477462769,0.6243646144866943,0.8039657473564148,0.44775390625,0.4187018871307373,0,4 +642,0.8670033812522888,0.8676261305809021,0.0006227493286132812,0.004682444820605625,1.0,1.0,0.397705078125,0.397705078125,0.3671875,0,0,0.3194303512573242,0.3507854640483856,1.3360517024993896,0.646933913230896,0.6248819828033447,0.8042178153991699,0.4482421875,0.4194599390029907,0,4 +643,0.8676261305809021,0.868192195892334,0.0005660653114318848,0.004276261726849673,1.0,1.0,0.397705078125,0.39764404296875,0.366455078125,0,0,0.31957319378852844,0.3504544198513031,1.3347973823547363,0.6475168466567993,0.62535160779953,0.8041027784347534,0.4482421875,0.4194738566875458,0,4 +644,0.868192195892334,0.8686953783035278,0.0005031824111938477,0.003817546423752175,1.0,1.0,0.39764404296875,0.39752197265625,0.3658447265625,0,0,0.319701611995697,0.3500913381576538,1.3336827754974365,0.6481655836105347,0.6257684826850891,0.8039764165878296,0.4482421875,0.4194459915161133,0,4 +645,0.8686953783035278,0.8712034821510315,0.002508103847503662,0.019101413302126353,1.0,1.0,0.39752197265625,0.39642333984375,0.3662109375,0,0,0.3198143541812897,0.35055941343307495,1.3279578685760498,0.6467668414115906,0.6278812885284424,0.8044378757476807,0.44775390625,0.4211518466472626,0,4 +646,0.8712034821510315,0.8728624582290649,0.0016589760780334473,0.012880597284305646,1.0,1.0,0.39642333984375,0.39654541015625,0.36627197265625,0,0,0.320385217666626,0.3503767251968384,1.3241164684295654,0.6457605361938477,0.6292853355407715,0.8049281239509583,0.4521484375,0.42432701587677,0,4 +647,0.8728624582290649,0.8730243444442749,0.00016188621520996094,0.0012733155994287895,1.0,1.0,0.39654541015625,0.39654541015625,0.3653564453125,0,0,0.3207602798938751,0.34935033321380615,1.3237464427947998,0.6477131843566895,0.6294207572937012,0.8044764399528503,0.4521484375,0.42432701587677,0,4 +648,0.8730243444442749,0.87337327003479,0.0003489255905151367,0.002747972349408393,1.0,1.0,0.39654541015625,0.396484375,0.3653564453125,0,0,0.32079553604125977,0.3492533564567566,1.3229478597640991,0.6479419469833374,0.6297125816345215,0.8044260740280151,0.451171875,0.4243442118167877,0,4 +649,0.87337327003479,0.874754011631012,0.0013807415962219238,0.010904029477830434,1.0,1.0,0.396484375,0.39593505859375,0.36572265625,0,0,0.3208712935447693,0.3492850661277771,1.3197441101074219,0.6476708650588989,0.630873441696167,0.8045284748077393,0.4521484375,0.42478469014167786,0,4 +650,0.874754011631012,0.874768853187561,1.4841556549072266e-05,0.00011849925688116619,1.0,1.0,0.39593505859375,0.39593505859375,0.3646240234375,0,0,0.3211714029312134,0.3484150767326355,1.3197101354599,0.6493561267852783,0.630885660648346,0.8040816187858582,0.4521484375,0.42478469014167786,0,0 +651,0.874768853187561,0.8752576112747192,0.0004887580871582031,0.0039028476509140753,1.0,1.0,0.39593505859375,0.3955078125,0.3646240234375,0,0,0.3211745321750641,0.3484003245830536,1.3185850381851196,0.6493639349937439,0.6312925815582275,0.8040876388549805,0.45166015625,0.4248034954071045,0,0 +652,0.8752576112747192,0.8759356737136841,0.0006780624389648438,0.005435701896475108,1.0,1.0,0.3955078125,0.3955078125,0.3643798828125,0,0,0.3212772607803345,0.348322331905365,1.3170150518417358,0.6492750644683838,0.6318594217300415,0.8041282296180725,0.4521484375,0.4252948760986328,0,4 +653,0.8759356737136841,0.8763185143470764,0.000382840633392334,0.0030858236598070386,1.0,1.0,0.3955078125,0.39544677734375,0.36431884765625,0,0,0.3214193880558014,0.34793490171432495,1.3161308765411377,0.6500378847122192,0.6321778893470764,0.8039188385009766,0.451171875,0.4253295660018921,0,4 +654,0.8763185143470764,0.877174973487854,0.0008564591407775879,0.006924715823522637,1.0,1.0,0.39544677734375,0.39520263671875,0.364501953125,0,0,0.32149842381477356,0.34838807582855225,1.3141217231750488,0.6486815214157104,0.6328979730606079,0.8043602108955383,0.45458984375,0.42684701085090637,0,4 +655,0.877174973487854,0.8787075281143188,0.0015325546264648438,0.012477543624330433,1.0,1.0,0.39520263671875,0.394775390625,0.364501953125,0,0,0.3216783404350281,0.34826409816741943,1.3104785680770874,0.6485743522644043,0.6341962814331055,0.8044017553329468,0.45458984375,0.42774632573127747,0,4 +656,0.8787075281143188,0.8797498941421509,0.0010423660278320312,0.008593822944052679,1.0,1.0,0.394775390625,0.3948974609375,0.36370849609375,0,0,0.321998655796051,0.34744974970817566,1.3080062866210938,0.6501114368438721,0.6350736618041992,0.8039970397949219,0.45556640625,0.42802125215530396,0,4 +657,0.8797498941421509,0.8802516460418701,0.0005017518997192383,0.004172569297463844,1.0,1.0,0.3948974609375,0.394775390625,0.36297607421875,0,0,0.3222094774246216,0.3467727303504944,1.3068227767944336,0.651506781578064,0.6354937553405762,0.8036199808120728,0.455078125,0.4279897212982178,0,4 +658,0.8802516460418701,0.8808024525642395,0.0005508065223693848,0.0045997001558950425,1.0,1.0,0.394775390625,0.3946533203125,0.362548828125,0,0,0.32230815291404724,0.3464787006378174,1.3055222034454346,0.6520453095436096,0.6359550952911377,0.8034570217132568,0.455078125,0.4280449450016022,0,4 +659,0.8808024525642395,0.8822553753852844,0.0014529228210449219,0.012189200636262672,1.0,1.0,0.3946533203125,0.39453125,0.36285400390625,0,0,0.3224150538444519,0.3470001518726349,1.3020118474960327,0.650387704372406,0.6371897459030151,0.8039659857749939,0.45654296875,0.4298942983150482,0,4 +660,0.8822553753852844,0.8823457956314087,9.042024612426758e-05,0.0007679352362805611,1.0,1.0,0.39453125,0.39453125,0.3624267578125,0,0,0.32270342111587524,0.34605371952056885,1.3017964363098145,0.6522470116615295,0.6372655034065247,0.8034537434577942,0.4560546875,0.4298873841762543,0,0 +661,0.8823457956314087,0.8825705647468567,0.00022476911544799805,0.0019104214477863733,1.0,1.0,0.39453125,0.39434814453125,0.36224365234375,0,0,0.32272064685821533,0.34601467847824097,1.3012598752975464,0.6523653864860535,0.6374539136886597,0.8034142255783081,0.4560546875,0.42990466952323914,0,0 +662,0.8825705647468567,0.8828155398368835,0.00024497509002685547,0.002086147221084401,1.0,1.0,0.39434814453125,0.39422607421875,0.3624267578125,0,0,0.3227633833885193,0.34585070610046387,1.3006749153137207,0.652668833732605,0.6376592516899109,0.8033339977264404,0.4560546875,0.4298918545246124,0,0 +663,0.8828155398368835,0.8829243183135986,0.00010877847671508789,0.0009282670804957608,1.0,1.0,0.39422607421875,0.39422607421875,0.3621826171875,0,0,0.3228095769882202,0.3457355201244354,1.3004155158996582,0.6528897285461426,0.6377503871917725,0.8032785654067993,0.45654296875,0.429930180311203,0,0 +664,0.8829243183135986,0.8835330605506897,0.0006087422370910645,0.005199561756314517,1.0,1.0,0.39422607421875,0.39385986328125,0.36224365234375,0,0,0.3228299617767334,0.3456636965274811,1.2989556789398193,0.6530425548553467,0.638262152671814,0.8032279014587402,0.4560546875,0.42992696166038513,0,0 +665,0.8835330605506897,0.8840518593788147,0.000518798828125,0.004454472922342017,1.0,1.0,0.39385986328125,0.39361572265625,0.3629150390625,0,0,0.32294386625289917,0.34638649225234985,1.2976888418197632,0.6506926417350769,0.6387051939964294,0.8038946986198425,0.458984375,0.43258488178253174,0,0 +666,0.8840518593788147,0.8850575685501099,0.001005709171295166,0.008673784382458732,1.0,1.0,0.39361572265625,0.3931884765625,0.3629150390625,0,0,0.3230441212654114,0.34633105993270874,1.2952097654342651,0.650627613067627,0.6395691633224487,0.8039287328720093,0.46044921875,0.43316811323165894,0,0 +667,0.8850575685501099,0.8854530453681946,0.0003954768180847168,0.0034406512294559155,1.0,1.0,0.3931884765625,0.39324951171875,0.36212158203125,0,0,0.32323789596557617,0.34570378065109253,1.2942404747009277,0.6517795324325562,0.6399056911468506,0.8036242723464966,0.4609375,0.4331831932067871,0,0 +668,0.8854530453681946,0.8855667114257812,0.00011366605758666992,0.0009923097296827574,1.0,1.0,0.39324951171875,0.39324951171875,0.3619384765625,0,0,0.3233119249343872,0.3454512655735016,1.2939624786376953,0.6523036360740662,0.6400020122528076,0.8034728765487671,0.4609375,0.4331839680671692,0,0 +669,0.8855667114257812,0.8871399760246277,0.0015732645988464355,0.0137483123874925,1.0,1.0,0.39324951171875,0.393310546875,0.36212158203125,0,0,0.3233329951763153,0.34576335549354553,1.290036916732788,0.6514269113540649,0.6413553953170776,0.8037481307983398,0.462890625,0.4340127408504486,0,0 +670,0.8871399760246277,0.8873932361602783,0.00025326013565063477,0.002244019863985673,1.0,1.0,0.393310546875,0.39337158203125,0.36126708984375,0,0,0.323628306388855,0.34472349286079407,1.2894134521484375,0.6534422636032104,0.6415698528289795,0.8031773567199707,0.46240234375,0.4340187609195709,0,0 +671,0.8873932361602783,0.887658417224884,0.0002651810646057129,0.0023549301619497486,1.0,1.0,0.39337158203125,0.39306640625,0.3616943359375,0,0,0.3236735165119171,0.3450295925140381,1.2887556552886963,0.652496337890625,0.6417955160140991,0.8034497499465942,0.46337890625,0.4350201487541199,0,0 +672,0.887658417224884,0.8917864561080933,0.0041280388832092285,0.036745422142330744,1.0,1.0,0.39306640625,0.39190673828125,0.362060546875,0,0,0.3237215578556061,0.34517014026641846,1.2780669927597046,0.6521048545837402,0.645415723323822,0.8035956025123596,0.46630859375,0.43549853563308716,0,4 +673,0.8917864561080933,0.8920695185661316,0.0002830624580383301,0.0026157766196168377,1.0,1.0,0.39190673828125,0.391845703125,0.3587646484375,0,0,0.32447460293769836,0.3424451947212219,1.2773641347885132,0.6572012305259705,0.645653486251831,0.8020627498626709,0.46630859375,0.43551987409591675,0,0 +674,0.8920695185661316,0.8920881748199463,1.8656253814697266e-05,0.00017285435557079767,1.0,1.0,0.391845703125,0.391845703125,0.3585205078125,0,0,0.3245190382003784,0.3422572612762451,1.277318000793457,0.6575481295585632,0.6456691026687622,0.8019524812698364,0.46630859375,0.43551987409591675,0,1 +675,0.8920881748199463,0.8921219706535339,3.3795833587646484e-05,0.0003131800757818455,1.0,1.0,0.391845703125,0.391845703125,0.35858154296875,0,0,0.32452192902565,0.34225934743881226,1.2772343158721924,0.6575809717178345,0.6456973552703857,0.8019397258758545,0.46630859375,0.43551546335220337,0,0 +676,0.8921219706535339,0.892235517501831,0.00011354684829711914,0.0010525484103203891,1.0,1.0,0.391845703125,0.391845703125,0.35858154296875,0,0,0.32452720403671265,0.3422362804412842,1.2769529819488525,0.6576277017593384,0.6457923054695129,0.8019235134124756,0.46630859375,0.43555140495300293,0,0 +677,0.892235517501831,0.8931076526641846,0.0008721351623535156,0.008092974068411958,1.0,1.0,0.391845703125,0.391845703125,0.35931396484375,0,0,0.3245447874069214,0.343423068523407,1.2747275829315186,0.6544369459152222,0.6465364694595337,0.8028188943862915,0.47021484375,0.43825405836105347,0,0 +678,0.8931076526641846,0.8939509391784668,0.0008432865142822266,0.007889119617075472,1.0,1.0,0.391845703125,0.3912353515625,0.35888671875,0,0,0.3246895670890808,0.3428739309310913,1.272576093673706,0.655465841293335,0.647253155708313,0.802479088306427,0.47021484375,0.4383193850517273,0,0 +679,0.8939509391784668,0.894329845905304,0.0003789067268371582,0.0035729380713216217,1.0,1.0,0.3912353515625,0.3907470703125,0.358154296875,0,0,0.32482513785362244,0.34229934215545654,1.2716144323349,0.656491219997406,0.6475734710693359,0.8021434545516968,0.47021484375,0.43834835290908813,0,1 +680,0.894329845905304,0.8944167494773865,8.690357208251953e-05,0.0008224041388701025,1.0,1.0,0.3907470703125,0.39068603515625,0.35797119140625,0,0,0.32488396763801575,0.3420518636703491,1.2713947296142578,0.656947672367096,0.6476466655731201,0.801991879940033,0.47021484375,0.43834149837493896,0,1 +681,0.8944167494773865,0.8945281505584717,0.00011140108108520508,0.0010551018322867934,1.0,1.0,0.39068603515625,0.39056396484375,0.35809326171875,0,0,0.32489725947380066,0.34199225902557373,1.2711126804351807,0.6570450067520142,0.647740364074707,0.8019658327102661,0.47021484375,0.43834367394447327,0,1 +682,0.8945281505584717,0.8955740928649902,0.0010459423065185547,0.009916791182261445,1.0,1.0,0.39056396484375,0.39056396484375,0.359375,0,0,0.32491421699523926,0.34308338165283203,1.2683864831924438,0.6540701985359192,0.6486397981643677,0.8027835488319397,0.47119140625,0.44077834486961365,0,1 +683,0.8955740928649902,0.8963954448699951,0.0008213520050048828,0.00786540454892076,1.0,1.0,0.39056396484375,0.390380859375,0.358642578125,0,0,0.3250843286514282,0.34241458773612976,1.2662502527236938,0.6552168726921082,0.6493431925773621,0.8023957014083862,0.47119140625,0.4408118724822998,0,4 +684,0.8963954448699951,0.8970786929130554,0.0006832480430603027,0.006594768369044688,1.0,1.0,0.390380859375,0.3900146484375,0.35760498046875,0,0,0.3252125680446625,0.3417820334434509,1.264479637145996,0.6564196348190308,0.6499263048171997,0.802025556564331,0.47119140625,0.44062554836273193,0,4 +685,0.8970786929130554,0.8972272872924805,0.00014859437942504883,0.0014437669286450191,1.0,1.0,0.3900146484375,0.38995361328125,0.35711669921875,0,0,0.325314998626709,0.3412960469722748,1.2640972137451172,0.6572543382644653,0.6500523090362549,0.8017603158950806,0.47119140625,0.4406180679798126,0,4 +686,0.8972272872924805,0.8986797332763672,0.0014524459838867188,0.014132603349881687,1.0,1.0,0.38995361328125,0.38922119140625,0.35845947265625,0,0,0.3253365755081177,0.34232404828071594,1.2602338790893555,0.654507040977478,0.6513159871101379,0.8025498986244202,0.47216796875,0.4429911673069,0,4 +687,0.8986797332763672,0.9008511304855347,0.0021713972091674805,0.02143102539485326,1.0,1.0,0.38922119140625,0.387939453125,0.3575439453125,0,0,0.32556188106536865,0.34139251708984375,1.2544069290161133,0.6559584140777588,0.6532056331634521,0.8020861744880676,0.47265625,0.44306331872940063,0,4 +688,0.9008511304855347,0.9010977149009705,0.000246584415435791,0.0024870118705671734,1.0,1.0,0.387939453125,0.3880615234375,0.356201171875,0,0,0.32587844133377075,0.3402676582336426,1.2537562847137451,0.6572279930114746,0.6534157395362854,0.8016188740730286,0.47314453125,0.4438168704509735,0,4 +689,0.9010977149009705,0.9011443853378296,4.667043685913086e-05,0.00047188431301056766,1.0,1.0,0.3880615234375,0.387939453125,0.35595703125,0,0,0.3259115219116211,0.3400897979736328,1.2536336183547974,0.6575136184692383,0.6534554362297058,0.8015243411064148,0.47314453125,0.4438001811504364,0,4 +690,0.9011443853378296,0.9021283388137817,0.0009839534759521484,0.009953440472902982,1.0,1.0,0.387939453125,0.3875732421875,0.3558349609375,0,0,0.32591769099235535,0.3400556445121765,1.251016616821289,0.6575978398323059,0.6542996168136597,0.8015087246894836,0.47314453125,0.4437503516674042,0,4 +691,0.9021283388137817,0.9023478031158447,0.00021946430206298828,0.0022423682136693108,1.0,1.0,0.3875732421875,0.38775634765625,0.35479736328125,0,0,0.3260475695133209,0.3393612504005432,1.2504388093948364,0.6586583852767944,0.6544857025146484,0.8011658191680908,0.47314453125,0.4437580108642578,0,4 +692,0.9023478031158447,0.9026564359664917,0.00030863285064697266,0.003160531565030775,1.0,1.0,0.38775634765625,0.38763427734375,0.3544921875,0,0,0.3260749578475952,0.3391965925693512,1.2496250867843628,0.658862829208374,0.6547472476959229,0.8010995388031006,0.47314453125,0.4437805414199829,0,4 +693,0.9026564359664917,0.9027127623558044,5.632638931274414e-05,0.0005786349603282973,1.0,1.0,0.38763427734375,0.38763427734375,0.354248046875,0,0,0.32611292600631714,0.33900439739227295,1.2494770288467407,0.6591571569442749,0.6547948122024536,0.8010115027427673,0.47314453125,0.4437790513038635,0,1 +694,0.9027127623558044,0.9035613536834717,0.0008485913276672363,0.00872253492046668,1.0,1.0,0.38763427734375,0.38702392578125,0.35418701171875,0,0,0.3261197507381439,0.3389967083930969,1.2472236156463623,0.6591237783432007,0.6555167436599731,0.801018476486206,0.47314453125,0.44381600618362427,0,4 +695,0.9035613536834717,0.9042346477508545,0.0006732940673828125,0.006981579409285204,1.0,1.0,0.38702392578125,0.38677978515625,0.3546142578125,0,0,0.32622238993644714,0.33915090560913086,1.2454172372817993,0.6580040454864502,0.6560940146446228,0.8013237714767456,0.4736328125,0.4453321099281311,0,1 +696,0.9042346477508545,0.9045437574386597,0.0003091096878051758,0.0032277820792742285,1.0,1.0,0.38677978515625,0.38671875,0.35400390625,0,0,0.3263047933578491,0.3386749029159546,1.2445917129516602,0.6586487293243408,0.6563577651977539,0.8011360168457031,0.4736328125,0.4453510642051697,0,4 +697,0.9045437574386597,0.9055061340332031,0.000962376594543457,0.01008186126669539,1.0,1.0,0.38671875,0.38641357421875,0.354248046875,0,0,0.32634109258651733,0.3385174870491028,1.2419986724853516,0.6587522029876709,0.6571844220161438,0.8011070489883423,0.474609375,0.4454076886177063,0,4 +698,0.9055061340332031,0.9093114137649536,0.0038052797317504883,0.04027012433894473,1.0,1.0,0.38641357421875,0.3853759765625,0.35565185546875,0,0,0.326452374458313,0.3394891619682312,1.2310967445373535,0.6553745269775391,0.6606091260910034,0.8020887970924377,0.4775390625,0.44873297214508057,0,4 +699,0.9093114137649536,0.909832775592804,0.0005213618278503418,0.005748924418107896,1.0,1.0,0.3853759765625,0.385498046875,0.3538818359375,0,0,0.3269309401512146,0.33726567029953003,1.2296531200408936,0.6572473645210266,0.6610607504844666,0.8014674186706543,0.4775390625,0.4496583342552185,0,4 +700,0.909832775592804,0.9100246429443359,0.00019186735153198242,0.00212790570845907,1.0,1.0,0.385498046875,0.385498046875,0.353271484375,0,0,0.32698339223861694,0.3368799090385437,1.2291240692138672,0.6576696634292603,0.6612258553504944,0.8013460040092468,0.4775390625,0.44968268275260925,0,0 +701,0.9100246429443359,0.9108558297157288,0.0008311867713928223,0.009237938015390159,1.0,1.0,0.385498046875,0.385498046875,0.3533935546875,0,0,0.3270018398761749,0.33683621883392334,1.226808786392212,0.657519519329071,0.6619439125061035,0.8013843894004822,0.47802734375,0.4498535096645355,0,0 +702,0.9108558297157288,0.9110920429229736,0.00023621320724487305,0.00264978861199352,1.0,1.0,0.385498046875,0.3853759765625,0.3525390625,0,0,0.3270813226699829,0.3362226188182831,1.2261563539505005,0.658145546913147,0.6621462106704712,0.8012105226516724,0.47802734375,0.4498664140701294,0,0 +703,0.9110920429229736,0.9114856719970703,0.0003936290740966797,0.004427377335367799,1.0,1.0,0.3853759765625,0.38519287109375,0.3524169921875,0,0,0.3271022439002991,0.3360523581504822,1.2250666618347168,0.6582438945770264,0.6624836921691895,0.8011764883995056,0.4775390625,0.4498552680015564,0,0 +704,0.9114856719970703,0.9118984341621399,0.0004127621650695801,0.004663224298058483,1.0,1.0,0.38519287109375,0.384521484375,0.3521728515625,0,0,0.3271363079547882,0.33594268560409546,1.223920226097107,0.6580745577812195,0.662838876247406,0.8012343645095825,0.47802734375,0.45018669962882996,0,0 +705,0.9118984341621399,0.9136633276939392,0.0017648935317993164,0.020032487675047478,1.0,1.0,0.384521484375,0.38372802734375,0.35260009765625,0,0,0.32717156410217285,0.3361380100250244,1.2188801765441895,0.6570032835006714,0.6643859148025513,0.801538348197937,0.4775390625,0.45107248425483704,0,0 +706,0.9136633276939392,0.9141601920127869,0.0004968643188476562,0.005754962585149076,1.0,1.0,0.38372802734375,0.38348388671875,0.3511962890625,0,0,0.3273259401321411,0.3348323702812195,1.2174862623214722,0.6579794883728027,0.6648098230361938,0.801241934299469,0.4775390625,0.4511515498161316,0,0 +707,0.9141601920127869,0.9150646924972534,0.0009045004844665527,0.010537074880238419,1.0,1.0,0.38348388671875,0.38323974609375,0.35101318359375,0,0,0.32736170291900635,0.3346184194087982,1.21492600440979,0.657755434513092,0.6655870676040649,0.8013020753860474,0.47802734375,0.4515153169631958,0,0 +708,0.9150646924972534,0.9160370826721191,0.0009723901748657227,0.011448597802913449,1.0,1.0,0.38323974609375,0.38299560546875,0.35089111328125,0,0,0.327424556016922,0.33447587490081787,1.2121418714523315,0.6568360924720764,0.6664273142814636,0.80156409740448,0.478515625,0.4524979889392853,0,0 +709,0.9160370826721191,0.9160551428794861,1.806020736694336e-05,0.0002150974256458602,1.0,1.0,0.38299560546875,0.38299560546875,0.34991455078125,0,0,0.32749027013778687,0.33371275663375854,1.2120909690856934,0.6572041511535645,0.6664426326751709,0.8014819025993347,0.47802734375,0.4525088369846344,0,0 +710,0.9160551428794861,0.9161251187324524,6.99758529663086e-05,0.0008335930915440004,1.0,1.0,0.38299560546875,0.38299560546875,0.3497314453125,0,0,0.3274913430213928,0.3336943984031677,1.2118932008743286,0.6572577953338623,0.666502058506012,0.8014605641365051,0.47802734375,0.4525088369846344,0,0 +711,0.9161251187324524,0.9178948998451233,0.0017697811126708984,0.021100251778903584,1.0,1.0,0.38299560546875,0.382568359375,0.35009765625,0,0,0.32749542593955994,0.33370986580848694,1.2067586183547974,0.657132625579834,0.6680322885513306,0.8015033006668091,0.47900390625,0.4525354206562042,0,0 +712,0.9178948998451233,0.9184468984603882,0.0005519986152648926,0.006723073404985136,1.0,1.0,0.382568359375,0.38226318359375,0.348388671875,0,0,0.3275987207889557,0.3326992988586426,1.2051723003387451,0.6565901637077332,0.6684994101524353,0.8017075061798096,0.4794921875,0.453301340341568,0,0 +713,0.9184468984603882,0.9187096953392029,0.00026279687881469727,0.003222402016029422,1.0,1.0,0.38226318359375,0.3824462890625,0.34918212890625,0,0,0.32762402296066284,0.3334464430809021,1.2044023275375366,0.6535583138465881,0.6687259674072266,0.802556037902832,0.482421875,0.4556088447570801,0,4 +714,0.9187096953392029,0.919014573097229,0.00030487775802612305,0.0037504811834362913,1.0,1.0,0.3824462890625,0.38232421875,0.34893798828125,0,0,0.32763850688934326,0.33316275477409363,1.2035092115402222,0.6537961959838867,0.6689889430999756,0.8025107383728027,0.4814453125,0.4554571509361267,0,4 +715,0.919014573097229,0.9193025827407837,0.0002880096435546875,0.0035563144453194576,1.0,1.0,0.38232421875,0.38214111328125,0.3485107421875,0,0,0.3276542127132416,0.3329458236694336,1.2026652097702026,0.6537700891494751,0.6692367792129517,0.8025137186050415,0.48193359375,0.4554559588432312,0,4 +716,0.9193025827407837,0.9200990200042725,0.0007964372634887695,0.009869426935070959,1.0,1.0,0.38214111328125,0.38201904296875,0.34857177734375,0,0,0.32766830921173096,0.3327404856681824,1.2003095149993896,0.653679370880127,0.6699228882789612,0.8025264143943787,0.48193359375,0.45546668767929077,0,4 +717,0.9200990200042725,0.9206088185310364,0.000509798526763916,0.006380378898871778,1.0,1.0,0.38201904296875,0.38165283203125,0.34796142578125,0,0,0.32770514488220215,0.3320794105529785,1.1988061666488647,0.6537272334098816,0.670357346534729,0.8025085926055908,0.48193359375,0.4554983377456665,0,1 +718,0.9206088185310364,0.9215072393417358,0.0008984208106994629,0.011316380409966343,1.0,1.0,0.38165283203125,0.38104248046875,0.3482666015625,0,0,0.32772451639175415,0.33251768350601196,1.1960952281951904,0.6515640020370483,0.6711410284042358,0.8031096458435059,0.4833984375,0.4570648670196533,4,1 +719,0.9215072393417358,0.9232360124588013,0.0017287731170654297,0.022024618608995437,1.0,1.0,0.38104248046875,0.38018798828125,0.3485107421875,0,0,0.3277636170387268,0.3318485617637634,1.1907923221588135,0.6513265371322632,0.6726540327072144,0.8031542301177979,0.48291015625,0.4570522904396057,0,4 +720,0.9232360124588013,0.9242658019065857,0.0010297894477844238,0.013415007228900695,1.0,1.0,0.38018798828125,0.37933349609375,0.34625244140625,0,0,0.32782405614852905,0.33058851957321167,1.1876404285430908,0.6505156755447388,0.673541247844696,0.8032562732696533,0.4833984375,0.4574371576309204,0,1 +721,0.9242658019065857,0.9259503483772278,0.0016845464706420898,0.02224287723446001,1.0,1.0,0.37933349609375,0.37835693359375,0.3450927734375,0,0,0.32784324884414673,0.32968950271606445,1.1824102401733398,0.6503443717956543,0.6749992966651917,0.8032548427581787,0.4833984375,0.45733147859573364,0,1 +722,0.9259503483772278,0.9261763691902161,0.00022602081298828125,0.0030522873239119184,1.0,1.0,0.37835693359375,0.3782958984375,0.34344482421875,0,0,0.32785463333129883,0.3282569944858551,1.1817212104797363,0.649872362613678,0.6751898527145386,0.8032944202423096,0.48388671875,0.4573471248149872,0,1 +723,0.9261763691902161,0.9276251196861267,0.0014487504959106445,0.019624481754948308,1.0,1.0,0.3782958984375,0.3778076171875,0.34393310546875,0,0,0.327851802110672,0.3288424015045166,1.17713463306427,0.6477828621864319,0.6764545440673828,0.8038607835769653,0.484375,0.45873355865478516,0,1 +724,0.9276251196861267,0.9277552366256714,0.00013011693954467773,0.0017978190634705073,1.0,1.0,0.3778076171875,0.3778076171875,0.34283447265625,0,0,0.32784518599510193,0.32761409878730774,1.1767292022705078,0.6473345756530762,0.6765655279159546,0.80387943983078,0.48486328125,0.45871758460998535,0,1 +725,0.9277552366256714,0.9290544986724854,0.0012992620468139648,0.0179841691789061,1.0,1.0,0.3778076171875,0.37701416015625,0.3427734375,0,0,0.3278423845767975,0.32763493061065674,1.172581434249878,0.6469641923904419,0.677707314491272,0.8039667010307312,0.484375,0.4588811993598938,4,1 +726,0.9290544986724854,0.929259717464447,0.00020521879196166992,0.0028926258624108183,1.0,1.0,0.37701416015625,0.37689208984375,0.34234619140625,0,0,0.327814519405365,0.32651495933532715,1.1719348430633545,0.6466277837753296,0.6778842210769653,0.8039627075195312,0.48486328125,0.45891815423965454,4,1 +727,0.929259717464447,0.9299576878547668,0.0006979703903198242,0.009866661049438629,1.0,1.0,0.37689208984375,0.3768310546875,0.342529296875,0,0,0.32780686020851135,0.32686665654182434,1.1696879863739014,0.6451842784881592,0.6785019636154175,0.8043665885925293,0.48583984375,0.4599614143371582,4,1 +728,0.9299576878547668,0.9302315711975098,0.0002738833427429199,0.003910255592005888,1.0,1.0,0.3768310546875,0.3765869140625,0.3421630859375,0,0,0.3277842402458191,0.3262845277786255,1.1688096523284912,0.6449642181396484,0.6787431836128235,0.8043967485427856,0.4853515625,0.459932416677475,4,1 +729,0.9302315711975098,0.9307630062103271,0.0005314350128173828,0.00761712743054369,1.0,1.0,0.3765869140625,0.376220703125,0.3426513671875,0,0,0.3277730345726013,0.3269890546798706,1.1670591831207275,0.6423675417900085,0.679222583770752,0.8051230907440186,0.486328125,0.46159470081329346,4,1 +730,0.9307630062103271,0.9311929941177368,0.00042998790740966797,0.006210378063436421,1.0,1.0,0.376220703125,0.3759765625,0.34222412109375,0,0,0.32775670289993286,0.32654255628585815,1.1656404733657837,0.6422440409660339,0.6796098947525024,0.8051407337188721,0.486328125,0.4616125822067261,4,1 +731,0.9311929941177368,0.9313167929649353,0.00012379884719848633,0.0017992186349500602,1.0,1.0,0.3759765625,0.375732421875,0.3419189453125,0,0,0.3277406692504883,0.32616305351257324,1.1652331352233887,0.6421492099761963,0.679720938205719,0.8051717877388,0.486328125,0.4616168439388275,4,4 +732,0.9313167929649353,0.9335135221481323,0.0021967291831970215,0.03198349753929705,1.0,1.0,0.375732421875,0.3751220703125,0.3431396484375,0,0,0.32773536443710327,0.3271822929382324,1.1575757265090942,0.6392439603805542,0.6818017363548279,0.805992603302002,0.48828125,0.4636024236679077,4,4 +733,0.9335135221481323,0.9337209463119507,0.00020742416381835938,0.003119794739021998,1.0,1.0,0.3751220703125,0.37493896484375,0.34112548828125,0,0,0.3276737928390503,0.32529228925704956,1.1568691730499268,0.6388920545578003,0.6819926500320435,0.8061364889144897,0.48828125,0.46362975239753723,4,1 +734,0.9337209463119507,0.9340701103210449,0.0003491640090942383,0.005268089836309711,1.0,1.0,0.37493896484375,0.374755859375,0.341064453125,0,0,0.32766199111938477,0.3251284956932068,1.155674695968628,0.6388627290725708,0.6823146343231201,0.8061432242393494,0.48779296875,0.46363937854766846,4,1 +735,0.9340701103210449,0.934104323387146,3.421306610107422e-05,0.0005189310382237008,1.0,1.0,0.374755859375,0.37481689453125,0.34075927734375,0,0,0.3276418149471283,0.32481664419174194,1.1555581092834473,0.6388250589370728,0.682345986366272,0.8061702847480774,0.48828125,0.4636107385158539,4,1 +736,0.934104323387146,0.9348089694976807,0.000704646110534668,0.010693358756668651,1.0,1.0,0.37481689453125,0.37445068359375,0.34075927734375,0,0,0.32763972878456116,0.3247893452644348,1.1531264781951904,0.6388106346130371,0.6830024719238281,0.8061645030975342,0.48779296875,0.46356189250946045,4,1 +737,0.9348089694976807,0.9357339143753052,0.0009249448776245117,0.014188222988615044,1.0,1.0,0.37445068359375,0.37420654296875,0.34033203125,0,0,0.32759612798690796,0.3244054317474365,1.1498935222625732,0.6381309032440186,0.6838762760162354,0.8063796758651733,0.48876953125,0.46395137906074524,4,1 +738,0.9357339143753052,0.9359448552131653,0.00021094083786010742,0.0032823041237017786,1.0,1.0,0.37420654296875,0.37384033203125,0.3397216796875,0,0,0.3275333642959595,0.3235708177089691,1.1491624116897583,0.6380500197410583,0.684072732925415,0.8064008951187134,0.48974609375,0.4639192223548889,4,1 +739,0.9359448552131653,0.9362481832504272,0.0003033280372619629,0.004735420367425444,1.0,1.0,0.37384033203125,0.37335205078125,0.33935546875,0,0,0.3275163173675537,0.3234093189239502,1.148107647895813,0.6379765272140503,0.6843564510345459,0.8064131140708923,0.48974609375,0.4638773202896118,4,1 +740,0.9362481832504272,0.9365692138671875,0.0003210306167602539,0.005035630874980599,1.0,1.0,0.37335205078125,0.37310791015625,0.3389892578125,0,0,0.32749104499816895,0.3232173025608063,1.146986961364746,0.6377169489860535,0.6846584677696228,0.8064890503883362,0.48974609375,0.4640553593635559,4,1 +741,0.9365692138671875,0.937020480632782,0.0004512667655944824,0.0071143177171036805,1.0,1.0,0.37310791015625,0.372802734375,0.33856201171875,0,0,0.3274635374546051,0.3228948712348938,1.1454060077667236,0.6377526521682739,0.6850841045379639,0.806477963924408,0.48974609375,0.46391868591308594,4,4 +742,0.937020480632782,0.9376245737075806,0.000604093074798584,0.009591897189247611,1.0,1.0,0.372802734375,0.37237548828125,0.33837890625,0,0,0.3274226784706116,0.3225095272064209,1.1432769298553467,0.6377224922180176,0.6856558322906494,0.8064941763877869,0.4892578125,0.46392273902893066,4,4 +743,0.9376245737075806,0.9381142258644104,0.000489652156829834,0.007850081128653418,1.0,1.0,0.37237548828125,0.3721923828125,0.33880615234375,0,0,0.32736438512802124,0.322776198387146,1.1415197849273682,0.6356114149093628,0.686126172542572,0.8070815801620483,0.490234375,0.46540194749832153,4,4 +744,0.9381142258644104,0.9383365511894226,0.00022232532501220703,0.003592511011094406,1.0,1.0,0.3721923828125,0.371826171875,0.33868408203125,0,0,0.3273191750049591,0.32230430841445923,1.140724778175354,0.635736882686615,0.6863387823104858,0.8070412874221802,0.490234375,0.46530044078826904,4,4 +745,0.9383365511894226,0.9385306239128113,0.00019407272338867188,0.0031472894742692655,1.0,1.0,0.371826171875,0.3717041015625,0.33831787109375,0,0,0.3272969424724579,0.3221101760864258,1.1400301456451416,0.6357111930847168,0.6865237951278687,0.8070403337478638,0.490234375,0.4653097987174988,4,4 +746,0.9385306239128113,0.9397870898246765,0.0012564659118652344,0.020440518382406417,1.0,1.0,0.3717041015625,0.37127685546875,0.33807373046875,0,0,0.32727694511413574,0.3219653367996216,1.1354308128356934,0.6355893015861511,0.6877555251121521,0.8070865273475647,0.490234375,0.46530646085739136,4,4 +747,0.9397870898246765,0.9399771094322205,0.0001900196075439453,0.0031557951108933334,1.0,1.0,0.37127685546875,0.3712158203125,0.3370361328125,0,0,0.3271445035934448,0.3208332657814026,1.1347453594207764,0.6355597972869873,0.687938928604126,0.8070293068885803,0.490234375,0.46529096364974976,4,4 +748,0.9399771094322205,0.9399875998497009,1.049041748046875e-05,0.00017477361355369372,1.0,1.0,0.3712158203125,0.3712158203125,0.33685302734375,0,0,0.32712092995643616,0.3206573724746704,1.1347074508666992,0.6355599164962769,0.6879490613937378,0.8070255517959595,0.490234375,0.46529096364974976,4,4 +749,0.9399875998497009,0.9401248097419739,0.00013720989227294922,0.0022863590179581484,1.0,1.0,0.3712158203125,0.37109375,0.33697509765625,0,0,0.3271195888519287,0.3206493854522705,1.1342123746871948,0.6355483531951904,0.6880813837051392,0.8070285320281982,0.490234375,0.46528202295303345,4,4 +750,0.9401248097419739,0.9402228593826294,9.804964065551758e-05,0.0016375670830102167,1.0,1.0,0.37109375,0.37103271484375,0.3367919921875,0,0,0.3271021246910095,0.3205268979072571,1.1338586807250977,0.6355555057525635,0.6881757378578186,0.8070263862609863,0.490234375,0.46528130769729614,4,4 +751,0.9402228593826294,0.9408971071243286,0.0006742477416992188,0.01127935753928132,1.0,1.0,0.37103271484375,0.370361328125,0.33685302734375,0,0,0.32708948850631714,0.32046055793762207,1.1313934326171875,0.6354955434799194,0.6888338327407837,0.8070309162139893,0.490234375,0.4652480185031891,4,4 +752,0.9408971071243286,0.9410449862480164,0.00014787912368774414,0.002502062360954515,1.0,1.0,0.370361328125,0.37017822265625,0.3363037109375,0,0,0.32700154185295105,0.32004308700561523,1.130854606628418,0.6350013613700867,0.6889773607254028,0.8071429133415222,0.490234375,0.4656103253364563,4,1 +753,0.9410449862480164,0.9417890310287476,0.0007440447807312012,0.012620551389595199,1.0,1.0,0.37017822265625,0.369873046875,0.336181640625,0,0,0.32698121666908264,0.31994038820266724,1.1281042098999023,0.6349107027053833,0.6897050142288208,0.8071694374084473,0.49072265625,0.4656565487384796,4,1 +754,0.9417890310287476,0.9417910575866699,2.0265579223632812e-06,3.481402144953298e-05,1.0,1.0,0.369873046875,0.369873046875,0.33489990234375,0,0,0.3268776535987854,0.3192370533943176,1.1280968189239502,0.6349576711654663,0.6897069215774536,0.8071357011795044,0.49072265625,0.4656565487384796,4,1 +755,0.9417910575866699,0.9431763887405396,0.001385331153869629,0.023799284034962686,1.0,1.0,0.369873046875,0.368896484375,0.3369140625,0,0,0.3268773555755615,0.32056811451911926,1.1227340698242188,0.6313163042068481,0.6911197304725647,0.808190107345581,0.494140625,0.4680447578430176,4,1 +756,0.9431763887405396,0.9432673454284668,9.09566879272461e-05,0.0016006847490197642,1.0,1.0,0.368896484375,0.36895751953125,0.3349609375,0,0,0.3266996145248413,0.31924450397491455,1.122389554977417,0.6315590143203735,0.691210150718689,0.8080773949623108,0.4931640625,0.4679064452648163,4,1 +757,0.9432673454284668,0.9441254138946533,0.0008580684661865234,0.015124772014759156,1.0,1.0,0.36895751953125,0.3687744140625,0.33544921875,0,0,0.3266858458518982,0.319508820772171,1.1190568208694458,0.6306402087211609,0.6920807361602783,0.8083450198173523,0.494140625,0.46855661273002625,4,1 +758,0.9441254138946533,0.9443978071212769,0.00027239322662353516,0.004875082673721491,1.0,1.0,0.3687744140625,0.36865234375,0.3336181640625,0,0,0.3265599012374878,0.31870412826538086,1.1180076599121094,0.6307132840156555,0.6923524141311646,0.808350682258606,0.494140625,0.468553751707077,4,1 +759,0.9443978071212769,0.9445272088050842,0.00012940168380737305,0.002327276625395294,1.0,1.0,0.36865234375,0.3685302734375,0.33349609375,0,0,0.3265160024166107,0.31847018003463745,1.1175098419189453,0.6306807994842529,0.6924816370010376,0.808358907699585,0.49365234375,0.4685157835483551,4,1 +760,0.9445272088050842,0.9446428418159485,0.00011563301086425781,0.002084499596531135,1.0,1.0,0.3685302734375,0.36859130859375,0.33343505859375,0,0,0.32649463415145874,0.3183468282222748,1.1170647144317627,0.6306771039962769,0.6925970315933228,0.8083657026290894,0.49365234375,0.46848297119140625,4,1 +761,0.9446428418159485,0.9449988603591919,0.0003560185432434082,0.006431300936000319,1.0,1.0,0.36859130859375,0.36810302734375,0.33349609375,0,0,0.32647526264190674,0.3182465136051178,1.1156868934631348,0.6307241320610046,0.6929540038108826,0.8083525896072388,0.49365234375,0.46845993399620056,4,1 +762,0.9449988603591919,0.9452744126319885,0.00027555227279663086,0.0050099375139526165,1.0,1.0,0.36810302734375,0.36798095703125,0.33282470703125,0,0,0.32641497254371643,0.3178815245628357,1.1146211624145508,0.6308392882347107,0.6932296752929688,0.8083297610282898,0.494140625,0.46841704845428467,4,1 +763,0.9452744126319885,0.9454637765884399,0.00018936395645141602,0.0034602452994794927,1.0,1.0,0.36798095703125,0.36767578125,0.3323974609375,0,0,0.32636651396751404,0.31762146949768066,1.1138889789581299,0.6308206915855408,0.6934187412261963,0.8083489537239075,0.494140625,0.46843624114990234,4,1 +764,0.9454637765884399,0.9459055066108704,0.0004417300224304199,0.008099754526397702,1.0,1.0,0.36767578125,0.3671875,0.33270263671875,0,0,0.32633230090141296,0.3178595304489136,1.1121547222137451,0.6298408508300781,0.6938670873641968,0.8086274266242981,0.494140625,0.4690755009651184,4,1 +765,0.9459055066108704,0.9459169507026672,1.1444091796875e-05,0.00021155742627168602,1.0,1.0,0.3671875,0.3671875,0.33221435546875,0,0,0.3262544870376587,0.3174463212490082,1.1121101379394531,0.6298744678497314,0.6938786506652832,0.8086497783660889,0.494140625,0.4690784215927124,4,1 +766,0.9459169507026672,0.9463845491409302,0.00046759843826293945,0.008645933325471724,1.0,1.0,0.3671875,0.36700439453125,0.33233642578125,0,0,0.32625237107276917,0.31742334365844727,1.1102701425552368,0.6299607753753662,0.694351851940155,0.8086309432983398,0.494140625,0.4690170884132385,4,1 +767,0.9463845491409302,0.9471592903137207,0.0007747411727905273,0.014449960979102141,1.0,1.0,0.36700439453125,0.36651611328125,0.33203125,0,0,0.3261662423610687,0.31721776723861694,1.1071747541427612,0.6292922496795654,0.6951478719711304,0.8088319301605225,0.49462890625,0.46938765048980713,4,1 +768,0.9471592903137207,0.9474269151687622,0.0002676248550415039,0.005064747552226684,1.0,1.0,0.36651611328125,0.366455078125,0.3314208984375,0,0,0.32602062821388245,0.3166157007217407,1.1061110496520996,0.6290782690048218,0.6954221725463867,0.8089621067047119,0.49462890625,0.4697289764881134,4,1 +769,0.9474269151687622,0.9475857019424438,0.00015878677368164062,0.0030203054317880346,1.0,1.0,0.366455078125,0.36639404296875,0.33154296875,0,0,0.32596731185913086,0.3163628876209259,1.1054807901382446,0.6291139125823975,0.6955852508544922,0.8089741468429565,0.4951171875,0.46970513463020325,4,1 +770,0.9475857019424438,0.9480899572372437,0.0005042552947998047,0.009620567545254194,1.0,1.0,0.36639404296875,0.36614990234375,0.3311767578125,0,0,0.32593488693237305,0.3161952793598175,1.103462815284729,0.629259467124939,0.6961078643798828,0.8089486956596375,0.4951171875,0.4696232080459595,4,1 +771,0.9480899572372437,0.9487118721008301,0.0006219148635864258,0.011980627071119042,1.0,1.0,0.36614990234375,0.3660888671875,0.33062744140625,0,0,0.32583048939704895,0.3156575560569763,1.1009650230407715,0.6294984817504883,0.6967572569847107,0.8089195489883423,0.49462890625,0.46944740414619446,4,1 +772,0.9487118721008301,0.9488914012908936,0.00017952919006347656,0.003500404429196999,1.0,1.0,0.3660888671875,0.365966796875,0.33062744140625,0,0,0.325695276260376,0.3150739371776581,1.1002496480941772,0.6296279430389404,0.6969438791275024,0.8089203834533691,0.494140625,0.469454824924469,4,1 +773,0.9488914012908936,0.9492205381393433,0.00032913684844970703,0.006439950551629231,1.0,1.0,0.365966796875,0.36590576171875,0.33026123046875,0,0,0.32565420866012573,0.31492263078689575,1.0989317893981934,0.6296204328536987,0.6972867250442505,0.8089368939399719,0.4951171875,0.46945518255233765,4,1 +774,0.9492205381393433,0.9494620561599731,0.0002415180206298828,0.004756214654118023,1.0,1.0,0.36590576171875,0.36541748046875,0.33001708984375,0,0,0.3255780041217804,0.31461480259895325,1.0979652404785156,0.6296747922897339,0.6975377798080444,0.8089344501495361,0.4951171875,0.4694613218307495,4,1 +775,0.9494620561599731,0.949540376663208,7.832050323486328e-05,0.0015497366391236558,1.0,1.0,0.36541748046875,0.3653564453125,0.329833984375,0,0,0.3255206346511841,0.3143919110298157,1.0976529121398926,0.6297029256820679,0.6976190805435181,0.8089303970336914,0.4951171875,0.46946024894714355,4,1 +776,0.949540376663208,0.9500657320022583,0.000525355339050293,0.010411400329800655,1.0,1.0,0.3653564453125,0.36529541015625,0.3309326171875,0,0,0.3255016803741455,0.3152795732021332,1.095482349395752,0.6270442605018616,0.6981820464134216,0.8096872568130493,0.49560546875,0.471187025308609,4,1 +777,0.9500657320022583,0.950620710849762,0.0005549788475036621,0.011114188106827986,1.0,1.0,0.36529541015625,0.364990234375,0.33056640625,0,0,0.32538384199142456,0.31494036316871643,1.093174934387207,0.6268000602722168,0.6987770795822144,0.8097844123840332,0.49609375,0.4714429974555969,4,1 +778,0.950620710849762,0.9513461589813232,0.0007254481315612793,0.014691344165649704,1.0,1.0,0.364990234375,0.3642578125,0.329833984375,0,0,0.3252556324005127,0.31436485052108765,1.0901429653167725,0.6270855665206909,0.699558436870575,0.809759795665741,0.49609375,0.4712602496147156,0,1 +779,0.9513461589813232,0.9517006278038025,0.00035446882247924805,0.007285525974057794,1.0,1.0,0.3642578125,0.364013671875,0.32891845703125,0,0,0.3250795900821686,0.3136729896068573,1.088670253753662,0.6272171139717102,0.6999384164810181,0.8097589015960693,0.49609375,0.4712520241737366,0,1 +780,0.9517006278038025,0.9517658352851868,6.520748138427734e-05,0.0013500689226227866,1.0,1.0,0.364013671875,0.36407470703125,0.3287353515625,0,0,0.32498860359191895,0.3133183717727661,1.0884010791778564,0.6273148059844971,0.7000076174736023,0.8097501397132874,0.49609375,0.4712384343147278,0,1 +781,0.9517658352851868,0.9523257613182068,0.0005599260330200195,0.011608494442281908,1.0,1.0,0.36407470703125,0.36370849609375,0.3284912109375,0,0,0.32497140765190125,0.3132966160774231,1.0860570669174194,0.6272718906402588,0.7006129026412964,0.8097565174102783,0.49609375,0.47128283977508545,0,1 +782,0.9523257613182068,0.95298171043396,0.0006559491157531738,0.01375898459818889,1.0,1.0,0.36370849609375,0.3631591796875,0.32806396484375,0,0,0.32482337951660156,0.3129376769065857,1.0832854509353638,0.6268834471702576,0.7013307213783264,0.8098763823509216,0.49609375,0.4715934693813324,4,1 +783,0.95298171043396,0.9532827138900757,0.00030100345611572266,0.006401837644326577,1.0,1.0,0.3631591796875,0.36279296875,0.32763671875,0,0,0.32464516162872314,0.3123016357421875,1.0820221900939941,0.6270421743392944,0.7016599178314209,0.8098453283309937,0.49609375,0.47158145904541016,4,1 +784,0.9532827138900757,0.9544179439544678,0.0011352300643920898,0.02430000025517169,1.0,1.0,0.36279296875,0.36151123046875,0.32818603515625,0,0,0.3245593309402466,0.3129039704799652,1.077033281326294,0.6246815919876099,0.7029581069946289,0.8104979991912842,0.49658203125,0.4731980860233307,4,1 +785,0.9544179439544678,0.9548102021217346,0.0003922581672668457,0.008605539137484635,1.0,1.0,0.36151123046875,0.36102294921875,0.32708740234375,0,0,0.32425597310066223,0.3117734491825104,1.0753390789031982,0.6251534223556519,0.7033960819244385,0.8102998733520508,0.49658203125,0.4730844497680664,4,1 +786,0.9548102021217346,0.9560664296150208,0.0012562274932861328,0.02779891816888014,1.0,1.0,0.36102294921875,0.36077880859375,0.327392578125,0,0,0.32414165139198303,0.3121448755264282,1.0696756839752197,0.6232144236564636,0.7048443555831909,0.8108168244361877,0.4970703125,0.47426843643188477,4,1 +787,0.9560664296150208,0.9571951031684875,0.0011286735534667969,0.025690458198059107,1.0,1.0,0.36077880859375,0.36004638671875,0.32586669921875,0,0,0.3237857222557068,0.3108995854854584,1.0645830631256104,0.6235485076904297,0.7061389684677124,0.8106368780136108,0.4970703125,0.4740801453590393,0,1 +788,0.9571951031684875,0.9573897123336792,0.0001946091651916504,0.004546422946834005,1.0,1.0,0.36004638671875,0.35992431640625,0.32373046875,0,0,0.32343369722366333,0.30986666679382324,1.063724160194397,0.6235782504081726,0.7063573598861694,0.8105636835098267,0.49658203125,0.47403401136398315,4,0 +789,0.9573897123336792,0.9576315879821777,0.00024187564849853516,0.005676461290115012,1.0,1.0,0.35992431640625,0.35986328125,0.32342529296875,0,0,0.3233683109283447,0.3096805810928345,1.0626540184020996,0.6236275434494019,0.7066291570663452,0.8105370998382568,0.49658203125,0.4740303158760071,4,0 +790,0.9576315879821777,0.9576430916786194,1.150369644165039e-05,0.0002715158745343432,1.0,1.0,0.35986328125,0.35968017578125,0.3233642578125,0,0,0.3232859671115875,0.30940908193588257,1.06260347366333,0.6237192153930664,0.7066419124603271,0.8105101585388184,0.49658203125,0.47401976585388184,4,0 +791,0.9576430916786194,0.9581429958343506,0.0004999041557312012,0.011802187070364225,1.0,1.0,0.35968017578125,0.35931396484375,0.323974609375,0,0,0.3232819736003876,0.3098963797092438,1.0603469610214233,0.622474193572998,0.7072157859802246,0.8108630180358887,0.49658203125,0.47479134798049927,4,0 +792,0.9581429958343506,0.9582071304321289,6.413459777832031e-05,0.0015322309624574934,1.0,1.0,0.35931396484375,0.359375,0.32379150390625,0,0,0.3231143355369568,0.3094061315059662,1.060060739517212,0.622479259967804,0.7072880268096924,0.8108577132225037,0.49658203125,0.47479721903800964,4,0 +793,0.9582071304321289,0.9582138061523438,6.67572021484375e-06,0.00015973347329028135,1.0,1.0,0.359375,0.359375,0.32373046875,0,0,0.32309210300445557,0.30935490131378174,1.0600308179855347,0.6224499940872192,0.7072955369949341,0.8108594417572021,0.49658203125,0.47479721903800964,4,0 +794,0.9582138061523438,0.9582647085189819,5.0902366638183594e-05,0.0012181623151360235,1.0,1.0,0.359375,0.35919189453125,0.32379150390625,0,0,0.3230897784233093,0.3093511462211609,1.0598034858703613,0.6224342584609985,0.707352876663208,0.8108676075935364,0.49658203125,0.47479721903800964,4,0 +795,0.9582647085189819,0.9588382244110107,0.0005735158920288086,0.013741748809629221,1.0,1.0,0.35919189453125,0.35894775390625,0.323974609375,0,0,0.32307201623916626,0.30965667963027954,1.057176113128662,0.6215683817863464,0.7080174088478088,0.8111162185668945,0.498046875,0.4753866493701935,4,0 +796,0.9588382244110107,0.9592726230621338,0.0004343986511230469,0.010553447826464711,1.0,1.0,0.35894775390625,0.35870361328125,0.323486328125,0,0,0.3228769898414612,0.3090919256210327,1.055189847946167,0.6216087341308594,0.7085145115852356,0.8110896348953247,0.498046875,0.4753200113773346,4,0 +797,0.9592726230621338,0.9600268006324768,0.0007541775703430176,0.018517705461208386,1.0,1.0,0.35870361328125,0.35748291015625,0.3231201171875,0,0,0.32272350788116455,0.3087083697319031,1.0516948699951172,0.6214465498924255,0.7093923091888428,0.8111328482627869,0.49853515625,0.47530412673950195,4,0 +798,0.9600268006324768,0.9606319665908813,0.000605165958404541,0.015139292525486887,1.0,1.0,0.35748291015625,0.3568115234375,0.3223876953125,0,0,0.3224499821662903,0.3080452084541321,1.0488874912261963,0.6211130619049072,0.7100966572761536,0.8112399578094482,0.49853515625,0.4753311574459076,4,0 +799,0.9606319665908813,0.9608467221260071,0.00021475553512573242,0.005455073990970285,1.0,1.0,0.3568115234375,0.35638427734375,0.32196044921875,0,0,0.3222203254699707,0.3074883818626404,1.0478993654251099,0.6207970380783081,0.710344135761261,0.8113428950309753,0.49853515625,0.47531628608703613,4,0 +800,0.9608467221260071,0.9609683752059937,0.00012165307998657227,0.003107098219926532,1.0,1.0,0.35638427734375,0.35638427734375,0.32171630859375,0,0,0.3221358060836792,0.3072948753833771,1.0473403930664062,0.6206775903701782,0.7104831337928772,0.8113855123519897,0.49853515625,0.4753176271915436,4,0 +801,0.9609683752059937,0.9614784121513367,0.0005100369453430176,0.013067274243252571,1.0,1.0,0.35638427734375,0.3560791015625,0.32159423828125,0,0,0.32208728790283203,0.30735528469085693,1.0449533462524414,0.6201872229576111,0.7110730409622192,0.8115378618240356,0.49951171875,0.4755462408065796,4,0 +802,0.9614784121513367,0.9615578651428223,7.94529914855957e-05,0.0020625575404040015,1.0,1.0,0.3560791015625,0.35595703125,0.3211669921875,0,0,0.32188475131988525,0.30688756704330444,1.0445854663848877,0.6198455095291138,0.7111629247665405,0.8116552829742432,0.49951171875,0.4755602478981018,4,0 +803,0.9615578651428223,0.9624287486076355,0.0008708834648132324,0.022654399087063844,1.0,1.0,0.35595703125,0.35540771484375,0.3214111328125,0,0,0.3218522071838379,0.30728861689567566,1.0403870344161987,0.6185614466667175,0.7121931910514832,0.8120232224464417,0.49951171875,0.4763336777687073,0,0 +804,0.9624287486076355,0.9625528454780579,0.00012409687042236328,0.003302974104492648,1.0,1.0,0.35540771484375,0.35528564453125,0.32000732421875,0,0,0.32150477170944214,0.3064863383769989,1.0397993326187134,0.6178807020187378,0.7123361825942993,0.8122549057006836,0.49951171875,0.4763396084308624,0,0 +805,0.9625528454780579,0.9625948071479797,4.1961669921875e-05,0.001120556967747378,1.0,1.0,0.35528564453125,0.35516357421875,0.32000732421875,0,0,0.32145261764526367,0.30636125802993774,1.0396010875701904,0.6177769899368286,0.7123842239379883,0.8123021125793457,0.49951171875,0.4763396084308624,0,0 +806,0.9625948071479797,0.9630510210990906,0.00045621395111083984,0.012196540542263228,1.0,1.0,0.35516357421875,0.35528564453125,0.32000732421875,0,0,0.32143479585647583,0.30632734298706055,1.0374106168746948,0.6177573204040527,0.7129133939743042,0.8123125433921814,0.4990234375,0.47636228799819946,0,4 +807,0.9630510210990906,0.9643118381500244,0.0012608170509338379,0.034123190638505184,1.0,1.0,0.35528564453125,0.3541259765625,0.32000732421875,0,0,0.3212420344352722,0.30598941445350647,1.0311349630355835,0.6170583963394165,0.7144170999526978,0.8125994205474854,0.49951171875,0.47643622756004333,4,4 +808,0.9643118381500244,0.9643451571464539,3.331899642944336e-05,0.0009336148095693013,1.0,1.0,0.3541259765625,0.35418701171875,0.31939697265625,0,0,0.32070571184158325,0.3049655556678772,1.0309739112854004,0.6156681776046753,0.7144549489021301,0.8131740093231201,0.49951171875,0.4767342507839203,4,4 +809,0.9643451571464539,0.9648455381393433,0.0005003809928894043,0.014034026035249728,1.0,1.0,0.35418701171875,0.353759765625,0.31951904296875,0,0,0.3206905722618103,0.30493658781051636,1.0285074710845947,0.6156070232391357,0.7150333523750305,0.8132015466690063,0.49951171875,0.47678840160369873,0,4 +810,0.9648455381393433,0.9649147987365723,6.92605972290039e-05,0.0019701794185766554,1.0,1.0,0.353759765625,0.35369873046875,0.31915283203125,0,0,0.3204628527164459,0.30445775389671326,1.028170108795166,0.6153030395507812,0.7151116728782654,0.8133713006973267,0.49951171875,0.47679048776626587,0,4 +811,0.9649147987365723,0.96497642993927,6.16312026977539e-05,0.0017566153386156377,1.0,1.0,0.35369873046875,0.353759765625,0.31903076171875,0,0,0.3204303979873657,0.3043902814388275,1.0278695821762085,0.6152488589286804,0.7151815891265869,0.8133987188339233,0.49951171875,0.47677674889564514,0,4 +812,0.96497642993927,0.9651857018470764,0.00020927190780639648,0.005975173502973121,1.0,1.0,0.353759765625,0.353515625,0.31903076171875,0,0,0.3204014003276825,0.3043270409107208,1.0268423557281494,0.6151838302612305,0.7154215574264526,0.8134171962738037,0.49951171875,0.47677502036094666,4,4 +813,0.9651857018470764,0.9655243754386902,0.00033867359161376953,0.009728002848890662,1.0,1.0,0.353515625,0.35321044921875,0.3184814453125,0,0,0.3203025162220001,0.30413341522216797,1.0251671075820923,0.6150671243667603,0.7158122062683105,0.8134980797767639,0.5,0.4767334461212158,4,4 +814,0.9655243754386902,0.965591549873352,6.717443466186523e-05,0.001948461718000363,1.0,1.0,0.35321044921875,0.35321044921875,0.31805419921875,0,0,0.3201406002044678,0.30380386114120483,1.0248372554779053,0.6148917078971863,0.7158892154693604,0.813591480255127,0.5,0.4767334461212158,4,4 +815,0.965591549873352,0.9661364555358887,0.0005449056625366211,0.01583639078572196,1.0,1.0,0.35321044921875,0.3526611328125,0.3179931640625,0,0,0.3201078176498413,0.30375221371650696,1.0221049785614014,0.6148152351379395,0.7165220975875854,0.8136224746704102,0.49951171875,0.4767110347747803,4,4 +816,0.9661364555358887,0.9663389325141907,0.00020247697830200195,0.005979202162862413,1.0,1.0,0.3526611328125,0.3526611328125,0.31890869140625,0,0,0.31984126567840576,0.3043365478515625,1.0210657119750977,0.6116411089897156,0.7167605757713318,0.8145385384559631,0.50244140625,0.47873497009277344,4,4 +817,0.9663389325141907,0.9663787484169006,3.981590270996094e-05,0.0011828472976011927,1.0,1.0,0.3526611328125,0.35260009765625,0.3184814453125,0,0,0.3197457194328308,0.3041244149208069,1.020862340927124,0.6116491556167603,0.7168068289756775,0.8145674467086792,0.50244140625,0.4787372946739197,4,4 +818,0.9663787484169006,0.9667558670043945,0.0003771185874938965,0.011216673078389068,1.0,1.0,0.35260009765625,0.35247802734375,0.3184814453125,0,0,0.3197266459465027,0.30410170555114746,1.0189075469970703,0.6115541458129883,0.717254638671875,0.8146044015884399,0.50146484375,0.47871971130371094,4,4 +819,0.9667558670043945,0.9669971466064453,0.00024127960205078125,0.007257810034711265,1.0,1.0,0.35247802734375,0.35247802734375,0.318115234375,0,0,0.31954604387283325,0.3037272095680237,1.0176591873168945,0.6115178465843201,0.717540979385376,0.8146765232086182,0.50146484375,0.4787171483039856,1,4 +820,0.9669971466064453,0.9672245979309082,0.00022745132446289062,0.006891868462116396,1.0,1.0,0.35247802734375,0.352294921875,0.3179931640625,0,0,0.3194277584552765,0.3036175072193146,1.0164759159088135,0.6110644936561584,0.7178123593330383,0.8148208856582642,0.50146484375,0.47893232107162476,1,4 +821,0.9672245979309082,0.9672696590423584,4.506111145019531e-05,0.0013748454208190879,1.0,1.0,0.352294921875,0.352294921875,0.31768798828125,0,0,0.31931549310684204,0.30339372158050537,1.0162427425384521,0.6110852956771851,0.7178656458854675,0.8148601651191711,0.50146484375,0.4789324402809143,4,0 +822,0.9672696590423584,0.9678907990455627,0.0006211400032043457,0.018977498707031564,1.0,1.0,0.352294921875,0.3516845703125,0.3175048828125,0,0,0.31929296255111694,0.30334511399269104,1.01295006275177,0.611058235168457,0.7186219692230225,0.8148717880249023,0.501953125,0.47883352637290955,4,0 +823,0.9678907990455627,0.968602180480957,0.0007113814353942871,0.022155065035836072,1.0,1.0,0.3516845703125,0.350830078125,0.31768798828125,0,0,0.31898120045661926,0.3027169704437256,1.0091463327407837,0.611257791519165,0.7194967269897461,0.8148847222328186,0.501953125,0.47883081436157227,4,0 +824,0.968602180480957,0.96861332654953,1.1146068572998047e-05,0.00035499498830604743,1.0,1.0,0.350830078125,0.350830078125,0.3170166015625,0,0,0.31861022114753723,0.3019746243953705,1.0090882778167725,0.6115491390228271,0.7195099592208862,0.8148547410964966,0.501953125,0.47883081436157227,4,0 +825,0.96861332654953,0.9687739610671997,0.00016063451766967773,0.005117921079568006,1.0,1.0,0.350830078125,0.3507080078125,0.31707763671875,0,0,0.31860414147377014,0.30196672677993774,1.008245587348938,0.6115434765815735,0.719702422618866,0.8148595094680786,0.50244140625,0.47887417674064636,4,0 +826,0.9687739610671997,0.968829333782196,5.537271499633789e-05,0.001773286554708467,1.0,1.0,0.3507080078125,0.35064697265625,0.3167724609375,0,0,0.3185165226459503,0.30179259181022644,1.0079562664031982,0.6116206049919128,0.7197683453559875,0.8148527145385742,0.50146484375,0.47886931896209717,4,0 +827,0.968829333782196,0.969322681427002,0.0004933476448059082,0.015827305113039886,1.0,1.0,0.35064697265625,0.35009765625,0.31671142578125,0,0,0.31848597526550293,0.3018099069595337,1.005323886871338,0.6116472482681274,0.7203706502914429,0.8148484826087952,0.50244140625,0.47896647453308105,4,0 +828,0.969322681427002,0.9693592190742493,3.653764724731445e-05,0.001191031320432113,1.0,1.0,0.35009765625,0.35015869140625,0.31622314453125,0,0,0.3182143568992615,0.30127912759780884,1.0051324367523193,0.6118968725204468,0.7204143404960632,0.814811646938324,0.50244140625,0.47896647453308105,4,0 +829,0.9693592190742493,0.9699841737747192,0.0006249547004699707,0.020396174039570718,1.0,1.0,0.35015869140625,0.34979248046875,0.316162109375,0,0,0.31819361448287964,0.3012610077857971,1.0017640590667725,0.611871600151062,0.7211892604827881,0.8148253560066223,0.50244140625,0.47899729013442993,0,0 +830,0.9699841737747192,0.9700720906257629,8.791685104370117e-05,0.002929016525610526,1.0,1.0,0.34979248046875,0.34979248046875,0.31536865234375,0,0,0.31783822178840637,0.3005903363227844,1.001300573348999,0.6121988892555237,0.7212954759597778,0.8148043751716614,0.50244140625,0.47899729013442993,0,0 +831,0.9700720906257629,0.9709535837173462,0.000881493091583252,0.029453881344016317,1.0,1.0,0.34979248046875,0.34869384765625,0.3162841796875,0,0,0.3177862763404846,0.30143386125564575,0.9963429570198059,0.6096768975257874,0.7224599123001099,0.8154964447021484,0.50537109375,0.4805644154548645,0,0 +832,0.9709535837173462,0.9716401100158691,0.0006865262985229492,0.023635490583151043,1.0,1.0,0.34869384765625,0.3475341796875,0.314697265625,0,0,0.3172900974750519,0.3005014955997467,0.9924951791763306,0.6100876331329346,0.7233654856681824,0.8156098127365112,0.50537109375,0.4805419445037842,0,4 +833,0.9716401100158691,0.9721876382827759,0.0005475282669067383,0.019306431273644387,1.0,1.0,0.3475341796875,0.34686279296875,0.3140869140625,0,0,0.31688153743743896,0.2997342348098755,0.9894342422485352,0.6104587316513062,0.7240829467773438,0.8156243562698364,0.50537109375,0.4805644750595093,0,4 +834,0.9721876382827759,0.9728139042854309,0.0006262660026550293,0.022517541265371376,1.0,1.0,0.34686279296875,0.345947265625,0.313232421875,0,0,0.31654080748558044,0.299283504486084,0.985892653465271,0.610457181930542,0.7249103784561157,0.8157274723052979,0.50537109375,0.480802059173584,0,4 +835,0.9728139042854309,0.973032534122467,0.0002186298370361328,0.008041972607304864,1.0,1.0,0.345947265625,0.34600830078125,0.31256103515625,0,0,0.31614091992378235,0.2987344264984131,0.9846739768981934,0.6104273796081543,0.7251973748207092,0.8157994747161865,0.50537109375,0.480979323387146,0,4 +836,0.973032534122467,0.9746766686439514,0.001644134521484375,0.060967334823036914,1.0,1.0,0.34600830078125,0.343505859375,0.31243896484375,0,0,0.3159968852996826,0.2984386086463928,0.9747992157936096,0.6106818318367004,0.7275340557098389,0.815750002861023,0.5048828125,0.48088914155960083,0,4 +837,0.9746766686439514,0.9748060703277588,0.00012940168380737305,0.005109978698614822,1.0,1.0,0.343505859375,0.34332275390625,0.31060791015625,0,0,0.31489551067352295,0.2966037094593048,0.9740821719169617,0.6113630533218384,0.7276995182037354,0.8158729076385498,0.50439453125,0.48086607456207275,0,4 +838,0.9748060703277588,0.9753227233886719,0.0005166530609130859,0.020507045452394696,1.0,1.0,0.34332275390625,0.341796875,0.310546875,0,0,0.314799427986145,0.2964496612548828,0.9711437225341797,0.6114087104797363,0.7283809185028076,0.8158987760543823,0.50439453125,0.48084381222724915,0,4 +839,0.9753227233886719,0.9759418964385986,0.0006191730499267578,0.02509081774617406,1.0,1.0,0.341796875,0.34149169921875,0.310791015625,0,0,0.3144124150276184,0.29630184173583984,0.9675335884094238,0.6104903221130371,0.7292200326919556,0.8163051605224609,0.50634765625,0.48160019516944885,0,4 +840,0.9759418964385986,0.9760636687278748,0.00012177228927612305,0.00506159136630759,1.0,1.0,0.34149169921875,0.3409423828125,0.3101806640625,0,0,0.3139446973800659,0.2958303689956665,0.9668382406234741,0.6101228594779968,0.7293800115585327,0.8165839910507202,0.50634765625,0.4820752441883087,0,4 +841,0.9760636687278748,0.9761596918106079,9.60230827331543e-05,0.004011604019074418,1.0,1.0,0.3409423828125,0.34075927734375,0.30987548828125,0,0,0.3138502240180969,0.29569292068481445,0.9662906527519226,0.6102132797241211,0.7295057773590088,0.8165920972824097,0.50634765625,0.48207345604896545,0,4 +842,0.9761596918106079,0.9765242338180542,0.00036454200744628906,0.015290993914604449,1.0,1.0,0.34075927734375,0.3399658203125,0.30975341796875,0,0,0.3137751817703247,0.2955634295940399,0.9641705751419067,0.6102384328842163,0.7299954891204834,0.8166069984436035,0.50634765625,0.4820750057697296,0,4 +843,0.9765242338180542,0.9767308235168457,0.0002065896987915039,0.00880012593371215,1.0,1.0,0.3399658203125,0.3397216796875,0.30963134765625,0,0,0.3134881556034088,0.2951480746269226,0.9629796743392944,0.6104403734207153,0.7302682399749756,0.8166317939758301,0.50634765625,0.4820185899734497,0,4 +844,0.9767308235168457,0.9769319891929626,0.00020116567611694336,0.008645156663046374,1.0,1.0,0.3397216796875,0.3392333984375,0.30926513671875,0,0,0.31332167983055115,0.2948874533176422,0.9618186354637146,0.6105309128761292,0.7305334806442261,0.8166583776473999,0.50634765625,0.4820353388786316,0,4 +845,0.9769319891929626,0.977016031742096,8.404254913330078e-05,0.0036432508132717683,1.0,1.0,0.3392333984375,0.33917236328125,0.30908203125,0,0,0.31315726041793823,0.2946334481239319,0.9613373279571533,0.6106188297271729,0.7306430339813232,0.8167219758033752,0.50634765625,0.4820350408554077,0,4 +846,0.977016031742096,0.9775844812393188,0.0005684494972229004,0.024732434836504523,1.0,1.0,0.33917236328125,0.338623046875,0.3089599609375,0,0,0.3130876421928406,0.29453545808792114,0.9579616785049438,0.6106811761856079,0.7314198613166809,0.8167169690132141,0.50634765625,0.4820268154144287,0,4 +847,0.9775844812393188,0.9776915907859802,0.00010710954666137695,0.004778365729784349,1.0,1.0,0.338623046875,0.33819580078125,0.3082275390625,0,0,0.31261661648750305,0.293830007314682,0.9573464393615723,0.6110820174217224,0.7315620183944702,0.8167732954025269,0.50634765625,0.48203572630882263,0,4 +848,0.9776915907859802,0.9777379035949707,4.6312808990478516e-05,0.002076024719923692,1.0,1.0,0.33819580078125,0.33795166015625,0.3082275390625,0,0,0.3125244975090027,0.29369300603866577,0.9570814967155457,0.6111342310905457,0.7316234707832336,0.8167778849601746,0.50634765625,0.48203572630882263,0,4 +849,0.9777379035949707,0.9791889190673828,0.0014510154724121094,0.06517874354745433,1.0,1.0,0.33795166015625,0.33599853515625,0.30914306640625,0,0,0.31248438358306885,0.2949364185333252,0.9474955797195435,0.6077007055282593,0.7338814735412598,0.8176937103271484,0.50830078125,0.48435282707214355,4,4 +850,0.9791889190673828,0.9793184399604797,0.00012952089309692383,0.006223650444505545,1.0,1.0,0.33599853515625,0.33563232421875,0.30712890625,0,0,0.31130850315093994,0.29311078786849976,0.9467242956161499,0.6088066101074219,0.7340584993362427,0.817684531211853,0.50927734375,0.48431575298309326,4,4 +851,0.9793184399604797,0.9793766736984253,5.823373794555664e-05,0.0028157323642064793,1.0,1.0,0.33563232421875,0.3355712890625,0.30712890625,0,0,0.3111917972564697,0.2929379343986511,0.946379542350769,0.6089151501655579,0.7341374158859253,0.817651093006134,0.5087890625,0.484324187040329,0,4 +852,0.9793766736984253,0.9795272350311279,0.00015056133270263672,0.007300535835052977,1.0,1.0,0.3355712890625,0.335205078125,0.30712890625,0,0,0.3111388087272644,0.2928101420402527,0.9454829692840576,0.6091923117637634,0.7343420386314392,0.8175835609436035,0.50830078125,0.48414650559425354,0,4 +853,0.9795272350311279,0.9795688986778259,4.166364669799805e-05,0.0020350766865807218,1.0,1.0,0.335205078125,0.33526611328125,0.3070068359375,0,0,0.31100085377693176,0.2926056683063507,0.9452372789382935,0.6093094348907471,0.7343979477882385,0.8175513744354248,0.50830078125,0.48414650559425354,0,4 +854,0.9795688986778259,0.9796326756477356,6.377696990966797e-05,0.003121562998684276,1.0,1.0,0.33526611328125,0.33514404296875,0.3070068359375,0,0,0.3109622597694397,0.2925563454627991,0.9448603391647339,0.6093458533287048,0.7344838380813599,0.8175331354141235,0.5087890625,0.4841425120830536,0,4 +855,0.9796326756477356,0.9801698327064514,0.0005371570587158203,0.02637347200964569,1.0,1.0,0.33514404296875,0.33441162109375,0.306884765625,0,0,0.31090301275253296,0.2925468683242798,0.9415377974510193,0.6091833114624023,0.7352463006973267,0.8175760507583618,0.5078125,0.4842507541179657,4,4 +856,0.9801698327064514,0.980385959148407,0.0002161264419555664,0.010898871338613446,1.0,1.0,0.33441162109375,0.33392333984375,0.30657958984375,0,0,0.31040358543395996,0.29182812571525574,0.940239429473877,0.6096770167350769,0.7355424165725708,0.8174686431884766,0.5078125,0.48422908782958984,4,4 +857,0.980385959148407,0.9805732369422913,0.00018727779388427734,0.009548149476249662,1.0,1.0,0.33392333984375,0.33380126953125,0.30584716796875,0,0,0.31019455194473267,0.2915502190589905,0.9391159415245056,0.609798014163971,0.7357969284057617,0.8174557685852051,0.5087890625,0.4842374920845032,4,4 +858,0.9805732369422913,0.9807335734367371,0.00016033649444580078,0.008253381892264218,1.0,1.0,0.33380126953125,0.33349609375,0.3056640625,0,0,0.3100106120109558,0.29127949476242065,0.938158392906189,0.6100926995277405,0.7360129356384277,0.8174179196357727,0.5087890625,0.48415607213974,4,4 +859,0.9807335734367371,0.9808537364006042,0.0001201629638671875,0.006236909759711915,1.0,1.0,0.33349609375,0.3331298828125,0.30560302734375,0,0,0.3098507821559906,0.2910749912261963,0.9374431371688843,0.6101937890052795,0.7361732721328735,0.8174192309379578,0.5087890625,0.48415607213974,4,1 +860,0.9808537364006042,0.9815236330032349,0.0006698966026306152,0.03498837249121321,1.0,1.0,0.3331298828125,0.332275390625,0.3055419921875,0,0,0.3097296357154846,0.29093900322914124,0.933225154876709,0.6102414131164551,0.7371141910552979,0.8174145817756653,0.50927734375,0.48417580127716064,4,1 +861,0.9815236330032349,0.9816388487815857,0.00011521577835083008,0.00623584595234562,1.0,1.0,0.332275390625,0.332275390625,0.3045654296875,0,0,0.3090490698814392,0.2900758981704712,0.9325391054153442,0.6106374859809875,0.7372632622718811,0.8173829317092896,0.50927734375,0.48417580127716064,4,4 +862,0.9816388487815857,0.9819874167442322,0.0003485679626464844,0.01898399280633925,1.0,1.0,0.332275390625,0.33099365234375,0.3043212890625,0,0,0.30892622470855713,0.2900935411453247,0.930388331413269,0.6101117134094238,0.7377339005470276,0.8175325393676758,0.50830078125,0.48451924324035645,4,1 +863,0.9819874167442322,0.9822527170181274,0.00026530027389526367,0.014728607780914027,1.0,1.0,0.33099365234375,0.33062744140625,0.30438232421875,0,0,0.3085549473762512,0.2902038097381592,0.92872154712677,0.6088677644729614,0.7381013631820679,0.8178637027740479,0.509765625,0.485435426235199,4,1 +864,0.9822527170181274,0.9825726747512817,0.0003199577331542969,0.018028547439126782,1.0,1.0,0.33062744140625,0.33026123046875,0.3040771484375,0,0,0.3082736134529114,0.28972166776657104,0.9267055988311768,0.6093904972076416,0.7385367155075073,0.8177496194839478,0.509765625,0.48520469665527344,4,1 +865,0.9825726747512817,0.9826845526695251,0.0001118779182434082,0.006419683838266377,1.0,1.0,0.33026123046875,0.3299560546875,0.3037109375,0,0,0.30792534351348877,0.28931254148483276,0.9260146617889404,0.6095836758613586,0.738683819770813,0.8177395462989807,0.509765625,0.48518800735473633,4,1 +866,0.9826845526695251,0.9829217791557312,0.0002372264862060547,0.013700280545945853,1.0,1.0,0.3299560546875,0.32958984375,0.3037109375,0,0,0.30780085921287537,0.28914567828178406,0.9245251417160034,0.6096370816230774,0.7390030026435852,0.8177316784858704,0.51025390625,0.48518240451812744,4,1 +867,0.9829217791557312,0.9831477999687195,0.00022602081298828125,0.013234447255911351,1.0,1.0,0.32958984375,0.32916259765625,0.30340576171875,0,0,0.30753451585769653,0.2888091802597046,0.9231035113334656,0.6098400354385376,0.7393043041229248,0.8176732063293457,0.5087890625,0.48519229888916016,4,1 +868,0.9831477999687195,0.9831877946853638,3.999471664428711e-05,0.002373263821343812,1.0,1.0,0.32916259765625,0.32916259765625,0.30328369140625,0,0,0.30727624893188477,0.2884884476661682,0.9228569269180298,0.6100432872772217,0.739356279373169,0.8176107406616211,0.509765625,0.48519396781921387,4,1 +869,0.9831877946853638,0.9836786389350891,0.0004908442497253418,0.029195708744885876,1.0,1.0,0.32916259765625,0.32843017578125,0.30322265625,0,0,0.30722975730895996,0.28844499588012695,0.9196575284004211,0.6100947856903076,0.7400325536727905,0.8175832033157349,0.50927734375,0.48519518971443176,0,1 +870,0.9836786389350891,0.983758270740509,7.963180541992188e-05,0.0048789929407983875,1.0,1.0,0.32843017578125,0.32830810546875,0.30267333984375,0,0,0.30665796995162964,0.2876651883125305,0.9191632866859436,0.6108388900756836,0.7401338815689087,0.8173165321350098,0.50927734375,0.4851238429546356,0,1 +871,0.983758270740509,0.9839375615119934,0.000179290771484375,0.011038896697505607,1.0,1.0,0.32830810546875,0.327880859375,0.30267333984375,0,0,0.30656132102012634,0.28755250573158264,0.9180349707603455,0.6109930276870728,0.7403651475906372,0.8172459602355957,0.509765625,0.48512279987335205,0,1 +872,0.9839375615119934,0.984076738357544,0.0001391768455505371,0.008664739519747071,1.0,1.0,0.327880859375,0.3277587890625,0.30224609375,0,0,0.30634254217147827,0.28728052973747253,0.9171619415283203,0.6113026142120361,0.7405427694320679,0.8171466588973999,0.509765625,0.4851105809211731,0,4 +873,0.984076738357544,0.9849810600280762,0.0009043216705322266,0.056792489556350786,1.0,1.0,0.3277587890625,0.3258056640625,0.30194091796875,0,0,0.3061703145503998,0.2872803807258606,0.9108457565307617,0.6108160614967346,0.7418572902679443,0.8172675371170044,0.509765625,0.48543983697891235,4,4 +874,0.9849810600280762,0.9850096106529236,2.855062484741211e-05,0.001900974696002794,1.0,1.0,0.3258056640625,0.32568359375,0.2999267578125,0,0,0.30505138635635376,0.2859382629394531,0.9106683731079102,0.6126174926757812,0.7418932914733887,0.8167717456817627,0.509765625,0.48543983697891235,4,4 +875,0.9850096106529236,0.9859942197799683,0.0009846091270446777,0.06568269204006409,1.0,1.0,0.32568359375,0.3232421875,0.2998046875,0,0,0.3050135374069214,0.28597119450569153,0.9036562442779541,0.6126848459243774,0.7434067130088806,0.8167591094970703,0.51025390625,0.4855058789253235,4,4 +876,0.9859942197799683,0.9860187768936157,2.4557113647460938e-05,0.0017533556332933295,1.0,1.0,0.3232421875,0.3232421875,0.29876708984375,0,0,0.30370935797691345,0.28454530239105225,0.9035053253173828,0.6150683760643005,0.7434384226799011,0.8163449168205261,0.51025390625,0.4855058789253235,4,1 +877,0.9860187768936157,0.9861367344856262,0.00011795759201049805,0.008436857856637364,1.0,1.0,0.3232421875,0.322998046875,0.29876708984375,0,0,0.30367428064346313,0.284515380859375,0.9027677178382874,0.615095317363739,0.7435925602912903,0.8163477182388306,0.51025390625,0.48552125692367554,4,1 +878,0.9861367344856262,0.986206591129303,6.985664367675781e-05,0.005038974663244291,1.0,1.0,0.322998046875,0.3228759765625,0.2987060546875,0,0,0.30350548028945923,0.2843431830406189,0.9023342132568359,0.6154175400733948,0.7436823844909668,0.8162758350372314,0.51025390625,0.4855073392391205,4,1 +879,0.986206591129303,0.9862352013587952,2.86102294921875e-05,0.002074195709007627,1.0,1.0,0.3228759765625,0.3228759765625,0.29864501953125,0,0,0.3034045696258545,0.2842395305633545,0.9021579623222351,0.6156378984451294,0.7437187433242798,0.8162297010421753,0.51025390625,0.4855073392391205,4,1 +880,0.9862352013587952,0.9863634705543518,0.00012826919555664062,0.009318639443999395,1.0,1.0,0.3228759765625,0.32244873046875,0.298583984375,0,0,0.30336302518844604,0.2841939330101013,0.9013527631759644,0.6157316565513611,0.743886411190033,0.8162057399749756,0.51025390625,0.48551955819129944,4,1 +881,0.9863634705543518,0.9866092205047607,0.00024574995040893555,0.018021443900989146,1.0,1.0,0.32244873046875,0.32177734375,0.29833984375,0,0,0.3031763434410095,0.2840208113193512,0.8997737169265747,0.6160470843315125,0.7442207336425781,0.8161337375640869,0.51025390625,0.485477089881897,4,1 +882,0.9866092205047607,0.987250030040741,0.0006408095359802246,0.047854535742900384,1.0,1.0,0.32177734375,0.3211669921875,0.29827880859375,0,0,0.30281537771224976,0.2836627662181854,0.8953570127487183,0.6167031526565552,0.7451857328414917,0.8159828186035156,0.509765625,0.48548853397369385,4,1 +883,0.987250030040741,0.9873931407928467,0.0001431107521057129,0.011224399160390633,1.0,1.0,0.3211669921875,0.32061767578125,0.29779052734375,0,0,0.30186349153518677,0.28278017044067383,0.8944551944732666,0.6183239221572876,0.745384693145752,0.8156629204750061,0.509765625,0.4854790270328522,4,4 +884,0.9873931407928467,0.9874147176742554,2.1576881408691406e-05,0.0017115191860355163,1.0,1.0,0.32061767578125,0.320556640625,0.29779052734375,0,0,0.3016418218612671,0.28257739543914795,0.8943225145339966,0.6186962127685547,0.7454138994216919,0.8156425356864929,0.509765625,0.4854775369167328,4,4 +885,0.9874147176742554,0.9875314831733704,0.00011676549911499023,0.009277940382484157,1.0,1.0,0.320556640625,0.3206787109375,0.29742431640625,0,0,0.3016080856323242,0.28255438804626465,0.8935889005661011,0.618782103061676,0.7455745339393616,0.815615177154541,0.51025390625,0.48545610904693604,4,4 +886,0.9875314831733704,0.9875490665435791,1.7583370208740234e-05,0.0014102214764779837,1.0,1.0,0.3206787109375,0.3206787109375,0.2972412109375,0,0,0.301425039768219,0.28237783908843994,0.8934807777404785,0.6191399097442627,0.7455981969833374,0.8155782222747803,0.51025390625,0.48545610904693604,4,4 +887,0.9875490665435791,0.9876605868339539,0.00011152029037475586,0.008956781494743696,1.0,1.0,0.3206787109375,0.3204345703125,0.29736328125,0,0,0.3013972342014313,0.2823534607887268,0.8927799463272095,0.6191745400428772,0.7457504272460938,0.8155648708343506,0.51025390625,0.4854655861854553,4,4 +888,0.9876605868339539,0.9881942272186279,0.0005336403846740723,0.04324682037088025,1.0,1.0,0.3204345703125,0.32000732421875,0.2979736328125,0,0,0.30122053623199463,0.28309717774391174,0.8889381289482117,0.6169204115867615,0.7466108202934265,0.8162233829498291,0.51123046875,0.48700302839279175,4,4 +889,0.9881942272186279,0.9882681965827942,7.396936416625977e-05,0.0062655249712220045,1.0,1.0,0.32000732421875,0.31976318359375,0.29754638671875,0,0,0.3004072904586792,0.28235486149787903,0.8884537220001221,0.6186224222183228,0.7467196583747864,0.8158900737762451,0.51123046875,0.48700302839279175,4,1 +890,0.9882681965827942,0.9882901906967163,2.199411392211914e-05,0.0018747427944336905,1.0,1.0,0.31976318359375,0.3197021484375,0.29754638671875,0,0,0.30028972029685974,0.28224116563796997,0.8883113861083984,0.6188662052154541,0.7467515468597412,0.8158373832702637,0.51123046875,0.48700302839279175,4,1 +891,0.9882901906967163,0.9885081052780151,0.00021791458129882812,0.018609575583585294,1.0,1.0,0.3197021484375,0.3194580078125,0.297607421875,0,0,0.3002545237541199,0.28214922547340393,0.8868443965911865,0.6192551851272583,0.7470804452896118,0.8157362937927246,0.51123046875,0.4868755638599396,4,1 +892,0.9885081052780151,0.9886532425880432,0.00014513731002807617,0.012629537037997532,1.0,1.0,0.3194580078125,0.3187255859375,0.29730224609375,0,0,0.2999056577682495,0.2818349599838257,0.885884165763855,0.6200666427612305,0.7472925782203674,0.8155452013015747,0.51123046875,0.48687514662742615,4,1 +893,0.9886532425880432,0.9887019395828247,4.869699478149414e-05,0.004291710222885269,1.0,1.0,0.3187255859375,0.31884765625,0.29644775390625,0,0,0.2996695637702942,0.28162890672683716,0.8855695724487305,0.620632529258728,0.7473623156547546,0.8154382705688477,0.51123046875,0.4868769943714142,4,1 +894,0.9887019395828247,0.988770604133606,6.866455078125e-05,0.006077552097072013,1.0,1.0,0.31884765625,0.3187255859375,0.2965087890625,0,0,0.29958945512771606,0.2815684378147125,0.8851237893104553,0.6208298206329346,0.7474606037139893,0.8153966665267944,0.51123046875,0.48686400055885315,4,1 +895,0.988770604133606,0.9889335036277771,0.00016289949417114258,0.01450652342381554,1.0,1.0,0.3187255859375,0.31842041015625,0.29638671875,0,0,0.29947608709335327,0.2814836800098419,0.8840409517288208,0.6210712194442749,0.7476979494094849,0.8153867721557617,0.5107421875,0.4868636131286621,4,1 +896,0.9889335036277771,0.9889386892318726,5.185604095458984e-06,0.0004685858939487787,1.0,1.0,0.31842041015625,0.31842041015625,0.296142578125,0,0,0.2992059290409088,0.2812439203262329,0.8840079307556152,0.6218137741088867,0.7477049827575684,0.8152457475662231,0.5107421875,0.4868636131286621,4,1 +897,0.9889386892318726,0.9890503883361816,0.00011169910430908203,0.010098179741133109,1.0,1.0,0.31842041015625,0.3177490234375,0.29608154296875,0,0,0.2991971969604492,0.28121858835220337,0.8832772970199585,0.6218752861022949,0.7478622198104858,0.8152382969856262,0.51123046875,0.4868278503417969,4,1 +898,0.9890503883361816,0.9891477823257446,9.739398956298828e-05,0.008894743718155294,1.0,1.0,0.3177490234375,0.317626953125,0.29620361328125,0,0,0.29900920391082764,0.2810717225074768,0.8826425671577454,0.6223065853118896,0.7479976415634155,0.8151609897613525,0.51123046875,0.4868280291557312,4,1 +899,0.9891477823257446,0.9891615509986877,1.3768672943115234e-05,0.0012687427912341407,1.0,1.0,0.317626953125,0.31756591796875,0.29608154296875,0,0,0.29884397983551025,0.28093189001083374,0.8825549483299255,0.6227530837059021,0.7480161786079407,0.8151085376739502,0.51123046875,0.4868280291557312,4,1 +900,0.9891615509986877,0.9892276525497437,6.61015510559082e-05,0.006098801687206815,1.0,1.0,0.31756591796875,0.3173828125,0.29608154296875,0,0,0.298820436000824,0.28091683983802795,0.882128119468689,0.6227819323539734,0.7481071949005127,0.8151072263717651,0.51123046875,0.4868100881576538,4,1 +901,0.9892276525497437,0.9895332455635071,0.00030559301376342773,0.028368284180822222,1.0,1.0,0.3173828125,0.3167724609375,0.296142578125,0,0,0.29870736598968506,0.28094932436943054,0.8800179958343506,0.6228716373443604,0.7485673427581787,0.8151228427886963,0.5107421875,0.4870450496673584,4,1 +902,0.9895332455635071,0.9898131489753723,0.0002799034118652344,0.026742139940661606,1.0,1.0,0.3167724609375,0.3162841796875,0.29571533203125,0,0,0.2981852889060974,0.28056439757347107,0.8781033754348755,0.6241852045059204,0.7489856481552124,0.8149352073669434,0.5107421875,0.4870125949382782,4,1 +903,0.9898131489753723,0.9898971915245056,8.404254913330078e-05,0.008250100932085872,1.0,1.0,0.3162841796875,0.31597900390625,0.295166015625,0,0,0.29769620299339294,0.28021514415740967,0.8775624632835388,0.6254191994667053,0.7491037845611572,0.8147435784339905,0.5107421875,0.486996591091156,4,1 +904,0.9898971915245056,0.9900386333465576,0.00014144182205200195,0.014000247791996318,1.0,1.0,0.31597900390625,0.31549072265625,0.294921875,0,0,0.29754638671875,0.28009897470474243,0.8766372203826904,0.6258107423782349,0.7493077516555786,0.8146604299545288,0.5107421875,0.4869979918003082,4,1 +905,0.9900386333465576,0.9901446104049683,0.00010597705841064453,0.010638807113281157,1.0,1.0,0.31549072265625,0.31549072265625,0.294677734375,0,0,0.29729247093200684,0.2799185514450073,0.8759530782699585,0.6264573335647583,0.7494606971740723,0.8145345449447632,0.5107421875,0.4870077967643738,4,1 +906,0.9901446104049683,0.9905820488929749,0.0004374384880065918,0.04438571238493825,1.0,1.0,0.31549072265625,0.31475830078125,0.29443359375,0,0,0.2971002459526062,0.2797900140285492,0.8728405237197876,0.6269384026527405,0.7501620650291443,0.8144422769546509,0.5107421875,0.4869566261768341,4,1 +907,0.9905820488929749,0.9911424517631531,0.0005604028701782227,0.059503692874366326,1.0,1.0,0.31475830078125,0.31341552734375,0.29461669921875,0,0,0.29630088806152344,0.2801624536514282,0.8684806227684021,0.6260223388671875,0.7512049078941345,0.814839780330658,0.51171875,0.4885749816894531,1,1 +908,0.9911424517631531,0.9913750886917114,0.0002326369285583496,0.026264257595639447,1.0,1.0,0.31341552734375,0.3131103515625,0.2938232421875,0,0,0.29529789090156555,0.2794588804244995,0.8668535947799683,0.6280253529548645,0.7516142129898071,0.8145458698272705,0.51123046875,0.4885540008544922,1,1 +909,0.9913750886917114,0.9915765523910522,0.0002014636993408203,0.023358350264681898,1.0,1.0,0.3131103515625,0.31243896484375,0.29327392578125,0,0,0.294861763715744,0.2791508138179779,0.8654528856277466,0.6287458539009094,0.7519669532775879,0.8144887685775757,0.51123046875,0.4885599911212921,1,1 +910,0.9915765523910522,0.9917757511138916,0.00019919872283935547,0.023648122726822433,1.0,1.0,0.31243896484375,0.311767578125,0.2926025390625,0,0,0.2944762110710144,0.2788677513599396,0.8640597462654114,0.6293154954910278,0.752314567565918,0.8145179152488708,0.51171875,0.48858171701431274,1,1 +911,0.9917757511138916,0.9918075203895569,3.17692756652832e-05,0.0038628786780692853,1.0,1.0,0.311767578125,0.31158447265625,0.292236328125,0,0,0.29408764839172363,0.2785887122154236,0.863851010799408,0.6298043727874756,0.7523666620254517,0.8145610094070435,0.51171875,0.48858171701431274,1,1 +912,0.9918075203895569,0.9919833540916443,0.00017583370208740234,0.021462818395454247,1.0,1.0,0.31158447265625,0.31121826171875,0.2921142578125,0,0,0.2940244674682617,0.278564989566803,0.8626189231872559,0.6298559308052063,0.7526720762252808,0.8145801424980164,0.51123046875,0.4885949492454529,1,1 +913,0.9919833540916443,0.9922022223472595,0.00021886825561523438,0.02730172420202681,1.0,1.0,0.31121826171875,0.31097412109375,0.29205322265625,0,0,0.2936742603778839,0.2782847583293915,0.8610447645187378,0.6302995681762695,0.7530626058578491,0.8146005272865295,0.51123046875,0.4885702133178711,1,1 +914,0.9922022223472595,0.992591381072998,0.0003891587257385254,0.049906363462640935,1.0,1.0,0.31097412109375,0.30950927734375,0.29150390625,0,0,0.2932298183441162,0.27801015973091125,0.8580083847045898,0.630759060382843,0.7538245320320129,0.8146395087242126,0.51123046875,0.48854324221611023,1,1 +915,0.992591381072998,0.9933103322982788,0.0007189512252807617,0.09704254360558666,1.0,1.0,0.30950927734375,0.306884765625,0.29071044921875,0,0,0.2924274206161499,0.2774304747581482,0.8515840172767639,0.6320047378540039,0.7555158138275146,0.8145332336425781,0.51123046875,0.4884945750236511,1,1 +916,0.9933103322982788,0.9933410882949829,3.075599670410156e-05,0.004597537288165796,1.0,1.0,0.306884765625,0.3070068359375,0.28912353515625,0,0,0.2908834218978882,0.27642595767974854,0.851398229598999,0.6339709162712097,0.7555685043334961,0.8143584132194519,0.51123046875,0.4884945750236511,1,1 +917,0.9933410882949829,0.9933838844299316,4.279613494873047e-05,0.0064268962924506345,1.0,1.0,0.3070068359375,0.30682373046875,0.28875732421875,0,0,0.2908118665218353,0.2763898968696594,0.8511354327201843,0.6340354084968567,0.7556425333023071,0.8143599033355713,0.51123046875,0.48848870396614075,1,1 +918,0.9933838844299316,0.9935493469238281,0.00016546249389648438,0.025009009009009008,1.0,1.0,0.30682373046875,0.30633544921875,0.2889404296875,0,0,0.29071199893951416,0.276320219039917,0.8500142097473145,0.6340939402580261,0.755961537361145,0.814374566078186,0.51123046875,0.4884585738182068,1,1 +919,0.9935493469238281,0.993721067905426,0.0001717209815979004,0.026620712596096986,1.0,1.0,0.30633544921875,0.30596923828125,0.2884521484375,0,0,0.29032397270202637,0.27606526017189026,0.8488194942474365,0.6343629956245422,0.756295382976532,0.8144063949584961,0.51123046875,0.48845839500427246,1,1 +920,0.993721067905426,0.9937824010848999,6.133317947387695e-05,0.009768090903050036,1.0,1.0,0.30596923828125,0.30560302734375,0.28851318359375,0,0,0.2899135947227478,0.27577757835388184,0.848416268825531,0.6346310377120972,0.7564091682434082,0.8144261837005615,0.51123046875,0.48845839500427246,1,1 +921,0.9937824010848999,0.993847131729126,6.473064422607422e-05,0.010410874858599995,1.0,1.0,0.30560302734375,0.305419921875,0.28851318359375,0,0,0.2897638976573944,0.27566540241241455,0.8479853272438049,0.6347377896308899,0.7565296292304993,0.8144373297691345,0.51123046875,0.48845839500427246,1,1 +922,0.993847131729126,0.993919312953949,7.218122482299805e-05,0.011731313209594297,1.0,1.0,0.305419921875,0.30535888671875,0.28839111328125,0,0,0.28960466384887695,0.27556225657463074,0.8474972248077393,0.6348415017127991,0.7566657066345215,0.8144493103027344,0.51123046875,0.48845207691192627,1,1 +923,0.993919312953949,0.9939928650856018,7.355213165283203e-05,0.012096023211817639,1.0,1.0,0.30535888671875,0.30517578125,0.2889404296875,0,0,0.289425790309906,0.27606523036956787,0.8469623923301697,0.6329927444458008,0.7568170428276062,0.8150017857551575,0.51220703125,0.48958271741867065,1,1 +924,0.9939928650856018,0.9941071271896362,0.00011426210403442383,0.019021065060575694,1.0,1.0,0.30517578125,0.3048095703125,0.28857421875,0,0,0.2892495393753052,0.27593064308166504,0.8460997939109802,0.6331716775894165,0.7570561766624451,0.814985990524292,0.51220703125,0.48958536982536316,1,1 +925,0.9941071271896362,0.9942218661308289,0.00011473894119262695,0.01947079885906176,1.0,1.0,0.3048095703125,0.30462646484375,0.2882080078125,0,0,0.28897300362586975,0.27567893266677856,0.8452284336090088,0.6336202621459961,0.7572864294052124,0.8149718046188354,0.51220703125,0.4894711673259735,1,1 +926,0.9942218661308289,0.9942703247070312,4.845857620239258e-05,0.008386544392981298,1.0,1.0,0.30462646484375,0.3048095703125,0.2879638671875,0,0,0.28869009017944336,0.2754615247249603,0.8448741436004639,0.6338801383972168,0.757375955581665,0.8149909973144531,0.51220703125,0.4894711673259735,1,1 +927,0.9942703247070312,0.9942972660064697,2.6941299438476562e-05,0.0047020639147802926,1.0,1.0,0.3048095703125,0.3048095703125,0.28778076171875,0,0,0.2885686755180359,0.27536138892173767,0.8446797132492065,0.634023129940033,0.7574243545532227,0.8149867057800293,0.51220703125,0.4894656836986542,1,1 +928,0.9942972660064697,0.9944311380386353,0.00013387203216552734,0.023475061666457627,1.0,1.0,0.3048095703125,0.3045654296875,0.28790283203125,0,0,0.28850069642066956,0.27528882026672363,0.8436316251754761,0.634190559387207,0.7576855421066284,0.8149607181549072,0.51171875,0.489398717880249,1,1 +929,0.9944311380386353,0.9944599270820618,2.8789043426513672e-05,0.005169645724071498,1.0,1.0,0.3045654296875,0.30450439453125,0.28814697265625,0,0,0.288161039352417,0.27499520778656006,0.8434224724769592,0.6345686912536621,0.7577370405197144,0.8149591684341431,0.51171875,0.4893953502178192,1,1 +930,0.9944599270820618,0.994511604309082,5.167722702026367e-05,0.00932789654319128,1.0,1.0,0.30450439453125,0.303955078125,0.2880859375,0,0,0.2880864143371582,0.27494335174560547,0.8430389761924744,0.6346303224563599,0.7578321695327759,0.8149635791778564,0.51171875,0.4893953502178192,1,1 +931,0.994511604309082,0.9946073293685913,9.572505950927734e-05,0.017441355343179844,1.0,1.0,0.303955078125,0.30352783203125,0.2877197265625,0,0,0.2879519462585449,0.2748225927352905,0.8423007726669312,0.6348326206207275,0.7580180764198303,0.8149625062942505,0.51171875,0.4893953502178192,1,1 +932,0.9946073293685913,0.994651198387146,4.38690185546875e-05,0.00813493379313394,1.0,1.0,0.30352783203125,0.3033447265625,0.2872314453125,0,0,0.28770068287849426,0.2746088206768036,0.841975212097168,0.635164201259613,0.7581010460853577,0.8149511814117432,0.51171875,0.4893953502178192,1,1 +933,0.994651198387146,0.9947022199630737,5.1021575927734375e-05,0.00953887985023067,1.0,1.0,0.3033447265625,0.3031005859375,0.28717041015625,0,0,0.28758376836776733,0.2745240330696106,0.8415927886962891,0.6352603435516357,0.7581981420516968,0.8149628639221191,0.51171875,0.4893953502178192,1,1 +934,0.9947022199630737,0.9953320622444153,0.0006298422813415527,0.11888796381719584,1.0,1.0,0.3031005859375,0.30059814453125,0.286865234375,0,0,0.28744691610336304,0.27437901496887207,0.8346531391143799,0.6355181336402893,0.7600651979446411,0.8149154782295227,0.5107421875,0.4893246293067932,1,1 +935,0.9953320622444153,0.9953348636627197,2.8014183044433594e-06,0.0006001404584051587,1.0,1.0,0.30059814453125,0.30059814453125,0.28643798828125,0,0,0.28574055433273315,0.2729288637638092,0.8346362113952637,0.6381015777587891,0.7600706219673157,0.8144426941871643,0.5107421875,0.4893246293067932,1,1 +936,0.9953348636627197,0.9957411885261536,0.0004063248634338379,0.0870981754995656,1.0,1.0,0.30059814453125,0.3001708984375,0.28643798828125,0,0,0.28573206067085266,0.2729572653770447,0.8307638168334961,0.6380416750907898,0.7612285017967224,0.8144534826278687,0.5107421875,0.48931339383125305,1,1 +937,0.9957411885261536,0.9957969188690186,5.5730342864990234e-05,0.013085891030216512,1.0,1.0,0.3001708984375,0.29998779296875,0.2855224609375,0,0,0.2845015227794647,0.2717471718788147,0.8304233551025391,0.6416032314300537,0.7613527774810791,0.8138414621353149,0.5107421875,0.48931339383125305,1,1 +938,0.9957969188690186,0.99586421251297,6.729364395141602e-05,0.016010550796982246,1.0,1.0,0.29998779296875,0.299560546875,0.28460693359375,0,0,0.2843174338340759,0.2715376019477844,0.830003023147583,0.642308235168457,0.7615088224411011,0.8137575387954712,0.5107421875,0.48931339383125305,1,1 +939,0.99586421251297,0.9960550665855408,0.00019085407257080078,0.04614697277588021,1.0,1.0,0.299560546875,0.2989501953125,0.28521728515625,0,0,0.2840919494628906,0.27176326513290405,0.8284780979156494,0.6418510675430298,0.7620735168457031,0.8139622211456299,0.51171875,0.4900299310684204,1,1 +940,0.9960550665855408,0.9961097240447998,5.46574592590332e-05,0.013855103120042307,1.0,1.0,0.2989501953125,0.298583984375,0.28387451171875,0,0,0.28346362709999084,0.27105116844177246,0.8281431198120117,0.6446933746337891,0.7622239589691162,0.8134081363677979,0.51171875,0.4900330901145935,1,1 +941,0.9961097240447998,0.9961240887641907,1.436471939086914e-05,0.003692467978182264,1.0,1.0,0.298583984375,0.2984619140625,0.28387451171875,0,0,0.2832743525505066,0.27084946632385254,0.82806396484375,0.6456646919250488,0.7622618675231934,0.8131701946258545,0.51171875,0.4900330901145935,1,1 +942,0.9961240887641907,0.9962068200111389,8.273124694824219e-05,0.02134497977763083,1.0,1.0,0.2984619140625,0.29766845703125,0.28375244140625,0,0,0.28322386741638184,0.27080005407333374,0.8275396823883057,0.645897626876831,0.762496829032898,0.8131141662597656,0.51171875,0.49000775814056396,1,1 +943,0.9962068200111389,0.996212899684906,6.079673767089844e-06,0.0016027907415264225,1.0,1.0,0.29766845703125,0.297607421875,0.28326416015625,0,0,0.2829318940639496,0.2705037593841553,0.8275087475776672,0.647479236125946,0.7625124454498291,0.8127963542938232,0.51171875,0.49000775814056396,1,1 +944,0.996212899684906,0.9962413907051086,2.849102020263672e-05,0.007523175472559296,1.0,1.0,0.297607421875,0.2974853515625,0.2833251953125,0,0,0.28290992975234985,0.27047210931777954,0.8273561000823975,0.6476006507873535,0.7625884413719177,0.8127692937850952,0.51171875,0.49000775814056396,1,1 +945,0.9962413907051086,0.9962881207466125,4.673004150390625e-05,0.012432801027609065,1.0,1.0,0.2974853515625,0.29766845703125,0.283203125,0,0,0.2828068137168884,0.27037882804870605,0.8270988464355469,0.6481767892837524,0.7627124786376953,0.8126413822174072,0.51171875,0.49000775814056396,1,1 +946,0.9962881207466125,0.9965037107467651,0.0002155900001525879,0.05808109193095143,1.0,1.0,0.29766845703125,0.29638671875,0.283203125,0,0,0.2826363444328308,0.2701960802078247,0.8254855871200562,0.6491459608078003,0.7633928060531616,0.8124240636825562,0.51171875,0.4900096356868744,1,1 +947,0.9965037107467651,0.9966223239898682,0.00011861324310302734,0.03392546626206144,1.0,1.0,0.29638671875,0.29571533203125,0.2825927734375,0,0,0.2818388342857361,0.2694043517112732,0.8249185085296631,0.6533778309822083,0.7636972665786743,0.811343252658844,0.51220703125,0.48994866013526917,1,1 +948,0.9966223239898682,0.9967311024665833,0.00010877847671508789,0.032205124585303876,1.0,1.0,0.29571533203125,0.2952880859375,0.28277587890625,0,0,0.2813716530799866,0.26891058683395386,0.8244968056678772,0.6553938984870911,0.7639412879943848,0.8107730150222778,0.51220703125,0.48994866013526917,1,1 +949,0.9967311024665833,0.9967816472053528,5.054473876953125e-05,0.015462319712634247,1.0,1.0,0.2952880859375,0.295166015625,0.2822265625,0,0,0.2809267044067383,0.2684671878814697,0.824385404586792,0.6567922234535217,0.7640259265899658,0.8104255795478821,0.51220703125,0.48994866013526917,1,1 +950,0.9967816472053528,0.9968292117118835,4.756450653076172e-05,0.014779146217242337,1.0,1.0,0.295166015625,0.29498291015625,0.2818603515625,0,0,0.2807124853134155,0.2682447135448456,0.8242908716201782,0.6572959423065186,0.7640993595123291,0.810297966003418,0.51220703125,0.48994866013526917,1,1 +951,0.9968292117118835,0.99686199426651,3.2782554626464844e-05,0.01033892888696731,1.0,1.0,0.29498291015625,0.2952880859375,0.28192138671875,0,0,0.2805072069168091,0.2682892680168152,0.8242305517196655,0.6569197773933411,0.7641468048095703,0.8103572130203247,0.5126953125,0.49027690291404724,1,1 +952,0.99686199426651,0.99690181016922,3.981590270996094e-05,0.01268828233327635,1.0,1.0,0.2952880859375,0.294921875,0.28173828125,0,0,0.2803660035133362,0.26813551783561707,0.8241528272628784,0.6571128964424133,0.7642022371292114,0.8102868795394897,0.5126953125,0.49028024077415466,1,1 +953,0.99690181016922,0.9973565936088562,0.00045478343963623047,0.14679004982781507,1.0,1.0,0.294921875,0.29241943359375,0.2813720703125,0,0,0.28019243478775024,0.26798784732818604,0.8198041915893555,0.65727698802948,0.7656412720680237,0.8102343678474426,0.5126953125,0.49029746651649475,1,1 +954,0.9973565936088562,0.9974305629730225,7.396936416625977e-05,0.027982592617646396,1.0,1.0,0.29241943359375,0.292236328125,0.27996826171875,0,0,0.27818676829338074,0.2660650312900543,0.8199271559715271,0.6569772362709045,0.7656482458114624,0.8100906610488892,0.5126953125,0.49028635025024414,1,1 +955,0.9974305629730225,0.9974671602249146,3.6597251892089844e-05,0.014243295907952121,1.0,1.0,0.292236328125,0.2921142578125,0.27972412109375,0,0,0.2778013348579407,0.2656868100166321,0.8199650049209595,0.6564608216285706,0.7656355500221252,0.8102045059204102,0.51220703125,0.4902872145175934,1,1 +956,0.9974671602249146,0.997498631477356,3.147125244140625e-05,0.012425283569445097,1.0,1.0,0.2921142578125,0.2919921875,0.27972412109375,0,0,0.277604877948761,0.26549455523490906,0.8199783563613892,0.6561275720596313,0.7656264305114746,0.8103135824203491,0.51220703125,0.4902872145175934,1,1 +957,0.997498631477356,0.997645378112793,0.00014674663543701172,0.05866653957965973,1.0,1.0,0.2919921875,0.29156494140625,0.27960205078125,0,0,0.2774333953857422,0.2653169631958008,0.8194118738174438,0.6558080911636353,0.765711784362793,0.8104530572891235,0.51220703125,0.4902880787849426,1,1 +958,0.997645378112793,0.9976761341094971,3.075599670410156e-05,0.013061968408262455,1.0,1.0,0.29156494140625,0.29150390625,0.27813720703125,0,0,0.2766226530075073,0.26448771357536316,0.8193426132202148,0.6537631750106812,0.7657060623168945,0.8112198114395142,0.51220703125,0.4902880787849426,1,1 +959,0.9976761341094971,0.9976776242256165,1.4901161193847656e-06,0.0006412229403919155,1.0,1.0,0.29150390625,0.29144287109375,0.27801513671875,0,0,0.27644097805023193,0.2642911672592163,0.8193399310112,0.6531574130058289,0.7657054662704468,0.8114460706710815,0.51220703125,0.4902880787849426,1,1 +960,0.9976776242256165,0.9977685213088989,9.08970832824707e-05,0.03913969663526936,1.0,1.0,0.29144287109375,0.2908935546875,0.27789306640625,0,0,0.2764320373535156,0.26428091526031494,0.8188865184783936,0.6531144976615906,0.7657370567321777,0.8114614486694336,0.5126953125,0.49029406905174255,1,1 +961,0.9977685213088989,0.9978628754615784,9.435415267944336e-05,0.042283241626155245,1.0,1.0,0.2908935546875,0.2908935546875,0.277587890625,0,0,0.275892436504364,0.2637156844139099,0.8182445764541626,0.6512411832809448,0.7657985687255859,0.8120402097702026,0.5126953125,0.4902917742729187,1,1 +962,0.9978628754615784,0.9979636669158936,0.00010079145431518555,0.04716218100683308,1.0,1.0,0.2908935546875,0.2901611328125,0.2760009765625,0,0,0.2753217816352844,0.26305997371673584,0.8173548579216003,0.6492974758148193,0.7659140229225159,0.8125547170639038,0.5126953125,0.49029380083084106,1,1 +963,0.9979636669158936,0.9980054497718811,4.178285598754883e-05,0.02051867462826367,1.0,1.0,0.2901611328125,0.2899169921875,0.2755126953125,0,0,0.2746795117855072,0.26231569051742554,0.8170102834701538,0.6475642323493958,0.7659516334533691,0.8129757642745972,0.5126953125,0.4902723729610443,1,1 +964,0.9980054497718811,0.9980308413505554,2.5391578674316406e-05,0.012730478438872785,1.0,1.0,0.2899169921875,0.289306640625,0.275390625,0,0,0.2743973135948181,0.2619795799255371,0.8167997598648071,0.6470076441764832,0.7659757137298584,0.8130615949630737,0.5126953125,0.4902723729610443,1,1 +965,0.9980308413505554,0.998049795627594,1.895427703857422e-05,0.00962557132911584,1.0,1.0,0.289306640625,0.28912353515625,0.275390625,0,0,0.27422136068344116,0.2617656886577606,0.8166402578353882,0.6467542052268982,0.7659943103790283,0.8130967020988464,0.5126953125,0.4902723729610443,1,1 +966,0.998049795627594,0.9981563687324524,0.00010657310485839844,0.05464714691769308,1.0,1.0,0.28912353515625,0.2884521484375,0.2750244140625,0,0,0.2740878462791443,0.2616037130355835,0.8153002262115479,0.6466145515441895,0.7662542462348938,0.8131241202354431,0.51220703125,0.4902631938457489,1,1 +967,0.9981563687324524,0.9982326030731201,7.623434066772461e-05,0.041350101839578414,1.0,1.0,0.2884521484375,0.28826904296875,0.273681640625,0,0,0.27334752678871155,0.26069915294647217,0.8143460154533386,0.6460967063903809,0.7664759159088135,0.8132043480873108,0.51220703125,0.49026012420654297,1,1 +968,0.9982326030731201,0.9983779788017273,0.00014537572860717773,0.08225414811817078,1.0,1.0,0.28826904296875,0.28692626953125,0.27313232421875,0,0,0.27278953790664673,0.2599714994430542,0.8119080662727356,0.6461926698684692,0.7671171426773071,0.8131570816040039,0.5126953125,0.4903138279914856,1,1 +969,0.9983779788017273,0.9984000325202942,2.205371856689453e-05,0.013596442876566348,1.0,1.0,0.28692626953125,0.28680419921875,0.271728515625,0,0,0.27166441082954407,0.25847917795181274,0.811673641204834,0.6468539237976074,0.7671865224838257,0.8129374980926514,0.5126953125,0.4903138279914856,1,1 +970,0.9984000325202942,0.9984531402587891,5.310773849487305e-05,0.03319301121335171,1.0,1.0,0.28680419921875,0.28607177734375,0.27105712890625,0,0,0.2714730501174927,0.2582002580165863,0.8109946250915527,0.6470234394073486,0.7673770785331726,0.8128315210342407,0.5126953125,0.4903138279914856,1,1 +971,0.9984531402587891,0.9984667301177979,1.3589859008789062e-05,0.00878545006165228,1.0,1.0,0.28607177734375,0.28582763671875,0.2703857421875,0,0,0.27100276947021484,0.257570743560791,0.8108515739440918,0.6474298238754272,0.7674155831336975,0.81260085105896,0.5126953125,0.4903138279914856,1,1 +972,0.9984667301177979,0.9986833930015564,0.00021666288375854492,0.14130772819157209,1.0,1.0,0.28582763671875,0.28326416015625,0.26995849609375,0,0,0.27087756991386414,0.2575090825557709,0.8056967258453369,0.6472774744033813,0.7689803838729858,0.812609851360321,0.5126953125,0.49039462208747864,1,1 +973,0.9986833930015564,0.9986989498138428,1.5556812286376953e-05,0.011815835936438951,1.0,1.0,0.28326416015625,0.28338623046875,0.26702880859375,0,0,0.26893383264541626,0.25494933128356934,0.8055845499038696,0.6489962339401245,0.7690176963806152,0.8115791082382202,0.5126953125,0.4903932511806488,1,1 +974,0.9986989498138428,0.9987186193466187,1.9669532775878906e-05,0.015118196811434854,1.0,1.0,0.28338623046875,0.28338623046875,0.2669677734375,0,0,0.26876378059387207,0.2547418773174286,0.805431604385376,0.6491460204124451,0.7690610885620117,0.8114898800849915,0.5126953125,0.4903932511806488,1,1 +975,0.9987186193466187,0.998735785484314,1.71661376953125e-05,0.013396595032096009,1.0,1.0,0.28338623046875,0.2828369140625,0.26666259765625,0,0,0.26854556798934937,0.2544795572757721,0.8052980303764343,0.6492927074432373,0.7690967321395874,0.8113933801651001,0.5126953125,0.4903932511806488,1,1 +976,0.998735785484314,0.9987553954124451,1.9609928131103516e-05,0.015511551155115511,1.0,1.0,0.2828369140625,0.2828369140625,0.2662353515625,0,0,0.2683515250682831,0.2542578876018524,0.8051370978355408,0.6494407057762146,0.7691339254379272,0.811294436454773,0.5126953125,0.4903969168663025,1,1 +977,0.9987553954124451,0.9987662434577942,1.0848045349121094e-05,0.008716057660073752,1.0,1.0,0.2828369140625,0.2828369140625,0.26617431640625,0,0,0.26812633872032166,0.2540047764778137,0.8050565719604492,0.6496549844741821,0.7691472172737122,0.8111610412597656,0.5126953125,0.4903969168663025,1,1 +978,0.9987662434577942,0.998792290687561,2.6047229766845703e-05,0.021112131020822263,1.0,1.0,0.2828369140625,0.28253173828125,0.2659912109375,0,0,0.2679992616176605,0.253875732421875,0.8048182129859924,0.6497621536254883,0.7691959142684937,0.8110980987548828,0.5126953125,0.4903969168663025,1,1 +979,0.998792290687561,0.9988264441490173,3.415346145629883e-05,0.028279538051525024,1.0,1.0,0.28253173828125,0.2822265625,0.2657470703125,0,0,0.267691045999527,0.2535649240016937,0.8044658899307251,0.6499828100204468,0.7692671418190002,0.8109740614891052,0.5126953125,0.49038535356521606,1,1 +980,0.9988264441490173,0.9988267421722412,2.980232238769531e-07,0.0002539489054802174,1.0,1.0,0.2822265625,0.2822265625,0.26507568359375,0,0,0.2672768831253052,0.25314798951148987,0.8044639825820923,0.6503440141677856,0.7692674398422241,0.8108276724815369,0.5126953125,0.49038535356521606,1,1 +981,0.9988267421722412,0.9989439249038696,0.00011718273162841797,0.09987807356228409,1.0,1.0,0.2822265625,0.28094482421875,0.26513671875,0,0,0.2672731578350067,0.25314709544181824,0.8021564483642578,0.6503162384033203,0.7698301076889038,0.8108313083648682,0.5126953125,0.4903852939605713,1,1 +982,0.9989439249038696,0.9989458918571472,1.9669532775878906e-06,0.0018625126989502202,1.0,1.0,0.28094482421875,0.28094482421875,0.2645263671875,0,0,0.26582279801368713,0.2516353130340576,0.8021454811096191,0.6513288021087646,0.769831120967865,0.8106623291969299,0.5126953125,0.4903852939605713,1,1 +983,0.9989458918571472,0.9989893436431885,4.3451786041259766e-05,0.04122137404580153,1.0,1.0,0.28094482421875,0.2801513671875,0.2645263671875,0,0,0.2657955288887024,0.25161176919937134,0.8016413450241089,0.6513805389404297,0.7699235081672668,0.8106469511985779,0.5126953125,0.4903852939605713,1,1 +984,0.9989893436431885,0.9990062713623047,1.6927719116210938e-05,0.016749233309742866,1.0,1.0,0.2801513671875,0.27996826171875,0.26409912109375,0,0,0.26519161462783813,0.25099754333496094,0.8014883995056152,0.6519024968147278,0.7699422836303711,0.8105648756027222,0.5126953125,0.4903852939605713,1,1 +985,0.9990062713623047,0.9990168213844299,1.055002212524414e-05,0.010616602687140115,1.0,1.0,0.27996826171875,0.28021240234375,0.26397705078125,0,0,0.26494574546813965,0.2507580518722534,0.8013955354690552,0.652112603187561,0.769951581954956,0.8105593919754028,0.5126953125,0.4903852939605713,1,1 +986,0.9990168213844299,0.9991600513458252,0.00014322996139526367,0.14568050924522583,1.0,1.0,0.28021240234375,0.27740478515625,0.2637939453125,0,0,0.2647899389266968,0.25058749318122864,0.7972882390022278,0.6523181200027466,0.7709470987319946,0.810542106628418,0.5126953125,0.49037301540374756,1,1 +987,0.9991600513458252,0.9991672039031982,7.152557373046875e-06,0.008515469770082317,1.0,1.0,0.27740478515625,0.2774658203125,0.2618408203125,0,0,0.2626490592956543,0.2483692616224289,0.7972270250320435,0.6537415981292725,0.7709503769874573,0.8107722401618958,0.5126953125,0.4904005229473114,1,1 +988,0.9991672039031982,0.9991850256919861,1.7821788787841797e-05,0.021399942742628113,1.0,1.0,0.2774658203125,0.27685546875,0.26153564453125,0,0,0.2625231444835663,0.2482433319091797,0.7970242500305176,0.6538163423538208,0.7709769010543823,0.8107670545578003,0.5126953125,0.4904005229473114,1,1 +989,0.9991850256919861,0.9992332458496094,4.8220157623291016e-05,0.059167702771886196,1.0,1.0,0.27685546875,0.2762451171875,0.2613525390625,0,0,0.26220691204071045,0.24790926277637482,0.7961046695709229,0.6539600491523743,0.7711412310600281,0.8107815980911255,0.5126953125,0.4904019236564636,1,1 +990,0.9992332458496094,0.9992586374282837,2.5391578674316406e-05,0.03311567164179104,1.0,1.0,0.2762451171875,0.2755126953125,0.260498046875,0,0,0.2613319754600525,0.2469293773174286,0.7957009077072144,0.6545430421829224,0.771194338798523,0.8108557462692261,0.5126953125,0.4903486967086792,1,1 +991,0.9992586374282837,0.9992601275444031,1.4901161193847656e-06,0.002009969448464383,1.0,1.0,0.2755126953125,0.27532958984375,0.2601318359375,0,0,0.2608393430709839,0.24640882015228271,0.7956845164299011,0.6545634269714355,0.7711950540542603,0.810957670211792,0.5126953125,0.4903486967086792,1,1 +992,0.9992601275444031,0.9993520379066467,9.191036224365234e-05,0.12422460323854025,1.0,1.0,0.27532958984375,0.272216796875,0.2598876953125,0,0,0.26080939173698425,0.24635520577430725,0.7926293611526489,0.6545895338058472,0.7719431519508362,0.8109486103057861,0.5126953125,0.4903554618358612,1,1 +993,0.9993520379066467,0.9994763731956482,0.00012433528900146484,0.19188667095943335,1.0,1.0,0.272216796875,0.26898193359375,0.257568359375,0,0,0.25895655155181885,0.24448725581169128,0.7867124676704407,0.6545389890670776,0.7738217115402222,0.811691403388977,0.5126953125,0.4903554618358612,1,1 +994,0.9994763731956482,0.9994998574256897,2.3484230041503906e-05,0.044849174729652816,1.0,1.0,0.26898193359375,0.26873779296875,0.25653076171875,0,0,0.2560981512069702,0.24256578087806702,0.786461353302002,0.655996561050415,0.7740011215209961,0.8125832676887512,0.5126953125,0.4903554618358612,1,1 +995,0.9994998574256897,0.9995558857917786,5.602836608886719e-05,0.1120247884638303,1.0,1.0,0.26873779296875,0.26763916015625,0.25616455078125,0,0,0.2554457187652588,0.24207529425621033,0.7846913933753967,0.6568328738212585,0.7747502326965332,0.8124962449073792,0.5126953125,0.4903554618358612,1,1 +996,0.9995558857917786,0.9995613098144531,5.424022674560547e-06,0.012213125754932224,1.0,1.0,0.26763916015625,0.267578125,0.253662109375,0,0,0.2538272738456726,0.24079272150993347,0.7846578359603882,0.6583214402198792,0.7747890949249268,0.8124274015426636,0.5126953125,0.4903441071510315,1,1 +997,0.9995613098144531,0.9995971322059631,3.5822391510009766e-05,0.08165760869565217,1.0,1.0,0.267578125,0.26666259765625,0.25347900390625,0,0,0.2536524534225464,0.24065983295440674,0.7836318016052246,0.6582976579666138,0.7752710580825806,0.8124897480010986,0.5126953125,0.49029237031936646,1,1 +998,0.9995971322059631,0.9996392726898193,4.214048385620117e-05,0.10460127237757065,1.0,1.0,0.26666259765625,0.265625,0.2529296875,0,0,0.2524884343147278,0.23955096304416656,0.7819689512252808,0.6587088704109192,0.7760193943977356,0.8124767541885376,0.5126953125,0.49029237031936646,1,1 +999,0.9996392726898193,0.9996495842933655,1.0311603546142578e-05,0.02858559153998678,1.0,1.0,0.265625,0.26556396484375,0.25164794921875,0,0,0.2509995996952057,0.23790672421455383,0.7818024158477783,0.658602774143219,0.7761328816413879,0.8125478029251099,0.5126953125,0.49029237031936646,1,1 +1000,0.9996495842933655,0.9996654391288757,1.5854835510253906e-05,0.0452457901003572,1.0,1.0,0.26556396484375,0.2646484375,0.2508544921875,0,0,0.2505871057510376,0.23740385472774506,0.7814251184463501,0.6586921215057373,0.776323676109314,0.8124864101409912,0.5126953125,0.49029237031936646,1,1 +1001,0.9996654391288757,0.9996708631515503,5.424022674560547e-06,0.016212364154641012,1.0,1.0,0.2646484375,0.264404296875,0.25030517578125,0,0,0.24993041157722473,0.23657776415348053,0.781353235244751,0.6591292023658752,0.7763678431510925,0.8122171759605408,0.5126953125,0.49029237031936646,1,1 +1002,0.9996708631515503,0.9996846318244934,1.3768672943115234e-05,0.04183266932270916,1.0,1.0,0.264404296875,0.26373291015625,0.24993896484375,0,0,0.24969248473644257,0.2362712323665619,0.7810313701629639,0.6593340039253235,0.7765223979949951,0.8121190071105957,0.5126953125,0.49029237031936646,1,1 +1003,0.9996846318244934,0.9996962547302246,1.1622905731201172e-05,0.036855036855036855,1.0,1.0,0.26373291015625,0.26318359375,0.248291015625,0,0,0.2490762174129486,0.23546481132507324,0.78078293800354,0.6596797704696655,0.7766449451446533,0.8119710087776184,0.5126953125,0.49029237031936646,1,1 +1004,0.9996962547302246,0.9997296929359436,3.343820571899414e-05,0.11008634222919937,1.0,1.0,0.26318359375,0.2613525390625,0.24737548828125,0,0,0.24853011965751648,0.23471836745738983,0.7791021466255188,0.6599782109260559,0.777334451675415,0.8118869662284851,0.5126953125,0.49030375480651855,1,1 +1005,0.9997296929359436,0.9997320771217346,2.384185791015625e-06,0.008820286659316428,1.0,1.0,0.2613525390625,0.26141357421875,0.24530029296875,0,0,0.24689655005931854,0.23262275755405426,0.7791106104850769,0.6609642505645752,0.7773512601852417,0.8116186261177063,0.5126953125,0.49030375480651855,1,1 +1006,0.9997320771217346,0.9997411966323853,9.119510650634766e-06,0.03403781979977753,1.0,1.0,0.26141357421875,0.26055908203125,0.24530029296875,0,0,0.24676179885864258,0.23245838284492493,0.7790231704711914,0.6610965132713318,0.7774459719657898,0.8115934729576111,0.5126953125,0.49030375480651855,1,1 +1007,0.9997411966323853,0.999765932559967,2.473592758178711e-05,0.0955780746199908,1.0,1.0,0.26055908203125,0.25946044921875,0.2445068359375,0,0,0.2462407946586609,0.23186352849006653,0.7780767679214478,0.6614820957183838,0.7778629064559937,0.8116227984428406,0.5126953125,0.49025604128837585,1,1 +1008,0.999765932559967,0.999826192855835,6.026029586791992e-05,0.25744843391902217,1.0,1.0,0.25946044921875,0.2552490234375,0.242919921875,0,0,0.2447611689567566,0.23048628866672516,0.7714197635650635,0.6624469757080078,0.7801885604858398,0.8116160035133362,0.5126953125,0.49025604128837585,1,1 +1009,0.999826192855835,0.9998645186424255,3.832578659057617e-05,0.22050754458161864,1.0,1.0,0.2552490234375,0.25177001953125,0.2392578125,0,0,0.24072211980819702,0.22748425602912903,0.7691782116889954,0.6616162061691284,0.7810325622558594,0.8123311996459961,0.51318359375,0.4906069040298462,1,1 +1010,0.9998645186424255,0.9998683929443359,3.874301910400391e-06,0.028596568411790584,1.0,1.0,0.25177001953125,0.2515869140625,0.23724365234375,0,0,0.23736248910427094,0.22474494576454163,0.769676923751831,0.6600939035415649,0.7808986902236938,0.8125190138816833,0.51318359375,0.4906069040298462,1,1 +1011,0.9998683929443359,0.9998835325241089,1.5139579772949219e-05,0.11503623188405797,1.0,1.0,0.2515869140625,0.24945068359375,0.237060546875,0,0,0.23693466186523438,0.22431354224681854,0.7699055671691895,0.6600202322006226,0.7807477116584778,0.8125190734863281,0.51318359375,0.4906069040298462,1,1 +1012,0.9998835325241089,0.9999070763587952,2.3543834686279297e-05,0.20214943705220062,1.0,1.0,0.24945068359375,0.24603271484375,0.23565673828125,0,0,0.2352343052625656,0.2229226678609848,0.7678053379058838,0.6601647138595581,0.7810812592506409,0.8125737905502319,0.51318359375,0.4906069040298462,1,1 +1013,0.9999070763587952,0.999915361404419,8.285045623779297e-06,0.08915971776779986,1.0,1.0,0.24603271484375,0.24468994140625,0.23272705078125,0,0,0.23229214549064636,0.22129756212234497,0.768418550491333,0.6605153679847717,0.7808874249458313,0.8124443292617798,0.51318359375,0.4906069040298462,1,1 +1014,0.999915361404419,0.9999184608459473,3.0994415283203125e-06,0.036619718309859155,1.0,1.0,0.24468994140625,0.24432373046875,0.23138427734375,0,0,0.23107308149337769,0.22045117616653442,0.7688618302345276,0.661819577217102,0.7807589173316956,0.8122916221618652,0.51318359375,0.4906069040298462,1,1 +1015,0.9999184608459473,0.9999213218688965,2.86102294921875e-06,0.03508771929824561,1.0,1.0,0.24432373046875,0.243408203125,0.23077392578125,0,0,0.23059916496276855,0.22002483904361725,0.7692563533782959,0.6624428033828735,0.7806332111358643,0.8123147487640381,0.51318359375,0.4906069040298462,1,1 +1016,0.9999213218688965,0.9999448657035828,2.3543834686279297e-05,0.29924242424242425,1.0,1.0,0.243408203125,0.23846435546875,0.230224609375,0,0,0.23015478253364563,0.21959340572357178,0.762802004814148,0.6630679368972778,0.7826349139213562,0.8123716115951538,0.51318359375,0.4906069040298462,1,1 +1017,0.9999448657035828,0.9999656677246094,2.0802021026611328e-05,0.3772972972972973,1.0,1.0,0.23846435546875,0.23297119140625,0.22674560546875,0,0,0.22637951374053955,0.2162797749042511,0.7536849975585938,0.6629158854484558,0.786357581615448,0.813656210899353,0.51318359375,0.4906069040298462,1,1 +1018,0.9999656677246094,0.999973475933075,7.808208465576172e-06,0.22743055555555555,1.0,1.0,0.23297119140625,0.2303466796875,0.2235107421875,0,0,0.22191156446933746,0.21234643459320068,0.7524716854095459,0.6602360010147095,0.7870829701423645,0.8147715330123901,0.51318359375,0.4906069040298462,1,1 +1019,0.999973475933075,0.9999783635139465,4.887580871582031e-06,0.1842696629213483,1.0,1.0,0.2303466796875,0.229736328125,0.22021484375,0,0,0.21945878863334656,0.21003666520118713,0.7507004737854004,0.6590596437454224,0.7876338362693787,0.8150966763496399,0.51318359375,0.4906069040298462,1,1 +1020,0.9999783635139465,0.9999887943267822,1.043081283569336e-05,0.4820936639118457,1.0,1.0,0.229736328125,0.2237548828125,0.21954345703125,0,0,0.21758684515953064,0.20816510915756226,0.7318038940429688,0.6577733159065247,0.7943207621574402,0.815633237361908,0.51318359375,0.4906069040298462,1,1 +1021,0.9999887943267822,0.999999463558197,1.0669231414794922e-05,0.9521276595744681,1.0,1.0,0.2237548828125,0.215087890625,0.21490478515625,0,0,0.21294240653514862,0.2041487991809845,0.6662083864212036,0.6553559303283691,0.8155621886253357,0.8180092573165894,0.51318359375,0.4906069040298462,1,1 +1022,0.999999463558197,1.0,5.364418029785156e-07,1.0,1.0,1.0,0.215087890625,0.2078857421875,0.2078857421875,0,0,0.2045658528804779,0.19729483127593994,0.6774141788482666,0.6774121522903442,0.814508318901062,0.8145108819007874,0.51318359375,0.4906069040298462,1,1 +1023,1.0,1.0,0.0,0.0,1.0,1.0,0.2078857421875,0.2078857421875,0.20025634765625,0,0,0.1972939670085907,0.1913301646709442,0.6774141788482666,0.6986179351806641,0.814508318901062,0.8100249767303467,0.51318359375,0.4906069040298462,1,1 +1024,1.0,1.0,0.0,0.0,1.0,1.0,0.2078857421875,0.2078857421875,0.20025634765625,0,0,0.1972939521074295,0.19133110344409943,0.6774141788482666,0.6986229419708252,0.814508318901062,0.810023844242096,0.51318359375,0.4906069040298462,1,1 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7d4b507d45632a1278f2d10b000cdfb7412f55 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_power_high_steps1024/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 1024, + "seed": 20314773, + "time_schedule": "power_high", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.2078857421875, + "final_token_acc_min": 0.02734375, + "final_token_acc_max": 0.5390625, + "final_exact_count": 0, + "final_best_ref_counts": [ + 8, + 22, + 4, + 9, + 11, + 7, + 0, + 3 + ], + "lock_stats": { + "final_token_acc_mean": 0.2078857421875, + "final_exact_count": 0, + "final_best_ref": [ + 3, + 5, + 1, + 1, + 0, + 4, + 7, + 1, + 2, + 3, + 1, + 4, + 0, + 5, + 3, + 3, + 1, + 3, + 1, + 0, + 4, + 1, + 2, + 1, + 1, + 4, + 5, + 5, + 7, + 1, + 7, + 1, + 5, + 1, + 3, + 1, + 1, + 1, + 5, + 1, + 1, + 0, + 5, + 4, + 4, + 2, + 1, + 1, + 2, + 4, + 4, + 3, + 0, + 4, + 1, + 3, + 4, + 3, + 0, + 0, + 0, + 1, + 1, + 4 + ], + "wrong_count_per_sample": [ + 242, + 196, + 174, + 244, + 249, + 132, + 192, + 244, + 237, + 241, + 244, + 141, + 211, + 145, + 245, + 241, + 244, + 246, + 247, + 242, + 135, + 148, + 196, + 244, + 244, + 145, + 189, + 189, + 248, + 165, + 201, + 244, + 190, + 244, + 242, + 244, + 244, + 244, + 245, + 244, + 244, + 159, + 176, + 131, + 131, + 207, + 244, + 123, + 185, + 209, + 131, + 245, + 187, + 134, + 244, + 246, + 137, + 244, + 195, + 181, + 197, + 161, + 118, + 147 + ], + "wrong_state_lock_step": { + "n": 12978, + "min": 0.0, + "p25": 755.0, + "median": 972.0, + "p75": 1019.0, + "max": 1022.0, + "mean": 847.2026506395439 + }, + "wrong_endpoint_first_emit_step": { + "n": 12978, + "min": 1.0, + "p25": 350.0, + "median": 823.0, + "p75": 1005.75, + "max": 1022.0, + "mean": 668.4335799044537 + }, + "num_steps": 1024 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1945, + "mass": 0.11871337890625 + }, + { + "id": 3, + "old_text": ",", + "count": 1649, + "mass": 0.10064697265625 + }, + { + "id": 5, + "old_text": ".", + "count": 1340, + "mass": 0.081787109375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 710, + "mass": 0.0433349609375 + }, + { + "id": 52, + "old_text": " to", + "count": 502, + "mass": 0.0306396484375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33984375, + 0.15625, + 0.1484375, + 0.0703125, + 0.1796875, + 0.2109375, + 0.1328125, + 0.2109375, + 0.578125, + 0.12109375, + 0.0625, + 0.3125, + 0.125, + 0.37109375, + 0.04296875, + 0.2578125, + 0.26171875, + 0.2265625, + 0.3984375, + 0.3984375, + 0.62890625, + 0.2734375, + 0.515625, + 0.140625, + 0.296875, + 0.53515625, + 0.23828125, + 0.16796875, + 0.359375, + 0.3359375, + 0.109375, + 0.1875, + 0.14453125, + 0.13671875, + 0.2421875, + 0.140625, + 0.25390625, + 0.2265625, + 0.08203125, + 0.171875, + 0.25, + 0.125, + 0.11328125, + 0.1796875, + 0.140625, + 0.2734375, + 0.1875, + 0.7265625, + 0.2578125, + 0.171875, + 0.1640625, + 0.20703125, + 0.22265625, + 0.24609375, + 0.44140625, + 0.078125, + 0.32421875, + 0.28515625, + 0.37109375, + 0.16015625, + 0.34765625, + 0.37109375, + 0.71484375, + 0.1328125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 0, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1942, + "mass": 0.1185302734375 + }, + { + "id": 3, + "old_text": ",", + "count": 1654, + "mass": 0.1009521484375 + }, + { + "id": 5, + "old_text": ".", + "count": 1341, + "mass": 0.08184814453125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 707, + "mass": 0.04315185546875 + }, + { + "id": 52, + "old_text": " to", + "count": 499, + "mass": 0.03045654296875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33984375, + 0.15625, + 0.15625, + 0.0703125, + 0.18359375, + 0.21484375, + 0.1328125, + 0.2109375, + 0.578125, + 0.1171875, + 0.0625, + 0.30859375, + 0.125, + 0.37109375, + 0.0390625, + 0.2578125, + 0.265625, + 0.22265625, + 0.40234375, + 0.41015625, + 0.625, + 0.28125, + 0.51953125, + 0.140625, + 0.296875, + 0.53515625, + 0.24609375, + 0.171875, + 0.359375, + 0.33984375, + 0.109375, + 0.1875, + 0.14453125, + 0.13671875, + 0.2421875, + 0.140625, + 0.25390625, + 0.22265625, + 0.08203125, + 0.171875, + 0.25, + 0.12109375, + 0.11328125, + 0.1796875, + 0.140625, + 0.26953125, + 0.1875, + 0.7265625, + 0.2578125, + 0.17578125, + 0.16796875, + 0.20703125, + 0.22265625, + 0.2421875, + 0.4375, + 0.08203125, + 0.32421875, + 0.28515625, + 0.37890625, + 0.16015625, + 0.3515625, + 0.37109375, + 0.71484375, + 0.1328125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 0, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1953, + "mass": 0.11920166015625 + }, + { + "id": 3, + "old_text": ",", + "count": 1665, + "mass": 0.10162353515625 + }, + { + "id": 5, + "old_text": ".", + "count": 1339, + "mass": 0.08172607421875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 705, + "mass": 0.04302978515625 + }, + { + "id": 52, + "old_text": " to", + "count": 498, + "mass": 0.0303955078125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.34375, + 0.15625, + 0.15625, + 0.0703125, + 0.18359375, + 0.22265625, + 0.1328125, + 0.20703125, + 0.578125, + 0.1171875, + 0.078125, + 0.30859375, + 0.12890625, + 0.359375, + 0.0390625, + 0.265625, + 0.265625, + 0.22265625, + 0.40625, + 0.4140625, + 0.625, + 0.28515625, + 0.5234375, + 0.140625, + 0.3046875, + 0.5390625, + 0.25, + 0.17578125, + 0.3671875, + 0.34375, + 0.11328125, + 0.1875, + 0.140625, + 0.13671875, + 0.2421875, + 0.140625, + 0.26171875, + 0.22265625, + 0.0859375, + 0.16796875, + 0.25, + 0.12109375, + 0.12109375, + 0.18359375, + 0.140625, + 0.26953125, + 0.203125, + 0.7265625, + 0.26171875, + 0.18359375, + 0.171875, + 0.19921875, + 0.22265625, + 0.2421875, + 0.4375, + 0.08984375, + 0.32421875, + 0.28515625, + 0.3828125, + 0.15625, + 0.359375, + 0.37109375, + 0.71484375, + 0.12890625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1957, + "mass": 0.11944580078125 + }, + { + "id": 3, + "old_text": ",", + "count": 1686, + "mass": 0.1029052734375 + }, + { + "id": 5, + "old_text": ".", + "count": 1318, + "mass": 0.0804443359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 699, + "mass": 0.04266357421875 + }, + { + "id": 52, + "old_text": " to", + "count": 496, + "mass": 0.0302734375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.328125, + 0.15625, + 0.16796875, + 0.0703125, + 0.17578125, + 0.26171875, + 0.13671875, + 0.1875, + 0.59375, + 0.09375, + 0.0703125, + 0.3203125, + 0.13671875, + 0.328125, + 0.03515625, + 0.28515625, + 0.25390625, + 0.2265625, + 0.40234375, + 0.44140625, + 0.62109375, + 0.3203125, + 0.5390625, + 0.1484375, + 0.328125, + 0.54296875, + 0.25390625, + 0.18359375, + 0.3671875, + 0.3515625, + 0.125, + 0.19140625, + 0.13671875, + 0.15625, + 0.24609375, + 0.140625, + 0.265625, + 0.21484375, + 0.08984375, + 0.171875, + 0.2421875, + 0.12890625, + 0.1328125, + 0.1953125, + 0.13671875, + 0.2734375, + 0.21875, + 0.72265625, + 0.26953125, + 0.18359375, + 0.17578125, + 0.20703125, + 0.21484375, + 0.234375, + 0.42578125, + 0.09375, + 0.34375, + 0.296875, + 0.40234375, + 0.15234375, + 0.3671875, + 0.3671875, + 0.71484375, + 0.12890625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1969, + "mass": 0.12017822265625 + }, + { + "id": 3, + "old_text": ",", + "count": 1671, + "mass": 0.10198974609375 + }, + { + "id": 5, + "old_text": ".", + "count": 1332, + "mass": 0.081298828125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 689, + "mass": 0.04205322265625 + }, + { + "id": 52, + "old_text": " to", + "count": 500, + "mass": 0.030517578125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.3515625, + 0.16796875, + 0.1796875, + 0.0703125, + 0.19921875, + 0.3046875, + 0.13671875, + 0.16015625, + 0.62109375, + 0.078125, + 0.0703125, + 0.35546875, + 0.1328125, + 0.28125, + 0.03125, + 0.27734375, + 0.21875, + 0.25, + 0.390625, + 0.48046875, + 0.61328125, + 0.40625, + 0.53515625, + 0.17578125, + 0.359375, + 0.55859375, + 0.3203125, + 0.20703125, + 0.3515625, + 0.39453125, + 0.140625, + 0.17578125, + 0.125, + 0.1953125, + 0.2421875, + 0.1328125, + 0.27734375, + 0.1875, + 0.09375, + 0.171875, + 0.2421875, + 0.13671875, + 0.16015625, + 0.21875, + 0.13671875, + 0.26953125, + 0.23046875, + 0.71875, + 0.296875, + 0.1953125, + 0.18359375, + 0.22265625, + 0.2421875, + 0.21484375, + 0.375, + 0.10546875, + 0.3515625, + 0.31640625, + 0.42578125, + 0.14453125, + 0.37890625, + 0.35546875, + 0.71484375, + 0.13671875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 2, + 0, + 6, + 0, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 3, + 0, + 6, + 6, + 0, + 1, + 4, + 5, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 4 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1935, + "mass": 0.11810302734375 + }, + { + "id": 3, + "old_text": ",", + "count": 1649, + "mass": 0.10064697265625 + }, + { + "id": 5, + "old_text": ".", + "count": 1289, + "mass": 0.07867431640625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 674, + "mass": 0.0411376953125 + }, + { + "id": 52, + "old_text": " to", + "count": 480, + "mass": 0.029296875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.37109375, + 0.18359375, + 0.171875, + 0.07421875, + 0.25390625, + 0.359375, + 0.140625, + 0.1484375, + 0.63671875, + 0.06640625, + 0.078125, + 0.4140625, + 0.140625, + 0.23828125, + 0.01953125, + 0.2421875, + 0.18359375, + 0.2890625, + 0.421875, + 0.52734375, + 0.61328125, + 0.47265625, + 0.5546875, + 0.19140625, + 0.421875, + 0.5703125, + 0.421875, + 0.21875, + 0.36328125, + 0.40625, + 0.140625, + 0.15234375, + 0.12890625, + 0.23828125, + 0.25390625, + 0.109375, + 0.27734375, + 0.26171875, + 0.11328125, + 0.1484375, + 0.25390625, + 0.16796875, + 0.171875, + 0.234375, + 0.14453125, + 0.27734375, + 0.18359375, + 0.7109375, + 0.30859375, + 0.1796875, + 0.1953125, + 0.3203125, + 0.27734375, + 0.1875, + 0.296875, + 0.12890625, + 0.3828125, + 0.3515625, + 0.49609375, + 0.12109375, + 0.390625, + 0.30078125, + 0.7109375, + 0.2109375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 1, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 3, + 7, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 5, + 0, + 7, + 1, + 6, + 3, + 7, + 0, + 6, + 0, + 1, + 4, + 5, + 2, + 4, + 1, + 2, + 4, + 7, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 4 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1719, + "mass": 0.10491943359375 + }, + { + "id": 3, + "old_text": ",", + "count": 1494, + "mass": 0.0911865234375 + }, + { + "id": 5, + "old_text": ".", + "count": 1167, + "mass": 0.07122802734375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 634, + "mass": 0.0386962890625 + }, + { + "id": 38, + "old_text": " a", + "count": 467, + "mass": 0.02850341796875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.50390625, + 0.19140625, + 0.1015625, + 0.10546875, + 0.38671875, + 0.45703125, + 0.21484375, + 0.234375, + 0.73046875, + 0.0703125, + 0.10546875, + 0.51953125, + 0.34765625, + 0.234375, + 0.0234375, + 0.3046875, + 0.3515625, + 0.48046875, + 0.5078125, + 0.62109375, + 0.6328125, + 0.5625, + 0.5859375, + 0.16796875, + 0.54296875, + 0.65234375, + 0.578125, + 0.21484375, + 0.41015625, + 0.4375, + 0.140625, + 0.1875, + 0.12109375, + 0.32421875, + 0.25390625, + 0.15625, + 0.35546875, + 0.49609375, + 0.12890625, + 0.17578125, + 0.2890625, + 0.30859375, + 0.19921875, + 0.3125, + 0.140625, + 0.26171875, + 0.1875, + 0.67578125, + 0.37109375, + 0.19140625, + 0.22265625, + 0.50390625, + 0.40234375, + 0.23046875, + 0.2265625, + 0.14453125, + 0.484375, + 0.39453125, + 0.59375, + 0.34375, + 0.41796875, + 0.203125, + 0.69921875, + 0.359375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 3, + 3, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 7, + 3, + 0, + 7, + 3, + 6, + 3, + 0, + 0, + 6, + 0, + 1, + 4, + 4, + 2, + 3, + 1, + 2, + 4, + 7, + 7, + 0, + 4, + 2, + 3, + 4, + 7, + 0, + 0, + 0, + 1, + 1, + 4 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1464, + "mass": 0.08935546875 + }, + { + "id": 3, + "old_text": ",", + "count": 1323, + "mass": 0.08074951171875 + }, + { + "id": 5, + "old_text": ".", + "count": 1030, + "mass": 0.0628662109375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 591, + "mass": 0.03607177734375 + }, + { + "id": 38, + "old_text": " a", + "count": 424, + "mass": 0.02587890625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.65234375, + 0.140625, + 0.03125, + 0.12109375, + 0.4765625, + 0.6328125, + 0.28125, + 0.24609375, + 0.76953125, + 0.07421875, + 0.20703125, + 0.6328125, + 0.390625, + 0.19140625, + 0.02734375, + 0.36328125, + 0.31640625, + 0.671875, + 0.6015625, + 0.67578125, + 0.69921875, + 0.6796875, + 0.62890625, + 0.21484375, + 0.58984375, + 0.7578125, + 0.6875, + 0.1875, + 0.390625, + 0.42578125, + 0.06640625, + 0.19921875, + 0.2109375, + 0.265625, + 0.31640625, + 0.24609375, + 0.390625, + 0.63671875, + 0.13671875, + 0.12890625, + 0.40625, + 0.52734375, + 0.2109375, + 0.359375, + 0.16796875, + 0.37890625, + 0.33984375, + 0.68359375, + 0.36328125, + 0.1640625, + 0.16015625, + 0.62109375, + 0.5859375, + 0.2578125, + 0.13671875, + 0.1171875, + 0.6875, + 0.421875, + 0.6171875, + 0.5625, + 0.4375, + 0.28125, + 0.71875, + 0.5078125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 3, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 0, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 7, + 3, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 0, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 7, + 3, + 0, + 7, + 3, + 6, + 3, + 0, + 6, + 6, + 0, + 5, + 4, + 4, + 2, + 3, + 1, + 2, + 4, + 4, + 7, + 0, + 4, + 2, + 3, + 4, + 7, + 0, + 0, + 0, + 1, + 1, + 4 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 862, + "old_text": " discern", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1360, + "mass": 0.0830078125 + }, + { + "id": 3, + "old_text": ",", + "count": 1259, + "mass": 0.07684326171875 + }, + { + "id": 5, + "old_text": ".", + "count": 961, + "mass": 0.05865478515625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 587, + "mass": 0.03582763671875 + }, + { + "id": 38, + "old_text": " a", + "count": 436, + "mass": 0.026611328125 + } + ], + "state_best_acc": [ + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.015625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0078125, + 0.0, + 0.0078125, + 0.00390625, + 0.01953125, + 0.0 + ], + "endpoint_best_acc": [ + 0.69140625, + 0.10546875, + 0.02734375, + 0.16015625, + 0.51953125, + 0.765625, + 0.22265625, + 0.19140625, + 0.75, + 0.06640625, + 0.19921875, + 0.66796875, + 0.48046875, + 0.07421875, + 0.02734375, + 0.296875, + 0.24609375, + 0.6953125, + 0.640625, + 0.66796875, + 0.73828125, + 0.7109375, + 0.65234375, + 0.296875, + 0.5625, + 0.7890625, + 0.71484375, + 0.17578125, + 0.49609375, + 0.42578125, + 0.1015625, + 0.23828125, + 0.16796875, + 0.10546875, + 0.53125, + 0.30078125, + 0.41015625, + 0.64453125, + 0.1171875, + 0.12890625, + 0.62109375, + 0.62109375, + 0.25390625, + 0.3984375, + 0.22265625, + 0.59765625, + 0.31640625, + 0.6953125, + 0.45703125, + 0.08203125, + 0.33984375, + 0.68359375, + 0.6953125, + 0.3671875, + 0.1796875, + 0.05078125, + 0.78515625, + 0.4296875, + 0.58984375, + 0.625, + 0.4296875, + 0.41796875, + 0.6953125, + 0.5703125 + ], + "state_best_ref": [ + 0, + 2, + 1, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 1, + 0, + 4, + 6, + 0, + 4, + 0, + 0, + 7, + 3, + 4, + 2, + 2, + 3, + 1, + 2, + 4, + 2, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 0, + 5, + 5, + 4, + 0, + 6, + 4, + 3, + 0, + 0, + 0, + 1, + 1, + 0 + ], + "endpoint_best_ref": [ + 0, + 5, + 1, + 3, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 7, + 3, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 0, + 3, + 4, + 5, + 2, + 3, + 1, + 7, + 6, + 3, + 0, + 7, + 3, + 6, + 3, + 0, + 6, + 6, + 0, + 5, + 4, + 4, + 2, + 3, + 1, + 2, + 4, + 4, + 7, + 0, + 4, + 4, + 5, + 4, + 7, + 0, + 0, + 0, + 1, + 1, + 4 + ] + } + }, + "last_step": { + "step": 1024, + "progress": 1.0, + "next_progress": 1.0, + "dt": 0.0, + "gamma": 0.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.2078857421875, + "state_acc_after_mean": 0.2078857421875, + "endpoint_acc_mean": 0.20025634765625, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.1972939521074295, + "endpoint_pgold_best_mean": 0.19133110344409943, + "state_entropy_mean": 0.6774141788482666, + "endpoint_entropy_mean": 0.6986229419708252, + "state_maxprob_mean": 0.814508318901062, + "endpoint_maxprob_mean": 0.810023844242096, + "oracle_clean_acc_mean": 0.51318359375, + "oracle_clean_pgold_mean": 0.4906069040298462, + "state_best_ref_mode": 1, + "endpoint_best_ref_mode": 1, + "state_best_ref_counts": [ + 8, + 22, + 4, + 9, + 11, + 7, + 0, + 3 + ], + "endpoint_best_ref_counts": [ + 9, + 22, + 3, + 8, + 11, + 8, + 0, + 3 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_uniform_steps1024/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_uniform_steps1024/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..e1208fd614cee4eb18c4ca29f5a7486ec452e810 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/trace_uniform_steps1024/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 1024, + "seed": 20314773, + "time_schedule": "uniform", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.2733154296875, + "final_token_acc_min": 0.03125, + "final_token_acc_max": 0.58203125, + "final_exact_count": 0, + "final_best_ref_counts": [ + 10, + 13, + 5, + 4, + 11, + 10, + 5, + 6 + ], + "lock_stats": { + "final_token_acc_mean": 0.2733154296875, + "final_exact_count": 0, + "final_best_ref": [ + 0, + 5, + 1, + 1, + 0, + 4, + 7, + 1, + 6, + 0, + 1, + 4, + 0, + 5, + 3, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 5, + 4, + 5, + 5, + 5, + 1, + 7, + 6, + 5, + 1, + 3, + 1, + 6, + 2, + 5, + 6, + 6, + 0, + 5, + 4, + 4, + 2, + 1, + 1, + 2, + 4, + 4, + 7, + 0, + 4, + 2, + 7, + 4, + 3, + 0, + 0, + 0, + 1, + 1, + 4 + ], + "wrong_count_per_sample": [ + 235, + 196, + 201, + 244, + 211, + 127, + 194, + 244, + 142, + 246, + 244, + 125, + 139, + 150, + 245, + 212, + 244, + 248, + 243, + 151, + 125, + 120, + 180, + 244, + 247, + 128, + 179, + 189, + 239, + 178, + 200, + 155, + 164, + 244, + 245, + 244, + 168, + 244, + 247, + 161, + 168, + 141, + 119, + 122, + 140, + 184, + 244, + 109, + 169, + 238, + 124, + 244, + 153, + 124, + 248, + 212, + 127, + 245, + 152, + 139, + 154, + 167, + 107, + 134 + ], + "wrong_state_lock_step": { + "n": 11906, + "min": 0.0, + "p25": 839.25, + "median": 1000.0, + "p75": 1023.0, + "max": 1024.0, + "mean": 888.4230640013438 + }, + "wrong_endpoint_first_emit_step": { + "n": 11906, + "min": 1.0, + "p25": 342.0, + "median": 899.0, + "p75": 1016.0, + "max": 1024.0, + "mean": 693.369729548127 + }, + "num_steps": 1024 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1943, + "mass": 0.11859130859375 + }, + { + "id": 3, + "old_text": ",", + "count": 1649, + "mass": 0.10064697265625 + }, + { + "id": 5, + "old_text": ".", + "count": 1340, + "mass": 0.081787109375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 708, + "mass": 0.043212890625 + }, + { + "id": 52, + "old_text": " to", + "count": 500, + "mass": 0.030517578125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33984375, + 0.15625, + 0.1484375, + 0.0703125, + 0.1796875, + 0.2109375, + 0.1328125, + 0.2109375, + 0.578125, + 0.12109375, + 0.0625, + 0.3125, + 0.125, + 0.37109375, + 0.04296875, + 0.2578125, + 0.265625, + 0.22265625, + 0.40234375, + 0.3984375, + 0.6328125, + 0.2734375, + 0.515625, + 0.140625, + 0.296875, + 0.53515625, + 0.234375, + 0.16796875, + 0.359375, + 0.3359375, + 0.109375, + 0.1875, + 0.14453125, + 0.13671875, + 0.2421875, + 0.140625, + 0.25390625, + 0.22265625, + 0.08203125, + 0.171875, + 0.25, + 0.125, + 0.11328125, + 0.1796875, + 0.140625, + 0.2734375, + 0.1875, + 0.7265625, + 0.2578125, + 0.17578125, + 0.1640625, + 0.20703125, + 0.22265625, + 0.24609375, + 0.44140625, + 0.078125, + 0.32421875, + 0.28515625, + 0.375, + 0.16015625, + 0.34765625, + 0.37109375, + 0.71484375, + 0.1328125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 0, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1942, + "mass": 0.1185302734375 + }, + { + "id": 3, + "old_text": ",", + "count": 1649, + "mass": 0.10064697265625 + }, + { + "id": 5, + "old_text": ".", + "count": 1344, + "mass": 0.08203125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 706, + "mass": 0.0430908203125 + }, + { + "id": 52, + "old_text": " to", + "count": 500, + "mass": 0.030517578125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33984375, + 0.15625, + 0.15234375, + 0.0703125, + 0.1796875, + 0.21484375, + 0.1328125, + 0.2109375, + 0.578125, + 0.12109375, + 0.0625, + 0.3125, + 0.125, + 0.37109375, + 0.04296875, + 0.26171875, + 0.26171875, + 0.21875, + 0.3984375, + 0.4140625, + 0.625, + 0.27734375, + 0.51953125, + 0.140625, + 0.296875, + 0.53515625, + 0.24609375, + 0.16796875, + 0.359375, + 0.3359375, + 0.109375, + 0.1875, + 0.14453125, + 0.13671875, + 0.2421875, + 0.140625, + 0.2578125, + 0.22265625, + 0.08203125, + 0.171875, + 0.25, + 0.125, + 0.11328125, + 0.1796875, + 0.140625, + 0.2734375, + 0.1875, + 0.7265625, + 0.26171875, + 0.17578125, + 0.1640625, + 0.20703125, + 0.22265625, + 0.24609375, + 0.4375, + 0.08203125, + 0.32421875, + 0.28515625, + 0.37890625, + 0.16015625, + 0.3515625, + 0.375, + 0.71484375, + 0.1328125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 0, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1952, + "mass": 0.119140625 + }, + { + "id": 3, + "old_text": ",", + "count": 1655, + "mass": 0.10101318359375 + }, + { + "id": 5, + "old_text": ".", + "count": 1339, + "mass": 0.08172607421875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 704, + "mass": 0.04296875 + }, + { + "id": 52, + "old_text": " to", + "count": 497, + "mass": 0.03033447265625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33984375, + 0.15625, + 0.15625, + 0.0703125, + 0.18359375, + 0.21875, + 0.1328125, + 0.2109375, + 0.578125, + 0.12109375, + 0.07421875, + 0.30859375, + 0.12890625, + 0.3671875, + 0.0390625, + 0.26171875, + 0.265625, + 0.22265625, + 0.40625, + 0.4140625, + 0.62890625, + 0.27734375, + 0.5234375, + 0.140625, + 0.30078125, + 0.53515625, + 0.24609375, + 0.17578125, + 0.36328125, + 0.33984375, + 0.11328125, + 0.1875, + 0.140625, + 0.13671875, + 0.2421875, + 0.140625, + 0.2578125, + 0.22265625, + 0.08203125, + 0.171875, + 0.25, + 0.12109375, + 0.11328125, + 0.18359375, + 0.140625, + 0.26953125, + 0.19140625, + 0.7265625, + 0.26171875, + 0.1796875, + 0.16796875, + 0.203125, + 0.22265625, + 0.2421875, + 0.4375, + 0.08984375, + 0.32421875, + 0.28515625, + 0.3828125, + 0.16015625, + 0.35546875, + 0.3671875, + 0.71484375, + 0.12890625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1960, + "mass": 0.11962890625 + }, + { + "id": 3, + "old_text": ",", + "count": 1672, + "mass": 0.10205078125 + }, + { + "id": 5, + "old_text": ".", + "count": 1337, + "mass": 0.08160400390625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 707, + "mass": 0.04315185546875 + }, + { + "id": 52, + "old_text": " to", + "count": 502, + "mass": 0.0306396484375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.3359375, + 0.15625, + 0.16015625, + 0.0703125, + 0.17578125, + 0.23046875, + 0.1328125, + 0.19921875, + 0.5859375, + 0.1171875, + 0.078125, + 0.3125, + 0.1328125, + 0.34765625, + 0.0390625, + 0.2734375, + 0.265625, + 0.2265625, + 0.40234375, + 0.42578125, + 0.62109375, + 0.29296875, + 0.52734375, + 0.140625, + 0.3125, + 0.5390625, + 0.25, + 0.1796875, + 0.3671875, + 0.34375, + 0.1171875, + 0.1953125, + 0.140625, + 0.13671875, + 0.24609375, + 0.140625, + 0.26171875, + 0.21875, + 0.08984375, + 0.16796875, + 0.24609375, + 0.125, + 0.12890625, + 0.18359375, + 0.140625, + 0.265625, + 0.20703125, + 0.7265625, + 0.265625, + 0.1875, + 0.171875, + 0.203125, + 0.22265625, + 0.2421875, + 0.4296875, + 0.08984375, + 0.33203125, + 0.29296875, + 0.38671875, + 0.15625, + 0.359375, + 0.375, + 0.71484375, + 0.12890625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 2, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1959, + "mass": 0.11956787109375 + }, + { + "id": 3, + "old_text": ",", + "count": 1679, + "mass": 0.10247802734375 + }, + { + "id": 5, + "old_text": ".", + "count": 1320, + "mass": 0.08056640625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 696, + "mass": 0.04248046875 + }, + { + "id": 52, + "old_text": " to", + "count": 495, + "mass": 0.03021240234375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.33203125, + 0.1484375, + 0.16796875, + 0.0703125, + 0.1796875, + 0.26953125, + 0.13671875, + 0.18359375, + 0.59375, + 0.09375, + 0.0703125, + 0.328125, + 0.13671875, + 0.3203125, + 0.03515625, + 0.28515625, + 0.25, + 0.234375, + 0.3984375, + 0.44921875, + 0.62109375, + 0.328125, + 0.5390625, + 0.1484375, + 0.328125, + 0.54296875, + 0.265625, + 0.1875, + 0.3671875, + 0.36328125, + 0.125, + 0.1875, + 0.1328125, + 0.16015625, + 0.24609375, + 0.140625, + 0.265625, + 0.2109375, + 0.08984375, + 0.17578125, + 0.2421875, + 0.1328125, + 0.13671875, + 0.19921875, + 0.13671875, + 0.265625, + 0.21875, + 0.71875, + 0.26953125, + 0.1875, + 0.17578125, + 0.2109375, + 0.22265625, + 0.234375, + 0.42578125, + 0.09375, + 0.34765625, + 0.3046875, + 0.40234375, + 0.15625, + 0.37109375, + 0.3671875, + 0.71484375, + 0.13671875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 6, + 4, + 4, + 4, + 0, + 6, + 6, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 1, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 2 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1976, + "mass": 0.12060546875 + }, + { + "id": 3, + "old_text": ",", + "count": 1667, + "mass": 0.10174560546875 + }, + { + "id": 5, + "old_text": ".", + "count": 1335, + "mass": 0.08148193359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 686, + "mass": 0.0418701171875 + }, + { + "id": 52, + "old_text": " to", + "count": 499, + "mass": 0.03045654296875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.34765625, + 0.16796875, + 0.1796875, + 0.0703125, + 0.20703125, + 0.30859375, + 0.13671875, + 0.16015625, + 0.625, + 0.07421875, + 0.0703125, + 0.35546875, + 0.1328125, + 0.28125, + 0.02734375, + 0.28125, + 0.21484375, + 0.25, + 0.38671875, + 0.48046875, + 0.61328125, + 0.40625, + 0.53515625, + 0.1796875, + 0.359375, + 0.55859375, + 0.3203125, + 0.20703125, + 0.3515625, + 0.39453125, + 0.14453125, + 0.17578125, + 0.125, + 0.19921875, + 0.2421875, + 0.1328125, + 0.2734375, + 0.1875, + 0.09375, + 0.171875, + 0.2421875, + 0.14453125, + 0.16015625, + 0.21875, + 0.140625, + 0.26953125, + 0.23046875, + 0.71875, + 0.296875, + 0.1953125, + 0.18359375, + 0.22265625, + 0.2421875, + 0.21875, + 0.375, + 0.10546875, + 0.3515625, + 0.3203125, + 0.42578125, + 0.140625, + 0.37890625, + 0.359375, + 0.71484375, + 0.140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 2, + 0, + 6, + 0, + 5, + 4, + 2, + 4, + 7, + 7, + 1, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 4, + 0, + 7, + 1, + 6, + 3, + 0, + 6, + 6, + 0, + 1, + 4, + 5, + 2, + 4, + 1, + 2, + 4, + 0, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 5, + 0, + 5, + 1, + 4 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1920, + "mass": 0.1171875 + }, + { + "id": 3, + "old_text": ",", + "count": 1653, + "mass": 0.10089111328125 + }, + { + "id": 5, + "old_text": ".", + "count": 1279, + "mass": 0.07806396484375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 663, + "mass": 0.04046630859375 + }, + { + "id": 52, + "old_text": " to", + "count": 478, + "mass": 0.0291748046875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.40625, + 0.1875, + 0.16015625, + 0.078125, + 0.265625, + 0.37890625, + 0.15234375, + 0.15625, + 0.671875, + 0.0703125, + 0.08203125, + 0.4296875, + 0.18359375, + 0.23046875, + 0.01953125, + 0.23828125, + 0.19921875, + 0.3203125, + 0.421875, + 0.53125, + 0.6171875, + 0.4921875, + 0.56640625, + 0.1953125, + 0.44140625, + 0.57421875, + 0.44921875, + 0.22265625, + 0.35546875, + 0.43359375, + 0.14453125, + 0.140625, + 0.12890625, + 0.26953125, + 0.25390625, + 0.08203125, + 0.29296875, + 0.3046875, + 0.11328125, + 0.15234375, + 0.24609375, + 0.203125, + 0.17578125, + 0.25390625, + 0.14453125, + 0.28515625, + 0.16796875, + 0.70703125, + 0.3125, + 0.1953125, + 0.1953125, + 0.34375, + 0.3046875, + 0.1875, + 0.29296875, + 0.125, + 0.40234375, + 0.3671875, + 0.5078125, + 0.13671875, + 0.39453125, + 0.28515625, + 0.70703125, + 0.23828125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 3, + 7, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 4, + 5, + 0, + 7, + 1, + 6, + 3, + 0, + 0, + 6, + 0, + 1, + 4, + 5, + 2, + 4, + 1, + 2, + 4, + 7, + 7, + 0, + 7, + 2, + 3, + 4, + 7, + 0, + 0, + 0, + 5, + 1, + 4 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1781, + "mass": 0.10870361328125 + }, + { + "id": 3, + "old_text": ",", + "count": 1533, + "mass": 0.09356689453125 + }, + { + "id": 5, + "old_text": ".", + "count": 1199, + "mass": 0.07318115234375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 638, + "mass": 0.0389404296875 + }, + { + "id": 38, + "old_text": " a", + "count": 458, + "mass": 0.0279541015625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.4609375, + 0.1953125, + 0.11328125, + 0.10546875, + 0.35546875, + 0.44140625, + 0.2109375, + 0.19140625, + 0.71875, + 0.0703125, + 0.09765625, + 0.50390625, + 0.3125, + 0.21875, + 0.0234375, + 0.2734375, + 0.32421875, + 0.4375, + 0.48046875, + 0.6015625, + 0.6328125, + 0.5625, + 0.5859375, + 0.17578125, + 0.5390625, + 0.64453125, + 0.5625, + 0.22265625, + 0.40234375, + 0.4453125, + 0.1484375, + 0.1796875, + 0.12109375, + 0.30859375, + 0.25, + 0.1328125, + 0.3359375, + 0.44140625, + 0.125, + 0.1796875, + 0.26171875, + 0.28125, + 0.19140625, + 0.28125, + 0.1484375, + 0.26953125, + 0.140625, + 0.69140625, + 0.3671875, + 0.19921875, + 0.22265625, + 0.47265625, + 0.375, + 0.21875, + 0.23828125, + 0.13671875, + 0.4609375, + 0.390625, + 0.578125, + 0.2734375, + 0.42578125, + 0.20703125, + 0.69921875, + 0.31640625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 7, + 3, + 6, + 0, + 2, + 4, + 0, + 4, + 3, + 3, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 3, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 7, + 5, + 0, + 7, + 3, + 6, + 3, + 0, + 0, + 6, + 0, + 1, + 4, + 4, + 2, + 3, + 1, + 2, + 4, + 7, + 7, + 0, + 4, + 2, + 3, + 4, + 7, + 0, + 0, + 0, + 5, + 1, + 4 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1595, + "mass": 0.09735107421875 + }, + { + "id": 3, + "old_text": ",", + "count": 1432, + "mass": 0.08740234375 + }, + { + "id": 5, + "old_text": ".", + "count": 1090, + "mass": 0.0665283203125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 616, + "mass": 0.03759765625 + }, + { + "id": 38, + "old_text": " a", + "count": 450, + "mass": 0.0274658203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.5859375, + 0.1796875, + 0.07421875, + 0.125, + 0.42578125, + 0.5234375, + 0.24609375, + 0.265625, + 0.75390625, + 0.0703125, + 0.14453125, + 0.578125, + 0.3828125, + 0.25, + 0.0234375, + 0.33984375, + 0.3359375, + 0.56640625, + 0.54296875, + 0.640625, + 0.65234375, + 0.6171875, + 0.6171875, + 0.15234375, + 0.57421875, + 0.703125, + 0.63671875, + 0.2109375, + 0.40625, + 0.41796875, + 0.1171875, + 0.21484375, + 0.1796875, + 0.3046875, + 0.25390625, + 0.1875, + 0.3828125, + 0.58203125, + 0.1328125, + 0.125, + 0.296875, + 0.37890625, + 0.17578125, + 0.328125, + 0.15234375, + 0.2890625, + 0.26953125, + 0.67578125, + 0.37890625, + 0.19140625, + 0.19921875, + 0.55859375, + 0.44921875, + 0.23046875, + 0.1953125, + 0.14453125, + 0.5703125, + 0.40234375, + 0.60546875, + 0.46484375, + 0.421875, + 0.22265625, + 0.69921875, + 0.4296875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 0, + 0, + 3, + 0, + 0, + 4, + 7, + 3, + 6, + 3, + 2, + 4, + 0, + 4, + 3, + 3, + 7, + 7, + 5, + 0, + 4, + 1, + 2, + 0, + 3, + 4, + 5, + 2, + 3, + 1, + 2, + 7, + 3, + 0, + 7, + 3, + 6, + 3, + 0, + 6, + 6, + 0, + 1, + 4, + 4, + 2, + 3, + 1, + 2, + 4, + 7, + 7, + 0, + 4, + 2, + 3, + 4, + 7, + 0, + 0, + 0, + 1, + 1, + 4 + ] + } + }, + "last_step": { + "step": 1024, + "progress": 0.9990234375, + "next_progress": 1.0, + "dt": 0.0009765625, + "gamma": 1.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.289306640625, + "state_acc_after_mean": 0.2733154296875, + "endpoint_acc_mean": 0.2733154296875, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.2747204899787903, + "endpoint_pgold_best_mean": 0.26051634550094604, + "state_entropy_mean": 0.6456844210624695, + "endpoint_entropy_mean": 0.6456822156906128, + "state_maxprob_mean": 0.8107468485832214, + "endpoint_maxprob_mean": 0.8107497692108154, + "oracle_clean_acc_mean": 0.51318359375, + "oracle_clean_pgold_mean": 0.4906069040298462, + "state_best_ref_mode": 1, + "endpoint_best_ref_mode": 1, + "state_best_ref_counts": [ + 10, + 13, + 5, + 4, + 11, + 10, + 5, + 6 + ], + "endpoint_best_ref_counts": [ + 10, + 13, + 5, + 4, + 11, + 10, + 5, + 6 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4d7c19716866ad0a0cf27ac659f5366aba3b07f6 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.jsonl @@ -0,0 +1 @@ +{"run": "diag_copied_len256_onehot_step69500", "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", "ckpt_step": 69500, "endpoint_softening": "none", "decode_rule": "flowmap", "steps": 1024, "time_schedule": "uniform", "model_t_mode": "post", "final_from": "state", "n_gen": 64, "n_refs": 8, "token_acc_mean": 0.30877685546875, "token_acc_min": 0.02734375, "token_acc_max": 0.5703125, "exact_acc": 0.0, "exact_count": 0, "exact_ref_coverage": 0.0, "exact_ref_count": 0, "exact_ref_hits": [], "best_ref_idx": [1, 7, 1, 1, 6, 2, 4, 1, 3, 0, 2, 2, 6, 7, 1, 2, 7, 7, 5, 4, 0, 4, 0, 0, 4, 5, 1, 2, 4, 4, 1, 2, 5, 6, 1, 5, 4, 1, 7, 0, 1, 0, 2, 4, 4, 0, 6, 3, 1, 3, 2, 4, 0, 1, 1, 6, 6, 7, 5, 6, 4, 0, 5, 1], "best_token_acc": [0.44921875, 0.23046875, 0.046875, 0.4921875, 0.4453125, 0.04296875, 0.078125, 0.51171875, 0.03515625, 0.18359375, 0.296875, 0.33203125, 0.25390625, 0.2265625, 0.046875, 0.3125, 0.2265625, 0.03125, 0.20703125, 0.51953125, 0.1015625, 0.4921875, 0.4375, 0.42578125, 0.515625, 0.2109375, 0.4765625, 0.26171875, 0.51171875, 0.11328125, 0.52734375, 0.0546875, 0.52734375, 0.15625, 0.56640625, 0.2734375, 0.4921875, 0.046875, 0.19140625, 0.40234375, 0.5625, 0.4296875, 0.26953125, 0.421875, 0.52734375, 0.23828125, 0.47265625, 0.02734375, 0.27734375, 0.0390625, 0.28125, 0.5078125, 0.40625, 0.046875, 0.046875, 0.390625, 0.44921875, 0.07421875, 0.3515625, 0.36328125, 0.515625, 0.34765625, 0.390625, 0.5703125]} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..cffc6c07dd643231e305ff6032f3d34377dc4ddc --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +diag_copied_len256_onehot_step69500 69500 none 0.30877685546875 0.02734375 0.5703125 0.0 0 0.0 0 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..7297b4c20e6e56327bf7b52416e21a255b31a399 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/decode_timegrid_trace_len256_copied_ckpt/onehot/uniform_steps1024/decode_token_acc_summary.json @@ -0,0 +1,159 @@ +{ + "num_rows": 1, + "best_by_run": { + "diag_copied_len256_onehot_step69500::none": { + "run": "diag_copied_len256_onehot_step69500", + "checkpoint": "runs/diag_copied_len256_onehot_step69500/step_0069500.pt", + "ckpt_step": 69500, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 1024, + "time_schedule": "uniform", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.30877685546875, + "token_acc_min": 0.02734375, + "token_acc_max": 0.5703125, + "exact_acc": 0.0, + "exact_count": 0, + "exact_ref_coverage": 0.0, + "exact_ref_count": 0, + "exact_ref_hits": [], + "best_ref_idx": [ + 1, + 7, + 1, + 1, + 6, + 2, + 4, + 1, + 3, + 0, + 2, + 2, + 6, + 7, + 1, + 2, + 7, + 7, + 5, + 4, + 0, + 4, + 0, + 0, + 4, + 5, + 1, + 2, + 4, + 4, + 1, + 2, + 5, + 6, + 1, + 5, + 4, + 1, + 7, + 0, + 1, + 0, + 2, + 4, + 4, + 0, + 6, + 3, + 1, + 3, + 2, + 4, + 0, + 1, + 1, + 6, + 6, + 7, + 5, + 6, + 4, + 0, + 5, + 1 + ], + "best_token_acc": [ + 0.44921875, + 0.23046875, + 0.046875, + 0.4921875, + 0.4453125, + 0.04296875, + 0.078125, + 0.51171875, + 0.03515625, + 0.18359375, + 0.296875, + 0.33203125, + 0.25390625, + 0.2265625, + 0.046875, + 0.3125, + 0.2265625, + 0.03125, + 0.20703125, + 0.51953125, + 0.1015625, + 0.4921875, + 0.4375, + 0.42578125, + 0.515625, + 0.2109375, + 0.4765625, + 0.26171875, + 0.51171875, + 0.11328125, + 0.52734375, + 0.0546875, + 0.52734375, + 0.15625, + 0.56640625, + 0.2734375, + 0.4921875, + 0.046875, + 0.19140625, + 0.40234375, + 0.5625, + 0.4296875, + 0.26953125, + 0.421875, + 0.52734375, + 0.23828125, + 0.47265625, + 0.02734375, + 0.27734375, + 0.0390625, + 0.28125, + 0.5078125, + 0.40625, + 0.046875, + 0.046875, + 0.390625, + 0.44921875, + 0.07421875, + 0.3515625, + 0.36328125, + 0.515625, + 0.34765625, + 0.390625, + 0.5703125 + ] + } + }, + "first_exact_by_run": {} +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/owt_compact_v2048_uniform_mask1_step36k_dualline_steps128_c1024_t1p15_n8_noscore/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/owt_compact_v2048_uniform_mask1_step36k_dualline_steps128_c1024_t1p15_n8_noscore/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..2491eaf5c58c429f889f4f76fa816ceea5c0e23f --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/owt_compact_v2048_uniform_mask1_step36k_dualline_steps128_c1024_t1p15_n8_noscore/summary.json @@ -0,0 +1,70 @@ +[ + { + "checkpoint": "runs/lta_owt_compact_gpt2bpe_v2048_stream1024_fullycoupled_rmsnorm_nobias_adamw_wd0p1_logitnormal_m1p5_s0p8_hardce_mask1p0-1p0_fp32_ddit768x12_gbs512_8gpu_1m_20260517_141027/latest.pt", + "ckpt_step": 36000, + "max_len": 1024, + "decode_rule": "dual_line_resample", + "support_power": 1.0, + "semantic_power": 1.0, + "steps": 128, + "c_min": 1.0, + "c_max": 256.0, + "anchor_mode": "onehot", + "model_t_mode": "flow", + "time_schedule": "uniform", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "time_power": 2.0, + "input_noise_scale": 0.0, + "input_noise_until": 1.0, + "input_noise_dirichlet_concentration": 1.0, + "endpoint_softening": "none", + "endpoint_soft_power": 2.0, + "endpoint_soft_min_conf": 0.0, + "endpoint_soft_max_conf": 1.0, + "soft_target_decode_mode": "off", + "soft_target_power": 1.0, + "soft_target_min_conf": 0.0, + "soft_target_max_conf": 1.0, + "soft_target_debias_start": 0.7, + "final_from": "state", + "final_decode": "argmax", + "final_sample_temp": 1.0, + "final_top_k": 0, + "final_top_p": 1.0, + "commit_mode": "off", + "commit_conf_threshold": 0.0, + "commit_margin_threshold": 0.0, + "commit_start": 0.0, + "commit_min_ratio": 0.0, + "commit_max_ratio": 1.0, + "commit_power": 2.0, + "commit_freq_max_frac": 0.08, + "early_temp": 1.15, + "late_temp": 1.15, + "temp_end": 1.0, + "temp_power": 1.0, + "pos_extend": "repeat", + "fixed_first_token_id": null, + "fixed_first_token_text": "", + "fixed_first_initial_argmax": false, + "use_ema": false, + "n_samples": 8, + "sample_entropy": 5.261359382502221, + "unique_tokens": 1157, + "token_count": 8192, + "distinct_1": 0.1412353515625, + "distinct_2": 0.6280547409579668, + "top_token_mass": 0.0423583984375, + "texts_preview": [ + "and the rate of the U.S. to 20 percent. The ultimate, soundching of concession is all that’s going on. The report reads: “Only Israeli interests, I hope that China has destabilized Russia’s’s financial production and renewed a vital stance on the U.S. U.S. economy and its adversaries, staying on the gate of their markets of 5% to 5% a year now. “This is where the World Bank needs to be confirmed from until its induction is brought in at $500 billion. The figures are already expected by two of the leading countries in the United States. The world economy also affects the role of gains for good and investment, simply to ensure the economic growth in the U.S.” Following a national fiscal year, the health and fairness nature of the economy’s worsening U.S. position has boosted the value of the U.S. and reserve dollar infrastructure, not unlike what any other international trade agreement had signed. The partition has destroyed 9.8 million crore homes in the West Bank, the country’s biggest shares in April 2008, OECA gave it $600 million, financing the economy to the world. The U.S. government predicted to give the U.S. U.S. a domestic economy of $1.2 trillion this year. But the Federal Reserve is one of the biggest trade-and-all-trade sentimental, but still has 1.5 million U.S. workers. Competing that the 10th biggest economy, the U.S. fuel, lost 1.5 million jobs in March 2013, the Fed demanded a $1.4 billion U.S. economy, arguing that the foreign economy is the biggest U.S. trade investment. “We are the United States government,” said Mark Holland, a well-known foreign economist who also advises at the Reserve Bank, U.S. dollar and U.S. GDP, “are more than indexing” and “foreign priorities.” The U.S. economy is a U.S. fuel economy to the index or a private free-market investment bank. U.S. trading will not likely redirect to U.S. trade, which is the largest U.S.S. economy in the United States, for the U.S. and U.S. economies. According to U.S., the EU also primarily raises U.S. trade, for the U.S. economy, growth would have dropped to $99 million, according to U.S. trade statistics. The U.S. government will bow down the U.S. Index this year, in opposition to 40 percent of the total export total in the United States, income of $8 trillion in January and the larg U.S. economy to buy the U.S. government. The Fed concluded that “the United States will have $4.3 trillion in foreign growth in 2014 over the next year.” On July 6, 2017 U.S. trade shares $100 million in nations in trade and income, associating a budget and trade initiative shortly after its exit. The U.S. GDP gap will provide $4.5 million for the federal and for the U.S. at a peak start in July. The 2007-U.S. Federal Department of Energy announced the stabilization of hiring the U.S.", + "the competition has a sense of finding ways and believe that perhaps a loss to a competitive opponent is more needed unless they can do it. However, prior to the shift is definitely more interesting than the people who most prefer to pass the game. People share the lines consistently of the current back-to-back defense, the resulting factor and the shooting efficiency at which the team must. However, the shooters are both the correct and the defenseman should more likely share the correct result. Play-game disregard This said, while both the shooter and the team will not be given the concept of simply corrects. Consider the results, they said, \"We have a strong sense of repeating the results of the latter, but those who can defend them behaving the dudes and have adopted patterns with bad tactics might leave the team for more. Polics believe this could be a compromise in a scene, it would be dangerous to fill their rules. Some people might have given up a bit more cautious as some might say. Essentially, the shift at least may be a factor, but some people might prefer to run a bad trip. Sign up here to send an email address. Get the ADSOO, for a delivered delivered delivered to your inbox. Keep up NDADEO today.<|endoftext|>MARNA MAKE THE PAGE BACK THE PLAY STATE-CHUPTIONSEVENTE THE A little sweet of Todan's request. THE PAGE - FIRST GAME THE PONSS CHEPONSSUPTION THE THE CAUST WORNERS BE STATE. The first is picture of the person who sat at the cage. At 36 years old, Mr. Todan is head of the New Star Wars. He originally appeared in the Heroes of the original Ivanka Television. It was released on Sept. 15th with an earliest donation of a mere 4,2000. Todan is number one in these shows; but in a way that this is the mystery character they don't sound like. These are the ten people that you think of him. Yes. With these people in mind, Mr. Todan is a little more angry When we talk to Dennis Walk, behind the screen screen, Caroline Parker is an older to go sharper. She said she is, remember, definitely not looking at anything she knows. \"We're not looking at other people,\" Mr Todan said. \"This is not shooting the track.\" Todan's northern has just been named a 100,000 \"real\" - which has been popped up by a still active elephant. In 197, 1985, 1996, Bob and Bennett made 4,200 of them \"real\" (38,078) \"lucky\" (45,631). They went through the audio and one called George Richard. There was a video of Mr. Todan. About 10 years after Doomwalk, I was in the back of the stage, high school graphics and loads of lights are being revealed. He was the sole owner of the animation. About 10 years later, the baby's existence would unfold. He was known for playing a style with baby, which included migrating to the Roman tradition and was typically surviving for a little into late adulthood. T", + "/Reuters report. THE TO ROCKER TO STATT RIGE On one of the floor lanes, Haden wobbles at at the top of the team's ranking seat. Correctly on the dozens, some of his tricks for players and those who share nothing in a paint like Phil Carey's t-football tackle at the hands of Cam Reynold, of who his team has had a shot at winning. David Haden simply needs a couple of tackles After playing in England, the Bulls have been repeating themselves with a couple at LaMara. After the final football stint, David Haden heading to Betal's manager, Phil Karl-On, ended up after he was not hauled out of overtime. It was a decision Hougeson made for the Ethan Karl, as well as he was slipping in the paint at the edge of the cricket game. His dreams by Haden's team will be a huge rebuke in the second warnings of the next manager. After all. David Reynold, after his tackle and the hat back against Haden, won the trouble that was his biggest worry for the rest of the season. He was then charged after the Bull was suspended for a pat-down shot winning, and then the \"Doug Dung\" player killed him. But what it appears to be, Haden was the greatest of all football fans, yes. His top-franking player in the final round included Brad Hassan, Jose Mourinho, Jonathan Baker, Manuela Veramara and Bell Duncan, but as David Haden played at Betal in 2006, he perfectly trolled his tackles over the next three years. John Rogers, back on Police Inter, earned a hit at LaMara just as much as an Atlanta defenceman, and he definitely isn't a player guy who's first day when the clubs played football. An unknown side, he has playoffs. He hasn't played for Atlanta's clubs, but now Former Leader Chad Murphy is popping away at the title, most notably this year. Since Hougeson's missing season in October 2014, however, most of the Bulls played him last season in the nation in the ninth spot. He's surpassing second with a hat-and-down hat in his arrival of a first-round guy at the winner. This is, of course, not a perfect show. His scuttlers have been just seven in the playoffs but he also clips the last two at the sides of Atlanta, where he finished in the second round games, but his team has pulled off the rotation. Though on his way to the playoffs Bulls general manager John M. Hougeson is currently the \"manager of the Clubs,\" as well as the group of players competing for Marty Charlton's teams, Fleet School head coach Joe Jenich, a wide-paced, competent, fantastic defensive mentor, and Lachmann recently envisioned. He gives him the talent to be in the line-card playing for the point guard. Hougeson is 49 year in that midfielder. The Star Wars have chipped him No. 1 overall, with his briefly mentioned, license to win", + ", he started as a career when he took over wage. Paul continued his general manager in 1980. He started his transfer besk and took over a few jobs in the Institution of Canada in his earlier in his schools. He ran for general manager in 1981. There, the Institute of Employment, called Paul, was released in 2011. The industry evacuated over 200,000 licenses. In 1989, Paul received the granted to duty workers and provided generous management facilities. That’s what moved out of the job transfer. That was a first step. But he said, the first step was to make the best in the career industry. He moved out of those jobs at that time and winged their employees on the same day. “My choice of my job is my job, which is the choice,” he said. “Carr says that most professionals are out for subsidies. But most employees can’t work. Your career is very good. People who have a background have their office to do. I know that people have to recover the job. They don’t have to walk away and have a job on the contractor. In some ways they don’t have to do anything to do it. You’re not working any longer. I have three years in the hiring line.” “I’m not behaving for money, but there’s another thing, that if I don’t care about hiring something, it wouldn’t be a good thing,” he said. Donald told me: “I know, I’m not having work to do. I can’t do something. I’m not making a mistake. I don’t give me nothing to liter. I’m not excited. It makes me so hard to do. I’m worried about how I never said something. I don’t just don’t even do anything. When you realize something, I’ve just said that it’s a bad thing. No, I’m right. It works hard. I always want to have work to do.” Donald also said that a lot of jobs for women were well-related with homosexuality, but he was someone that excluded from feeling. “Now, you know, I know about the beauty of my son.” Dennis Morray, a fellow member of the Executive Order of Broome and Navigate the Council, told Mr. Morray that the bank-shop is about the need to “find people who go to the resources.” Those expenses are not finishing. “First of all, it isn’t enough place to do it,” he said. “If you find a good job, you’re not receiving much feedback.” Navy cofounder Dennis Morray, who is the president of the piercing group he has worked with, used 65 pennies of dinner a wide-card. He leaves at the National Museum of Education, from where he recalled that his partners had struggled. Soon, he bought the piercing. But when he wasn’t happy, Morray said. “I just wanted to do it right now. I wanted to leave that portion of what I was looking for,” he said. The Urban Research Commission hosted the governor’s podcast on Tuesday night to protest Sunday’s message. On Saturday, Mr Morray also wrote 10,000 two-year-person classrooms, as a contributor plan. And he added: “" + ], + "gen_ppl": 65.66761833332272, + "gen_nll": 4.1846059323504905, + "gen_tokens": 5401, + "gen_ppl_scorer": "/e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-large-standard" + } +] \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..3a1a7b652540bfda7390457debfd915b25ef026c --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/step_metrics.csv @@ -0,0 +1,129 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.03201184421777725,0.03201184421777725,0.03201184421777725,1.0,1.0,0.00433349609375,0.00433349609375,0.3277587890625,0,0,0.00346405990421772,0.2643912136554718,1.161544919013977,1.5807236433029175,0.6043370366096497,0.5736038684844971,0.1669921875,0.11018717288970947,0,3 +2,0.03201184421777725,0.03513799235224724,0.003126148134469986,0.003229531390230465,1.0,1.0,0.00433349609375,0.00433349609375,0.38330078125,0,0,0.009838415309786797,0.3225714862346649,1.1734622716903687,1.3536484241485596,0.6023908853530884,0.6291994452476501,0.1708984375,0.11088578402996063,0,4 +3,0.03513799235224724,0.039246052503585815,0.004108060151338577,0.0042576659862001,1.0,1.0,0.00433349609375,0.00433349609375,0.39154052734375,0,0,0.010784950107336044,0.3313976526260376,1.1885720491409302,1.3085041046142578,0.5998334884643555,0.6394689083099365,0.17236328125,0.11206237971782684,0,4 +4,0.039246052503585815,0.043327752500772476,0.004081699997186661,0.004248434271670681,1.0,1.0,0.00433349609375,0.00433349609375,0.4017333984375,0,0,0.012079933658242226,0.3432237505912781,1.2030531167984009,1.254133701324463,0.5972926616668701,0.6530352234840393,0.1728515625,0.11295841634273529,0,3 +5,0.043327752500772476,0.05119910091161728,0.007871348410844803,0.008227842326795581,1.0,1.0,0.00433349609375,0.00433349609375,0.41412353515625,0,0,0.013428736478090286,0.35628968477249146,1.2296874523162842,1.186255693435669,0.5923930406570435,0.6693612337112427,0.16943359375,0.11410613358020782,0,4 +6,0.05119910091161728,0.05660367012023926,0.005404569208621979,0.0056962100413424374,1.0,1.0,0.00433349609375,0.00433349609375,0.43182373046875,0,0,0.016140377148985863,0.37754225730895996,1.2471294403076172,1.100416898727417,0.5890289545059204,0.6906325817108154,0.16943359375,0.11503219604492188,0,4 +7,0.05660367012023926,0.05893132835626602,0.002327658236026764,0.002467317459591381,1.0,1.0,0.00433349609375,0.00433349609375,0.44073486328125,0,0,0.01814187690615654,0.3886875510215759,1.2544734477996826,1.055435061454773,0.5875800848007202,0.7013223171234131,0.1669921875,0.115363210439682,0,4 +8,0.05893132835626602,0.06070792302489281,0.0017765946686267853,0.0018878480626962804,1.0,1.0,0.00433349609375,0.00433349609375,0.4439697265625,0,0,0.019027438014745712,0.3923845589160919,1.2600140571594238,1.0381858348846436,0.5864741802215576,0.7052866220474243,0.16650390625,0.1154249832034111,0,4 +9,0.06070792302489281,0.06368901580572128,0.002981092780828476,0.003173765492016899,1.0,1.0,0.00433349609375,0.00433349609375,0.44720458984375,0,0,0.01970793679356575,0.3945849537849426,1.2691810131072998,1.0213302373886108,0.5846186876296997,0.708993673324585,0.166015625,0.11583179235458374,0,7 +10,0.06368901580572128,0.06898529827594757,0.005296282470226288,0.005656542067360114,1.0,1.0,0.00433349609375,0.00433349609375,0.452880859375,0,0,0.020852122455835342,0.4002927541732788,1.285075068473816,0.9979946613311768,0.5813223719596863,0.7142019271850586,0.16650390625,0.11624978482723236,0,7 +11,0.06898529827594757,0.0741415023803711,0.005156204104423523,0.005538262816768916,1.0,1.0,0.00433349609375,0.00433349609375,0.46099853515625,0,0,0.02290644310414791,0.4086815118789673,1.300159215927124,0.9727693796157837,0.578113317489624,0.7206882834434509,0.16650390625,0.11665943264961243,0,7 +12,0.0741415023803711,0.082164466381073,0.008022964000701904,0.008665432159805033,1.0,1.0,0.00433349609375,0.00433349609375,0.4696044921875,0,0,0.024940669536590576,0.41620397567749023,1.3228169679641724,0.9511229991912842,0.573120653629303,0.7257556915283203,0.1640625,0.11728323996067047,0,7 +13,0.082164466381073,0.0832255557179451,0.0010610893368721008,0.0011560778570953115,1.0,1.0,0.00433349609375,0.00433349609375,0.47857666015625,0,0,0.02815723419189453,0.4225638508796692,1.325798511505127,0.9505084156990051,0.5724603533744812,0.7267011404037476,0.16455078125,0.11746188998222351,0,7 +14,0.0832255557179451,0.08396796882152557,0.0007424131035804749,0.0008098099900263624,1.0,1.0,0.00433349609375,0.00433349609375,0.479736328125,0,0,0.028583109378814697,0.42353391647338867,1.3278772830963135,0.9499107003211975,0.5719983577728271,0.7269591689109802,0.1650390625,0.11751638352870941,0,7 +15,0.08396796882152557,0.0862998440861702,0.002331875264644623,0.0025456263375906924,1.0,1.0,0.00433349609375,0.00433349609375,0.48077392578125,0,0,0.028880830854177475,0.4246588349342346,1.334338903427124,0.9468757510185242,0.570547342300415,0.7276593446731567,0.16455078125,0.11776135861873627,0,7 +16,0.0862998440861702,0.0877736359834671,0.0014737918972969055,0.0016129929362033483,1.0,1.0,0.00433349609375,0.00433349609375,0.48236083984375,0,0,0.029814787209033966,0.42629876732826233,1.3383992910385132,0.9476569294929504,0.5696302652359009,0.7276641130447388,0.16455078125,0.11790289729833603,0,7 +17,0.0877736359834671,0.08781633526086807,4.269927740097046e-05,4.680776513952691e-05,1.0,1.0,0.00433349609375,0.00433349609375,0.48284912109375,0,0,0.03040364757180214,0.42687374353408813,1.3385169506072998,0.9502806067466736,0.569603681564331,0.7271811962127686,0.16455078125,0.11790289729833603,0,7 +18,0.08781633526086807,0.08900825679302216,0.0011919215321540833,0.0013066683588276614,1.0,1.0,0.00433349609375,0.00433349609375,0.48382568359375,0,0,0.030420685186982155,0.4271929860115051,1.3417836427688599,0.9484096765518188,0.5688619613647461,0.7275769710540771,0.1650390625,0.11793440580368042,0,7 +19,0.08900825679302216,0.08930708467960358,0.0002988278865814209,0.0003280248024306484,1.0,1.0,0.00433349609375,0.00433349609375,0.4840087890625,0,0,0.03090652823448181,0.42766571044921875,1.342602014541626,0.9506743550300598,0.5686759948730469,0.7271456718444824,0.16455078125,0.11787785589694977,0,7 +20,0.08930708467960358,0.09095583856105804,0.0016487538814544678,0.001810438901761314,1.0,1.0,0.00433349609375,0.00433349609375,0.48394775390625,0,0,0.03102831542491913,0.42818552255630493,1.3470823764801025,0.9481940865516663,0.5676500797271729,0.7276943922042847,0.1650390625,0.11790424585342407,0,7 +21,0.09095583856105804,0.09176389127969742,0.0008080527186393738,0.0008889037000801951,1.0,1.0,0.00433349609375,0.00433349609375,0.48468017578125,0,0,0.031705401837825775,0.42902860045433044,1.349271297454834,0.9495695233345032,0.5671472549438477,0.7274638414382935,0.16552734375,0.11821077764034271,0,7 +22,0.09176389127969742,0.10128811746835709,0.009524226188659668,0.010486509066545732,1.0,1.0,0.00433349609375,0.0042724609375,0.4857177734375,0,0,0.03203955665230751,0.43206387758255005,1.3739540576934814,0.9308981895446777,0.5612209439277649,0.731367290019989,0.1640625,0.11906906962394714,0,7 +23,0.10128811746835709,0.10139931738376617,0.00011119991540908813,0.00012373255274631675,1.0,1.0,0.0042724609375,0.0042724609375,0.48773193359375,0,0,0.03602589666843414,0.4314519166946411,1.3742448091506958,0.9636134505271912,0.5611517429351807,0.7235033512115479,0.1640625,0.11903571337461472,0,7 +24,0.10139931738376617,0.10202503949403763,0.0006257221102714539,0.0006963294401799176,1.0,1.0,0.0042724609375,0.0042724609375,0.487548828125,0,0,0.0360729917883873,0.43164491653442383,1.37587571144104,0.9624647498130798,0.5607624053955078,0.7237372994422913,0.16357421875,0.11911772191524506,0,7 +25,0.10202503949403763,0.10250301659107208,0.00047797709703445435,0.0005322833242088833,1.0,1.0,0.0042724609375,0.0042724609375,0.48760986328125,0,0,0.03633805736899376,0.4316561222076416,1.3771191835403442,0.9637981653213501,0.5604649782180786,0.7233802676200867,0.16259765625,0.11910255253314972,0,7 +26,0.10250301659107208,0.1146286129951477,0.012125596404075623,0.013510459230759128,1.0,1.0,0.0042724609375,0.0042724609375,0.4908447265625,0,0,0.03654048964381218,0.43749111890792847,1.4066776037216187,0.9263375997543335,0.5529196858406067,0.7314741611480713,0.16455078125,0.12100636959075928,0,7 +27,0.1146286129951477,0.11842145025730133,0.0037928372621536255,0.004283894101191277,1.0,1.0,0.0042724609375,0.0042724609375,0.49456787109375,0,0,0.04176447540521622,0.43611472845077515,1.4158644676208496,0.9624125361442566,0.550559401512146,0.7229020595550537,0.1640625,0.12187378108501434,0,7 +28,0.11842145025730133,0.11991230398416519,0.001490853726863861,0.0016911184230820817,1.0,1.0,0.0042724609375,0.00433349609375,0.49530029296875,0,0,0.04339941591024399,0.4359149634838104,1.4194581508636475,0.9718161821365356,0.5496317744255066,0.7206502556800842,0.1640625,0.12217290699481964,0,7 +29,0.11991230398416519,0.12220681458711624,0.00229451060295105,0.002607138599185423,1.0,1.0,0.00433349609375,0.00433349609375,0.49658203125,0,0,0.04404142126441002,0.4373839795589447,1.4249153137207031,0.9668605327606201,0.5482040643692017,0.7217414379119873,0.1630859375,0.12264943867921829,0,7 +30,0.12220681458711624,0.12263119965791702,0.00042438507080078125,0.00048346817661971834,1.0,1.0,0.00433349609375,0.00433349609375,0.49725341796875,0,0,0.04503311589360237,0.43711960315704346,1.4259251356124878,0.9748415946960449,0.5479399561882019,0.7198697328567505,0.16357421875,0.12273398041725159,0,7 +31,0.12263119965791702,0.12462025135755539,0.0019890516996383667,0.0022670645444228727,1.0,1.0,0.00433349609375,0.00433349609375,0.497802734375,0,0,0.04521702975034714,0.43809443712234497,1.4306056499481201,0.9696298837661743,0.5467022657394409,0.7210543155670166,0.16455078125,0.12292807549238205,0,7 +32,0.12462025135755539,0.12487028539180756,0.00025003403425216675,0.0002856292193644235,1.0,1.0,0.00433349609375,0.00433349609375,0.49810791015625,0,0,0.04608083516359329,0.4375879168510437,1.4311950206756592,0.9779675602912903,0.5465466976165771,0.7191386222839355,0.1650390625,0.12291321903467178,0,7 +33,0.12487028539180756,0.12574611604213715,0.0008758306503295898,0.0010008009506587388,1.0,1.0,0.00433349609375,0.00433349609375,0.49822998046875,0,0,0.04618918150663376,0.43884575366973877,1.4332444667816162,0.9716882705688477,0.546001672744751,0.7205910682678223,0.16552734375,0.12340161204338074,0,7 +34,0.12574611604213715,0.12841172516345978,0.002665609121322632,0.003049010327818124,1.0,1.0,0.00433349609375,0.00433349609375,0.49981689453125,0,0,0.046569813042879105,0.4410253167152405,1.439374327659607,0.9611069560050964,0.5443429946899414,0.7230343818664551,0.16650390625,0.124150350689888,0,7 +35,0.12841172516345978,0.12961909174919128,0.0012073665857315063,0.0013852487700777513,1.0,1.0,0.00433349609375,0.00433349609375,0.50079345703125,0,0,0.047733865678310394,0.44101575016975403,1.4421420097351074,0.9678158164024353,0.5435917377471924,0.7215686440467834,0.166015625,0.12424859404563904,0,7 +36,0.12961909174919128,0.12983545660972595,0.00021636486053466797,0.0002485864045082206,1.0,1.0,0.00433349609375,0.00433349609375,0.501220703125,0,0,0.04826042801141739,0.44081127643585205,1.4426381587982178,0.9722212553024292,0.54345703125,0.7206116914749146,0.166015625,0.12425048649311066,0,7 +37,0.12983545660972595,0.13509829342365265,0.005262836813926697,0.006048093839151387,1.0,1.0,0.00433349609375,0.00433349609375,0.5052490234375,0,0,0.04835469275712967,0.4465150833129883,1.4542415142059326,0.9400421380996704,0.5401821136474609,0.7280690670013428,0.16943359375,0.12617337703704834,0,7 +38,0.13509829342365265,0.13651596009731293,0.0014176666736602783,0.001639107268353085,1.0,1.0,0.00433349609375,0.00433349609375,0.505859375,0,0,0.05067910999059677,0.4463381767272949,1.457360029220581,0.9530926942825317,0.5392998456954956,0.7252905964851379,0.17041015625,0.12635266780853271,0,7 +39,0.13651596009731293,0.13766935467720032,0.0011533945798873901,0.0013357451053957817,1.0,1.0,0.00433349609375,0.00433349609375,0.5074462890625,0,0,0.05130620673298836,0.44726938009262085,1.4598791599273682,0.9509894251823425,0.5385821461677551,0.725849986076355,0.1708984375,0.1267569363117218,0,7 +40,0.13766935467720032,0.13855227828025818,0.0008829236030578613,0.0010238805820560314,1.0,1.0,0.00433349609375,0.00433349609375,0.50750732421875,0,0,0.05182263255119324,0.4478893280029297,1.4617979526519775,0.9501246809959412,0.5380326509475708,0.726099967956543,0.1708984375,0.12714818120002747,0,7 +41,0.13855227828025818,0.1425127238035202,0.003960445523262024,0.004597429911771815,1.0,1.0,0.00433349609375,0.00439453125,0.510009765625,0,0,0.05221842601895332,0.4515753388404846,1.4701685905456543,0.9306908845901489,0.535568118095398,0.7306181192398071,0.1728515625,0.12834826111793518,0,7 +42,0.1425127238035202,0.14302626252174377,0.0005135387182235718,0.0005988878581399526,1.0,1.0,0.00439453125,0.00439453125,0.51068115234375,0,0,0.05400940030813217,0.45192843675613403,1.4712519645690918,0.9366879463195801,0.5352485775947571,0.7293747067451477,0.17333984375,0.12897570431232452,0,7 +43,0.14302626252174377,0.14478830993175507,0.0017620474100112915,0.0020561276652378154,1.0,1.0,0.00439453125,0.00439453125,0.51104736328125,0,0,0.054241642355918884,0.4534062147140503,1.4749243259429932,0.9290605187416077,0.5341521501541138,0.731171727180481,0.1728515625,0.12945637106895447,0,7 +44,0.14478830993175507,0.14645308256149292,0.001664772629737854,0.0019466205257379105,1.0,1.0,0.00439453125,0.00439453125,0.5120849609375,0,0,0.055045872926712036,0.4545896053314209,1.4783576726913452,0.9250671863555908,0.5331162214279175,0.7321611642837524,0.171875,0.1299085021018982,0,7 +45,0.14645308256149292,0.14677609503269196,0.00032301247119903564,0.00037843551959439506,1.0,1.0,0.00439453125,0.00439453125,0.51275634765625,0,0,0.05580899864435196,0.4546659588813782,1.4790228605270386,0.9270727634429932,0.5329152941703796,0.7317643165588379,0.17236328125,0.1301237940788269,0,7 +46,0.14677609503269196,0.14820446074008942,0.001428365707397461,0.0016740807413877954,1.0,1.0,0.00439453125,0.00439453125,0.51416015625,0,0,0.05595707520842552,0.45665502548217773,1.4819281101226807,0.9171333312988281,0.5320265293121338,0.7341091632843018,0.173828125,0.13094083964824677,0,7 +47,0.14820446074008942,0.1486881673336029,0.00048370659351348877,0.0005678670188080124,1.0,1.0,0.00439453125,0.00439453125,0.51446533203125,0,0,0.056615088135004044,0.45666569471359253,1.482909917831421,0.9188332557678223,0.5317255854606628,0.7337583899497986,0.1728515625,0.13110145926475525,0,7 +48,0.1486881673336029,0.15141655504703522,0.002728387713432312,0.00320492163827527,1.0,1.0,0.00439453125,0.00439453125,0.51629638671875,0,0,0.056837908923625946,0.4591190814971924,1.488342046737671,0.9058910608291626,0.5300280451774597,0.7368102073669434,0.1748046875,0.13196520507335663,0,7 +49,0.15141655504703522,0.15445169806480408,0.00303514301776886,0.003576717217170188,1.0,1.0,0.00439453125,0.00439453125,0.51849365234375,0,0,0.058103419840335846,0.4620882570743561,1.4942487478256226,0.8932322263717651,0.528139591217041,0.7398794889450073,0.1748046875,0.13349835574626923,0,7 +50,0.15445169806480408,0.1563456803560257,0.0018939822912216187,0.00223994570965004,1.0,1.0,0.00439453125,0.00445556640625,0.51934814453125,0,0,0.059533439576625824,0.46390050649642944,1.497879147529602,0.886221706867218,0.5269612073898315,0.7415826320648193,0.1748046875,0.13454759120941162,0,7 +51,0.1563456803560257,0.16051089763641357,0.004165217280387878,0.004937113677253046,1.0,1.0,0.00445556640625,0.00445556640625,0.52197265625,0,0,0.06042993813753128,0.46848148107528687,1.5056006908416748,0.8636349439620972,0.5243700742721558,0.7468973398208618,0.17724609375,0.13649319112300873,0,7 +52,0.16051089763641357,0.16344644129276276,0.002935543656349182,0.003496821636021411,1.0,1.0,0.00445556640625,0.00445556640625,0.52374267578125,0,0,0.06242386996746063,0.4701056182384491,1.510934829711914,0.8575099110603333,0.5225439071655273,0.7483817934989929,0.17822265625,0.1379663050174713,0,7 +53,0.16344644129276276,0.16538845002651215,0.0019420087337493896,0.002321439809245998,1.0,1.0,0.00445556640625,0.00445556640625,0.52557373046875,0,0,0.06383515894412994,0.4717775285243988,1.5144076347351074,0.850267767906189,0.521335780620575,0.750139594078064,0.1806640625,0.1391744613647461,0,7 +54,0.16538845002651215,0.16668707132339478,0.0012986212968826294,0.0015559589331394722,1.0,1.0,0.00445556640625,0.00445556640625,0.52569580078125,0,0,0.06477281451225281,0.4722369313240051,1.516709804534912,0.8481816649436951,0.5205278992652893,0.7506442070007324,0.1806640625,0.13968217372894287,0,7 +55,0.16668707132339478,0.16832348704338074,0.001636415719985962,0.0019637469474819915,1.0,1.0,0.00445556640625,0.00445556640625,0.52630615234375,0,0,0.065400630235672,0.47342395782470703,1.5195761919021606,0.8423459529876709,0.5195099115371704,0.7520390748977661,0.1806640625,0.14044871926307678,0,7 +56,0.16832348704338074,0.16997194290161133,0.0016484558582305908,0.001982087785995437,1.0,1.0,0.00445556640625,0.00445556640625,0.52752685546875,0,0,0.06619411706924438,0.47526463866233826,1.5224204063415527,0.8332488536834717,0.518484354019165,0.7542310357093811,0.18212890625,0.1415863037109375,0,7 +57,0.16997194290161133,0.17036545276641846,0.0003935098648071289,0.0004740922447643039,1.0,1.0,0.00445556640625,0.00445556640625,0.527587890625,0,0,0.06699712574481964,0.47497648000717163,1.5230977535247803,0.8346759676933289,0.5182395577430725,0.7539291381835938,0.18212890625,0.14183062314987183,0,7 +58,0.17036545276641846,0.17113260924816132,0.0007671564817428589,0.0009246920638743216,1.0,1.0,0.00445556640625,0.00445556640625,0.52764892578125,0,0,0.06718870997428894,0.4752497375011444,1.5244123935699463,0.8331718444824219,0.517762303352356,0.7542903423309326,0.18212890625,0.14201472699642181,0,7 +59,0.17113260924816132,0.17300401628017426,0.0018714070320129395,0.0022577882214855224,1.0,1.0,0.00445556640625,0.00445556640625,0.5294189453125,0,0,0.06756245344877243,0.477632611989975,1.5275659561157227,0.8219751119613647,0.516598105430603,0.7569760084152222,0.18212890625,0.14329254627227783,0,7 +60,0.17300401628017426,0.17531432211399078,0.0023103058338165283,0.0027936119150479776,1.0,1.0,0.00445556640625,0.00445556640625,0.53082275390625,0,0,0.06847953051328659,0.48013293743133545,1.5313785076141357,0.8092375993728638,0.5151609778404236,0.7600494623184204,0.185546875,0.14481985569000244,0,7 +61,0.17531432211399078,0.1755736619234085,0.0002593398094177246,0.000314471096530394,1.0,1.0,0.00445556640625,0.00445556640625,0.52996826171875,0,0,0.06961869448423386,0.47929665446281433,1.5318059921264648,0.8128055930137634,0.5149996876716614,0.7592441439628601,0.185546875,0.14499154686927795,0,7 +62,0.1755736619234085,0.1763649433851242,0.0007912814617156982,0.0009597964368311897,1.0,1.0,0.00445556640625,0.00445556640625,0.5303955078125,0,0,0.06974633783102036,0.4797789454460144,1.5331034660339355,0.8103389739990234,0.5145074129104614,0.7598285675048828,0.185546875,0.1452283412218094,0,7 +63,0.1763649433851242,0.1803499460220337,0.003985002636909485,0.00483831110017071,1.0,1.0,0.00445556640625,0.00445556640625,0.53350830078125,0,0,0.07013624906539917,0.4848831593990326,1.53940749168396,0.7855682373046875,0.5120285153388977,0.7657305598258972,0.1875,0.14781826734542847,0,7 +64,0.1803499460220337,0.1832035481929779,0.002853602170944214,0.0034814884194723957,1.0,1.0,0.00445556640625,0.00445556640625,0.5352783203125,0,0,0.07212421298027039,0.48734477162361145,1.5438050031661987,0.7736860513687134,0.510253369808197,0.7686615586280823,0.18994140625,0.15029987692832947,0,7 +65,0.1832035481929779,0.1858668327331543,0.0026632845401763916,0.0032606465592306764,1.0,1.0,0.00445556640625,0.00445556640625,0.53607177734375,0,0,0.07355653494596481,0.4883708357810974,1.5478308200836182,0.7673428058624268,0.508596658706665,0.7702134847640991,0.1904296875,0.15141542255878448,0,7 +66,0.1858668327331543,0.18642842769622803,0.0005615949630737305,0.0006898072522448387,1.0,1.0,0.00445556640625,0.00445556640625,0.5360107421875,0,0,0.07489680498838425,0.4879794418811798,1.5486750602722168,0.7679862976074219,0.5082472562789917,0.7700584530830383,0.19140625,0.151949942111969,0,7 +67,0.18642842769622803,0.18648813664913177,5.970895290374756e-05,7.339114951456708e-05,1.0,1.0,0.00445556640625,0.00445556640625,0.53570556640625,0,0,0.07517918944358826,0.4876377284526825,1.548764944076538,0.7692809104919434,0.5082101821899414,0.7697423696517944,0.19140625,0.151949942111969,0,7 +68,0.18648813664913177,0.18989521265029907,0.0034070760011672974,0.004188108563203365,1.0,1.0,0.00445556640625,0.00445556640625,0.5396728515625,0,0,0.07520918548107147,0.49233579635620117,1.5537281036376953,0.7478650212287903,0.5060909390449524,0.7749571800231934,0.1953125,0.15455611050128937,0,7 +69,0.18989521265029907,0.1964554637670517,0.0065602511167526245,0.008098027834417348,1.0,1.0,0.00445556640625,0.0045166015625,0.5447998046875,0,0,0.07694026827812195,0.49928924441337585,1.5627317428588867,0.7147133350372314,0.5020111203193665,0.783024787902832,0.20068359375,0.15971368551254272,0,7 +70,0.1964554637670517,0.19933611154556274,0.0028806477785110474,0.0035849260975821568,1.0,1.0,0.0045166015625,0.0045166015625,0.54461669921875,0,0,0.0803339034318924,0.498840868473053,1.566593885421753,0.7132446765899658,0.5002203583717346,0.7832603454589844,0.20068359375,0.16153903305530548,0,7 +71,0.19933611154556274,0.20213140547275543,0.002795293927192688,0.003491220183026598,1.0,1.0,0.0045166015625,0.0045166015625,0.54559326171875,0,0,0.08182309567928314,0.5011109113693237,1.5702428817749023,0.7017814517021179,0.49848344922065735,0.7860305309295654,0.20166015625,0.1640031933784485,0,7 +72,0.20213140547275543,0.2067568451166153,0.004625439643859863,0.005797244904219526,1.0,1.0,0.0045166015625,0.0045166015625,0.54864501953125,0,0,0.08327583968639374,0.5053641200065613,1.5760283470153809,0.6817458868026733,0.4956101179122925,0.7909557223320007,0.20703125,0.16806349158287048,0,7 +73,0.2067568451166153,0.20780491828918457,0.001048073172569275,0.0013212508246898808,1.0,1.0,0.0045166015625,0.004638671875,0.54705810546875,0,0,0.08570370078086853,0.5038297176361084,1.5773282051086426,0.6858701705932617,0.49495911598205566,0.7898461818695068,0.20849609375,0.16884228587150574,0,7 +74,0.20780491828918457,0.20851752161979675,0.0007126033306121826,0.0008995301120441856,1.0,1.0,0.004638671875,0.00469970703125,0.54705810546875,0,0,0.08625179529190063,0.5037392973899841,1.5782077312469482,0.6856189966201782,0.49451667070388794,0.7898763418197632,0.208984375,0.1691727638244629,0,7 +75,0.20851752161979675,0.2139681577682495,0.005450636148452759,0.006886616314751121,1.0,1.0,0.00469970703125,0.0048828125,0.551513671875,0,0,0.08662434667348862,0.5103392601013184,1.5845857858657837,0.6561492681503296,0.4911339282989502,0.7972385883331299,0.2138671875,0.1742590367794037,0,7 +76,0.2139681577682495,0.2150316834449768,0.001063525676727295,0.0013530312890476124,1.0,1.0,0.0048828125,0.00494384765625,0.550048828125,0,0,0.08951831609010696,0.5080435872077942,1.5858206748962402,0.6627485752105713,0.4904746115207672,0.7954467535018921,0.21435546875,0.17482209205627441,0,7 +77,0.2150316834449768,0.2152930051088333,0.00026132166385650635,0.0003329072758036454,1.0,1.0,0.00494384765625,0.00494384765625,0.54913330078125,0,0,0.09008090198040009,0.5075731873512268,1.5861237049102783,0.6640874743461609,0.4903126358985901,0.7950778007507324,0.21435546875,0.17495033144950867,0,7 +78,0.2152930051088333,0.2161438763141632,0.000850871205329895,0.001084317090161666,1.0,1.0,0.00494384765625,0.00494384765625,0.54949951171875,0,0,0.09021943807601929,0.5084792971611023,1.5871015787124634,0.6598990559577942,0.48978525400161743,0.7961322665214539,0.21484375,0.17574334144592285,0,7 +79,0.2161438763141632,0.21831606328487396,0.0021721869707107544,0.002771155196819448,1.0,1.0,0.00494384765625,0.0050048828125,0.55072021484375,0,0,0.09067146480083466,0.5108623504638672,1.5895442962646484,0.6498149633407593,0.48843902349472046,0.7986791133880615,0.21533203125,0.17819000780582428,0,7 +80,0.21831606328487396,0.22230511903762817,0.003989055752754211,0.00510315687119968,1.0,1.0,0.0050048828125,0.00537109375,0.5526123046875,0,0,0.09183197468519211,0.5140110850334167,1.5938637256622314,0.6345502734184265,0.4859692454338074,0.8025030493736267,0.21875,0.18172261118888855,0,7 +81,0.22230511903762817,0.22340324521064758,0.0010981261730194092,0.0014120270042931415,1.0,1.0,0.00537109375,0.005615234375,0.55157470703125,0,0,0.0939788743853569,0.5125085711479187,1.5950427055358887,0.6381580829620361,0.4852898418903351,0.8014760613441467,0.22021484375,0.18241795897483826,0,7 +82,0.22340324521064758,0.22528307139873505,0.0018798261880874634,0.002420594956770526,1.0,1.0,0.005615234375,0.00579833984375,0.552001953125,0,0,0.09456772357225418,0.5139488577842712,1.5970250368118286,0.6313744187355042,0.4841277599334717,0.8031710386276245,0.2197265625,0.18414011597633362,0,7 +83,0.22528307139873505,0.22641173005104065,0.001128658652305603,0.0014568658701486908,1.0,1.0,0.00579833984375,0.00592041015625,0.55169677734375,0,0,0.09557914733886719,0.5137823820114136,1.5982041358947754,0.6307061314582825,0.4834304451942444,0.8033095598220825,0.22314453125,0.18500442802906036,0,7 +84,0.22641173005104065,0.22839854657649994,0.0019868165254592896,0.0025683126317186506,1.0,1.0,0.00592041015625,0.006103515625,0.552978515625,0,0,0.09618613868951797,0.5153889656066895,1.60023832321167,0.622889518737793,0.4822036623954773,0.8052741289138794,0.2275390625,0.18693554401397705,0,7 +85,0.22839854657649994,0.2309376746416092,0.002539128065109253,0.003290724834489951,1.0,1.0,0.006103515625,0.0064697265625,0.55413818359375,0,0,0.09725867211818695,0.5168541669845581,1.602776050567627,0.6158065795898438,0.4806366562843323,0.8070576786994934,0.23193359375,0.18937937915325165,0,7 +86,0.2309376746416092,0.23175528645515442,0.000817611813545227,0.0010631281582597506,1.0,1.0,0.0064697265625,0.0064697265625,0.553466796875,0,0,0.0986340194940567,0.516386866569519,1.603586196899414,0.6160403490066528,0.480132520198822,0.807006299495697,0.23291015625,0.19046783447265625,0,7 +87,0.23175528645515442,0.2319042682647705,0.00014898180961608887,0.00019392493952695737,1.0,1.0,0.0064697265625,0.0064697265625,0.55279541015625,0,0,0.09907636046409607,0.5161963701248169,1.6037335395812988,0.6161667108535767,0.48004066944122314,0.8069769144058228,0.2333984375,0.19077104330062866,0,7 +88,0.2319042682647705,0.23215225338935852,0.0002479851245880127,0.0003228570532839463,1.0,1.0,0.0064697265625,0.00653076171875,0.5528564453125,0,0,0.0991569310426712,0.5162111520767212,1.6039783954620361,0.6159830093383789,0.4798877537250519,0.8070271015167236,0.234375,0.19087573885917664,0,7 +89,0.23215225338935852,0.23904171586036682,0.006889462471008301,0.008972433013470565,1.0,1.0,0.00653076171875,0.0072021484375,0.55804443359375,0,0,0.09929102659225464,0.5226023197174072,1.6103490591049194,0.5888968706130981,0.47564733028411865,0.813869297504425,0.2392578125,0.19707424938678741,0,7 +90,0.23904171586036682,0.2441117912530899,0.0050700753927230835,0.006662750768861782,1.0,1.0,0.0072021484375,0.00799560546875,0.55816650390625,0,0,0.10307303071022034,0.523393988609314,1.6148066520690918,0.5809972882270813,0.472535640001297,0.8159046173095703,0.24462890625,0.202253058552742,0,7 +91,0.2441117912530899,0.24967209994792938,0.0055603086948394775,0.007355993426669797,1.0,1.0,0.00799560546875,0.00897216796875,0.55914306640625,0,0,0.10586077719926834,0.5253852009773254,1.6194322109222412,0.5692402124404907,0.4691339135169983,0.8189685344696045,0.25048828125,0.20778213441371918,0,7 +92,0.24967209994792938,0.2549284100532532,0.0052563101053237915,0.007005350733937814,1.0,1.0,0.00897216796875,0.0106201171875,0.56072998046875,0,0,0.1089356392621994,0.5267893075942993,1.6235730648040771,0.5596845149993896,0.46593067049980164,0.8215103149414062,0.25732421875,0.21339073777198792,0,7 +93,0.2549284100532532,0.25504228472709656,0.00011387467384338379,0.00015283722447600353,1.0,1.0,0.0106201171875,0.0106201171875,0.5572509765625,0,0,0.11185622960329056,0.523750901222229,1.6236627101898193,0.5674543380737305,0.465861439704895,0.8194977045059204,0.25732421875,0.21345333755016327,0,7 +94,0.25504228472709656,0.25545161962509155,0.0004093348979949951,0.0005494740031587454,1.0,1.0,0.0106201171875,0.01068115234375,0.5577392578125,0,0,0.11191903054714203,0.5239569544792175,1.6239837408065796,0.5663273334503174,0.4656127095222473,0.8197939395904541,0.25927734375,0.21382774412631989,0,7 +95,0.25545161962509155,0.2583468556404114,0.0028952360153198242,0.003888580099874722,1.0,1.0,0.01068115234375,0.01171875,0.55963134765625,0,0,0.11214490234851837,0.5260859727859497,1.6261861324310303,0.5573841333389282,0.4638567566871643,0.8221321702003479,0.2607421875,0.21663865447044373,0,7 +96,0.2583468556404114,0.26277974247932434,0.004432886838912964,0.005977035050179319,1.0,1.0,0.01171875,0.01348876953125,0.56005859375,0,0,0.11375067383050919,0.5280182361602783,1.6294028759002686,0.547582745552063,0.4611775279045105,0.8247254490852356,0.2646484375,0.2212124615907669,0,7 +97,0.26277974247932434,0.2800517678260803,0.01727202534675598,0.023428582123940864,1.0,1.0,0.01348876953125,0.02301025390625,0.5667724609375,0,0,0.11622057110071182,0.537202000617981,1.6398829221725464,0.5082530379295349,0.45090970396995544,0.8351064324378967,0.28271484375,0.2381754070520401,4,7 +98,0.2800517678260803,0.2810349464416504,0.0009831786155700684,0.0013656240429972463,1.0,1.0,0.02301025390625,0.02325439453125,0.55975341796875,0,0,0.12605604529380798,0.528449535369873,1.6404709815979004,0.5284746289253235,0.4503345489501953,0.8298997282981873,0.2841796875,0.23946461081504822,7,7 +99,0.2810349464416504,0.2861160933971405,0.005081146955490112,0.007067307277790711,1.0,1.0,0.02325439453125,0.02667236328125,0.5621337890625,0,0,0.126603901386261,0.53138267993927,1.6433217525482178,0.5165475010871887,0.4473838210105896,0.8330991268157959,0.29052734375,0.24473536014556885,7,7 +100,0.2861160933971405,0.28643983602523804,0.0003237426280975342,0.00045349478410028837,1.0,1.0,0.02667236328125,0.02703857421875,0.55865478515625,0,0,0.12945568561553955,0.5284281373023987,1.6435036659240723,0.523065447807312,0.447196900844574,0.8313497304916382,0.2900390625,0.24493224918842316,7,7 +101,0.28643983602523804,0.28895536065101624,0.0025155246257781982,0.0035253153872350563,1.0,1.0,0.02703857421875,0.0284423828125,0.559326171875,0,0,0.12963606417179108,0.5296962261199951,1.644873857498169,0.5180033445358276,0.44574886560440063,0.8327124118804932,0.29296875,0.2471703588962555,7,7 +102,0.28895536065101624,0.2914341390132904,0.00247877836227417,0.0034861079390791595,1.0,1.0,0.0284423828125,0.03070068359375,0.56005859375,0,0,0.13104185461997986,0.5301944613456726,1.6461784839630127,0.5144999027252197,0.44433099031448364,0.8336746692657471,0.29833984375,0.25050655007362366,7,7 +103,0.2914341390132904,0.2935793399810791,0.0021452009677886963,0.0030275251545444316,1.0,1.0,0.03070068359375,0.03228759765625,0.55926513671875,0,0,0.13242879509925842,0.5296438932418823,1.6472821235656738,0.513810396194458,0.44311225414276123,0.8338655233383179,0.30078125,0.2519650459289551,7,7 +104,0.2935793399810791,0.29549849033355713,0.0019191503524780273,0.002716724553931682,1.0,1.0,0.03228759765625,0.03375244140625,0.55908203125,0,0,0.13362735509872437,0.5295659303665161,1.6482458114624023,0.5120835900306702,0.44202667474746704,0.8343408107757568,0.30322265625,0.2538929283618927,7,7 +105,0.29549849033355713,0.297153502702713,0.0016550123691558838,0.0023491963415940374,1.0,1.0,0.03375244140625,0.0355224609375,0.55859375,0,0,0.13469934463500977,0.5293018817901611,1.6490604877471924,0.5113495588302612,0.4410954415798187,0.8345577716827393,0.3046875,0.2553074359893799,7,7 +106,0.297153502702713,0.31276631355285645,0.015612810850143433,0.022213685221710074,1.0,1.0,0.0355224609375,0.05181884765625,0.56439208984375,0,0,0.13562309741973877,0.537354052066803,1.6551895141601562,0.4813958406448364,0.43258780241012573,0.8428322672843933,0.31982421875,0.27165722846984863,7,7 +107,0.31276631355285645,0.315746545791626,0.0029802322387695312,0.004336563089880994,1.0,1.0,0.05181884765625,0.05517578125,0.55755615234375,0,0,0.1445324718952179,0.5297496318817139,1.656326413154602,0.49529701471328735,0.4310184121131897,0.8390288949012756,0.3232421875,0.2742726802825928,7,7 +108,0.315746545791626,0.3174552023410797,0.0017086565494537354,0.0024971105939545647,1.0,1.0,0.05517578125,0.05712890625,0.55572509765625,0,0,0.14620265364646912,0.528530478477478,1.656965970993042,0.49636751413345337,0.4301283359527588,0.8387476801872253,0.32373046875,0.27539971470832825,7,7 +109,0.3174552023410797,0.31963151693344116,0.00217631459236145,0.003188530042022228,1.0,1.0,0.05712890625,0.06011962890625,0.55633544921875,0,0,0.14715713262557983,0.529051661491394,1.6577472686767578,0.49352121353149414,0.4290057420730591,0.8395776748657227,0.32666015625,0.27829471230506897,7,7 +110,0.31963151693344116,0.3240344524383545,0.00440293550491333,0.006471398388515009,1.0,1.0,0.06011962890625,0.06646728515625,0.556396484375,0,0,0.1483745127916336,0.5303961038589478,1.659200668334961,0.4873998761177063,0.42677366733551025,0.8412965536117554,0.33203125,0.28339600563049316,7,7 +111,0.3240344524383545,0.32425421476364136,0.00021976232528686523,0.00032510876638549945,1.0,1.0,0.06646728515625,0.066650390625,0.55487060546875,0,0,0.15084601938724518,0.5276411771774292,1.6592739820480347,0.49274128675460815,0.4266635775566101,0.8398381471633911,0.33203125,0.28347456455230713,7,7 +112,0.32425421476364136,0.3252061605453491,0.0009519457817077637,0.0014087335837023346,1.0,1.0,0.066650390625,0.0675048828125,0.55517578125,0,0,0.1509684920310974,0.5277597904205322,1.6595871448516846,0.4919808506965637,0.42618799209594727,0.8400465846061707,0.33203125,0.2838720977306366,7,7 +113,0.3252061605453491,0.3302629888057709,0.005056828260421753,0.00749388622828646,1.0,1.0,0.0675048828125,0.0748291015625,0.5556640625,0,0,0.15149909257888794,0.5296205282211304,1.661090612411499,0.48458611965179443,0.42370593547821045,0.842099666595459,0.33447265625,0.28850680589675903,7,7 +114,0.3302629888057709,0.34028369188308716,0.010020703077316284,0.01496214620041388,1.0,1.0,0.0748291015625,0.0919189453125,0.5555419921875,0,0,0.15433171391487122,0.5313007831573486,1.6634963750839233,0.4746931791305542,0.41902902722358704,0.8448128700256348,0.3447265625,0.2980796992778778,7,7 +115,0.34028369188308716,0.3489358127117157,0.00865212082862854,0.013114911246206814,1.0,1.0,0.0919189453125,0.10675048828125,0.55352783203125,0,0,0.15996968746185303,0.5292284488677979,1.6651945114135742,0.47295552492141724,0.415258526802063,0.8452699184417725,0.3525390625,0.30667218565940857,7,7 +116,0.3489358127117157,0.3626047372817993,0.013668924570083618,0.02099474189636415,1.0,1.0,0.10675048828125,0.13214111328125,0.55291748046875,0,0,0.1648099422454834,0.5298070907592773,1.6669007539749146,0.46392881870269775,0.409888356924057,0.8476897478103638,0.3642578125,0.3197590708732605,7,7 +117,0.3626047372817993,0.37601587176322937,0.013411134481430054,0.021040530524556567,1.0,1.0,0.13214111328125,0.1590576171875,0.54901123046875,0,0,0.17246802151203156,0.526653528213501,1.6677662134170532,0.46245861053466797,0.40538400411605835,0.847967267036438,0.3759765625,0.33199894428253174,7,7 +118,0.37601587176322937,0.3784676492214203,0.002451777458190918,0.00392923048398531,1.0,1.0,0.1590576171875,0.16455078125,0.5418701171875,0,0,0.17991405725479126,0.5190542936325073,1.6679515838623047,0.474928617477417,0.40463948249816895,0.8444213271141052,0.3779296875,0.3339412212371826,7,7 +119,0.3784676492214203,0.3786812722682953,0.000213623046875,0.0003437038258867767,1.0,1.0,0.16455078125,0.16510009765625,0.5408935546875,0,0,0.18124526739120483,0.5175793766975403,1.6679686307907104,0.4775402545928955,0.4045758843421936,0.8437089920043945,0.3779296875,0.3341134190559387,7,7 +120,0.3786812722682953,0.38852235674858093,0.009841084480285645,0.015839027605385785,1.0,1.0,0.16510009765625,0.18634033203125,0.54345703125,0,0,0.18136076629161835,0.5213431715965271,1.6681292057037354,0.46594321727752686,0.4019050896167755,0.8468340635299683,0.3857421875,0.34278231859207153,7,7 +121,0.38852235674858093,0.4223254323005676,0.033803075551986694,0.055280967219414764,1.0,1.0,0.18634033203125,0.2589111328125,0.54827880859375,0,0,0.1867399513721466,0.5263437032699585,1.663214921951294,0.4439728856086731,0.39651352167129517,0.8530372977256775,0.408203125,0.37116560339927673,7,7 +122,0.4223254323005676,0.42400431632995605,0.0016788840293884277,0.0029062799771063515,1.0,1.0,0.2589111328125,0.262939453125,0.52984619140625,0,0,0.20548796653747559,0.508246123790741,1.66306734085083,0.47491419315338135,0.39637675881385803,0.8438858985900879,0.40869140625,0.37177881598472595,7,7 +123,0.42400431632995605,0.4268844723701477,0.0028801560401916504,0.005000308373563321,1.0,1.0,0.262939453125,0.26959228515625,0.53070068359375,0,0,0.20636622607707977,0.5088788270950317,1.6627452373504639,0.47228071093559265,0.3961814045906067,0.8447003364562988,0.412109375,0.3755168318748474,7,7 +124,0.4268844723701477,0.43885529041290283,0.011970818042755127,0.020887268736656008,1.0,1.0,0.26959228515625,0.29437255859375,0.531982421875,0,0,0.20787596702575684,0.5105204582214355,1.6605615615844727,0.4648478627204895,0.3958606719970703,0.8468230962753296,0.4189453125,0.3839009404182434,7,7 +125,0.43885529041290283,0.48685967922210693,0.0480043888092041,0.08554725365677386,1.0,1.0,0.29437255859375,0.4033203125,0.53662109375,0,0,0.21418443322181702,0.5159059762954712,1.6409575939178467,0.4414554834365845,0.40333986282348633,0.8538489937782288,0.45458984375,0.4202241003513336,7,7 +126,0.48685967922210693,0.611342191696167,0.12448251247406006,0.24258961425083744,1.0,1.0,0.4033203125,0.52532958984375,0.5308837890625,0,0,0.23996081948280334,0.5094970464706421,1.5358904600143433,0.4347366690635681,0.47764697670936584,0.8556052446365356,0.53076171875,0.49539846181869507,7,7 +127,0.611342191696167,0.6802758574485779,0.06893366575241089,0.17736338825469328,1.0,1.0,0.52532958984375,0.53253173828125,0.49066162109375,0,0,0.3053474426269531,0.47122007608413696,1.46476149559021,0.47479116916656494,0.5280641913414001,0.8435803651809692,0.56201171875,0.5219545364379883,7,7 +128,0.6802758574485779,1.0,0.3197241425514221,1.0,1.0,1.0,0.53253173828125,0.46624755859375,0.46624755859375,0,0,0.3347671329975128,0.44543254375457764,0.5127665996551514,0.5127629041671753,0.833873987197876,0.8338786363601685,0.60400390625,0.5740560293197632,7,7 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..88fb5b98a26ff5c5962c5f77b0912d77a722a84e --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/allcorrupt/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/train8_n256_compactv969_3l_bs512_hard_ce_allcorrupt/latest.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 128, + "seed": 20314773, + "time_schedule": "logit_normal", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.46624755859375, + "final_token_acc_min": 0.03125, + "final_token_acc_max": 0.69921875, + "final_exact_count": 0, + "final_best_ref_counts": [ + 9, + 5, + 7, + 10, + 11, + 3, + 2, + 17 + ], + "lock_stats": { + "final_token_acc_mean": 0.46624755859375, + "final_exact_count": 0, + "final_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 5, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 2, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 5, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ], + "wrong_count_per_sample": [ + 121, + 195, + 180, + 164, + 105, + 141, + 132, + 138, + 77, + 86, + 195, + 107, + 217, + 117, + 111, + 94, + 105, + 99, + 112, + 190, + 131, + 150, + 114, + 166, + 96, + 160, + 99, + 104, + 94, + 92, + 147, + 101, + 155, + 102, + 137, + 228, + 248, + 147, + 160, + 90, + 184, + 166, + 159, + 83, + 90, + 93, + 100, + 199, + 143, + 99, + 175, + 211, + 108, + 183, + 105, + 107, + 137, + 156, + 184, + 198, + 126, + 108, + 119, + 105 + ], + "wrong_state_lock_step": { + "n": 8745, + "min": 0.0, + "p25": 125.0, + "median": 126.0, + "p75": 128.0, + "max": 128.0, + "mean": 124.61623785020011 + }, + "wrong_endpoint_first_emit_step": { + "n": 8745, + "min": 1.0, + "p25": 5.0, + "median": 89.0, + "p75": 127.0, + "max": 128.0, + "mean": 69.0761578044597 + }, + "num_steps": 128 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1264, + "mass": 0.0771484375 + }, + { + "id": 5, + "old_text": ".", + "count": 1002, + "mass": 0.0611572265625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 911, + "mass": 0.05560302734375 + }, + { + "id": 40, + "old_text": " the", + "count": 695, + "mass": 0.04241943359375 + }, + { + "id": 52, + "old_text": " to", + "count": 470, + "mass": 0.0286865234375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.1484375, + 0.09765625, + 0.37109375, + 0.19921875, + 0.234375, + 0.484375, + 0.2890625, + 0.421875, + 0.73046875, + 0.5703125, + 0.328125, + 0.65234375, + 0.296875, + 0.45703125, + 0.47265625, + 0.23828125, + 0.55078125, + 0.3671875, + 0.4375, + 0.23046875, + 0.46484375, + 0.17578125, + 0.1796875, + 0.20703125, + 0.625, + 0.35546875, + 0.14453125, + 0.3984375, + 0.6015625, + 0.59375, + 0.3046875, + 0.41796875, + 0.24609375, + 0.453125, + 0.5625, + 0.13671875, + 0.30859375, + 0.390625, + 0.26953125, + 0.35546875, + 0.21875, + 0.2265625, + 0.26953125, + 0.31640625, + 0.16015625, + 0.26953125, + 0.3984375, + 0.0859375, + 0.16015625, + 0.49609375, + 0.42578125, + 0.5390625, + 0.24609375, + 0.22265625, + 0.1875, + 0.24609375, + 0.109375, + 0.2578125, + 0.125, + 0.20703125, + 0.34375, + 0.390625, + 0.171875, + 0.1328125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 6, + 0, + 3, + 4, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 6, + 1, + 7, + 3, + 3, + 6, + 2, + 4, + 2, + 3, + 0, + 4, + 3, + 1, + 7, + 7, + 3, + 1, + 0, + 7, + 2, + 7, + 4, + 2, + 7, + 2, + 1, + 1, + 2, + 0, + 4, + 0, + 3, + 7, + 3, + 3, + 0, + 3, + 6, + 4, + 4, + 5, + 6, + 3, + 6, + 6, + 1, + 6, + 2, + 4, + 5, + 3 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1096, + "mass": 0.06689453125 + }, + { + "id": 5, + "old_text": ".", + "count": 887, + "mass": 0.05413818359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 757, + "mass": 0.04620361328125 + }, + { + "id": 40, + "old_text": " the", + "count": 630, + "mass": 0.0384521484375 + }, + { + "id": 52, + "old_text": " to", + "count": 453, + "mass": 0.02764892578125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.16015625, + 0.0234375, + 0.44921875, + 0.18359375, + 0.32421875, + 0.60546875, + 0.26953125, + 0.5390625, + 0.765625, + 0.64453125, + 0.36328125, + 0.7109375, + 0.27734375, + 0.52734375, + 0.546875, + 0.296875, + 0.578125, + 0.30859375, + 0.58984375, + 0.2265625, + 0.61328125, + 0.16015625, + 0.2109375, + 0.29296875, + 0.6875, + 0.41015625, + 0.18359375, + 0.3984375, + 0.64453125, + 0.65625, + 0.48828125, + 0.515625, + 0.3203125, + 0.53515625, + 0.6875, + 0.11328125, + 0.4375, + 0.453125, + 0.265625, + 0.46484375, + 0.17578125, + 0.3359375, + 0.36328125, + 0.44921875, + 0.3125, + 0.44140625, + 0.4453125, + 0.08203125, + 0.16796875, + 0.6328125, + 0.41796875, + 0.58984375, + 0.38671875, + 0.1953125, + 0.27734375, + 0.3046875, + 0.06640625, + 0.1796875, + 0.17578125, + 0.32421875, + 0.50390625, + 0.42578125, + 0.23046875, + 0.1171875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 4, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 6, + 1, + 7, + 3, + 3, + 6, + 2, + 4, + 2, + 3, + 0, + 4, + 3, + 1, + 4, + 7, + 3, + 1, + 0, + 7, + 2, + 7, + 4, + 0, + 7, + 2, + 1, + 1, + 2, + 0, + 4, + 0, + 3, + 7, + 3, + 3, + 0, + 3, + 6, + 4, + 4, + 0, + 2, + 7, + 3, + 6, + 0, + 0, + 2, + 4, + 7, + 7 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1008, + "mass": 0.0615234375 + }, + { + "id": 5, + "old_text": ".", + "count": 832, + "mass": 0.05078125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 701, + "mass": 0.04278564453125 + }, + { + "id": 40, + "old_text": " the", + "count": 612, + "mass": 0.037353515625 + }, + { + "id": 52, + "old_text": " to", + "count": 426, + "mass": 0.0260009765625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.20703125, + 0.01953125, + 0.43359375, + 0.18359375, + 0.36328125, + 0.609375, + 0.265625, + 0.59765625, + 0.765625, + 0.671875, + 0.375, + 0.71484375, + 0.25390625, + 0.53125, + 0.5625, + 0.33984375, + 0.578125, + 0.19921875, + 0.6171875, + 0.234375, + 0.65234375, + 0.15234375, + 0.16015625, + 0.33984375, + 0.6796875, + 0.39453125, + 0.12109375, + 0.37109375, + 0.6640625, + 0.6640625, + 0.56640625, + 0.56640625, + 0.28125, + 0.58203125, + 0.703125, + 0.15625, + 0.47265625, + 0.484375, + 0.2578125, + 0.53125, + 0.13671875, + 0.34375, + 0.41796875, + 0.4375, + 0.41796875, + 0.5, + 0.45703125, + 0.10546875, + 0.12890625, + 0.68359375, + 0.41015625, + 0.59375, + 0.53515625, + 0.3671875, + 0.2734375, + 0.42578125, + 0.05859375, + 0.1640625, + 0.17578125, + 0.3125, + 0.55859375, + 0.4765625, + 0.203125, + 0.203125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 4, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 6, + 1, + 7, + 3, + 3, + 6, + 2, + 0, + 2, + 2, + 0, + 4, + 3, + 1, + 4, + 7, + 3, + 1, + 0, + 7, + 2, + 7, + 4, + 0, + 7, + 2, + 1, + 1, + 2, + 0, + 4, + 0, + 3, + 7, + 3, + 3, + 5, + 3, + 6, + 4, + 4, + 0, + 2, + 7, + 3, + 6, + 0, + 0, + 2, + 4, + 7, + 7 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 834, + "mass": 0.0509033203125 + }, + { + "id": 5, + "old_text": ".", + "count": 699, + "mass": 0.04266357421875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 600, + "mass": 0.03662109375 + }, + { + "id": 40, + "old_text": " the", + "count": 576, + "mass": 0.03515625 + }, + { + "id": 52, + "old_text": " to", + "count": 404, + "mass": 0.024658203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.35546875, + 0.01953125, + 0.4921875, + 0.18359375, + 0.27734375, + 0.68359375, + 0.26953125, + 0.6796875, + 0.75390625, + 0.78125, + 0.375, + 0.69921875, + 0.11328125, + 0.4765625, + 0.5859375, + 0.44140625, + 0.546875, + 0.29296875, + 0.66015625, + 0.46484375, + 0.67578125, + 0.34375, + 0.29296875, + 0.24609375, + 0.6484375, + 0.31640625, + 0.19140625, + 0.33203125, + 0.66796875, + 0.66015625, + 0.70703125, + 0.69140625, + 0.203125, + 0.625, + 0.74609375, + 0.20703125, + 0.578125, + 0.60546875, + 0.171875, + 0.6796875, + 0.07421875, + 0.375, + 0.515625, + 0.3125, + 0.59765625, + 0.546875, + 0.48828125, + 0.17578125, + 0.08984375, + 0.72265625, + 0.3046875, + 0.5546875, + 0.70703125, + 0.515625, + 0.37890625, + 0.58203125, + 0.07421875, + 0.109375, + 0.28515625, + 0.3046875, + 0.68359375, + 0.6171875, + 0.19140625, + 0.46484375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 4, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 6, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 4, + 3, + 1, + 7, + 7, + 3, + 1, + 0, + 7, + 2, + 7, + 4, + 0, + 7, + 2, + 1, + 1, + 2, + 0, + 4, + 0, + 3, + 7, + 3, + 3, + 3, + 3, + 6, + 4, + 4, + 0, + 4, + 7, + 0, + 6, + 0, + 0, + 2, + 4, + 7, + 7 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 700, + "mass": 0.042724609375 + }, + { + "id": 40, + "old_text": " the", + "count": 594, + "mass": 0.0362548828125 + }, + { + "id": 5, + "old_text": ".", + "count": 555, + "mass": 0.03387451171875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 495, + "mass": 0.03021240234375 + }, + { + "id": 113, + "old_text": "�", + "count": 353, + "mass": 0.02154541015625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.51171875, + 0.01953125, + 0.578125, + 0.16015625, + 0.5234375, + 0.734375, + 0.19921875, + 0.73828125, + 0.734375, + 0.7734375, + 0.3671875, + 0.66015625, + 0.05078125, + 0.36328125, + 0.5546875, + 0.57421875, + 0.5390625, + 0.359375, + 0.73828125, + 0.46875, + 0.6953125, + 0.6484375, + 0.37109375, + 0.421875, + 0.625, + 0.12890625, + 0.29296875, + 0.3984375, + 0.64453125, + 0.64453125, + 0.73046875, + 0.69921875, + 0.2578125, + 0.63671875, + 0.734375, + 0.27734375, + 0.63671875, + 0.7265625, + 0.17578125, + 0.73828125, + 0.03125, + 0.37890625, + 0.58203125, + 0.60546875, + 0.70703125, + 0.62109375, + 0.5234375, + 0.16015625, + 0.109375, + 0.69140625, + 0.26953125, + 0.43359375, + 0.78125, + 0.48046875, + 0.421875, + 0.62890625, + 0.0546875, + 0.1015625, + 0.45703125, + 0.25390625, + 0.78515625, + 0.7265625, + 0.26171875, + 0.671875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 5, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 1, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 2, + 7, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 3, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 0, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 688, + "mass": 0.0419921875 + }, + { + "id": 40, + "old_text": " the", + "count": 548, + "mass": 0.033447265625 + }, + { + "id": 5, + "old_text": ".", + "count": 505, + "mass": 0.03082275390625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 471, + "mass": 0.02874755859375 + }, + { + "id": 113, + "old_text": "�", + "count": 332, + "mass": 0.020263671875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.484375, + 0.0234375, + 0.5390625, + 0.17578125, + 0.61328125, + 0.73828125, + 0.20703125, + 0.7265625, + 0.70703125, + 0.70703125, + 0.296875, + 0.62890625, + 0.09765625, + 0.37890625, + 0.54296875, + 0.6640625, + 0.55078125, + 0.5078125, + 0.69140625, + 0.34765625, + 0.6640625, + 0.74609375, + 0.4296875, + 0.51953125, + 0.62109375, + 0.140625, + 0.4453125, + 0.53515625, + 0.66796875, + 0.6484375, + 0.69921875, + 0.6640625, + 0.39453125, + 0.69140625, + 0.7109375, + 0.20703125, + 0.61328125, + 0.65234375, + 0.16796875, + 0.71484375, + 0.03125, + 0.48046875, + 0.68359375, + 0.68359375, + 0.703125, + 0.6796875, + 0.58984375, + 0.046875, + 0.07421875, + 0.6640625, + 0.3828125, + 0.36328125, + 0.75390625, + 0.51953125, + 0.5390625, + 0.65234375, + 0.109375, + 0.140625, + 0.53125, + 0.16796875, + 0.7578125, + 0.71484375, + 0.3515625, + 0.6953125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 0, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 4, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 7, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 4, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 774, + "mass": 0.0472412109375 + }, + { + "id": 40, + "old_text": " the", + "count": 599, + "mass": 0.03656005859375 + }, + { + "id": 5, + "old_text": ".", + "count": 550, + "mass": 0.0335693359375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 511, + "mass": 0.03118896484375 + }, + { + "id": 38, + "old_text": " a", + "count": 356, + "mass": 0.021728515625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.5546875, + 0.03125, + 0.51171875, + 0.22265625, + 0.71484375, + 0.74609375, + 0.28125, + 0.73046875, + 0.734375, + 0.7109375, + 0.2421875, + 0.6484375, + 0.078125, + 0.45703125, + 0.62109375, + 0.73828125, + 0.62109375, + 0.63671875, + 0.69140625, + 0.34765625, + 0.65625, + 0.74609375, + 0.515625, + 0.5078125, + 0.69140625, + 0.13671875, + 0.6328125, + 0.6328125, + 0.71484375, + 0.71484375, + 0.66015625, + 0.66015625, + 0.6640625, + 0.73046875, + 0.73828125, + 0.2421875, + 0.53515625, + 0.63671875, + 0.18359375, + 0.72265625, + 0.0546875, + 0.53125, + 0.69921875, + 0.671875, + 0.72265625, + 0.6953125, + 0.66015625, + 0.01953125, + 0.09375, + 0.68359375, + 0.49609375, + 0.32421875, + 0.71484375, + 0.55078125, + 0.76953125, + 0.65625, + 0.25, + 0.2578125, + 0.5390625, + 0.1484375, + 0.734375, + 0.72265625, + 0.5, + 0.71875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 0, + 0, + 0, + 0, + 7, + 3, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 7, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 4, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 7, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 4, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 905, + "old_text": " Emanuel", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 648, + "old_text": " liberal", + "count": 30, + "mass": 0.0018310546875 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 908, + "mass": 0.055419921875 + }, + { + "id": 40, + "old_text": " the", + "count": 692, + "mass": 0.042236328125 + }, + { + "id": 5, + "old_text": ".", + "count": 647, + "mass": 0.03948974609375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 549, + "mass": 0.03350830078125 + }, + { + "id": 38, + "old_text": " a", + "count": 361, + "mass": 0.02203369140625 + } + ], + "state_best_acc": [ + 0.0078125, + 0.00390625, + 0.015625, + 0.0, + 0.00390625, + 0.046875, + 0.0078125, + 0.0234375, + 0.0234375, + 0.02734375, + 0.00390625, + 0.03125, + 0.00390625, + 0.00390625, + 0.01171875, + 0.03515625, + 0.0078125, + 0.015625, + 0.03125, + 0.0078125, + 0.015625, + 0.015625, + 0.015625, + 0.00390625, + 0.03515625, + 0.00390625, + 0.00390625, + 0.0234375, + 0.04296875, + 0.01953125, + 0.01171875, + 0.02734375, + 0.00390625, + 0.0390625, + 0.02734375, + 0.0078125, + 0.00390625, + 0.015625, + 0.00390625, + 0.015625, + 0.00390625, + 0.00390625, + 0.015625, + 0.0078125, + 0.02734375, + 0.01953125, + 0.0234375, + 0.0078125, + 0.00390625, + 0.01953125, + 0.00390625, + 0.00390625, + 0.015625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.6171875, + 0.03125, + 0.42578125, + 0.3125, + 0.734375, + 0.75390625, + 0.3671875, + 0.74609375, + 0.74609375, + 0.734375, + 0.25, + 0.671875, + 0.02734375, + 0.55078125, + 0.6484375, + 0.7890625, + 0.6796875, + 0.70703125, + 0.7109375, + 0.359375, + 0.7109375, + 0.76171875, + 0.57421875, + 0.4609375, + 0.72265625, + 0.20703125, + 0.6875, + 0.6953125, + 0.71875, + 0.75390625, + 0.59765625, + 0.6640625, + 0.67578125, + 0.71875, + 0.7734375, + 0.234375, + 0.4296875, + 0.66796875, + 0.29296875, + 0.74609375, + 0.1171875, + 0.54296875, + 0.703125, + 0.71484375, + 0.71875, + 0.73828125, + 0.69140625, + 0.08984375, + 0.16796875, + 0.71875, + 0.5234375, + 0.2890625, + 0.71875, + 0.53125, + 0.7734375, + 0.69921875, + 0.3671875, + 0.33984375, + 0.41796875, + 0.1875, + 0.74609375, + 0.765625, + 0.58984375, + 0.734375 + ], + "state_best_ref": [ + 3, + 2, + 0, + 0, + 1, + 4, + 2, + 4, + 6, + 1, + 2, + 4, + 1, + 0, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 1, + 2, + 7, + 3, + 1, + 0, + 7, + 7, + 7, + 4, + 3, + 3, + 2, + 3, + 1, + 1, + 0, + 4, + 5, + 3, + 7, + 3, + 1, + 1, + 3, + 4, + 5, + 4, + 0, + 4, + 7, + 3, + 0, + 0, + 0, + 0, + 4, + 4, + 0 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 4, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 7, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 5, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1120, + "mass": 0.068359375 + }, + { + "id": 40, + "old_text": " the", + "count": 912, + "mass": 0.0556640625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 891, + "mass": 0.05438232421875 + }, + { + "id": 5, + "old_text": ".", + "count": 890, + "mass": 0.0543212890625 + }, + { + "id": 38, + "old_text": " a", + "count": 541, + "mass": 0.03302001953125 + } + ], + "endpoint_top_tokens": [ + { + "id": 3, + "old_text": ",", + "count": 1120, + "mass": 0.068359375 + }, + { + "id": 40, + "old_text": " the", + "count": 912, + "mass": 0.0556640625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 891, + "mass": 0.05438232421875 + }, + { + "id": 5, + "old_text": ".", + "count": 890, + "mass": 0.0543212890625 + }, + { + "id": 38, + "old_text": " a", + "count": 541, + "mass": 0.03302001953125 + } + ], + "state_best_acc": [ + 0.52734375, + 0.23828125, + 0.296875, + 0.359375, + 0.58984375, + 0.44921875, + 0.484375, + 0.4609375, + 0.69921875, + 0.6640625, + 0.23828125, + 0.58203125, + 0.15234375, + 0.54296875, + 0.56640625, + 0.6328125, + 0.58984375, + 0.61328125, + 0.5625, + 0.2578125, + 0.48828125, + 0.4140625, + 0.5546875, + 0.3515625, + 0.625, + 0.375, + 0.61328125, + 0.59375, + 0.6328125, + 0.640625, + 0.42578125, + 0.60546875, + 0.39453125, + 0.6015625, + 0.46484375, + 0.109375, + 0.03125, + 0.42578125, + 0.375, + 0.6484375, + 0.28125, + 0.3515625, + 0.37890625, + 0.67578125, + 0.6484375, + 0.63671875, + 0.609375, + 0.22265625, + 0.44140625, + 0.61328125, + 0.31640625, + 0.17578125, + 0.578125, + 0.28515625, + 0.58984375, + 0.58203125, + 0.46484375, + 0.390625, + 0.28125, + 0.2265625, + 0.5078125, + 0.578125, + 0.53515625, + 0.58984375 + ], + "endpoint_best_acc": [ + 0.52734375, + 0.23828125, + 0.296875, + 0.359375, + 0.58984375, + 0.44921875, + 0.484375, + 0.4609375, + 0.69921875, + 0.6640625, + 0.23828125, + 0.58203125, + 0.15234375, + 0.54296875, + 0.56640625, + 0.6328125, + 0.58984375, + 0.61328125, + 0.5625, + 0.2578125, + 0.48828125, + 0.4140625, + 0.5546875, + 0.3515625, + 0.625, + 0.375, + 0.61328125, + 0.59375, + 0.6328125, + 0.640625, + 0.42578125, + 0.60546875, + 0.39453125, + 0.6015625, + 0.46484375, + 0.109375, + 0.03125, + 0.42578125, + 0.375, + 0.6484375, + 0.28125, + 0.3515625, + 0.37890625, + 0.67578125, + 0.6484375, + 0.63671875, + 0.609375, + 0.22265625, + 0.44140625, + 0.61328125, + 0.31640625, + 0.17578125, + 0.578125, + 0.28515625, + 0.58984375, + 0.58203125, + 0.46484375, + 0.390625, + 0.28125, + 0.2265625, + 0.5078125, + 0.578125, + 0.53515625, + 0.58984375 + ], + "state_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 5, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 2, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 5, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ], + "endpoint_best_ref": [ + 3, + 1, + 0, + 3, + 7, + 4, + 7, + 4, + 6, + 1, + 2, + 4, + 5, + 1, + 7, + 3, + 3, + 4, + 2, + 0, + 2, + 2, + 7, + 0, + 3, + 7, + 7, + 7, + 3, + 1, + 0, + 7, + 0, + 7, + 4, + 4, + 2, + 2, + 7, + 1, + 7, + 0, + 4, + 5, + 3, + 7, + 3, + 5, + 3, + 3, + 0, + 4, + 4, + 0, + 4, + 7, + 7, + 7, + 0, + 6, + 2, + 4, + 7, + 7 + ] + } + }, + "last_step": { + "step": 128, + "progress": 0.6802758574485779, + "next_progress": 1.0, + "dt": 0.3197241425514221, + "gamma": 1.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.53253173828125, + "state_acc_after_mean": 0.46624755859375, + "endpoint_acc_mean": 0.46624755859375, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.3347671329975128, + "endpoint_pgold_best_mean": 0.44543254375457764, + "state_entropy_mean": 0.5127665996551514, + "endpoint_entropy_mean": 0.5127629041671753, + "state_maxprob_mean": 0.833873987197876, + "endpoint_maxprob_mean": 0.8338786363601685, + "oracle_clean_acc_mean": 0.60400390625, + "oracle_clean_pgold_mean": 0.5740560293197632, + "state_best_ref_mode": 7, + "endpoint_best_ref_mode": 7, + "state_best_ref_counts": [ + 9, + 5, + 7, + 10, + 11, + 3, + 2, + 17 + ], + "endpoint_best_ref_counts": [ + 9, + 5, + 7, + 10, + 11, + 3, + 2, + 17 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/onehot/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/onehot/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..59520c68b2d09ee50fa5958c20164d4fd23c4718 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8_ode_decode_support_len256_latest/onehot/step_metrics.csv @@ -0,0 +1,129 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.03201184421777725,0.03201184421777725,0.03201184421777725,1.0,1.0,0.00433349609375,0.00433349609375,0.25592041015625,0,0,0.00346405990421772,0.22689390182495117,1.1479945182800293,1.1525394916534424,0.6043491363525391,0.6567665338516235,0.0771484375,0.05488411709666252,0,1 +2,0.03201184421777725,0.03513799235224724,0.003126148134469986,0.003229531390230465,1.0,1.0,0.00433349609375,0.00433349609375,0.2747802734375,0,0,0.00932580791413784,0.24578583240509033,1.1588555574417114,1.1001379489898682,0.6024048328399658,0.6707019805908203,0.0771484375,0.055478569120168686,0,1 +3,0.03513799235224724,0.039246052503585815,0.004108060151338577,0.0042576659862001,1.0,1.0,0.00433349609375,0.00433349609375,0.2784423828125,0,0,0.010064676403999329,0.24897658824920654,1.1726388931274414,1.0858936309814453,0.5998499393463135,0.6744940280914307,0.07861328125,0.055992789566516876,0,1 +4,0.039246052503585815,0.043327752500772476,0.004081699997186661,0.004248434271670681,1.0,1.0,0.00433349609375,0.00433349609375,0.28271484375,0,0,0.011053831316530704,0.2531123161315918,1.1858384609222412,1.0690345764160156,0.5973116159439087,0.6789998412132263,0.07861328125,0.056623585522174835,0,1 +5,0.043327752500772476,0.05119910091161728,0.007871348410844803,0.008227842326795581,1.0,1.0,0.00433349609375,0.00433349609375,0.28759765625,0,0,0.012059172615408897,0.2585557699203491,1.210038185119629,1.0436995029449463,0.5924169421195984,0.6857131719589233,0.0810546875,0.05771249532699585,0,1 +6,0.05119910091161728,0.05660367012023926,0.005404569208621979,0.0056962100413424374,1.0,1.0,0.00433349609375,0.00433349609375,0.296875,0,0,0.014054019004106522,0.26661697030067444,1.2258260250091553,1.015100359916687,0.5890564918518066,0.6936942338943481,0.08349609375,0.05833015218377113,0,1 +7,0.05660367012023926,0.05893132835626602,0.002327658236026764,0.002467317459591381,1.0,1.0,0.00433349609375,0.00433349609375,0.3009033203125,0,0,0.015475940890610218,0.2722424268722534,1.2324378490447998,0.9971988797187805,0.5876094102859497,0.6988037824630737,0.08349609375,0.05866161733865738,0,1 +8,0.05893132835626602,0.06070792302489281,0.0017765946686267853,0.0018878480626962804,1.0,1.0,0.00433349609375,0.00433349609375,0.30401611328125,0,0,0.016104046255350113,0.2748569846153259,1.237411379814148,0.9880892634391785,0.5865049362182617,0.7013711929321289,0.08447265625,0.058723825961351395,0,1 +9,0.06070792302489281,0.06368901580572128,0.002981092780828476,0.003173765492016899,1.0,1.0,0.00433349609375,0.00433349609375,0.30615234375,0,0,0.016588086262345314,0.27728021144866943,1.2456161975860596,0.9777252674102783,0.5846516489982605,0.7042412757873535,0.083984375,0.05904902145266533,0,1 +10,0.06368901580572128,0.06898529827594757,0.005296282470226288,0.005656542067360114,1.0,1.0,0.00433349609375,0.00433349609375,0.30987548828125,0,0,0.017407633364200592,0.28140220046043396,1.2597811222076416,0.9594220519065857,0.5813592672348022,0.7092224359512329,0.08544921875,0.059568747878074646,0,1 +11,0.06898529827594757,0.0741415023803711,0.005156204104423523,0.005538262816768916,1.0,1.0,0.00433349609375,0.00433349609375,0.31536865234375,0,0,0.01889006979763508,0.2878655195236206,1.2731032371520996,0.9355518817901611,0.5781540870666504,0.7156161069869995,0.08447265625,0.060022011399269104,0,1 +12,0.0741415023803711,0.082164466381073,0.008022964000701904,0.008665432159805033,1.0,1.0,0.00433349609375,0.00433349609375,0.32305908203125,0,0,0.02036946266889572,0.2946661412715912,1.2929813861846924,0.9072380065917969,0.5731673240661621,0.7232570648193359,0.083984375,0.06054377555847168,0,1 +13,0.082164466381073,0.0832255557179451,0.0010610893368721008,0.0011560778570953115,1.0,1.0,0.00433349609375,0.00433349609375,0.33306884765625,0,0,0.022728189826011658,0.30374085903167725,1.2955405712127686,0.8813613653182983,0.5725077986717224,0.7307955026626587,0.08447265625,0.06072402000427246,0,1 +14,0.0832255557179451,0.08396796882152557,0.0007424131035804749,0.0008098099900263624,1.0,1.0,0.00433349609375,0.00433349609375,0.33453369140625,0,0,0.023050127550959587,0.30499351024627686,1.2973215579986572,0.8773549795150757,0.5720463991165161,0.731941819190979,0.08447265625,0.06071610748767853,0,1 +15,0.08396796882152557,0.0862998440861702,0.002331875264644623,0.0025456263375906924,1.0,1.0,0.00433349609375,0.00433349609375,0.3348388671875,0,0,0.023276835680007935,0.3061719536781311,1.3028624057769775,0.8707606792449951,0.5705970525741577,0.7337043285369873,0.08349609375,0.060961633920669556,0,1 +16,0.0862998440861702,0.0877736359834671,0.0014737918972969055,0.0016129929362033483,1.0,1.0,0.00433349609375,0.00433349609375,0.3380126953125,0,0,0.023992100730538368,0.30900657176971436,1.3063255548477173,0.8616237640380859,0.5696810483932495,0.7363197803497314,0.083984375,0.06098785996437073,0,1 +17,0.0877736359834671,0.08781633526086807,4.269927740097046e-05,4.680776513952691e-05,1.0,1.0,0.00433349609375,0.00433349609375,0.33935546875,0,0,0.024448513984680176,0.3107427954673767,1.3064255714416504,0.85699862241745,0.5696544647216797,0.7376847863197327,0.083984375,0.06098785996437073,0,1 +18,0.08781633526086807,0.08900825679302216,0.0011919215321540833,0.0013066683588276614,1.0,1.0,0.00433349609375,0.00433349609375,0.33941650390625,0,0,0.024461815133690834,0.3109813928604126,1.3092041015625,0.8540157079696655,0.5689136981964111,0.7384269833564758,0.08349609375,0.0612298846244812,0,1 +19,0.08900825679302216,0.08930708467960358,0.0002988278865814209,0.0003280248024306484,1.0,1.0,0.00433349609375,0.00433349609375,0.3404541015625,0,0,0.024833396077156067,0.3124234676361084,1.3098976612091064,0.850108802318573,0.5687280297279358,0.7395726442337036,0.08349609375,0.06123890355229378,0,1 +20,0.08930708467960358,0.09095583856105804,0.0016487538814544678,0.001810438901761314,1.0,1.0,0.00433349609375,0.00433349609375,0.341064453125,0,0,0.024926982820034027,0.31295743584632874,1.313701868057251,0.847078800201416,0.567703366279602,0.7403955459594727,0.0830078125,0.06125421077013016,0,1 +21,0.09095583856105804,0.09176389127969742,0.0008080527186393738,0.0008889037000801951,1.0,1.0,0.00433349609375,0.00433349609375,0.34326171875,0,0,0.025444185361266136,0.3150970935821533,1.3155534267425537,0.8404257297515869,0.5672012567520142,0.7422975301742554,0.08251953125,0.06136183440685272,0,1 +22,0.09176389127969742,0.10128811746835709,0.009524226188659668,0.010486509066545732,1.0,1.0,0.00433349609375,0.00433349609375,0.3431396484375,0,0,0.025699354708194733,0.31686869263648987,1.3367125988006592,0.8235849142074585,0.5612825751304626,0.7466052770614624,0.08154296875,0.062005557119846344,0,1 +23,0.10128811746835709,0.10139931738376617,0.00011119991540908813,0.00012373255274631675,1.0,1.0,0.00433349609375,0.00433349609375,0.35400390625,0,0,0.0287233367562294,0.3283436894416809,1.3369536399841309,0.7945845127105713,0.561213493347168,0.7548679113388062,0.08154296875,0.06199033930897713,0,1 +24,0.10139931738376617,0.10202503949403763,0.0006257221102714539,0.0006963294401799176,1.0,1.0,0.00433349609375,0.00433349609375,0.35418701171875,0,0,0.028760014101862907,0.32856273651123047,1.3383071422576904,0.7937269806861877,0.5608246326446533,0.7550921440124512,0.08154296875,0.06204116344451904,0,1 +25,0.10202503949403763,0.10250301659107208,0.00047797709703445435,0.0005322833242088833,1.0,1.0,0.00433349609375,0.00433349609375,0.3548583984375,0,0,0.028966529294848442,0.32935118675231934,1.3393378257751465,0.7914037704467773,0.5605276823043823,0.7557168006896973,0.0810546875,0.061995863914489746,0,1 +26,0.10250301659107208,0.1146286129951477,0.012125596404075623,0.013510459230759128,1.0,1.0,0.00433349609375,0.00439453125,0.3538818359375,0,0,0.02912464737892151,0.3303224742412567,1.3645222187042236,0.7737860679626465,0.5529930591583252,0.7600523233413696,0.0791015625,0.06291086226701736,0,1 +27,0.1146286129951477,0.11842145025730133,0.0037928372621536255,0.004283894101191277,1.0,1.0,0.00439453125,0.00439453125,0.367919921875,0,0,0.03314296901226044,0.34453341364860535,1.3720953464508057,0.7331164479255676,0.5506364703178406,0.7718151807785034,0.07861328125,0.06322520226240158,0,1 +28,0.11842145025730133,0.11991230398416519,0.001490853726863861,0.0016911184230820817,1.0,1.0,0.00439453125,0.00439453125,0.37158203125,0,0,0.03445127233862877,0.34880757331848145,1.3750336170196533,0.7201595306396484,0.5497101545333862,0.7755156755447388,0.07861328125,0.06337136775255203,0,1 +29,0.11991230398416519,0.12220681458711624,0.00229451060295105,0.002607138599185423,1.0,1.0,0.00439453125,0.00439453125,0.37310791015625,0,0,0.03497147560119629,0.35049206018447876,1.3795075416564941,0.7133312225341797,0.5482845306396484,0.7774010896682739,0.0791015625,0.06361271440982819,0,1 +30,0.12220681458711624,0.12263119965791702,0.00042438507080078125,0.00048346817661971834,1.0,1.0,0.00439453125,0.00439453125,0.375732421875,0,0,0.03577559068799019,0.35307979583740234,1.3803298473358154,0.706425666809082,0.5480208396911621,0.7793883681297302,0.0791015625,0.06359919905662537,0,1 +31,0.12263119965791702,0.12462025135755539,0.0019890516996383667,0.0022670645444228727,1.0,1.0,0.00439453125,0.00439453125,0.3760986328125,0,0,0.03592533618211746,0.3534703254699707,1.384155511856079,0.7033945918083191,0.5467849969863892,0.7801793813705444,0.0791015625,0.06367304921150208,0,1 +32,0.12462025135755539,0.12487028539180756,0.00025003403425216675,0.0002856292193644235,1.0,1.0,0.00439453125,0.00439453125,0.3775634765625,0,0,0.036627739667892456,0.35574257373809814,1.384634256362915,0.6971439123153687,0.5466296672821045,0.781927227973938,0.080078125,0.06372841447591782,0,1 +33,0.12487028539180756,0.12574611604213715,0.0008758306503295898,0.0010008009506587388,1.0,1.0,0.00439453125,0.00439453125,0.37762451171875,0,0,0.03671655058860779,0.3559446930885315,1.3863050937652588,0.6953152418136597,0.5460854768753052,0.782370924949646,0.08056640625,0.0638912096619606,0,1 +34,0.12574611604213715,0.12841172516345978,0.002665609121322632,0.003049010327818124,1.0,1.0,0.00439453125,0.00439453125,0.37860107421875,0,0,0.037027716636657715,0.3569106161594391,1.3913360834121704,0.6900793313980103,0.5444292426109314,0.7836999297142029,0.0810546875,0.06414986401796341,0,1 +35,0.12841172516345978,0.12961909174919128,0.0012073665857315063,0.0013852487700777513,1.0,1.0,0.00439453125,0.00439453125,0.38153076171875,0,0,0.03798264265060425,0.3598155975341797,1.3935935497283936,0.6817572116851807,0.5436790585517883,0.7860497236251831,0.08056640625,0.0642232596874237,0,1 +36,0.12961909174919128,0.12983545660972595,0.00021636486053466797,0.0002485864045082206,1.0,1.0,0.00439453125,0.00439453125,0.38287353515625,0,0,0.038423292338848114,0.3611537218093872,1.3939967155456543,0.6780888438224792,0.5435446500778198,0.7870832085609436,0.08056640625,0.06427046656608582,0,1 +37,0.12983545660972595,0.13509829342365265,0.005262836813926697,0.006048093839151387,1.0,1.0,0.00439453125,0.00439453125,0.38262939453125,0,0,0.03850255161523819,0.36112624406814575,1.403627634048462,0.6727275848388672,0.5402746200561523,0.7882956266403198,0.07958984375,0.06475406885147095,0,1 +38,0.13509829342365265,0.13651596009731293,0.0014176666736602783,0.001639107268353085,1.0,1.0,0.00439453125,0.00439453125,0.38800048828125,0,0,0.04042874276638031,0.36674022674560547,1.4061825275421143,0.6581767201423645,0.5393937826156616,0.7922755479812622,0.08056640625,0.06483674049377441,0,1 +39,0.13651596009731293,0.13766935467720032,0.0011533945798873901,0.0013357451053957817,1.0,1.0,0.00439453125,0.00439453125,0.38983154296875,0,0,0.04095567762851715,0.368236780166626,1.4082472324371338,0.6534071564674377,0.5386770963668823,0.7935205101966858,0.08056640625,0.0650375634431839,0,1 +40,0.13766935467720032,0.13855227828025818,0.0008829236030578613,0.0010238805820560314,1.0,1.0,0.00439453125,0.00439453125,0.3907470703125,0,0,0.04138605296611786,0.3694067597389221,1.4098191261291504,0.6502255797386169,0.5381284952163696,0.7943701148033142,0.0810546875,0.06500120460987091,0,1 +41,0.13855227828025818,0.1425127238035202,0.003960445523262024,0.004597429911771815,1.0,1.0,0.00439453125,0.00439453125,0.39117431640625,0,0,0.04171651601791382,0.37011808156967163,1.4167594909667969,0.6447851061820984,0.535667896270752,0.7956767678260803,0.0791015625,0.06543564051389694,0,1 +42,0.1425127238035202,0.14302626252174377,0.0005135387182235718,0.0005988878581399526,1.0,1.0,0.00439453125,0.00439453125,0.39581298828125,0,0,0.04320075735449791,0.3743796944618225,1.4176514148712158,0.6351875066757202,0.5353488922119141,0.7981899976730347,0.07958984375,0.06542918086051941,0,1 +43,0.14302626252174377,0.14478830993175507,0.0017620474100112915,0.0020561276652378154,1.0,1.0,0.00439453125,0.00439453125,0.3958740234375,0,0,0.04339534789323807,0.3748164772987366,1.4206883907318115,0.6324938535690308,0.5342540740966797,0.7988216876983643,0.0791015625,0.06574349105358124,0,1 +44,0.14478830993175507,0.14645308256149292,0.001664772629737854,0.0019466205257379105,1.0,1.0,0.00439453125,0.00439453125,0.3983154296875,0,0,0.04406355321407318,0.37654969096183777,1.4235312938690186,0.6274034976959229,0.5332196950912476,0.8001149892807007,0.08056640625,0.06586840003728867,0,1 +45,0.14645308256149292,0.14677609503269196,0.00032301247119903564,0.00037843551959439506,1.0,1.0,0.00439453125,0.00439453125,0.40032958984375,0,0,0.04469755291938782,0.3783379793167114,1.4240806102752686,0.6234372854232788,0.5330190658569336,0.8011740446090698,0.080078125,0.06590322405099869,0,1 +46,0.14677609503269196,0.14820446074008942,0.001428365707397461,0.0016740807413877954,1.0,1.0,0.00439453125,0.00439453125,0.4002685546875,0,0,0.044821128249168396,0.37851399183273315,1.4264956712722778,0.6215460300445557,0.532131552696228,0.8016018271446228,0.080078125,0.06612534821033478,0,1 +47,0.14820446074008942,0.1486881673336029,0.00048370659351348877,0.0005678670188080124,1.0,1.0,0.00439453125,0.00439453125,0.40191650390625,0,0,0.045367687940597534,0.37995678186416626,1.4273099899291992,0.6182392239570618,0.5318310260772705,0.8025035858154297,0.080078125,0.06615947186946869,0,1 +48,0.1486881673336029,0.15141655504703522,0.002728387713432312,0.00320492163827527,1.0,1.0,0.00439453125,0.00439453125,0.40216064453125,0,0,0.04555343836545944,0.38025081157684326,1.4318519830703735,0.6150646209716797,0.5301358699798584,0.8032538294792175,0.08056640625,0.06658060848712921,0,1 +49,0.15141655504703522,0.15445169806480408,0.00303514301776886,0.003576717217170188,1.0,1.0,0.00439453125,0.00439453125,0.40386962890625,0,0,0.0466015562415123,0.38275986909866333,1.436821699142456,0.6074059009552002,0.5282500982284546,0.8052542209625244,0.08056640625,0.06694933772087097,0,1 +50,0.15445169806480408,0.1563456803560257,0.0018939822912216187,0.00223994570965004,1.0,1.0,0.00439453125,0.00439453125,0.40673828125,0,0,0.04779024422168732,0.3855101466178894,1.4398844242095947,0.6001173853874207,0.5270733833312988,0.8071523904800415,0.0810546875,0.06718403846025467,0,1 +51,0.1563456803560257,0.16051089763641357,0.004165217280387878,0.004937113677253046,1.0,1.0,0.00439453125,0.00439453125,0.40789794921875,0,0,0.048537477850914,0.38692742586135864,1.4464879035949707,0.5938470959663391,0.5244856476783752,0.8086520433425903,0.08154296875,0.06773465126752853,0,1 +52,0.16051089763641357,0.16344644129276276,0.002935543656349182,0.003496821636021411,1.0,1.0,0.00439453125,0.00439453125,0.411376953125,0,0,0.050186168402433395,0.3907149136066437,1.4510576725006104,0.5844537019729614,0.5226618051528931,0.8111236095428467,0.08251953125,0.06815654784440994,0,1 +53,0.16344644129276276,0.16538845002651215,0.0019420087337493896,0.002321439809245998,1.0,1.0,0.00439453125,0.00439453125,0.41314697265625,0,0,0.051358796656131744,0.3932536840438843,1.4540433883666992,0.5780446529388428,0.5214554071426392,0.8127589225769043,0.08349609375,0.06853155791759491,0,1 +54,0.16538845002651215,0.16668707132339478,0.0012986212968826294,0.0015559589331394722,1.0,1.0,0.00439453125,0.00439453125,0.41552734375,0,0,0.05213924124836922,0.3949486017227173,1.4560232162475586,0.5742238759994507,0.5206485986709595,0.8137943744659424,0.08349609375,0.06860420107841492,0,1 +55,0.16668707132339478,0.16832348704338074,0.001636415719985962,0.0019637469474819915,1.0,1.0,0.00439453125,0.00439453125,0.41656494140625,0,0,0.05266324430704117,0.39598241448402405,1.4584956169128418,0.5708912014961243,0.5196319818496704,0.8146313428878784,0.08447265625,0.06890655308961868,0,1 +56,0.16832348704338074,0.16997194290161133,0.0016484558582305908,0.001982087785995437,1.0,1.0,0.00439453125,0.00445556640625,0.41741943359375,0,0,0.05332501232624054,0.3974001705646515,1.4609633684158325,0.567340612411499,0.5186078548431396,0.8155399560928345,0.083984375,0.06914864480495453,0,1 +57,0.16997194290161133,0.17036545276641846,0.0003935098648071289,0.0004740922447643039,1.0,1.0,0.00445556640625,0.00445556640625,0.419677734375,0,0,0.05399368330836296,0.3989413380622864,1.4615501165390015,0.5643759965896606,0.5183634757995605,0.816383957862854,0.083984375,0.06922832876443863,0,1 +58,0.17036545276641846,0.17113260924816132,0.0007671564817428589,0.0009246920638743216,1.0,1.0,0.00445556640625,0.00445556640625,0.41949462890625,0,0,0.05415385216474533,0.39924973249435425,1.4626892805099487,0.5634342432022095,0.5178869366645813,0.8166321516036987,0.08447265625,0.06933452934026718,0,1 +59,0.17113260924816132,0.17300401628017426,0.0018714070320129395,0.0022577882214855224,1.0,1.0,0.00445556640625,0.00445556640625,0.42010498046875,0,0,0.054466307163238525,0.3997158408164978,1.4654426574707031,0.5611845254898071,0.5167245864868164,0.8171926140785217,0.08544921875,0.06958134472370148,0,1 +60,0.17300401628017426,0.17531432211399078,0.0023103058338165283,0.0027936119150479776,1.0,1.0,0.00445556640625,0.0045166015625,0.4210205078125,0,0,0.05522909760475159,0.4010884165763855,1.4687976837158203,0.5568088293075562,0.5152896046638489,0.818376898765564,0.08642578125,0.06997829675674438,0,1 +61,0.17531432211399078,0.1755736619234085,0.0002593398094177246,0.000314471096530394,1.0,1.0,0.0045166015625,0.0045166015625,0.42279052734375,0,0,0.05617335066199303,0.40319547057151794,1.4691729545593262,0.5531170964241028,0.515128493309021,0.8194921016693115,0.0859375,0.07006664574146271,0,1 +62,0.1755736619234085,0.1763649433851242,0.0007912814617156982,0.0009597964368311897,1.0,1.0,0.0045166015625,0.0045166015625,0.4229736328125,0,0,0.05627983808517456,0.40329012274742126,1.4703128337860107,0.5524104833602905,0.5146371126174927,0.8196704387664795,0.08642578125,0.0701020359992981,0,1 +63,0.1763649433851242,0.1803499460220337,0.003985002636909485,0.00483831110017071,1.0,1.0,0.0045166015625,0.0045166015625,0.42340087890625,0,0,0.05660479515790939,0.4034745693206787,1.4759430885314941,0.5485756397247314,0.5121621489524841,0.8205869793891907,0.087890625,0.0709870383143425,0,1 +64,0.1803499460220337,0.1832035481929779,0.002853602170944214,0.0034814884194723957,1.0,1.0,0.0045166015625,0.0045166015625,0.42633056640625,0,0,0.058240994811058044,0.4065564274787903,1.4799009561538696,0.5415730476379395,0.510390043258667,0.8226444721221924,0.0888671875,0.07125234603881836,0,1 +65,0.1832035481929779,0.1858668327331543,0.0026632845401763916,0.0032606465592306764,1.0,1.0,0.0045166015625,0.0045166015625,0.42791748046875,0,0,0.05942025035619736,0.4085446000099182,1.4835340976715088,0.5358390808105469,0.508736252784729,0.8242136836051941,0.08984375,0.07196402549743652,0,1 +66,0.1858668327331543,0.18642842769622803,0.0005615949630737305,0.0006898072522448387,1.0,1.0,0.0045166015625,0.0045166015625,0.4300537109375,0,0,0.06052509695291519,0.41061925888061523,1.4842956066131592,0.5320769548416138,0.508387565612793,0.8253451585769653,0.08984375,0.07203622162342072,0,1 +67,0.18642842769622803,0.18648813664913177,5.970895290374756e-05,7.339114951456708e-05,1.0,1.0,0.0045166015625,0.0045166015625,0.43048095703125,0,0,0.06075909733772278,0.4110684394836426,1.4843764305114746,0.531367301940918,0.5083504915237427,0.8255691528320312,0.08984375,0.07203445583581924,0,1 +68,0.18648813664913177,0.18989521265029907,0.0034070760011672974,0.004188108563203365,1.0,1.0,0.0045166015625,0.00457763671875,0.4295654296875,0,0,0.0607839971780777,0.4106637239456177,1.4889142513275146,0.5292362570762634,0.5062353610992432,0.8260354995727539,0.09033203125,0.0727340579032898,0,1 +69,0.18989521265029907,0.1964554637670517,0.0065602511167526245,0.008098027834417348,1.0,1.0,0.00457763671875,0.0047607421875,0.43170166015625,0,0,0.062203098088502884,0.4123768210411072,1.4973326921463013,0.5211840867996216,0.5021646022796631,0.8281781673431396,0.09033203125,0.0740174800157547,0,1 +70,0.1964554637670517,0.19933611154556274,0.0028806477785110474,0.0035849260975821568,1.0,1.0,0.0047607421875,0.00482177734375,0.43511962890625,0,0,0.06494259834289551,0.41678357124328613,1.500945806503296,0.5123692750930786,0.5003780722618103,0.8306913375854492,0.091796875,0.0745980441570282,0,1 +71,0.19933611154556274,0.20213140547275543,0.002795293927192688,0.003491220183026598,1.0,1.0,0.00482177734375,0.00482177734375,0.43603515625,0,0,0.06615613400936127,0.4184163808822632,1.5043877363204956,0.5076887607574463,0.4986453354358673,0.8318831920623779,0.091796875,0.07520967721939087,0,1 +72,0.20213140547275543,0.2067568451166153,0.004625439643859863,0.005797244904219526,1.0,1.0,0.00482177734375,0.00482177734375,0.4376220703125,0,0,0.06733708083629608,0.41969412565231323,1.5099208354949951,0.5017723441123962,0.49577856063842773,0.8333770036697388,0.0927734375,0.07647518068552017,0,1 +73,0.2067568451166153,0.20780491828918457,0.001048073172569275,0.0013212508246898808,1.0,1.0,0.00482177734375,0.00482177734375,0.4404296875,0,0,0.06929481029510498,0.42252016067504883,1.5111606121063232,0.49677976965904236,0.4951289892196655,0.8349036574363708,0.0927734375,0.07672119140625,0,1 +74,0.20780491828918457,0.20851752161979675,0.0007126033306121826,0.0008995301120441856,1.0,1.0,0.00482177734375,0.00482177734375,0.441650390625,0,0,0.06974081695079803,0.4230978190898895,1.5119991302490234,0.4954987168312073,0.4946873188018799,0.835309624671936,0.09228515625,0.07680380344390869,0,1 +75,0.20851752161979675,0.2139681577682495,0.005450636148452759,0.006886616314751121,1.0,1.0,0.00482177734375,0.0050048828125,0.4420166015625,0,0,0.0700443834066391,0.4229295253753662,1.5182108879089355,0.49135643243789673,0.4913105368614197,0.8363196849822998,0.09521484375,0.07825809717178345,0,1 +76,0.2139681577682495,0.2150316834449768,0.001063525676727295,0.0013530312890476124,1.0,1.0,0.0050048828125,0.0050048828125,0.44580078125,0,0,0.07236373424530029,0.4259672164916992,1.5194079875946045,0.4863988161087036,0.49065205454826355,0.8379976153373718,0.09521484375,0.07832904160022736,0,1 +77,0.2150316834449768,0.2152930051088333,0.00026132166385650635,0.0003329072758036454,1.0,1.0,0.0050048828125,0.0050048828125,0.44622802734375,0,0,0.07281889766454697,0.4265565872192383,1.5197012424468994,0.48544442653656006,0.49049025774002075,0.8383156657218933,0.09521484375,0.0783403217792511,0,1 +78,0.2152930051088333,0.2161438763141632,0.000850871205329895,0.001084317090161666,1.0,1.0,0.0050048828125,0.0050048828125,0.44622802734375,0,0,0.07293085753917694,0.42660441994667053,1.5206507444381714,0.4843501150608063,0.4899635314941406,0.838599681854248,0.0947265625,0.07874660193920135,0,1 +79,0.2161438763141632,0.21831606328487396,0.0021721869707107544,0.002771155196819448,1.0,1.0,0.0050048828125,0.005126953125,0.44635009765625,0,0,0.07329538464546204,0.4268174171447754,1.5230411291122437,0.4824184775352478,0.4886191785335541,0.8391300439834595,0.0966796875,0.07920334488153458,0,1 +80,0.21831606328487396,0.22230511903762817,0.003989055752754211,0.00510315687119968,1.0,1.0,0.005126953125,0.005615234375,0.446533203125,0,0,0.07422608137130737,0.42755162715911865,1.5273123979568481,0.47798141837120056,0.48615407943725586,0.8403635621070862,0.0986328125,0.08038981258869171,1,1 +81,0.22230511903762817,0.22340324521064758,0.0010981261730194092,0.0014120270042931415,1.0,1.0,0.005615234375,0.00579833984375,0.44805908203125,0,0,0.07593659311532974,0.4294838607311249,1.5284743309020996,0.4744487404823303,0.48547619581222534,0.8415436744689941,0.0986328125,0.08059624582529068,1,1 +82,0.22340324521064758,0.22528307139873505,0.0018798261880874634,0.002420594956770526,1.0,1.0,0.00579833984375,0.00604248046875,0.44793701171875,0,0,0.07640916109085083,0.4298613369464874,1.5304373502731323,0.47238555550575256,0.4843166470527649,0.8421287536621094,0.099609375,0.08120165765285492,1,1 +83,0.22528307139873505,0.22641173005104065,0.001128658652305603,0.0014568658701486908,1.0,1.0,0.00604248046875,0.0062255859375,0.44866943359375,0,0,0.07723058015108109,0.4306689500808716,1.531604528427124,0.4703884422779083,0.4836207628250122,0.842728853225708,0.09912109375,0.08150603622198105,1,1 +84,0.22641173005104065,0.22839854657649994,0.0019868165254592896,0.0025683126317186506,1.0,1.0,0.0062255859375,0.0064697265625,0.4486083984375,0,0,0.07772576063871384,0.43098723888397217,1.5336302518844604,0.46840527653694153,0.48239666223526,0.8432709574699402,0.09912109375,0.0819406509399414,1,1 +85,0.22839854657649994,0.2309376746416092,0.002539128065109253,0.003290724834489951,1.0,1.0,0.0064697265625,0.00653076171875,0.4493408203125,0,0,0.07859799265861511,0.43165433406829834,1.5361695289611816,0.4653782844543457,0.4808340072631836,0.8440591096878052,0.1005859375,0.08271193504333496,1,1 +86,0.2309376746416092,0.23175528645515442,0.000817611813545227,0.0010631281582597506,1.0,1.0,0.00653076171875,0.00653076171875,0.4505615234375,0,0,0.07971423119306564,0.43273627758026123,1.536980390548706,0.4636107385158539,0.4803312420845032,0.844629168510437,0.1005859375,0.0827837809920311,1,1 +87,0.23175528645515442,0.2319042682647705,0.00014898180961608887,0.00019392493952695737,1.0,1.0,0.00653076171875,0.00653076171875,0.45111083984375,0,0,0.08007459342479706,0.4330751299858093,1.53712797164917,0.46306484937667847,0.480239599943161,0.8447995185852051,0.1005859375,0.08279004693031311,1,1 +88,0.2319042682647705,0.23215225338935852,0.0002479851245880127,0.0003228570532839463,1.0,1.0,0.00653076171875,0.006591796875,0.4515380859375,0,0,0.08014032244682312,0.43309295177459717,1.5373728275299072,0.4625098705291748,0.48008716106414795,0.8449320793151855,0.10107421875,0.08312974870204926,1,1 +89,0.23215225338935852,0.23904171586036682,0.006889462471008301,0.008972433013470565,1.0,1.0,0.006591796875,0.0078125,0.4503173828125,0,0,0.08024971187114716,0.4325767159461975,1.543867826461792,0.4576621651649475,0.4758622944355011,0.8461005687713623,0.1025390625,0.08528262376785278,1,1 +90,0.23904171586036682,0.2441117912530899,0.0050700753927230835,0.006662750768861782,1.0,1.0,0.0078125,0.0091552734375,0.4517822265625,0,0,0.08329503238201141,0.43487218022346497,1.5484387874603271,0.45083314180374146,0.47276628017425537,0.847967267036438,0.103515625,0.08690448850393295,1,1 +91,0.2441117912530899,0.24967209994792938,0.0055603086948394775,0.007355993426669797,1.0,1.0,0.0091552734375,0.00994873046875,0.45263671875,0,0,0.08558190613985062,0.436235636472702,1.553222417831421,0.44497039914131165,0.4693869650363922,0.8495080471038818,0.1044921875,0.08868499100208282,1,1 +92,0.24967209994792938,0.2549284100532532,0.0052563101053237915,0.007005350733937814,1.0,1.0,0.00994873046875,0.0113525390625,0.45452880859375,0,0,0.0881168395280838,0.43766385316848755,1.5575366020202637,0.43937891721725464,0.46620938181877136,0.8511360883712769,0.10693359375,0.09065323323011398,1,1 +93,0.2549284100532532,0.25504228472709656,0.00011387467384338379,0.00015283722447600353,1.0,1.0,0.0113525390625,0.0113525390625,0.45599365234375,0,0,0.09053914248943329,0.4392601251602173,1.5576293468475342,0.437783420085907,0.4661406874656677,0.8516876697540283,0.107421875,0.0906752198934555,1,1 +94,0.25504228472709656,0.25545161962509155,0.0004093348979949951,0.0005494740031587454,1.0,1.0,0.0113525390625,0.011474609375,0.45599365234375,0,0,0.09059230983257294,0.43924736976623535,1.5579615831375122,0.4375244975090027,0.46589395403862,0.8517593145370483,0.1064453125,0.0907215103507042,1,1 +95,0.25545161962509155,0.2583468556404114,0.0028952360153198242,0.003888580099874722,1.0,1.0,0.011474609375,0.01226806640625,0.45648193359375,0,0,0.09078341722488403,0.43924540281295776,1.5602580308914185,0.4355787932872772,0.4641519784927368,0.8522574305534363,0.10888671875,0.09168089181184769,1,1 +96,0.2583468556404114,0.26277974247932434,0.004432886838912964,0.005977035050179319,1.0,1.0,0.01226806640625,0.01348876953125,0.4571533203125,0,0,0.09213477373123169,0.44010692834854126,1.5636354684829712,0.4313576817512512,0.46149563789367676,0.8534247279167175,0.109375,0.09374817460775375,1,1 +97,0.26277974247932434,0.2800517678260803,0.01727202534675598,0.023428582123940864,1.0,1.0,0.01348876953125,0.02044677734375,0.45806884765625,0,0,0.09420622140169144,0.4408138394355774,1.5749869346618652,0.41937199234962463,0.4513314962387085,0.8566315770149231,0.11767578125,0.10085856914520264,1,1 +98,0.2800517678260803,0.2810349464416504,0.0009831786155700684,0.0013656240429972463,1.0,1.0,0.02044677734375,0.0211181640625,0.46282958984375,0,0,0.10227197408676147,0.44602519273757935,1.5756099224090576,0.41554880142211914,0.45076224207878113,0.8576134443283081,0.1181640625,0.10167555510997772,1,1 +99,0.2810349464416504,0.2861160933971405,0.005081146955490112,0.007067307277790711,1.0,1.0,0.0211181640625,0.02410888671875,0.46282958984375,0,0,0.10273529589176178,0.4460979402065277,1.5786707401275635,0.4121929705142975,0.4478410482406616,0.8585087060928345,0.12060546875,0.10389211028814316,1,1 +100,0.2861160933971405,0.28643983602523804,0.0003237426280975342,0.00045349478410028837,1.0,1.0,0.02410888671875,0.0244140625,0.4647216796875,0,0,0.10512860864400864,0.4474910497665405,1.5788637399673462,0.4113895297050476,0.44765615463256836,0.8586937785148621,0.12060546875,0.10395364463329315,1,1 +101,0.28643983602523804,0.28895536065101624,0.0025155246257781982,0.0035253153872350563,1.0,1.0,0.0244140625,0.02581787109375,0.464599609375,0,0,0.10528135299682617,0.4475350081920624,1.5803248882293701,0.40978124737739563,0.4462260603904724,0.8591244220733643,0.12158203125,0.10524043440818787,1,1 +102,0.28895536065101624,0.2914341390132904,0.00247877836227417,0.0034861079390791595,1.0,1.0,0.02581787109375,0.02679443359375,0.466064453125,0,0,0.10646800696849823,0.4481309652328491,1.581721544265747,0.4075738787651062,0.44482505321502686,0.859782874584198,0.1220703125,0.10677498579025269,1,1 +103,0.2914341390132904,0.2935793399810791,0.0021452009677886963,0.0030275251545444316,1.0,1.0,0.02679443359375,0.02783203125,0.46636962890625,0,0,0.10763773322105408,0.4487925171852112,1.5828986167907715,0.40587469935417175,0.44362062215805054,0.8602856397628784,0.123046875,0.10804794728755951,1,1 +104,0.2935793399810791,0.29549849033355713,0.0019191503524780273,0.002716724553931682,1.0,1.0,0.02783203125,0.02911376953125,0.46673583984375,0,0,0.10865060985088348,0.4492834806442261,1.583926796913147,0.4045358896255493,0.4425489902496338,0.8606688976287842,0.123046875,0.10880941152572632,1,1 +105,0.29549849033355713,0.297153502702713,0.0016550123691558838,0.0023491963415940374,1.0,1.0,0.02911376953125,0.0301513671875,0.46685791015625,0,0,0.10955704003572464,0.44972288608551025,1.5847947597503662,0.4031730890274048,0.4416302442550659,0.8610754013061523,0.1240234375,0.10982903838157654,1,1 +106,0.297153502702713,0.31276631355285645,0.015612810850143433,0.022213685221710074,1.0,1.0,0.0301513671875,0.042724609375,0.4659423828125,0,0,0.11033891141414642,0.4495944678783417,1.591637134552002,0.3939184546470642,0.4332340657711029,0.8635807037353516,0.13330078125,0.11917702853679657,1,1 +107,0.31276631355285645,0.315746545791626,0.0029802322387695312,0.004336563089880994,1.0,1.0,0.042724609375,0.04522705078125,0.46807861328125,0,0,0.1177038699388504,0.4529481530189514,1.592848300933838,0.3900562524795532,0.4316898584365845,0.8648404479026794,0.13525390625,0.12155015021562576,1,1 +108,0.315746545791626,0.3174552023410797,0.0017086565494537354,0.0024971105939545647,1.0,1.0,0.04522705078125,0.0467529296875,0.4677734375,0,0,0.11911512911319733,0.45341241359710693,1.5935215950012207,0.38892167806625366,0.4308133125305176,0.8651806712150574,0.13671875,0.12219463288784027,1,1 +109,0.3174552023410797,0.31963151693344116,0.00217631459236145,0.003188530042022228,1.0,1.0,0.0467529296875,0.04888916015625,0.468505859375,0,0,0.11992457509040833,0.4537094235420227,1.5943493843078613,0.38750138878822327,0.4297076463699341,0.86557936668396,0.138671875,0.1238347738981247,1,1 +110,0.31963151693344116,0.3240344524383545,0.00440293550491333,0.006471398388515009,1.0,1.0,0.04888916015625,0.0543212890625,0.4683837890625,0,0,0.1209559366106987,0.45399269461631775,1.5959062576293945,0.3845652937889099,0.42750978469848633,0.8663867115974426,0.14306640625,0.1275414526462555,1,1 +111,0.3240344524383545,0.32425421476364136,0.00021976232528686523,0.00032510876638549945,1.0,1.0,0.0543212890625,0.05450439453125,0.46942138671875,0,0,0.12304304540157318,0.4546820819377899,1.5959827899932861,0.3842020630836487,0.42740145325660706,0.8664729595184326,0.14306640625,0.12758135795593262,1,1 +112,0.32425421476364136,0.3252061605453491,0.0009519457817077637,0.0014087335837023346,1.0,1.0,0.05450439453125,0.05535888671875,0.46917724609375,0,0,0.12314730882644653,0.4546878933906555,1.5963091850280762,0.3838122487068176,0.4269338548183441,0.8665767908096313,0.1435546875,0.12787386775016785,1,1 +113,0.3252061605453491,0.3302629888057709,0.005056828260421753,0.00749388622828646,1.0,1.0,0.05535888671875,0.060791015625,0.46905517578125,0,0,0.12359895557165146,0.45480281114578247,1.597900629043579,0.38086074590682983,0.42448943853378296,0.8673740029335022,0.146484375,0.1322242021560669,1,1 +114,0.3302629888057709,0.34028369188308716,0.010020703077316284,0.01496214620041388,1.0,1.0,0.060791015625,0.07208251953125,0.46917724609375,0,0,0.12599849700927734,0.4553377032279968,1.6004867553710938,0.37549224495887756,0.4198673963546753,0.8687981367111206,0.15576171875,0.14016133546829224,1,1 +115,0.34028369188308716,0.3489358127117157,0.00865212082862854,0.013114911246206814,1.0,1.0,0.07208251953125,0.083251953125,0.469970703125,0,0,0.13075610995292664,0.45654305815696716,1.6022474765777588,0.370935320854187,0.41613703966140747,0.8701576590538025,0.16064453125,0.14704042673110962,1,1 +116,0.3489358127117157,0.3626047372817993,0.013668924570083618,0.02099474189636415,1.0,1.0,0.083251953125,0.10174560546875,0.47137451171875,0,0,0.1348717212677002,0.4572957754135132,1.6039925813674927,0.3643888831138611,0.41080594062805176,0.872211754322052,0.1767578125,0.16044190526008606,1,1 +117,0.3626047372817993,0.37601587176322937,0.013411134481430054,0.021040530524556567,1.0,1.0,0.10174560546875,0.12335205078125,0.47100830078125,0,0,0.1415836066007614,0.45838189125061035,1.6046421527862549,0.358512282371521,0.40630048513412476,0.8740583658218384,0.1953125,0.17526939511299133,1,1 +118,0.37601587176322937,0.3784676492214203,0.002451777458190918,0.00392923048398531,1.0,1.0,0.12335205078125,0.126953125,0.47149658203125,0,0,0.1481846272945404,0.4593034088611603,1.604689359664917,0.35737648606300354,0.4055626392364502,0.8744947910308838,0.19677734375,0.17870599031448364,1,1 +119,0.3784676492214203,0.3786812722682953,0.000213623046875,0.0003437038258867767,1.0,1.0,0.126953125,0.1273193359375,0.47161865234375,0,0,0.14939375221729279,0.4594065546989441,1.6046923398971558,0.35726290941238403,0.40549954771995544,0.8745584487915039,0.197265625,0.17902250587940216,1,1 +120,0.3786812722682953,0.38852235674858093,0.009841084480285645,0.015839027605385785,1.0,1.0,0.1273193359375,0.14447021484375,0.47113037109375,0,0,0.14949911832809448,0.4594275951385498,1.6044015884399414,0.35348448157310486,0.4028550386428833,0.8757100105285645,0.21337890625,0.19175201654434204,1,1 +121,0.38852235674858093,0.4223254323005676,0.033803075551986694,0.055280967219414764,1.0,1.0,0.14447021484375,0.2052001953125,0.470458984375,0,0,0.15436172485351562,0.45931917428970337,1.5983672142028809,0.34325170516967773,0.3976103663444519,0.8787083625793457,0.265625,0.24167698621749878,1,1 +122,0.4223254323005676,0.42400431632995605,0.0016788840293884277,0.0029062799771063515,1.0,1.0,0.2052001953125,0.209228515625,0.4718017578125,0,0,0.17114798724651337,0.46078017354011536,1.597974181175232,0.34341198205947876,0.3974992036819458,0.8786103129386902,0.2666015625,0.24558043479919434,1,1 +123,0.42400431632995605,0.4268844723701477,0.0028801560401916504,0.005000308373563321,1.0,1.0,0.209228515625,0.21551513671875,0.47186279296875,0,0,0.17198553681373596,0.46084365248680115,1.5972583293914795,0.342784583568573,0.39734989404678345,0.8787742853164673,0.27099609375,0.2494029849767685,1,1 +124,0.4268844723701477,0.43885529041290283,0.011970818042755127,0.020887268736656008,1.0,1.0,0.21551513671875,0.23919677734375,0.471923828125,0,0,0.17342263460159302,0.4608822762966156,1.5936462879180908,0.33950015902519226,0.39728155732154846,0.8796395063400269,0.29541015625,0.270407497882843,1,1 +125,0.43885529041290283,0.48685967922210693,0.0480043888092041,0.08554725365677386,1.0,1.0,0.23919677734375,0.33306884765625,0.47039794921875,0,0,0.17940369248390198,0.4598066806793213,1.570155143737793,0.3302759826183319,0.40628671646118164,0.8821490406990051,0.380859375,0.3557874262332916,1,1 +126,0.48685967922210693,0.611342191696167,0.12448251247406006,0.24258961425083744,1.0,1.0,0.33306884765625,0.45440673828125,0.462646484375,0,0,0.20331329107284546,0.45271748304367065,1.4530327320098877,0.3209930658340454,0.4900017976760864,0.8847332000732422,0.568359375,0.5389066934585571,1,1 +127,0.611342191696167,0.6802758574485779,0.06893366575241089,0.17736338825469328,1.0,1.0,0.45440673828125,0.46588134765625,0.459716796875,0,0,0.263601154088974,0.4518774151802063,1.3553625345230103,0.3139897584915161,0.5516537427902222,0.8874388933181763,0.62890625,0.5974658131599426,1,1 +128,0.6802758574485779,1.0,0.3197241425514221,1.0,1.0,1.0,0.46588134765625,0.43060302734375,0.43060302734375,0,0,0.29673516750335693,0.4222058057785034,0.32712531089782715,0.32711994647979736,0.883816123008728,0.883822500705719,0.67041015625,0.6485031247138977,1,1 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_hard_ce_onehot/step_3000/decode_token_acc.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_hard_ce_onehot/step_3000/decode_token_acc.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a27c053e7e0dc20ee476a4ad2237ca281cbb2df0 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_hard_ce_onehot/step_3000/decode_token_acc.jsonl @@ -0,0 +1 @@ +{"run": "train8_n8_compactv47_3l_hard_ce_onehot", "checkpoint": "runs/train8_n8_compactv47_3l_hard_ce_onehot/step_0003000.pt", "ckpt_step": 3000, "endpoint_softening": "none", "decode_rule": "flowmap", "steps": 128, "time_schedule": "logit_normal", "model_t_mode": "post", "final_from": "state", "n_gen": 64, "n_refs": 8, "token_acc_mean": 0.814453125, "token_acc_min": 0.0, "token_acc_max": 1.0, "exact_acc": 0.703125, "exact_count": 45, "exact_ref_coverage": 1.0, "exact_ref_count": 8, "exact_ref_hits": [0, 1, 2, 3, 4, 5, 6, 7], "best_ref_idx": [7, 6, 0, 5, 2, 4, 0, 5, 6, 4, 0, 2, 6, 6, 5, 0, 2, 2, 5, 7, 0, 5, 0, 5, 5, 0, 0, 5, 3, 5, 4, 0, 0, 3, 4, 4, 5, 0, 5, 6, 5, 5, 3, 7, 1, 5, 1, 2, 3, 3, 7, 1, 7, 6, 2, 4, 5, 5, 0, 3, 1, 3, 3, 3], "best_token_acc": [0.875, 1.0, 0.125, 1.0, 0.875, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.875, 1.0, 1.0, 1.0, 1.0, 1.0, 0.25, 0.0, 0.0, 1.0, 1.0, 1.0, 0.625, 1.0, 0.125, 1.0, 1.0, 1.0, 1.0, 1.0, 0.875, 0.25, 0.25, 1.0, 1.0, 0.125, 1.0, 0.875, 0.25, 0.375, 1.0, 0.125, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.125, 0.125, 1.0, 1.0, 1.0, 1.0]} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4efc197ba7e12f96281ad308d601b0fbeccccfe3 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.jsonl @@ -0,0 +1 @@ +{"run": "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt", "checkpoint": "runs/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_0004000.pt", "ckpt_step": 4000, "endpoint_softening": "none", "decode_rule": "flowmap", "steps": 128, "time_schedule": "logit_normal", "model_t_mode": "post", "final_from": "state", "n_gen": 64, "n_refs": 8, "token_acc_mean": 0.81640625, "token_acc_min": 0.375, "token_acc_max": 1.0, "exact_acc": 0.328125, "exact_count": 21, "exact_ref_coverage": 0.375, "exact_ref_count": 3, "exact_ref_hits": [1, 2, 5], "best_ref_idx": [2, 2, 2, 4, 2, 2, 2, 2, 6, 2, 5, 2, 2, 1, 5, 6, 6, 4, 5, 2, 2, 2, 2, 2, 2, 2, 6, 2, 2, 2, 0, 2, 7, 6, 2, 2, 0, 4, 2, 2, 2, 2, 1, 2, 4, 2, 6, 2, 2, 2, 6, 2, 4, 2, 4, 2, 2, 6, 4, 2, 2, 6, 2, 2], "best_token_acc": [0.75, 0.75, 1.0, 0.5, 0.375, 1.0, 1.0, 0.75, 0.875, 0.75, 1.0, 0.875, 1.0, 1.0, 0.875, 0.875, 0.625, 0.625, 1.0, 0.875, 0.625, 0.5, 0.375, 1.0, 1.0, 1.0, 0.875, 1.0, 0.625, 1.0, 0.625, 0.875, 0.75, 0.875, 1.0, 0.75, 0.5, 0.75, 0.625, 0.75, 1.0, 1.0, 1.0, 1.0, 0.875, 0.5, 0.875, 0.875, 1.0, 0.875, 0.75, 0.875, 0.375, 0.875, 0.625, 1.0, 0.875, 0.875, 0.75, 1.0, 0.875, 0.5, 0.875, 1.0]} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..b39da66d3f9a85710a544c044f7b6e49cef07005 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +train8_n8_compactv47_3l_linear_soft_kl_allcorrupt 4000 none 0.81640625 0.375 1.0 0.328125 21 0.375 3 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..529b33a8e052576b5e58becb87d497476ca86948 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_4000/decode_token_acc_summary.json @@ -0,0 +1,321 @@ +{ + "num_rows": 1, + "best_by_run": { + "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt::none": { + "run": "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt", + "checkpoint": "runs/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_0004000.pt", + "ckpt_step": 4000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 128, + "time_schedule": "logit_normal", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.81640625, + "token_acc_min": 0.375, + "token_acc_max": 1.0, + "exact_acc": 0.328125, + "exact_count": 21, + "exact_ref_coverage": 0.375, + "exact_ref_count": 3, + "exact_ref_hits": [ + 1, + 2, + 5 + ], + "best_ref_idx": [ + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 6, + 2, + 5, + 2, + 2, + 1, + 5, + 6, + 6, + 4, + 5, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 6, + 2, + 2, + 2, + 0, + 2, + 7, + 6, + 2, + 2, + 0, + 4, + 2, + 2, + 2, + 2, + 1, + 2, + 4, + 2, + 6, + 2, + 2, + 2, + 6, + 2, + 4, + 2, + 4, + 2, + 2, + 6, + 4, + 2, + 2, + 6, + 2, + 2 + ], + "best_token_acc": [ + 0.75, + 0.75, + 1.0, + 0.5, + 0.375, + 1.0, + 1.0, + 0.75, + 0.875, + 0.75, + 1.0, + 0.875, + 1.0, + 1.0, + 0.875, + 0.875, + 0.625, + 0.625, + 1.0, + 0.875, + 0.625, + 0.5, + 0.375, + 1.0, + 1.0, + 1.0, + 0.875, + 1.0, + 0.625, + 1.0, + 0.625, + 0.875, + 0.75, + 0.875, + 1.0, + 0.75, + 0.5, + 0.75, + 0.625, + 0.75, + 1.0, + 1.0, + 1.0, + 1.0, + 0.875, + 0.5, + 0.875, + 0.875, + 1.0, + 0.875, + 0.75, + 0.875, + 0.375, + 0.875, + 0.625, + 1.0, + 0.875, + 0.875, + 0.75, + 1.0, + 0.875, + 0.5, + 0.875, + 1.0 + ] + } + }, + "first_exact_by_run": { + "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt::none": { + "run": "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt", + "checkpoint": "runs/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_0004000.pt", + "ckpt_step": 4000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 128, + "time_schedule": "logit_normal", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.81640625, + "token_acc_min": 0.375, + "token_acc_max": 1.0, + "exact_acc": 0.328125, + "exact_count": 21, + "exact_ref_coverage": 0.375, + "exact_ref_count": 3, + "exact_ref_hits": [ + 1, + 2, + 5 + ], + "best_ref_idx": [ + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 6, + 2, + 5, + 2, + 2, + 1, + 5, + 6, + 6, + 4, + 5, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 6, + 2, + 2, + 2, + 0, + 2, + 7, + 6, + 2, + 2, + 0, + 4, + 2, + 2, + 2, + 2, + 1, + 2, + 4, + 2, + 6, + 2, + 2, + 2, + 6, + 2, + 4, + 2, + 4, + 2, + 2, + 6, + 4, + 2, + 2, + 6, + 2, + 2 + ], + "best_token_acc": [ + 0.75, + 0.75, + 1.0, + 0.5, + 0.375, + 1.0, + 1.0, + 0.75, + 0.875, + 0.75, + 1.0, + 0.875, + 1.0, + 1.0, + 0.875, + 0.875, + 0.625, + 0.625, + 1.0, + 0.875, + 0.625, + 0.5, + 0.375, + 1.0, + 1.0, + 1.0, + 0.875, + 1.0, + 0.625, + 1.0, + 0.625, + 0.875, + 0.75, + 0.875, + 1.0, + 0.75, + 0.5, + 0.75, + 0.625, + 0.75, + 1.0, + 1.0, + 1.0, + 1.0, + 0.875, + 0.5, + 0.875, + 0.875, + 1.0, + 0.875, + 0.75, + 0.875, + 0.375, + 0.875, + 0.625, + 1.0, + 0.875, + 0.875, + 0.75, + 1.0, + 0.875, + 0.5, + 0.875, + 1.0 + ] + } + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..0aa58c1a0ac1d490a1e45197712f26266a8aeb49 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +train8_n8_compactv47_3l_linear_soft_kl_allcorrupt 9000 none 0.943359375 0.5 1.0 0.828125 53 0.875 7 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..9f4cc0fc08f9835c384f00ac8e90841e4384b6d4 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/train8ctx8_compactv47_until_exact_ode64/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_9000/decode_token_acc_summary.json @@ -0,0 +1,329 @@ +{ + "num_rows": 1, + "best_by_run": { + "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt::none": { + "run": "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt", + "checkpoint": "runs/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_0009000.pt", + "ckpt_step": 9000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 128, + "time_schedule": "logit_normal", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.943359375, + "token_acc_min": 0.5, + "token_acc_max": 1.0, + "exact_acc": 0.828125, + "exact_count": 53, + "exact_ref_coverage": 0.875, + "exact_ref_count": 7, + "exact_ref_hits": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "best_ref_idx": [ + 7, + 7, + 2, + 1, + 1, + 2, + 2, + 6, + 1, + 7, + 2, + 2, + 7, + 6, + 3, + 4, + 1, + 3, + 2, + 2, + 1, + 2, + 1, + 1, + 2, + 6, + 2, + 5, + 7, + 5, + 1, + 7, + 5, + 3, + 2, + 2, + 2, + 2, + 1, + 7, + 2, + 6, + 4, + 1, + 5, + 2, + 7, + 2, + 6, + 2, + 3, + 6, + 2, + 2, + 1, + 7, + 2, + 7, + 3, + 2, + 2, + 5, + 3, + 7 + ], + "best_token_acc": [ + 1.0, + 1.0, + 0.75, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.875, + 1.0, + 0.75, + 1.0, + 0.625, + 1.0, + 1.0, + 1.0, + 0.5, + 0.625, + 1.0, + 1.0, + 0.875, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 0.875, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + } + }, + "first_exact_by_run": { + "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt::none": { + "run": "train8_n8_compactv47_3l_linear_soft_kl_allcorrupt", + "checkpoint": "runs/train8_n8_compactv47_3l_linear_soft_kl_allcorrupt/step_0009000.pt", + "ckpt_step": 9000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 128, + "time_schedule": "logit_normal", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.943359375, + "token_acc_min": 0.5, + "token_acc_max": 1.0, + "exact_acc": 0.828125, + "exact_count": 53, + "exact_ref_coverage": 0.875, + "exact_ref_count": 7, + "exact_ref_hits": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "best_ref_idx": [ + 7, + 7, + 2, + 1, + 1, + 2, + 2, + 6, + 1, + 7, + 2, + 2, + 7, + 6, + 3, + 4, + 1, + 3, + 2, + 2, + 1, + 2, + 1, + 1, + 2, + 6, + 2, + 5, + 7, + 5, + 1, + 7, + 5, + 3, + 2, + 2, + 2, + 2, + 1, + 7, + 2, + 6, + 4, + 1, + 5, + 2, + 7, + 2, + 6, + 2, + 3, + 6, + 2, + 2, + 1, + 7, + 2, + 7, + 3, + 2, + 2, + 5, + 3, + 7 + ], + "best_token_acc": [ + 1.0, + 1.0, + 0.75, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.875, + 1.0, + 0.75, + 1.0, + 0.625, + 1.0, + 1.0, + 1.0, + 0.5, + 0.625, + 1.0, + 1.0, + 0.875, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.5, + 0.875, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + } + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ae3ffb4551f6823e38a22756e0c1cba4f3c39b3 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/step_metrics.csv @@ -0,0 +1,129 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.03201184421777725,0.03201184421777725,0.03201184421777725,1.0,1.0,0.00433349609375,0.00439453125,0.314208984375,0,0,0.00346405990421772,0.1692572683095932,1.1830251216888428,2.2612037658691406,0.6043820381164551,0.260882169008255,0.97802734375,0.9362916946411133,0,1 +2,0.03201184421777725,0.03513799235224724,0.003126148134469986,0.003229531390230465,1.0,1.0,0.00439453125,0.00439453125,0.3277587890625,0,0,0.007685210555791855,0.17579390108585358,1.1973004341125488,2.2332663536071777,0.6024404764175415,0.26480868458747864,0.97802734375,0.9368308782577515,0,1 +3,0.03513799235224724,0.039246052503585815,0.004108060151338577,0.0042576659862001,1.0,1.0,0.00439453125,0.00439453125,0.33380126953125,0,0,0.008151650428771973,0.17807799577713013,1.2155945301055908,2.224548101425171,0.5998892784118652,0.26657456159591675,0.978515625,0.9376305341720581,0,1 +4,0.039246052503585815,0.043327752500772476,0.004081699997186661,0.004248434271670681,1.0,1.0,0.00439453125,0.00439453125,0.33880615234375,0,0,0.008779761381447315,0.1804475486278534,1.2332985401153564,2.2158751487731934,0.5973544120788574,0.2685021162033081,0.97900390625,0.9383256435394287,0,1 +5,0.043327752500772476,0.05119910091161728,0.007871348410844803,0.008227842326795581,1.0,1.0,0.00439453125,0.00439453125,0.3487548828125,0,0,0.009420952759683132,0.18464896082878113,1.266237735748291,2.2011547088623047,0.5924663543701172,0.2721332907676697,0.98095703125,0.9394984245300293,0,1 +6,0.05119910091161728,0.05660367012023926,0.005404569208621979,0.0056962100413424374,1.0,1.0,0.00439453125,0.00439453125,0.358642578125,0,0,0.010712738148868084,0.18915140628814697,1.288034200668335,2.1852550506591797,0.5891103744506836,0.27613669633865356,0.982421875,0.940485417842865,0,1 +7,0.05660367012023926,0.05893132835626602,0.002327658236026764,0.002467317459591381,1.0,1.0,0.00439453125,0.00439453125,0.365478515625,0,0,0.011630292050540447,0.1917022168636322,1.297234058380127,2.176490306854248,0.5876649618148804,0.2783900499343872,0.982421875,0.9408717751502991,0,7 +8,0.05893132835626602,0.06070792302489281,0.0017765946686267853,0.0018878480626962804,1.0,1.0,0.00439453125,0.00439453125,0.36785888671875,0,0,0.012037094682455063,0.19312533736228943,1.3041832447052002,2.1718080043792725,0.5865617990493774,0.2796724736690521,0.982421875,0.9411158561706543,0,7 +9,0.06070792302489281,0.06368901580572128,0.002981092780828476,0.003173765492016899,1.0,1.0,0.00439453125,0.00445556640625,0.37261962890625,0,0,0.012352325022220612,0.19526338577270508,1.3157031536102295,2.164823055267334,0.5847107172012329,0.28173577785491943,0.982421875,0.941605269908905,0,7 +10,0.06368901580572128,0.06898529827594757,0.005296282470226288,0.005656542067360114,1.0,1.0,0.00445556640625,0.00445556640625,0.37982177734375,0,0,0.012891389429569244,0.19891786575317383,1.3357548713684082,2.1530511379241943,0.5814223289489746,0.2853333353996277,0.982421875,0.9423731565475464,0,7 +11,0.06898529827594757,0.0741415023803711,0.005156204104423523,0.005538262816768916,1.0,1.0,0.00445556640625,0.00445556640625,0.38751220703125,0,0,0.013869203627109528,0.2036682516336441,1.3547953367233276,2.1385810375213623,0.5782210230827332,0.28976356983184814,0.982421875,0.943069577217102,0,7 +12,0.0741415023803711,0.082164466381073,0.008022964000701904,0.008665432159805033,1.0,1.0,0.00445556640625,0.00445556640625,0.39813232421875,0,0,0.014857456088066101,0.21025997400283813,1.3835272789001465,2.118614912033081,0.5732401609420776,0.2963114082813263,0.98291015625,0.9442087411880493,0,7 +13,0.082164466381073,0.0832255557179451,0.0010610893368721008,0.0011560778570953115,1.0,1.0,0.00445556640625,0.00445556640625,0.40576171875,0,0,0.016461532562971115,0.21449658274650574,1.3872519731521606,2.1074085235595703,0.57258141040802,0.2997604012489319,0.982421875,0.9444000720977783,0,7 +14,0.0832255557179451,0.08396796882152557,0.0007424131035804749,0.0008098099900263624,1.0,1.0,0.00445556640625,0.00445556640625,0.40753173828125,0,0,0.016679814085364342,0.2154521495103836,1.389847755432129,2.104757785797119,0.5721204280853271,0.3006487190723419,0.982421875,0.9445139169692993,0,7 +15,0.08396796882152557,0.0862998440861702,0.002331875264644623,0.0025456263375906924,1.0,1.0,0.00445556640625,0.00445556640625,0.40985107421875,0,0,0.01683419570326805,0.21717286109924316,1.3979440927505493,2.099609851837158,0.5706726908683777,0.3024285137653351,0.98291015625,0.9448051452636719,0,7 +16,0.0862998440861702,0.0877736359834671,0.0014737918972969055,0.0016129929362033483,1.0,1.0,0.00445556640625,0.00445556640625,0.41357421875,0,0,0.017327170819044113,0.21926121413707733,1.4030187129974365,2.093871593475342,0.5697576999664307,0.30437999963760376,0.9833984375,0.9450688362121582,0,7 +17,0.0877736359834671,0.08781633526086807,4.269927740097046e-05,4.680776513952691e-05,1.0,1.0,0.00445556640625,0.00445556640625,0.41552734375,0,0,0.017642302438616753,0.2199103832244873,1.4031652212142944,2.092299461364746,0.5697312355041504,0.30488893389701843,0.9833984375,0.9450702667236328,0,7 +18,0.08781633526086807,0.08900825679302216,0.0011919215321540833,0.0013066683588276614,1.0,1.0,0.00445556640625,0.00445556640625,0.41595458984375,0,0,0.017651459202170372,0.2206203192472458,1.4072449207305908,2.0901505947113037,0.5689913034439087,0.3056497573852539,0.9833984375,0.9451223611831665,0,7 +19,0.08900825679302216,0.08930708467960358,0.0002988278865814209,0.0003280248024306484,1.0,1.0,0.00445556640625,0.00445556640625,0.41748046875,0,0,0.017907893285155296,0.22128432989120483,1.4082646369934082,2.0884909629821777,0.5688056945800781,0.30620133876800537,0.9833984375,0.9451942443847656,0,7 +20,0.08930708467960358,0.09095583856105804,0.0016487538814544678,0.001810438901761314,1.0,1.0,0.00445556640625,0.00445556640625,0.41943359375,0,0,0.017972353845834732,0.22250325977802277,1.4138658046722412,2.084890842437744,0.5677821040153503,0.30749958753585815,0.9833984375,0.9453842639923096,0,7 +21,0.09095583856105804,0.09176389127969742,0.0008080527186393738,0.0008889037000801951,1.0,1.0,0.00445556640625,0.00445556640625,0.4234619140625,0,0,0.018329806625843048,0.22430917620658875,1.4165958166122437,2.079962730407715,0.5672804713249207,0.30923235416412354,0.9833984375,0.9456185102462769,0,7 +22,0.09176389127969742,0.10128811746835709,0.009524226188659668,0.010486509066545732,1.0,1.0,0.00445556640625,0.00445556640625,0.433837890625,0,0,0.018506290391087532,0.23164774477481842,1.4480254650115967,2.057832956314087,0.5613682866096497,0.3173118233680725,0.9833984375,0.9468057155609131,0,7 +23,0.10128811746835709,0.10139931738376617,0.00011119991540908813,0.00012373255274631675,1.0,1.0,0.00445556640625,0.00445556640625,0.44500732421875,0,0,0.020654769614338875,0.23700502514839172,1.4483853578567505,2.04585599899292,0.561299204826355,0.3215682804584503,0.9833984375,0.9468319416046143,0,7 +24,0.10139931738376617,0.10202503949403763,0.0006257221102714539,0.0006963294401799176,1.0,1.0,0.00445556640625,0.00445556640625,0.44573974609375,0,0,0.020680438727140427,0.23733600974082947,1.450406789779663,2.044907331466675,0.5609108209609985,0.32191574573516846,0.9833984375,0.946857213973999,0,7 +25,0.10202503949403763,0.10250301659107208,0.00047797709703445435,0.0005322833242088833,1.0,1.0,0.00445556640625,0.0045166015625,0.446533203125,0,0,0.020825069397687912,0.2382139414548874,1.4519470930099487,2.0424869060516357,0.5606141090393066,0.32280266284942627,0.9833984375,0.9469771385192871,0,7 +26,0.10250301659107208,0.1146286129951477,0.012125596404075623,0.013510459230759128,1.0,1.0,0.0045166015625,0.0045166015625,0.45977783203125,0,0,0.02093592658638954,0.24793416261672974,1.4899280071258545,2.0137641429901123,0.5530880689620972,0.3334627151489258,0.984375,0.9482941627502441,0,7 +27,0.1146286129951477,0.11842145025730133,0.0037928372621536255,0.004283894101191277,1.0,1.0,0.0045166015625,0.0045166015625,0.48089599609375,0,0,0.023891635239124298,0.2605297565460205,1.5014142990112305,1.9847677946090698,0.5507338643074036,0.3444596230983734,0.9853515625,0.9487582445144653,0,7 +28,0.11842145025730133,0.11991230398416519,0.001490853726863861,0.0016911184230820817,1.0,1.0,0.0045166015625,0.0045166015625,0.4879150390625,0,0,0.02487531676888466,0.264594167470932,1.5058801174163818,1.975867748260498,0.5498085021972656,0.34789490699768066,0.9853515625,0.948926568031311,0,7 +29,0.11991230398416519,0.12220681458711624,0.00229451060295105,0.002607138599185423,1.0,1.0,0.0045166015625,0.0045166015625,0.49365234375,0,0,0.025270165875554085,0.26818615198135376,1.5126949548721313,1.9665802717208862,0.5483843088150024,0.3514159917831421,0.9853515625,0.9491755962371826,0,7 +30,0.12220681458711624,0.12263119965791702,0.00042438507080078125,0.00048346817661971834,1.0,1.0,0.0045166015625,0.0045166015625,0.49835205078125,0,0,0.025887049734592438,0.2706134021282196,1.5139483213424683,1.9615654945373535,0.5481208562850952,0.3534007668495178,0.9853515625,0.9492148160934448,0,7 +31,0.12263119965791702,0.12462025135755539,0.0019890516996383667,0.0022670645444228727,1.0,1.0,0.0045166015625,0.0045166015625,0.50128173828125,0,0,0.02600260078907013,0.2728270888328552,1.5197901725769043,1.9554455280303955,0.5468863248825073,0.3557088077068329,0.9853515625,0.9494491815567017,0,7 +32,0.12462025135755539,0.12487028539180756,0.00025003403425216675,0.0002856292193644235,1.0,1.0,0.0045166015625,0.0045166015625,0.50634765625,0,0,0.026548661291599274,0.27488812804222107,1.5205211639404297,1.9512138366699219,0.5467311143875122,0.3573923707008362,0.9853515625,0.9495303630828857,0,7 +33,0.12487028539180756,0.12574611604213715,0.0008758306503295898,0.0010008009506587388,1.0,1.0,0.0045166015625,0.0045166015625,0.50750732421875,0,0,0.026617784053087234,0.27565962076187134,1.5230753421783447,1.949113368988037,0.5461875200271606,0.3581872582435608,0.9853515625,0.9495916962623596,0,7 +34,0.12574611604213715,0.12841172516345978,0.002665609121322632,0.003049010327818124,1.0,1.0,0.0045166015625,0.0045166015625,0.51275634765625,0,0,0.026860607787966728,0.27966034412384033,1.5307831764221191,1.9380571842193604,0.5445330142974854,0.36238110065460205,0.9853515625,0.9499549865722656,0,7 +35,0.12841172516345978,0.12961909174919128,0.0012073665857315063,0.0013852487700777513,1.0,1.0,0.0045166015625,0.0045166015625,0.51812744140625,0,0,0.02761390246450901,0.28305864334106445,1.5342457294464111,1.9306130409240723,0.5437836050987244,0.36532965302467346,0.9853515625,0.9500002861022949,0,7 +36,0.12961909174919128,0.12983545660972595,0.00021636486053466797,0.0002485864045082206,1.0,1.0,0.0045166015625,0.0045166015625,0.5201416015625,0,0,0.027959994971752167,0.2845165729522705,1.5348644256591797,1.9274673461914062,0.5436493158340454,0.36659449338912964,0.9853515625,0.9500344395637512,0,7 +37,0.12983545660972595,0.13509829342365265,0.005262836813926697,0.006048093839151387,1.0,1.0,0.0045166015625,0.0045166015625,0.52508544921875,0,0,0.02802232839167118,0.2897363305091858,1.5497171878814697,1.911962866783142,0.5403828620910645,0.37238216400146484,0.98583984375,0.9506419897079468,0,7 +38,0.13509829342365265,0.13651596009731293,0.0014176666736602783,0.001639107268353085,1.0,1.0,0.0045166015625,0.0045166015625,0.53460693359375,0,0,0.029567882418632507,0.29609835147857666,1.553661823272705,1.8987243175506592,0.5395030975341797,0.37774622440338135,0.98583984375,0.9506542086601257,0,7 +39,0.13651596009731293,0.13766935467720032,0.0011533945798873901,0.0013357451053957817,1.0,1.0,0.0045166015625,0.0045166015625,0.53839111328125,0,0,0.029994793236255646,0.29934707283973694,1.5568513870239258,1.8905818462371826,0.5387871861457825,0.380904883146286,0.98583984375,0.950861930847168,0,7 +40,0.13766935467720032,0.13855227828025818,0.0008829236030578613,0.0010238805820560314,1.0,1.0,0.0045166015625,0.0045166015625,0.54083251953125,0,0,0.030346475541591644,0.30143052339553833,1.559281826019287,1.8856987953186035,0.5382391810417175,0.38280218839645386,0.98583984375,0.9509142637252808,0,7 +41,0.13855227828025818,0.1425127238035202,0.003960445523262024,0.004597429911771815,1.0,1.0,0.0045166015625,0.0045166015625,0.54571533203125,0,0,0.030617572367191315,0.306553453207016,1.5700575113296509,1.8714240789413452,0.5357811450958252,0.38815003633499146,0.986328125,0.9512958526611328,0,7 +42,0.1425127238035202,0.14302626252174377,0.0005135387182235718,0.0005988878581399526,1.0,1.0,0.0045166015625,0.0045166015625,0.55413818359375,0,0,0.031855084002017975,0.31238868832588196,1.5714404582977295,1.8589636087417603,0.535462498664856,0.39316326379776,0.986328125,0.9513727426528931,0,7 +43,0.14302626252174377,0.14478830993175507,0.0017620474100112915,0.0020561276652378154,1.0,1.0,0.0045166015625,0.0045166015625,0.5562744140625,0,0,0.032018452882766724,0.3146154284477234,1.576160192489624,1.8529083728790283,0.5343688726425171,0.3954315185546875,0.986328125,0.9515084028244019,0,7 +44,0.14478830993175507,0.14645308256149292,0.001664772629737854,0.0019466205257379105,1.0,1.0,0.0045166015625,0.0045166015625,0.55987548828125,0,0,0.03258313983678818,0.318278431892395,1.5805842876434326,1.8442647457122803,0.5333355665206909,0.39882177114486694,0.986328125,0.9516315460205078,0,7 +45,0.14645308256149292,0.14677609503269196,0.00032301247119903564,0.00037843551959439506,1.0,1.0,0.0045166015625,0.0045166015625,0.56317138671875,0,0,0.03312477469444275,0.3209914565086365,1.581438660621643,1.8381931781768799,0.5331350564956665,0.4012340307235718,0.986328125,0.951684832572937,0,7 +46,0.14677609503269196,0.14820446074008942,0.001428365707397461,0.0016740807413877954,1.0,1.0,0.0045166015625,0.0045166015625,0.56512451171875,0,0,0.03323115408420563,0.3232453167438507,1.5851993560791016,1.8318294286727905,0.5322485566139221,0.40360015630722046,0.986328125,0.9518752694129944,0,7 +47,0.14820446074008942,0.1486881673336029,0.00048370659351348877,0.0005678670188080124,1.0,1.0,0.0045166015625,0.0045166015625,0.56781005859375,0,0,0.03370506316423416,0.325344979763031,1.5864675045013428,1.8274214267730713,0.5319483280181885,0.40538081526756287,0.986328125,0.9519044160842896,0,7 +48,0.1486881673336029,0.15141655504703522,0.002728387713432312,0.00320492163827527,1.0,1.0,0.0045166015625,0.0045166015625,0.57012939453125,0,0,0.03386656194925308,0.32901573181152344,1.593562364578247,1.8169279098510742,0.5302549600601196,0.40925276279449463,0.986328125,0.9521024227142334,0,7 +49,0.15141655504703522,0.15445169806480408,0.00303514301776886,0.003576717217170188,1.0,1.0,0.0045166015625,0.0045166015625,0.57769775390625,0,0,0.03478957712650299,0.33613571524620056,1.6013429164886475,1.7988758087158203,0.5283710956573486,0.4161199927330017,0.986328125,0.9524163007736206,0,7 +50,0.15445169806480408,0.1563456803560257,0.0018939822912216187,0.00223994570965004,1.0,1.0,0.0045166015625,0.0045166015625,0.58380126953125,0,0,0.035843051970005035,0.3419691026210785,1.6061415672302246,1.7855288982391357,0.5271955728530884,0.42133766412734985,0.986328125,0.9525166749954224,0,7 +51,0.1563456803560257,0.16051089763641357,0.004165217280387878,0.004937113677253046,1.0,1.0,0.0045166015625,0.0045166015625,0.59039306640625,0,0,0.0365118533372879,0.3492061197757721,1.6165316104888916,1.765930414199829,0.5246103405952454,0.42861422896385193,0.98681640625,0.952955424785614,0,7 +52,0.16051089763641357,0.16344644129276276,0.002935543656349182,0.003496821636021411,1.0,1.0,0.0045166015625,0.0045166015625,0.59991455078125,0,0,0.03801881521940231,0.3591073155403137,1.6237210035324097,1.7417631149291992,0.5227883458137512,0.4378133714199066,0.98681640625,0.9531625509262085,0,7 +53,0.16344644129276276,0.16538845002651215,0.0019420087337493896,0.002321439809245998,1.0,1.0,0.0045166015625,0.0045166015625,0.6072998046875,0,0,0.039122581481933594,0.36599087715148926,1.6284170150756836,1.7250499725341797,0.5215829610824585,0.4441831707954407,0.98681640625,0.9533429741859436,0,7 +54,0.16538845002651215,0.16668707132339478,0.0012986212968826294,0.0015559589331394722,1.0,1.0,0.0045166015625,0.0045166015625,0.6104736328125,0,0,0.039868734776973724,0.37013834714889526,1.6315314769744873,1.7152760028839111,0.5207769274711609,0.44793474674224854,0.98681640625,0.9533721208572388,0,7 +55,0.16668707132339478,0.16832348704338074,0.001636415719985962,0.0019637469474819915,1.0,1.0,0.0045166015625,0.0045166015625,0.61370849609375,0,0,0.040374115109443665,0.3744259476661682,1.635424017906189,1.7037699222564697,0.5197612047195435,0.452166348695755,0.98681640625,0.9536129832267761,0,7 +56,0.16832348704338074,0.16997194290161133,0.0016484558582305908,0.001982087785995437,1.0,1.0,0.0045166015625,0.0045166015625,0.61846923828125,0,0,0.04102039709687233,0.3786788284778595,1.6393113136291504,1.6931025981903076,0.5187379717826843,0.45616841316223145,0.9873046875,0.9536855816841125,0,7 +57,0.16997194290161133,0.17036545276641846,0.0003935098648071289,0.0004740922447643039,1.0,1.0,0.0045166015625,0.0045166015625,0.62213134765625,0,0,0.04168111830949783,0.38228726387023926,1.6402339935302734,1.6844844818115234,0.5184937715530396,0.4594787359237671,0.9873046875,0.9537360668182373,0,7 +58,0.17036545276641846,0.17113260924816132,0.0007671564817428589,0.0009246920638743216,1.0,1.0,0.0045166015625,0.0045166015625,0.62298583984375,0,0,0.04184068739414215,0.3831603527069092,1.6420276165008545,1.682382583618164,0.5180175304412842,0.46027618646621704,0.9873046875,0.9537475109100342,0,7 +59,0.17113260924816132,0.17300401628017426,0.0018714070320129395,0.0022577882214855224,1.0,1.0,0.0045166015625,0.0045166015625,0.62530517578125,0,0,0.0421525239944458,0.3866012692451477,1.6463711261749268,1.6728171110153198,0.5168558955192566,0.46370768547058105,0.9873046875,0.9539083242416382,0,7 +60,0.17300401628017426,0.17531432211399078,0.0023103058338165283,0.0027936119150479776,1.0,1.0,0.0045166015625,0.0045166015625,0.63116455078125,0,0,0.042920663952827454,0.3927499055862427,1.6516690254211426,1.65632963180542,0.5154218673706055,0.46972206234931946,0.9873046875,0.9541152715682983,0,7 +61,0.17531432211399078,0.1755736619234085,0.0002593398094177246,0.000314471096530394,1.0,1.0,0.0045166015625,0.0045166015625,0.63519287109375,0,0,0.04388516768813133,0.3971801996231079,1.6522594690322876,1.6461060047149658,0.5152608752250671,0.4736670255661011,0.9873046875,0.954106330871582,0,7 +62,0.1755736619234085,0.1763649433851242,0.0007912814617156982,0.0009597964368311897,1.0,1.0,0.0045166015625,0.0045166015625,0.63677978515625,0,0,0.0439947135746479,0.3989710807800293,1.654055118560791,1.640946388244629,0.5147696733474731,0.475504994392395,0.98779296875,0.9542036056518555,0,7 +63,0.1763649433851242,0.1803499460220337,0.003985002636909485,0.00483831110017071,1.0,1.0,0.0045166015625,0.0045166015625,0.639892578125,0,0,0.044331520795822144,0.4037356972694397,1.662980079650879,1.627038836479187,0.5122960209846497,0.4803984761238098,0.98876953125,0.9544123411178589,0,7 +64,0.1803499460220337,0.1832035481929779,0.002853602170944214,0.0034814884194723957,1.0,1.0,0.0045166015625,0.0045166015625,0.6474609375,0,0,0.04605443775653839,0.41429129242897034,1.669243335723877,1.5997278690338135,0.510524570941925,0.49042969942092896,0.98876953125,0.9546859860420227,0,7 +65,0.1832035481929779,0.1858668327331543,0.0026632845401763916,0.0032606465592306764,1.0,1.0,0.0045166015625,0.0045166015625,0.6534423828125,0,0,0.047323696315288544,0.4226025342941284,1.6749927997589111,1.5777627229690552,0.50887131690979,0.49835652112960815,0.98876953125,0.9548243284225464,0,7 +66,0.1858668327331543,0.18642842769622803,0.0005615949630737305,0.0006898072522448387,1.0,1.0,0.0045166015625,0.0045166015625,0.65728759765625,0,0,0.04853959009051323,0.42827320098876953,1.6761934757232666,1.5642855167388916,0.5085225701332092,0.503359317779541,0.98876953125,0.9548446536064148,0,7 +67,0.18642842769622803,0.18648813664913177,5.970895290374756e-05,7.339114951456708e-05,1.0,1.0,0.0045166015625,0.0045166015625,0.65814208984375,0,0,0.04879964515566826,0.42947304248809814,1.6763209104537964,1.5615193843841553,0.5084854960441589,0.5043904781341553,0.98876953125,0.9548410177230835,0,7 +68,0.18648813664913177,0.18989521265029907,0.0034070760011672974,0.004188108563203365,1.0,1.0,0.0045166015625,0.0045166015625,0.6607666015625,0,0,0.04882737621665001,0.43314504623413086,1.6835136413574219,1.5494141578674316,0.506370484828949,0.5084388256072998,0.98974609375,0.9551528692245483,0,7 +69,0.18989521265029907,0.1964554637670517,0.0065602511167526245,0.008098027834417348,1.0,1.0,0.0045166015625,0.00457763671875,0.6700439453125,0,0,0.050425026565790176,0.44613903760910034,1.696941614151001,1.5130234956741333,0.5022985935211182,0.5210939049720764,0.990234375,0.9555113911628723,0,7 +70,0.1964554637670517,0.19933611154556274,0.0028806477785110474,0.0035849260975821568,1.0,1.0,0.00457763671875,0.00457763671875,0.68328857421875,0,0,0.05361330881714821,0.4628344774246216,1.70265793800354,1.4712210893630981,0.5005103945732117,0.536099374294281,0.9912109375,0.9556930065155029,0,7 +71,0.19933611154556274,0.20213140547275543,0.002795293927192688,0.003491220183026598,1.0,1.0,0.00457763671875,0.00457763671875,0.6893310546875,0,0,0.05507144704461098,0.47145041823387146,1.7081010341644287,1.448396921157837,0.4987751245498657,0.5441044569015503,0.99169921875,0.9558607339859009,0,7 +72,0.20213140547275543,0.2067568451166153,0.004625439643859863,0.005797244904219526,1.0,1.0,0.00457763671875,0.00457763671875,0.6956787109375,0,0,0.056514717638492584,0.4814695119857788,1.7168866395950317,1.4205161333084106,0.4959036707878113,0.5536840558052063,0.9921875,0.9560538530349731,0,7 +73,0.2067568451166153,0.20780491828918457,0.001048073172569275,0.0013212508246898808,1.0,1.0,0.00457763671875,0.00457763671875,0.704833984375,0,0,0.058958157896995544,0.49300503730773926,1.718836784362793,1.392021894454956,0.4952529966831207,0.5638726949691772,0.9921875,0.9561541080474854,0,7 +74,0.20780491828918457,0.20851752161979675,0.0007126033306121826,0.0008995301120441856,1.0,1.0,0.00457763671875,0.00457763671875,0.70654296875,0,0,0.05952569097280502,0.4959944486618042,1.7201541662216187,1.3840439319610596,0.4948105812072754,0.566637396812439,0.9921875,0.9561823010444641,0,7 +75,0.20851752161979675,0.2139681577682495,0.005450636148452759,0.006886616314751121,1.0,1.0,0.00457763671875,0.00457763671875,0.7093505859375,0,0,0.05991407483816147,0.501828134059906,1.7300208806991577,1.365018606185913,0.49142688512802124,0.5728321075439453,0.9921875,0.9565298557281494,0,7 +76,0.2139681577682495,0.2150316834449768,0.001063525676727295,0.0013530312890476124,1.0,1.0,0.00457763671875,0.00457763671875,0.7197265625,0,1,0.06292447447776794,0.5149734020233154,1.7318990230560303,1.3325142860412598,0.49076664447784424,0.5843954086303711,0.9921875,0.9565901160240173,0,7 +77,0.2150316834449768,0.2152930051088333,0.00026132166385650635,0.0003329072758036454,1.0,1.0,0.00457763671875,0.00457763671875,0.72137451171875,0,1,0.06352788954973221,0.5174698233604431,1.7323582172393799,1.3264819383621216,0.490604430437088,0.5865615606307983,0.9921875,0.9565972089767456,0,7 +78,0.2152930051088333,0.2161438763141632,0.000850871205329895,0.001084317090161666,1.0,1.0,0.00457763671875,0.004638671875,0.72186279296875,0,1,0.06367689371109009,0.518944263458252,1.73384690284729,1.3216776847839355,0.4900762438774109,0.5881246328353882,0.9921875,0.9567137956619263,0,7 +79,0.2161438763141632,0.21831606328487396,0.0021721869707107544,0.002771155196819448,1.0,1.0,0.004638671875,0.004638671875,0.72344970703125,0,1,0.06416361033916473,0.5224899053573608,1.7376058101654053,1.311271071434021,0.4887279272079468,0.5915957093238831,0.9921875,0.9567117691040039,0,7 +80,0.21831606328487396,0.22230511903762817,0.003989055752754211,0.00510315687119968,1.0,1.0,0.004638671875,0.00469970703125,0.72857666015625,0,1,0.06541544198989868,0.5305978059768677,1.744349479675293,1.2878589630126953,0.4862518906593323,0.5994398593902588,0.9921875,0.9569172859191895,0,7 +81,0.22230511903762817,0.22340324521064758,0.0010981261730194092,0.0014120270042931415,1.0,1.0,0.00469970703125,0.00469970703125,0.7369384765625,0,1,0.06775297224521637,0.5408793687820435,1.746167778968811,1.2620577812194824,0.4855702519416809,0.6084550619125366,0.9921875,0.956986665725708,0,7 +82,0.22340324521064758,0.22528307139873505,0.0018798261880874634,0.002420594956770526,1.0,1.0,0.00469970703125,0.00469970703125,0.73883056640625,0,1,0.06840918958187103,0.5447872877120972,1.749244213104248,1.2509870529174805,0.4844034016132355,0.6121537089347839,0.9921875,0.9571141004562378,0,7 +83,0.22528307139873505,0.22641173005104065,0.001128658652305603,0.0014568658701486908,1.0,1.0,0.00469970703125,0.00469970703125,0.74273681640625,0,2,0.06954104453325272,0.5502704381942749,1.751068115234375,1.2365033626556396,0.48370280861854553,0.6171045303344727,0.9921875,0.9571553468704224,0,7 +84,0.22641173005104065,0.22839854657649994,0.0019868165254592896,0.0025683126317186506,1.0,1.0,0.00469970703125,0.00469970703125,0.74493408203125,0,2,0.07022920250892639,0.554030179977417,1.7542400360107422,1.2260043621063232,0.48246946930885315,0.6206291913986206,0.99267578125,0.9572408199310303,0,7 +85,0.22839854657649994,0.2309376746416092,0.002539128065109253,0.003290724834489951,1.0,1.0,0.00469970703125,0.00469970703125,0.7509765625,0,2,0.07145397365093231,0.5611433982849121,1.7582167387008667,1.206115961074829,0.4808932840824127,0.6272809505462646,0.9921875,0.9573038816452026,0,7 +86,0.2309376746416092,0.23175528645515442,0.000817611813545227,0.0010631281582597506,1.0,1.0,0.00469970703125,0.00469970703125,0.75433349609375,0,2,0.07304058969020844,0.5675008893013,1.75947904586792,1.1904395818710327,0.4803857207298279,0.6327717304229736,0.9921875,0.9573136568069458,0,7 +87,0.23175528645515442,0.2319042682647705,0.00014898180961608887,0.00019392493952695737,1.0,1.0,0.00469970703125,0.0047607421875,0.7559814453125,0,2,0.07355737686157227,0.5696909427642822,1.7597079277038574,1.1847853660583496,0.48029324412345886,0.6347254514694214,0.9921875,0.9573657512664795,0,7 +88,0.2319042682647705,0.23215225338935852,0.0002479851245880127,0.0003228570532839463,1.0,1.0,0.0047607421875,0.0047607421875,0.7564697265625,0,2,0.07365191727876663,0.5702146291732788,1.7600884437561035,1.1832696199417114,0.48013928532600403,0.6352241635322571,0.99169921875,0.9573619365692139,0,7 +89,0.23215225338935852,0.23904171586036682,0.006889462471008301,0.008972433013470565,1.0,1.0,0.0047607421875,0.00494384765625,0.75775146484375,0,2,0.0738094374537468,0.5752803087234497,1.7703604698181152,1.1646184921264648,0.47586387395858765,0.6409324407577515,0.99169921875,0.9577216506004333,0,7 +90,0.23904171586036682,0.2441117912530899,0.0050700753927230835,0.006662750768861782,1.0,1.0,0.00494384765625,0.005126953125,0.769775390625,0,2,0.07823145389556885,0.5945973992347717,1.7775211334228516,1.1128885746002197,0.4727182686328888,0.658419132232666,0.9912109375,0.9579426646232605,0,7 +91,0.2441117912530899,0.24967209994792938,0.0055603086948394775,0.007355993426669797,1.0,1.0,0.005126953125,0.00531005859375,0.77825927734375,0,3,0.08159907907247543,0.6094597578048706,1.7849961519241333,1.072070598602295,0.46926945447921753,0.6720571517944336,0.9912109375,0.9581098556518555,0,7 +92,0.24967209994792938,0.2549284100532532,0.0052563101053237915,0.007005350733937814,1.0,1.0,0.00531005859375,0.00543212890625,0.78704833984375,0,3,0.08538799732923508,0.6259356737136841,1.7916908264160156,1.026397705078125,0.466010719537735,0.687247633934021,0.99169921875,0.9583158493041992,0,7 +93,0.2549284100532532,0.25504228472709656,0.00011387467384338379,0.00015283722447600353,1.0,1.0,0.00543212890625,0.00543212890625,0.79461669921875,0,3,0.08910559117794037,0.6386497020721436,1.791831374168396,0.994448184967041,0.4659401476383209,0.6982117891311646,0.99169921875,0.9583143591880798,0,7 +94,0.25504228472709656,0.25545161962509155,0.0004093348979949951,0.0005494740031587454,1.0,1.0,0.00543212890625,0.00543212890625,0.794921875,0,3,0.08918794989585876,0.6393782496452332,1.7923357486724854,0.9918025135993958,0.4656864404678345,0.6990106105804443,0.99169921875,0.9583441615104675,0,7 +95,0.25545161962509155,0.2583468556404114,0.0028952360153198242,0.003888580099874722,1.0,1.0,0.00543212890625,0.00555419921875,0.7958984375,0,3,0.08948442339897156,0.641649067401886,1.7958462238311768,0.9841744899749756,0.4638923108577728,0.7013691663742065,0.9912109375,0.9584289193153381,0,7 +96,0.2583468556404114,0.26277974247932434,0.004432886838912964,0.005977035050179319,1.0,1.0,0.00555419921875,0.005615234375,0.80029296875,0,3,0.0915898010134697,0.650467038154602,1.801018476486206,0.9588702917098999,0.46114563941955566,0.7095981240272522,0.9912109375,0.9585678577423096,0,7 +97,0.26277974247932434,0.2800517678260803,0.01727202534675598,0.023428582123940864,1.0,1.0,0.005615234375,0.00677490234375,0.80712890625,0,3,0.09486071020364761,0.6677022576332092,1.8189815282821655,0.9032300710678101,0.45046037435531616,0.7269774675369263,0.990234375,0.9591303467750549,2,7 +98,0.2800517678260803,0.2810349464416504,0.0009831786155700684,0.0013656240429972463,1.0,1.0,0.00677490234375,0.00677490234375,0.827392578125,0,4,0.1080704778432846,0.7049158811569214,1.819882869720459,0.8048285245895386,0.4498531222343445,0.7591891288757324,0.990234375,0.9591482877731323,2,7 +99,0.2810349464416504,0.2861160933971405,0.005081146955490112,0.007067307277790711,1.0,1.0,0.00677490234375,0.007568359375,0.828125,0,4,0.10887160897254944,0.708657443523407,1.8243659734725952,0.7918938994407654,0.4467187225818634,0.76305091381073,0.9912109375,0.9592272639274597,7,7 +100,0.2861160933971405,0.28643983602523804,0.0003237426280975342,0.00045349478410028837,1.0,1.0,0.007568359375,0.007568359375,0.83489990234375,0,4,0.11306952685117722,0.719726026058197,1.8246397972106934,0.7624316215515137,0.4465191960334778,0.7724920511245728,0.99169921875,0.9592886567115784,7,7 +101,0.28643983602523804,0.28895536065101624,0.0025155246257781982,0.0035253153872350563,1.0,1.0,0.007568359375,0.0079345703125,0.83514404296875,0,4,0.11334280669689178,0.7211213111877441,1.8267273902893066,0.7570529580116272,0.44497019052505493,0.7740490436553955,0.99169921875,0.959380567073822,7,7 +102,0.28895536065101624,0.2914341390132904,0.00247877836227417,0.0034861079390791595,1.0,1.0,0.0079345703125,0.00836181640625,0.838623046875,0,4,0.11547401547431946,0.7269860506057739,1.8287098407745361,0.7403926253318787,0.44344502687454224,0.7792701721191406,0.99169921875,0.9594298601150513,7,7 +103,0.2914341390132904,0.2935793399810791,0.0021452009677886963,0.0030275251545444316,1.0,1.0,0.00836181640625,0.00885009765625,0.84210205078125,0,4,0.11759345978498459,0.7326184511184692,1.8303649425506592,0.7240598797798157,0.4421272277832031,0.7843612432479858,0.99169921875,0.9595165252685547,7,7 +104,0.2935793399810791,0.29549849033355713,0.0019191503524780273,0.002716724553931682,1.0,1.0,0.00885009765625,0.00921630859375,0.84375,0,4,0.11944381892681122,0.7376551628112793,1.8317978382110596,0.7092498540878296,0.440949946641922,0.7889465093612671,0.99169921875,0.9595296382904053,7,7 +105,0.29549849033355713,0.297153502702713,0.0016550123691558838,0.0023491963415940374,1.0,1.0,0.00921630859375,0.009521484375,0.8458251953125,0,4,0.1211121454834938,0.7417397499084473,1.832998275756836,0.6979680061340332,0.4399354159832001,0.792483925819397,0.99169921875,0.9595385193824768,7,7 +106,0.297153502702713,0.31276631355285645,0.015612810850143433,0.022213685221710074,1.0,1.0,0.009521484375,0.01556396484375,0.84771728515625,0,4,0.12255978584289551,0.7474368214607239,1.8429160118103027,0.6743334531784058,0.43043673038482666,0.7991794347763062,0.9921875,0.959929883480072,7,7 +107,0.31276631355285645,0.315746545791626,0.0029802322387695312,0.004336563089880994,1.0,1.0,0.01556396484375,0.0167236328125,0.86187744140625,0,4,0.136341392993927,0.7747076749801636,1.844468355178833,0.5982582569122314,0.42864352464675903,0.8226925134658813,0.9921875,0.9599630832672119,7,7 +108,0.315746545791626,0.3174552023410797,0.0017086565494537354,0.0024971105939545647,1.0,1.0,0.0167236328125,0.0172119140625,0.8642578125,0,4,0.13908551633358002,0.7800753116607666,1.8453114032745361,0.5823193192481995,0.4276174306869507,0.8275263905525208,0.9921875,0.9599488377571106,7,7 +109,0.3174552023410797,0.31963151693344116,0.00217631459236145,0.003188530042022228,1.0,1.0,0.0172119140625,0.01788330078125,0.8656005859375,0,4,0.14067116379737854,0.7830775380134583,1.8463385105133057,0.5729349851608276,0.4263123869895935,0.8303346037864685,0.9921875,0.9600028991699219,7,7 +110,0.31963151693344116,0.3240344524383545,0.00440293550491333,0.006471398388515009,1.0,1.0,0.01788330078125,0.0211181640625,0.86712646484375,0,4,0.1426994949579239,0.7867931127548218,1.8482627868652344,0.5610066056251526,0.42368459701538086,0.8338651061058044,0.9921875,0.9600971341133118,7,7 +111,0.3240344524383545,0.32425421476364136,0.00021976232528686523,0.00032510876638549945,1.0,1.0,0.0211181640625,0.02117919921875,0.87164306640625,0,4,0.14682471752166748,0.7936265468597412,1.8483525514602661,0.541979968547821,0.423554003238678,0.8397144079208374,0.9921875,0.9600971341133118,7,7 +112,0.32425421476364136,0.3252061605453491,0.0009519457817077637,0.0014087335837023346,1.0,1.0,0.02117919921875,0.02166748046875,0.87176513671875,0,4,0.14703257381916046,0.7939863204956055,1.848736047744751,0.5404516458511353,0.4229885935783386,0.8401456475257874,0.9921875,0.9601066708564758,7,7 +113,0.3252061605453491,0.3302629888057709,0.005056828260421753,0.00749388622828646,1.0,1.0,0.02166748046875,0.0247802734375,0.87225341796875,0,4,0.14793342351913452,0.7956491112709045,1.8506211042404175,0.5338478088378906,0.41999948024749756,0.8420122861862183,0.9921875,0.9601737856864929,7,7 +114,0.3302629888057709,0.34028369188308716,0.010020703077316284,0.01496214620041388,1.0,1.0,0.0247802734375,0.03399658203125,0.87542724609375,0,4,0.15273016691207886,0.8032314777374268,1.8535850048065186,0.5087140798568726,0.4141748249530792,0.8493921756744385,0.99169921875,0.9603345990180969,7,7 +115,0.34028369188308716,0.3489358127117157,0.00865212082862854,0.013114911246206814,1.0,1.0,0.03399658203125,0.04449462890625,0.88262939453125,0,5,0.16234803199768066,0.8164435029029846,1.855297327041626,0.46871286630630493,0.40927934646606445,0.86139315366745,0.99072265625,0.9603939056396484,7,7 +116,0.3489358127117157,0.3626047372817993,0.013668924570083618,0.02099474189636415,1.0,1.0,0.04449462890625,0.06475830078125,0.88629150390625,0,6,0.17085567116737366,0.8262299299240112,1.8565208911895752,0.43647968769073486,0.40187516808509827,0.8709290027618408,0.99072265625,0.960573136806488,7,7 +117,0.3626047372817993,0.37601587176322937,0.013411134481430054,0.021040530524556567,1.0,1.0,0.06475830078125,0.0927734375,0.89141845703125,0,6,0.1845310479402542,0.839560866355896,1.855970025062561,0.3941679000854492,0.39512187242507935,0.8835119009017944,0.98876953125,0.960701584815979,7,7 +118,0.37601587176322937,0.3784676492214203,0.002451777458190918,0.00392923048398531,1.0,1.0,0.0927734375,0.097900390625,0.8966064453125,0,8,0.198286771774292,0.8515583276748657,1.8556711673736572,0.35889261960983276,0.39395517110824585,0.894140362739563,0.98876953125,0.9607770442962646,7,7 +119,0.3784676492214203,0.3786812722682953,0.000213623046875,0.0003437038258867767,1.0,1.0,0.097900390625,0.09844970703125,0.8975830078125,0,9,0.20084646344184875,0.8537249565124512,1.8556420803070068,0.3526429831981659,0.39385443925857544,0.8960210084915161,0.98876953125,0.9607601165771484,7,7 +120,0.3786812722682953,0.38852235674858093,0.009841084480285645,0.015839027605385785,1.0,1.0,0.09844970703125,0.12322998046875,0.8958740234375,0,9,0.20107021927833557,0.8527764081954956,1.8539159297943115,0.352063924074173,0.38941657543182373,0.8960782289505005,0.98876953125,0.9608347415924072,7,7 +121,0.38852235674858093,0.4223254323005676,0.033803075551986694,0.055280967219414764,1.0,1.0,0.12322998046875,0.23553466796875,0.8946533203125,0,9,0.21136213839054108,0.8554897904396057,1.8421945571899414,0.33201900124549866,0.37789174914360046,0.9017148613929749,0.98779296875,0.9609735012054443,7,7 +122,0.4223254323005676,0.42400431632995605,0.0016788840293884277,0.0029062799771063515,1.0,1.0,0.23553466796875,0.24114990234375,0.9036865234375,0,14,0.2468431442975998,0.8742944002151489,1.841339349746704,0.27367687225341797,0.37749969959259033,0.9190276861190796,0.98828125,0.9609763026237488,7,7 +123,0.42400431632995605,0.4268844723701477,0.0028801560401916504,0.005000308373563321,1.0,1.0,0.24114990234375,0.251708984375,0.90325927734375,0,14,0.24865441024303436,0.8747289180755615,1.8398211002349854,0.2714095115661621,0.37686681747436523,0.9197081923484802,0.98779296875,0.9609608054161072,7,7 +124,0.4268844723701477,0.43885529041290283,0.011970818042755127,0.020887268736656008,1.0,1.0,0.251708984375,0.3050537109375,0.90093994140625,0,14,0.25176340341567993,0.8741418719291687,1.832873821258545,0.2686541676521301,0.37491685152053833,0.9205620884895325,0.98779296875,0.9610271453857422,7,7 +125,0.43885529041290283,0.48685967922210693,0.0480043888092041,0.08554725365677386,1.0,1.0,0.3050537109375,0.52691650390625,0.89593505859375,0,14,0.2646886110305786,0.8707830905914307,1.7954137325286865,0.26093590259552,0.3790895342826843,0.9230147004127502,0.98681640625,0.9609742164611816,7,7 +126,0.48685967922210693,0.611342191696167,0.12448251247406006,0.24258961425083744,1.0,1.0,0.52691650390625,0.8685302734375,0.8804931640625,8,18,0.31644362211227417,0.8623300790786743,1.6332640647888184,0.24796979129314423,0.47638624906539917,0.9282647371292114,0.984375,0.9600920677185059,7,7 +127,0.611342191696167,0.6802758574485779,0.06893366575241089,0.17736338825469328,1.0,1.0,0.8685302734375,0.8836669921875,0.88507080078125,16,18,0.4482501149177551,0.8743554353713989,1.4993236064910889,0.2066950500011444,0.5521073341369629,0.9430481195449829,0.98388671875,0.9588568806648254,7,7 +128,0.6802758574485779,1.0,0.3197241425514221,1.0,1.0,1.0,0.8836669921875,0.86279296875,0.86279296875,5,5,0.5237029790878296,0.8445224761962891,0.31166940927505493,0.31166303157806396,0.9192701578140259,0.919277012348175,0.97216796875,0.9395965933799744,7,7 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..8b621d078c753ca2436d9728425d67b89f062ae1 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_1k/summary.json @@ -0,0 +1,3197 @@ +{ + "checkpoint": "runs/train8_rollin_len256_rollin_p50_s4_i32_20260517_171654/step_0001000.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 128, + "seed": 20314773, + "time_schedule": "logit_normal", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.86279296875, + "final_token_acc_min": 0.0390625, + "final_token_acc_max": 1.0, + "final_exact_count": 5, + "final_best_ref_counts": [ + 1, + 4, + 4, + 2, + 1, + 0, + 2, + 50 + ], + "lock_stats": { + "final_token_acc_mean": 0.86279296875, + "final_exact_count": 5, + "final_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 0, + 7, + 2, + 7, + 7, + 7, + 1, + 7, + 7 + ], + "wrong_count_per_sample": [ + 246, + 3, + 7, + 13, + 1, + 7, + 1, + 226, + 1, + 2, + 100, + 239, + 0, + 16, + 5, + 13, + 0, + 3, + 8, + 2, + 1, + 7, + 28, + 3, + 0, + 90, + 2, + 2, + 53, + 52, + 3, + 0, + 2, + 2, + 6, + 1, + 4, + 5, + 5, + 4, + 1, + 240, + 3, + 4, + 3, + 1, + 145, + 1, + 3, + 242, + 0, + 7, + 1, + 2, + 187, + 223, + 1, + 6, + 1, + 5, + 3, + 3, + 1, + 2 + ], + "wrong_state_lock_step": { + "n": 2248, + "min": 0.0, + "p25": 127.0, + "median": 128.0, + "p75": 128.0, + "max": 128.0, + "mean": 126.75222419928825 + }, + "wrong_endpoint_first_emit_step": { + "n": 2248, + "min": 1.0, + "p25": 126.0, + "median": 128.0, + "p75": 128.0, + "max": 128.0, + "mean": 111.93505338078292 + }, + "num_steps": 128 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1645, + "mass": 0.10040283203125 + }, + { + "id": 3, + "old_text": ",", + "count": 756, + "mass": 0.046142578125 + }, + { + "id": 40, + "old_text": " the", + "count": 665, + "mass": 0.04058837890625 + }, + { + "id": 5, + "old_text": ".", + "count": 402, + "mass": 0.0245361328125 + }, + { + "id": 38, + "old_text": " a", + "count": 366, + "mass": 0.0223388671875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.24609375, + 0.26953125, + 0.2578125, + 0.25, + 0.328125, + 0.2890625, + 0.375, + 0.265625, + 0.37109375, + 0.31640625, + 0.2265625, + 0.25390625, + 0.33984375, + 0.2265625, + 0.421875, + 0.3359375, + 0.3203125, + 0.203125, + 0.35546875, + 0.25, + 0.26953125, + 0.3515625, + 0.24609375, + 0.1875, + 0.3359375, + 0.4765625, + 0.31640625, + 0.28125, + 0.2421875, + 0.3984375, + 0.40625, + 0.32421875, + 0.35546875, + 0.25, + 0.30859375, + 0.28515625, + 0.21875, + 0.2890625, + 0.2734375, + 0.421875, + 0.390625, + 0.23828125, + 0.46875, + 0.5234375, + 0.4765625, + 0.29296875, + 0.35546875, + 0.25390625, + 0.3359375, + 0.25390625, + 0.2421875, + 0.2265625, + 0.28515625, + 0.28125, + 0.2421875, + 0.34375, + 0.30078125, + 0.20703125, + 0.3828125, + 0.328125, + 0.34765625, + 0.5, + 0.30078125, + 0.390625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 0, + 4, + 7, + 4, + 1, + 4, + 6, + 7, + 1, + 1, + 1, + 1, + 6, + 3, + 7, + 1, + 1, + 1, + 7, + 1, + 7, + 1, + 0, + 4, + 7, + 7, + 0, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 7, + 1, + 7, + 1, + 0, + 0, + 1, + 1, + 7, + 7, + 4, + 1, + 1, + 3, + 0, + 7, + 7, + 7, + 3, + 0, + 6, + 1, + 1, + 1, + 1, + 1, + 7, + 1 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1554, + "mass": 0.0948486328125 + }, + { + "id": 3, + "old_text": ",", + "count": 739, + "mass": 0.04510498046875 + }, + { + "id": 40, + "old_text": " the", + "count": 684, + "mass": 0.041748046875 + }, + { + "id": 5, + "old_text": ".", + "count": 382, + "mass": 0.0233154296875 + }, + { + "id": 38, + "old_text": " a", + "count": 361, + "mass": 0.02203369140625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.25, + 0.33203125, + 0.2578125, + 0.25, + 0.375, + 0.28515625, + 0.33203125, + 0.25390625, + 0.375, + 0.3828125, + 0.2265625, + 0.26171875, + 0.33203125, + 0.21484375, + 0.44140625, + 0.36328125, + 0.33984375, + 0.24609375, + 0.3828125, + 0.27734375, + 0.3125, + 0.36328125, + 0.28125, + 0.19140625, + 0.3046875, + 0.484375, + 0.34375, + 0.3125, + 0.2421875, + 0.39453125, + 0.4140625, + 0.38671875, + 0.3515625, + 0.2734375, + 0.31640625, + 0.3046875, + 0.22265625, + 0.28515625, + 0.28125, + 0.41015625, + 0.36328125, + 0.2421875, + 0.49609375, + 0.53515625, + 0.515625, + 0.3359375, + 0.34375, + 0.265625, + 0.37890625, + 0.2578125, + 0.25, + 0.2578125, + 0.3359375, + 0.359375, + 0.25, + 0.34765625, + 0.28515625, + 0.19921875, + 0.3828125, + 0.3515625, + 0.33984375, + 0.53515625, + 0.3203125, + 0.37109375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 0, + 4, + 7, + 4, + 1, + 1, + 6, + 7, + 1, + 1, + 1, + 1, + 6, + 3, + 7, + 7, + 1, + 1, + 7, + 1, + 1, + 1, + 0, + 4, + 7, + 7, + 0, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 7, + 1, + 7, + 1, + 0, + 4, + 1, + 1, + 7, + 7, + 4, + 1, + 1, + 3, + 1, + 7, + 7, + 7, + 3, + 0, + 6, + 7, + 1, + 1, + 1, + 1, + 7, + 1 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1492, + "mass": 0.091064453125 + }, + { + "id": 3, + "old_text": ",", + "count": 721, + "mass": 0.04400634765625 + }, + { + "id": 40, + "old_text": " the", + "count": 691, + "mass": 0.04217529296875 + }, + { + "id": 5, + "old_text": ".", + "count": 365, + "mass": 0.02227783203125 + }, + { + "id": 38, + "old_text": " a", + "count": 347, + "mass": 0.02117919921875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.25390625, + 0.34375, + 0.26171875, + 0.25390625, + 0.390625, + 0.3046875, + 0.32421875, + 0.25390625, + 0.4140625, + 0.38671875, + 0.2265625, + 0.26953125, + 0.32421875, + 0.2265625, + 0.46875, + 0.40234375, + 0.36328125, + 0.25, + 0.40234375, + 0.265625, + 0.34375, + 0.36328125, + 0.28125, + 0.19921875, + 0.3203125, + 0.49609375, + 0.3515625, + 0.3203125, + 0.24609375, + 0.39453125, + 0.4296875, + 0.3984375, + 0.36328125, + 0.32421875, + 0.30859375, + 0.31640625, + 0.2265625, + 0.30078125, + 0.296875, + 0.4140625, + 0.3671875, + 0.26171875, + 0.51953125, + 0.54296875, + 0.55859375, + 0.33203125, + 0.38671875, + 0.2734375, + 0.38671875, + 0.26171875, + 0.2578125, + 0.26953125, + 0.35546875, + 0.38671875, + 0.25390625, + 0.37109375, + 0.30078125, + 0.22265625, + 0.375, + 0.34765625, + 0.328125, + 0.5546875, + 0.34375, + 0.34375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 0, + 4, + 7, + 4, + 1, + 4, + 6, + 7, + 1, + 4, + 1, + 1, + 6, + 3, + 7, + 7, + 1, + 1, + 7, + 1, + 1, + 7, + 0, + 4, + 7, + 7, + 0, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 7, + 6, + 6, + 1, + 0, + 4, + 1, + 1, + 7, + 7, + 4, + 7, + 1, + 3, + 1, + 7, + 7, + 7, + 3, + 0, + 6, + 2, + 1, + 1, + 1, + 1, + 7, + 1 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1377, + "mass": 0.08404541015625 + }, + { + "id": 3, + "old_text": ",", + "count": 707, + "mass": 0.04315185546875 + }, + { + "id": 40, + "old_text": " the", + "count": 684, + "mass": 0.041748046875 + }, + { + "id": 5, + "old_text": ".", + "count": 352, + "mass": 0.021484375 + }, + { + "id": 38, + "old_text": " a", + "count": 316, + "mass": 0.019287109375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.26953125, + 0.40625, + 0.2734375, + 0.25390625, + 0.4921875, + 0.3125, + 0.328125, + 0.2890625, + 0.4921875, + 0.46875, + 0.2265625, + 0.28125, + 0.3125, + 0.21484375, + 0.55859375, + 0.4765625, + 0.43359375, + 0.27734375, + 0.40234375, + 0.26953125, + 0.40234375, + 0.3671875, + 0.2890625, + 0.23828125, + 0.34375, + 0.53515625, + 0.42578125, + 0.33203125, + 0.2578125, + 0.37890625, + 0.4296875, + 0.44140625, + 0.3515625, + 0.35546875, + 0.328125, + 0.33984375, + 0.2578125, + 0.37109375, + 0.35546875, + 0.43359375, + 0.390625, + 0.28125, + 0.57421875, + 0.58203125, + 0.609375, + 0.37109375, + 0.41015625, + 0.30859375, + 0.39453125, + 0.265625, + 0.25390625, + 0.30078125, + 0.4140625, + 0.4296875, + 0.31640625, + 0.421875, + 0.36328125, + 0.26953125, + 0.33984375, + 0.33984375, + 0.328125, + 0.58203125, + 0.390625, + 0.33203125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 0, + 4, + 7, + 4, + 1, + 4, + 6, + 7, + 1, + 4, + 7, + 1, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 1, + 1, + 7, + 0, + 4, + 7, + 7, + 3, + 1, + 1, + 7, + 1, + 7, + 1, + 7, + 7, + 6, + 6, + 1, + 7, + 4, + 1, + 1, + 7, + 7, + 4, + 7, + 1, + 4, + 1, + 7, + 7, + 7, + 3, + 0, + 6, + 2, + 1, + 1, + 1, + 1, + 7, + 1 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1225, + "mass": 0.07476806640625 + }, + { + "id": 3, + "old_text": ",", + "count": 717, + "mass": 0.04376220703125 + }, + { + "id": 40, + "old_text": " the", + "count": 680, + "mass": 0.04150390625 + }, + { + "id": 5, + "old_text": ".", + "count": 367, + "mass": 0.02239990234375 + }, + { + "id": 38, + "old_text": " a", + "count": 313, + "mass": 0.01910400390625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.2890625, + 0.515625, + 0.26171875, + 0.265625, + 0.58984375, + 0.30078125, + 0.37109375, + 0.3046875, + 0.53515625, + 0.56640625, + 0.2890625, + 0.28515625, + 0.40625, + 0.203125, + 0.6796875, + 0.546875, + 0.5234375, + 0.328125, + 0.3984375, + 0.34375, + 0.47265625, + 0.3671875, + 0.3203125, + 0.30078125, + 0.3671875, + 0.5390625, + 0.546875, + 0.4140625, + 0.32421875, + 0.41015625, + 0.421875, + 0.55078125, + 0.33203125, + 0.3984375, + 0.328125, + 0.36328125, + 0.30859375, + 0.41015625, + 0.4296875, + 0.421875, + 0.46875, + 0.33984375, + 0.64453125, + 0.59375, + 0.73046875, + 0.44140625, + 0.46484375, + 0.375, + 0.38671875, + 0.2578125, + 0.2578125, + 0.40234375, + 0.46875, + 0.5234375, + 0.35546875, + 0.5, + 0.453125, + 0.31640625, + 0.34765625, + 0.3203125, + 0.34765625, + 0.6328125, + 0.46875, + 0.33984375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 0, + 4, + 7, + 4, + 7, + 4, + 6, + 7, + 2, + 4, + 7, + 4, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 1, + 7, + 7, + 0, + 4, + 7, + 7, + 3, + 1, + 1, + 7, + 7, + 7, + 1, + 7, + 7, + 6, + 6, + 1, + 7, + 4, + 1, + 1, + 7, + 7, + 4, + 7, + 1, + 2, + 7, + 7, + 7, + 7, + 3, + 0, + 6, + 2, + 1, + 1, + 1, + 1, + 7, + 6 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 1044, + "mass": 0.063720703125 + }, + { + "id": 3, + "old_text": ",", + "count": 794, + "mass": 0.0484619140625 + }, + { + "id": 40, + "old_text": " the", + "count": 667, + "mass": 0.04071044921875 + }, + { + "id": 5, + "old_text": ".", + "count": 411, + "mass": 0.02508544921875 + }, + { + "id": 38, + "old_text": " a", + "count": 329, + "mass": 0.02008056640625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.31640625, + 0.65234375, + 0.33984375, + 0.328125, + 0.80078125, + 0.3125, + 0.42578125, + 0.30859375, + 0.5703125, + 0.71484375, + 0.390625, + 0.30078125, + 0.515625, + 0.2890625, + 0.81640625, + 0.625, + 0.71875, + 0.4296875, + 0.453125, + 0.5390625, + 0.67578125, + 0.46484375, + 0.359375, + 0.4609375, + 0.42578125, + 0.61328125, + 0.76171875, + 0.4921875, + 0.41796875, + 0.44140625, + 0.4921875, + 0.74609375, + 0.5, + 0.5078125, + 0.37890625, + 0.49609375, + 0.36328125, + 0.40625, + 0.5, + 0.40234375, + 0.6328125, + 0.3828125, + 0.7421875, + 0.59765625, + 0.875, + 0.546875, + 0.515625, + 0.5390625, + 0.40625, + 0.3125, + 0.375, + 0.5390625, + 0.57421875, + 0.6953125, + 0.4609375, + 0.578125, + 0.51171875, + 0.40625, + 0.4375, + 0.40625, + 0.41796875, + 0.71484375, + 0.6328125, + 0.3515625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 4, + 6, + 7, + 2, + 4, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 4, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 6, + 6, + 7, + 7, + 4, + 1, + 1, + 7, + 7, + 4, + 7, + 1, + 2, + 7, + 7, + 7, + 7, + 3, + 0, + 6, + 2, + 7, + 7, + 7, + 1, + 7, + 6 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 910, + "mass": 0.0555419921875 + }, + { + "id": 3, + "old_text": ",", + "count": 746, + "mass": 0.0455322265625 + }, + { + "id": 40, + "old_text": " the", + "count": 659, + "mass": 0.04022216796875 + }, + { + "id": 5, + "old_text": ".", + "count": 477, + "mass": 0.02911376953125 + }, + { + "id": 38, + "old_text": " a", + "count": 351, + "mass": 0.02142333984375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.3671875, + 0.875, + 0.55859375, + 0.453125, + 0.96875, + 0.54296875, + 0.57421875, + 0.32421875, + 0.49609375, + 0.90625, + 0.4765625, + 0.296875, + 0.69921875, + 0.390625, + 0.95703125, + 0.69921875, + 0.9453125, + 0.55078125, + 0.59765625, + 0.78125, + 0.89453125, + 0.6953125, + 0.4921875, + 0.67578125, + 0.6875, + 0.62890625, + 0.921875, + 0.65625, + 0.5859375, + 0.51171875, + 0.65625, + 0.91015625, + 0.72265625, + 0.671875, + 0.62890625, + 0.765625, + 0.51171875, + 0.51953125, + 0.5625, + 0.5703125, + 0.91796875, + 0.328125, + 0.8984375, + 0.5234375, + 0.96875, + 0.73828125, + 0.49609375, + 0.7890625, + 0.51171875, + 0.39453125, + 0.5, + 0.7265625, + 0.71875, + 0.86328125, + 0.4921875, + 0.640625, + 0.51953125, + 0.5078125, + 0.66796875, + 0.66015625, + 0.6953125, + 0.859375, + 0.87109375, + 0.41796875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 2, + 3, + 5, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 4, + 6, + 7, + 2, + 6, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 2, + 7, + 7, + 4, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 6, + 7, + 7, + 4, + 1, + 1, + 7, + 7, + 4, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 3, + 0, + 6, + 2, + 7, + 7, + 7, + 1, + 7, + 6 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 34, + "old_text": "\\n", + "count": 793, + "mass": 0.04840087890625 + }, + { + "id": 40, + "old_text": " the", + "count": 706, + "mass": 0.0430908203125 + }, + { + "id": 3, + "old_text": ",", + "count": 641, + "mass": 0.03912353515625 + }, + { + "id": 5, + "old_text": ".", + "count": 518, + "mass": 0.0316162109375 + }, + { + "id": 54, + "old_text": " in", + "count": 449, + "mass": 0.02740478515625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.01171875, + 0.00390625, + 0.015625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.01171875, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625 + ], + "endpoint_best_acc": [ + 0.4375, + 0.95703125, + 0.83203125, + 0.71875, + 1.0, + 0.80078125, + 0.84765625, + 0.3359375, + 0.8359375, + 0.9921875, + 0.44921875, + 0.36328125, + 0.91796875, + 0.5390625, + 1.0, + 0.83203125, + 1.0, + 0.8671875, + 0.78125, + 0.94140625, + 0.9921875, + 0.92578125, + 0.5625, + 0.9296875, + 0.9453125, + 0.58203125, + 0.984375, + 0.90625, + 0.7578125, + 0.625, + 0.8984375, + 0.98828125, + 0.921875, + 0.8828125, + 0.89453125, + 0.96875, + 0.77734375, + 0.875, + 0.55078125, + 0.84765625, + 0.99609375, + 0.44140625, + 0.984375, + 0.62109375, + 0.98828125, + 0.953125, + 0.4609375, + 0.97265625, + 0.77734375, + 0.4921875, + 0.8359375, + 0.890625, + 0.91015625, + 0.98046875, + 0.5078125, + 0.6640625, + 0.6328125, + 0.62109375, + 0.890625, + 0.8125, + 0.9375, + 0.96875, + 0.98828125, + 0.625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 7, + 0, + 6, + 0, + 0, + 4, + 2, + 3, + 5, + 0, + 0, + 7, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 2, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 7, + 5, + 4, + 0, + 6, + 7, + 4, + 6, + 0, + 0, + 0, + 4, + 6 + ], + "endpoint_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 6, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 2, + 7, + 7, + 4, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 6, + 7, + 7, + 7, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 3, + 0, + 7, + 2, + 7, + 7, + 7, + 1, + 7, + 7 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 960, + "mass": 0.05859375 + }, + { + "id": 3, + "old_text": ",", + "count": 674, + "mass": 0.0411376953125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 616, + "mass": 0.03759765625 + }, + { + "id": 5, + "old_text": ".", + "count": 588, + "mass": 0.035888671875 + }, + { + "id": 54, + "old_text": " in", + "count": 539, + "mass": 0.03289794921875 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 960, + "mass": 0.05859375 + }, + { + "id": 3, + "old_text": ",", + "count": 674, + "mass": 0.0411376953125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 616, + "mass": 0.03759765625 + }, + { + "id": 5, + "old_text": ".", + "count": 588, + "mass": 0.035888671875 + }, + { + "id": 54, + "old_text": " in", + "count": 539, + "mass": 0.03289794921875 + } + ], + "state_best_acc": [ + 0.0390625, + 0.98828125, + 0.97265625, + 0.94921875, + 0.99609375, + 0.97265625, + 0.99609375, + 0.1171875, + 0.99609375, + 0.9921875, + 0.609375, + 0.06640625, + 1.0, + 0.9375, + 0.98046875, + 0.94921875, + 1.0, + 0.98828125, + 0.96875, + 0.9921875, + 0.99609375, + 0.97265625, + 0.890625, + 0.98828125, + 1.0, + 0.6484375, + 0.9921875, + 0.9921875, + 0.79296875, + 0.796875, + 0.98828125, + 1.0, + 0.9921875, + 0.9921875, + 0.9765625, + 0.99609375, + 0.984375, + 0.98046875, + 0.98046875, + 0.984375, + 0.99609375, + 0.0625, + 0.98828125, + 0.984375, + 0.98828125, + 0.99609375, + 0.43359375, + 0.99609375, + 0.98828125, + 0.0546875, + 1.0, + 0.97265625, + 0.99609375, + 0.9921875, + 0.26953125, + 0.12890625, + 0.99609375, + 0.9765625, + 0.99609375, + 0.98046875, + 0.98828125, + 0.98828125, + 0.99609375, + 0.9921875 + ], + "endpoint_best_acc": [ + 0.0390625, + 0.98828125, + 0.97265625, + 0.94921875, + 0.99609375, + 0.97265625, + 0.99609375, + 0.1171875, + 0.99609375, + 0.9921875, + 0.609375, + 0.06640625, + 1.0, + 0.9375, + 0.98046875, + 0.94921875, + 1.0, + 0.98828125, + 0.96875, + 0.9921875, + 0.99609375, + 0.97265625, + 0.890625, + 0.98828125, + 1.0, + 0.6484375, + 0.9921875, + 0.9921875, + 0.79296875, + 0.796875, + 0.98828125, + 1.0, + 0.9921875, + 0.9921875, + 0.9765625, + 0.99609375, + 0.984375, + 0.98046875, + 0.98046875, + 0.984375, + 0.99609375, + 0.0625, + 0.98828125, + 0.984375, + 0.98828125, + 0.99609375, + 0.43359375, + 0.99609375, + 0.98828125, + 0.0546875, + 1.0, + 0.97265625, + 0.99609375, + 0.9921875, + 0.26953125, + 0.12890625, + 0.99609375, + 0.9765625, + 0.99609375, + 0.98046875, + 0.98828125, + 0.98828125, + 0.99609375, + 0.9921875 + ], + "state_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 0, + 7, + 2, + 7, + 7, + 7, + 1, + 7, + 7 + ], + "endpoint_best_ref": [ + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 6, + 3, + 7, + 7, + 1, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 1, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 7, + 7, + 7, + 7, + 7, + 0, + 7, + 2, + 7, + 7, + 7, + 1, + 7, + 7 + ] + } + }, + "last_step": { + "step": 128, + "progress": 0.6802758574485779, + "next_progress": 1.0, + "dt": 0.3197241425514221, + "gamma": 1.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.8836669921875, + "state_acc_after_mean": 0.86279296875, + "endpoint_acc_mean": 0.86279296875, + "state_exact_after": 5, + "endpoint_exact": 5, + "state_pgold_best_mean": 0.5237029790878296, + "endpoint_pgold_best_mean": 0.8445224761962891, + "state_entropy_mean": 0.31166940927505493, + "endpoint_entropy_mean": 0.31166303157806396, + "state_maxprob_mean": 0.9192701578140259, + "endpoint_maxprob_mean": 0.919277012348175, + "oracle_clean_acc_mean": 0.97216796875, + "oracle_clean_pgold_mean": 0.9395965933799744, + "state_best_ref_mode": 7, + "endpoint_best_ref_mode": 7, + "state_best_ref_counts": [ + 1, + 4, + 4, + 2, + 1, + 0, + 2, + 50 + ], + "endpoint_best_ref_counts": [ + 1, + 4, + 4, + 2, + 1, + 0, + 2, + 50 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..133ca18e2d115ad37712a8066b53ec25eaa1844a --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/step_metrics.csv @@ -0,0 +1,257 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.028443682938814163,0.028443682938814163,0.028443682938814163,1.0,1.0,0.00433349609375,0.00439453125,0.4359130859375,0,0,0.00346405990421772,0.19608137011528015,1.1626778841018677,2.1258456707000732,0.6065564751625061,0.23985499143600464,0.71435546875,0.5789926648139954,0,7 +2,0.028443682938814163,0.03201184421777725,0.003568161278963089,0.0036726242383521824,1.0,1.0,0.00439453125,0.00439453125,0.47479248046875,0,0,0.0077847568318247795,0.20617815852165222,1.1789276599884033,2.108419418334961,0.6043353080749512,0.2467978149652481,0.70947265625,0.5777095556259155,0,7 +3,0.03201184421777725,0.03439237177371979,0.0023805275559425354,0.0024592527725908505,1.0,1.0,0.00439453125,0.00439453125,0.4833984375,0,0,0.008394313976168633,0.20937661826610565,1.1895167827606201,2.098761558532715,0.6028534770011902,0.2496713250875473,0.7080078125,0.5760114192962646,0,7 +4,0.03439237177371979,0.03513799235224724,0.0007456205785274506,0.0007721775975372909,1.0,1.0,0.00439453125,0.00439453125,0.48687744140625,0,0,0.008823143318295479,0.21063080430030823,1.1927958726882935,2.0959386825561523,0.6023893356323242,0.2506944537162781,0.70751953125,0.5754610300064087,0,7 +5,0.03513799235224724,0.039246056228876114,0.004108063876628876,0.00425766984715666,1.0,1.0,0.00439453125,0.00439453125,0.4947509765625,0,0,0.008961483836174011,0.2145317792892456,1.2105222940444946,2.081573009490967,0.5998321771621704,0.2546845078468323,0.7041015625,0.5734884738922119,0,7 +6,0.039246056228876114,0.043327752500772476,0.004081696271896362,0.004248430410678311,1.0,1.0,0.00439453125,0.00439453125,0.5068359375,0,0,0.009747842326760292,0.21980366110801697,1.227632761001587,2.0658092498779297,0.5972915291786194,0.25969555974006653,0.701171875,0.5713863968849182,0,7 +7,0.043327752500772476,0.047774314880371094,0.0044465623795986176,0.004647947498447955,1.0,1.0,0.00439453125,0.00439453125,0.52044677734375,0,0,0.010563353076577187,0.2258301079273224,1.2457460165023804,2.0482497215270996,0.5945239663124084,0.2655247151851654,0.69921875,0.5690194368362427,0,7 +8,0.047774314880371094,0.05119910091161728,0.0034247860312461853,0.0035966116906581097,1.0,1.0,0.00439453125,0.00439453125,0.532470703125,0,0,0.011491118930280209,0.23108899593353271,1.2593555450439453,2.034146785736084,0.5923924446105957,0.27053335309028625,0.69873046875,0.56727534532547,0,7 +9,0.05119910091161728,0.05557830631732941,0.004379205405712128,0.004615515657626075,1.0,1.0,0.00439453125,0.00439453125,0.54290771484375,0,0,0.012221317738294601,0.23669296503067017,1.2763454914093018,2.018268585205078,0.5896669626235962,0.27610960602760315,0.69482421875,0.5656728148460388,0,7 +10,0.05557830631732941,0.05660367012023926,0.001025363802909851,0.0010857054743327163,1.0,1.0,0.00439453125,0.00439453125,0.54962158203125,0,0,0.013182339258491993,0.23905092477798462,1.280266284942627,2.014411211013794,0.5890287756919861,0.27794349193573,0.69580078125,0.5652097463607788,0,7 +11,0.05660367012023926,0.056839942932128906,0.00023627281188964844,0.000250449153135631,1.0,1.0,0.00439453125,0.00439453125,0.5511474609375,0,0,0.013411978259682655,0.23967872560024261,1.2811665534973145,2.0133283138275146,0.5888817310333252,0.27844634652137756,0.69482421875,0.564872145652771,0,7 +12,0.056839942932128906,0.058259762823581696,0.0014198198914527893,0.0015053859425162416,1.0,1.0,0.00439453125,0.00439453125,0.55438232421875,0,0,0.013465010561048985,0.24177995324134827,1.286547303199768,2.006671905517578,0.5879981517791748,0.28071486949920654,0.69384765625,0.5641341805458069,0,7 +13,0.058259762823581696,0.05893132835626602,0.0006715655326843262,0.0007131112234280803,1.0,1.0,0.00439453125,0.00439453125,0.55523681640625,0,0,0.013786770403385162,0.2426532357931137,1.2890784740447998,2.005094051361084,0.587580144405365,0.28141355514526367,0.69384765625,0.5639244318008423,0,7 +14,0.05893132835626602,0.06026279553771019,0.001331467181444168,0.0014148459316136173,1.0,1.0,0.00439453125,0.00439453125,0.557373046875,0,0,0.013939877972006798,0.24430599808692932,1.2940673828125,2.00036358833313,0.5867515206336975,0.2831140458583832,0.6923828125,0.5634425282478333,0,7 +15,0.06026279553771019,0.06070792302489281,0.0004451274871826172,0.0004736723044154835,1.0,1.0,0.00439453125,0.00439453125,0.5601806640625,0,0,0.014245925471186638,0.24549509584903717,1.2957271337509155,1.997655987739563,0.5864744782447815,0.28419041633605957,0.69189453125,0.5631901025772095,0,7 +16,0.06070792302489281,0.06368901580572128,0.002981092780828476,0.003173765492016899,1.0,1.0,0.00439453125,0.00439453125,0.564208984375,0,0,0.01434905081987381,0.24920514225959778,1.3067244291305542,1.9861505031585693,0.5846192240715027,0.288219690322876,0.69140625,0.5618277192115784,0,7 +17,0.06368901580572128,0.06862573325634003,0.004936717450618744,0.005272518996310744,1.0,1.0,0.00439453125,0.00439453125,0.5728759765625,0,0,0.015053316950798035,0.25680452585220337,1.3245186805725098,1.9647634029388428,0.5815469622612,0.29609450697898865,0.69140625,0.559354305267334,0,7 +18,0.06862573325634003,0.06898529827594757,0.00035956501960754395,0.0003860585722050083,1.0,1.0,0.00439453125,0.00439453125,0.57891845703125,0,0,0.016259735450148582,0.2578936517238617,1.3257997035980225,1.9658451080322266,0.5813232064247131,0.29633697867393494,0.69140625,0.5593225359916687,0,7 +19,0.06898529827594757,0.07068377733230591,0.0016984790563583374,0.0018243310800711255,1.0,1.0,0.00439453125,0.00439453125,0.58056640625,0,0,0.016348369419574738,0.26092660427093506,1.3318103551864624,1.9566993713378906,0.5802662372589111,0.29962682723999023,0.6904296875,0.55828458070755,0,7 +20,0.07068377733230591,0.07100318372249603,0.0003194063901901245,0.00034370043522240136,1.0,1.0,0.00439453125,0.00439453125,0.5826416015625,0,0,0.016772668808698654,0.2614195942878723,1.3329355716705322,1.9566434621810913,0.5800674557685852,0.2998560070991516,0.68994140625,0.5581986904144287,0,7 +21,0.07100318372249603,0.0722171813249588,0.0012139976024627686,0.00130678338309841,1.0,1.0,0.00439453125,0.00439453125,0.58367919921875,0,0,0.01685282588005066,0.2632372975349426,1.3371930122375488,1.9511582851409912,0.5793119668960571,0.3018217384815216,0.6904296875,0.5577648282051086,0,7 +22,0.0722171813249588,0.0737391859292984,0.0015220046043395996,0.001640475091480096,1.0,1.0,0.00439453125,0.00439453125,0.58612060546875,0,0,0.017162306234240532,0.26547104120254517,1.3424915075302124,1.9453034400939941,0.5783647894859314,0.30406659841537476,0.68994140625,0.5572232007980347,0,7 +23,0.0737391859292984,0.0741415023803711,0.00040231645107269287,0.0004343446737259728,1.0,1.0,0.00439453125,0.00439453125,0.58746337890625,0,0,0.01755436882376671,0.2657284736633301,1.343886375427246,1.9457221031188965,0.57811439037323,0.3040771186351776,0.69091796875,0.5573884844779968,0,7 +24,0.0741415023803711,0.08102427423000336,0.006882771849632263,0.007433934955857495,1.0,1.0,0.00439453125,0.00439453125,0.59552001953125,0,0,0.017658112570643425,0.2753494381904602,1.367218255996704,1.9158284664154053,0.57383131980896,0.31482720375061035,0.68505859375,0.554741382598877,0,7 +25,0.08102427423000336,0.0819450169801712,0.0009207427501678467,0.0010019228194481083,1.0,1.0,0.00439453125,0.00439453125,0.6025390625,0,0,0.019511939957737923,0.2779608368873596,1.3702877759933472,1.9140183925628662,0.5732583999633789,0.3163190484046936,0.68505859375,0.5543864369392395,0,7 +26,0.0819450169801712,0.08204835653305054,0.0001033395528793335,0.00011256357711758262,1.0,1.0,0.00439453125,0.00439453125,0.603759765625,0,0,0.019765321165323257,0.27827200293540955,1.370631456375122,1.9138070344924927,0.5731940269470215,0.3164947032928467,0.68505859375,0.5544232726097107,0,7 +27,0.08204835653305054,0.082164466381073,0.00011610984802246094,0.00012648797880456263,1.0,1.0,0.00439453125,0.00439453125,0.604248046875,0,0,0.01979391649365425,0.27833592891693115,1.3710174560546875,1.9137308597564697,0.5731217861175537,0.31654632091522217,0.685546875,0.5543779730796814,0,7 +28,0.082164466381073,0.0832255557179451,0.0010610893368721008,0.0011560778570953115,1.0,1.0,0.00439453125,0.00439453125,0.604736328125,0,0,0.019826054573059082,0.27999189496040344,1.37453293800354,1.9086308479309082,0.5724614858627319,0.31838828325271606,0.6845703125,0.5538721084594727,0,7 +29,0.0832255557179451,0.08396796882152557,0.0007424131035804749,0.0008098099900263624,1.0,1.0,0.00439453125,0.00439453125,0.60552978515625,0,0,0.02012168988585472,0.2809009850025177,1.37698233127594,1.9067180156707764,0.5719995498657227,0.3192135691642761,0.6845703125,0.5535252094268799,0,7 +30,0.08396796882152557,0.08505982905626297,0.0010918602347373962,0.0011919454752392436,1.0,1.0,0.00439453125,0.00439453125,0.6075439453125,0,0,0.02032925933599472,0.2827377915382385,1.3805668354034424,1.901524305343628,0.5713200569152832,0.3211527466773987,0.6845703125,0.5532997846603394,0,7 +31,0.08505982905626297,0.08555637300014496,0.0004965439438819885,0.0005427064628387847,1.0,1.0,0.00439453125,0.00439453125,0.60791015625,0,0,0.02063877135515213,0.28321653604507446,1.3821914196014404,1.9009977579116821,0.5710110664367676,0.3214718699455261,0.6845703125,0.553169846534729,0,7 +32,0.08555637300014496,0.08575501292943954,0.00019863992929458618,0.0002172249042254167,1.0,1.0,0.00439453125,0.00439453125,0.60870361328125,0,0,0.020779810845851898,0.2833656966686249,1.3828405141830444,1.9009696245193481,0.5708874464035034,0.3215429484844208,0.68408203125,0.5531306266784668,0,7 +33,0.08575501292943954,0.0862998440861702,0.0005448311567306519,0.0005959356238598685,1.0,1.0,0.00439453125,0.00439453125,0.609619140625,0,0,0.02083626203238964,0.28479379415512085,1.3846162557601929,1.896673560142517,0.5705483555793762,0.3231247663497925,0.68359375,0.552820086479187,0,7 +34,0.0862998440861702,0.0877736359834671,0.0014737918972969055,0.0016129929362033483,1.0,1.0,0.00439453125,0.00439453125,0.61114501953125,0,0,0.02099195495247841,0.2866365909576416,1.3893938064575195,1.891371726989746,0.5696312785148621,0.3250815272331238,0.6826171875,0.5523748397827148,0,7 +35,0.0877736359834671,0.08781633526086807,4.269927740097046e-05,4.680776513952691e-05,1.0,1.0,0.00439453125,0.00439453125,0.61273193359375,0,0,0.021416075527668,0.2868691086769104,1.3895318508148193,1.8919434547424316,0.5696046948432922,0.32504016160964966,0.6826171875,0.5523748397827148,0,7 +36,0.08781633526086807,0.08900825679302216,0.0011919215321540833,0.0013066683588276614,1.0,1.0,0.00439453125,0.00439453125,0.61395263671875,0,0,0.021428372710943222,0.288821816444397,1.393369436264038,1.8858922719955444,0.5688629150390625,0.32722997665405273,0.6826171875,0.5519789457321167,0,7 +37,0.08900825679302216,0.08930708467960358,0.0002988278865814209,0.0003280248024306484,1.0,1.0,0.00439453125,0.00439453125,0.61566162109375,0,0,0.021775025874376297,0.28950077295303345,1.3943285942077637,1.8849034309387207,0.5686770677566528,0.3277338147163391,0.6826171875,0.5517743825912476,0,7 +38,0.08930708467960358,0.08949191123247147,0.0001848265528678894,0.0002029515655152148,1.0,1.0,0.00439453125,0.00439453125,0.61614990234375,0,0,0.0218622125685215,0.28966420888900757,1.3949211835861206,1.8846406936645508,0.5685620307922363,0.3278617262840271,0.6826171875,0.5517038106918335,0,7 +39,0.08949191123247147,0.09095583856105804,0.0014639273285865784,0.0016078136445423158,1.0,1.0,0.00439453125,0.00439453125,0.61773681640625,0,0,0.02191617339849472,0.2914893627166748,1.3995931148529053,1.8790807723999023,0.5676510334014893,0.32987532019615173,0.68310546875,0.5513402223587036,0,7 +40,0.09095583856105804,0.09176389873027802,0.0008080601692199707,0.000888911896140313,1.0,1.0,0.00439453125,0.00439453125,0.618896484375,0,0,0.022346479818224907,0.2927968204021454,1.4021587371826172,1.8762798309326172,0.5671482086181641,0.3310566544532776,0.6826171875,0.5510382652282715,0,7 +41,0.09176389873027802,0.09239320456981659,0.0006293058395385742,0.0006928879381240177,1.0,1.0,0.00439453125,0.00439453125,0.61962890625,0,0,0.022585131227970123,0.2936619818210602,1.404150128364563,1.8742804527282715,0.5667566061019897,0.33186864852905273,0.6826171875,0.5508373975753784,0,7 +42,0.09239320456981659,0.09330931305885315,0.0009161084890365601,0.0010093671550821157,1.0,1.0,0.00439453125,0.00439453125,0.62115478515625,0,0,0.022771714255213737,0.2952832877635956,1.4070372581481934,1.8698229789733887,0.5661864876747131,0.3335713744163513,0.6826171875,0.5503756999969482,0,7 +43,0.09330931305885315,0.09392187744379044,0.0006125643849372864,0.0006756045846283715,1.0,1.0,0.00439453125,0.00439453125,0.62249755859375,0,0,0.023045074194669724,0.2959509491920471,1.408961296081543,1.8686221837997437,0.5658053159713745,0.3341178894042969,0.68212890625,0.5502341985702515,0,7 +44,0.09392187744379044,0.09758260846138,0.003660731017589569,0.004040193584259586,1.0,1.0,0.00439453125,0.00439453125,0.62506103515625,0,0,0.023228295147418976,0.3006611466407776,1.420323133468628,1.8540130853652954,0.5635273456573486,0.33938512206077576,0.68017578125,0.549553394317627,0,7 +45,0.09758260846138,0.09774607419967651,0.0001634657382965088,0.00018114205225788036,1.0,1.0,0.00439453125,0.00439453125,0.62969970703125,0,0,0.024342291057109833,0.30194708704948425,1.4208269119262695,1.85398530960083,0.5634256601333618,0.33983975648880005,0.68017578125,0.5494641661643982,0,7 +46,0.09774607419967651,0.09777097404003143,2.4899840354919434e-05,2.759737546482007e-05,1.0,1.0,0.00439453125,0.00439453125,0.62945556640625,0,0,0.02439221739768982,0.30196109414100647,1.4209035634994507,1.8540928363800049,0.5634101629257202,0.33981841802597046,0.6796875,0.5494726300239563,0,7 +47,0.09777097404003143,0.09845298528671265,0.0006820112466812134,0.0007559180951372693,1.0,1.0,0.00439453125,0.00439453125,0.630615234375,0,0,0.02439982444047928,0.3030540943145752,1.422999620437622,1.8507027626037598,0.5629857778549194,0.3410569429397583,0.67822265625,0.549108624458313,0,7 +48,0.09845298528671265,0.0985768511891365,0.00012386590242385864,0.00013739261558450266,1.0,1.0,0.00439453125,0.00439453125,0.6309814453125,0,0,0.02460912987589836,0.30323758721351624,1.4233797788619995,1.850853443145752,0.5629086494445801,0.3410850465297699,0.677734375,0.5490931272506714,0,7 +49,0.0985768511891365,0.09932564198970795,0.0007487908005714417,0.0008306762496162087,1.0,1.0,0.00439453125,0.00439453125,0.63165283203125,0,0,0.02464717999100685,0.3041872978210449,1.425672173500061,1.8479596376419067,0.5624427199363708,0.34213414788246155,0.67919921875,0.5491113662719727,0,7 +50,0.09932564198970795,0.10128811746835709,0.0019624754786491394,0.0021788956920950936,1.0,1.0,0.00439453125,0.00439453125,0.63330078125,0,0,0.024877993389964104,0.3076041042804718,1.4316338300704956,1.837918996810913,0.5612214803695679,0.3458455801010132,0.67822265625,0.5481446981430054,0,7 +51,0.10128811746835709,0.10139931738376617,0.00011119991540908813,0.00012373255274631675,1.0,1.0,0.00439453125,0.00439453125,0.63531494140625,0,0,0.02549029141664505,0.30814480781555176,1.4319703578948975,1.8385229110717773,0.5611523389816284,0.3458758592605591,0.67822265625,0.5481459498405457,0,7 +52,0.10139931738376617,0.10202503949403763,0.0006257221102714539,0.0006963294401799176,1.0,1.0,0.00439453125,0.00439453125,0.6358642578125,0,0,0.025525029748678207,0.3087254762649536,1.4338606595993042,1.8367987871170044,0.5607629418373108,0.34651291370391846,0.6787109375,0.547998309135437,0,7 +53,0.10202503949403763,0.10250301659107208,0.00047797709703445435,0.0005322833242088833,1.0,1.0,0.00439453125,0.00439453125,0.6365966796875,0,1,0.025720898061990738,0.3090159296989441,1.4353015422821045,1.8365943431854248,0.5604655146598816,0.34665775299072266,0.6787109375,0.547987163066864,0,7 +54,0.10250301659107208,0.10399078577756882,0.0014877691864967346,0.0016576871165023851,1.0,1.0,0.00439453125,0.00439453125,0.63775634765625,0,1,0.02587064355611801,0.31123852729797363,1.4397621154785156,1.8300130367279053,0.5595397353172302,0.34906166791915894,0.67724609375,0.5475987195968628,0,7 +55,0.10399078577756882,0.10510721802711487,0.001116432249546051,0.0012460053220712758,1.0,1.0,0.00439453125,0.00439453125,0.63946533203125,0,1,0.02634037658572197,0.3128829598426819,1.4430900812149048,1.826546311378479,0.5588449835777283,0.3505089282989502,0.6767578125,0.5472551584243774,0,7 +56,0.10510721802711487,0.10669022798538208,0.001583009958267212,0.0017689381232657841,1.0,1.0,0.00439453125,0.00439453125,0.64166259765625,0,1,0.026694729924201965,0.3151688277721405,1.4477777481079102,1.8203978538513184,0.5578599572181702,0.35281723737716675,0.67724609375,0.5470677614212036,0,7 +57,0.10669022798538208,0.10782083123922348,0.0011306032538414001,0.0012656340378899374,1.0,1.0,0.00439453125,0.00439453125,0.64349365234375,0,1,0.027201056480407715,0.31710588932037354,1.4511051177978516,1.8161518573760986,0.5571564435958862,0.3545488119125366,0.67626953125,0.5465996265411377,0,7 +58,0.10782083123922348,0.10855700820684433,0.0007361769676208496,0.0008251447617224558,1.0,1.0,0.00439453125,0.00439453125,0.644775390625,0,1,0.027565227821469307,0.31879693269729614,1.4532619714736938,1.812150001525879,0.5566983819007874,0.35612669587135315,0.67529296875,0.5463602542877197,0,7 +59,0.10855700820684433,0.10875505208969116,0.00019804388284683228,0.00022216101833776603,1.0,1.0,0.00439453125,0.00439453125,0.6456298828125,0,1,0.027803730219602585,0.3190616965293884,1.4538413286209106,1.8122583627700806,0.5565751791000366,0.3561840057373047,0.67529296875,0.5463627576828003,0,7 +60,0.10875505208969116,0.11053391546010971,0.0017788633704185486,0.001995930944225185,1.0,1.0,0.00439453125,0.00445556640625,0.64630126953125,0,1,0.027867931872606277,0.32120394706726074,1.4590158462524414,1.805492877960205,0.5554683208465576,0.358606219291687,0.6767578125,0.5460772514343262,0,7 +61,0.11053391546010971,0.11157170683145523,0.00103779137134552,0.001166757664382849,1.0,1.0,0.00445556640625,0.00445556640625,0.64874267578125,0,1,0.028448795899748802,0.3231137990951538,1.4620161056518555,1.8015565872192383,0.554822564125061,0.3602374196052551,0.67578125,0.5458387732505798,0,7 +62,0.11157170683145523,0.11455117166042328,0.002979464828968048,0.003353635686614508,1.0,1.0,0.00445556640625,0.00445556640625,0.64996337890625,0,1,0.028789643198251724,0.32706066966056824,1.4705398082733154,1.7900950908660889,0.5529688596725464,0.36445754766464233,0.67626953125,0.5450708866119385,0,7 +63,0.11455117166042328,0.1146286129951477,7.744133472442627e-05,8.745997763602765e-05,1.0,1.0,0.00445556640625,0.00445556640625,0.65472412109375,0,1,0.029782984405755997,0.328200101852417,1.4707601070404053,1.790480375289917,0.5529206395149231,0.36473554372787476,0.67626953125,0.5450630187988281,0,7 +64,0.1146286129951477,0.116496741771698,0.001868128776550293,0.002109994522038981,1.0,1.0,0.00445556640625,0.0045166015625,0.65533447265625,0,1,0.029808877035975456,0.33039331436157227,1.4760463237762451,1.7833688259124756,0.5517584085464478,0.36724191904067993,0.67626953125,0.5448600053787231,0,7 +65,0.116496741771698,0.1167878657579422,0.00029112398624420166,0.0003295109367542068,1.0,1.0,0.0045166015625,0.0045166015625,0.65850830078125,0,1,0.03043803572654724,0.3317716121673584,1.4768667221069336,1.781506061553955,0.5515772104263306,0.36817997694015503,0.6767578125,0.5449049472808838,0,7 +66,0.1167878657579422,0.11697820574045181,0.00019033998250961304,0.00021550879469399076,1.0,1.0,0.0045166015625,0.0045166015625,0.65826416015625,0,1,0.03053646720945835,0.33192476630210876,1.4774024486541748,1.7813336849212646,0.5514588356018066,0.3682733178138733,0.6767578125,0.544923722743988,0,7 +67,0.11697820574045181,0.11842145025730133,0.0014432445168495178,0.001634438160226544,1.0,1.0,0.0045166015625,0.0045166015625,0.6593017578125,0,1,0.03060084953904152,0.3337838053703308,1.481446385383606,1.7755863666534424,0.5505609512329102,0.3703468143939972,0.67724609375,0.544438898563385,0,7 +68,0.11842145025730133,0.11885583400726318,0.00043438374996185303,0.0004927340281687141,1.0,1.0,0.0045166015625,0.0045166015625,0.66162109375,0,1,0.031091997399926186,0.3348093330860138,1.482658863067627,1.774254560470581,0.5502907633781433,0.3710373044013977,0.6767578125,0.5442377328872681,0,7 +69,0.11885583400726318,0.11991230398416519,0.001056469976902008,0.0011989751707789397,1.0,1.0,0.0045166015625,0.0045166015625,0.66168212890625,0,1,0.031240252777934074,0.3360077142715454,1.4855972528457642,1.7707232236862183,0.5496334433555603,0.37230241298675537,0.6767578125,0.5445480346679688,0,7 +70,0.11991230398416519,0.12174417078495026,0.0018318668007850647,0.0020814593921468765,1.0,1.0,0.0045166015625,0.0045166015625,0.6636962890625,0,1,0.031602174043655396,0.3382542133331299,1.4906574487686157,1.7649188041687012,0.5484938025474548,0.3745119571685791,0.6767578125,0.5442771315574646,0,7 +71,0.12174417078495026,0.12210169434547424,0.0003575235605239868,0.0004070836180427373,1.0,1.0,0.0045166015625,0.0045166015625,0.6666259765625,0,1,0.032234035432338715,0.3397693634033203,1.491640567779541,1.762673020362854,0.5482714176177979,0.3755946159362793,0.6767578125,0.5442090034484863,0,7 +72,0.12210169434547424,0.12220681458711624,0.00010512024164199829,0.00011974079567635667,1.0,1.0,0.0045166015625,0.0045166015625,0.6669921875,0,1,0.03235787898302078,0.33994314074516296,1.4919294118881226,1.7626371383666992,0.5482059717178345,0.37566524744033813,0.6767578125,0.544218897819519,0,7 +73,0.12220681458711624,0.12263119965791702,0.00042438507080078125,0.00048346817661971834,1.0,1.0,0.0045166015625,0.0045166015625,0.66668701171875,0,1,0.03239430487155914,0.34047406911849976,1.493093729019165,1.760995864868164,0.5479419231414795,0.37624043226242065,0.67626953125,0.5441573858261108,0,7 +74,0.12263119965791702,0.12462025135755539,0.0019890516996383667,0.0022670645444228727,1.0,1.0,0.0045166015625,0.0045166015625,0.668701171875,0,1,0.032541610300540924,0.3429173231124878,1.498516321182251,1.7536879777908325,0.5467045307159424,0.37887510657310486,0.67578125,0.5437998175621033,0,7 +75,0.12462025135755539,0.12487028539180756,0.00025003403425216675,0.0002856292193644235,1.0,1.0,0.0045166015625,0.0045166015625,0.67144775390625,0,1,0.03323722630739212,0.3441616892814636,1.4991949796676636,1.7525864839553833,0.5465489625930786,0.37959253787994385,0.67578125,0.5437114834785461,0,7 +76,0.12487028539180756,0.12574611604213715,0.0008758306503295898,0.0010008009506587388,1.0,1.0,0.0045166015625,0.0045166015625,0.6717529296875,0,1,0.0333249568939209,0.3453216552734375,1.5015653371810913,1.7490894794464111,0.5460041761398315,0.38083380460739136,0.6767578125,0.5437533855438232,0,7 +77,0.12574611604213715,0.12793110311031342,0.0021849870681762695,0.0024992592063583915,1.0,1.0,0.0045166015625,0.0045166015625,0.67352294921875,0,1,0.033633336424827576,0.34805500507354736,1.5074336528778076,1.7415205240249634,0.5446448922157288,0.38363176584243774,0.67529296875,0.5436225533485413,0,7 +78,0.12793110311031342,0.12841172516345978,0.0004806220531463623,0.0005511285345235277,1.0,1.0,0.0045166015625,0.0045166015625,0.67626953125,0,1,0.034408919513225555,0.3498218059539795,1.5087175369262695,1.73900306224823,0.5443459153175354,0.38488832116127014,0.6748046875,0.5434110164642334,0,7 +79,0.12841172516345978,0.12957453727722168,0.0011628121137619019,0.0013341300558224907,1.0,1.0,0.0045166015625,0.0045166015625,0.67730712890625,0,1,0.03458033502101898,0.3511165976524353,1.5118112564086914,1.7353657484054565,0.543622612953186,0.3862128257751465,0.6748046875,0.5434572696685791,0,7 +80,0.12957453727722168,0.12961909174919128,4.455447196960449e-05,5.118700437626632e-05,1.0,1.0,0.0045166015625,0.0045166015625,0.67864990234375,0,1,0.03499744459986687,0.3520152270793915,1.5119295120239258,1.7341960668563843,0.5435948371887207,0.38682591915130615,0.67431640625,0.5433489680290222,0,7 +81,0.12961909174919128,0.12983545660972595,0.00021636486053466797,0.0002485864045082206,1.0,1.0,0.0045166015625,0.0045166015625,0.67877197265625,0,1,0.035013459622859955,0.3522445559501648,1.5125033855438232,1.7335275411605835,0.5434603095054626,0.38706904649734497,0.67431640625,0.5434582233428955,0,7 +82,0.12983545660972595,0.13190044462680817,0.0020649880170822144,0.0023731006196101175,1.0,1.0,0.0045166015625,0.0045166015625,0.6790771484375,0,1,0.03509131073951721,0.35484838485717773,1.5179455280303955,1.7254512310028076,0.5421756505966187,0.3899533450603485,0.67431640625,0.5428215265274048,0,7 +83,0.13190044462680817,0.1335681676864624,0.0016677230596542358,0.0019211195874156274,1.0,1.0,0.0045166015625,0.0045166015625,0.68206787109375,0,1,0.035841234028339386,0.3575096130371094,1.5223044157028198,1.7197283506393433,0.5411382913589478,0.39228469133377075,0.6748046875,0.5428473949432373,0,7 +84,0.1335681676864624,0.13508175313472748,0.0015135854482650757,0.0017469180976690515,1.0,1.0,0.0045166015625,0.0045166015625,0.6851806640625,0,1,0.03645214065909386,0.3602752685546875,1.5262306928634644,1.7131288051605225,0.5401966571807861,0.3948681950569153,0.67529296875,0.5427345037460327,0,7 +85,0.13508175313472748,0.1350931078195572,1.1354684829711914e-05,1.3128044032906872e-05,1.0,1.0,0.0045166015625,0.0045166015625,0.68768310546875,0,2,0.0370112881064415,0.3611745238304138,1.5262601375579834,1.7124797105789185,0.5401896238327026,0.3953789472579956,0.67529296875,0.5427246689796448,0,7 +86,0.1350931078195572,0.13509829342365265,5.185604095458984e-06,5.995563386465798e-06,1.0,1.0,0.0045166015625,0.0045166015625,0.6873779296875,0,2,0.03701549768447876,0.36118006706237793,1.526273488998413,1.7124680280685425,0.5401864051818848,0.39538395404815674,0.67529296875,0.5427345037460327,0,7 +87,0.13509829342365265,0.13651596009731293,0.0014176666736602783,0.001639107268353085,1.0,1.0,0.0045166015625,0.0045166015625,0.688232421875,0,2,0.037017419934272766,0.3629123866558075,1.5299251079559326,1.706843376159668,0.5393044948577881,0.3973461389541626,0.6748046875,0.5425906181335449,0,7 +88,0.13651596009731293,0.1372142732143402,0.0006983131170272827,0.0008087157199871131,1.0,1.0,0.0045166015625,0.0045166015625,0.690185546875,0,2,0.03754577785730362,0.36429691314697266,1.531715750694275,1.7044408321380615,0.538870096206665,0.3984515964984894,0.6748046875,0.5425977110862732,0,7 +89,0.1372142732143402,0.13748498260974884,0.00027070939540863037,0.0003137620234135864,1.0,1.0,0.0045166015625,0.0045166015625,0.6910400390625,0,2,0.037807054817676544,0.36504849791526794,1.5324084758758545,1.7030229568481445,0.5387016534805298,0.399075448513031,0.6748046875,0.5425899028778076,0,7 +90,0.13748498260974884,0.13766935467720032,0.00018437206745147705,0.0002137609939932867,1.0,1.0,0.0045166015625,0.0045166015625,0.69110107421875,0,2,0.03790855407714844,0.3653990626335144,1.5328798294067383,1.7023093700408936,0.5385869741439819,0.39939042925834656,0.6748046875,0.5424807667732239,0,7 +91,0.13766935467720032,0.1381775587797165,0.0005082041025161743,0.0005893378662495941,1.0,1.0,0.0045166015625,0.0045166015625,0.69171142578125,0,2,0.03797775134444237,0.36621546745300293,1.5341764688491821,1.6998708248138428,0.538270890712738,0.40026092529296875,0.6748046875,0.5424412488937378,0,7 +92,0.1381775587797165,0.13855227828025818,0.000374719500541687,0.0004347989592973571,1.0,1.0,0.0045166015625,0.0045166015625,0.692138671875,0,2,0.03816893696784973,0.3666565418243408,1.5351307392120361,1.6992011070251465,0.5380377769470215,0.400596022605896,0.6748046875,0.5423712730407715,0,7 +93,0.13855227828025818,0.1406761109828949,0.0021238327026367188,0.0024654226241342054,1.0,1.0,0.0045166015625,0.0045166015625,0.69378662109375,0,2,0.038310080766677856,0.36879968643188477,1.5405051708221436,1.692596197128296,0.5367165803909302,0.4029363989830017,0.67529296875,0.5424956679344177,0,7 +94,0.1406761109828949,0.1425127238035202,0.0018366128206253052,0.00213727657766622,1.0,1.0,0.0045166015625,0.0045166015625,0.69598388671875,0,2,0.03911556676030159,0.3722260296344757,1.5451087951660156,1.684363603591919,0.5355740785598755,0.40617406368255615,0.67578125,0.5426782369613647,0,7 +95,0.1425127238035202,0.14302626252174377,0.0005135387182235718,0.0005988878581399526,1.0,1.0,0.0045166015625,0.0045166015625,0.6983642578125,0,2,0.039819635450839996,0.3741209805011749,1.5463894605636597,1.680927038192749,0.5352545976638794,0.4077320694923401,0.67626953125,0.5427914261817932,0,7 +96,0.14302626252174377,0.14478830993175507,0.0017620474100112915,0.0020561276652378154,1.0,1.0,0.0045166015625,0.0045166015625,0.699462890625,0,2,0.04001754894852638,0.3756369948387146,1.5507599115371704,1.676569938659668,0.53415846824646,0.4093230962753296,0.67578125,0.5428038835525513,0,7 +97,0.14478830993175507,0.14523263275623322,0.0004443228244781494,0.0005195471830403685,1.0,1.0,0.0045166015625,0.0045166015625,0.7017822265625,0,2,0.04069950059056282,0.3778761625289917,1.5518563985824585,1.6719627380371094,0.5338820219039917,0.4112914800643921,0.67578125,0.542843759059906,0,7 +98,0.14523263275623322,0.14645308256149292,0.0012204498052597046,0.0014278151600418442,1.0,1.0,0.0045166015625,0.0045166015625,0.70208740234375,0,2,0.040872540324926376,0.3790161609649658,1.5548558235168457,1.6688010692596436,0.5331228375434875,0.4124664068222046,0.673828125,0.5427917838096619,0,7 +99,0.14645308256149292,0.14677609503269196,0.00032301247119903564,0.00037843551959439506,1.0,1.0,0.0045166015625,0.0045166015625,0.7041015625,0,2,0.041349343955516815,0.3803747892379761,1.5556468963623047,1.6661889553070068,0.5329219102859497,0.41363340616226196,0.6748046875,0.5427430868148804,0,7 +100,0.14677609503269196,0.14726299047470093,0.00048689544200897217,0.0005706537746708209,1.0,1.0,0.0045166015625,0.0045166015625,0.70428466796875,0,2,0.041476015001535416,0.3807464838027954,1.556837558746338,1.665478229522705,0.5326189994812012,0.41394561529159546,0.6748046875,0.5426483154296875,0,7 +101,0.14726299047470093,0.14820446074008942,0.0009414702653884888,0.0011040570010120538,1.0,1.0,0.0045166015625,0.0045166015625,0.70513916015625,0,2,0.0416671484708786,0.38238805532455444,1.5591301918029785,1.6606857776641846,0.5320333242416382,0.4156888723373413,0.67431640625,0.5428854823112488,0,7 +102,0.14820446074008942,0.14822296798229218,1.850724220275879e-05,2.1727329329335247e-05,1.0,1.0,0.0045166015625,0.0045166015625,0.70635986328125,0,2,0.04203840345144272,0.3831716775894165,1.5591752529144287,1.659637451171875,0.5320218205451965,0.41625720262527466,0.67431640625,0.5428990125656128,0,7 +103,0.14822296798229218,0.1486881673336029,0.00046519935131073,0.0005461515558933958,1.0,1.0,0.0045166015625,0.0045166015625,0.7064208984375,0,2,0.0420457199215889,0.3834661841392517,1.5603046417236328,1.6587351560592651,0.531732439994812,0.4165797829627991,0.67431640625,0.5427488684654236,0,7 +104,0.1486881673336029,0.1491643339395523,0.00047616660594940186,0.000559332770528983,1.0,1.0,0.0045166015625,0.0045166015625,0.7066650390625,0,2,0.042229700833559036,0.38402900099754333,1.5614583492279053,1.657607913017273,0.5314362049102783,0.41707339882850647,0.67431640625,0.5428371429443359,0,7 +105,0.1491643339395523,0.1498018503189087,0.0006375163793563843,0.0007492826227045962,1.0,1.0,0.0045166015625,0.0045166015625,0.7073974609375,0,2,0.042418308556079865,0.385444700717926,1.5629979372024536,1.653663992881775,0.5310395956039429,0.41853830218315125,0.67431640625,0.5429888367652893,0,7 +106,0.1498018503189087,0.15119275450706482,0.001390904188156128,0.001635976494041836,1.0,1.0,0.0045166015625,0.0045166015625,0.70843505859375,0,2,0.0426718071103096,0.3870202302932739,1.566340446472168,1.6493284702301025,0.5301743745803833,0.42015331983566284,0.67431640625,0.5429369211196899,0,7 +107,0.15119275450706482,0.15141655504703522,0.00022380053997039795,0.0002636647379705487,1.0,1.0,0.0045166015625,0.0045166015625,0.7100830078125,0,2,0.043227218091487885,0.38820937275886536,1.5668764114379883,1.647707223892212,0.530035138130188,0.421032190322876,0.67431640625,0.542924165725708,0,7 +108,0.15141655504703522,0.15319737792015076,0.0017808228731155396,0.0020985830959903383,1.0,1.0,0.0045166015625,0.0045166015625,0.71044921875,0,2,0.04331687092781067,0.3902091979980469,1.571117877960205,1.6414018869400024,0.5289273262023926,0.4232471287250519,0.67431640625,0.5431313514709473,0,7 +109,0.15319737792015076,0.15445169806480408,0.0012543201446533203,0.0014812426319282751,1.0,1.0,0.0045166015625,0.0045166015625,0.7125244140625,0,2,0.04403406009078026,0.39287063479423523,1.574083924293518,1.6354955434799194,0.5281470417976379,0.4256816506385803,0.673828125,0.5431733131408691,0,7 +110,0.15445169806480408,0.15553069114685059,0.0010789930820465088,0.0012760868652648592,1.0,1.0,0.0045166015625,0.0045166015625,0.71417236328125,0,3,0.04454280436038971,0.3950304388999939,1.5766206979751587,1.630353331565857,0.5274757742881775,0.4277185797691345,0.67431640625,0.5432530641555786,0,7 +111,0.15553069114685059,0.1560225933790207,0.000491902232170105,0.0005824986497592718,1.0,1.0,0.0045166015625,0.0045166015625,0.71630859375,0,3,0.044982925057411194,0.39618080854415894,1.5777733325958252,1.6282917261123657,0.5271697640419006,0.42867016792297363,0.673828125,0.5433533191680908,0,7 +112,0.1560225933790207,0.1563456803560257,0.0003230869770050049,0.00038281472284731384,1.0,1.0,0.0045166015625,0.0045166015625,0.71728515625,0,3,0.0451841838657856,0.3972861170768738,1.5785285234451294,1.6254065036773682,0.526968777179718,0.42977404594421387,0.673828125,0.5435354709625244,0,7 +113,0.1563456803560257,0.15770000219345093,0.001354321837425232,0.0016053042174865666,1.0,1.0,0.0045166015625,0.0045166015625,0.71734619140625,0,3,0.04531675577163696,0.3987424373626709,1.5816802978515625,1.6211388111114502,0.5261262655258179,0.43130815029144287,0.67333984375,0.5434819459915161,0,7 +114,0.15770000219345093,0.16051089763641357,0.0028108954429626465,0.0033371666274279446,1.0,1.0,0.0045166015625,0.0045166015625,0.7188720703125,0,3,0.04587452858686447,0.4026586413383484,1.588150978088379,1.6104631423950195,0.5243775844573975,0.435302197933197,0.67333984375,0.5436472296714783,0,7 +115,0.16051089763641357,0.16245301067829132,0.0019421130418777466,0.002313446400209027,1.0,1.0,0.0045166015625,0.0045166015625,0.72210693359375,0,3,0.047051943838596344,0.40715140104293823,1.592569351196289,1.600211501121521,0.5231694579124451,0.4394787549972534,0.67333984375,0.544050395488739,0,7 +116,0.16245301067829132,0.16344644129276276,0.0009934306144714355,0.0011861192591426661,1.0,1.0,0.0045166015625,0.0045166015625,0.72479248046875,0,3,0.047877490520477295,0.41006800532341003,1.5948128700256348,1.593872308731079,0.522551417350769,0.4421437382698059,0.67333984375,0.5441217422485352,0,7 +117,0.16344644129276276,0.16538845002651215,0.0019420087337493896,0.002321439809245998,1.0,1.0,0.0045166015625,0.0045166015625,0.72650146484375,0,3,0.048303280025720596,0.4120931327342987,1.599167823791504,1.58858060836792,0.5213433504104614,0.4441365599632263,0.67529296875,0.5449069738388062,0,7 +118,0.16538845002651215,0.1661546379327774,0.0007661879062652588,0.0009180173774129981,1.0,1.0,0.0045166015625,0.0045166015625,0.728271484375,0,4,0.04914003610610962,0.41512399911880493,1.6008740663528442,1.5818952322006226,0.5208667516708374,0.4469379484653473,0.67578125,0.5447537302970886,0,7 +119,0.1661546379327774,0.16668707132339478,0.0005324333906173706,0.0006385277352834243,1.0,1.0,0.0045166015625,0.0045166015625,0.7291259765625,0,4,0.04947281628847122,0.41625159978866577,1.6020560264587402,1.5795025825500488,0.5205354690551758,0.44795864820480347,0.67626953125,0.5447490215301514,0,7 +120,0.16668707132339478,0.16832348704338074,0.001636415719985962,0.0019637469474819915,1.0,1.0,0.0045166015625,0.0045166015625,0.73040771484375,0,4,0.04970475658774376,0.4183313846588135,1.6056666374206543,1.5733221769332886,0.5195175409317017,0.4501776099205017,0.67724609375,0.545171856880188,0,7 +121,0.16832348704338074,0.16997194290161133,0.0016484558582305908,0.001982087785995437,1.0,1.0,0.0045166015625,0.0045166015625,0.73321533203125,0,4,0.05042141675949097,0.4213868975639343,1.6092734336853027,1.5659761428833008,0.5184921026229858,0.45310622453689575,0.6787109375,0.5454519987106323,0,7 +122,0.16997194290161133,0.17036545276641846,0.0003935098648071289,0.0004740922447643039,1.0,1.0,0.0045166015625,0.0045166015625,0.73486328125,0,5,0.05114908143877983,0.4235087037086487,1.6101300716400146,1.5617729425430298,0.5182473659515381,0.4549737870693207,0.6787109375,0.5456162691116333,0,7 +123,0.17036545276641846,0.17113260924816132,0.0007671564817428589,0.0009246920638743216,1.0,1.0,0.0045166015625,0.0045166015625,0.73565673828125,0,5,0.051323749125003815,0.4245700240135193,1.6117949485778809,1.558910608291626,0.5177701711654663,0.45604661107063293,0.67919921875,0.5456880331039429,0,7 +124,0.17113260924816132,0.17276032269001007,0.0016277134418487549,0.0019637802862196192,1.0,1.0,0.0045166015625,0.0045166015625,0.73687744140625,0,5,0.05166519433259964,0.42690911889076233,1.615303874015808,1.5524203777313232,0.516757607460022,0.4584554433822632,0.6796875,0.5459966063499451,0,7 +125,0.17276032269001007,0.17300401628017426,0.00024369359016418457,0.0002945864383060361,1.0,1.0,0.0045166015625,0.0045166015625,0.73919677734375,0,5,0.05239389091730118,0.4288024306297302,1.6158268451690674,1.549056053161621,0.5166060328483582,0.46005764603614807,0.6787109375,0.5460269451141357,0,7 +126,0.17300401628017426,0.17469841241836548,0.0016943961381912231,0.0020488565501489303,1.0,1.0,0.0045166015625,0.0045166015625,0.7398681640625,0,5,0.05250352993607521,0.4304071366786957,1.6194437742233276,1.543956995010376,0.5155520439147949,0.4618228077888489,0.68017578125,0.5464906692504883,0,7 +127,0.17469841241836548,0.17531432211399078,0.0006159096956253052,0.0007462843945691339,1.0,1.0,0.0045166015625,0.0045166015625,0.74176025390625,0,5,0.05326882004737854,0.43319928646087646,1.6207501888275146,1.5376595258712769,0.5151689052581787,0.4644319415092468,0.68017578125,0.5466862916946411,0,7 +128,0.17531432211399078,0.1755736619234085,0.0002593398094177246,0.000314471096530394,1.0,1.0,0.0045166015625,0.0045166015625,0.74267578125,0,5,0.05354898050427437,0.4339331388473511,1.621299147605896,1.5363545417785645,0.5150075554847717,0.4650548994541168,0.68017578125,0.5466862916946411,0,7 +129,0.1755736619234085,0.17575986683368683,0.0001862049102783203,0.00022585997278148744,1.0,1.0,0.0045166015625,0.0045166015625,0.74261474609375,0,5,0.05366716533899307,0.4342978596687317,1.6216928958892822,1.5356526374816895,0.5148917436599731,0.4653738737106323,0.68017578125,0.5466932654380798,0,7 +130,0.17575986683368683,0.1763649433851242,0.0006050765514373779,0.0007341022683680546,1.0,1.0,0.0045166015625,0.0045166015625,0.7431640625,0,5,0.053752101957798004,0.4354243874549866,1.6229689121246338,1.5321085453033447,0.5145153403282166,0.4666138291358948,0.6796875,0.5470141172409058,0,7 +131,0.1763649433851242,0.17755889892578125,0.0011939555406570435,0.0014496171952225756,1.0,1.0,0.0045166015625,0.0045166015625,0.74371337890625,0,5,0.054028868675231934,0.43701523542404175,1.625474452972412,1.527779459953308,0.5137726068496704,0.4682374894618988,0.681640625,0.5471681356430054,0,7 +132,0.17755889892578125,0.1803499460220337,0.0027910470962524414,0.003393613345207284,1.0,1.0,0.0045166015625,0.00457763671875,0.74530029296875,0,5,0.05457712709903717,0.4404821991920471,1.6312682628631592,1.518175482749939,0.5120365023612976,0.4718118906021118,0.6826171875,0.5477604866027832,0,7 +133,0.1803499460220337,0.18165194988250732,0.0013020038604736328,0.0015884874943333232,1.0,1.0,0.00457763671875,0.00457763671875,0.74859619140625,0,5,0.05586959794163704,0.4450572431087494,1.6339408159255981,1.507826566696167,0.5112266540527344,0.4761050343513489,0.68408203125,0.5483146905899048,0,7 +134,0.18165194988250732,0.18196961283683777,0.00031766295433044434,0.0003881758553525441,1.0,1.0,0.00457763671875,0.00457763671875,0.74993896484375,0,5,0.056479454040527344,0.447204053401947,1.6345900297164917,1.5030031204223633,0.5110290050506592,0.47811999917030334,0.68408203125,0.5484585762023926,0,7 +135,0.18196961283683777,0.1832035481929779,0.0012339353561401367,0.0015084223954311604,1.0,1.0,0.00457763671875,0.00457763671875,0.75048828125,0,5,0.05662904679775238,0.4485156536102295,1.637100100517273,1.4991445541381836,0.5102615356445312,0.4795074462890625,0.68310546875,0.5488337278366089,0,7 +136,0.1832035481929779,0.1858668327331543,0.0026632845401763916,0.0032606465592306764,1.0,1.0,0.00457763671875,0.00457763671875,0.7518310546875,0,5,0.057211894541978836,0.4521918296813965,1.6424577236175537,1.4888243675231934,0.5086050629615784,0.48331576585769653,0.68310546875,0.5496973991394043,0,7 +137,0.1858668327331543,0.18642842769622803,0.0005615949630737305,0.0006898072522448387,1.0,1.0,0.00457763671875,0.00457763671875,0.75537109375,0,5,0.058480873703956604,0.4563029408454895,1.6435770988464355,1.4801191091537476,0.5082557797431946,0.48706114292144775,0.68310546875,0.549907922744751,0,7 +138,0.18642842769622803,0.18648813664913177,5.970895290374756e-05,7.339114951456708e-05,1.0,1.0,0.00457763671875,0.00457763671875,0.75616455078125,0,5,0.058751873672008514,0.4571536183357239,1.6436958312988281,1.4782495498657227,0.5082186460494995,0.4878470003604889,0.68310546875,0.5500653982162476,0,7 +139,0.18648813664913177,0.18681979179382324,0.0003316551446914673,0.00040768323073418316,1.0,1.0,0.00457763671875,0.00457763671875,0.75634765625,0,5,0.058780789375305176,0.45736923813819885,1.6443551778793335,1.4776685237884521,0.5080122947692871,0.4880601167678833,0.68310546875,0.5501878261566162,0,7 +140,0.18681979179382324,0.1880108118057251,0.0011910200119018555,0.0014646446136818419,1.0,1.0,0.00457763671875,0.00457763671875,0.7569580078125,0,5,0.05894148349761963,0.4585908055305481,1.646712303161621,1.4739725589752197,0.5072715282440186,0.48936957120895386,0.68310546875,0.5506290197372437,0,7 +141,0.1880108118057251,0.18976594507694244,0.0017551332712173462,0.0021615229571226957,1.0,1.0,0.00457763671875,0.00457763671875,0.75811767578125,0,5,0.059521570801734924,0.4616999626159668,1.6501556634902954,1.4655929803848267,0.5061798691749573,0.49254176020622253,0.68408203125,0.5512456297874451,0,7 +142,0.18976594507694244,0.18989521265029907,0.00012926757335662842,0.0001595434955753669,1.0,1.0,0.00457763671875,0.00457763671875,0.760498046875,0,6,0.06038279086351395,0.4641861319541931,1.6504080295562744,1.460669994354248,0.5060994625091553,0.49475735425949097,0.68359375,0.5512363314628601,0,7 +143,0.18989521265029907,0.19315209984779358,0.003256887197494507,0.004020328293762563,1.0,1.0,0.00457763671875,0.00457763671875,0.7601318359375,0,7,0.0604466013610363,0.46678873896598816,1.6566991806030273,1.4516640901565552,0.5040737390518188,0.4977402687072754,0.6845703125,0.5526496171951294,0,7 +144,0.19315209984779358,0.194150909781456,0.0009988099336624146,0.0012379160105318436,1.0,1.0,0.00457763671875,0.00457763671875,0.7640380859375,0,8,0.062063731253147125,0.4720690846443176,1.658604621887207,1.4402692317962646,0.5034525394439697,0.5026131868362427,0.6845703125,0.5527901649475098,0,7 +145,0.194150909781456,0.1964554637670517,0.002304553985595703,0.0028597835668843588,1.0,1.0,0.00457763671875,0.00457763671875,0.76495361328125,0,8,0.06256598234176636,0.475789338350296,1.662954330444336,1.4292211532592773,0.5020190477371216,0.5065852403640747,0.68603515625,0.5538846850395203,0,7 +146,0.1964554637670517,0.19694796204566956,0.0004924982786178589,0.0006129072582917584,1.0,1.0,0.00457763671875,0.00457763671875,0.7667236328125,0,8,0.06373567879199982,0.4793283939361572,1.6638762950897217,1.4218623638153076,0.5017126798629761,0.509777843952179,0.685546875,0.5541114807128906,0,7 +147,0.19694796204566956,0.1974765509366989,0.0005285888910293579,0.0006582249543577134,1.0,1.0,0.00457763671875,0.004638671875,0.76739501953125,0,8,0.06398781388998032,0.4804494380950928,1.6648626327514648,1.4189648628234863,0.5013839602470398,0.5108962655067444,0.6865234375,0.5543599128723145,0,7 +148,0.1974765509366989,0.19825488328933716,0.0007783323526382446,0.0009698562123595365,1.0,1.0,0.004638671875,0.004638671875,0.76763916015625,0,8,0.0642591267824173,0.4819711744785309,1.6663089990615845,1.41484534740448,0.5008999109268188,0.5124564170837402,0.68701171875,0.5545751452445984,0,7 +149,0.19825488328933716,0.19933611154556274,0.001081228256225586,0.001348593503957423,1.0,1.0,0.004638671875,0.004638671875,0.76849365234375,0,8,0.06466108560562134,0.48414525389671326,1.6683059930801392,1.4089159965515137,0.5002274513244629,0.5146687030792236,0.6875,0.5550071001052856,0,7 +150,0.19933611154556274,0.19995176792144775,0.0006156563758850098,0.0007689323632085406,1.0,1.0,0.004638671875,0.004638671875,0.7696533203125,0,8,0.06522248685359955,0.4860641658306122,1.6694374084472656,1.4046298265457153,0.4998445510864258,0.5164496898651123,0.6875,0.5550845265388489,0,7 +151,0.19995176792144775,0.20176170766353607,0.0018099397420883179,0.0022622882840276186,1.0,1.0,0.004638671875,0.004638671875,0.77001953125,0,8,0.06554355472326279,0.48854589462280273,1.6727374792099,1.3972653150558472,0.49871885776519775,0.5190690755844116,0.6875,0.5561100244522095,0,7 +152,0.20176170766353607,0.20213140547275543,0.00036969780921936035,0.0004631421628963018,1.0,1.0,0.004638671875,0.004638671875,0.7711181640625,0,8,0.06649266183376312,0.4919062852859497,1.673406720161438,1.3896145820617676,0.4984889626502991,0.5221993327140808,0.6875,0.5563693046569824,0,7 +153,0.20213140547275543,0.2067568451166153,0.004625439643859863,0.005797244904219526,1.0,1.0,0.004638671875,0.004638671875,0.77154541015625,0,9,0.06668801605701447,0.4955251216888428,1.681650996208191,1.3776443004608154,0.4956122040748596,0.5262002944946289,0.6904296875,0.5583181381225586,0,7 +154,0.2067568451166153,0.20710104703903198,0.000344201922416687,0.0004339172929481987,1.0,1.0,0.004638671875,0.004638671875,0.77777099609375,0,10,0.0691506490111351,0.5035171508789062,1.6822540760040283,1.360102653503418,0.4953981041908264,0.5335209369659424,0.69140625,0.5587010979652405,0,7 +155,0.20710104703903198,0.20780491828918457,0.0007038712501525879,0.0008877187282491434,1.0,1.0,0.004638671875,0.004638671875,0.77825927734375,0,10,0.06933721899986267,0.5046323537826538,1.6834832429885864,1.3569395542144775,0.49496033787727356,0.5346546769142151,0.69189453125,0.5592238306999207,0,7 +156,0.20780491828918457,0.20851752161979675,0.0007126033306121826,0.0008995301120441856,1.0,1.0,0.004638671875,0.004638671875,0.77825927734375,0,10,0.06971965730190277,0.5061713457107544,1.6847219467163086,1.3532838821411133,0.49451714754104614,0.5361089706420898,0.69189453125,0.5592238903045654,0,7 +157,0.20851752161979675,0.20887036621570587,0.00035284459590911865,0.0004458021567719699,1.0,1.0,0.004638671875,0.004638671875,0.77923583984375,0,10,0.07010813802480698,0.5076677799224854,1.685333013534546,1.3497077226638794,0.49429768323898315,0.5375216007232666,0.6923828125,0.5594792366027832,0,7 +158,0.20887036621570587,0.20971471071243286,0.0008443444967269897,0.001067264403544268,1.0,1.0,0.004638671875,0.004638671875,0.77947998046875,0,10,0.0703011080622673,0.5090035200119019,1.6867895126342773,1.3458077907562256,0.4937725067138672,0.5388978719711304,0.693359375,0.5601744651794434,0,7 +159,0.20971471071243286,0.20988404750823975,0.00016933679580688477,0.00021427299495798522,1.0,1.0,0.004638671875,0.004638671875,0.7811279296875,0,10,0.07076430320739746,0.5102598667144775,1.6870806217193604,1.3433332443237305,0.4936671853065491,0.5399845242500305,0.6923828125,0.5601311922073364,0,7 +160,0.20988404750823975,0.2139681577682495,0.004084110260009766,0.005169001141072844,1.0,1.0,0.004638671875,0.00469970703125,0.7806396484375,0,10,0.0708576887845993,0.513569712638855,1.694003939628601,1.3320086002349854,0.4911271333694458,0.5436988472938538,0.6953125,0.5625039339065552,0,7 +161,0.2139681577682495,0.2150316834449768,0.001063525676727295,0.0013530312890476124,1.0,1.0,0.00469970703125,0.00469970703125,0.78533935546875,0,10,0.07312490046024323,0.5215098857879639,1.6957736015319824,1.3136177062988281,0.4904657006263733,0.5510752201080322,0.69580078125,0.5632021427154541,0,7 +162,0.2150316834449768,0.2152930051088333,0.00026132166385650635,0.0003329072758036454,1.0,1.0,0.00469970703125,0.00469970703125,0.78643798828125,0,10,0.07372549176216125,0.5233820676803589,1.6962065696716309,1.3095612525939941,0.4903031885623932,0.5527647733688354,0.69580078125,0.5631874799728394,0,7 +163,0.2152930051088333,0.2161438763141632,0.000850871205329895,0.001084317090161666,1.0,1.0,0.00469970703125,0.00469970703125,0.78662109375,0,10,0.07387366145849228,0.5245327353477478,1.6976102590560913,1.3061411380767822,0.48977404832839966,0.5539635419845581,0.6962890625,0.5637901425361633,0,7 +164,0.2161438763141632,0.21831606328487396,0.0021721869707107544,0.002771155196819448,1.0,1.0,0.00469970703125,0.00469970703125,0.7874755859375,0,10,0.07435747236013412,0.527562141418457,1.7011563777923584,1.2973670959472656,0.4884231388568878,0.5570827126502991,0.69677734375,0.5649932026863098,0,7 +165,0.21831606328487396,0.21857765316963196,0.0002615898847579956,0.00033464917528851364,1.0,1.0,0.00469970703125,0.00469970703125,0.78924560546875,0,10,0.07560082525014877,0.531791090965271,1.7015793323516846,1.2876918315887451,0.488260418176651,0.5609840750694275,0.69677734375,0.5649372935295105,0,7 +166,0.21857765316963196,0.22230511903762817,0.003727465867996216,0.004770104007283244,1.0,1.0,0.00469970703125,0.0047607421875,0.789794921875,0,10,0.07575191557407379,0.5346899032592773,1.7075252532958984,1.2777540683746338,0.48594236373901367,0.5642353296279907,0.69970703125,0.567571759223938,0,7 +167,0.22230511903762817,0.22340324521064758,0.0010981261730194092,0.0014120270042931415,1.0,1.0,0.0047607421875,0.0047607421875,0.7943115234375,0,11,0.07791684567928314,0.5421916246414185,1.709244728088379,1.2600841522216797,0.485259473323822,0.57121741771698,0.70068359375,0.568199634552002,0,7 +168,0.22340324521064758,0.22380083799362183,0.00039759278297424316,0.0005119681231247072,1.0,1.0,0.0047607421875,0.0047607421875,0.79608154296875,0,11,0.07856465876102448,0.5447758436203003,1.7098634243011475,1.2535820007324219,0.4850122332572937,0.5737017393112183,0.701171875,0.5683595538139343,0,7 +169,0.22380083799362183,0.22528307139873505,0.0014822334051132202,0.0019096044902726145,1.0,1.0,0.0047607421875,0.0047607421875,0.79632568359375,0,11,0.07880043983459473,0.5463757514953613,1.7121543884277344,1.2486897706985474,0.48409053683280945,0.57538902759552,0.701171875,0.5694595575332642,0,7 +170,0.22528307139873505,0.22615455090999603,0.0008714795112609863,0.0011249005657258894,1.0,1.0,0.0047607421875,0.0047607421875,0.79827880859375,0,11,0.07968223094940186,0.5496721267700195,1.713489055633545,1.240600347518921,0.483548641204834,0.5785154104232788,0.701171875,0.5698646306991577,0,7 +171,0.22615455090999603,0.22641173005104065,0.0002571791410446167,0.0003323391529239385,1.0,1.0,0.0047607421875,0.0047607421875,0.7998046875,0,11,0.08020414412021637,0.5514231324195862,1.713881254196167,1.2365436553955078,0.483388751745224,0.5801330208778381,0.70166015625,0.5698822736740112,0,7 +172,0.22641173005104065,0.22839854657649994,0.0019868165254592896,0.0025683126317186506,1.0,1.0,0.0047607421875,0.0047607421875,0.8001708984375,0,11,0.08035871386528015,0.5531654357910156,1.716886043548584,1.2308061122894287,0.48215341567993164,0.5820531845092773,0.703125,0.5710964798927307,0,7 +173,0.22839854657649994,0.22864225506782532,0.00024370849132537842,0.0003158476312402913,1.0,1.0,0.0047607421875,0.0047607421875,0.802978515625,0,11,0.08155680447816849,0.5570727586746216,1.717251181602478,1.2217587232589722,0.4820019006729126,0.5856624245643616,0.703125,0.5710813999176025,0,7 +174,0.22864225506782532,0.2309376746416092,0.0022954195737838745,0.002975817108034237,1.0,1.0,0.0047607421875,0.0047607421875,0.80291748046875,0,11,0.08170493692159653,0.559362530708313,1.720656156539917,1.2139227390289307,0.48057472705841064,0.5882370471954346,0.70703125,0.5731655359268188,0,7 +175,0.2309376746416092,0.23175528645515442,0.000817611813545227,0.0010631281582597506,1.0,1.0,0.0047607421875,0.0047607421875,0.8060302734375,0,11,0.08310868591070175,0.5642435550689697,1.721853256225586,1.2021194696426392,0.48006635904312134,0.5928342342376709,0.70703125,0.573407769203186,0,7 +176,0.23175528645515442,0.2319042682647705,0.00014898180961608887,0.00019392493952695737,1.0,1.0,0.0047607421875,0.0047607421875,0.80718994140625,0,11,0.08361514657735825,0.5659804344177246,1.722070574760437,1.1978741884231567,0.4799737334251404,0.5944730043411255,0.70751953125,0.5737327337265015,0,7 +177,0.2319042682647705,0.23215225338935852,0.0002479851245880127,0.0003228570532839463,1.0,1.0,0.0047607421875,0.0047607421875,0.80755615234375,0,11,0.08370774984359741,0.5663050413131714,1.7224316596984863,1.1970610618591309,0.47981953620910645,0.5947849154472351,0.70751953125,0.5737434029579163,0,7 +178,0.23215225338935852,0.23278731107711792,0.0006350576877593994,0.0008270619931654538,1.0,1.0,0.0047607421875,0.0047607421875,0.8074951171875,0,11,0.08386199921369553,0.5668288469314575,1.723353385925293,1.1956429481506348,0.4794246554374695,0.5952787399291992,0.70751953125,0.5741715431213379,0,7 +179,0.23278731107711792,0.23615388572216034,0.0033665746450424194,0.0043880591309938795,1.0,1.0,0.0047607421875,0.00482177734375,0.80755615234375,0,12,0.08425739407539368,0.5702593326568604,1.7281643152236938,1.1844935417175293,0.47733166813850403,0.5990276336669922,0.7099609375,0.5770984888076782,0,7 +180,0.23615388572216034,0.2363305538892746,0.0001766681671142578,0.00023128764264420534,1.0,1.0,0.00482177734375,0.00482177734375,0.81134033203125,0,13,0.08636713027954102,0.5771828293800354,1.7284126281738281,1.1679737567901611,0.47722184658050537,0.6054925918579102,0.70947265625,0.5770589113235474,0,7 +181,0.2363305538892746,0.23904171586036682,0.002711161971092224,0.0035501773508156424,1.0,1.0,0.00482177734375,0.0048828125,0.81170654296875,0,13,0.08647937327623367,0.5788089632987976,1.7321826219558716,1.1622370481491089,0.4755365550518036,0.6073514819145203,0.7109375,0.5786402225494385,0,7 +182,0.23904171586036682,0.2441117912530899,0.0050700753927230835,0.006662750768861782,1.0,1.0,0.0048828125,0.00494384765625,0.81494140625,0,14,0.08820699155330658,0.5872095823287964,1.739004135131836,1.1379687786102295,0.4723859429359436,0.6159688234329224,0.71533203125,0.582882285118103,0,7 +183,0.2441117912530899,0.24411293864250183,1.1473894119262695e-06,1.5179353225106911e-06,1.0,1.0,0.00494384765625,0.00494384765625,0.8206787109375,0,15,0.0914975181221962,0.5975477695465088,1.7390058040618896,1.1130223274230957,0.4723852276802063,0.6255992650985718,0.71533203125,0.582882285118103,0,7 +184,0.24411293864250183,0.2472640872001648,0.003151148557662964,0.004168808700077249,1.0,1.0,0.00494384765625,0.00506591796875,0.820556640625,0,15,0.09149828553199768,0.599177360534668,1.7430859804153442,1.1065800189971924,0.47042742371559143,0.6275986433029175,0.716796875,0.5853836536407471,0,7 +185,0.2472640872001648,0.24918396770954132,0.0019198805093765259,0.0025505366181287187,1.0,1.0,0.00506591796875,0.00518798828125,0.82464599609375,0,15,0.09359216690063477,0.6064584255218506,1.7455124855041504,1.0876438617706299,0.4692351222038269,0.6346348524093628,0.716796875,0.5867583751678467,0,7 +186,0.24918396770954132,0.2493184357881546,0.00013446807861328125,0.00017909590742630984,1.0,1.0,0.00518798828125,0.00518798828125,0.82647705078125,0,15,0.09488546848297119,0.6105650067329407,1.745680570602417,1.0775505304336548,0.4691516160964966,0.6384820938110352,0.71728515625,0.5868136882781982,0,7 +187,0.2493184357881546,0.24967209994792938,0.0003536641597747803,0.0004711240779518795,1.0,1.0,0.00518798828125,0.00518798828125,0.8265380859375,0,15,0.0949767455458641,0.6113065481185913,1.7461214065551758,1.075062870979309,0.46893203258514404,0.6393089294433594,0.71826171875,0.5874922871589661,0,7 +188,0.24967209994792938,0.2539273798465729,0.004255279898643494,0.005671227070655628,1.0,1.0,0.00518798828125,0.00537109375,0.8265380859375,0,15,0.09521714597940445,0.61400306224823,1.7513238191604614,1.0653791427612305,0.4662907123565674,0.6424407958984375,0.72314453125,0.591011643409729,0,7 +189,0.2539273798465729,0.25399282574653625,6.54458999633789e-05,8.772054917377908e-05,1.0,1.0,0.00537109375,0.00537109375,0.83050537109375,0,16,0.09812348335981369,0.6228899359703064,1.7514019012451172,1.0434250831604004,0.46625012159347534,0.6507363319396973,0.72314453125,0.5910080671310425,0,7 +190,0.25399282574653625,0.2549284100532532,0.0009355843067169189,0.0012541223985589238,1.0,1.0,0.00537109375,0.00543212890625,0.83056640625,0,16,0.09816892445087433,0.6232428550720215,1.7525136470794678,1.0421727895736694,0.46566954255104065,0.6511411666870117,0.72412109375,0.5914425849914551,0,7 +191,0.2549284100532532,0.25504228472709656,0.00011387467384338379,0.00015283722447600353,1.0,1.0,0.00543212890625,0.00543212890625,0.83197021484375,0,18,0.09881889820098877,0.6253334283828735,1.7526483535766602,1.036750078201294,0.4655988812446594,0.6531367301940918,0.7255859375,0.5920013189315796,0,7 +192,0.25504228472709656,0.25545161962509155,0.0004093348979949951,0.0005494740031587454,1.0,1.0,0.00543212890625,0.0054931640625,0.83172607421875,0,18,0.09889831393957138,0.6260164380073547,1.753130316734314,1.0343796014785767,0.4653449058532715,0.6539193391799927,0.72607421875,0.592658519744873,0,7 +193,0.25545161962509155,0.2583468556404114,0.0028952360153198242,0.003888580099874722,1.0,1.0,0.0054931640625,0.005615234375,0.8314208984375,0,18,0.09918411076068878,0.6280513405799866,1.756489634513855,1.0273373126983643,0.46354904770851135,0.6562316417694092,0.72802734375,0.5952035188674927,0,7 +194,0.2583468556404114,0.26051414012908936,0.0021672844886779785,0.002922234612177652,1.0,1.0,0.005615234375,0.0057373046875,0.834716796875,0,19,0.1012127697467804,0.6348786354064941,1.7589383125305176,1.0091570615768433,0.4622049331665039,0.662848949432373,0.72900390625,0.5966545343399048,0,7 +195,0.26051414012908936,0.26277974247932434,0.0022656023502349854,0.003063753444359955,1.0,1.0,0.0057373046875,0.005859375,0.8363037109375,0,21,0.10275004804134369,0.640520453453064,1.7614375352859497,0.9931983947753906,0.46080052852630615,0.6684995889663696,0.73046875,0.5990510582923889,0,7 +196,0.26277974247932434,0.2672276198863983,0.004447877407073975,0.006033308718391033,1.0,1.0,0.005859375,0.00604248046875,0.8385009765625,0,22,0.10437312722206116,0.6471024751663208,1.7661747932434082,0.973490834236145,0.45804497599601746,0.6753290295600891,0.7333984375,0.6032142639160156,1,7 +197,0.2672276198863983,0.26834285259246826,0.0011152327060699463,0.0015219360559100927,1.0,1.0,0.00604248046875,0.0062255859375,0.84368896484375,0,23,0.10760561376810074,0.6568008661270142,1.7673221826553345,0.9482671022415161,0.45735442638397217,0.6845254898071289,0.7333984375,0.60393226146698,1,7 +198,0.26834285259246826,0.26840129494667053,5.844235420227051e-05,7.987669417205627e-05,1.0,1.0,0.0062255859375,0.00628662109375,0.84454345703125,0,23,0.10843074321746826,0.6592197418212891,1.7673819065093994,0.9420678019523621,0.4573182463645935,0.686792254447937,0.73388671875,0.6040220260620117,1,7 +199,0.26840129494667053,0.26916933059692383,0.0007680356502532959,0.0010498045512495958,1.0,1.0,0.00628662109375,0.00634765625,0.84442138671875,0,23,0.10847415775060654,0.659831166267395,1.7681622505187988,0.9396698474884033,0.456842839717865,0.6875675916671753,0.73388671875,0.604862630367279,1,7 +200,0.26916933059692383,0.2778797447681427,0.008710414171218872,0.011918512093004137,1.0,1.0,0.00634765625,0.00726318359375,0.8441162109375,0,24,0.10904539376497269,0.6645627021789551,1.7765920162200928,0.9216926693916321,0.45145750045776367,0.6933178901672363,0.7421875,0.6134040355682373,1,7 +201,0.2778797447681427,0.2810349464416504,0.0031552016735076904,0.004369357666742948,1.0,1.0,0.00726318359375,0.00775146484375,0.85284423828125,0,25,0.11558642983436584,0.683516263961792,1.7794063091278076,0.8703048229217529,0.44951027631759644,0.7115753293037415,0.744140625,0.617128849029541,1,7 +202,0.2810349464416504,0.28423503041267395,0.0032000839710235596,0.004450958993327272,1.0,1.0,0.00775146484375,0.00830078125,0.855712890625,0,26,0.11804717779159546,0.6910219192504883,1.7821409702301025,0.8487648963928223,0.4475383162498474,0.7190545201301575,0.75,0.6203885674476624,1,7 +203,0.28423503041267395,0.2861160933971405,0.0018810629844665527,0.0026280456076958874,1.0,1.0,0.00830078125,0.0084228515625,0.85894775390625,0,26,0.12057502567768097,0.6982111930847168,1.7836894989013672,0.8288318514823914,0.44638022780418396,0.7260387539863586,0.7509765625,0.6219092607498169,1,7 +204,0.2861160933971405,0.2864398658275604,0.0003237724304199219,0.0004535365308354536,1.0,1.0,0.0084228515625,0.0084228515625,0.86138916015625,0,26,0.12207908928394318,0.7022387981414795,1.7839512825012207,0.8179433941841125,0.44618090987205505,0.7298746109008789,0.75146484375,0.6225012540817261,1,7 +205,0.2864398658275604,0.28691399097442627,0.0004741251468658447,0.000664450162165684,1.0,1.0,0.0084228515625,0.00848388671875,0.86163330078125,0,26,0.12233971059322357,0.7030802369117737,1.784332275390625,0.8152986764907837,0.4458889961242676,0.7307573556900024,0.75341796875,0.6235262751579285,1,7 +206,0.28691399097442627,0.28895536065101624,0.002041369676589966,0.0028627257452147757,1.0,1.0,0.00848388671875,0.00897216796875,0.8616943359375,0,26,0.12272190302610397,0.7044951915740967,1.7859469652175903,0.8106259107589722,0.4446331858634949,0.7323082089424133,0.75537109375,0.6251908540725708,1,7 +207,0.28895536065101624,0.2899402678012848,0.0009849071502685547,0.0013851551587117136,1.0,1.0,0.00897216796875,0.0091552734375,0.863525390625,0,26,0.12437128275632858,0.7091034650802612,1.7867069244384766,0.7976149916648865,0.4440276324748993,0.7368245720863342,0.755859375,0.6263535022735596,1,7 +208,0.2899402678012848,0.2914341390132904,0.0014938712120056152,0.0021038669625438565,1.0,1.0,0.0091552734375,0.0093994140625,0.86419677734375,0,26,0.1251731514930725,0.7114763259887695,1.7878389358520508,0.7905153036117554,0.44310975074768066,0.7392380237579346,0.7568359375,0.6280405521392822,1,7 +209,0.2914341390132904,0.2935793399810791,0.0021452009677886963,0.0030275251545444316,1.0,1.0,0.0093994140625,0.00994873046875,0.86566162109375,0,26,0.12639418244361877,0.715041995048523,1.7894203662872314,0.7797625064849854,0.4417927861213684,0.7428938150405884,0.7578125,0.6304187774658203,1,7 +210,0.2935793399810791,0.29520294070243835,0.001623600721359253,0.002298348297621655,1.0,1.0,0.00994873046875,0.01019287109375,0.86737060546875,0,27,0.12815788388252258,0.7199074029922485,1.7905802726745605,0.7657182812690735,0.4407970905303955,0.747733473777771,0.76220703125,0.6323257088661194,1,7 +211,0.29520294070243835,0.29549849033355713,0.0002955496311187744,0.0004193400457903938,1.0,1.0,0.01019287109375,0.01019287109375,0.8692626953125,0,27,0.12950336933135986,0.7232965230941772,1.790787696838379,0.7564979791641235,0.4406158924102783,0.7509576082229614,0.76318359375,0.6328456997871399,1,7 +212,0.29549849033355713,0.2955314517021179,3.2961368560791016e-05,4.678679620771443e-05,1.0,1.0,0.01019287109375,0.01019287109375,0.8692626953125,0,27,0.12974964082241058,0.7239150404930115,1.7908107042312622,0.7548766732215881,0.44059568643569946,0.7515308856964111,0.76318359375,0.6328456997871399,1,7 +213,0.2955314517021179,0.297153502702713,0.0016220510005950928,0.00230251727279273,1.0,1.0,0.01019287109375,0.01043701171875,0.8692626953125,0,27,0.12977713346481323,0.7242606282234192,1.7919328212738037,0.7530449032783508,0.4396016299724579,0.7520832419395447,0.76513671875,0.6345340013504028,1,7 +214,0.297153502702713,0.29733628034591675,0.00018277764320373535,0.000260053431163967,1.0,1.0,0.01043701171875,0.010498046875,0.87060546875,0,27,0.1311308592557907,0.727550208568573,1.7920570373535156,0.7443585395812988,0.4394896626472473,0.755133330821991,0.7646484375,0.6345304846763611,1,7 +215,0.29733628034591675,0.3000586926937103,0.002722412347793579,0.0038744171239320636,1.0,1.0,0.010498046875,0.01141357421875,0.87017822265625,0,27,0.1312842220067978,0.7286369800567627,1.7938683032989502,0.7395116686820984,0.4378237724304199,0.75664222240448,0.7685546875,0.6379804611206055,1,7 +216,0.3000586926937103,0.3103121817111969,0.010253489017486572,0.014649069729784806,1.0,1.0,0.01141357421875,0.015625,0.87017822265625,0,27,0.13357232511043549,0.7359705567359924,1.8000106811523438,0.7140425443649292,0.43159008026123047,0.7649897336959839,0.7802734375,0.6497474908828735,7,7 +217,0.3103121817111969,0.31276631355285645,0.002454131841659546,0.0035583227317955777,1.0,1.0,0.015625,0.01690673828125,0.88031005859375,0,28,0.14234885573387146,0.7556860446929932,1.801283836364746,0.6593703031539917,0.43010810017585754,0.7837704420089722,0.78271484375,0.6528983116149902,7,7 +218,0.31276631355285645,0.315746545791626,0.0029802322387695312,0.004336563089880994,1.0,1.0,0.01690673828125,0.018798828125,0.881591796875,0,29,0.14453130960464478,0.7608205080032349,1.8027399778366089,0.6439539194107056,0.42831534147262573,0.7889800071716309,0.7861328125,0.656231164932251,7,7 +219,0.315746545791626,0.3174552023410797,0.0017086565494537354,0.0024971105939545647,1.0,1.0,0.018798828125,0.01995849609375,0.8839111328125,0,29,0.14720386266708374,0.7666364908218384,1.803527593612671,0.6275532245635986,0.4272921085357666,0.7946016192436218,0.78759765625,0.657900333404541,7,7 +220,0.3174552023410797,0.31963151693344116,0.00217631459236145,0.003188530042022228,1.0,1.0,0.01995849609375,0.02105712890625,0.88519287109375,0,29,0.1487506628036499,0.7701426148414612,1.8044843673706055,0.6169838309288025,0.42599254846572876,0.7981599569320679,0.7890625,0.6607738733291626,7,7 +221,0.31963151693344116,0.32072025537490845,0.0010887384414672852,0.0016002188057861234,1.0,1.0,0.02105712890625,0.02191162109375,0.88726806640625,0,29,0.15073199570178986,0.7743332386016846,1.8049417734146118,0.6050981879234314,0.42534393072128296,0.802215039730072,0.7900390625,0.6623481512069702,7,7 +222,0.32072025537490845,0.3240344524383545,0.003314197063446045,0.004878987029526721,1.0,1.0,0.02191162109375,0.02337646484375,0.88800048828125,0,30,0.15172988176345825,0.7767322063446045,1.806260585784912,0.5969618558883667,0.4233761429786682,0.8048985004425049,0.79443359375,0.6661232709884644,7,7 +223,0.3240344524383545,0.32425421476364136,0.00021976232528686523,0.00032510876638549945,1.0,1.0,0.02337646484375,0.02349853515625,0.8902587890625,0,31,0.15477925539016724,0.7827932238578796,1.8063429594039917,0.5807377696037292,0.4232458770275116,0.8105100393295288,0.7939453125,0.6661162972450256,7,7 +224,0.32425421476364136,0.3252061605453491,0.0009519457817077637,0.0014087335837023346,1.0,1.0,0.02349853515625,0.0240478515625,0.8905029296875,0,31,0.15498343110084534,0.7832874059677124,1.8066946268081665,0.5788989067077637,0.4226819574832916,0.81109619140625,0.7958984375,0.6679530143737793,7,7 +225,0.3252061605453491,0.3302629888057709,0.005056828260421753,0.00749388622828646,1.0,1.0,0.0240478515625,0.02880859375,0.89044189453125,0,31,0.1558685600757599,0.7854546308517456,1.808416724205017,0.5706242322921753,0.4197075664997101,0.8137693405151367,0.80029296875,0.6735206842422485,7,7 +226,0.3302629888057709,0.33779335021972656,0.0075303614139556885,0.011243758800977811,1.0,1.0,0.02880859375,0.03558349609375,0.89385986328125,0,31,0.16058659553527832,0.7949999570846558,1.8104827404022217,0.5411821603775024,0.41534602642059326,0.8236490488052368,0.80615234375,0.6829160451889038,7,7 +227,0.33779335021972656,0.34028369188308716,0.0024903416633605957,0.0037606714825151864,1.0,1.0,0.03558349609375,0.03826904296875,0.899658203125,0,32,0.16771924495697021,0.8079854249954224,1.811018705368042,0.5050956010818481,0.4139208197593689,0.8360263109207153,0.80810546875,0.6867444515228271,7,7 +228,0.34028369188308716,0.3423723876476288,0.002088695764541626,0.0031660514358112153,1.0,1.0,0.03826904296875,0.04046630859375,0.90155029296875,0,32,0.17012691497802734,0.8123717308044434,1.8114159107208252,0.4921625852584839,0.41273337602615356,0.8404219746589661,0.81201171875,0.6898017525672913,7,7 +229,0.3423723876476288,0.3489358127117157,0.006563425064086914,0.009980458455217795,1.0,1.0,0.04046630859375,0.0494384765625,0.9027099609375,0,32,0.17216011881828308,0.8160812258720398,1.8123897314071655,0.4793750047683716,0.40905845165252686,0.8446305990219116,0.81787109375,0.6979143619537354,7,7 +230,0.3489358127117157,0.35092711448669434,0.0019913017749786377,0.003058533726563139,1.0,1.0,0.0494384765625,0.05316162109375,0.9085693359375,0,33,0.17858579754829407,0.8268260955810547,1.8125865459442139,0.4496198892593384,0.40796297788619995,0.8548819422721863,0.82080078125,0.700157880783081,7,7 +231,0.35092711448669434,0.3626047372817993,0.01167762279510498,0.01799123496873541,1.0,1.0,0.05316162109375,0.072509765625,0.90777587890625,0,33,0.18056818842887878,0.8299111723899841,1.8130173683166504,0.43578338623046875,0.40173548460006714,0.8592681884765625,0.82958984375,0.7156113386154175,7,7 +232,0.3626047372817993,0.3653782606124878,0.0027735233306884766,0.004351339730484758,1.0,1.0,0.072509765625,0.077392578125,0.91522216796875,0,35,0.19224748015403748,0.847271203994751,1.8128912448883057,0.3873029351234436,0.40031057596206665,0.8757679462432861,0.8330078125,0.7194619178771973,7,7 +233,0.3653782606124878,0.3727027177810669,0.0073244571685791016,0.011541453300430743,1.0,1.0,0.077392578125,0.09344482421875,0.9163818359375,0,35,0.19509699940681458,0.8510023355484009,1.812212347984314,0.37420034408569336,0.39667969942092896,0.8800435066223145,0.84130859375,0.7290670871734619,7,7 +234,0.3727027177810669,0.37601587176322937,0.0033131539821624756,0.0052816329291956845,1.0,1.0,0.09344482421875,0.10113525390625,0.920166015625,0,35,0.20266468822956085,0.8611097931861877,1.8117159605026245,0.3451608419418335,0.39509841799736023,0.8897623419761658,0.84423828125,0.7330946922302246,7,7 +235,0.37601587176322937,0.3784676492214203,0.002451777458190918,0.00392923048398531,1.0,1.0,0.10113525390625,0.1080322265625,0.92193603515625,0,35,0.20614126324653625,0.8654354810714722,1.8112761974334717,0.3321935832500458,0.39395809173583984,0.8940542340278625,0.8466796875,0.7367691993713379,7,7 +236,0.3784676492214203,0.3786812722682953,0.000213623046875,0.0003437038258867767,1.0,1.0,0.1080322265625,0.1085205078125,0.92303466796875,0,35,0.20873093605041504,0.8687291741371155,1.811234712600708,0.32302218675613403,0.39385986328125,0.89710932970047,0.8466796875,0.7368613481521606,7,7 +237,0.3786812722682953,0.3815954029560089,0.002914130687713623,0.004690234750129712,1.0,1.0,0.1085205078125,0.11492919921875,0.9227294921875,0,35,0.208957701921463,0.868794858455658,1.8106293678283691,0.3218142092227936,0.39253541827201843,0.8974601030349731,0.84912109375,0.7403156757354736,7,7 +238,0.3815954029560089,0.38852235674858093,0.0069269537925720215,0.011201329721161925,1.0,1.0,0.11492919921875,0.13482666015625,0.923095703125,0,35,0.2120514214038849,0.8719186186790466,1.8088797330856323,0.31053876876831055,0.38954436779022217,0.9010645151138306,0.85498046875,0.7496201992034912,7,7 +239,0.38852235674858093,0.40111640095710754,0.012594044208526611,0.0205960828617709,1.0,1.0,0.13482666015625,0.17279052734375,0.92462158203125,0,35,0.21943910419940948,0.8792064189910889,1.804575800895691,0.28642094135284424,0.3846783936023712,0.9088237881660461,0.869140625,0.7653294801712036,7,7 +240,0.40111640095710754,0.4080192744731903,0.006902873516082764,0.01152623569440641,1.0,1.0,0.17279052734375,0.1971435546875,0.9298095703125,0,37,0.23301461338996887,0.8920198082923889,1.8015555143356323,0.24809691309928894,0.38237592577934265,0.921147346496582,0.876953125,0.7743963599205017,7,7 +241,0.4080192744731903,0.4094429016113281,0.0014236271381378174,0.0024048538689683133,1.0,1.0,0.1971435546875,0.20233154296875,0.93267822265625,0,37,0.2406000941991806,0.8986779451370239,1.8008724451065063,0.22868412733078003,0.3819383978843689,0.9273368120193481,0.8779296875,0.7760614156723022,7,7 +242,0.4094429016113281,0.41168850660324097,0.002245604991912842,0.0038025196852936806,1.0,1.0,0.20233154296875,0.2095947265625,0.9327392578125,0,37,0.2421802580356598,0.8998348712921143,1.7997583150863647,0.22496812045574188,0.38127103447914124,0.9285064339637756,0.88134765625,0.7784489989280701,7,7 +243,0.41168850660324097,0.4223254323005676,0.01063692569732666,0.01808043156850768,1.0,1.0,0.2095947265625,0.2510986328125,0.93231201171875,0,37,0.24467694759368896,0.9007368087768555,1.79392409324646,0.2201450765132904,0.37855345010757446,0.9299973249435425,0.888671875,0.7917047739028931,7,7 +244,0.4223254323005676,0.42400431632995605,0.0016788840293884277,0.0029062799771063515,1.0,1.0,0.2510986328125,0.25738525390625,0.93560791015625,0,40,0.2565138041973114,0.9094898700714111,1.7929012775421143,0.19466575980186462,0.3781951665878296,0.9378735423088074,0.888671875,0.7938029766082764,7,7 +245,0.42400431632995605,0.4240705072879791,6.619095802307129e-05,0.00011491571881463686,1.0,1.0,0.25738525390625,0.25762939453125,0.936279296875,0,41,0.25840696692466736,0.9108448028564453,1.792860507965088,0.190805122256279,0.37818145751953125,0.9390450716018677,0.888671875,0.7938029766082764,7,7 +246,0.4240705072879791,0.4268844723701477,0.002813965082168579,0.0048859541276793615,1.0,1.0,0.25762939453125,0.26904296875,0.93585205078125,0,40,0.25848180055618286,0.9105567932128906,1.791090965270996,0.1910838782787323,0.37762829661369324,0.938971221446991,0.890625,0.7974458932876587,7,7 +247,0.4268844723701477,0.4283405840396881,0.0014561116695404053,0.0025406948500631753,1.0,1.0,0.26904296875,0.2747802734375,0.9371337890625,0,41,0.2616596221923828,0.9125918745994568,1.7901469469070435,0.18502405285835266,0.3773636519908905,0.9408085346221924,0.892578125,0.7991495132446289,7,7 +248,0.4283405840396881,0.46058788895606995,0.032247304916381836,0.05640999521054096,1.0,1.0,0.2747802734375,0.419921875,0.9332275390625,0,38,0.26330897212028503,0.9091006517410278,1.7653331756591797,0.18915124237537384,0.3758205771446228,0.939672589302063,0.91650390625,0.8368231654167175,7,7 +249,0.46058788895606995,0.4788984954357147,0.018310606479644775,0.03394548640038516,1.0,1.0,0.419921875,0.50958251953125,0.9415283203125,0,43,0.29959598183631897,0.9252837896347046,1.747348427772522,0.14037063717842102,0.37903499603271484,0.954255223274231,0.93212890625,0.8567453026771545,7,7 +250,0.4788984954357147,0.48685967922210693,0.007961183786392212,0.015277606601901658,1.0,1.0,0.50958251953125,0.5501708984375,0.946044921875,0,44,0.32071730494499207,0.9329849481582642,1.7386826276779175,0.11959978938102722,0.38145121932029724,0.9605919122695923,0.9404296875,0.8652645349502563,7,7 +251,0.48685967922210693,0.488000750541687,0.0011410713195800781,0.002223702315675127,1.0,1.0,0.5501708984375,0.555908203125,0.94903564453125,0,45,0.3300040364265442,0.9367104172706604,1.7373980283737183,0.11113540828227997,0.38184893131256104,0.9632313251495361,0.94091796875,0.8657171726226807,7,7 +252,0.488000750541687,0.49103206396102905,0.003031313419342041,0.005920542701086226,1.0,1.0,0.555908203125,0.572509765625,0.948974609375,0,45,0.3313417434692383,0.9369035363197327,1.733939290046692,0.11058174073696136,0.3829740285873413,0.9634215235710144,0.94091796875,0.8687865138053894,7,7 +253,0.49103206396102905,0.611342191696167,0.12031012773513794,0.23638056391419904,1.0,1.0,0.572509765625,0.91693115234375,0.93121337890625,33,34,0.3348957896232605,0.9135151505470276,1.555513620376587,0.1559443473815918,0.4874781370162964,0.9503116607666016,0.9873046875,0.9541910886764526,7,7 +254,0.611342191696167,0.6802758574485779,0.06893366575241089,0.17736338825469328,1.0,1.0,0.91693115234375,0.93719482421875,0.94207763671875,39,41,0.4713577926158905,0.9337379932403564,1.4071420431137085,0.10025440901517868,0.5691442489624023,0.9681334495544434,0.99365234375,0.9737670421600342,7,7 +255,0.6802758574485779,0.6845224499702454,0.0042465925216674805,0.013282051482816908,1.0,1.0,0.93719482421875,0.93841552734375,0.9554443359375,39,45,0.5533185005187988,0.948189377784729,1.3968682289123535,0.0761604830622673,0.5742878913879395,0.9760277271270752,0.994140625,0.9746254682540894,7,7 +256,0.6845224499702454,1.0,0.31547755002975464,1.0,1.0,1.0,0.93841552734375,0.8287353515625,0.8287353515625,0,0,0.5585631728172302,0.7957645058631897,0.34922027587890625,0.3492147922515869,0.8918447494506836,0.8918511271476746,0.9833984375,0.9656776189804077,7,7 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..638068822411d5f70ef334e3f8e0d30a99eb2e28 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/rollin_p50_2k_steps256/summary.json @@ -0,0 +1,3857 @@ +{ + "checkpoint": "runs/train8_rollin_len256_rollin_p50_s4_i32_20260517_171654/step_0002000.pt", + "data_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len256_train8_compact_overfit", + "max_len": 256, + "n_samples": 64, + "steps": 256, + "seed": 20314773, + "time_schedule": "logit_normal", + "time_logit_mean": -1.5, + "time_logit_std": 0.8, + "model_t_mode": "post", + "final_token_acc_mean": 0.8287353515625, + "final_token_acc_min": 0.109375, + "final_token_acc_max": 0.9921875, + "final_exact_count": 0, + "final_best_ref_counts": [ + 0, + 8, + 9, + 1, + 4, + 3, + 7, + 32 + ], + "lock_stats": { + "final_token_acc_mean": 0.8287353515625, + "final_exact_count": 0, + "final_best_ref": [ + 5, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 7, + 6, + 5, + 7, + 2, + 7, + 7, + 7, + 4, + 7, + 7, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 4, + 6, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 6, + 7, + 1, + 2, + 7 + ], + "wrong_count_per_sample": [ + 220, + 128, + 66, + 21, + 7, + 46, + 19, + 2, + 5, + 20, + 24, + 203, + 19, + 33, + 16, + 8, + 4, + 213, + 175, + 70, + 149, + 4, + 14, + 22, + 14, + 7, + 11, + 7, + 32, + 23, + 36, + 5, + 8, + 6, + 13, + 45, + 12, + 26, + 6, + 6, + 12, + 44, + 195, + 8, + 8, + 9, + 35, + 36, + 4, + 89, + 58, + 7, + 14, + 26, + 107, + 17, + 94, + 6, + 5, + 10, + 14, + 25, + 228, + 10 + ], + "wrong_state_lock_step": { + "n": 2806, + "min": 0.0, + "p25": 256.0, + "median": 256.0, + "p75": 256.0, + "max": 256.0, + "mean": 254.8856022808268 + }, + "wrong_endpoint_first_emit_step": { + "n": 2806, + "min": 1.0, + "p25": 254.0, + "median": 256.0, + "p75": 256.0, + "max": 256.0, + "mean": 219.21560940841056 + }, + "num_steps": 256 + }, + "snapshots": { + "1": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1299, + "mass": 0.07928466796875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 1001, + "mass": 0.06109619140625 + }, + { + "id": 3, + "old_text": ",", + "count": 955, + "mass": 0.05828857421875 + }, + { + "id": 52, + "old_text": " to", + "count": 653, + "mass": 0.03985595703125 + }, + { + "id": 54, + "old_text": " in", + "count": 602, + "mass": 0.0367431640625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.3203125, + 0.40234375, + 0.4921875, + 0.328125, + 0.5703125, + 0.515625, + 0.40234375, + 0.4609375, + 0.3671875, + 0.47265625, + 0.3203125, + 0.36328125, + 0.26953125, + 0.40625, + 0.44921875, + 0.515625, + 0.59375, + 0.28515625, + 0.46875, + 0.359375, + 0.35546875, + 0.69921875, + 0.49609375, + 0.31640625, + 0.36328125, + 0.47265625, + 0.44140625, + 0.609375, + 0.359375, + 0.33984375, + 0.33984375, + 0.48828125, + 0.3984375, + 0.75390625, + 0.38671875, + 0.29296875, + 0.58203125, + 0.37109375, + 0.62109375, + 0.4921875, + 0.48828125, + 0.29296875, + 0.3046875, + 0.63671875, + 0.65234375, + 0.59375, + 0.57421875, + 0.3515625, + 0.53125, + 0.41015625, + 0.375, + 0.4453125, + 0.3359375, + 0.3203125, + 0.35546875, + 0.42578125, + 0.3984375, + 0.43359375, + 0.49609375, + 0.36328125, + 0.39453125, + 0.4140625, + 0.3203125, + 0.44140625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 1, + 7, + 4, + 2, + 4, + 1, + 7, + 2, + 4, + 5, + 4, + 2, + 7, + 7, + 4, + 4, + 4, + 4, + 1, + 2, + 7, + 7, + 4, + 7, + 7, + 7, + 2, + 7, + 4, + 7, + 7, + 4, + 7, + 2, + 7, + 7, + 1, + 2, + 2, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 7, + 4, + 4, + 4, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "2": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1298, + "mass": 0.0792236328125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 1024, + "mass": 0.0625 + }, + { + "id": 3, + "old_text": ",", + "count": 993, + "mass": 0.06060791015625 + }, + { + "id": 52, + "old_text": " to", + "count": 665, + "mass": 0.04058837890625 + }, + { + "id": 54, + "old_text": " in", + "count": 600, + "mass": 0.03662109375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.46484375, + 0.44921875, + 0.4453125, + 0.33984375, + 0.6328125, + 0.52734375, + 0.44921875, + 0.453125, + 0.37890625, + 0.4765625, + 0.375, + 0.359375, + 0.28125, + 0.3671875, + 0.58984375, + 0.5703125, + 0.69921875, + 0.265625, + 0.4765625, + 0.3359375, + 0.3359375, + 0.78125, + 0.57421875, + 0.359375, + 0.375, + 0.46484375, + 0.45703125, + 0.65234375, + 0.36328125, + 0.3984375, + 0.35546875, + 0.515625, + 0.46484375, + 0.8359375, + 0.41796875, + 0.32421875, + 0.70703125, + 0.3828125, + 0.6875, + 0.5, + 0.62109375, + 0.41015625, + 0.34375, + 0.671875, + 0.6796875, + 0.73046875, + 0.59765625, + 0.40625, + 0.57421875, + 0.51171875, + 0.3828125, + 0.48046875, + 0.34765625, + 0.359375, + 0.34375, + 0.4609375, + 0.3515625, + 0.4921875, + 0.5078125, + 0.421875, + 0.44921875, + 0.44921875, + 0.41796875, + 0.484375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 7, + 7, + 4, + 2, + 4, + 1, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 4, + 4, + 4, + 4, + 1, + 2, + 7, + 7, + 4, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 2, + 2, + 7, + 7, + 1, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 2, + 4, + 7, + 4, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "4": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1296, + "mass": 0.0791015625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 1013, + "mass": 0.06182861328125 + }, + { + "id": 3, + "old_text": ",", + "count": 990, + "mass": 0.0604248046875 + }, + { + "id": 52, + "old_text": " to", + "count": 669, + "mass": 0.04083251953125 + }, + { + "id": 54, + "old_text": " in", + "count": 595, + "mass": 0.03631591796875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.4765625, + 0.45703125, + 0.453125, + 0.33984375, + 0.671875, + 0.54296875, + 0.4609375, + 0.45703125, + 0.36328125, + 0.4765625, + 0.390625, + 0.35546875, + 0.3046875, + 0.37109375, + 0.62109375, + 0.58203125, + 0.71875, + 0.26171875, + 0.48046875, + 0.3359375, + 0.33984375, + 0.8046875, + 0.59375, + 0.35546875, + 0.39453125, + 0.46484375, + 0.45703125, + 0.66796875, + 0.359375, + 0.41796875, + 0.40625, + 0.5390625, + 0.48828125, + 0.85546875, + 0.4296875, + 0.33203125, + 0.73828125, + 0.38671875, + 0.7109375, + 0.515625, + 0.65234375, + 0.4296875, + 0.3515625, + 0.6875, + 0.6875, + 0.765625, + 0.6015625, + 0.42578125, + 0.58984375, + 0.5234375, + 0.38671875, + 0.5, + 0.35546875, + 0.37109375, + 0.33984375, + 0.47265625, + 0.35546875, + 0.49609375, + 0.515625, + 0.44921875, + 0.44140625, + 0.46484375, + 0.43359375, + 0.484375 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 2, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 7, + 7, + 4, + 2, + 4, + 1, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 2, + 4, + 4, + 4, + 1, + 2, + 7, + 7, + 4, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 2, + 2, + 7, + 7, + 1, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 2, + 4, + 7, + 4, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "8": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1220, + "mass": 0.074462890625 + }, + { + "id": 3, + "old_text": ",", + "count": 947, + "mass": 0.05780029296875 + }, + { + "id": 34, + "old_text": "\\n", + "count": 939, + "mass": 0.05731201171875 + }, + { + "id": 52, + "old_text": " to", + "count": 637, + "mass": 0.03887939453125 + }, + { + "id": 53, + "old_text": " of", + "count": 609, + "mass": 0.03717041015625 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.50390625, + 0.47265625, + 0.4921875, + 0.390625, + 0.78125, + 0.58984375, + 0.50390625, + 0.49609375, + 0.37890625, + 0.48046875, + 0.453125, + 0.38671875, + 0.390625, + 0.39453125, + 0.703125, + 0.6328125, + 0.75, + 0.28515625, + 0.48828125, + 0.34765625, + 0.41015625, + 0.91015625, + 0.6328125, + 0.33203125, + 0.3984375, + 0.515625, + 0.5, + 0.71875, + 0.359375, + 0.5078125, + 0.48828125, + 0.59375, + 0.546875, + 0.90625, + 0.55859375, + 0.31640625, + 0.83984375, + 0.37890625, + 0.76953125, + 0.5546875, + 0.7578125, + 0.51171875, + 0.3671875, + 0.76953125, + 0.7578125, + 0.87109375, + 0.66796875, + 0.49609375, + 0.69140625, + 0.55859375, + 0.40625, + 0.53125, + 0.38671875, + 0.40234375, + 0.33203125, + 0.48046875, + 0.3671875, + 0.5078125, + 0.5546875, + 0.484375, + 0.44140625, + 0.51171875, + 0.48828125, + 0.57421875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 1, + 7, + 4, + 2, + 4, + 1, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 2, + 4, + 1, + 4, + 1, + 2, + 1, + 7, + 4, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 2, + 2, + 7, + 7, + 1, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 2, + 4, + 7, + 4, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "16": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1161, + "mass": 0.07086181640625 + }, + { + "id": 3, + "old_text": ",", + "count": 903, + "mass": 0.05511474609375 + }, + { + "id": 34, + "old_text": "\\n", + "count": 887, + "mass": 0.05413818359375 + }, + { + "id": 52, + "old_text": " to", + "count": 624, + "mass": 0.0380859375 + }, + { + "id": 53, + "old_text": " of", + "count": 604, + "mass": 0.036865234375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.52734375, + 0.4921875, + 0.49609375, + 0.41796875, + 0.84765625, + 0.61328125, + 0.50390625, + 0.5078125, + 0.30859375, + 0.48828125, + 0.5078125, + 0.41015625, + 0.48046875, + 0.41796875, + 0.7265625, + 0.6796875, + 0.8359375, + 0.33203125, + 0.48828125, + 0.37890625, + 0.4140625, + 0.95703125, + 0.67578125, + 0.33984375, + 0.4375, + 0.53125, + 0.546875, + 0.78515625, + 0.359375, + 0.53515625, + 0.53125, + 0.68359375, + 0.58203125, + 0.9375, + 0.625, + 0.32421875, + 0.88671875, + 0.38671875, + 0.82421875, + 0.55859375, + 0.81640625, + 0.53125, + 0.37890625, + 0.81640625, + 0.80078125, + 0.92578125, + 0.6953125, + 0.546875, + 0.7578125, + 0.578125, + 0.453125, + 0.5546875, + 0.4140625, + 0.421875, + 0.33984375, + 0.46875, + 0.3828125, + 0.52734375, + 0.62109375, + 0.5234375, + 0.4375, + 0.55078125, + 0.515625, + 0.66796875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 1, + 7, + 4, + 2, + 4, + 7, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 2, + 4, + 1, + 4, + 1, + 2, + 1, + 7, + 4, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 2, + 2, + 7, + 7, + 1, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 2, + 4, + 7, + 4, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "32": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1088, + "mass": 0.06640625 + }, + { + "id": 3, + "old_text": ",", + "count": 858, + "mass": 0.0523681640625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 806, + "mass": 0.0491943359375 + }, + { + "id": 52, + "old_text": " to", + "count": 584, + "mass": 0.03564453125 + }, + { + "id": 53, + "old_text": " of", + "count": 565, + "mass": 0.03448486328125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.0, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.609375, + 0.54296875, + 0.5, + 0.4296875, + 0.9296875, + 0.6640625, + 0.55859375, + 0.50390625, + 0.33984375, + 0.51171875, + 0.5390625, + 0.45703125, + 0.546875, + 0.42578125, + 0.76171875, + 0.7734375, + 0.93359375, + 0.3671875, + 0.5234375, + 0.4140625, + 0.39453125, + 0.98828125, + 0.7421875, + 0.35546875, + 0.51171875, + 0.50390625, + 0.61328125, + 0.83984375, + 0.3671875, + 0.52734375, + 0.55859375, + 0.8359375, + 0.640625, + 0.97265625, + 0.73828125, + 0.359375, + 0.921875, + 0.41796875, + 0.89453125, + 0.51953125, + 0.875, + 0.515625, + 0.40234375, + 0.8359375, + 0.87890625, + 0.953125, + 0.7421875, + 0.60546875, + 0.87890625, + 0.6171875, + 0.50390625, + 0.59765625, + 0.5, + 0.4140625, + 0.3125, + 0.515625, + 0.41015625, + 0.625, + 0.7578125, + 0.5390625, + 0.48046875, + 0.625, + 0.5703125, + 0.765625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 3, + 0, + 3, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 1, + 7, + 4, + 2, + 4, + 7, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 2, + 4, + 1, + 4, + 1, + 2, + 1, + 7, + 4, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 7, + 2, + 7, + 7, + 1, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 2, + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "64": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 1022, + "mass": 0.0623779296875 + }, + { + "id": 3, + "old_text": ",", + "count": 773, + "mass": 0.04718017578125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 728, + "mass": 0.04443359375 + }, + { + "id": 54, + "old_text": " in", + "count": 540, + "mass": 0.032958984375 + }, + { + "id": 52, + "old_text": " to", + "count": 540, + "mass": 0.032958984375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.61328125, + 0.53125, + 0.52734375, + 0.4375, + 0.984375, + 0.734375, + 0.5703125, + 0.5234375, + 0.58203125, + 0.51171875, + 0.54296875, + 0.51171875, + 0.67578125, + 0.4375, + 0.76171875, + 0.8828125, + 0.9921875, + 0.3828125, + 0.5390625, + 0.41796875, + 0.41796875, + 1.0, + 0.81640625, + 0.39453125, + 0.6328125, + 0.5859375, + 0.69140625, + 0.9140625, + 0.37890625, + 0.484375, + 0.56640625, + 0.9609375, + 0.73828125, + 0.984375, + 0.8203125, + 0.4296875, + 0.96875, + 0.421875, + 0.96484375, + 0.58203125, + 0.88671875, + 0.41796875, + 0.3671875, + 0.89453125, + 0.94921875, + 0.96875, + 0.75390625, + 0.66015625, + 0.9453125, + 0.65625, + 0.5703125, + 0.734375, + 0.609375, + 0.40234375, + 0.27734375, + 0.6328125, + 0.44140625, + 0.74609375, + 0.93359375, + 0.52734375, + 0.546875, + 0.66796875, + 0.609375, + 0.828125 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 1, + 7, + 4, + 2, + 6, + 6, + 7, + 2, + 4, + 5, + 2, + 2, + 7, + 7, + 2, + 4, + 1, + 4, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 7, + 2, + 2, + 7, + 7, + 7, + 1, + 7, + 2, + 7, + 7, + 7, + 2, + 2, + 2, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 7, + 4, + 7, + 7, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "96": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 962, + "mass": 0.0587158203125 + }, + { + "id": 3, + "old_text": ",", + "count": 724, + "mass": 0.044189453125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 645, + "mass": 0.03936767578125 + }, + { + "id": 54, + "old_text": " in", + "count": 535, + "mass": 0.03265380859375 + }, + { + "id": 52, + "old_text": " to", + "count": 496, + "mass": 0.0302734375 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.59765625, + 0.5078125, + 0.5546875, + 0.453125, + 0.9921875, + 0.81640625, + 0.6015625, + 0.73046875, + 0.796875, + 0.53125, + 0.48046875, + 0.54296875, + 0.7890625, + 0.47265625, + 0.76171875, + 0.921875, + 1.0, + 0.37109375, + 0.55078125, + 0.4296875, + 0.42578125, + 1.0, + 0.88671875, + 0.45703125, + 0.75, + 0.66015625, + 0.76953125, + 0.94140625, + 0.36328125, + 0.5234375, + 0.54296875, + 0.9921875, + 0.8203125, + 0.99609375, + 0.84765625, + 0.4921875, + 0.984375, + 0.48046875, + 0.98828125, + 0.74609375, + 0.9140625, + 0.53125, + 0.33984375, + 0.9296875, + 0.984375, + 0.9765625, + 0.80078125, + 0.69140625, + 0.98046875, + 0.62890625, + 0.60546875, + 0.85546875, + 0.7734375, + 0.453125, + 0.39453125, + 0.7265625, + 0.46875, + 0.84765625, + 0.9765625, + 0.48828125, + 0.62890625, + 0.7109375, + 0.63671875, + 0.8515625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 2, + 4, + 5, + 7, + 2, + 7, + 7, + 2, + 4, + 1, + 4, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 7, + 1, + 2, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 7, + 7, + 1, + 2, + 7 + ] + }, + "128": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 676, + "old_text": " complaint", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 887, + "mass": 0.05413818359375 + }, + { + "id": 3, + "old_text": ",", + "count": 656, + "mass": 0.0400390625 + }, + { + "id": 34, + "old_text": "\\n", + "count": 586, + "mass": 0.0357666015625 + }, + { + "id": 54, + "old_text": " in", + "count": 512, + "mass": 0.03125 + }, + { + "id": 52, + "old_text": " to", + "count": 443, + "mass": 0.02703857421875 + } + ], + "state_best_acc": [ + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.55859375, + 0.484375, + 0.609375, + 0.5390625, + 1.0, + 0.89453125, + 0.6484375, + 0.90625, + 0.94140625, + 0.55078125, + 0.44921875, + 0.57421875, + 0.859375, + 0.54296875, + 0.76171875, + 0.9765625, + 1.0, + 0.36328125, + 0.55078125, + 0.4296875, + 0.375, + 1.0, + 0.94921875, + 0.51171875, + 0.86328125, + 0.76171875, + 0.84375, + 0.98046875, + 0.36328125, + 0.65625, + 0.484375, + 1.0, + 0.90625, + 0.9921875, + 0.8828125, + 0.5546875, + 0.99609375, + 0.53125, + 1.0, + 0.921875, + 0.94140625, + 0.59375, + 0.36328125, + 0.96875, + 0.9921875, + 0.9921875, + 0.89453125, + 0.72265625, + 0.9921875, + 0.578125, + 0.55078125, + 0.9609375, + 0.890625, + 0.5390625, + 0.5390625, + 0.79296875, + 0.484375, + 0.92578125, + 0.99609375, + 0.58203125, + 0.75, + 0.78125, + 0.60546875, + 0.87890625 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 0, + 0, + 7, + 0, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 0, + 2, + 3, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 2, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 5, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 7, + 4, + 5, + 7, + 2, + 7, + 7, + 7, + 4, + 1, + 4, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 2, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 2, + 7, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 6, + 7, + 1, + 2, + 7 + ] + }, + "192": { + "state_top_tokens": [ + { + "id": 954, + "old_text": " grasping", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 648, + "old_text": " liberal", + "count": 32, + "mass": 0.001953125 + }, + { + "id": 848, + "old_text": "vor", + "count": 31, + "mass": 0.00189208984375 + }, + { + "id": 243, + "old_text": "ner", + "count": 29, + "mass": 0.00177001953125 + }, + { + "id": 717, + "old_text": " lucky", + "count": 28, + "mass": 0.001708984375 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 763, + "mass": 0.04656982421875 + }, + { + "id": 3, + "old_text": ",", + "count": 613, + "mass": 0.03741455078125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 511, + "mass": 0.03118896484375 + }, + { + "id": 54, + "old_text": " in", + "count": 460, + "mass": 0.028076171875 + }, + { + "id": 5, + "old_text": ".", + "count": 456, + "mass": 0.02783203125 + } + ], + "state_best_acc": [ + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0234375, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.01171875, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0078125, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0078125, + 0.0078125, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0 + ], + "endpoint_best_acc": [ + 0.421875, + 0.5, + 0.71484375, + 0.80078125, + 1.0, + 0.984375, + 0.89453125, + 1.0, + 1.0, + 0.734375, + 0.6953125, + 0.54296875, + 0.890625, + 0.6875, + 0.95703125, + 1.0, + 1.0, + 0.37109375, + 0.55078125, + 0.5234375, + 0.44921875, + 1.0, + 0.99609375, + 0.7734375, + 0.9921875, + 0.98828125, + 0.98828125, + 1.0, + 0.5703125, + 0.8984375, + 0.66796875, + 1.0, + 0.99609375, + 1.0, + 0.96875, + 0.71875, + 1.0, + 0.65625, + 1.0, + 1.0, + 0.99609375, + 0.734375, + 0.4453125, + 1.0, + 1.0, + 1.0, + 0.99609375, + 0.80859375, + 1.0, + 0.71875, + 0.57421875, + 0.99609375, + 0.99609375, + 0.7109375, + 0.734375, + 0.9609375, + 0.53125, + 1.0, + 1.0, + 0.79296875, + 0.91796875, + 0.921875, + 0.46875, + 0.9921875 + ], + "state_best_ref": [ + 0, + 2, + 0, + 2, + 1, + 0, + 2, + 1, + 6, + 2, + 5, + 4, + 1, + 0, + 6, + 0, + 0, + 4, + 6, + 3, + 0, + 1, + 0, + 7, + 2, + 1, + 1, + 5, + 3, + 1, + 2, + 4, + 7, + 7, + 2, + 3, + 2, + 0, + 7, + 0, + 1, + 2, + 1, + 4, + 7, + 6, + 3, + 1, + 1, + 1, + 4, + 5, + 1, + 4, + 0, + 6, + 3, + 4, + 6, + 0, + 0, + 1, + 4, + 0 + ], + "endpoint_best_ref": [ + 2, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 7, + 4, + 5, + 7, + 2, + 7, + 7, + 7, + 4, + 7, + 6, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 4, + 6, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 6, + 7, + 1, + 2, + 7 + ] + }, + "256": { + "state_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 971, + "mass": 0.05926513671875 + }, + { + "id": 3, + "old_text": ",", + "count": 786, + "mass": 0.0479736328125 + }, + { + "id": 5, + "old_text": ".", + "count": 579, + "mass": 0.03533935546875 + }, + { + "id": 54, + "old_text": " in", + "count": 525, + "mass": 0.03204345703125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 507, + "mass": 0.03094482421875 + } + ], + "endpoint_top_tokens": [ + { + "id": 40, + "old_text": " the", + "count": 971, + "mass": 0.05926513671875 + }, + { + "id": 3, + "old_text": ",", + "count": 786, + "mass": 0.0479736328125 + }, + { + "id": 5, + "old_text": ".", + "count": 579, + "mass": 0.03533935546875 + }, + { + "id": 54, + "old_text": " in", + "count": 525, + "mass": 0.03204345703125 + }, + { + "id": 34, + "old_text": "\\n", + "count": 507, + "mass": 0.03094482421875 + } + ], + "state_best_acc": [ + 0.140625, + 0.5, + 0.7421875, + 0.91796875, + 0.97265625, + 0.8203125, + 0.92578125, + 0.9921875, + 0.98046875, + 0.921875, + 0.90625, + 0.20703125, + 0.92578125, + 0.87109375, + 0.9375, + 0.96875, + 0.984375, + 0.16796875, + 0.31640625, + 0.7265625, + 0.41796875, + 0.984375, + 0.9453125, + 0.9140625, + 0.9453125, + 0.97265625, + 0.95703125, + 0.97265625, + 0.875, + 0.91015625, + 0.859375, + 0.98046875, + 0.96875, + 0.9765625, + 0.94921875, + 0.82421875, + 0.953125, + 0.8984375, + 0.9765625, + 0.9765625, + 0.953125, + 0.828125, + 0.23828125, + 0.96875, + 0.96875, + 0.96484375, + 0.86328125, + 0.859375, + 0.984375, + 0.65234375, + 0.7734375, + 0.97265625, + 0.9453125, + 0.8984375, + 0.58203125, + 0.93359375, + 0.6328125, + 0.9765625, + 0.98046875, + 0.9609375, + 0.9453125, + 0.90234375, + 0.109375, + 0.9609375 + ], + "endpoint_best_acc": [ + 0.140625, + 0.5, + 0.7421875, + 0.91796875, + 0.97265625, + 0.8203125, + 0.92578125, + 0.9921875, + 0.98046875, + 0.921875, + 0.90625, + 0.20703125, + 0.92578125, + 0.87109375, + 0.9375, + 0.96875, + 0.984375, + 0.16796875, + 0.31640625, + 0.7265625, + 0.41796875, + 0.984375, + 0.9453125, + 0.9140625, + 0.9453125, + 0.97265625, + 0.95703125, + 0.97265625, + 0.875, + 0.91015625, + 0.859375, + 0.98046875, + 0.96875, + 0.9765625, + 0.94921875, + 0.82421875, + 0.953125, + 0.8984375, + 0.9765625, + 0.9765625, + 0.953125, + 0.828125, + 0.23828125, + 0.96875, + 0.96875, + 0.96484375, + 0.86328125, + 0.859375, + 0.984375, + 0.65234375, + 0.7734375, + 0.97265625, + 0.9453125, + 0.8984375, + 0.58203125, + 0.93359375, + 0.6328125, + 0.9765625, + 0.98046875, + 0.9609375, + 0.9453125, + 0.90234375, + 0.109375, + 0.9609375 + ], + "state_best_ref": [ + 5, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 7, + 6, + 5, + 7, + 2, + 7, + 7, + 7, + 4, + 7, + 7, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 4, + 6, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 6, + 7, + 1, + 2, + 7 + ], + "endpoint_best_ref": [ + 5, + 2, + 1, + 7, + 7, + 4, + 2, + 6, + 6, + 7, + 7, + 6, + 5, + 7, + 2, + 7, + 7, + 7, + 4, + 7, + 7, + 1, + 2, + 7, + 7, + 7, + 7, + 7, + 3, + 1, + 7, + 7, + 7, + 7, + 1, + 7, + 2, + 6, + 7, + 7, + 2, + 5, + 1, + 1, + 7, + 2, + 4, + 2, + 1, + 4, + 6, + 7, + 7, + 7, + 6, + 7, + 7, + 7, + 7, + 6, + 7, + 1, + 2, + 7 + ] + } + }, + "last_step": { + "step": 256, + "progress": 0.6845224499702454, + "next_progress": 1.0, + "dt": 0.31547755002975464, + "gamma": 1.0, + "temperature": 1.0, + "endpoint_alpha": 1.0, + "state_acc_before_mean": 0.93841552734375, + "state_acc_after_mean": 0.8287353515625, + "endpoint_acc_mean": 0.8287353515625, + "state_exact_after": 0, + "endpoint_exact": 0, + "state_pgold_best_mean": 0.5585631728172302, + "endpoint_pgold_best_mean": 0.7957645058631897, + "state_entropy_mean": 0.34922027587890625, + "endpoint_entropy_mean": 0.3492147922515869, + "state_maxprob_mean": 0.8918447494506836, + "endpoint_maxprob_mean": 0.8918511271476746, + "oracle_clean_acc_mean": 0.9833984375, + "oracle_clean_pgold_mean": 0.9656776189804077, + "state_best_ref_mode": 7, + "endpoint_best_ref_mode": 7, + "state_best_ref_counts": [ + 0, + 8, + 9, + 1, + 4, + 3, + 7, + 32 + ], + "endpoint_best_ref_counts": [ + 0, + 8, + 9, + 1, + 4, + 3, + 7, + 32 + ] + } +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/wrongfloor0p3_1k/step_metrics.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/wrongfloor0p3_1k/step_metrics.csv new file mode 100644 index 0000000000000000000000000000000000000000..c484f977f50b77f7605d57649eb6eca64c234261 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/trajectory_mismatch_traces_1815/wrongfloor0p3_1k/step_metrics.csv @@ -0,0 +1,129 @@ +step,progress,next_progress,dt,gamma,temperature,endpoint_alpha,state_acc_before_mean,state_acc_after_mean,endpoint_acc_mean,state_exact_after,endpoint_exact,state_pgold_best_mean,endpoint_pgold_best_mean,state_entropy_mean,endpoint_entropy_mean,state_maxprob_mean,endpoint_maxprob_mean,oracle_clean_acc_mean,oracle_clean_pgold_mean,state_best_ref_mode,endpoint_best_ref_mode +1,0.0,0.03201184421777725,0.03201184421777725,0.03201184421777725,1.0,1.0,0.00433349609375,0.00439453125,0.1212158203125,0,0,0.00346405990421772,0.08091920614242554,1.1835520267486572,2.281337261199951,0.6043956279754639,0.3369826674461365,0.4384765625,0.38361233472824097,0,2 +2,0.03201184421777725,0.03513799235224724,0.003126148134469986,0.003229531390230465,1.0,1.0,0.00439453125,0.00439453125,0.12841796875,0,0,0.0053409915417432785,0.08862267434597015,1.1978187561035156,2.178104877471924,0.6024562120437622,0.36402320861816406,0.443359375,0.38688668608665466,0,2 +3,0.03513799235224724,0.039246052503585815,0.004108060151338577,0.0042576659862001,1.0,1.0,0.00439453125,0.00439453125,0.12890625,0,0,0.005535943433642387,0.09013476222753525,1.2160587310791016,2.1545612812042236,0.5999078750610352,0.369905024766922,0.44677734375,0.39062315225601196,0,2 +4,0.039246052503585815,0.043327752500772476,0.004081699997186661,0.004248434271670681,1.0,1.0,0.00439453125,0.00439453125,0.131103515625,0,0,0.005795985460281372,0.09214218705892563,1.2336499691009521,2.122708797454834,0.5973759889602661,0.3779374957084656,0.44921875,0.3943885266780853,0,2 +5,0.043327752500772476,0.05119910091161728,0.007871348410844803,0.008227842326795581,1.0,1.0,0.00439453125,0.00439453125,0.13397216796875,0,0,0.0060571301728487015,0.09488605707883835,1.2662103176116943,2.07950758934021,0.5924941897392273,0.3884938061237335,0.45556640625,0.4017242193222046,0,2 +6,0.05119910091161728,0.05660367012023926,0.005404569208621979,0.0056962100413424374,1.0,1.0,0.00439453125,0.00439453125,0.1387939453125,0,0,0.00659262016415596,0.09944532066583633,1.2876052856445312,2.015683650970459,0.5891427397727966,0.404631644487381,0.4609375,0.40629544854164124,0,2 +7,0.05660367012023926,0.05893132835626602,0.002327658236026764,0.002467317459591381,1.0,1.0,0.00439453125,0.00439453125,0.14080810546875,0,0,0.006980916019529104,0.10269850492477417,1.2965922355651855,1.9726598262786865,0.5876994132995605,0.4156416058540344,0.46533203125,0.4085043966770172,0,2 +8,0.05893132835626602,0.06070792302489281,0.0017765946686267853,0.0018878480626962804,1.0,1.0,0.00439453125,0.00439453125,0.1419677734375,0,0,0.007155709899961948,0.1043102964758873,1.3033621311187744,1.9513969421386719,0.5865978002548218,0.42107516527175903,0.466796875,0.40998226404190063,0,2 +9,0.06070792302489281,0.06368901580572128,0.002981092780828476,0.003173765492016899,1.0,1.0,0.00439453125,0.00439453125,0.14410400390625,0,0,0.007293476723134518,0.1059892475605011,1.3145513534545898,1.9298365116119385,0.5847494006156921,0.4265309274196625,0.46728515625,0.412446528673172,0,2 +10,0.06368901580572128,0.06898529827594757,0.005296282470226288,0.005656542067360114,1.0,1.0,0.00439453125,0.00439453125,0.14617919921875,0,0,0.007530538365244865,0.10902103781700134,1.3339197635650635,1.8922035694122314,0.5814657211303711,0.43615779280662537,0.47265625,0.4169849753379822,0,2 +11,0.06898529827594757,0.0741415023803711,0.005156204104423523,0.005538262816768916,1.0,1.0,0.00439453125,0.00439453125,0.150146484375,0,0,0.007966103032231331,0.11358846724033356,1.352171778678894,1.8364129066467285,0.5782690048217773,0.4508790969848633,0.47607421875,0.42166250944137573,0,2 +12,0.0741415023803711,0.082164466381073,0.008022964000701904,0.008665432159805033,1.0,1.0,0.00439453125,0.00439453125,0.15594482421875,0,0,0.00841473788022995,0.11898012459278107,1.3794424533843994,1.7724575996398926,0.5732953548431396,0.46787670254707336,0.48046875,0.428618460893631,0,2 +13,0.082164466381073,0.0832255557179451,0.0010610893368721008,0.0011560778570953115,1.0,1.0,0.00439453125,0.00439453125,0.15850830078125,0,0,0.009168973192572594,0.12404391914606094,1.382953405380249,1.7086087465286255,0.5726374983787537,0.48582032322883606,0.4814453125,0.42898499965667725,0,2 +14,0.0832255557179451,0.08396796882152557,0.0007424131035804749,0.0008098099900263624,1.0,1.0,0.00439453125,0.00439453125,0.1590576171875,0,0,0.009276269003748894,0.12494763731956482,1.3853967189788818,1.6979305744171143,0.5721771717071533,0.4887741208076477,0.482421875,0.42968952655792236,0,2 +15,0.08396796882152557,0.0862998440861702,0.002331875264644623,0.0025456263375906924,1.0,1.0,0.00439453125,0.00439453125,0.15948486328125,0,0,0.009352761320769787,0.12600228190422058,1.3929977416992188,1.6856260299682617,0.5707314610481262,0.4920892119407654,0.484375,0.43161243200302124,0,2 +16,0.0862998440861702,0.0877736359834671,0.0014737918972969055,0.0016129929362033483,1.0,1.0,0.00439453125,0.00439453125,0.16021728515625,0,0,0.009594402275979519,0.1277698278427124,1.3977481126785278,1.6642489433288574,0.5698177218437195,0.4980430006980896,0.486328125,0.43260303139686584,0,2 +17,0.0877736359834671,0.08781633526086807,4.269927740097046e-05,4.680776513952691e-05,1.0,1.0,0.00439453125,0.00439453125,0.1607666015625,0,0,0.009749893099069595,0.12867818772792816,1.3978850841522217,1.6526055335998535,0.5697912573814392,0.501316249370575,0.486328125,0.43260303139686584,0,2 +18,0.08781633526086807,0.08900825679302216,0.0011919215321540833,0.0013066683588276614,1.0,1.0,0.00439453125,0.00439453125,0.16119384765625,0,0,0.00975442212074995,0.12894847989082336,1.4016952514648438,1.6490411758422852,0.5690522789955139,0.5022385716438293,0.48779296875,0.43365973234176636,0,2 +19,0.08900825679302216,0.08930708467960358,0.0002988278865814209,0.0003280248024306484,1.0,1.0,0.00439453125,0.00439453125,0.16168212890625,0,0,0.009881453588604927,0.12977257370948792,1.402646541595459,1.6386537551879883,0.5688669681549072,0.5051442384719849,0.48779296875,0.43398505449295044,0,2 +20,0.08930708467960358,0.09095583856105804,0.0016487538814544678,0.001810438901761314,1.0,1.0,0.00439453125,0.00439453125,0.16162109375,0,0,0.009913776069879532,0.13034088909626007,1.4078625440597534,1.6322312355041504,0.5678447484970093,0.5068572759628296,0.48876953125,0.4351404011249542,0,2 +21,0.09095583856105804,0.09176389127969742,0.0008080527186393738,0.0008889037000801951,1.0,1.0,0.00439453125,0.00439453125,0.1624755859375,0,0,0.01009545847773552,0.13146917521953583,1.4104009866714478,1.6175484657287598,0.5673437714576721,0.5109684467315674,0.48876953125,0.435726135969162,0,2 +22,0.09176389127969742,0.10128811746835709,0.009524226188659668,0.010486509066545732,1.0,1.0,0.00439453125,0.00445556640625,0.16436767578125,0,0,0.01018545962870121,0.13393405079841614,1.4393794536590576,1.588964581489563,0.5614403486251831,0.5184784531593323,0.4970703125,0.44349491596221924,0,2 +23,0.10128811746835709,0.10139931738376617,0.00011119991540908813,0.00012373255274631675,1.0,1.0,0.00445556640625,0.00445556640625,0.16839599609375,0,0,0.011317705735564232,0.13865363597869873,1.4397099018096924,1.5195252895355225,0.5613713264465332,0.5378739237785339,0.4970703125,0.44349491596221924,0,2 +24,0.10139931738376617,0.10202503949403763,0.0006257221102714539,0.0006963294401799176,1.0,1.0,0.00445556640625,0.00445556640625,0.16851806640625,0,0,0.011331656947731972,0.13879935443401337,1.441564917564392,1.517629623413086,0.560983419418335,0.5383806228637695,0.4970703125,0.443899929523468,0,2 +25,0.10202503949403763,0.10250301659107208,0.00047797709703445435,0.0005322833242088833,1.0,1.0,0.00445556640625,0.00445556640625,0.16900634765625,0,0,0.011410226114094257,0.13919126987457275,1.4429776668548584,1.5117685794830322,0.5606871247291565,0.5399624109268188,0.498046875,0.44442644715309143,0,2 +26,0.10250301659107208,0.1146286129951477,0.012125596404075623,0.013510459230759128,1.0,1.0,0.00445556640625,0.00445556640625,0.170166015625,0,0,0.011470407247543335,0.14131394028663635,1.4774227142333984,1.4867143630981445,0.5531712770462036,0.546471357345581,0.50927734375,0.453768789768219,0,2 +27,0.1146286129951477,0.11842145025730133,0.0037928372621536255,0.004283894101191277,1.0,1.0,0.00445556640625,0.00445556640625,0.17120361328125,0,0,0.013068471103906631,0.1458335816860199,1.4878273010253906,1.4039626121520996,0.5508196353912354,0.5692346692085266,0.5126953125,0.4569517970085144,0,2 +28,0.11842145025730133,0.11991230398416519,0.001490853726863861,0.0016911184230820817,1.0,1.0,0.00445556640625,0.00445556640625,0.171630859375,0,0,0.013600954785943031,0.1467926949262619,1.4918742179870605,1.380279302597046,0.549895167350769,0.5757837295532227,0.51220703125,0.45786619186401367,0,2 +29,0.11991230398416519,0.12220681458711624,0.00229451060295105,0.002607138599185423,1.0,1.0,0.00445556640625,0.00445556640625,0.172119140625,0,0,0.013811951503157616,0.14726662635803223,1.4980412721633911,1.3694034814834595,0.5484723448753357,0.578802227973938,0.51318359375,0.4595193862915039,0,2 +30,0.12220681458711624,0.12263119965791702,0.00042438507080078125,0.00048346817661971834,1.0,1.0,0.00445556640625,0.00445556640625,0.1715087890625,0,0,0.014137718826532364,0.14771227538585663,1.4991772174835205,1.355841875076294,0.5482091903686523,0.5826885104179382,0.51416015625,0.4600902795791626,0,2 +31,0.12263119965791702,0.12462025135755539,0.0019890516996383667,0.0022670645444228727,1.0,1.0,0.00445556640625,0.00445556640625,0.1715087890625,0,0,0.01419815607368946,0.14788217842578888,1.5044612884521484,1.3519037961959839,0.5469757318496704,0.5837886929512024,0.515625,0.461244136095047,0,2 +32,0.12462025135755539,0.12487028539180756,0.00025003403425216675,0.0002856292193644235,1.0,1.0,0.00445556640625,0.00445556640625,0.17083740234375,0,0,0.014481717720627785,0.14812219142913818,1.5051237344741821,1.341088056564331,0.5468206405639648,0.5869371294975281,0.51611328125,0.46153488755226135,0,2 +33,0.12487028539180756,0.12574611604213715,0.0008758306503295898,0.0010008009506587388,1.0,1.0,0.00445556640625,0.00445556640625,0.17120361328125,0,0,0.014517422765493393,0.14823192358016968,1.50743567943573,1.3386346101760864,0.5462774634361267,0.5876206159591675,0.5166015625,0.46236494183540344,0,2 +34,0.12574611604213715,0.12841172516345978,0.002665609121322632,0.003049010327818124,1.0,1.0,0.00445556640625,0.00445556640625,0.1715087890625,0,0,0.014642693102359772,0.14853738248348236,1.514398455619812,1.3317489624023438,0.544624388217926,0.5895644426345825,0.51904296875,0.4644499123096466,0,2 +35,0.12841172516345978,0.12961909174919128,0.0012073665857315063,0.0013852487700777513,1.0,1.0,0.00445556640625,0.00445556640625,0.171142578125,0,0,0.015027346089482307,0.14874273538589478,1.5175323486328125,1.3173010349273682,0.5438755750656128,0.5936980843544006,0.51953125,0.4654039144515991,0,2 +36,0.12961909174919128,0.12983545660972595,0.00021636486053466797,0.0002485864045082206,1.0,1.0,0.00445556640625,0.00445556640625,0.171142578125,0,0,0.015202667564153671,0.1487019658088684,1.5180931091308594,1.3115081787109375,0.5437414646148682,0.5953941345214844,0.51953125,0.46540313959121704,0,2 +37,0.12983545660972595,0.13509829342365265,0.005262836813926697,0.006048093839151387,1.0,1.0,0.00445556640625,0.00445556640625,0.17108154296875,0,0,0.015234083868563175,0.1491158902645111,1.5314699411392212,1.3067052364349365,0.540477991104126,0.5967111587524414,0.52587890625,0.4690108299255371,0,2 +38,0.13509829342365265,0.13651596009731293,0.0014176666736602783,0.001639107268353085,1.0,1.0,0.00445556640625,0.00445556640625,0.1700439453125,0,0,0.01600496843457222,0.14885729551315308,1.5350475311279297,1.28226637840271,0.539598822593689,0.6039777398109436,0.5283203125,0.4704171419143677,0,2 +39,0.13651596009731293,0.13766935467720032,0.0011533945798873901,0.0013357451053957817,1.0,1.0,0.00445556640625,0.00445556640625,0.16986083984375,0,0,0.016215641051530838,0.14876334369182587,1.5379451513290405,1.2758828401565552,0.5388835668563843,0.6059609055519104,0.5302734375,0.47089460492134094,0,2 +40,0.13766935467720032,0.13855227828025818,0.0008829236030578613,0.0010238805820560314,1.0,1.0,0.00445556640625,0.00445556640625,0.169921875,0,0,0.01638694852590561,0.14873629808425903,1.540155291557312,1.2703375816345215,0.5383360385894775,0.6076303720474243,0.53173828125,0.47196608781814575,0,2 +41,0.13855227828025818,0.1425127238035202,0.003960445523262024,0.004597429911771815,1.0,1.0,0.00445556640625,0.00445556640625,0.170166015625,0,0,0.016518250107765198,0.14895427227020264,1.5499193668365479,1.2648926973342896,0.5358800888061523,0.6092511415481567,0.53466796875,0.4744470715522766,0,2 +42,0.1425127238035202,0.14302626252174377,0.0005135387182235718,0.0005988878581399526,1.0,1.0,0.00445556640625,0.00445556640625,0.1702880859375,0,0,0.017109986394643784,0.14842353761196136,1.551184058189392,1.2499639987945557,0.5355616807937622,0.6138666868209839,0.53564453125,0.47501805424690247,0,2 +43,0.14302626252174377,0.14478830993175507,0.0017620474100112915,0.0020561276652378154,1.0,1.0,0.00445556640625,0.00445556640625,0.1702880859375,0,0,0.01718626543879509,0.1484161615371704,1.5554943084716797,1.2476437091827393,0.5344688892364502,0.6145567893981934,0.537109375,0.47608286142349243,0,2 +44,0.14478830993175507,0.14645308256149292,0.001664772629737854,0.0019466205257379105,1.0,1.0,0.00445556640625,0.00445556640625,0.17041015625,0,0,0.017447851598262787,0.14825697243213654,1.5595426559448242,1.2407615184783936,0.5334365963935852,0.6165956258773804,0.5390625,0.47758471965789795,0,2 +45,0.14645308256149292,0.14677609503269196,0.00032301247119903564,0.00037843551959439506,1.0,1.0,0.00445556640625,0.00445556640625,0.17041015625,0,0,0.01769464835524559,0.14792731404304504,1.5603281259536743,1.2356138229370117,0.5332362651824951,0.6181992292404175,0.5390625,0.4775908291339874,0,2 +46,0.14677609503269196,0.14820446074008942,0.001428365707397461,0.0016740807413877954,1.0,1.0,0.00445556640625,0.00445556640625,0.1702880859375,0,0,0.01774241216480732,0.14797300100326538,1.563781499862671,1.234133005142212,0.5323505401611328,0.6186402440071106,0.53955078125,0.47847336530685425,0,2 +47,0.14820446074008942,0.1486881673336029,0.00048370659351348877,0.0005678670188080124,1.0,1.0,0.00445556640625,0.00445556640625,0.1689453125,0,0,0.017954297363758087,0.14770463109016418,1.5649499893188477,1.2297269105911255,0.532050609588623,0.6200706958770752,0.541015625,0.4792672395706177,0,2 +48,0.1486881673336029,0.15141655504703522,0.002728387713432312,0.00320492163827527,1.0,1.0,0.00445556640625,0.00445556640625,0.16876220703125,0,0,0.018025916069746017,0.147732213139534,1.5714713335037231,1.227388620376587,0.5303587913513184,0.6207815408706665,0.54150390625,0.48098164796829224,0,2 +49,0.15141655504703522,0.15445169806480408,0.00303514301776886,0.003576717217170188,1.0,1.0,0.00445556640625,0.00445556640625,0.167724609375,0,0,0.018429690971970558,0.14732392132282257,1.5786539316177368,1.2191197872161865,0.5284768342971802,0.6234830021858215,0.54248046875,0.48295676708221436,0,2 +50,0.15445169806480408,0.1563456803560257,0.0018939822912216187,0.00223994570965004,1.0,1.0,0.00445556640625,0.00445556640625,0.1650390625,0,0,0.018876228481531143,0.1465362012386322,1.583117961883545,1.2111456394195557,0.5273024439811707,0.6261658668518066,0.54443359375,0.4844750761985779,0,4 +51,0.1563456803560257,0.16051089763641357,0.004165217280387878,0.004937113677253046,1.0,1.0,0.00445556640625,0.00445556640625,0.16473388671875,0,0,0.019153840839862823,0.14619940519332886,1.5927884578704834,1.2057952880859375,0.5247201323509216,0.6278859376907349,0.54833984375,0.4874017834663391,0,2 +52,0.16051089763641357,0.16344644129276276,0.002935543656349182,0.003496821636021411,1.0,1.0,0.00445556640625,0.00445556640625,0.162353515625,0,0,0.01976250484585762,0.14490076899528503,1.5995688438415527,1.197439193725586,0.5229001045227051,0.6303867697715759,0.55078125,0.4897899627685547,0,4 +53,0.16344644129276276,0.16538845002651215,0.0019420087337493896,0.002321439809245998,1.0,1.0,0.00445556640625,0.00445556640625,0.16070556640625,0,0,0.020188063383102417,0.143833726644516,1.6040438413619995,1.1925537586212158,0.5216959714889526,0.6318042278289795,0.55224609375,0.4912763833999634,0,4 +54,0.16538845002651215,0.16668707132339478,0.0012986212968826294,0.0015559589331394722,1.0,1.0,0.00445556640625,0.00445556640625,0.159423828125,0,0,0.020466577261686325,0.14303725957870483,1.6070332527160645,1.190186619758606,0.5208907723426819,0.6324868202209473,0.55322265625,0.49182531237602234,0,4 +55,0.16668707132339478,0.16832348704338074,0.001636415719985962,0.0019637469474819915,1.0,1.0,0.00445556640625,0.00445556640625,0.15899658203125,0,0,0.020651226863265038,0.14256305992603302,1.6107832193374634,1.1881043910980225,0.5198760032653809,0.6330757141113281,0.5556640625,0.4933018684387207,0,4 +56,0.16832348704338074,0.16997194290161133,0.0016484558582305908,0.001982087785995437,1.0,1.0,0.00445556640625,0.00445556640625,0.157958984375,0,0,0.020882660523056984,0.14192351698875427,1.6145472526550293,1.1859411001205444,0.5188538432121277,0.6337406635284424,0.55810546875,0.49461087584495544,0,4 +57,0.16997194290161133,0.17036545276641846,0.0003935098648071289,0.0004740922447643039,1.0,1.0,0.00445556640625,0.00445556640625,0.15728759765625,0,0,0.021114155650138855,0.14106062054634094,1.6154484748840332,1.1845117807388306,0.5186097621917725,0.6342165470123291,0.5576171875,0.4946528375148773,0,4 +58,0.17036545276641846,0.17113260924816132,0.0007671564817428589,0.0009246920638743216,1.0,1.0,0.00445556640625,0.00445556640625,0.15716552734375,0,0,0.021168921142816544,0.14085271954536438,1.6172020435333252,1.1841756105422974,0.5181339979171753,0.6343396902084351,0.5576171875,0.4948670268058777,0,4 +59,0.17113260924816132,0.17300401628017426,0.0018714070320129395,0.0022577882214855224,1.0,1.0,0.00445556640625,0.00445556640625,0.15777587890625,0,0,0.021275442093610764,0.1406576931476593,1.6214505434036255,1.1830816268920898,0.5169735550880432,0.634687602519989,0.55908203125,0.4962955713272095,0,4 +60,0.17300401628017426,0.17531432211399078,0.0023103058338165283,0.0027936119150479776,1.0,1.0,0.00445556640625,0.00445556640625,0.1578369140625,0,0,0.02153458259999752,0.13992759585380554,1.6266645193099976,1.1810879707336426,0.5155407786369324,0.6353577375411987,0.5595703125,0.49831467866897583,0,4 +61,0.17531432211399078,0.1755736619234085,0.0002593398094177246,0.000314471096530394,1.0,1.0,0.00445556640625,0.00445556640625,0.15692138671875,0,0,0.021851787343621254,0.1386207640171051,1.627253532409668,1.1797480583190918,0.5153799057006836,0.6359235048294067,0.56005859375,0.498412549495697,0,4 +62,0.1755736619234085,0.1763649433851242,0.0007912814617156982,0.0009597964368311897,1.0,1.0,0.00445556640625,0.00445556640625,0.1566162109375,0,0,0.021886903792619705,0.13848984241485596,1.6290464401245117,1.1795954704284668,0.5148891806602478,0.6359975337982178,0.56005859375,0.4987148940563202,0,4 +63,0.1763649433851242,0.1803499460220337,0.003985002636909485,0.00483831110017071,1.0,1.0,0.00445556640625,0.00445556640625,0.1563720703125,0,0,0.021993886679410934,0.1384986937046051,1.6379222869873047,1.1783664226531982,0.5124177932739258,0.636459469795227,0.56396484375,0.5017708539962769,0,4 +64,0.1803499460220337,0.1832035481929779,0.002853602170944214,0.0034814884194723957,1.0,1.0,0.00445556640625,0.00445556640625,0.154541015625,0,0,0.02253352850675583,0.1365777552127838,1.6442770957946777,1.1764576435089111,0.5106478333473206,0.6376204490661621,0.568359375,0.5037472248077393,0,4 +65,0.1832035481929779,0.1858668327331543,0.0026632845401763916,0.0032606465592306764,1.0,1.0,0.00445556640625,0.00445556640625,0.152587890625,0,0,0.022912073880434036,0.13518568873405457,1.6501929759979248,1.1753873825073242,0.5089958906173706,0.6385223269462585,0.5693359375,0.5054386854171753,0,4 +66,0.1858668327331543,0.18642842769622803,0.0005615949630737305,0.0006898072522448387,1.0,1.0,0.00445556640625,0.00445556640625,0.15118408203125,0,0,0.02325953170657158,0.13370558619499207,1.6514501571655273,1.1750209331512451,0.5086475610733032,0.6390942335128784,0.56982421875,0.5057767033576965,0,4 +67,0.18642842769622803,0.18648813664913177,5.970895290374756e-05,7.339114951456708e-05,1.0,1.0,0.00445556640625,0.00445556640625,0.15118408203125,0,0,0.02333150804042816,0.13338503241539001,1.6515841484069824,1.1750092506408691,0.5086104869842529,0.6391981840133667,0.56982421875,0.5057758092880249,0,4 +68,0.18648813664913177,0.18989521265029907,0.0034070760011672974,0.004188108563203365,1.0,1.0,0.00445556640625,0.00445556640625,0.1510009765625,0,0,0.023339129984378815,0.13379545509815216,1.659090518951416,1.1744256019592285,0.5064970850944519,0.6393387317657471,0.572265625,0.508422315120697,0,4 +69,0.18989521265029907,0.1964554637670517,0.0065602511167526245,0.008098027834417348,1.0,1.0,0.00445556640625,0.00445556640625,0.1495361328125,0,0,0.023776786401867867,0.13255026936531067,1.6732807159423828,1.1739253997802734,0.5024275779724121,0.6401129961013794,0.57763671875,0.5125046968460083,0,4 +70,0.1964554637670517,0.19933611154556274,0.0028806477785110474,0.0035849260975821568,1.0,1.0,0.00445556640625,0.00445556640625,0.14593505859375,0,0,0.0246146097779274,0.12940376996994019,1.6795825958251953,1.174255609512329,0.5006403923034668,0.6415219902992249,0.58203125,0.5152585506439209,0,4 +71,0.19933611154556274,0.20213140547275543,0.002795293927192688,0.003491220183026598,1.0,1.0,0.00445556640625,0.00445556640625,0.14422607421875,0,0,0.024969432502985,0.12807132303714752,1.6856863498687744,1.1752567291259766,0.49890610575675964,0.64190274477005,0.58349609375,0.5169230699539185,0,4 +72,0.20213140547275543,0.2067568451166153,0.004625439643859863,0.005797244904219526,1.0,1.0,0.00445556640625,0.00445556640625,0.1422119140625,0,0,0.025307681411504745,0.12685410678386688,1.6956748962402344,1.176322102546692,0.4960365295410156,0.6422123908996582,0.5869140625,0.5196865200996399,0,4 +73,0.2067568451166153,0.20780491828918457,0.001048073172569275,0.0013212508246898808,1.0,1.0,0.00445556640625,0.00445556640625,0.1392822265625,0,0,0.025858093053102493,0.12445972859859467,1.697969675064087,1.177667260169983,0.4953862428665161,0.6429700255393982,0.587890625,0.5210120677947998,0,4 +74,0.20780491828918457,0.20851752161979675,0.0007126033306121826,0.0008995301120441856,1.0,1.0,0.00445556640625,0.00445556640625,0.1385498046875,0,0,0.025979040190577507,0.12388577312231064,1.6995315551757812,1.1782327890396118,0.49494415521621704,0.64309161901474,0.58837890625,0.5211911201477051,0,4 +75,0.20851752161979675,0.2139681577682495,0.005450636148452759,0.006886616314751121,1.0,1.0,0.00445556640625,0.00445556640625,0.13861083984375,0,0,0.026061132550239563,0.12402428686618805,1.711175560951233,1.178766131401062,0.4915626347064972,0.6429610252380371,0.59326171875,0.5248796939849854,0,4 +76,0.2139681577682495,0.2150316834449768,0.001063525676727295,0.0013530312890476124,1.0,1.0,0.00445556640625,0.00445556640625,0.13446044921875,0,0,0.02669537626206875,0.12109434604644775,1.713489055633545,1.1815800666809082,0.4909028112888336,0.6434420347213745,0.59326171875,0.5256624221801758,0,4 +77,0.2150316834449768,0.2152930051088333,0.00026132166385650635,0.0003329072758036454,1.0,1.0,0.00445556640625,0.00445556640625,0.13397216796875,0,0,0.026815377175807953,0.12049458920955658,1.714059591293335,1.1823831796646118,0.49074068665504456,0.6434577703475952,0.59326171875,0.5258122086524963,0,4 +78,0.2152930051088333,0.2161438763141632,0.000850871205329895,0.001084317090161666,1.0,1.0,0.00445556640625,0.00445556640625,0.13397216796875,0,0,0.026844635605812073,0.12043023109436035,1.7159103155136108,1.1826305389404297,0.4902127981185913,0.6434292793273926,0.59375,0.5264074802398682,0,4 +79,0.2161438763141632,0.21831606328487396,0.0021721869707107544,0.002771155196819448,1.0,1.0,0.00445556640625,0.00445556640625,0.1339111328125,0,0,0.026939813047647476,0.12009373307228088,1.7205976247787476,1.183160424232483,0.4888652563095093,0.6433950066566467,0.59521484375,0.5282547473907471,0,4 +80,0.21831606328487396,0.22230511903762817,0.003989055752754211,0.00510315687119968,1.0,1.0,0.00445556640625,0.0045166015625,0.1329345703125,0,0,0.027181679382920265,0.11931558698415756,1.7290990352630615,1.1847548484802246,0.48639070987701416,0.643372654914856,0.59814453125,0.5306805372238159,0,4 +81,0.22230511903762817,0.22340324521064758,0.0010981261730194092,0.0014120270042931415,1.0,1.0,0.0045166015625,0.0045166015625,0.129638671875,0,0,0.02762090042233467,0.1172751858830452,1.731468915939331,1.1886539459228516,0.4857095777988434,0.6432629823684692,0.5986328125,0.5318003296852112,0,4 +82,0.22340324521064758,0.22528307139873505,0.0018798261880874634,0.002420594956770526,1.0,1.0,0.0045166015625,0.0045166015625,0.12908935546875,0,0,0.027738459408283234,0.11687235534191132,1.735503911972046,1.1898131370544434,0.48454371094703674,0.6431580185890198,0.599609375,0.5330251455307007,0,4 +83,0.22528307139873505,0.22641173005104065,0.001128658652305603,0.0014568658701486908,1.0,1.0,0.0045166015625,0.0045166015625,0.12774658203125,0,0,0.027938537299633026,0.11593837291002274,1.7379331588745117,1.191960096359253,0.4838438034057617,0.6430221796035767,0.60009765625,0.5334345698356628,0,4 +84,0.22641173005104065,0.22839854657649994,0.0019868165254592896,0.0025683126317186506,1.0,1.0,0.0045166015625,0.0045166015625,0.12750244140625,0,0,0.028057442978024483,0.11552450805902481,1.7421848773956299,1.1933767795562744,0.48261189460754395,0.6428288221359253,0.6015625,0.5348984003067017,0,4 +85,0.22839854657649994,0.2309376746416092,0.002539128065109253,0.003290724834489951,1.0,1.0,0.0045166015625,0.0045166015625,0.12615966796875,0,0,0.02826547995209694,0.11460292339324951,1.7475966215133667,1.195909023284912,0.48103761672973633,0.642593502998352,0.60302734375,0.5362681746482849,0,4 +86,0.2309376746416092,0.23175528645515442,0.000817611813545227,0.0010631281582597506,1.0,1.0,0.0045166015625,0.0045166015625,0.12518310546875,0,0,0.028528936207294464,0.1134723350405693,1.7493492364883423,1.1988707780838013,0.4805307686328888,0.6423382759094238,0.603515625,0.5375626087188721,0,4 +87,0.23175528645515442,0.2319042682647705,0.00014898180961608887,0.00019392493952695737,1.0,1.0,0.0045166015625,0.0045166015625,0.12506103515625,0,0,0.028612826019525528,0.11304594576358795,1.7496695518493652,1.1999390125274658,0.4804384112358093,0.6422500610351562,0.60400390625,0.5376051068305969,0,4 +88,0.2319042682647705,0.23215225338935852,0.0002479851245880127,0.0003228570532839463,1.0,1.0,0.0045166015625,0.0045166015625,0.124755859375,0,0,0.028628019616007805,0.11296945810317993,1.7502024173736572,1.2001309394836426,0.4802846312522888,0.6422215700149536,0.603515625,0.5375797152519226,0,4 +89,0.23215225338935852,0.23904171586036682,0.006889462471008301,0.008972433013470565,1.0,1.0,0.0045166015625,0.00482177734375,0.12518310546875,0,0,0.028653286397457123,0.11317293345928192,1.7645385265350342,1.2020328044891357,0.47601577639579773,0.6415174007415771,0.6103515625,0.5416821241378784,0,4 +90,0.23904171586036682,0.2441117912530899,0.0050700753927230835,0.006662750768861782,1.0,1.0,0.00482177734375,0.0050048828125,0.1231689453125,0,0,0.02936302125453949,0.11004684120416641,1.7751474380493164,1.2124192714691162,0.47287625074386597,0.6399129033088684,0.6171875,0.5458616018295288,0,4 +91,0.2441117912530899,0.24967209994792938,0.0055603086948394775,0.007355993426669797,1.0,1.0,0.0050048828125,0.00518798828125,0.12152099609375,0,0,0.02986830845475197,0.1077592745423317,1.7867436408996582,1.2220200300216675,0.46943551301956177,0.638197124004364,0.6220703125,0.5499973297119141,0,4 +92,0.24967209994792938,0.2549284100532532,0.0052563101053237915,0.007005350733937814,1.0,1.0,0.00518798828125,0.00543212890625,0.11773681640625,0,0,0.030404988676309586,0.10516061633825302,1.7977147102355957,1.23283052444458,0.4661848545074463,0.6363817453384399,0.62744140625,0.5532563328742981,0,4 +93,0.2549284100532532,0.25504228472709656,0.00011387467384338379,0.00015283722447600353,1.0,1.0,0.00543212890625,0.00543212890625,0.11572265625,0,0,0.030893728137016296,0.10262290388345718,1.7979581356048584,1.2423973083496094,0.46611446142196655,0.635051965713501,0.62744140625,0.5532596111297607,0,4 +94,0.25504228472709656,0.25545161962509155,0.0004093348979949951,0.0005494740031587454,1.0,1.0,0.00543212890625,0.00543212890625,0.115478515625,0,0,0.030903924256563187,0.10256576538085938,1.7988321781158447,1.2427849769592285,0.46586135029792786,0.6349716782569885,0.62744140625,0.5531675219535828,0,4 +95,0.25545161962509155,0.2583468556404114,0.0028952360153198242,0.003888580099874722,1.0,1.0,0.00543212890625,0.005615234375,0.11553955078125,0,0,0.03094053640961647,0.10244300961494446,1.8049386739730835,1.2442376613616943,0.4640722870826721,0.6345489025115967,0.62890625,0.5552682280540466,0,4 +96,0.2583468556404114,0.26277974247932434,0.004432886838912964,0.005977035050179319,1.0,1.0,0.005615234375,0.00567626953125,0.114013671875,0,0,0.031199052929878235,0.10113944113254547,1.8142210245132446,1.2515310049057007,0.46133551001548767,0.6329764127731323,0.6318359375,0.5583676695823669,0,4 +97,0.26277974247932434,0.2800517678260803,0.01727202534675598,0.023428582123940864,1.0,1.0,0.00567626953125,0.00689697265625,0.1114501953125,0,0,0.03158838301897049,0.09908080101013184,1.8486642837524414,1.265608549118042,0.4507075548171997,0.6293834447860718,0.64501953125,0.5700199604034424,0,4 +98,0.2800517678260803,0.2810349464416504,0.0009831786155700684,0.0013656240429972463,1.0,1.0,0.00689697265625,0.007080078125,0.10491943359375,0,0,0.03306954354047775,0.0921270102262497,1.8507798910140991,1.3016541004180908,0.45010411739349365,0.6223522424697876,0.64599609375,0.5711312294006348,0,4 +99,0.2810349464416504,0.2861160933971405,0.005081146955490112,0.007067307277790711,1.0,1.0,0.007080078125,0.00732421875,0.10369873046875,0,0,0.03314461186528206,0.09158070385456085,1.8615309000015259,1.3059217929840088,0.446988046169281,0.621135413646698,0.646484375,0.5747355222702026,1,4 +100,0.2861160933971405,0.28643983602523804,0.0003237426280975342,0.00045349478410028837,1.0,1.0,0.00732421875,0.00732421875,0.101318359375,0,0,0.03352895379066467,0.08952847123146057,1.8622299432754517,1.317211627960205,0.4467897415161133,0.6189365386962891,0.64697265625,0.5747306942939758,1,4 +101,0.28643983602523804,0.28895536065101624,0.0025155246257781982,0.0035253153872350563,1.0,1.0,0.00732421875,0.00738525390625,0.1014404296875,0,0,0.03355249762535095,0.08927427232265472,1.8676173686981201,1.3191547393798828,0.44524890184402466,0.6184269189834595,0.64697265625,0.5756274461746216,1,4 +102,0.28895536065101624,0.2914341390132904,0.00247877836227417,0.0034861079390791595,1.0,1.0,0.00738525390625,0.0074462890625,0.10052490234375,0,0,0.033734552562236786,0.08822527527809143,1.8729256391525269,1.3254587650299072,0.4437311291694641,0.61699378490448,0.6474609375,0.5775548219680786,1,4 +103,0.2914341390132904,0.2935793399810791,0.0021452009677886963,0.0030275251545444316,1.0,1.0,0.0074462890625,0.00762939453125,0.0992431640625,0,0,0.033910349011421204,0.08715730160474777,1.8775285482406616,1.3318910598754883,0.44241809844970703,0.6154916286468506,0.6494140625,0.5790854692459106,1,4 +104,0.2935793399810791,0.29549849033355713,0.0019191503524780273,0.002716724553931682,1.0,1.0,0.00762939453125,0.00775146484375,0.09814453125,0,0,0.0340593084692955,0.08625155687332153,1.8816503286361694,1.3368613719940186,0.4412447214126587,0.6142803430557251,0.65087890625,0.5806213617324829,1,4 +105,0.29549849033355713,0.297153502702713,0.0016550123691558838,0.0023491963415940374,1.0,1.0,0.00775146484375,0.0079345703125,0.09808349609375,0,0,0.03419096767902374,0.08543139696121216,1.8852105140686035,1.3417127132415771,0.4402337670326233,0.6130973100662231,0.65283203125,0.5818685293197632,1,4 +106,0.297153502702713,0.31276631355285645,0.015612810850143433,0.022213685221710074,1.0,1.0,0.0079345703125,0.00927734375,0.09588623046875,0,0,0.03430260717868805,0.0840769112110138,1.917309284210205,1.3481919765472412,0.4307402968406677,0.6104919910430908,0.66015625,0.5922899842262268,1,4 +107,0.31276631355285645,0.315746545791626,0.0029802322387695312,0.004336563089880994,1.0,1.0,0.00927734375,0.00970458984375,0.0897216796875,0,0,0.03532712534070015,0.07844936847686768,1.9237717390060425,1.3808460235595703,0.42893552780151367,0.6031631231307983,0.66259765625,0.5939258337020874,1,4 +108,0.315746545791626,0.3174552023410797,0.0017086565494537354,0.0024971105939545647,1.0,1.0,0.00970458984375,0.0101318359375,0.08843994140625,0,0,0.035498447716236115,0.07735925912857056,1.9274914264678955,1.3860630989074707,0.4279027581214905,0.6019344329833984,0.666015625,0.5955122113227844,1,4 +109,0.3174552023410797,0.31963151693344116,0.00217631459236145,0.003188530042022228,1.0,1.0,0.0101318359375,0.01025390625,0.087890625,0,0,0.03559400513768196,0.0766395628452301,1.9322221279144287,1.389246940612793,0.42658913135528564,0.6011278033256531,0.66796875,0.5969835519790649,1,4 +110,0.31963151693344116,0.3240344524383545,0.00440293550491333,0.006471398388515009,1.0,1.0,0.01025390625,0.01080322265625,0.08624267578125,0,0,0.035713471472263336,0.07565762847661972,1.9417181015014648,1.392979621887207,0.4239356517791748,0.6001594662666321,0.6708984375,0.5994729995727539,1,4 +111,0.3240344524383545,0.32425421476364136,0.00021976232528686523,0.00032510876638549945,1.0,1.0,0.01080322265625,0.01080322265625,0.08538818359375,0,0,0.03594896197319031,0.07421018183231354,1.9421991109848022,1.4013265371322632,0.42380332946777344,0.5984325408935547,0.6708984375,0.5994728803634644,1,4 +112,0.32425421476364136,0.3252061605453491,0.0009519457817077637,0.0014087335837023346,1.0,1.0,0.01080322265625,0.0108642578125,0.085205078125,0,0,0.035960257053375244,0.07404609024524689,1.9442795515060425,1.401064157485962,0.42323020100593567,0.5984159708023071,0.671875,0.6007646322250366,2,4 +113,0.3252061605453491,0.3302629888057709,0.005056828260421753,0.00749388622828646,1.0,1.0,0.0108642578125,0.01141357421875,0.08331298828125,0,0,0.03600894287228584,0.07343894243240356,1.955174207687378,1.401489019393921,0.4201900362968445,0.5981343984603882,0.67578125,0.6038511395454407,2,4 +114,0.3302629888057709,0.34028369188308716,0.010020703077316284,0.01496214620041388,1.0,1.0,0.01141357421875,0.01226806640625,0.08099365234375,0,0,0.036263253539800644,0.07118460536003113,1.976449728012085,1.4051975011825562,0.4141959846019745,0.5971490740776062,0.68359375,0.6107749938964844,1,4 +115,0.34028369188308716,0.3489358127117157,0.00865212082862854,0.013114911246206814,1.0,1.0,0.01226806640625,0.0133056640625,0.076416015625,0,0,0.03673454746603966,0.06766556948423386,1.9949212074279785,1.4154574871063232,0.4090399444103241,0.5951460599899292,0.6884765625,0.6161841750144958,2,4 +116,0.3489358127117157,0.3626047372817993,0.013668924570083618,0.02099474189636415,1.0,1.0,0.0133056640625,0.0145263671875,0.0721435546875,0,0,0.037096038460731506,0.06448076665401459,2.023590087890625,1.4131131172180176,0.40095001459121704,0.5957529544830322,0.69580078125,0.625269889831543,2,4 +117,0.3626047372817993,0.37601587176322937,0.013411134481430054,0.021040530524556567,1.0,1.0,0.0145263671875,0.01611328125,0.068115234375,0,0,0.037600867450237274,0.0603238120675087,2.05159854888916,1.4092888832092285,0.3930719494819641,0.5964984893798828,0.70458984375,0.6343919038772583,2,4 +118,0.37601587176322937,0.3784676492214203,0.002451777458190918,0.00392923048398531,1.0,1.0,0.01611328125,0.01654052734375,0.065185546875,0,0,0.03801187500357628,0.05710849538445473,2.0569167137145996,1.421188473701477,0.3916342854499817,0.5929372906684875,0.7060546875,0.6362990140914917,2,4 +119,0.3784676492214203,0.3786812722682953,0.000213623046875,0.0003437038258867767,1.0,1.0,0.01654052734375,0.01666259765625,0.06500244140625,0,0,0.03807481378316879,0.05655589699745178,2.0573840141296387,1.4237797260284424,0.39150917530059814,0.5922178030014038,0.7060546875,0.636446475982666,2,4 +120,0.3786812722682953,0.38852235674858093,0.009841084480285645,0.015839027605385785,1.0,1.0,0.01666259765625,0.0177001953125,0.06402587890625,0,0,0.038080111145973206,0.056236397475004196,2.0779831409454346,1.3997652530670166,0.385769248008728,0.5981441736221313,0.71044921875,0.6429638862609863,2,4 +121,0.38852235674858093,0.4223254323005676,0.033803075551986694,0.055280967219414764,1.0,1.0,0.0177001953125,0.022705078125,0.06280517578125,0,0,0.03831956535577774,0.05453919619321823,2.140446186065674,1.3146445751190186,0.36646804213523865,0.6204643845558167,0.7353515625,0.6645522713661194,2,0 +122,0.4223254323005676,0.42400431632995605,0.0016788840293884277,0.0029062799771063515,1.0,1.0,0.022705078125,0.02288818359375,0.060546875,0,0,0.039011962711811066,0.05111712962388992,2.14404559135437,1.3295557498931885,0.365511417388916,0.61515873670578,0.73681640625,0.6652234792709351,2,0 +123,0.42400431632995605,0.4268844723701477,0.0028801560401916504,0.005000308373563321,1.0,1.0,0.02288818359375,0.02301025390625,0.0609130859375,0,0,0.03903202712535858,0.051111605018377304,2.150101661682129,1.32252836227417,0.36387237906455994,0.6171295642852783,0.7392578125,0.6665570139884949,2,0 +124,0.4268844723701477,0.43885529041290283,0.011970818042755127,0.020887268736656008,1.0,1.0,0.02301025390625,0.02459716796875,0.0618896484375,0,0,0.03906536474823952,0.05207481607794762,2.1732053756713867,1.275965690612793,0.3571062386035919,0.6302996873855591,0.74755859375,0.6742274761199951,2,0 +125,0.43885529041290283,0.48685967922210693,0.0480043888092041,0.08554725365677386,1.0,1.0,0.02459716796875,0.031494140625,0.06561279296875,0,0,0.03920085355639458,0.055769916623830795,2.238650321960449,1.1047000885009766,0.33137384057044983,0.6849506497383118,0.77294921875,0.7022794485092163,2,0 +126,0.48685967922210693,0.611342191696167,0.12448251247406006,0.24258961425083744,1.0,1.0,0.031494140625,0.0491943359375,0.0565185546875,0,0,0.039670467376708984,0.044917993247509,2.339534282684326,1.2244337797164917,0.2960081100463867,0.6486678123474121,0.82568359375,0.7560329437255859,0,0 +127,0.611342191696167,0.6802758574485779,0.06893366575241089,0.17736338825469328,1.0,1.0,0.0491943359375,0.05328369140625,0.0330810546875,0,0,0.038316451013088226,0.01956360787153244,2.558311939239502,2.2138547897338867,0.2730279564857483,0.3824240267276764,0.83349609375,0.7681015729904175,0,0 +128,0.6802758574485779,1.0,0.3197241425514221,1.0,1.0,1.0,0.05328369140625,0.0059814453125,0.0059814453125,0,0,0.0341682992875576,0.00593800563365221,2.202906608581543,2.2029075622558594,0.38403838872909546,0.3840385973453522,0.62353515625,0.559597373008728,6,6 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/hit_ratio_curve.csv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/hit_ratio_curve.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ecf1868df6a69fbf52396418415b724a4897bb3 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/hit_ratio_curve.csv @@ -0,0 +1,2 @@ +config,ckpt_step,train_views_seen,train_tokens_seen,token_acc_mean,exact_count,exact_ref_count,exact_ref_hits +wrongfloor0p3,1000,512000,131072000,0.0052490234375,0,0,"[]" diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.jsonl b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4d02d4d5581493d54f4e837f0e9008be582af1c5 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.jsonl @@ -0,0 +1 @@ +{"run": "train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor", "checkpoint": "runs/train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor/step_0001000.pt", "ckpt_step": 1000, "endpoint_softening": "none", "decode_rule": "flowmap", "steps": 128, "time_schedule": "logit_normal", "model_t_mode": "post", "final_from": "state", "n_gen": 64, "n_refs": 8, "token_acc_mean": 0.0052490234375, "token_acc_min": 0.0, "token_acc_max": 0.0390625, "exact_acc": 0.0, "exact_count": 0, "exact_ref_coverage": 0.0, "exact_ref_count": 0, "exact_ref_hits": [], "best_ref_idx": [7, 6, 6, 4, 7, 4, 4, 4, 6, 7, 4, 6, 7, 4, 0, 6, 4, 4, 4, 4, 6, 4, 6, 4, 4, 0, 6, 6, 4, 4, 0, 4, 4, 6, 6, 6, 6, 6, 0, 6, 6, 0, 4, 7, 7, 4, 0, 4, 6, 4, 7, 7, 6, 4, 4, 7, 4, 4, 6, 6, 6, 0, 6, 4], "best_token_acc": [0.0078125, 0.00390625, 0.0078125, 0.00390625, 0.0078125, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.0078125, 0.00390625, 0.00390625, 0.0078125, 0.00390625, 0.0, 0.00390625, 0.00390625, 0.00390625, 0.0078125, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.0, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.0, 0.00390625, 0.0078125, 0.00390625, 0.0078125, 0.00390625, 0.00390625, 0.0078125, 0.0390625, 0.0078125, 0.00390625, 0.0, 0.00390625, 0.01171875, 0.0078125, 0.00390625, 0.0, 0.00390625, 0.00390625, 0.00390625, 0.0078125, 0.01171875, 0.00390625, 0.00390625, 0.00390625, 0.0078125, 0.00390625, 0.0078125, 0.00390625, 0.00390625, 0.0078125, 0.0, 0.00390625, 0.00390625]} diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.tsv b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.tsv new file mode 100644 index 0000000000000000000000000000000000000000..f78ed51d47c86fb9bb1d5ed9b5bf637934ba14f0 --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc.tsv @@ -0,0 +1,2 @@ +run ckpt_step endpoint_softening token_acc_mean token_acc_min token_acc_max exact_acc exact_count exact_ref_coverage exact_ref_count +train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor 1000 none 0.0052490234375 0.0 0.0390625 0.0 0 0.0 0 diff --git a/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc_summary.json b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..b8f8fb9ecd4c3b846fde0e8b2874010a1065459b --- /dev/null +++ b/LTA_openwebtext_dualt/docs/lta_samples/metrics_20260517/wrong_floor_pilots_len256_bs512_ode128_20260517_1815wrongfloor/wrongfloor0p3/step_1000/decode_token_acc_summary.json @@ -0,0 +1,159 @@ +{ + "num_rows": 1, + "best_by_run": { + "train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor::none": { + "run": "train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor", + "checkpoint": "runs/train8_wrongfloor_len256_wrongfloor0p3_20260517_1815wrongfloor/step_0001000.pt", + "ckpt_step": 1000, + "endpoint_softening": "none", + "decode_rule": "flowmap", + "steps": 128, + "time_schedule": "logit_normal", + "model_t_mode": "post", + "final_from": "state", + "n_gen": 64, + "n_refs": 8, + "token_acc_mean": 0.0052490234375, + "token_acc_min": 0.0, + "token_acc_max": 0.0390625, + "exact_acc": 0.0, + "exact_count": 0, + "exact_ref_coverage": 0.0, + "exact_ref_count": 0, + "exact_ref_hits": [], + "best_ref_idx": [ + 7, + 6, + 6, + 4, + 7, + 4, + 4, + 4, + 6, + 7, + 4, + 6, + 7, + 4, + 0, + 6, + 4, + 4, + 4, + 4, + 6, + 4, + 6, + 4, + 4, + 0, + 6, + 6, + 4, + 4, + 0, + 4, + 4, + 6, + 6, + 6, + 6, + 6, + 0, + 6, + 6, + 0, + 4, + 7, + 7, + 4, + 0, + 4, + 6, + 4, + 7, + 7, + 6, + 4, + 4, + 7, + 4, + 4, + 6, + 6, + 6, + 0, + 6, + 4 + ], + "best_token_acc": [ + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0390625, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.01171875, + 0.0078125, + 0.00390625, + 0.0, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.01171875, + 0.00390625, + 0.00390625, + 0.00390625, + 0.0078125, + 0.00390625, + 0.0078125, + 0.00390625, + 0.00390625, + 0.0078125, + 0.0, + 0.00390625, + 0.00390625 + ] + } + }, + "first_exact_by_run": {} +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step02500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step02500.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e826ac5a4d7f6c6aa1ff59ab0d4fc69d3f3b785 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step02500.txt @@ -0,0 +1,37 @@ + +The most censed on that sent the bride. + +ROMEO: +I do strant: my lord; and what behold the county, +I am entraitons the fall, I will her would the break +Should not have me are a pison. + +FLORIZEL: +What are best foul a -good in. And yet will their +dream love to hear shall be as to breath his son's confices? + +BUCKINGHAM: +Forcy thy country me, in honours to find so +confiness and their words leave appeart: +You have most may can the way duke worthy good mishort +and to both is my soul's consul should, let I have drown +are of the poides, and by the kings a blood of man +Law, the seen to satisfie the haste; +And gentlew soldier'd and to blood, +And with all not thou hast were lives secre, +Disperciatience him were daughter God's brother; +And when no might do the recks, says we from me me, +Was I not so man the timen of the death. + +CLAUDIO: +Ay, I pray you to him? + +SICINIUS: +Go, why art of you la tame and to thine? + +CORIOLANUS: +And this in a smother +Of their lips off so a +sight her trouble, and I did of thee. + +DUKE VINCENTIO: \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step03000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step03000.txt new file mode 100644 index 0000000000000000000000000000000000000000..05d61dc09c4c0fc75ec30bac4c20a8b0ec8df297 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step03000.txt @@ -0,0 +1,35 @@ + +First thousand three cause of some be house +This worthy that king not to so what I changed +To prove their accomparited of our bands +Hath not the sealing of the thousand, I say, +That I say that the princers of their brother: +The world than they beggins the quarrel to-night +You are all the first of any hand call his head, +Or the screatus, and not a craitory? + +DUKE OF YORK: +O pulling is the mind tase the past, the stand: +Shall pluck with much and every grave. + +KING RICHARD III: +Say, sir, that, all he would very words +We comfort most her in a straight +Come inteld I to thee. + +KING RICHARD III: +And to they all, good will not reph day! +For sight, let's an heavens sometiment, +To so be egal's not accreat for night. +All thou well keep the body walls, +What! they pardon the power field? + +CORIOLANUS: +Why, is good with your gracious prain, +Yet will make the good depart of me: +Harp death. Well, fare I was as means my father, +And to sail, then you are, if you? + +CORIOLANUS: +Nay, that show'd my lord, I have say, a spark us a +t \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step04000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step04000.txt new file mode 100644 index 0000000000000000000000000000000000000000..232d83f244e82bd2667e9cb1e74bd1acebee9e85 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/ar/sample_step04000.txt @@ -0,0 +1,48 @@ + +Be not all the duke? + +CAMILLO: +I brake you it, the come not. Thither but will you, +The crown's in fall of my soft? + +NORTHUMBERLAND: +Will you like an of comfort thee both! + +QUEEN MARGARET: +Be promised to yourself at horse! + +CORIOLANUS: +Master hath thank your kings, when day your cause: +The way seen with your forth and good me consent. + +BRUTUS: +She's that well be as thou art, +The right-days I may deing blood of sick. + +CORIOLANUS: +What when this: I will mean to judge. + +KING RICHARD III: +That I should not be it; had you do to make me here? + +KING RICHARD II: +That she seat, now well here, the steed of your name, +That I would not be a thousand unpress wind +Your was your kwing, I will'd in again. + +KING RICHARD III: +And, here's is so biness so spirit +To your continues of fear our duke. + +GLOUCESTER: +So the piece world will have crown upon thyself +That with my father's not word; give me tell. + +JULIET: +See these is now, let them again. + +LADY ANNE: +Well, I say 'tis thee with my son? + +DUCHESSS OF YORK: +No more should be co \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c16_temp1p3_blend.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c16_temp1p3_blend.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e0c5726fa5f76efc282b667f340161ee411e893 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c16_temp1p3_blend.txt @@ -0,0 +1,8 @@ +rNyaDk +a ebhe n rremirawsutLtlodusydmR +eodn +imuFg.hfe ,t::o. BC Ior, iIot + mee MIore +troo,wrr:yil +gnRthza.ymrOhAiMtholor' +rH \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c1_temp1p0_blend.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c1_temp1p0_blend.txt new file mode 100644 index 0000000000000000000000000000000000000000..44fa607bd98d20517cadf74518c236c27e818f27 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c1_temp1p0_blend.txt @@ -0,0 +1,5 @@ +x,- SaKlK LTdTPHcrIxapEP,rRsn,nl.AH.t.:tlDBUUbmHEKeawCcprwomByci uB +CwKISli, +yAyDp;wBad':eX!UpFte;'yKgl!,VnCdKwOE'n +CK ecGa + wUL \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c4_temp1p3_endpoint.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c4_temp1p3_endpoint.txt new file mode 100644 index 0000000000000000000000000000000000000000..27a0e50a3acf0368e4e8ef35b96bc88e33b321e6 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps128_c4_temp1p3_endpoint.txt @@ -0,0 +1,7 @@ +mNg Eika! alpD g:TaeSp,!hHRi.gWl mo-.OllTCw +gcadsiw?urf:lCerm Tkm + rhLwSrL, +ypo:'oUo +l:De,ifGHM +w'yck ARslpda.ogPc +kc -oGTeurTr \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps256_c64_temp0p8_endpoint.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps256_c64_temp0p8_endpoint.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d606e1c3a35a27d6c3c2469f018947b339b2fa3 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_decode_sweep/steps256_c64_temp0p8_endpoint.txt @@ -0,0 +1,2 @@ +ttr h hht tertee h eehtaswtn +rh,theshtetr eh reueetnhee lr eoeeta re eeetiehr htbn ihhtofeeiha i crsrhh etr erihoeaoe frt \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_long/train_5k_to_20k_cpu.log b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_long/train_5k_to_20k_cpu.log new file mode 100644 index 0000000000000000000000000000000000000000..83c5be3c064cd7eeb6a8df51730a4712da75b5ef --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/fully_coupled_long/train_5k_to_20k_cpu.log @@ -0,0 +1,152 @@ +[setup] device=cpu rank=0 world_size=1 +[data] chars=1115394 vocab=65 train=1003854 val=111540 +[lta] step=5100 loss=1.5692 elapsed=11.3s +[lta] step=5200 loss=1.3521 elapsed=22.4s +[lta] step=5300 loss=1.4138 elapsed=33.1s +[lta] step=5400 loss=1.4295 elapsed=44.0s +[lta] step=5500 loss=1.4559 elapsed=54.8s +[lta] step=5600 loss=1.3004 elapsed=65.8s +[lta] step=5700 loss=1.4258 elapsed=76.7s +[lta] step=5800 loss=1.3950 elapsed=87.6s +[lta] step=5900 loss=1.0880 elapsed=98.4s +[lta] step=6000 loss=1.4276 elapsed=109.2s +[lta] step=6100 loss=1.2766 elapsed=120.0s +[lta] step=6200 loss=1.7010 elapsed=130.6s +[lta] step=6300 loss=1.5533 elapsed=141.0s +[lta] step=6400 loss=1.6673 elapsed=151.4s +[lta] step=6500 loss=1.2353 elapsed=161.9s +[lta] step=6600 loss=1.6972 elapsed=172.6s +[lta] step=6700 loss=1.3197 elapsed=183.4s +[lta] step=6800 loss=1.0947 elapsed=194.1s +[lta] step=6900 loss=1.5142 elapsed=204.8s +[lta] step=7000 loss=1.2066 elapsed=215.5s +[lta] step=7100 loss=1.6024 elapsed=226.2s +[lta] step=7200 loss=1.3026 elapsed=236.8s +[lta] step=7300 loss=1.5643 elapsed=247.7s +[lta] step=7400 loss=1.3203 elapsed=258.6s +[lta] step=7500 loss=1.5396 elapsed=269.4s +[lta] step=7600 loss=1.4350 elapsed=284.0s +[lta] step=7700 loss=1.7103 elapsed=293.6s +[lta] step=7800 loss=1.4017 elapsed=302.8s +[lta] step=7900 loss=1.2258 elapsed=312.1s +[lta] step=8000 loss=1.4866 elapsed=321.4s +[lta] step=8100 loss=1.0897 elapsed=330.8s +[lta] step=8200 loss=1.6659 elapsed=340.2s +[lta] step=8300 loss=1.2944 elapsed=349.7s +[lta] step=8400 loss=1.3291 elapsed=359.1s +[lta] step=8500 loss=1.3812 elapsed=368.4s +[lta] step=8600 loss=1.0934 elapsed=378.1s +[lta] step=8700 loss=1.5141 elapsed=388.0s +[lta] step=8800 loss=1.1895 elapsed=397.8s +[lta] step=8900 loss=1.4062 elapsed=407.5s +[lta] step=9000 loss=1.4226 elapsed=417.3s +[lta] step=9100 loss=1.4540 elapsed=427.1s +[lta] step=9200 loss=1.0535 elapsed=437.0s +[lta] step=9300 loss=1.3267 elapsed=446.9s +[lta] step=9400 loss=1.5162 elapsed=456.7s +[lta] step=9500 loss=1.3772 elapsed=466.3s +[lta] step=9600 loss=1.6126 elapsed=475.9s +[lta] step=9700 loss=1.3246 elapsed=485.5s +[lta] step=9800 loss=0.9820 elapsed=495.1s +[lta] step=9900 loss=1.4142 elapsed=504.5s +[lta] step=10000 loss=1.4107 elapsed=514.0s +[lta] step=10100 loss=1.3367 elapsed=528.5s +[lta] step=10200 loss=1.0562 elapsed=538.2s +[lta] step=10300 loss=1.3759 elapsed=548.0s +[lta] step=10400 loss=1.1113 elapsed=557.8s +[lta] step=10500 loss=1.5423 elapsed=567.7s +[lta] step=10600 loss=1.3946 elapsed=577.3s +[lta] step=10700 loss=1.4106 elapsed=587.4s +[lta] step=10800 loss=1.0815 elapsed=597.3s +[lta] step=10900 loss=1.2875 elapsed=607.0s +[lta] step=11000 loss=1.0093 elapsed=616.9s +[lta] step=11100 loss=1.6240 elapsed=626.3s +[lta] step=11200 loss=1.4875 elapsed=635.6s +[lta] step=11300 loss=1.2600 elapsed=644.8s +[lta] step=11400 loss=1.4245 elapsed=654.2s +[lta] step=11500 loss=1.3739 elapsed=664.0s +[lta] step=11600 loss=1.4888 elapsed=673.6s +[lta] step=11700 loss=1.2884 elapsed=683.2s +[lta] step=11800 loss=1.0015 elapsed=693.0s +[lta] step=11900 loss=1.4717 elapsed=702.5s +[lta] step=12000 loss=1.3316 elapsed=712.0s +[lta] step=12100 loss=1.3394 elapsed=721.7s +[lta] step=12200 loss=1.2522 elapsed=731.1s +[lta] step=12300 loss=1.1282 elapsed=740.5s +[lta] step=12400 loss=1.0681 elapsed=749.9s +[lta] step=12500 loss=1.5723 elapsed=759.3s +[lta] step=12600 loss=1.2175 elapsed=774.5s +[lta] step=12700 loss=1.5838 elapsed=783.8s +[lta] step=12800 loss=1.3734 elapsed=792.9s +[lta] step=12900 loss=1.2812 elapsed=802.1s +[lta] step=13000 loss=1.3649 elapsed=811.4s +[lta] step=13100 loss=1.8294 elapsed=820.8s +[lta] step=13200 loss=1.2027 elapsed=830.3s +[lta] step=13300 loss=1.2369 elapsed=839.5s +[lta] step=13400 loss=1.2599 elapsed=848.9s +[lta] step=13500 loss=1.1178 elapsed=858.5s +[lta] step=13600 loss=1.5864 elapsed=867.9s +[lta] step=13700 loss=1.3170 elapsed=877.3s +[lta] step=13800 loss=1.1788 elapsed=886.5s +[lta] step=13900 loss=0.9967 elapsed=896.0s +[lta] step=14000 loss=1.4033 elapsed=905.3s +[lta] step=14100 loss=1.3021 elapsed=914.7s +[lta] step=14200 loss=1.6796 elapsed=924.1s +[lta] step=14300 loss=1.4673 elapsed=933.7s +[lta] step=14400 loss=1.4574 elapsed=943.4s +[lta] step=14500 loss=1.3932 elapsed=953.1s +[lta] step=14600 loss=1.4648 elapsed=962.8s +[lta] step=14700 loss=1.1648 elapsed=972.4s +[lta] step=14800 loss=1.1509 elapsed=982.0s +[lta] step=14900 loss=1.3439 elapsed=991.6s +[lta] step=15000 loss=1.2577 elapsed=1001.2s +[lta] step=15100 loss=1.5085 elapsed=1015.5s +[lta] step=15200 loss=1.4974 elapsed=1024.9s +[lta] step=15300 loss=1.3815 elapsed=1034.3s +[lta] step=15400 loss=1.3667 elapsed=1043.8s +[lta] step=15500 loss=0.9938 elapsed=1053.2s +[lta] step=15600 loss=1.3995 elapsed=1062.5s +[lta] step=15700 loss=1.7402 elapsed=1071.6s +[lta] step=15800 loss=1.6720 elapsed=1081.2s +[lta] step=15900 loss=1.1995 elapsed=1090.8s +[lta] step=16000 loss=1.2172 elapsed=1100.5s +[lta] step=16100 loss=1.3424 elapsed=1110.4s +[lta] step=16200 loss=1.4585 elapsed=1119.8s +[lta] step=16300 loss=1.6160 elapsed=1129.3s +[lta] step=16400 loss=1.4540 elapsed=1138.8s +[lta] step=16500 loss=1.2737 elapsed=1148.3s +[lta] step=16600 loss=1.5694 elapsed=1157.9s +[lta] step=16700 loss=1.3228 elapsed=1167.5s +[lta] step=16800 loss=1.1298 elapsed=1176.9s +[lta] step=16900 loss=1.3631 elapsed=1186.3s +[lta] step=17000 loss=1.3476 elapsed=1195.9s +[lta] step=17100 loss=1.2400 elapsed=1205.9s +[lta] step=17200 loss=1.3261 elapsed=1215.4s +[lta] step=17300 loss=1.5927 elapsed=1224.8s +[lta] step=17400 loss=1.3052 elapsed=1234.2s +[lta] step=17500 loss=1.6171 elapsed=1243.9s +[lta] step=17600 loss=1.4949 elapsed=1258.6s +[lta] step=17700 loss=1.4189 elapsed=1268.1s +[lta] step=17800 loss=1.3073 elapsed=1277.7s +[lta] step=17900 loss=1.5213 elapsed=1287.5s +[lta] step=18000 loss=1.6054 elapsed=1297.4s +[lta] step=18100 loss=1.2861 elapsed=1307.3s +[lta] step=18200 loss=1.4113 elapsed=1317.1s +[lta] step=18300 loss=1.2603 elapsed=1326.8s +[lta] step=18400 loss=1.2823 elapsed=1336.4s +[lta] step=18500 loss=1.2239 elapsed=1346.0s +[lta] step=18600 loss=1.4051 elapsed=1355.6s +[lta] step=18700 loss=1.4112 elapsed=1365.3s +[lta] step=18800 loss=1.5251 elapsed=1375.0s +[lta] step=18900 loss=1.4033 elapsed=1385.0s +[lta] step=19000 loss=1.2974 elapsed=1394.7s +[lta] step=19100 loss=1.1697 elapsed=1404.4s +[lta] step=19200 loss=0.9604 elapsed=1414.1s +[lta] step=19300 loss=1.2492 elapsed=1423.8s +[lta] step=19400 loss=1.2687 elapsed=1433.4s +[lta] step=19500 loss=1.1689 elapsed=1443.1s +[lta] step=19600 loss=1.6802 elapsed=1452.9s +[lta] step=19700 loss=1.2502 elapsed=1462.4s +[lta] step=19800 loss=1.6088 elapsed=1471.8s +[lta] step=19900 loss=1.4576 elapsed=1481.2s +[lta] step=20000 loss=1.2092 elapsed=1490.7s diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step00500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step00500.txt new file mode 100644 index 0000000000000000000000000000000000000000..160e14f1a0e686628900938bd264e80838bab06f --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step00500.txt @@ -0,0 +1,7 @@ +iwh + +oIssnutNtbkttrEUeda t ptsElt +yl v .Ao +Ei M:d ieaitlhC + R,mIisren np yeealwe:w:acl'tShtTsmduD etnhgd:h + CghdngttOitoEruIT \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01000.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f85727b5271c402a128b539eb987d937f332157 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01000.txt @@ -0,0 +1,4 @@ +liI,ioaRhitt tnftseAeSditi;isieekIi,ia f s, Adr +cieIA +D tahI ,: +rolfdeeoAAihn; yecAkNtta CwedelI etii l Ogoo iteoiwOntw hohf,ueh \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01500.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe7ba5b76085df8fd5568ec82b03dc34d5980115 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step01500.txt @@ -0,0 +1,4 @@ +fsrbrtkyna:,n +yWyp b ,th ana.,p, +Ld ,w rK ,caaeipgeliarayseygbkgS of eb, a!I aea 'OuEc dwsvlp,,ocdsne artayn'sA nyecf +f ; IepE! \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02000.txt new file mode 100644 index 0000000000000000000000000000000000000000..20fe5c9011793fb5b2ad0cf134d7ec28a124dcb5 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02000.txt @@ -0,0 +1,2 @@ + odeeyvsln,epls e,sete d bune, rsWnesulu i oIpdatn's sdtsn mwcmedln dbnte +gt dneroal huc gern,s hT o ae rugedr uebmssnaeeih, \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02500.txt new file mode 100644 index 0000000000000000000000000000000000000000..141c4eaa578584449f0acc4bfd705eb69f278e53 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step02500.txt @@ -0,0 +1,11 @@ +?IdPE.ysb iaE +h:c +stERRnS: G h:I:S SttNRoCb +ualBkloeuaeweaiGtIOo +hdKI +at: + IeWy.yEV : DON -'yeUal EKcSBu?wU +kLR Uttt +F + +Am:aTAO \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03000.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbffb78a048e4faa4f4e193b8e7892e58da7b3c1 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03000.txt @@ -0,0 +1,4 @@ +a bd om, nnf + WeSrtev i + oao,artyocmr nat mrhouwetra nh ioco esma otl ;psL awhapgwedenimfneeh,ie: tuornd tsrtk +wiair evee nni \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03500.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3210a6827d9e7794a4f19122fae284c39ab8c20 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step03500.txt @@ -0,0 +1,11 @@ + +oREKILWHRe +OREC,E.E +KEAs RBIEADDENLUIuZRN +MeEfNeR + +ONRHVIElE IGUOEOU +tLrI +LL sDVINlR:V +UOiMUG bII ohRE.RRLI +:EoDyEL RItIAOGVS \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04000.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0dbad1b7f61fa5ce4b12b41a5a9be39f9411fc8 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04000.txt @@ -0,0 +1,5 @@ +gl leer aphpg',used eorr,lmd +peFeucbp +n esIwOroursdoop cotSNdto ee u lNn o,hayb daYDc ieie oiue ue lset tsres +ai +csleov escyo \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04500.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04500.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4e6051faa7465a1aa8abce9e47a02512feabc1c --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step04500.txt @@ -0,0 +1,6 @@ +a iA +raHs nndev +zba r deae eRaan.vnte cttn retes + hy nvklr ASpecf e +Aier eidhv dMhglreisnec;maro blAa +gir vtfsreot dcapoyhev \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step05000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step05000.txt new file mode 100644 index 0000000000000000000000000000000000000000..122fa4cdc52e6398e8b007464c38de8a2c5e2dd1 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_ar_lta_4gpu_5k_20260507/lta/sample_step05000.txt @@ -0,0 +1,6 @@ +iIorliifdin +dr +dmeeHop + + bomS pUaow f ooffhdoehyoo.flon:mmcS.wTe yatfmaoardygf +h :lmt:iyA y yo ,hu,mn ,mfcsr tcnomifd sr yy \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/args.json b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/args.json new file mode 100644 index 0000000000000000000000000000000000000000..334c84afd4cdb22271ec0a3c2aadf6001f1e9d95 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/args.json @@ -0,0 +1,30 @@ +{ + "mode": "fully_coupled", + "data_dir": "experiments/nanogpt_tinyshakespeare_char/data", + "out_dir": "experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508", + "device": "cuda", + "steps": 100000, + "data_mode": "stream", + "batch_size": 64, + "block_size": 128, + "n_layer": 4, + "n_head": 4, + "n_embd": 128, + "dropout": 0.1, + "lr": 0.0003, + "weight_decay": 0.1, + "grad_clip": 1.0, + "log_interval": 100, + "eval_interval": 5000, + "eval_iters": 20, + "sample_len": 512, + "ar_temp": 0.8, + "c_min": 1.0, + "c_max": 64.0, + "decode_c_max": 16.0, + "endpoint_temp": 1.3, + "decode_steps": 256, + "t_mode": "same", + "resume_path": "", + "seed": 1337 +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step10000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step10000.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f474873fde484b25954978516e8f90ae11e61b5 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step10000.txt @@ -0,0 +1,9 @@ + tyeiiO +rOn + +Re +ii:I f: t +mg,sedoe +eg us t hrhmvudoRPoO'AIhuAOsl + +tewS eicbetshvyeurr.ohi NoAsEr K: g ht.BLsaCuaI YoUst tr e \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step15000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step15000.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9dc4372e75054b8ea2b2b8c1a9ef4ef8f1d9826 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step15000.txt @@ -0,0 +1,5 @@ +ysmend snePr Anvt Hrgk- n.tvsIfio aDlnwmoCwms ceEyi +anhotre::t KWyoyAre gheynrrtiEs'ItAy,t + hLeyhTc bc r,ceSDS l +eemBnGoi g +d \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step25000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step25000.txt new file mode 100644 index 0000000000000000000000000000000000000000..511ee2e662cabf9004ec90ff78f451a5f1befa6d --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step25000.txt @@ -0,0 +1,6 @@ +eqprApehmHci pn m ses Io- +d s:d oz + mra ,dyio +hre +oPesi'r'nntahyosssu evoh olauauhhi ettsRnioe ,hv osen L ofre +lv.eiauiar,t \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step45000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step45000.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bfe4abdda7a6ae312410f13d0510340e9872e55 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step45000.txt @@ -0,0 +1,5 @@ +i yabr +rh o N mddirTt oo.chei +wmogtuNe faeI:hmhador C irratesgawouetldsEftereu +AtL +dn EflUdUTlt NT' sth UB I Iv krepypoebsemd \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step50000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step50000.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c69f3a2b7d794aa8f2a099f0ddcefd68153731c --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step50000.txt @@ -0,0 +1,7 @@ +chooA?ccieho b:usoy huroeNor rLogrlnUey Oi tw kG r :S alontINihNer ayroe Ng eBmFlaur UiPeTrfd, ssgYSro.y,no +uru +kc.d +m + + +nh \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step75000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step75000.txt new file mode 100644 index 0000000000000000000000000000000000000000..550123d2bee8dcc1243b0800c99d39ed5e824023 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step75000.txt @@ -0,0 +1,4 @@ +oNun,:y,r EsSClUiht +eeF +kDwSny aary,woed mmEo D nddhot:ianinh ltonc EUliem b ,OcDoonssWodsRU aniyr'nb nwsa nr +cemUnrc kao. \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step90000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step90000.txt new file mode 100644 index 0000000000000000000000000000000000000000..1711cd3023ff3556cdcaac6c07ff9b026f7e5c1e --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step90000.txt @@ -0,0 +1,3 @@ +shsutpgtsdaor ttoac hdr ftineos I i +e enoCsodonsnha rg oh'ta Hrosn itb: + veae hrHe aetutin ohNseh;rrrr aB lretaedey n tn,oaln \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step95000.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step95000.txt new file mode 100644 index 0000000000000000000000000000000000000000..b47f61d74598ffd6b08182383d963df15eaed139 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/sample_step95000.txt @@ -0,0 +1,5 @@ +s +e tu s heUtIo; eonecreld + +-Vt htnil yddrbRBerwNiurhywoh wdh, tleh e.thT ehcvt,arete,e n ir rd ,et':deooatSo atN +heChttnaeC \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/train_20260508.log b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/train_20260508.log new file mode 100644 index 0000000000000000000000000000000000000000..11edb7b93b7efcc8e2e6cde83c5f7ed2e4ce1a33 --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/fully_coupled/train_20260508.log @@ -0,0 +1,1003 @@ +[setup] device=cuda rank=0 world_size=1 +[data] chars=1115394 vocab=65 train=1003854 val=111540 +[lta] step=1 loss=4.2222 elapsed=0.6s +[lta] step=100 loss=1.8450 elapsed=1.8s +[lta] step=200 loss=1.7561 elapsed=3.0s +[lta] step=300 loss=1.9150 elapsed=4.3s +[lta] step=400 loss=1.6586 elapsed=5.6s +[lta] step=500 loss=1.4206 elapsed=6.9s +[lta] step=600 loss=1.9273 elapsed=8.2s +[lta] step=700 loss=1.4376 elapsed=9.4s +[lta] step=800 loss=1.2815 elapsed=10.7s +[lta] step=900 loss=1.4497 elapsed=12.0s +[lta] step=1000 loss=1.4084 elapsed=13.3s +[lta] step=1100 loss=1.2890 elapsed=14.5s +[lta] step=1200 loss=1.7359 elapsed=15.8s +[lta] step=1300 loss=1.3264 elapsed=17.0s +[lta] step=1400 loss=1.4002 elapsed=18.3s +[lta] step=1500 loss=1.3572 elapsed=19.5s +[lta] step=1600 loss=1.4206 elapsed=20.8s +[lta] step=1700 loss=1.4917 elapsed=22.0s +[lta] step=1800 loss=1.3414 elapsed=23.2s +[lta] step=1900 loss=1.5009 elapsed=24.5s +[lta] step=2000 loss=1.6065 elapsed=25.7s +[lta] step=2100 loss=1.5693 elapsed=27.0s +[lta] step=2200 loss=1.4767 elapsed=28.2s +[lta] step=2300 loss=1.4250 elapsed=29.4s +[lta] step=2400 loss=1.8003 elapsed=30.7s +[lta] step=2500 loss=1.5193 elapsed=31.9s +[lta] step=2600 loss=1.3710 elapsed=33.2s +[lta] step=2700 loss=1.3172 elapsed=34.4s +[lta] step=2800 loss=1.7724 elapsed=35.7s +[lta] step=2900 loss=1.4140 elapsed=36.9s +[lta] step=3000 loss=1.3210 elapsed=38.2s +[lta] step=3100 loss=1.4156 elapsed=39.5s +[lta] step=3200 loss=1.6092 elapsed=40.8s +[lta] step=3300 loss=1.5761 elapsed=42.0s +[lta] step=3400 loss=1.4935 elapsed=43.2s +[lta] step=3500 loss=1.2316 elapsed=44.6s +[lta] step=3600 loss=1.4649 elapsed=45.8s +[lta] step=3700 loss=1.2780 elapsed=47.1s +[lta] step=3800 loss=1.4396 elapsed=48.3s +[lta] step=3900 loss=1.1640 elapsed=49.6s +[lta] step=4000 loss=1.3992 elapsed=50.9s +[lta] step=4100 loss=1.1859 elapsed=52.1s +[lta] step=4200 loss=1.3129 elapsed=53.4s +[lta] step=4300 loss=1.1304 elapsed=54.7s +[lta] step=4400 loss=1.0271 elapsed=55.9s +[lta] step=4500 loss=1.3089 elapsed=57.2s +[lta] step=4600 loss=1.3738 elapsed=58.5s +[lta] step=4700 loss=1.3290 elapsed=59.8s +[lta] step=4800 loss=1.3902 elapsed=61.1s +[lta] step=4900 loss=1.3487 elapsed=62.4s +[lta] step=5000 loss=1.3706 elapsed=63.8s +[lta] step=5100 loss=1.4469 elapsed=65.6s +[lta] step=5200 loss=1.4831 elapsed=66.8s +[lta] step=5300 loss=1.1395 elapsed=68.1s +[lta] step=5400 loss=1.4036 elapsed=69.4s +[lta] step=5500 loss=1.1528 elapsed=70.7s +[lta] step=5600 loss=1.4918 elapsed=71.8s +[lta] step=5700 loss=1.6237 elapsed=73.0s +[lta] step=5800 loss=1.3665 elapsed=74.3s +[lta] step=5900 loss=1.3967 elapsed=75.5s +[lta] step=6000 loss=1.5762 elapsed=76.7s +[lta] step=6100 loss=1.4610 elapsed=77.9s +[lta] step=6200 loss=1.3276 elapsed=79.2s +[lta] step=6300 loss=1.3476 elapsed=80.4s +[lta] step=6400 loss=1.2409 elapsed=81.6s +[lta] step=6500 loss=1.5704 elapsed=82.8s +[lta] step=6600 loss=1.3708 elapsed=84.0s +[lta] step=6700 loss=1.2954 elapsed=85.2s +[lta] step=6800 loss=1.2387 elapsed=86.4s +[lta] step=6900 loss=1.2702 elapsed=87.6s +[lta] step=7000 loss=1.3994 elapsed=88.9s +[lta] step=7100 loss=1.2580 elapsed=90.1s +[lta] step=7200 loss=1.2993 elapsed=91.5s +[lta] step=7300 loss=1.3300 elapsed=92.7s +[lta] step=7400 loss=1.1963 elapsed=93.9s +[lta] step=7500 loss=1.4701 elapsed=95.2s +[lta] step=7600 loss=1.2309 elapsed=96.4s +[lta] step=7700 loss=1.4081 elapsed=97.6s +[lta] step=7800 loss=1.0855 elapsed=98.8s +[lta] step=7900 loss=1.3356 elapsed=100.0s +[lta] step=8000 loss=1.2938 elapsed=101.3s +[lta] step=8100 loss=1.3482 elapsed=102.6s +[lta] step=8200 loss=1.5297 elapsed=103.8s +[lta] step=8300 loss=1.3456 elapsed=105.0s +[lta] step=8400 loss=1.3221 elapsed=106.2s +[lta] step=8500 loss=1.4717 elapsed=107.4s +[lta] step=8600 loss=1.2505 elapsed=108.7s +[lta] step=8700 loss=1.1624 elapsed=109.9s +[lta] step=8800 loss=1.3366 elapsed=111.1s +[lta] step=8900 loss=1.0750 elapsed=112.3s +[lta] step=9000 loss=1.3675 elapsed=113.5s +[lta] step=9100 loss=1.5427 elapsed=114.7s +[lta] step=9200 loss=1.7134 elapsed=115.9s +[lta] step=9300 loss=1.4191 elapsed=117.1s +[lta] step=9400 loss=1.1845 elapsed=118.3s +[lta] step=9500 loss=1.1564 elapsed=119.5s +[lta] step=9600 loss=1.0650 elapsed=120.8s +[lta] step=9700 loss=1.3949 elapsed=122.0s +[lta] step=9800 loss=1.3684 elapsed=123.2s +[lta] step=9900 loss=1.2664 elapsed=124.4s +[lta] step=10000 loss=1.4135 elapsed=125.7s +[lta] step=10100 loss=1.4184 elapsed=127.6s +[lta] step=10200 loss=1.3302 elapsed=128.8s +[lta] step=10300 loss=1.2442 elapsed=130.0s +[lta] step=10400 loss=1.2125 elapsed=131.3s +[lta] step=10500 loss=1.5820 elapsed=132.5s +[lta] step=10600 loss=1.3391 elapsed=133.7s +[lta] step=10700 loss=1.2231 elapsed=134.9s +[lta] step=10800 loss=1.5244 elapsed=136.2s +[lta] step=10900 loss=1.1619 elapsed=137.4s +[lta] step=11000 loss=1.4652 elapsed=138.7s +[lta] step=11100 loss=1.3445 elapsed=140.0s +[lta] step=11200 loss=1.6548 elapsed=141.2s +[lta] step=11300 loss=1.3443 elapsed=142.4s +[lta] step=11400 loss=1.3192 elapsed=143.6s +[lta] step=11500 loss=1.0525 elapsed=144.8s +[lta] step=11600 loss=1.4969 elapsed=146.0s +[lta] step=11700 loss=1.3183 elapsed=147.2s +[lta] step=11800 loss=1.0381 elapsed=148.5s +[lta] step=11900 loss=1.1536 elapsed=149.7s +[lta] step=12000 loss=1.3533 elapsed=150.9s +[lta] step=12100 loss=1.3423 elapsed=152.1s +[lta] step=12200 loss=1.1819 elapsed=153.4s +[lta] step=12300 loss=1.2134 elapsed=154.6s +[lta] step=12400 loss=1.4568 elapsed=155.8s +[lta] step=12500 loss=1.3042 elapsed=157.0s +[lta] step=12600 loss=1.2657 elapsed=158.3s +[lta] step=12700 loss=1.3681 elapsed=159.5s +[lta] step=12800 loss=1.5409 elapsed=160.7s +[lta] step=12900 loss=1.6375 elapsed=161.9s +[lta] step=13000 loss=1.3226 elapsed=163.1s +[lta] step=13100 loss=1.3102 elapsed=164.4s +[lta] step=13200 loss=1.1680 elapsed=165.6s +[lta] step=13300 loss=1.4330 elapsed=166.8s +[lta] step=13400 loss=1.1262 elapsed=167.9s +[lta] step=13500 loss=1.7662 elapsed=169.1s +[lta] step=13600 loss=1.3443 elapsed=170.4s +[lta] step=13700 loss=1.1177 elapsed=171.6s +[lta] step=13800 loss=1.0678 elapsed=172.9s +[lta] step=13900 loss=1.3296 elapsed=174.1s +[lta] step=14000 loss=1.2542 elapsed=175.3s +[lta] step=14100 loss=1.3471 elapsed=176.6s +[lta] step=14200 loss=1.4186 elapsed=177.8s +[lta] step=14300 loss=1.1859 elapsed=179.0s +[lta] step=14400 loss=1.3126 elapsed=180.3s +[lta] step=14500 loss=1.3049 elapsed=181.5s +[lta] step=14600 loss=1.6016 elapsed=182.8s +[lta] step=14700 loss=1.4705 elapsed=184.0s +[lta] step=14800 loss=0.9646 elapsed=185.3s +[lta] step=14900 loss=1.1948 elapsed=186.6s +[lta] step=15000 loss=1.3511 elapsed=187.9s +[lta] step=15100 loss=1.7028 elapsed=189.9s +[lta] step=15200 loss=1.4958 elapsed=191.2s +[lta] step=15300 loss=1.1068 elapsed=192.5s +[lta] step=15400 loss=1.6759 elapsed=193.8s +[lta] step=15500 loss=1.5520 elapsed=195.1s +[lta] step=15600 loss=1.5388 elapsed=196.5s +[lta] step=15700 loss=1.6461 elapsed=197.8s +[lta] step=15800 loss=1.4649 elapsed=199.1s +[lta] step=15900 loss=1.1552 elapsed=200.4s +[lta] step=16000 loss=1.3603 elapsed=201.7s +[lta] step=16100 loss=1.6220 elapsed=203.0s +[lta] step=16200 loss=1.3383 elapsed=204.4s +[lta] step=16300 loss=1.2730 elapsed=205.8s +[lta] step=16400 loss=1.1297 elapsed=207.1s +[lta] step=16500 loss=1.2388 elapsed=208.4s +[lta] step=16600 loss=1.3223 elapsed=209.7s +[lta] step=16700 loss=1.1542 elapsed=210.9s +[lta] step=16800 loss=1.3284 elapsed=212.2s +[lta] step=16900 loss=1.2544 elapsed=213.5s +[lta] step=17000 loss=1.2920 elapsed=214.8s +[lta] step=17100 loss=1.1597 elapsed=216.1s +[lta] step=17200 loss=1.4058 elapsed=217.4s +[lta] step=17300 loss=1.5892 elapsed=218.8s +[lta] step=17400 loss=1.6447 elapsed=220.1s +[lta] step=17500 loss=1.6046 elapsed=221.4s +[lta] step=17600 loss=1.3478 elapsed=222.7s +[lta] step=17700 loss=1.3610 elapsed=224.0s +[lta] step=17800 loss=1.1968 elapsed=225.3s +[lta] step=17900 loss=1.4045 elapsed=226.6s +[lta] step=18000 loss=1.0825 elapsed=227.9s +[lta] step=18100 loss=1.3934 elapsed=229.2s +[lta] step=18200 loss=1.1735 elapsed=230.5s +[lta] step=18300 loss=1.2780 elapsed=231.8s +[lta] step=18400 loss=1.5762 elapsed=233.1s +[lta] step=18500 loss=1.1443 elapsed=234.4s +[lta] step=18600 loss=1.4652 elapsed=235.7s +[lta] step=18700 loss=1.2725 elapsed=237.0s +[lta] step=18800 loss=1.3537 elapsed=238.3s +[lta] step=18900 loss=1.4816 elapsed=239.6s +[lta] step=19000 loss=1.4489 elapsed=240.9s +[lta] step=19100 loss=1.4827 elapsed=242.3s +[lta] step=19200 loss=1.1843 elapsed=243.6s +[lta] step=19300 loss=1.2762 elapsed=244.8s +[lta] step=19400 loss=1.3876 elapsed=246.2s +[lta] step=19500 loss=1.3833 elapsed=247.4s +[lta] step=19600 loss=1.3998 elapsed=248.7s +[lta] step=19700 loss=1.1358 elapsed=250.0s +[lta] step=19800 loss=1.1893 elapsed=251.3s +[lta] step=19900 loss=1.2307 elapsed=252.6s +[lta] step=20000 loss=1.4517 elapsed=253.9s +[lta] step=20100 loss=1.6017 elapsed=255.7s +[lta] step=20200 loss=1.3589 elapsed=257.0s +[lta] step=20300 loss=1.4664 elapsed=258.3s +[lta] step=20400 loss=1.2932 elapsed=259.6s +[lta] step=20500 loss=1.5413 elapsed=261.0s +[lta] step=20600 loss=1.4033 elapsed=262.3s +[lta] step=20700 loss=1.3647 elapsed=263.6s +[lta] step=20800 loss=1.2120 elapsed=264.9s +[lta] step=20900 loss=1.4506 elapsed=266.1s +[lta] step=21000 loss=1.2459 elapsed=267.4s +[lta] step=21100 loss=1.6437 elapsed=268.6s +[lta] step=21200 loss=1.3312 elapsed=269.9s +[lta] step=21300 loss=1.1758 elapsed=271.2s +[lta] step=21400 loss=1.2823 elapsed=272.5s +[lta] step=21500 loss=1.4399 elapsed=273.8s +[lta] step=21600 loss=1.2147 elapsed=275.0s +[lta] step=21700 loss=1.4282 elapsed=276.3s +[lta] step=21800 loss=1.1880 elapsed=277.6s +[lta] step=21900 loss=1.5120 elapsed=278.9s +[lta] step=22000 loss=1.3844 elapsed=280.1s +[lta] step=22100 loss=1.5149 elapsed=281.4s +[lta] step=22200 loss=1.2016 elapsed=282.7s +[lta] step=22300 loss=1.5345 elapsed=283.9s +[lta] step=22400 loss=1.4043 elapsed=285.2s +[lta] step=22500 loss=1.2664 elapsed=286.5s +[lta] step=22600 loss=1.6499 elapsed=287.8s +[lta] step=22700 loss=1.2585 elapsed=289.0s +[lta] step=22800 loss=1.2392 elapsed=290.3s +[lta] step=22900 loss=1.4584 elapsed=291.6s +[lta] step=23000 loss=1.6206 elapsed=292.8s +[lta] step=23100 loss=1.1333 elapsed=294.1s +[lta] step=23200 loss=1.2261 elapsed=295.4s +[lta] step=23300 loss=1.5583 elapsed=296.7s +[lta] step=23400 loss=1.3310 elapsed=297.9s +[lta] step=23500 loss=1.4089 elapsed=299.2s +[lta] step=23600 loss=1.5014 elapsed=300.5s +[lta] step=23700 loss=1.1671 elapsed=301.8s +[lta] step=23800 loss=1.3353 elapsed=303.1s +[lta] step=23900 loss=1.3679 elapsed=304.4s +[lta] step=24000 loss=1.3476 elapsed=305.7s +[lta] step=24100 loss=1.4292 elapsed=307.0s +[lta] step=24200 loss=1.1177 elapsed=308.5s +[lta] step=24300 loss=1.2348 elapsed=309.8s +[lta] step=24400 loss=1.1201 elapsed=311.1s +[lta] step=24500 loss=1.4805 elapsed=312.4s +[lta] step=24600 loss=1.4826 elapsed=313.7s +[lta] step=24700 loss=1.6332 elapsed=315.0s +[lta] step=24800 loss=1.3486 elapsed=316.3s +[lta] step=24900 loss=1.3032 elapsed=317.6s +[lta] step=25000 loss=1.3446 elapsed=318.9s +[lta] step=25100 loss=1.2127 elapsed=320.8s +[lta] step=25200 loss=1.4239 elapsed=322.2s +[lta] step=25300 loss=1.4934 elapsed=323.5s +[lta] step=25400 loss=1.3959 elapsed=324.8s +[lta] step=25500 loss=1.4038 elapsed=326.1s +[lta] step=25600 loss=1.1055 elapsed=327.4s +[lta] step=25700 loss=1.6250 elapsed=328.7s +[lta] step=25800 loss=0.9852 elapsed=329.9s +[lta] step=25900 loss=1.3160 elapsed=331.2s +[lta] step=26000 loss=1.2854 elapsed=332.5s +[lta] step=26100 loss=1.3964 elapsed=333.8s +[lta] step=26200 loss=1.3284 elapsed=335.1s +[lta] step=26300 loss=1.3500 elapsed=336.4s +[lta] step=26400 loss=1.3001 elapsed=337.7s +[lta] step=26500 loss=1.3705 elapsed=339.0s +[lta] step=26600 loss=1.4207 elapsed=340.3s +[lta] step=26700 loss=1.5464 elapsed=341.6s +[lta] step=26800 loss=1.4506 elapsed=342.9s +[lta] step=26900 loss=1.3967 elapsed=344.3s +[lta] step=27000 loss=1.2102 elapsed=345.5s +[lta] step=27100 loss=1.1693 elapsed=346.8s +[lta] step=27200 loss=1.3228 elapsed=348.1s +[lta] step=27300 loss=1.2297 elapsed=349.3s +[lta] step=27400 loss=1.3952 elapsed=350.6s +[lta] step=27500 loss=1.2018 elapsed=351.9s +[lta] step=27600 loss=1.3741 elapsed=353.2s +[lta] step=27700 loss=1.1909 elapsed=354.4s +[lta] step=27800 loss=1.1710 elapsed=355.8s +[lta] step=27900 loss=1.3902 elapsed=357.1s +[lta] step=28000 loss=1.3860 elapsed=358.4s +[lta] step=28100 loss=1.3649 elapsed=359.7s +[lta] step=28200 loss=1.6921 elapsed=360.9s +[lta] step=28300 loss=1.0732 elapsed=362.2s +[lta] step=28400 loss=1.1077 elapsed=363.5s +[lta] step=28500 loss=1.0810 elapsed=364.8s +[lta] step=28600 loss=1.3617 elapsed=366.1s +[lta] step=28700 loss=1.3627 elapsed=367.3s +[lta] step=28800 loss=1.4198 elapsed=368.6s +[lta] step=28900 loss=1.1640 elapsed=369.8s +[lta] step=29000 loss=1.2501 elapsed=371.1s +[lta] step=29100 loss=1.4653 elapsed=372.4s +[lta] step=29200 loss=1.2405 elapsed=373.6s +[lta] step=29300 loss=1.0849 elapsed=374.9s +[lta] step=29400 loss=1.2420 elapsed=376.2s +[lta] step=29500 loss=1.1896 elapsed=377.5s +[lta] step=29600 loss=1.3366 elapsed=378.8s +[lta] step=29700 loss=1.5040 elapsed=380.1s +[lta] step=29800 loss=1.6545 elapsed=381.4s +[lta] step=29900 loss=1.1395 elapsed=382.7s +[lta] step=30000 loss=1.1772 elapsed=384.0s +[lta] step=30100 loss=1.2030 elapsed=385.9s +[lta] step=30200 loss=1.0661 elapsed=387.2s +[lta] step=30300 loss=0.9676 elapsed=388.4s +[lta] step=30400 loss=1.4963 elapsed=389.7s +[lta] step=30500 loss=1.3757 elapsed=391.1s +[lta] step=30600 loss=1.3492 elapsed=392.5s +[lta] step=30700 loss=1.3263 elapsed=393.8s +[lta] step=30800 loss=1.1972 elapsed=395.1s +[lta] step=30900 loss=1.1764 elapsed=396.3s +[lta] step=31000 loss=1.4516 elapsed=397.7s +[lta] step=31100 loss=1.5802 elapsed=399.0s +[lta] step=31200 loss=1.2461 elapsed=400.3s +[lta] step=31300 loss=1.2258 elapsed=401.6s +[lta] step=31400 loss=1.0776 elapsed=403.0s +[lta] step=31500 loss=1.2819 elapsed=404.3s +[lta] step=31600 loss=1.3899 elapsed=405.5s +[lta] step=31700 loss=1.3537 elapsed=406.8s +[lta] step=31800 loss=1.8877 elapsed=408.1s +[lta] step=31900 loss=1.3406 elapsed=409.4s +[lta] step=32000 loss=1.4181 elapsed=410.8s +[lta] step=32100 loss=1.1756 elapsed=412.1s +[lta] step=32200 loss=1.4334 elapsed=413.4s +[lta] step=32300 loss=1.4809 elapsed=414.7s +[lta] step=32400 loss=1.1814 elapsed=416.0s +[lta] step=32500 loss=1.2318 elapsed=417.2s +[lta] step=32600 loss=1.0699 elapsed=418.5s +[lta] step=32700 loss=1.2143 elapsed=419.8s +[lta] step=32800 loss=1.4265 elapsed=421.0s +[lta] step=32900 loss=1.1556 elapsed=422.3s +[lta] step=33000 loss=1.2405 elapsed=423.5s +[lta] step=33100 loss=1.5153 elapsed=424.8s +[lta] step=33200 loss=1.4345 elapsed=426.1s +[lta] step=33300 loss=1.3285 elapsed=427.3s +[lta] step=33400 loss=0.8026 elapsed=428.5s +[lta] step=33500 loss=1.1399 elapsed=429.8s +[lta] step=33600 loss=1.1501 elapsed=431.0s +[lta] step=33700 loss=1.2060 elapsed=432.3s +[lta] step=33800 loss=1.1551 elapsed=433.6s +[lta] step=33900 loss=1.7409 elapsed=434.9s +[lta] step=34000 loss=1.0799 elapsed=436.1s +[lta] step=34100 loss=1.5239 elapsed=437.3s +[lta] step=34200 loss=1.5126 elapsed=438.6s +[lta] step=34300 loss=1.2438 elapsed=439.8s +[lta] step=34400 loss=1.2670 elapsed=441.1s +[lta] step=34500 loss=1.2285 elapsed=442.4s +[lta] step=34600 loss=1.1562 elapsed=443.6s +[lta] step=34700 loss=1.3539 elapsed=444.9s +[lta] step=34800 loss=1.3300 elapsed=446.2s +[lta] step=34900 loss=1.2096 elapsed=447.5s +[lta] step=35000 loss=1.1480 elapsed=448.7s +[lta] step=35100 loss=1.1891 elapsed=450.7s +[lta] step=35200 loss=1.3176 elapsed=451.9s +[lta] step=35300 loss=1.3663 elapsed=453.2s +[lta] step=35400 loss=1.1832 elapsed=454.5s +[lta] step=35500 loss=1.3070 elapsed=455.8s +[lta] step=35600 loss=1.3137 elapsed=457.1s +[lta] step=35700 loss=1.2562 elapsed=458.4s +[lta] step=35800 loss=1.2161 elapsed=459.7s +[lta] step=35900 loss=1.6529 elapsed=461.0s +[lta] step=36000 loss=1.1629 elapsed=462.2s +[lta] step=36100 loss=1.4077 elapsed=463.5s +[lta] step=36200 loss=1.4873 elapsed=464.8s +[lta] step=36300 loss=1.3678 elapsed=466.0s +[lta] step=36400 loss=1.1364 elapsed=467.3s +[lta] step=36500 loss=1.4035 elapsed=468.5s +[lta] step=36600 loss=1.3162 elapsed=469.8s +[lta] step=36700 loss=1.3350 elapsed=471.1s +[lta] step=36800 loss=1.2825 elapsed=472.3s +[lta] step=36900 loss=1.5472 elapsed=473.6s +[lta] step=37000 loss=1.6212 elapsed=474.9s +[lta] step=37100 loss=1.0297 elapsed=476.2s +[lta] step=37200 loss=1.4324 elapsed=477.5s +[lta] step=37300 loss=1.4030 elapsed=478.7s +[lta] step=37400 loss=1.5501 elapsed=480.1s +[lta] step=37500 loss=1.0987 elapsed=481.3s +[lta] step=37600 loss=1.2909 elapsed=482.6s +[lta] step=37700 loss=1.2936 elapsed=483.9s +[lta] step=37800 loss=1.4565 elapsed=485.2s +[lta] step=37900 loss=1.3082 elapsed=486.5s +[lta] step=38000 loss=1.3880 elapsed=487.7s +[lta] step=38100 loss=1.1165 elapsed=488.9s +[lta] step=38200 loss=1.1059 elapsed=490.2s +[lta] step=38300 loss=1.2597 elapsed=491.4s +[lta] step=38400 loss=1.3804 elapsed=492.7s +[lta] step=38500 loss=1.4093 elapsed=493.9s +[lta] step=38600 loss=1.3300 elapsed=495.2s +[lta] step=38700 loss=1.5723 elapsed=496.5s +[lta] step=38800 loss=1.1719 elapsed=497.8s +[lta] step=38900 loss=1.4054 elapsed=499.0s +[lta] step=39000 loss=1.2412 elapsed=500.3s +[lta] step=39100 loss=1.4588 elapsed=501.5s +[lta] step=39200 loss=1.2718 elapsed=502.8s +[lta] step=39300 loss=1.3414 elapsed=504.0s +[lta] step=39400 loss=1.3583 elapsed=505.3s +[lta] step=39500 loss=1.0987 elapsed=506.6s +[lta] step=39600 loss=1.3804 elapsed=507.8s +[lta] step=39700 loss=1.2638 elapsed=509.1s +[lta] step=39800 loss=1.2997 elapsed=510.4s +[lta] step=39900 loss=1.2933 elapsed=511.6s +[lta] step=40000 loss=1.2809 elapsed=512.9s +[lta] step=40100 loss=1.1723 elapsed=514.8s +[lta] step=40200 loss=1.3639 elapsed=516.1s +[lta] step=40300 loss=1.3096 elapsed=517.3s +[lta] step=40400 loss=1.4081 elapsed=518.6s +[lta] step=40500 loss=1.3553 elapsed=519.8s +[lta] step=40600 loss=1.2526 elapsed=521.1s +[lta] step=40700 loss=1.4632 elapsed=522.4s +[lta] step=40800 loss=1.6200 elapsed=523.6s +[lta] step=40900 loss=1.1553 elapsed=524.9s +[lta] step=41000 loss=1.6181 elapsed=526.2s +[lta] step=41100 loss=1.2028 elapsed=527.4s +[lta] step=41200 loss=1.3606 elapsed=528.7s +[lta] step=41300 loss=1.2083 elapsed=529.9s +[lta] step=41400 loss=1.0373 elapsed=531.2s +[lta] step=41500 loss=1.3789 elapsed=532.5s +[lta] step=41600 loss=1.1507 elapsed=533.7s +[lta] step=41700 loss=1.4894 elapsed=535.0s +[lta] step=41800 loss=1.5876 elapsed=536.3s +[lta] step=41900 loss=1.5078 elapsed=537.5s +[lta] step=42000 loss=1.1585 elapsed=538.8s +[lta] step=42100 loss=1.0376 elapsed=540.0s +[lta] step=42200 loss=1.4157 elapsed=541.3s +[lta] step=42300 loss=1.5781 elapsed=542.5s +[lta] step=42400 loss=1.2194 elapsed=543.8s +[lta] step=42500 loss=1.2390 elapsed=545.1s +[lta] step=42600 loss=1.2935 elapsed=546.3s +[lta] step=42700 loss=1.4900 elapsed=547.5s +[lta] step=42800 loss=1.4272 elapsed=548.8s +[lta] step=42900 loss=1.4476 elapsed=550.0s +[lta] step=43000 loss=1.5144 elapsed=551.3s +[lta] step=43100 loss=1.6882 elapsed=552.5s +[lta] step=43200 loss=1.6010 elapsed=553.8s +[lta] step=43300 loss=1.4335 elapsed=555.1s +[lta] step=43400 loss=1.3231 elapsed=556.3s +[lta] step=43500 loss=1.4760 elapsed=557.6s +[lta] step=43600 loss=1.4895 elapsed=558.9s +[lta] step=43700 loss=1.3692 elapsed=560.2s +[lta] step=43800 loss=1.3574 elapsed=561.4s +[lta] step=43900 loss=1.4115 elapsed=562.6s +[lta] step=44000 loss=1.3024 elapsed=563.9s +[lta] step=44100 loss=1.7433 elapsed=565.2s +[lta] step=44200 loss=1.1527 elapsed=566.5s +[lta] step=44300 loss=1.3216 elapsed=567.7s +[lta] step=44400 loss=1.4603 elapsed=569.0s +[lta] step=44500 loss=1.4730 elapsed=570.2s +[lta] step=44600 loss=1.5545 elapsed=571.5s +[lta] step=44700 loss=1.2311 elapsed=572.7s +[lta] step=44800 loss=1.4423 elapsed=574.0s +[lta] step=44900 loss=1.5742 elapsed=575.3s +[lta] step=45000 loss=1.5682 elapsed=576.5s +[lta] step=45100 loss=1.5199 elapsed=578.4s +[lta] step=45200 loss=1.6657 elapsed=579.7s +[lta] step=45300 loss=1.7137 elapsed=581.1s +[lta] step=45400 loss=1.3142 elapsed=582.3s +[lta] step=45500 loss=1.1302 elapsed=583.5s +[lta] step=45600 loss=1.4629 elapsed=584.8s +[lta] step=45700 loss=0.9898 elapsed=586.1s +[lta] step=45800 loss=1.4328 elapsed=587.3s +[lta] step=45900 loss=1.5601 elapsed=588.5s +[lta] step=46000 loss=1.1768 elapsed=589.8s +[lta] step=46100 loss=1.3095 elapsed=591.1s +[lta] step=46200 loss=1.2664 elapsed=592.3s +[lta] step=46300 loss=1.2281 elapsed=593.5s +[lta] step=46400 loss=1.2774 elapsed=594.8s +[lta] step=46500 loss=1.1552 elapsed=596.1s +[lta] step=46600 loss=1.2441 elapsed=597.3s +[lta] step=46700 loss=1.2083 elapsed=598.6s +[lta] step=46800 loss=1.7312 elapsed=599.9s +[lta] step=46900 loss=1.3698 elapsed=601.1s +[lta] step=47000 loss=1.5070 elapsed=602.4s +[lta] step=47100 loss=1.1763 elapsed=603.7s +[lta] step=47200 loss=1.4895 elapsed=604.9s +[lta] step=47300 loss=1.4250 elapsed=606.2s +[lta] step=47400 loss=1.2867 elapsed=607.4s +[lta] step=47500 loss=1.1900 elapsed=608.7s +[lta] step=47600 loss=1.2550 elapsed=609.9s +[lta] step=47700 loss=1.4358 elapsed=611.2s +[lta] step=47800 loss=1.4067 elapsed=612.5s +[lta] step=47900 loss=1.5147 elapsed=613.7s +[lta] step=48000 loss=1.3386 elapsed=615.0s +[lta] step=48100 loss=1.2289 elapsed=616.2s +[lta] step=48200 loss=1.4825 elapsed=617.5s +[lta] step=48300 loss=1.5823 elapsed=618.7s +[lta] step=48400 loss=1.2347 elapsed=620.0s +[lta] step=48500 loss=1.1570 elapsed=621.2s +[lta] step=48600 loss=1.0485 elapsed=622.5s +[lta] step=48700 loss=1.1019 elapsed=623.7s +[lta] step=48800 loss=1.1573 elapsed=624.9s +[lta] step=48900 loss=1.6130 elapsed=626.2s +[lta] step=49000 loss=1.4099 elapsed=627.4s +[lta] step=49100 loss=1.6396 elapsed=628.7s +[lta] step=49200 loss=1.3131 elapsed=629.9s +[lta] step=49300 loss=1.2070 elapsed=631.2s +[lta] step=49400 loss=1.2542 elapsed=632.4s +[lta] step=49500 loss=1.2198 elapsed=633.7s +[lta] step=49600 loss=1.1426 elapsed=634.9s +[lta] step=49700 loss=1.4572 elapsed=636.2s +[lta] step=49800 loss=1.2620 elapsed=637.4s +[lta] step=49900 loss=1.5092 elapsed=638.6s +[lta] step=50000 loss=1.2529 elapsed=639.9s +[lta] step=50100 loss=1.3805 elapsed=641.8s +[lta] step=50200 loss=1.3370 elapsed=643.0s +[lta] step=50300 loss=1.5624 elapsed=644.2s +[lta] step=50400 loss=1.3348 elapsed=645.5s +[lta] step=50500 loss=1.2616 elapsed=646.7s +[lta] step=50600 loss=1.5515 elapsed=648.2s +[lta] step=50700 loss=1.5011 elapsed=649.5s +[lta] step=50800 loss=1.5153 elapsed=650.7s +[lta] step=50900 loss=1.4810 elapsed=651.9s +[lta] step=51000 loss=1.3779 elapsed=653.2s +[lta] step=51100 loss=1.3052 elapsed=654.4s +[lta] step=51200 loss=1.2498 elapsed=655.7s +[lta] step=51300 loss=1.1393 elapsed=656.9s +[lta] step=51400 loss=1.4548 elapsed=658.1s +[lta] step=51500 loss=1.1154 elapsed=659.3s +[lta] step=51600 loss=1.4306 elapsed=660.3s +[lta] step=51700 loss=1.2941 elapsed=661.3s +[lta] step=51800 loss=1.6820 elapsed=662.4s +[lta] step=51900 loss=1.3235 elapsed=663.4s +[lta] step=52000 loss=1.1151 elapsed=664.5s +[lta] step=52100 loss=1.2873 elapsed=665.5s +[lta] step=52200 loss=1.1819 elapsed=666.5s +[lta] step=52300 loss=1.2283 elapsed=667.6s +[lta] step=52400 loss=1.0460 elapsed=668.6s +[lta] step=52500 loss=1.3302 elapsed=669.6s +[lta] step=52600 loss=1.1414 elapsed=670.6s +[lta] step=52700 loss=1.1923 elapsed=671.6s +[lta] step=52800 loss=1.1990 elapsed=672.7s +[lta] step=52900 loss=1.0802 elapsed=673.7s +[lta] step=53000 loss=1.2574 elapsed=674.7s +[lta] step=53100 loss=1.2804 elapsed=675.8s +[lta] step=53200 loss=1.2455 elapsed=676.8s +[lta] step=53300 loss=1.5722 elapsed=677.9s +[lta] step=53400 loss=1.2636 elapsed=678.9s +[lta] step=53500 loss=1.5705 elapsed=679.9s +[lta] step=53600 loss=1.4099 elapsed=680.9s +[lta] step=53700 loss=1.5943 elapsed=681.9s +[lta] step=53800 loss=1.0960 elapsed=682.9s +[lta] step=53900 loss=1.4387 elapsed=684.0s +[lta] step=54000 loss=0.9476 elapsed=685.0s +[lta] step=54100 loss=1.1379 elapsed=686.0s +[lta] step=54200 loss=1.2960 elapsed=687.0s +[lta] step=54300 loss=1.2527 elapsed=688.1s +[lta] step=54400 loss=1.4341 elapsed=689.1s +[lta] step=54500 loss=1.4990 elapsed=690.1s +[lta] step=54600 loss=1.1930 elapsed=691.1s +[lta] step=54700 loss=1.4773 elapsed=692.1s +[lta] step=54800 loss=1.3046 elapsed=693.2s +[lta] step=54900 loss=1.2048 elapsed=694.2s +[lta] step=55000 loss=1.1798 elapsed=695.2s +[lta] step=55100 loss=1.3471 elapsed=696.8s +[lta] step=55200 loss=1.2009 elapsed=697.8s +[lta] step=55300 loss=1.6893 elapsed=698.8s +[lta] step=55400 loss=1.0613 elapsed=699.9s +[lta] step=55500 loss=1.3591 elapsed=700.9s +[lta] step=55600 loss=1.3023 elapsed=701.9s +[lta] step=55700 loss=1.2704 elapsed=703.0s +[lta] step=55800 loss=1.2308 elapsed=704.0s +[lta] step=55900 loss=1.0475 elapsed=705.1s +[lta] step=56000 loss=1.3536 elapsed=706.1s +[lta] step=56100 loss=1.2672 elapsed=707.1s +[lta] step=56200 loss=1.3866 elapsed=708.1s +[lta] step=56300 loss=1.2774 elapsed=709.1s +[lta] step=56400 loss=1.4275 elapsed=710.2s +[lta] step=56500 loss=1.2744 elapsed=711.2s +[lta] step=56600 loss=1.1990 elapsed=712.2s +[lta] step=56700 loss=1.3126 elapsed=713.2s +[lta] step=56800 loss=1.5069 elapsed=714.2s +[lta] step=56900 loss=1.4362 elapsed=715.3s +[lta] step=57000 loss=1.4009 elapsed=716.3s +[lta] step=57100 loss=1.2917 elapsed=717.3s +[lta] step=57200 loss=1.3872 elapsed=718.3s +[lta] step=57300 loss=1.1614 elapsed=719.3s +[lta] step=57400 loss=1.5065 elapsed=720.3s +[lta] step=57500 loss=1.2019 elapsed=721.4s +[lta] step=57600 loss=1.3822 elapsed=722.4s +[lta] step=57700 loss=1.2920 elapsed=723.4s +[lta] step=57800 loss=1.0294 elapsed=724.4s +[lta] step=57900 loss=1.3050 elapsed=725.4s +[lta] step=58000 loss=1.2117 elapsed=726.5s +[lta] step=58100 loss=1.7084 elapsed=727.5s +[lta] step=58200 loss=1.0742 elapsed=728.5s +[lta] step=58300 loss=1.2096 elapsed=729.5s +[lta] step=58400 loss=1.1676 elapsed=730.5s +[lta] step=58500 loss=1.3022 elapsed=731.5s +[lta] step=58600 loss=1.4643 elapsed=732.6s +[lta] step=58700 loss=1.2457 elapsed=733.6s +[lta] step=58800 loss=1.1186 elapsed=734.6s +[lta] step=58900 loss=1.8402 elapsed=735.6s +[lta] step=59000 loss=1.1796 elapsed=736.6s +[lta] step=59100 loss=1.6970 elapsed=737.6s +[lta] step=59200 loss=1.5313 elapsed=738.6s +[lta] step=59300 loss=1.3583 elapsed=739.7s +[lta] step=59400 loss=1.3778 elapsed=740.7s +[lta] step=59500 loss=1.3040 elapsed=741.7s +[lta] step=59600 loss=1.3959 elapsed=742.7s +[lta] step=59700 loss=1.3311 elapsed=743.8s +[lta] step=59800 loss=1.4368 elapsed=744.8s +[lta] step=59900 loss=1.1682 elapsed=745.8s +[lta] step=60000 loss=1.1130 elapsed=746.8s +[lta] step=60100 loss=1.4080 elapsed=748.5s +[lta] step=60200 loss=1.4544 elapsed=749.5s +[lta] step=60300 loss=1.5719 elapsed=750.5s +[lta] step=60400 loss=1.2092 elapsed=751.5s +[lta] step=60500 loss=1.1698 elapsed=752.6s +[lta] step=60600 loss=1.2516 elapsed=753.6s +[lta] step=60700 loss=1.1676 elapsed=754.6s +[lta] step=60800 loss=1.3794 elapsed=755.6s +[lta] step=60900 loss=1.1919 elapsed=756.6s +[lta] step=61000 loss=1.1281 elapsed=757.7s +[lta] step=61100 loss=1.3324 elapsed=758.7s +[lta] step=61200 loss=1.3401 elapsed=759.7s +[lta] step=61300 loss=1.5451 elapsed=760.8s +[lta] step=61400 loss=1.2518 elapsed=761.8s +[lta] step=61500 loss=1.2514 elapsed=762.8s +[lta] step=61600 loss=1.2879 elapsed=763.8s +[lta] step=61700 loss=1.3700 elapsed=764.8s +[lta] step=61800 loss=1.3387 elapsed=765.9s +[lta] step=61900 loss=1.2293 elapsed=766.9s +[lta] step=62000 loss=1.4950 elapsed=767.9s +[lta] step=62100 loss=1.4201 elapsed=768.9s +[lta] step=62200 loss=1.5891 elapsed=770.0s +[lta] step=62300 loss=1.0990 elapsed=771.0s +[lta] step=62400 loss=1.4487 elapsed=772.0s +[lta] step=62500 loss=1.3450 elapsed=773.0s +[lta] step=62600 loss=1.4563 elapsed=774.0s +[lta] step=62700 loss=1.3545 elapsed=775.0s +[lta] step=62800 loss=1.2578 elapsed=776.1s +[lta] step=62900 loss=1.2735 elapsed=777.1s +[lta] step=63000 loss=1.2955 elapsed=778.1s +[lta] step=63100 loss=1.6273 elapsed=779.1s +[lta] step=63200 loss=1.1894 elapsed=780.1s +[lta] step=63300 loss=1.1659 elapsed=781.1s +[lta] step=63400 loss=1.2245 elapsed=782.2s +[lta] step=63500 loss=1.2800 elapsed=783.2s +[lta] step=63600 loss=1.2318 elapsed=784.2s +[lta] step=63700 loss=1.2560 elapsed=785.2s +[lta] step=63800 loss=1.4650 elapsed=786.2s +[lta] step=63900 loss=1.2700 elapsed=787.2s +[lta] step=64000 loss=1.1320 elapsed=788.3s +[lta] step=64100 loss=1.0726 elapsed=789.3s +[lta] step=64200 loss=1.4597 elapsed=790.4s +[lta] step=64300 loss=1.2332 elapsed=791.4s +[lta] step=64400 loss=1.1344 elapsed=792.4s +[lta] step=64500 loss=1.3270 elapsed=793.4s +[lta] step=64600 loss=1.0988 elapsed=794.5s +[lta] step=64700 loss=1.3002 elapsed=795.5s +[lta] step=64800 loss=1.4814 elapsed=796.5s +[lta] step=64900 loss=1.5911 elapsed=797.5s +[lta] step=65000 loss=1.3940 elapsed=798.6s +[lta] step=65100 loss=1.3630 elapsed=800.1s +[lta] step=65200 loss=1.3102 elapsed=801.2s +[lta] step=65300 loss=1.3986 elapsed=802.2s +[lta] step=65400 loss=1.2009 elapsed=803.2s +[lta] step=65500 loss=1.2049 elapsed=804.2s +[lta] step=65600 loss=1.4406 elapsed=805.3s +[lta] step=65700 loss=1.4448 elapsed=806.3s +[lta] step=65800 loss=1.5198 elapsed=807.3s +[lta] step=65900 loss=1.3870 elapsed=808.4s +[lta] step=66000 loss=1.3845 elapsed=809.4s +[lta] step=66100 loss=1.1654 elapsed=810.4s +[lta] step=66200 loss=1.3205 elapsed=811.4s +[lta] step=66300 loss=1.4312 elapsed=812.4s +[lta] step=66400 loss=1.5687 elapsed=813.4s +[lta] step=66500 loss=1.5236 elapsed=814.5s +[lta] step=66600 loss=1.2731 elapsed=815.5s +[lta] step=66700 loss=1.1677 elapsed=816.5s +[lta] step=66800 loss=1.4876 elapsed=817.5s +[lta] step=66900 loss=1.3103 elapsed=818.5s +[lta] step=67000 loss=1.5609 elapsed=819.6s +[lta] step=67100 loss=1.3716 elapsed=820.6s +[lta] step=67200 loss=1.4518 elapsed=821.6s +[lta] step=67300 loss=1.3082 elapsed=822.7s +[lta] step=67400 loss=1.2509 elapsed=823.7s +[lta] step=67500 loss=1.3826 elapsed=824.7s +[lta] step=67600 loss=1.3717 elapsed=825.8s +[lta] step=67700 loss=1.3404 elapsed=826.8s +[lta] step=67800 loss=1.0857 elapsed=827.8s +[lta] step=67900 loss=1.2133 elapsed=828.8s +[lta] step=68000 loss=1.5882 elapsed=829.9s +[lta] step=68100 loss=1.2564 elapsed=830.9s +[lta] step=68200 loss=1.5340 elapsed=831.9s +[lta] step=68300 loss=1.1195 elapsed=832.9s +[lta] step=68400 loss=1.3289 elapsed=833.9s +[lta] step=68500 loss=1.4179 elapsed=834.9s +[lta] step=68600 loss=1.1720 elapsed=835.9s +[lta] step=68700 loss=1.2937 elapsed=836.9s +[lta] step=68800 loss=1.4651 elapsed=838.0s +[lta] step=68900 loss=1.5963 elapsed=839.0s +[lta] step=69000 loss=1.2774 elapsed=840.0s +[lta] step=69100 loss=1.1854 elapsed=841.0s +[lta] step=69200 loss=1.5211 elapsed=842.1s +[lta] step=69300 loss=1.0699 elapsed=843.1s +[lta] step=69400 loss=1.0992 elapsed=844.2s +[lta] step=69500 loss=1.3849 elapsed=845.2s +[lta] step=69600 loss=1.1803 elapsed=846.2s +[lta] step=69700 loss=1.2245 elapsed=847.2s +[lta] step=69800 loss=1.0778 elapsed=848.3s +[lta] step=69900 loss=1.2370 elapsed=849.3s +[lta] step=70000 loss=1.5104 elapsed=850.3s +[lta] step=70100 loss=1.4294 elapsed=851.9s +[lta] step=70200 loss=1.4074 elapsed=853.0s +[lta] step=70300 loss=1.6099 elapsed=854.0s +[lta] step=70400 loss=1.2984 elapsed=855.0s +[lta] step=70500 loss=1.4820 elapsed=856.0s +[lta] step=70600 loss=1.3094 elapsed=857.0s +[lta] step=70700 loss=1.2658 elapsed=858.1s +[lta] step=70800 loss=1.6654 elapsed=859.1s +[lta] step=70900 loss=1.3502 elapsed=860.1s +[lta] step=71000 loss=1.4287 elapsed=861.1s +[lta] step=71100 loss=1.3134 elapsed=862.2s +[lta] step=71200 loss=1.1900 elapsed=863.2s +[lta] step=71300 loss=1.5332 elapsed=864.2s +[lta] step=71400 loss=1.4610 elapsed=865.2s +[lta] step=71500 loss=1.2126 elapsed=866.2s +[lta] step=71600 loss=1.4939 elapsed=867.2s +[lta] step=71700 loss=1.0771 elapsed=868.2s +[lta] step=71800 loss=1.6684 elapsed=869.2s +[lta] step=71900 loss=1.5617 elapsed=870.3s +[lta] step=72000 loss=1.2603 elapsed=871.3s +[lta] step=72100 loss=1.1803 elapsed=872.3s +[lta] step=72200 loss=1.1798 elapsed=873.3s +[lta] step=72300 loss=1.2142 elapsed=874.3s +[lta] step=72400 loss=1.4564 elapsed=875.4s +[lta] step=72500 loss=1.2183 elapsed=876.4s +[lta] step=72600 loss=1.2789 elapsed=877.4s +[lta] step=72700 loss=1.3638 elapsed=878.4s +[lta] step=72800 loss=1.3528 elapsed=879.5s +[lta] step=72900 loss=1.2037 elapsed=880.5s +[lta] step=73000 loss=1.1153 elapsed=881.5s +[lta] step=73100 loss=1.3017 elapsed=882.6s +[lta] step=73200 loss=1.3402 elapsed=883.6s +[lta] step=73300 loss=1.4902 elapsed=884.7s +[lta] step=73400 loss=1.3269 elapsed=885.7s +[lta] step=73500 loss=1.4571 elapsed=886.7s +[lta] step=73600 loss=1.4062 elapsed=887.7s +[lta] step=73700 loss=1.1399 elapsed=888.7s +[lta] step=73800 loss=1.4204 elapsed=889.7s +[lta] step=73900 loss=1.5273 elapsed=890.9s +[lta] step=74000 loss=1.3418 elapsed=891.9s +[lta] step=74100 loss=1.5688 elapsed=893.0s +[lta] step=74200 loss=1.3157 elapsed=894.0s +[lta] step=74300 loss=1.0661 elapsed=895.1s +[lta] step=74400 loss=1.0766 elapsed=896.1s +[lta] step=74500 loss=1.1172 elapsed=897.1s +[lta] step=74600 loss=1.2038 elapsed=898.2s +[lta] step=74700 loss=1.3138 elapsed=899.2s +[lta] step=74800 loss=1.5675 elapsed=900.2s +[lta] step=74900 loss=1.1613 elapsed=901.3s +[lta] step=75000 loss=1.2838 elapsed=902.3s +[lta] step=75100 loss=1.2746 elapsed=903.9s +[lta] step=75200 loss=1.0688 elapsed=904.9s +[lta] step=75300 loss=1.4851 elapsed=905.9s +[lta] step=75400 loss=1.5153 elapsed=907.0s +[lta] step=75500 loss=1.2470 elapsed=908.0s +[lta] step=75600 loss=1.2363 elapsed=909.1s +[lta] step=75700 loss=1.2867 elapsed=910.0s +[lta] step=75800 loss=1.5288 elapsed=911.1s +[lta] step=75900 loss=1.2686 elapsed=912.1s +[lta] step=76000 loss=1.4576 elapsed=913.1s +[lta] step=76100 loss=1.2520 elapsed=914.1s +[lta] step=76200 loss=1.4421 elapsed=915.1s +[lta] step=76300 loss=1.3859 elapsed=916.2s +[lta] step=76400 loss=1.4732 elapsed=917.2s +[lta] step=76500 loss=1.3897 elapsed=918.2s +[lta] step=76600 loss=1.1111 elapsed=919.2s +[lta] step=76700 loss=1.1532 elapsed=920.3s +[lta] step=76800 loss=1.5413 elapsed=921.3s +[lta] step=76900 loss=1.0802 elapsed=922.4s +[lta] step=77000 loss=1.3366 elapsed=923.4s +[lta] step=77100 loss=1.2421 elapsed=924.4s +[lta] step=77200 loss=1.0717 elapsed=925.4s +[lta] step=77300 loss=1.2668 elapsed=926.4s +[lta] step=77400 loss=1.3691 elapsed=927.5s +[lta] step=77500 loss=1.2776 elapsed=928.5s +[lta] step=77600 loss=1.1534 elapsed=929.5s +[lta] step=77700 loss=1.5130 elapsed=930.5s +[lta] step=77800 loss=1.4545 elapsed=931.6s +[lta] step=77900 loss=1.2917 elapsed=932.6s +[lta] step=78000 loss=1.1804 elapsed=933.6s +[lta] step=78100 loss=1.2255 elapsed=934.6s +[lta] step=78200 loss=1.3149 elapsed=935.7s +[lta] step=78300 loss=1.2383 elapsed=936.7s +[lta] step=78400 loss=1.0579 elapsed=937.7s +[lta] step=78500 loss=1.2507 elapsed=938.7s +[lta] step=78600 loss=1.5979 elapsed=939.8s +[lta] step=78700 loss=1.4565 elapsed=940.8s +[lta] step=78800 loss=1.2467 elapsed=941.9s +[lta] step=78900 loss=1.2881 elapsed=942.9s +[lta] step=79000 loss=1.5251 elapsed=943.9s +[lta] step=79100 loss=1.3203 elapsed=944.9s +[lta] step=79200 loss=1.4829 elapsed=946.0s +[lta] step=79300 loss=1.1651 elapsed=947.0s +[lta] step=79400 loss=0.9867 elapsed=948.1s +[lta] step=79500 loss=1.1203 elapsed=949.1s +[lta] step=79600 loss=1.2988 elapsed=950.2s +[lta] step=79700 loss=1.5307 elapsed=951.2s +[lta] step=79800 loss=1.2816 elapsed=952.2s +[lta] step=79900 loss=1.3195 elapsed=953.2s +[lta] step=80000 loss=1.1522 elapsed=954.3s +[lta] step=80100 loss=1.6378 elapsed=955.9s +[lta] step=80200 loss=1.5404 elapsed=957.0s +[lta] step=80300 loss=1.4705 elapsed=958.0s +[lta] step=80400 loss=1.3867 elapsed=959.1s +[lta] step=80500 loss=1.5472 elapsed=960.1s +[lta] step=80600 loss=1.4497 elapsed=961.1s +[lta] step=80700 loss=1.4854 elapsed=962.2s +[lta] step=80800 loss=1.4107 elapsed=963.2s +[lta] step=80900 loss=1.3616 elapsed=964.2s +[lta] step=81000 loss=1.5621 elapsed=965.3s +[lta] step=81100 loss=1.0789 elapsed=966.3s +[lta] step=81200 loss=1.2262 elapsed=967.3s +[lta] step=81300 loss=1.4363 elapsed=968.3s +[lta] step=81400 loss=1.4775 elapsed=969.4s +[lta] step=81500 loss=1.1083 elapsed=970.4s +[lta] step=81600 loss=1.2447 elapsed=971.4s +[lta] step=81700 loss=1.2837 elapsed=972.4s +[lta] step=81800 loss=1.3531 elapsed=973.5s +[lta] step=81900 loss=1.3755 elapsed=974.5s +[lta] step=82000 loss=1.3971 elapsed=975.5s +[lta] step=82100 loss=1.4796 elapsed=976.5s +[lta] step=82200 loss=1.4503 elapsed=977.6s +[lta] step=82300 loss=1.5529 elapsed=978.6s +[lta] step=82400 loss=1.1782 elapsed=979.6s +[lta] step=82500 loss=1.3421 elapsed=980.7s +[lta] step=82600 loss=1.5811 elapsed=981.7s +[lta] step=82700 loss=1.3959 elapsed=982.7s +[lta] step=82800 loss=1.6173 elapsed=983.7s +[lta] step=82900 loss=1.2869 elapsed=984.7s +[lta] step=83000 loss=1.1628 elapsed=985.7s +[lta] step=83100 loss=1.3041 elapsed=986.8s +[lta] step=83200 loss=1.4335 elapsed=987.8s +[lta] step=83300 loss=1.1024 elapsed=988.8s +[lta] step=83400 loss=1.3124 elapsed=989.8s +[lta] step=83500 loss=1.5328 elapsed=990.8s +[lta] step=83600 loss=1.2618 elapsed=991.9s +[lta] step=83700 loss=1.4119 elapsed=992.9s +[lta] step=83800 loss=1.3778 elapsed=993.9s +[lta] step=83900 loss=1.1325 elapsed=995.1s +[lta] step=84000 loss=1.2275 elapsed=996.1s +[lta] step=84100 loss=1.4909 elapsed=997.2s +[lta] step=84200 loss=1.2237 elapsed=998.3s +[lta] step=84300 loss=1.2006 elapsed=999.4s +[lta] step=84400 loss=1.3232 elapsed=1000.4s +[lta] step=84500 loss=1.3275 elapsed=1001.4s +[lta] step=84600 loss=1.2284 elapsed=1002.4s +[lta] step=84700 loss=1.5862 elapsed=1003.4s +[lta] step=84800 loss=1.4711 elapsed=1004.5s +[lta] step=84900 loss=1.3456 elapsed=1005.5s +[lta] step=85000 loss=1.4515 elapsed=1006.4s +[lta] step=85100 loss=1.3276 elapsed=1008.1s +[lta] step=85200 loss=1.1670 elapsed=1009.1s +[lta] step=85300 loss=1.2129 elapsed=1010.1s +[lta] step=85400 loss=1.2390 elapsed=1011.1s +[lta] step=85500 loss=1.0189 elapsed=1012.2s +[lta] step=85600 loss=1.4556 elapsed=1013.2s +[lta] step=85700 loss=1.3729 elapsed=1014.2s +[lta] step=85800 loss=1.3731 elapsed=1015.2s +[lta] step=85900 loss=1.5690 elapsed=1016.2s +[lta] step=86000 loss=1.2867 elapsed=1017.2s +[lta] step=86100 loss=1.4042 elapsed=1018.2s +[lta] step=86200 loss=1.3018 elapsed=1019.3s +[lta] step=86300 loss=1.2137 elapsed=1020.3s +[lta] step=86400 loss=1.3036 elapsed=1021.3s +[lta] step=86500 loss=1.4345 elapsed=1022.3s +[lta] step=86600 loss=1.3499 elapsed=1023.3s +[lta] step=86700 loss=1.2882 elapsed=1024.4s +[lta] step=86800 loss=1.3164 elapsed=1025.4s +[lta] step=86900 loss=1.6092 elapsed=1026.4s +[lta] step=87000 loss=1.2636 elapsed=1027.4s +[lta] step=87100 loss=1.3399 elapsed=1028.4s +[lta] step=87200 loss=1.3434 elapsed=1029.4s +[lta] step=87300 loss=1.6143 elapsed=1030.5s +[lta] step=87400 loss=1.2135 elapsed=1031.5s +[lta] step=87500 loss=1.4145 elapsed=1032.5s +[lta] step=87600 loss=1.3905 elapsed=1033.5s +[lta] step=87700 loss=1.3996 elapsed=1034.5s +[lta] step=87800 loss=1.5437 elapsed=1035.5s +[lta] step=87900 loss=1.4591 elapsed=1036.6s +[lta] step=88000 loss=1.3033 elapsed=1037.6s +[lta] step=88100 loss=1.2795 elapsed=1038.6s +[lta] step=88200 loss=1.1288 elapsed=1039.6s +[lta] step=88300 loss=1.4761 elapsed=1040.6s +[lta] step=88400 loss=1.1992 elapsed=1041.7s +[lta] step=88500 loss=1.2454 elapsed=1042.7s +[lta] step=88600 loss=1.4163 elapsed=1043.7s +[lta] step=88700 loss=1.4114 elapsed=1044.8s +[lta] step=88800 loss=1.4717 elapsed=1045.8s +[lta] step=88900 loss=1.0858 elapsed=1046.8s +[lta] step=89000 loss=1.2168 elapsed=1047.8s +[lta] step=89100 loss=1.3114 elapsed=1048.8s +[lta] step=89200 loss=1.5861 elapsed=1049.9s +[lta] step=89300 loss=1.0675 elapsed=1050.9s +[lta] step=89400 loss=1.4060 elapsed=1051.9s +[lta] step=89500 loss=1.3261 elapsed=1052.9s +[lta] step=89600 loss=1.4436 elapsed=1054.0s +[lta] step=89700 loss=1.1657 elapsed=1055.0s +[lta] step=89800 loss=1.2847 elapsed=1056.1s +[lta] step=89900 loss=1.4201 elapsed=1057.1s +[lta] step=90000 loss=1.7017 elapsed=1058.1s +[lta] step=90100 loss=1.1255 elapsed=1059.8s +[lta] step=90200 loss=1.4751 elapsed=1060.8s +[lta] step=90300 loss=1.1276 elapsed=1061.9s +[lta] step=90400 loss=1.1378 elapsed=1062.9s +[lta] step=90500 loss=1.4574 elapsed=1064.0s +[lta] step=90600 loss=1.4559 elapsed=1065.0s +[lta] step=90700 loss=1.5198 elapsed=1066.0s +[lta] step=90800 loss=1.2936 elapsed=1067.1s +[lta] step=90900 loss=1.3885 elapsed=1068.1s +[lta] step=91000 loss=1.5332 elapsed=1069.2s +[lta] step=91100 loss=1.4233 elapsed=1070.2s +[lta] step=91200 loss=1.1994 elapsed=1071.2s +[lta] step=91300 loss=1.3692 elapsed=1072.3s +[lta] step=91400 loss=1.4604 elapsed=1073.3s +[lta] step=91500 loss=1.0966 elapsed=1074.3s +[lta] step=91600 loss=1.3907 elapsed=1075.4s +[lta] step=91700 loss=1.3173 elapsed=1076.4s +[lta] step=91800 loss=1.4381 elapsed=1077.5s +[lta] step=91900 loss=1.4238 elapsed=1078.5s +[lta] step=92000 loss=1.0774 elapsed=1079.5s +[lta] step=92100 loss=1.3737 elapsed=1080.6s +[lta] step=92200 loss=1.3057 elapsed=1081.6s +[lta] step=92300 loss=1.2407 elapsed=1082.7s +[lta] step=92400 loss=1.1013 elapsed=1083.7s +[lta] step=92500 loss=1.3826 elapsed=1084.8s +[lta] step=92600 loss=1.5841 elapsed=1085.8s +[lta] step=92700 loss=1.3379 elapsed=1086.8s +[lta] step=92800 loss=1.2903 elapsed=1087.9s +[lta] step=92900 loss=1.1055 elapsed=1088.9s +[lta] step=93000 loss=1.3739 elapsed=1090.0s +[lta] step=93100 loss=1.2728 elapsed=1091.0s +[lta] step=93200 loss=1.3432 elapsed=1092.0s +[lta] step=93300 loss=1.0781 elapsed=1093.1s +[lta] step=93400 loss=1.3544 elapsed=1094.1s +[lta] step=93500 loss=1.3376 elapsed=1095.1s +[lta] step=93600 loss=1.2837 elapsed=1096.2s +[lta] step=93700 loss=1.3875 elapsed=1097.2s +[lta] step=93800 loss=1.1893 elapsed=1098.3s +[lta] step=93900 loss=1.3643 elapsed=1099.3s +[lta] step=94000 loss=1.4801 elapsed=1100.4s +[lta] step=94100 loss=1.1622 elapsed=1101.4s +[lta] step=94200 loss=1.1591 elapsed=1102.5s +[lta] step=94300 loss=1.2175 elapsed=1103.5s +[lta] step=94400 loss=1.3293 elapsed=1104.6s +[lta] step=94500 loss=1.5563 elapsed=1105.6s +[lta] step=94600 loss=1.1507 elapsed=1106.7s +[lta] step=94700 loss=1.3829 elapsed=1107.7s +[lta] step=94800 loss=1.2561 elapsed=1108.7s +[lta] step=94900 loss=0.9253 elapsed=1109.7s +[lta] step=95000 loss=1.7419 elapsed=1110.7s +[lta] step=95100 loss=1.5007 elapsed=1112.4s +[lta] step=95200 loss=1.1067 elapsed=1113.4s +[lta] step=95300 loss=1.5082 elapsed=1114.4s +[lta] step=95400 loss=1.0872 elapsed=1115.4s +[lta] step=95500 loss=1.3632 elapsed=1116.5s +[lta] step=95600 loss=1.3301 elapsed=1117.5s +[lta] step=95700 loss=1.5054 elapsed=1118.5s +[lta] step=95800 loss=1.4662 elapsed=1119.6s +[lta] step=95900 loss=1.4496 elapsed=1120.6s +[lta] step=96000 loss=1.3765 elapsed=1121.7s +[lta] step=96100 loss=1.4450 elapsed=1122.7s +[lta] step=96200 loss=1.3823 elapsed=1123.7s +[lta] step=96300 loss=1.3064 elapsed=1124.7s +[lta] step=96400 loss=1.4167 elapsed=1125.7s +[lta] step=96500 loss=0.9868 elapsed=1126.7s +[lta] step=96600 loss=1.5287 elapsed=1127.7s +[lta] step=96700 loss=1.3397 elapsed=1128.8s +[lta] step=96800 loss=1.1177 elapsed=1129.8s +[lta] step=96900 loss=1.3000 elapsed=1130.8s +[lta] step=97000 loss=1.5051 elapsed=1131.8s +[lta] step=97100 loss=1.4894 elapsed=1132.9s +[lta] step=97200 loss=1.3525 elapsed=1133.9s +[lta] step=97300 loss=1.2477 elapsed=1134.9s +[lta] step=97400 loss=1.2718 elapsed=1135.9s +[lta] step=97500 loss=1.3971 elapsed=1136.9s +[lta] step=97600 loss=1.3780 elapsed=1137.9s +[lta] step=97700 loss=1.1386 elapsed=1139.0s +[lta] step=97800 loss=1.5128 elapsed=1140.0s +[lta] step=97900 loss=1.2725 elapsed=1141.0s +[lta] step=98000 loss=1.7452 elapsed=1142.0s +[lta] step=98100 loss=0.9152 elapsed=1143.0s +[lta] step=98200 loss=1.2825 elapsed=1144.0s +[lta] step=98300 loss=1.3988 elapsed=1145.1s +[lta] step=98400 loss=1.4567 elapsed=1146.1s +[lta] step=98500 loss=1.4360 elapsed=1147.1s +[lta] step=98600 loss=1.1545 elapsed=1148.1s +[lta] step=98700 loss=1.3655 elapsed=1149.1s +[lta] step=98800 loss=1.4833 elapsed=1150.2s +[lta] step=98900 loss=1.5242 elapsed=1151.2s +[lta] step=99000 loss=0.8823 elapsed=1152.2s +[lta] step=99100 loss=1.1582 elapsed=1153.2s +[lta] step=99200 loss=1.2754 elapsed=1154.2s +[lta] step=99300 loss=1.2612 elapsed=1155.3s +[lta] step=99400 loss=1.1856 elapsed=1156.3s +[lta] step=99500 loss=1.3662 elapsed=1157.3s +[lta] step=99600 loss=1.5876 elapsed=1158.4s +[lta] step=99700 loss=1.2776 elapsed=1159.4s +[lta] step=99800 loss=1.2486 elapsed=1160.4s +[lta] step=99900 loss=1.4223 elapsed=1161.5s +[lta] step=100000 loss=1.3475 elapsed=1162.5s diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/tokenizer.json b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..2875eca37dc8dd5c24f6222e15fdb1c19ea12bcb --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/char_stream_fullycoupled_100k_20260508/tokenizer.json @@ -0,0 +1,137 @@ +{ + "itos": [ + "\n", + " ", + "!", + "$", + "&", + "'", + ",", + "-", + ".", + "3", + ":", + ";", + "?", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z", + "a", + "b", + "c", + "d", + "e", + "f", + "g", + "h", + "i", + "j", + "k", + "l", + "m", + "n", + "o", + "p", + "q", + "r", + "s", + "t", + "u", + "v", + "w", + "x", + "y", + "z" + ], + "stoi": { + "\n": 0, + " ": 1, + "!": 2, + "$": 3, + "&": 4, + "'": 5, + ",": 6, + "-": 7, + ".": 8, + "3": 9, + ":": 10, + ";": 11, + "?": 12, + "A": 13, + "B": 14, + "C": 15, + "D": 16, + "E": 17, + "F": 18, + "G": 19, + "H": 20, + "I": 21, + "J": 22, + "K": 23, + "L": 24, + "M": 25, + "N": 26, + "O": 27, + "P": 28, + "Q": 29, + "R": 30, + "S": 31, + "T": 32, + "U": 33, + "V": 34, + "W": 35, + "X": 36, + "Y": 37, + "Z": 38, + "a": 39, + "b": 40, + "c": 41, + "d": 42, + "e": 43, + "f": 44, + "g": 45, + "h": 46, + "i": 47, + "j": 48, + "k": 49, + "l": 50, + "m": 51, + "n": 52, + "o": 53, + "p": 54, + "q": 55, + "r": 56, + "s": 57, + "t": 58, + "u": 59, + "v": 60, + "w": 61, + "x": 62, + "y": 63, + "z": 64 + }, + "vocab_size": 65 +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/metrics.jsonl b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/metrics.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c915e5f91b3a17a350143293478a24b66e427cda --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/metrics.jsonl @@ -0,0 +1 @@ +{"step": 3, "train_loss": 4.0936055183410645, "val_loss": 4.015358924865723, "char_entropy": 3.861531593647282, "distinct_2": 0.9765625, "length": 129.0} diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/sample_step00003.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/sample_step00003.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bb3f6538add91980548397701a3e81176ae8df --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/ar/sample_step00003.txt @@ -0,0 +1,5 @@ + +OLoT,ebtK +b:iPeCkMBbzA$3:XaSvgO-33SMBd?gLTa +hX:YVXJthXfNuwqhPMxv.tbaF dXl!DZaAeWFwccHPgRWk,fDEZaYzxzoIouX +Yo3&$FMtofCiEIvB!!&V!O \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/lta/sample_step00003.txt b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/lta/sample_step00003.txt new file mode 100644 index 0000000000000000000000000000000000000000..62c76cab862066840d44dd6eae0783262fe4215e --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/lta/sample_step00003.txt @@ -0,0 +1,2 @@ +oZooDXdPkXQacBeldtNr!kvOww.jmTDEYPhsj,V!&p$?IJ'Z& +GMhRmxqILjL!vQ'OGeICqUARnEMj3'iy -msY!Xwb.IMWun!thbY,rfn .MhOxNIzxoMaz$NX 3W& \ No newline at end of file diff --git a/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/tokenizer.json b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..2875eca37dc8dd5c24f6222e15fdb1c19ea12bcb --- /dev/null +++ b/LTA_openwebtext_dualt/experiments/nanogpt_tinyshakespeare_char/runs/smoke_4gpu/tokenizer.json @@ -0,0 +1,137 @@ +{ + "itos": [ + "\n", + " ", + "!", + "$", + "&", + "'", + ",", + "-", + ".", + "3", + ":", + ";", + "?", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z", + "a", + "b", + "c", + "d", + "e", + "f", + "g", + "h", + "i", + "j", + "k", + "l", + "m", + "n", + "o", + "p", + "q", + "r", + "s", + "t", + "u", + "v", + "w", + "x", + "y", + "z" + ], + "stoi": { + "\n": 0, + " ": 1, + "!": 2, + "$": 3, + "&": 4, + "'": 5, + ",": 6, + "-": 7, + ".": 8, + "3": 9, + ":": 10, + ";": 11, + "?": 12, + "A": 13, + "B": 14, + "C": 15, + "D": 16, + "E": 17, + "F": 18, + "G": 19, + "H": 20, + "I": 21, + "J": 22, + "K": 23, + "L": 24, + "M": 25, + "N": 26, + "O": 27, + "P": 28, + "Q": 29, + "R": 30, + "S": 31, + "T": 32, + "U": 33, + "V": 34, + "W": 35, + "X": 36, + "Y": 37, + "Z": 38, + "a": 39, + "b": 40, + "c": 41, + "d": 42, + "e": 43, + "f": 44, + "g": 45, + "h": 46, + "i": 47, + "j": 48, + "k": 49, + "l": 50, + "m": 51, + "n": 52, + "o": 53, + "p": 54, + "q": 55, + "r": 56, + "s": 57, + "t": 58, + "u": 59, + "v": 60, + "w": 61, + "x": 62, + "y": 63, + "z": 64 + }, + "vocab_size": 65 +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/runs_debug/lta_owt_basinbankmix_smoke4gpu_20260514_152205/args.json b/LTA_openwebtext_dualt/runs_debug/lta_owt_basinbankmix_smoke4gpu_20260514_152205/args.json new file mode 100644 index 0000000000000000000000000000000000000000..621bb9f922a0605f09aaceb2070720a25592919d --- /dev/null +++ b/LTA_openwebtext_dualt/runs_debug/lta_owt_basinbankmix_smoke4gpu_20260514_152205/args.json @@ -0,0 +1,163 @@ +{ + "data_path": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext", + "text_column": "text", + "txt_record_mode": "auto", + "detokenizer": "auto", + "openwebtext_split": "train_minus_100k", + "tokenizer_path": "/e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-standard/tokenizer.json", + "save_dir": "runs_debug/lta_owt_basinbankmix_smoke4gpu_20260514_152205", + "max_records": 0, + "elf_conditional_hf": false, + "eval_data_path": "", + "dataset_cache_dir": "", + "max_input_len": 64, + "conditional_pad_token": "eos", + "label_drop_prob": 0.0, + "streaming": false, + "record_pad_truncate": false, + "record_add_eos": false, + "record_add_special_tokens": false, + "record_pad_token": "pad", + "record_shuffle_buffer": 10000, + "wrap": true, + "wrap_mode": "stream", + "wrap_record_buffer_size": 200, + "owt_cached_chunks": true, + "owt_chunk_cache_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len1024_train_minus_100k", + "owt_chunk_cache_rebuild": false, + "owt_chunk_cache_write_batch": 4096, + "owt_exact_repeat_per_chunk": 0, + "online_chunk_shuffle": false, + "online_chunk_shuffle_buffer": 10000, + "max_len": 1024, + "stride": 0, + "batch_size": 4, + "num_workers": 0, + "dataloader_prefetch_factor": 2, + "blocking_data_transfer": false, + "global_batch_size": 16, + "grad_accum": 1, + "total_steps": 5, + "lr": 0.0003, + "weight_decay": 0.0, + "adam_beta1": 0.9, + "adam_beta2": 0.95, + "adam_eps": 1e-08, + "optimizer": "adamw", + "muon_momentum": 0.95, + "muon_ns_steps": 5, + "muon_update_scale": 1.0, + "ema_decay": 0.0, + "ema_start_step": 0, + "warmup_steps": 1, + "lr_schedule": "constant_warmup", + "min_lr": 6e-05, + "adamw_param_groups": "nanogpt", + "grad_clip": 1.0, + "seed": 42, + "d_model": 768, + "cond_dim": 128, + "n_layers": 12, + "n_heads": 12, + "dim_ff": 3072, + "dropout": 0.0, + "vocab_size_override": 0, + "model_type": "ddit", + "state_format": "prob", + "bridge": "dirichlet", + "target_loss": "hard_ce", + "meanflow_weight": 0.0, + "loss_t_weight_mode": "none", + "loss_t_min_weight": 0.0, + "loss_t_drop_below": 0.2, + "prior_center_loss_beta": 0.0, + "prior_center_state": "uniform", + "rollout_train_prob": 0.0, + "rollout_train_steps": 1, + "rollout_train_infer_steps": 64, + "rollout_train_temp": 1.45, + "rollout_train_max_gamma": 1.0, + "rollout_train_corrupt_only": true, + "rollout_train_samplewise": false, + "rollout_train_compute_always": false, + "rollout_train_debug_return_base": false, + "target_prob": 1.0, + "min_t": 0.0, + "max_t": 1.0, + "dual_t": true, + "corrupt_t_mode": "same", + "corrupt_t_value": 0.0, + "corrupt_min_t": null, + "corrupt_max_t": null, + "prefix_block_prob": 0.0, + "prefix_block_len": 128, + "min_mask_ratio": 0.1, + "max_mask_ratio": 1.0, + "mask_ratio_floor_schedule": "none", + "mask_mixture_original_prob": 0.0, + "mask_mixture_lowk_prob": 0.0, + "mask_mixture_lowcorrupt_prob": 0.0, + "mask_mixture_block_prob": 0.0, + "mask_mixture_all_prob": 0.0, + "mask_mixture_lowk_clean_tokens": "1,2,4,8,16,32,64", + "mask_mixture_lowcorrupt_tokens": "1,2,4,8,16,32,64", + "mask_mixture_block_tokens": "64,128", + "clean_state_mode": "onehot", + "wrong_token_replace_prob": "1.0", + "wrong_token_schedule": "linear_t", + "wrong_token_exp_k": 1.0, + "dirichlet_concentration_min": 1.0, + "dirichlet_concentration_max": 1024.0, + "dirichlet_endpoint_mode": "categorical_dual_t", + "dirichlet_semantic_t_mode": "same", + "dirichlet_semantic_t_value": 0.0, + "dirichlet_semantic_t_curve": "linear", + "dirichlet_semantic_t_power": 1.0, + "endpoint_sequence_random_prob_alpha": 0.0, + "categorical_wrong_from_full_vocab": false, + "categorical_wrong_from_batch_valid_tokens": false, + "categorical_wrong_basin_token_ids": "284,326,340,307,11,314,1949,262,2808,1295,318,12,423,13,2608,290,1842,198,356,2681,642,34,1011,2310,287,286,1577,3853,352,345,467,25,1596,2579,257,678,2555,4747,484,513,16,787,1679,606,460,1110,1542,18,1498,362,357,767,2107,1026,779,17,373,9752,2077,35,1271,532,860,1394", + "categorical_wrong_basin_prob": 0.0, + "categorical_wrong_unigram_prob": 0.3, + "categorical_wrong_uniform_prob": 0.6, + "categorical_wrong_basin_shared_prob": 0.1, + "simplex_bridge_sampler": "dirichlet", + "logistic_normal_sigma_min": 0.18, + "logistic_normal_sigma_max": 2.2, + "logistic_normal_tau_min": 0.65, + "logistic_normal_tau_max": 1.15, + "dirichlet_scale": 128.0, + "dirichlet_floor": 0.001, + "eps": 1e-08, + "log_every": 1, + "eval_every": 0, + "save_every": 1000, + "latest_every": 1000, + "resume_path": "", + "init_model_path": "", + "init_pos_embed_mode": "strict", + "infer_steps": 128, + "decode_damping": 1.0, + "max_gamma": 1.0, + "decode_solver": "flowmap", + "noise_init": "logistic_normal", + "bridge_noise_init": "logistic_normal", + "noise_sigma": -1.0, + "demo_mask_ratios": "0.1,0.5,1.0", + "demo_fill_t": 0.0, + "bf16": true, + "allow_tf32": true, + "activation_checkpointing": false, + "activation_checkpoint_interval": 1, + "activation_checkpoint_scope": "block", + "ddp_static_graph": false, + "ddp_gradient_as_bucket_view": true, + "full_train_stats": false, + "log_train_stats_each_step": true, + "log_t_bin_stats": true, + "log_t_bin_edges": "0,0.2,0.4,0.6,0.8,1.0", + "torch_compile": false, + "compile_mode": "max-autotune", + "resolved_detokenizer": null, + "effective_vocab_size": 50257 +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/runs_debug/lta_owt_rmsnorm_nobias_wd0p1_fp32_smoke4gpu_20260514_190454/args.json b/LTA_openwebtext_dualt/runs_debug/lta_owt_rmsnorm_nobias_wd0p1_fp32_smoke4gpu_20260514_190454/args.json new file mode 100644 index 0000000000000000000000000000000000000000..7ccec971262375ac5d952b21f0d1ba4353d0093a --- /dev/null +++ b/LTA_openwebtext_dualt/runs_debug/lta_owt_rmsnorm_nobias_wd0p1_fp32_smoke4gpu_20260514_190454/args.json @@ -0,0 +1,168 @@ +{ + "data_path": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext", + "text_column": "text", + "txt_record_mode": "auto", + "detokenizer": "auto", + "openwebtext_split": "train_minus_100k", + "tokenizer_path": "/e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-standard/tokenizer.json", + "save_dir": "runs_debug/lta_owt_rmsnorm_nobias_wd0p1_fp32_smoke4gpu_20260514_190454", + "max_records": 0, + "elf_conditional_hf": false, + "eval_data_path": "", + "dataset_cache_dir": "", + "max_input_len": 64, + "conditional_pad_token": "eos", + "label_drop_prob": 0.0, + "streaming": false, + "record_pad_truncate": false, + "record_add_eos": false, + "record_add_special_tokens": false, + "record_pad_token": "pad", + "record_shuffle_buffer": 10000, + "wrap": true, + "wrap_mode": "stream", + "wrap_record_buffer_size": 200, + "owt_cached_chunks": true, + "owt_chunk_cache_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len1024_train_minus_100k", + "owt_chunk_cache_rebuild": false, + "owt_chunk_cache_write_batch": 4096, + "owt_exact_repeat_per_chunk": 0, + "online_chunk_shuffle": false, + "online_chunk_shuffle_buffer": 10000, + "max_len": 1024, + "stride": 0, + "batch_size": 1, + "num_workers": 0, + "dataloader_prefetch_factor": 2, + "blocking_data_transfer": false, + "global_batch_size": 4, + "grad_accum": 1, + "total_steps": 2, + "lr": 0.0006, + "weight_decay": 0.1, + "adam_beta1": 0.9, + "adam_beta2": 0.95, + "adam_eps": 1e-08, + "optimizer": "adamw", + "muon_momentum": 0.95, + "muon_ns_steps": 5, + "muon_update_scale": 1.0, + "ema_decay": 0.0, + "ema_start_step": 0, + "warmup_steps": 1, + "lr_schedule": "cosine", + "min_lr": 6e-05, + "adamw_param_groups": "nanogpt", + "grad_clip": 1.0, + "seed": 42, + "d_model": 768, + "cond_dim": 128, + "n_layers": 12, + "n_heads": 12, + "dim_ff": 3072, + "dropout": 0.0, + "output_bias": false, + "norm_type": "rmsnorm", + "vocab_size_override": 0, + "model_type": "ddit", + "state_format": "prob", + "bridge": "dirichlet", + "target_loss": "hard_ce", + "meanflow_weight": 0.0, + "loss_t_weight_mode": "none", + "loss_t_min_weight": 0.0, + "loss_t_drop_below": 0.2, + "prior_center_loss_beta": 0.0, + "prior_center_state": "uniform", + "rollout_train_prob": 0.0, + "rollout_train_steps": 1, + "rollout_train_infer_steps": 64, + "rollout_train_temp": 1.45, + "rollout_train_max_gamma": 1.0, + "rollout_train_corrupt_only": true, + "rollout_train_samplewise": false, + "rollout_train_compute_always": false, + "rollout_train_debug_return_base": false, + "target_prob": 1.0, + "min_t": 0.0, + "max_t": 1.0, + "dual_t": true, + "corrupt_t_mode": "same", + "corrupt_t_value": 0.0, + "corrupt_min_t": 0.0, + "corrupt_max_t": 1.0, + "prefix_block_prob": 0.0, + "prefix_block_len": 128, + "min_mask_ratio": 0.1, + "max_mask_ratio": 1.0, + "mask_ratio_floor_schedule": "none", + "mask_mixture_original_prob": 0.0, + "mask_mixture_lowk_prob": 0.0, + "mask_mixture_lowcorrupt_prob": 0.0, + "mask_mixture_block_prob": 0.0, + "mask_mixture_all_prob": 0.0, + "mask_mixture_lowk_clean_tokens": "1,2,4,8,16,32,64", + "mask_mixture_lowcorrupt_tokens": "1,2,4,8,16,32,64", + "mask_mixture_block_tokens": "64,128", + "clean_state_mode": "onehot", + "wrong_token_replace_prob": "1.0", + "wrong_token_schedule": "linear_t", + "wrong_token_exp_k": 1.0, + "dirichlet_concentration_min": 1.0, + "dirichlet_concentration_max": 1024.0, + "dirichlet_endpoint_mode": "categorical_dual_t", + "dirichlet_semantic_t_mode": "same", + "dirichlet_semantic_t_value": 0.0, + "dirichlet_semantic_t_curve": "linear", + "dirichlet_semantic_t_power": 1.0, + "endpoint_sequence_random_prob_alpha": 0.0, + "categorical_wrong_from_full_vocab": true, + "categorical_wrong_from_batch_valid_tokens": false, + "categorical_wrong_basin_token_ids": "", + "categorical_wrong_basin_prob": 0.0, + "categorical_wrong_unigram_prob": 0.0, + "categorical_wrong_uniform_prob": 0.0, + "categorical_wrong_corpus_unigram_path": "", + "categorical_wrong_corpus_unigram_alpha": 1.0, + "categorical_wrong_basin_shared_prob": 0.0, + "categorical_wrong_unigram_shared_prob": 0.0, + "simplex_bridge_sampler": "dirichlet", + "logistic_normal_sigma_min": 0.18, + "logistic_normal_sigma_max": 2.2, + "logistic_normal_tau_min": 0.65, + "logistic_normal_tau_max": 1.15, + "dirichlet_scale": 128.0, + "dirichlet_floor": 0.001, + "eps": 1e-08, + "log_every": 1, + "eval_every": 0, + "save_every": 0, + "latest_every": 0, + "resume_path": "", + "init_model_path": "", + "init_pos_embed_mode": "strict", + "infer_steps": 1024, + "decode_damping": 1.0, + "max_gamma": 1.0, + "decode_solver": "flowmap", + "noise_init": "logistic_normal", + "bridge_noise_init": "logistic_normal", + "noise_sigma": -1.0, + "demo_mask_ratios": "0.1,0.5,1.0", + "demo_fill_t": 0.0, + "bf16": false, + "allow_tf32": false, + "activation_checkpointing": false, + "activation_checkpoint_interval": 1, + "activation_checkpoint_scope": "block", + "ddp_static_graph": false, + "ddp_gradient_as_bucket_view": true, + "full_train_stats": false, + "log_train_stats_each_step": true, + "log_t_bin_stats": true, + "log_t_bin_edges": "0,0.2,0.4,0.6,0.8,1.0", + "torch_compile": false, + "compile_mode": "max-autotune", + "resolved_detokenizer": null, + "effective_vocab_size": 50257 +} \ No newline at end of file diff --git a/LTA_openwebtext_dualt/runs_debug/lta_owt_unigramwrong_smoke4gpu_20260514_160148/args.json b/LTA_openwebtext_dualt/runs_debug/lta_owt_unigramwrong_smoke4gpu_20260514_160148/args.json new file mode 100644 index 0000000000000000000000000000000000000000..d06f15cdfffb4f6d2c21cce5c9e8a13a6ac07c41 --- /dev/null +++ b/LTA_openwebtext_dualt/runs_debug/lta_owt_unigramwrong_smoke4gpu_20260514_160148/args.json @@ -0,0 +1,166 @@ +{ + "data_path": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext", + "text_column": "text", + "txt_record_mode": "auto", + "detokenizer": "auto", + "openwebtext_split": "train_minus_100k", + "tokenizer_path": "/e2e-data/evad-tech-vla/wanghan58/models/flowtext_scorers/gpt2-standard/tokenizer.json", + "save_dir": "runs_debug/lta_owt_unigramwrong_smoke4gpu_20260514_160148", + "max_records": 0, + "elf_conditional_hf": false, + "eval_data_path": "", + "dataset_cache_dir": "", + "max_input_len": 64, + "conditional_pad_token": "eos", + "label_drop_prob": 0.0, + "streaming": false, + "record_pad_truncate": false, + "record_add_eos": false, + "record_add_special_tokens": false, + "record_pad_token": "pad", + "record_shuffle_buffer": 10000, + "wrap": true, + "wrap_mode": "stream", + "wrap_record_buffer_size": 200, + "owt_cached_chunks": true, + "owt_chunk_cache_dir": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len1024_train_minus_100k", + "owt_chunk_cache_rebuild": false, + "owt_chunk_cache_write_batch": 4096, + "owt_exact_repeat_per_chunk": 0, + "online_chunk_shuffle": false, + "online_chunk_shuffle_buffer": 10000, + "max_len": 1024, + "stride": 0, + "batch_size": 4, + "num_workers": 0, + "dataloader_prefetch_factor": 2, + "blocking_data_transfer": false, + "global_batch_size": 16, + "grad_accum": 1, + "total_steps": 5, + "lr": 0.0003, + "weight_decay": 0.0, + "adam_beta1": 0.9, + "adam_beta2": 0.95, + "adam_eps": 1e-08, + "optimizer": "adamw", + "muon_momentum": 0.95, + "muon_ns_steps": 5, + "muon_update_scale": 1.0, + "ema_decay": 0.0, + "ema_start_step": 0, + "warmup_steps": 2, + "lr_schedule": "constant_warmup", + "min_lr": 0.0, + "adamw_param_groups": "nanogpt", + "grad_clip": 1.0, + "seed": 42, + "d_model": 128, + "cond_dim": 64, + "n_layers": 2, + "n_heads": 4, + "dim_ff": 512, + "dropout": 0.0, + "vocab_size_override": 0, + "model_type": "ddit", + "state_format": "prob", + "bridge": "dirichlet", + "target_loss": "hard_ce", + "meanflow_weight": 0.0, + "loss_t_weight_mode": "none", + "loss_t_min_weight": 0.0, + "loss_t_drop_below": 0.2, + "prior_center_loss_beta": 0.0, + "prior_center_state": "uniform", + "rollout_train_prob": 0.0, + "rollout_train_steps": 1, + "rollout_train_infer_steps": 64, + "rollout_train_temp": 1.45, + "rollout_train_max_gamma": 1.0, + "rollout_train_corrupt_only": true, + "rollout_train_samplewise": false, + "rollout_train_compute_always": false, + "rollout_train_debug_return_base": false, + "target_prob": 1.0, + "min_t": 0.0, + "max_t": 1.0, + "dual_t": true, + "corrupt_t_mode": "same", + "corrupt_t_value": 0.0, + "corrupt_min_t": null, + "corrupt_max_t": null, + "prefix_block_prob": 0.0, + "prefix_block_len": 128, + "min_mask_ratio": 0.1, + "max_mask_ratio": 1.0, + "mask_ratio_floor_schedule": "none", + "mask_mixture_original_prob": 0.0, + "mask_mixture_lowk_prob": 0.0, + "mask_mixture_lowcorrupt_prob": 0.0, + "mask_mixture_block_prob": 0.0, + "mask_mixture_all_prob": 0.0, + "mask_mixture_lowk_clean_tokens": "1,2,4,8,16,32,64", + "mask_mixture_lowcorrupt_tokens": "1,2,4,8,16,32,64", + "mask_mixture_block_tokens": "64,128", + "clean_state_mode": "onehot", + "wrong_token_replace_prob": "1.0", + "wrong_token_schedule": "linear_t", + "wrong_token_exp_k": 1.0, + "dirichlet_concentration_min": 1.0, + "dirichlet_concentration_max": 1024.0, + "dirichlet_endpoint_mode": "categorical_dual_t", + "dirichlet_semantic_t_mode": "same", + "dirichlet_semantic_t_value": 0.0, + "dirichlet_semantic_t_curve": "linear", + "dirichlet_semantic_t_power": 1.0, + "endpoint_sequence_random_prob_alpha": 0.0, + "categorical_wrong_from_full_vocab": false, + "categorical_wrong_from_batch_valid_tokens": false, + "categorical_wrong_basin_token_ids": "", + "categorical_wrong_basin_prob": 0.0, + "categorical_wrong_unigram_prob": 0.7, + "categorical_wrong_uniform_prob": 0.2, + "categorical_wrong_corpus_unigram_path": "/e2e-data/evad-tech-vla/wanghan58/data/small_benchmarks/langflow_2604_11748/openwebtext_lta_cached_chunks/gpt2_len1024_train_minus_100k/unigram_counts_1mchunks_i64.pt", + "categorical_wrong_corpus_unigram_alpha": 0.7, + "categorical_wrong_basin_shared_prob": 0.0, + "categorical_wrong_unigram_shared_prob": 0.1, + "simplex_bridge_sampler": "dirichlet", + "logistic_normal_sigma_min": 0.18, + "logistic_normal_sigma_max": 2.2, + "logistic_normal_tau_min": 0.65, + "logistic_normal_tau_max": 1.15, + "dirichlet_scale": 128.0, + "dirichlet_floor": 0.001, + "eps": 1e-08, + "log_every": 1, + "eval_every": 0, + "save_every": 1000, + "latest_every": 1000, + "resume_path": "", + "init_model_path": "", + "init_pos_embed_mode": "strict", + "infer_steps": 64, + "decode_damping": 1.0, + "max_gamma": 1.0, + "decode_solver": "flowmap", + "noise_init": "logistic_normal", + "bridge_noise_init": "logistic_normal", + "noise_sigma": -1.0, + "demo_mask_ratios": "0.1,0.5,1.0", + "demo_fill_t": 0.0, + "bf16": true, + "allow_tf32": true, + "activation_checkpointing": false, + "activation_checkpoint_interval": 1, + "activation_checkpoint_scope": "block", + "ddp_static_graph": false, + "ddp_gradient_as_bucket_view": true, + "full_train_stats": false, + "log_train_stats_each_step": true, + "log_t_bin_stats": true, + "log_t_bin_edges": "0,0.2,0.4,0.6,0.8,1.0", + "torch_compile": false, + "compile_mode": "max-autotune", + "resolved_detokenizer": null, + "effective_vocab_size": 50257 +} \ No newline at end of file