CoolFace
Modelpublic

juanmcristobal/e5-small-v2-mitre

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes70downloads
Model Card

SentenceTransformer based on intfloat/e5-small-v2

This is a sentence-transformers model finetuned from intfloat/e5-small-v2 on the parquet dataset. It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • Model Type: Sentence Transformer
  • Base model: intfloat/e5-small-v2 <!-- at revision ffb93f3bd4047442299a41ebb6fa998a38507c52 -->
  • Maximum Sequence Length: 256 tokens
  • Output Dimensionality: 384 dimensions
  • Similarity Function: Cosine Similarity
  • Training Dataset:
  • parquet <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
  (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
  (2): Normalize()
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
    'Specifies 32-bit packet size larger than 1048576 bytes causing allocator failure.',
    'Attackers exploit server software weaknesses, exhausting connections or memory to keep users locked out.',
    'Tricking users into opening weaponized attachments triggers code execution via manipulated documents or executables.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 0.9999,  0.7224, -0.0776],
#         [ 0.7224,  1.0000, -0.0670],
#         [-0.0776, -0.0670,  0.9999]])

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

Evaluation

Metrics

Information Retrieval
MetricValue
cosine_accuracy@10.108
cosine_accuracy@30.2258
cosine_accuracy@50.3046
cosine_accuracy@100.4404
cosine_precision@10.108
cosine_precision@50.0609
cosine_precision@100.044
cosine_recall@10.108
cosine_recall@50.3046
cosine_recall@100.4404
cosine_ndcg@100.2527
cosine_mrr@100.1955
cosine_map@100.1955

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

parquet
  • Dataset: parquet
  • Size: 11,538,689 training samples
  • Columns: <code>anchor</code> and <code>positive</code>
  • Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:-----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 21.88 tokens</li><li>max: 101 tokens</li></ul> | <ul><li>min: 6 tokens</li><li>mean: 20.39 tokens</li><li>max: 46 tokens</li></ul> |
  • Samples: | anchor | positive | |:------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| | <code>Attackers takeover expired PyPI domain to inject malicious code into developer projects.</code> | <code>Attackers hijack subdomains from non-existent resources to conduct operations under trusted names.</code> | | <code>they initiate contact via Teams, claiming to be from the organization’s help desk.</code> | <code>Threat actors exploit third-party services for spearphishing against specific victims.</code> | | <code>Malicious actors relay emails through compromised servers to obscure origins.</code> | <code>Legitimate web services hijacked en masse become unwitting command-and-control nodes and proxy layers.</code> |
  • Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Evaluation Dataset

parquet
  • Dataset: parquet
  • Size: 5,000 evaluation samples
  • Columns: <code>anchor</code> and <code>positive</code>
  • Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 21.6 tokens</li><li>max: 83 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 20.66 tokens</li><li>max: 50 tokens</li></ul> |
  • Samples: | anchor | positive | |:---------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------| | <code>The POST request sent by the malware to the Telegram API shown in the ANY.RUN sandbox</code> | <code>Threat actors embed malicious payloads inside normal web traffic patterns like HTTPS or WebSocket exchanges.</code> | | <code>Attackers force website visitors to view shocking imagery accompanied by intimidating messages.</code> | <code>Hackers alter content to undermine integrity with disturbing imagery.</code> | | <code>phishing campaign that targets Office 365 users and includes a convincing SharePoint document claiming to urgently need an email signature.</code> | <code>Spearphishing leverages link-based lures to bypass attachment scrutiny and extract sensitive tokens.</code> |
  • Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 32
  • gradient_accumulation_steps: 2
  • learning_rate: 5e-06
  • num_train_epochs: 5
  • warmup_ratio: 0.05
  • bf16: True
  • dataloader_num_workers: 2
  • load_best_model_at_end: True
  • prompts: {'anchor': 'query: ', 'positive': 'passage: '}
  • batch_sampler: no_duplicates
All Hyperparameters

<details><summary>Click to expand</summary>

  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: steps
  • prediction_loss_only: True
  • per_device_train_batch_size: 32
  • per_device_eval_batch_size: 8
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 2
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 5e-06
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 5
  • max_steps: -1
  • lr_scheduler_type: linear
  • lr_scheduler_kwargs: {}
  • warmup_ratio: 0.05
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: True
  • save_on_each_node: False
  • save_only_model: False
  • restore_callback_states_from_checkpoint: False
  • no_cuda: False
  • use_cpu: False
  • use_mps_device: False
  • seed: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: True
  • fp16: False
  • fp16_opt_level: O1
  • half_precision_backend: auto
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • local_rank: 0
  • ddp_backend: None
  • tpu_num_cores: None
  • tpu_metrics_debug: False
  • debug: []
  • dataloader_drop_last: False
  • dataloader_num_workers: 2
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: True
  • ignore_data_skip: False
  • fsdp: []
  • fsdp_min_num_params: 0
  • fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • parallelism_config: None
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamwtorchfused
  • optim_args: None
  • adafactor: False
  • group_by_length: False
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • skip_memory_metrics: True
  • use_legacy_prediction_loop: False
  • push_to_hub: False
  • resume_from_checkpoint: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_private_repo: None
  • hub_always_push: False
  • hub_revision: None
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • include_for_metrics: []
  • eval_do_concat_batches: True
  • fp16_backend: auto
  • push_to_hub_model_id: None
  • push_to_hub_organization: None
  • mp_parameters:
  • auto_find_batch_size: False
  • full_determinism: False
  • torchdynamo: None
  • ray_scope: last
  • ddp_timeout: 1800
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • eval_on_start: False
  • use_liger_kernel: False
  • liger_kernel_config: None
  • eval_use_gather_object: False
  • average_tokens_across_devices: False
  • prompts: {'anchor': 'query: ', 'positive': 'passage: '}
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional
  • router_mapping: {}
  • learning_rate_mapping: {}

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Losscti_ir_cosine_ndcg@10
2.99545400500.3039--
2.99575401000.3169--
2.99605401500.2976--
2.99625402000.3233--
2.99655402500.2968--
2.99685403000.296--
2.99715403500.3337--
2.99735404000.3135--
2.99765404500.3109--
2.99795405000.29--
2.99825405500.3262--
2.99855406000.3246--
2.99875406500.3159--
2.99905407000.3304--
2.99935407500.3209--
2.99965408000.3105--
2.99985408500.3203--
3.00015409000.3223--
3.00045409500.2969--
3.00075410000.3031--
3.00105410500.3212--
3.00125411000.2929--
3.00155411500.3161--
3.00185412000.2831--
3.00215412500.2933--
3.00235413000.3074--
3.00265413500.3143--
3.00295414000.2879--
3.00325414500.3224--
3.00345415000.3127--
3.00375415500.2936--
3.00405416000.3103--
3.00435416500.2975--
3.00465417000.3339--
3.00485417500.3256--
3.00515418000.3044--
3.00545418500.3058--
3.00575419000.3233--
3.00595419500.3023--
3.00625420000.31250.06460.2384
3.00655420500.3348--
3.00685421000.3177--
3.00715421500.3331--
3.00735422000.3284--
3.00765422500.3173--
3.00795423000.3153--
3.00825423500.3042--
3.00845424000.2856--
3.00875424500.3138--
3.00905425000.3217--
3.00935425500.2889--
3.00965426000.3007--
3.00985426500.3292--
3.01015427000.3051--
3.01045427500.3236--
3.01075428000.3091--
3.01095428500.3131--
3.01125429000.3261--
3.01155429500.3215--
3.01185430000.3106--
3.01205430500.3038--
3.01235431000.322--
3.01265431500.3227--
3.01295432000.3091--
3.01325432500.31--
3.01345433000.3176--
3.01375433500.3123--
3.01405434000.3175--
3.01435434500.3215--
3.01455435000.3449--
3.01485435500.3192--
3.01515436000.3178--
3.01545436500.3311--
3.01575437000.3089--
3.01595437500.3124--
3.01625438000.3153--
3.01655438500.314--
3.01685439000.3183--
3.01705439500.3198--
3.01735440000.30160.06460.2389
3.01765440500.3078--
3.01795441000.3109--
3.01815441500.3102--
3.01845442000.3107--
3.01875442500.3221--
3.01905443000.3038--
3.01935443500.3385--
3.01955444000.3321--
3.01985444500.3056--
3.02015445000.3133--
3.02045445500.3165--
3.02065446000.3247--
3.02095446500.33--
3.02125447000.3085--
3.02155447500.2866--
3.02185448000.3206--
3.02205448500.3311--
3.02235449000.3015--
3.02265449500.3209--
3.02295450000.3173--
3.02315450500.3177--
3.02345451000.324--
3.02375451500.2982--
3.02405452000.3119--
3.02425452500.3073--
3.02455453000.3212--
3.02485453500.2934--
3.02515454000.3122--
3.02545454500.2931--
3.02565455000.3123--
3.02595455500.3221--
3.02625456000.327--
3.02655456500.3045--
3.02675457000.315--
3.02705457500.3153--
3.02735458000.3108--
3.02765458500.3202--
3.02795459000.3186--
3.02815459500.3245--
3.02845460000.30960.06500.2395
3.02875460500.2951--
3.02905461000.3075--
3.02925461500.3066--
3.02955462000.3392--
3.02985462500.3476--
3.03015463000.2907--
3.03045463500.3137--
3.03065464000.3026--
3.03095464500.3119--
3.03125465000.3067--
3.03155465500.3308--
3.03175466000.3111--
3.03205466500.3105--
3.03235467000.3237--
3.03265467500.3331--
3.03285468000.3282--
3.03315468500.3184--
3.03345469000.2993--
3.03375469500.3275--
3.03405470000.3306--
3.03425470500.3027--
3.03455471000.2962--
3.03485471500.2903--
3.03515472000.2921--
3.03535472500.3361--
3.03565473000.3411--
3.03595473500.3193--
3.03625474000.3014--
3.03655474500.3463--
3.03675475000.2951--
3.03705475500.3202--
3.03735476000.3083--
3.03765476500.3045--
3.03785477000.3165--
3.03815477500.3198--
3.03845478000.3319--
3.03875478500.2809--
3.03895479000.3063--
3.03925479500.3143--
3.03955480000.31170.06470.2398
3.03985480500.3092--
3.04015481000.3142--
3.04035481500.3276--
3.04065482000.299--
3.04095482500.3051--
3.04125483000.3121--
3.04145483500.3104--
3.04175484000.334--
3.04205484500.3315--
3.04235485000.3022--
3.04265485500.3234--
3.04285486000.3043--
3.04315486500.3384--
3.04345487000.3144--
3.04375487500.3173--
3.04395488000.3142--
3.04425488500.3103--
3.04455489000.3049--
3.04485489500.3062--
3.04505490000.3234--
3.04535490500.3253--
3.04565491000.3158--
3.04595491500.3154--
3.04625492000.2991--
3.04645492500.3236--
3.04675493000.3246--
3.04705493500.3291--
3.04735494000.3296--
3.04755494500.3248--
3.04785495000.3047--
3.04815495500.3184--
3.04845496000.3181--
3.04875496500.321--
3.04895497000.3329--
3.04925497500.3156--
3.04955498000.321--
3.04985498500.3016--
3.05005499000.3191--
3.05035499500.2968--
3.05065500000.33290.06490.2391
3.05095500500.3191--
3.05125501000.3236--
3.05145501500.3196--
3.05175502000.3246--
3.05205502500.3246--
3.05235503000.3052--
3.05255503500.316--
3.05285504000.3255--
3.05315504500.3062--
3.05345505000.3296--
3.05365505500.2986--
3.05395506000.3284--
3.05425506500.3415--
3.05455507000.3253--
3.05485507500.3418--
3.05505508000.3195--
3.05535508500.3348--
3.05565509000.3303--
3.05595509500.296--
3.05615510000.3218--
3.05645510500.3025--
3.05675511000.305--
3.05705511500.3158--
3.05735512000.3155--
3.05755512500.3224--
3.05785513000.3076--
3.05815513500.3217--
3.05845514000.3083--
3.05865514500.309--
3.05895515000.335--
3.05925515500.3221--
3.05955516000.3316--
3.05975516500.314--
3.06005517000.2987--
3.06035517500.316--
3.06065518000.318--
3.06095518500.3217--
3.06115519000.325--
3.06145519500.3193--
3.06175520000.29670.06490.2389
3.06205520500.3146--
3.06225521000.3199--
3.06255521500.3318--
3.06285522000.3083--
3.06315522500.297--
3.06345523000.3101--
3.06365523500.3233--
3.06395524000.3206--
3.06425524500.3143--
3.06455525000.3027--
3.06475525500.2971--
3.06505526000.3361--
3.06535526500.3337--
3.06565527000.3241--
3.06585527500.3231--
3.06615528000.3238--
3.06645528500.3134--
3.06675529000.3125--
3.06705529500.3354--
3.06725530000.334--
3.06755530500.3082--
3.06785531000.3019--
3.06815531500.331--
3.06835532000.3047--
3.06865532500.3069--
3.06895533000.3373--
3.06925533500.3227--
3.06955534000.2983--
3.06975534500.3006--
3.07005535000.3006--
3.07035535500.3205--
3.07065536000.3137--
3.07085536500.3135--
3.07115537000.309--
3.07145537500.3247--
3.07175538000.3077--
3.07195538500.3111--
3.07225539000.3104--
3.07255539500.2856--
3.07285540000.29630.06450.2352
3.07315540500.2974--
3.07335541000.2947--
3.07365541500.323--
3.07395542000.3273--
3.07425542500.3152--
3.07445543000.3158--
3.07475543500.3074--
3.07505544000.2931--
3.07535544500.3044--
3.07565545000.3184--
3.07585545500.3263--
3.07615546000.2861--
3.07645546500.3338--
3.07675547000.3019--
3.07695547500.3192--
3.07725548000.3124--
3.07755548500.3145--
3.07785549000.3344--
3.07815549500.3075--
3.07835550000.3165--
3.07865550500.3273--
3.07895551000.3293--
3.07925551500.2913--
3.07945552000.3229--
3.07975552500.3006--
3.08005553000.3121--
3.08035553500.3118--
3.08055554000.3082--
3.08085554500.3201--
3.08115555000.3041--
3.08145555500.3118--
3.08175556000.3296--
3.08195556500.3021--
3.08225557000.3172--
3.08255557500.319--
3.08285558000.3093--
3.08305558500.3363--
3.08335559000.3082--
3.08365559500.3105--
3.08395560000.31490.06440.2369
3.08425560500.3211--
3.08445561000.3097--
3.08475561500.3061--
3.08505562000.3088--
3.08535562500.3201--
3.08555563000.308--
3.08585563500.3145--
3.08615564000.3325--
3.08645564500.311--
3.08665565000.3161--
3.08695565500.3214--
3.08725566000.3346--
3.08755566500.3238--
3.08785567000.312--
3.08805567500.3247--
3.08835568000.3144--
3.08865568500.3064--
3.08895569000.324--
3.08915569500.3042--
3.08945570000.3041--
3.08975570500.3166--
3.09005571000.3051--
3.09035571500.3195--
3.09055572000.322--
3.09085572500.3182--
3.09115573000.3066--
3.09145573500.3147--
3.09165574000.3047--
3.09195574500.3126--
3.09225575000.3215--
3.09255575500.3348--
3.09275576000.3295--
3.09305576500.296--
3.09335577000.327--
3.09365577500.3071--
3.09395578000.319--
3.09415578500.3101--
3.09445579000.3189--
3.09475579500.3397--
3.09505580000.32080.06390.2357
3.09525580500.3073--
3.09555581000.3087--
3.09585581500.2999--
3.09615582000.3278--
3.09645582500.3016--
3.09665583000.3257--
3.09695583500.3152--
3.09725584000.3054--
3.09755584500.3264--
3.09775585000.3229--
3.09805585500.3301--
3.09835586000.3091--
3.09865586500.302--
3.09895587000.3176--
3.09915587500.3113--
3.09945588000.3347--
3.09975588500.3153--
3.10005589000.3085--
3.10025589500.3046--
3.10055590000.327--
3.10085590500.3173--
3.10115591000.3368--
3.10135591500.3261--
3.10165592000.3154--
3.10195592500.328--
3.10225593000.3234--
3.10255593500.3135--
3.10275594000.3261--
3.10305594500.3222--
3.10335595000.3155--
3.10365595500.315--
3.10385596000.3284--
3.10415596500.309--
3.10445597000.3108--
3.10475597500.3395--
3.10505598000.3088--
3.10525598500.3299--
3.10555599000.3294--
3.10585599500.3141--
3.10615600000.30860.06480.2347
3.10635600500.3143--
3.10665601000.3201--
3.10695601500.3091--
3.10725602000.3297--
3.10745602500.3276--
3.10775603000.3219--
3.10805603500.3067--
3.10835604000.3256--
3.10865604500.2979--
3.10885605000.3179--
3.10915605500.3069--
3.10945606000.3298--
3.10975606500.3016--
3.10995607000.3309--
3.11025607500.3128--
3.11055608000.3224--
3.11085608500.3053--
3.11115609000.3105--
3.11135609500.312--
3.11165610000.3041--
3.11195610500.3315--
3.11225611000.3105--
3.11245611500.3217--
3.11275612000.3361--
3.11305612500.3111--
3.11335613000.3258--
3.11355613500.3278--
3.11385614000.3185--
3.11415614500.3411--
3.11445615000.3036--
3.11475615500.3155--
3.11495616000.3057--
3.11525616500.3098--
3.11555617000.3275--
3.11585617500.3104--
3.11605618000.3225--
3.11635618500.3212--
3.11665619000.2999--
3.11695619500.3179--
3.11725620000.32750.06550.2358
3.11745620500.3315--
3.11775621000.3122--
3.11805621500.3321--
3.11835622000.3135--
3.11855622500.3207--
3.11885623000.3156--
3.11915623500.313--
3.11945624000.2989--
3.11975624500.3118--
3.11995625000.2959--
3.12025625500.3089--
3.12055626000.3227--
3.12085626500.3306--
3.12105627000.3194--
3.12135627500.3107--
3.12165628000.3178--
3.12195628500.2989--
3.12215629000.3008--
3.12245629500.317--
3.12275630000.3414--
3.12305630500.3523--
3.12335631000.3305--
3.12355631500.3057--
3.12385632000.3159--
3.12415632500.312--
3.12445633000.3239--
3.12465633500.2991--
3.12495634000.3043--
3.12525634500.308--
3.12555635000.2998--
3.12585635500.3176--
3.12605636000.3172--
3.12635636500.3106--
3.12665637000.3173--
3.12695637500.2862--
3.12715638000.3262--
3.12745638500.3129--
3.12775639000.327--
3.12805639500.3057--
3.12825640000.33150.06530.2365
3.12855640500.2999--
3.12885641000.3014--
3.12915641500.3156--
3.12945642000.3387--
3.12965642500.3245--
3.12995643000.3083--
3.13025643500.3198--
3.13055644000.3418--
3.13075644500.3123--
3.13105645000.3183--
3.13135645500.3235--
3.13165646000.3134--
3.13195646500.3019--
3.13215647000.3114--
3.13245647500.3118--
3.13275648000.3335--
3.13305648500.3236--
3.13325649000.3289--
3.13355649500.3123--
3.13385650000.3054--
3.13415650500.3205--
3.13435651000.3398--
3.13465651500.3316--
3.13495652000.3099--
3.13525652500.3173--
3.13555653000.3184--
3.13575653500.3322--
3.13605654000.3158--
3.13635654500.3188--
3.13665655000.3102--
3.13685655500.325--
3.13715656000.3226--
3.13745656500.3217--
3.13775657000.3005--
3.13805657500.3015--
3.13825658000.3122--
3.13855658500.3213--
3.13885659000.3206--
3.13915659500.2961--
3.13935660000.34720.06500.2370
3.13965660500.3044--
3.13995661000.3295--
3.14025661500.3155--
3.14045662000.3225--
3.14075662500.3137--
3.14105663000.3141--
3.14135663500.3273--
3.14165664000.3282--
3.14185664500.3205--
3.14215665000.297--
3.14245665500.322--
3.14275666000.3117--
3.14295666500.3254--
3.14325667000.3215--
3.14355667500.312--
3.14385668000.3083--
3.14415668500.3117--
3.14435669000.3348--
3.14465669500.3158--
3.14495670000.3219--
3.14525670500.2881--
3.14545671000.309--
3.14575671500.31--
3.14605672000.3124--
3.14635672500.3082--
3.14665673000.342--
3.14685673500.3274--
3.14715674000.3208--
3.14745674500.2909--
3.14775675000.3065--
3.14795675500.3115--
3.14825676000.3389--
3.14855676500.3147--
3.14885677000.3287--
3.14905677500.3184--
3.14935678000.32--
3.14965678500.3211--
3.14995679000.3126--
3.15025679500.3159--
3.15045680000.32460.06470.2385
3.15075680500.3165--
3.15105681000.2955--
3.15135681500.332--
3.15155682000.3047--
3.15185682500.3201--
3.15215683000.3054--
3.15245683500.2858--
3.15275684000.3165--
3.15295684500.3169--
3.15325685000.3205--
3.15355685500.3384--
3.15385686000.3156--
3.15405686500.3104--
3.15435687000.3227--
3.15465687500.3164--
3.15495688000.3131--
3.15515688500.3022--
3.15545689000.3324--
3.15575689500.3002--
3.15605690000.3281--
3.15635690500.3065--
3.15655691000.3383--
3.15685691500.3369--
3.15715692000.3124--
3.15745692500.3066--
3.15765693000.2981--
3.15795693500.3348--
3.15825694000.3175--
3.15855694500.3076--
3.15885695000.321--
3.15905695500.3245--
3.15935696000.305--
3.15965696500.3212--
3.15995697000.3092--
3.16015697500.3404--
3.16045698000.3184--
3.16075698500.3193--
3.16105699000.3172--
3.16125699500.3367--
3.16155700000.31430.06420.2396
3.16185700500.3067--
3.16215701000.3036--
3.16245701500.3017--
3.16265702000.3011--
3.16295702500.2942--
3.16325703000.3159--
3.16355703500.2912--
3.16375704000.3161--
3.16405704500.321--
3.16435705000.303--
3.16465705500.304--
3.16495706000.3116--
3.16515706500.2971--
3.16545707000.3073--
3.16575707500.3254--
3.16605708000.3099--
3.16625708500.2979--
3.16655709000.3213--
3.16685709500.3192--
3.16715710000.3106--
3.16745710500.3239--
3.16765711000.3182--
3.16795711500.3078--
3.16825712000.3218--
3.16855712500.303--
3.16875713000.3034--
3.16905713500.3251--
3.16935714000.3212--
3.16965714500.3295--
3.16985715000.3111--
3.17015715500.3393--
3.17045716000.312--
3.17075716500.3287--
3.17105717000.309--
3.17125717500.3159--
3.17155718000.3188--
3.17185718500.3276--
3.17215719000.3236--
3.17235719500.3076--
3.17265720000.29850.06440.2400
3.17295720500.3252--
3.17325721000.3135--
3.17355721500.331--
3.17375722000.2923--
3.17405722500.2882--
3.17435723000.3114--
3.17465723500.3152--
3.17485724000.2952--
3.17515724500.3218--
3.17545725000.328--
3.17575725500.3094--
3.17595726000.3417--
3.17625726500.3294--
3.17655727000.3091--
3.17685727500.3063--
3.17715728000.2969--
3.17735728500.3056--
3.17765729000.3031--
3.17795729500.3328--
3.17825730000.2842--
3.17845730500.3319--
3.17875731000.3045--
3.17905731500.319--
3.17935732000.2966--
3.17965732500.3184--
3.17985733000.2928--
3.18015733500.318--
3.18045734000.3064--
3.18075734500.3036--
3.18095735000.3329--
3.18125735500.3061--
3.18155736000.3239--
3.18185736500.3234--
3.18205737000.3075--
3.18235737500.2974--
3.18265738000.3208--
3.18295738500.2988--
3.18325739000.3325--
3.18345739500.3233--
3.18375740000.30750.06350.2393
3.18405740500.3237--
3.18435741000.3282--
3.18455741500.299--
3.18485742000.32--
3.18515742500.3208--
3.18545743000.3273--
3.18575743500.3116--
3.18595744000.3133--
3.18625744500.3245--
3.18655745000.3058--
3.18685745500.3008--
3.18705746000.3351--
3.18735746500.3258--
3.18765747000.3341--
3.18795747500.3172--
3.18815748000.3162--
3.18845748500.3187--
3.18875749000.3195--
3.18905749500.3204--
3.18935750000.3199--
3.18955750500.3053--
3.18985751000.3271--
3.19015751500.3319--
3.19045752000.301--
3.19065752500.3036--
3.19095753000.309--
3.19125753500.321--
3.19155754000.3081--
3.19185754500.3211--
3.19205755000.2872--
3.19235755500.3196--
3.19265756000.3106--
3.19295756500.3067--
3.19315757000.3133--
3.19345757500.2973--
3.19375758000.3111--
3.19405758500.3482--
3.19435759000.3287--
3.19455759500.3219--
3.19485760000.32020.06350.2397
3.19515760500.3173--
3.19545761000.3364--
3.19565761500.3316--
3.19595762000.2783--
3.19625762500.3142--
3.19655763000.322--
3.19675763500.3106--
3.19705764000.3011--
3.19735764500.3138--
3.19765765000.3167--
3.19795765500.3406--
3.19815766000.3189--
3.19845766500.3236--
3.19875767000.3045--
3.19905767500.3356--
3.19925768000.2939--
3.19955768500.3199--
3.19985769000.2926--
3.20015769500.3062--
3.20045770000.3405--
3.20065770500.3201--
3.20095771000.3042--
3.20125771500.3123--
3.20155772000.3368--
3.20175772500.3225--
3.20205773000.3108--
3.20235773500.3102--
3.20265774000.3161--
3.20285774500.3266--
3.20315775000.3168--
3.20345775500.2797--
3.20375776000.3283--
3.20405776500.3139--
3.20425777000.3014--
3.20455777500.305--
3.20485778000.3204--
3.20515778500.3302--
3.20535779000.2996--
3.20565779500.3054--
3.20595780000.29380.06340.2404
3.20625780500.3078--
3.20655781000.3271--
3.20675781500.3127--
3.20705782000.3202--
3.20735782500.3148--
3.20765783000.3085--
3.20785783500.3252--
3.20815784000.3289--
3.20845784500.3028--
3.20875785000.3147--
3.20895785500.3317--
3.20925786000.318--
3.20955786500.3153--
3.20985787000.3142--
3.21015787500.3199--
3.21035788000.3267--
3.21065788500.3097--
3.21095789000.3392--
3.21125789500.3017--
3.21145790000.3148--
3.21175790500.31--
3.21205791000.3162--
3.21235791500.3257--
3.21265792000.3204--
3.21285792500.32--
3.21315793000.306--
3.21345793500.3031--
3.21375794000.3008--
3.21395794500.3411--
3.21425795000.3063--
3.21455795500.3134--
3.21485796000.2912--
3.21515796500.3113--
3.21535797000.2978--
3.21565797500.3191--
3.21595798000.2933--
3.21625798500.3116--
3.21645799000.3065--
3.21675799500.3194--
3.21705800000.31020.06410.2388
3.21735800500.3113--
3.21755801000.3281--
3.21785801500.3088--
3.21815802000.3039--
3.21845802500.3115--
3.21875803000.3047--
3.21895803500.3177--
3.21925804000.326--
3.21955804500.3157--
3.21985805000.3173--
3.22005805500.3345--
3.22035806000.3036--
3.22065806500.3237--
3.22095807000.3064--
3.22125807500.3172--
3.22145808000.32--
3.22175808500.3235--
3.22205809000.3092--
3.22235809500.2998--
3.22255810000.3101--
3.22285810500.3125--
3.22315811000.3214--
3.22345811500.3062--
3.22365812000.316--
3.22395812500.3188--
3.22425813000.3117--
3.22455813500.3085--
3.22485814000.3038--
3.22505814500.3111--
3.22535815000.3126--
3.22565815500.3206--
3.22595816000.3032--
3.22615816500.3077--
3.22645817000.3303--
3.22675817500.3202--
3.22705818000.3057--
3.22735818500.3082--
3.22755819000.2945--
3.22785819500.2873--
3.22815820000.31640.06400.2398
3.22845820500.3112--
3.22865821000.311--
3.22895821500.3134--
3.22925822000.3204--
3.22955822500.3312--
3.22975823000.2986--
3.23005823500.2962--
3.23035824000.3293--
3.23065824500.3141--
3.23095825000.3355--
3.23115825500.3319--
3.23145826000.3025--
3.23175826500.3057--
3.23205827000.3096--
3.23225827500.2983--
3.23255828000.3431--
3.23285828500.3212--
3.23315829000.3115--
3.23345829500.2837--
3.23365830000.3183--
3.23395830500.3152--
3.23425831000.3413--
3.23455831500.3168--
3.23475832000.3181--
3.23505832500.3034--
3.23535833000.3313--
3.23565833500.3438--
3.23595834000.3242--
3.23615834500.3158--
3.23645835000.3089--
3.23675835500.3269--
3.23705836000.3302--
3.23725836500.3114--
3.23755837000.3257--
3.23785837500.308--
3.23815838000.3188--
3.23835838500.2821--
3.23865839000.3144--
3.23895839500.3343--
3.23925840000.29120.06430.2392
3.23955840500.3018--
3.23975841000.2919--
3.24005841500.3162--
3.24035842000.3069--
3.24065842500.3067--
3.24085843000.3212--
3.24115843500.2943--
3.24145844000.2953--
3.24175844500.3195--
3.24205845000.3248--
3.24225845500.3146--
3.24255846000.3369--
3.24285846500.3111--
3.24315847000.3171--
3.24335847500.3066--
3.24365848000.3273--
3.24395848500.3241--
3.24425849000.3149--
3.24445849500.3331--
3.24475850000.3116--
3.24505850500.3214--
3.24535851000.3225--
3.24565851500.3157--
3.24585852000.3175--
3.24615852500.325--
3.24645853000.3396--
3.24675853500.3041--
3.24695854000.3159--
3.24725854500.3342--
3.24755855000.31--
3.24785855500.3235--
3.24815856000.3103--
3.24835856500.3089--
3.24865857000.3089--
3.24895857500.3344--
3.24925858000.2906--
3.24945858500.3277--
3.24975859000.3037--
3.25005859500.3249--
3.25035860000.29070.06380.2372
3.25055860500.3274--
3.25085861000.2945--
3.25115861500.314--
3.25145862000.3053--
3.25175862500.3056--
3.25195863000.3269--
3.25225863500.3134--
3.25255864000.3214--
3.25285864500.3077--
3.25305865000.326--
3.25335865500.3276--
3.25365866000.2945--
3.25395866500.2944--
3.25425867000.3059--
3.25445867500.3203--
3.25475868000.3135--
3.25505868500.3227--
3.25535869000.2969--
3.25555869500.3202--
3.25585870000.298--
3.25615870500.3242--
3.25645871000.3147--
3.25665871500.3108--
3.25695872000.3211--
3.25725872500.3144--
3.25755873000.2911--
3.25785873500.294--
3.25805874000.3289--
3.25835874500.3397--
3.25865875000.3072--
3.25895875500.3203--
3.25915876000.2901--
3.25945876500.3011--
3.25975877000.2937--
3.26005877500.3275--
3.26035878000.317--
3.26055878500.3081--
3.26085879000.3118--
3.26115879500.3147--
3.26145880000.31410.06430.2403
3.26165880500.3003--
3.26195881000.3287--
3.26225881500.3035--
3.26255882000.3027--
3.26285882500.3046--
3.26305883000.2885--
3.26335883500.3234--
3.26365884000.3056--
3.26395884500.3031--
3.26415885000.3345--
3.26445885500.3212--
3.26475886000.3211--
3.26505886500.3096--
3.26525887000.3118--
3.26555887500.3213--
3.26585888000.3077--
3.26615888500.301--
3.26645889000.3027--
3.26665889500.3066--
3.26695890000.3157--
3.26725890500.3107--
3.26755891000.3265--
3.26775891500.3015--
3.26805892000.3325--
3.26835892500.2997--
3.26865893000.2892--
3.26895893500.3174--
3.26915894000.3168--
3.26945894500.3022--
3.26975895000.3264--
3.27005895500.309--
3.27025896000.3215--
3.27055896500.3252--
3.27085897000.3082--
3.27115897500.3219--
3.27135898000.3177--
3.27165898500.3208--
3.27195899000.3217--
3.27225899500.3315--
3.27255900000.32790.06340.2418
3.27275900500.303--
3.27305901000.3038--
3.27335901500.3284--
3.27365902000.3044--
3.27385902500.3139--
3.27415903000.3153--
3.27445903500.3339--
3.27475904000.327--
3.27505904500.3001--
3.27525905000.298--
3.27555905500.3123--
3.27585906000.3085--
3.27615906500.3177--
3.27635907000.3029--
3.27665907500.3182--
3.27695908000.3027--
3.27725908500.2977--
3.27745909000.3311--
3.27775909500.3361--
3.27805910000.2941--
3.27835910500.3382--
3.27865911000.3103--
3.27885911500.3123--
3.27915912000.3136--
3.27945912500.3274--
3.27975913000.3231--
3.27995913500.3155--
3.28025914000.2969--
3.28055914500.3217--
3.28085915000.3365--
3.28115915500.315--
3.28135916000.3143--
3.28165916500.3271--
3.28195917000.3033--
3.28225917500.3186--
3.28245918000.291--
3.28275918500.2864--
3.28305919000.3051--
3.28335919500.2911--
3.28365920000.28960.06340.2405
3.28385920500.289--
3.28415921000.2987--
3.28445921500.3148--
3.28475922000.321--
3.28495922500.3096--
3.28525923000.3321--
3.28555923500.3143--
3.28585924000.3102--
3.28605924500.3188--
3.28635925000.2959--
3.28665925500.3291--
3.28695926000.3129--
3.28725926500.3375--
3.28745927000.3227--
3.28775927500.3266--
3.28805928000.3089--
3.28835928500.3031--
3.28855929000.3232--
3.28885929500.3031--
3.28915930000.3124--
3.28945930500.3246--
3.28975931000.3112--
3.28995931500.3082--
3.29025932000.3253--
3.29055932500.3093--
3.29085933000.3228--
3.29105933500.2898--
3.29135934000.3127--
3.29165934500.3205--
3.29195935000.33--
3.29215935500.3026--
3.29245936000.297--
3.29275936500.3115--
3.29305937000.3024--
3.29335937500.3226--
3.29355938000.3014--
3.29385938500.327--
3.29415939000.2927--
3.29445939500.3316--
3.29465940000.30430.06430.2410
3.29495940500.3062--
3.29525941000.3022--
3.29555941500.3233--
3.29585942000.3094--
3.29605942500.3054--
3.29635943000.3078--
3.29665943500.3081--
3.29695944000.3164--
3.29715944500.3171--
3.29745945000.3244--
3.29775945500.3009--
3.29805946000.3185--
3.29825946500.3226--
3.29855947000.3012--
3.29885947500.3113--
3.29915948000.3042--
3.29945948500.2943--
3.29965949000.3203--
3.29995949500.3257--
3.30025950000.3015--
3.30055950500.2988--
3.30075951000.3215--
3.30105951500.3478--
3.30135952000.3115--
3.30165952500.3101--
3.30195953000.3095--
3.30215953500.2938--
3.30245954000.3076--
3.30275954500.308--
3.30305955000.2927--
3.30325955500.3169--
3.30355956000.3011--
3.30385956500.289--
3.30415957000.3185--
3.30435957500.3101--
3.30465958000.3495--
3.30495958500.3243--
3.30525959000.2954--
3.30555959500.3149--
3.30575960000.32470.06340.2398
3.30605960500.3265--
3.30635961000.3192--
3.30665961500.3187--
3.30685962000.2985--
3.30715962500.3099--
3.30745963000.3052--
3.30775963500.3162--
3.30805964000.3339--
3.30825964500.3002--
3.30855965000.3073--
3.30885965500.3093--
3.30915966000.321--
3.30935966500.3283--
3.30965967000.3382--
3.30995967500.3141--
3.31025968000.3056--
3.31055968500.3087--
3.31075969000.2947--
3.31105969500.2945--
3.31135970000.2807--
3.31165970500.3025--
3.31185971000.31--
3.31215971500.2932--
3.31245972000.3261--
3.31275972500.3152--
3.31295973000.3161--
3.31325973500.3117--
3.31355974000.2889--
3.31385974500.2997--
3.31415975000.308--
3.31435975500.33--
3.31465976000.3079--
3.31495976500.2967--
3.31525977000.3063--
3.31545977500.3177--
3.31575978000.2944--
3.31605978500.3308--
3.31635979000.3128--
3.31665979500.3202--
3.31685980000.31860.06380.2413
3.31715980500.3031--
3.31745981000.3193--
3.31775981500.2936--
3.31795982000.3207--
3.31825982500.3006--
3.31855983000.3263--
3.31885983500.3152--
3.31905984000.2891--
3.31935984500.3208--
3.31965985000.3238--
3.31995985500.2825--
3.32025986000.3026--
3.32045986500.3152--
3.32075987000.3121--
3.32105987500.3033--
3.32135988000.2947--
3.32155988500.3311--
3.32185989000.3156--
3.32215989500.331--
3.32245990000.3051--
3.32275990500.3417--
3.32295991000.3294--
3.32325991500.3153--
3.32355992000.2998--
3.32385992500.3074--
3.32405993000.3359--
3.32435993500.3012--
3.32465994000.3096--
3.32495994500.2876--
3.32515995000.3018--
3.32545995500.2974--
3.32575996000.2973--
3.32605996500.3292--
3.32635997000.3251--
3.32655997500.3002--
3.32685998000.3045--
3.32715998500.3367--
3.32745999000.3286--
3.32765999500.3024--
3.32796000000.30760.06350.2414
3.32826000500.2957--
3.32856001000.3236--
3.32886001500.3057--
3.32906002000.318--
3.32936002500.293--
3.32966003000.3054--
3.32996003500.3142--
3.33016004000.3262--
3.33046004500.3156--
3.33076005000.2995--
3.33106005500.3024--
3.33136006000.2967--
3.33156006500.3094--
3.33186007000.3138--
3.33216007500.3185--
3.33246008000.2994--
3.33266008500.2915--
3.33296009000.3106--
3.33326009500.2974--
3.33356010000.3007--
3.33376010500.3213--
3.33406011000.296--
3.33436011500.3272--
3.33466012000.3155--
3.33496012500.298--
3.33516013000.3187--
3.33546013500.3108--
3.33576014000.3045--
3.33606014500.32--
3.33626015000.2961--
3.33656015500.3077--
3.33686016000.3164--
3.33716016500.2834--
3.33746017000.3036--
3.33766017500.3091--
3.33796018000.2879--
3.33826018500.3163--
3.33856019000.3111--
3.33876019500.3076--
3.33906020000.31990.06360.2432
3.33936020500.317--
3.33966021000.3295--
3.33986021500.3107--
3.34016022000.3335--
3.34046022500.3023--
3.34076023000.3246--
3.34106023500.305--
3.34126024000.3243--
3.34156024500.294--
3.34186025000.3131--
3.34216025500.3112--
3.34236026000.3295--
3.34266026500.2976--
3.34296027000.3076--
3.34326027500.2978--
3.34356028000.3199--
3.34376028500.317--
3.34406029000.3481--
3.34436029500.3469--
3.34466030000.309--
3.34486030500.2907--
3.34516031000.3257--
3.34546031500.2885--
3.34576032000.2922--
3.34596032500.3131--
3.34626033000.2794--
3.34656033500.3041--
3.34686034000.3266--
3.34716034500.3183--
3.34736035000.3153--
3.34766035500.2995--
3.34796036000.2974--
3.34826036500.3135--
3.34846037000.3156--
3.34876037500.2733--
3.34906038000.32--
3.34936038500.3056--
3.34966039000.3042--
3.34986039500.3136--
3.35016040000.30750.06420.2406
3.35046040500.3108--
3.35076041000.3184--
3.35096041500.3258--
3.35126042000.3161--
3.35156042500.3148--
3.35186043000.3046--
3.35216043500.3102--
3.35236044000.2998--
3.35266044500.3273--
3.35296045000.3289--
3.35326045500.3024--
3.35346046000.2887--
3.35376046500.3301--
3.35406047000.2945--
3.35436047500.316--
3.35456048000.3221--
3.35486048500.3004--
3.35516049000.3103--
3.35546049500.3243--
3.35576050000.3066--
3.35596050500.287--
3.35626051000.3208--
3.35656051500.3091--
3.35686052000.3005--
3.35706052500.3076--
3.35736053000.306--
3.35766053500.3207--
3.35796054000.3078--
3.35826054500.299--
3.35846055000.318--
3.35876055500.2967--
3.35906056000.302--
3.35936056500.2924--
3.35956057000.3234--
3.35986057500.3116--
3.36016058000.3042--
3.36046058500.2892--
3.36066059000.2921--
3.36096059500.2957--
3.36126060000.29110.06270.2401
3.36156060500.3097--
3.36186061000.3275--
3.36206061500.3087--
3.36236062000.3394--
3.36266062500.3261--
3.36296063000.3064--
3.36316063500.3104--
3.36346064000.3034--
3.36376064500.3275--
3.36406065000.2864--
3.36436065500.3041--
3.36456066000.3342--
3.36486066500.3091--
3.36516067000.3093--
3.36546067500.3263--
3.36566068000.3076--
3.36596068500.3005--
3.36626069000.3147--
3.36656069500.3054--
3.36676070000.3022--
3.36706070500.2779--
3.36736071000.3064--
3.36766071500.3116--
3.36796072000.3201--
3.36816072500.321--
3.36846073000.3068--
3.36876073500.3033--
3.36906074000.3042--
3.36926074500.3086--
3.36956075000.298--
3.36986075500.311--
3.37016076000.3136--
3.37046076500.3107--
3.37066077000.2705--
3.37096077500.3038--
3.37126078000.3287--
3.37156078500.3273--
3.37176079000.3105--
3.37206079500.3263--
3.37236080000.29910.06370.2436
3.37266080500.3144--
3.37286081000.2986--
3.37316081500.3005--
3.37346082000.3167--
3.37376082500.3168--
3.37406083000.3236--
3.37426083500.2942--
3.37456084000.3224--
3.37486084500.2829--
3.37516085000.314--
3.37536085500.2953--
3.37566086000.3426--
3.37596086500.2971--
3.37626087000.3005--
3.37656087500.3049--
3.37676088000.3163--
3.37706088500.3148--
3.37736089000.3064--
3.37766089500.3038--
3.37786090000.319--
3.37816090500.3067--
3.37846091000.3063--
3.37876091500.2851--
3.37906092000.2983--
3.37926092500.309--
3.37956093000.3008--
3.37986093500.3043--
3.38016094000.3073--
3.38036094500.3146--
3.38066095000.3146--
3.38096095500.2948--
3.38126096000.2879--
3.38146096500.2954--
3.38176097000.332--
3.38206097500.3087--
3.38236098000.2948--
3.38266098500.298--
3.38286099000.3103--
3.38316099500.3008--
3.38346100000.31230.06360.2426
3.38376100500.3334--
3.38396101000.2924--
3.38426101500.3028--
3.38456102000.3104--
3.38486102500.3007--
3.38516103000.331--
3.38536103500.3155--
3.38566104000.2804--
3.38596104500.3127--
3.38626105000.3058--
3.38646105500.312--
3.38676106000.3083--
3.38706106500.3188--
3.38736107000.2732--
3.38756107500.3025--
3.38786108000.3254--
3.38816108500.3289--
3.38846109000.3066--
3.38876109500.2935--
3.38896110000.3061--
3.38926110500.3084--
3.38956111000.2971--
3.38986111500.3211--
3.39006112000.3143--
3.39036112500.3171--
3.39066113000.3267--
3.39096113500.3213--
3.39126114000.3145--
3.39146114500.3214--
3.39176115000.3111--
3.39206115500.289--
3.39236116000.2985--
3.39256116500.3158--
3.39286117000.3016--
3.39316117500.2984--
3.39346118000.311--
3.39366118500.317--
3.39396119000.3076--
3.39426119500.3183--
3.39456120000.3310.06390.2440
3.39486120500.3019--
3.39506121000.314--
3.39536121500.3156--
3.39566122000.3098--
3.39596122500.3092--
3.39616123000.3019--
3.39646123500.2913--
3.39676124000.3045--
3.39706124500.2996--
3.39736125000.3057--
3.39756125500.3247--
3.39786126000.2873--
3.39816126500.3075--
3.39846127000.3118--
3.39866127500.3094--
3.39896128000.2977--
3.39926128500.305--
3.39956129000.2886--
3.39986129500.3177--
3.40006130000.3132--
3.40036130500.2953--
3.40066131000.3142--
3.40096131500.3221--
3.40116132000.3283--
3.40146132500.3002--
3.40176133000.3107--
3.40206133500.3028--
3.40226134000.3037--
3.40256134500.2966--
3.40286135000.2995--
3.40316135500.3108--
3.40346136000.2889--
3.40366136500.332--
3.40396137000.3161--
3.40426137500.2993--
3.40456138000.3105--
3.40476138500.2956--
3.40506139000.3253--
3.40536139500.2942--
3.40566140000.30750.06410.2407
3.40596140500.3292--
3.40616141000.3169--
3.40646141500.3297--
3.40676142000.3377--
3.40706142500.2963--
3.40726143000.2889--
3.40756143500.3009--
3.40786144000.2972--
3.40816144500.3268--
3.40836145000.3063--
3.40866145500.3244--
3.40896146000.3052--
3.40926146500.3079--
3.40956147000.3156--
3.40976147500.3233--
3.41006148000.3104--
3.41036148500.3024--
3.41066149000.293--
3.41086149500.3294--
3.41116150000.3199--
3.41146150500.3186--
3.41176151000.3153--
3.41206151500.3077--
3.41226152000.2973--
3.41256152500.3062--
3.41286153000.2909--
3.41316153500.3133--
3.41336154000.304--
3.41366154500.3121--
3.41396155000.3097--
3.41426155500.3137--
3.41446156000.3221--
3.41476156500.2882--
3.41506157000.2938--
3.41536157500.3093--
3.41566158000.2947--
3.41586158500.2927--
3.41616159000.3215--
3.41646159500.3026--
3.41676160000.32390.06330.2443
3.41696160500.2984--
3.41726161000.3201--
3.41756161500.2768--
3.41786162000.2848--
3.41816162500.3282--
3.41836163000.3125--
3.41866163500.3092--
3.41896164000.325--
3.41926164500.2857--
3.41946165000.2957--
3.41976165500.3156--
3.42006166000.3032--
3.42036166500.3326--
3.42056167000.3067--
3.42086167500.3137--
3.42116168000.2834--
3.42146168500.3349--
3.42176169000.3069--
3.42196169500.3008--
3.42226170000.3132--
3.42256170500.2999--
3.42286171000.3134--
3.42306171500.312--
3.42336172000.319--
3.42366172500.3188--
3.42396173000.315--
3.42426173500.3318--
3.42446174000.3--
3.42476174500.3093--
3.42506175000.3223--
3.42536175500.2882--
3.42556176000.3057--
3.42586176500.3014--
3.42616177000.3105--
3.42646177500.3034--
3.42676178000.298--
3.42696178500.3188--
3.42726179000.3155--
3.42756179500.2964--
3.42786180000.28930.06410.2454
3.42806180500.3043--
3.42836181000.3112--
3.42866181500.3243--
3.42896182000.3126--
3.42916182500.3031--
3.42946183000.2818--
3.42976183500.3222--
3.43006184000.2718--
3.43036184500.3048--
3.43056185000.3081--
3.43086185500.3066--
3.43116186000.2886--
3.43146186500.3102--
3.43166187000.3073--
3.43196187500.3215--
3.43226188000.2961--
3.43256188500.2874--
3.43286189000.2984--
3.43306189500.3187--
3.43336190000.3049--
3.43366190500.3067--
3.43396191000.3128--
3.43416191500.2903--
3.43446192000.3126--
3.43476192500.2794--
3.43506193000.2986--
3.43526193500.3305--
3.43556194000.3099--
3.43586194500.3207--
3.43616195000.3147--
3.43646195500.3202--
3.43666196000.3058--
3.43696196500.3044--
3.43726197000.3104--
3.43756197500.2945--
3.43776198000.2905--
3.43806198500.3193--
3.43836199000.3016--
3.43866199500.2993--
3.43896200000.33150.06440.2452
3.43916200500.3262--
3.43946201000.2985--
3.43976201500.2941--
3.44006202000.3004--
3.44026202500.2994--
3.44056203000.3015--
3.44086203500.3056--
3.44116204000.3184--
3.44136204500.2865--
3.44166205000.2923--
3.44196205500.2932--
3.44226206000.3018--
3.44256206500.3227--
3.44276207000.2951--
3.44306207500.2945--
3.44336208000.3302--
3.44366208500.3017--
3.44386209000.3029--
3.44416209500.2994--
3.44446210000.3088--
3.44476210500.3059--
3.44506211000.2943--
3.44526211500.2966--
3.44556212000.2919--
3.44586212500.3021--
3.44616213000.2889--
3.44636213500.2934--
3.44666214000.2891--
3.44696214500.3029--
3.44726215000.3065--
3.44756215500.3049--
3.44776216000.3025--
3.44806216500.3261--
3.44836217000.3008--
3.44866217500.3121--
3.44886218000.3034--
3.44916218500.3298--
3.44946219000.307--
3.44976219500.3035--
3.44996220000.31850.06260.2402
3.45026220500.3069--
3.45056221000.2972--
3.45086221500.2876--
3.45116222000.3199--
3.45136222500.285--
3.45166223000.3232--
3.45196223500.3064--
3.45226224000.3092--
3.45246224500.3243--
3.45276225000.3015--
3.45306225500.2985--
3.45336226000.3111--
3.45366226500.2994--
3.45386227000.297--
3.45416227500.293--
3.45446228000.3078--
3.45476228500.3171--
3.45496229000.3085--
3.45526229500.3182--
3.45556230000.3063--
3.45586230500.3141--
3.45606231000.2961--
3.45636231500.3142--
3.45666232000.3038--
3.45696232500.3038--
3.45726233000.3065--
3.45746233500.2756--
3.45776234000.2874--
3.45806234500.3087--
3.45836235000.2847--
3.45856235500.292--
3.45886236000.3156--
3.45916236500.3366--
3.45946237000.3136--
3.45976237500.313--
3.45996238000.3046--
3.46026238500.2943--
3.46056239000.3225--
3.46086239500.2997--
3.46106240000.29560.06270.2429
3.46136240500.2989--
3.46166241000.3205--
3.46196241500.3152--
3.46216242000.3001--
3.46246242500.3055--
3.46276243000.3129--
3.46306243500.2911--
3.46336244000.2979--
3.46356244500.3228--
3.46386245000.3028--
3.46416245500.3057--
3.46446246000.3054--
3.46466246500.3011--
3.46496247000.3131--
3.46526247500.3133--
3.46556248000.3184--
3.46586248500.3099--
3.46606249000.3002--
3.46636249500.3167--
3.46666250000.2966--
3.46696250500.3141--
3.46716251000.2976--
3.46746251500.313--
3.46776252000.2958--
3.46806252500.3126--
3.46836253000.3107--
3.46856253500.3137--
3.46886254000.317--
3.46916254500.3124--
3.46946255000.2901--
3.46966255500.2936--
3.46996256000.3166--
3.47026256500.3261--
3.47056257000.2806--
3.47076257500.308--
3.47106258000.2955--
3.47136258500.315--
3.47166259000.3122--
3.47196259500.3131--
3.47216260000.29720.06280.2405
3.47246260500.3059--
3.47276261000.3111--
3.47306261500.2884--
3.47326262000.3019--
3.47356262500.3131--
3.47386263000.2898--
3.47416263500.2804--
3.47446264000.293--
3.47466264500.2881--
3.47496265000.3089--
3.47526265500.3089--
3.47556266000.305--
3.47576266500.2971--
3.47606267000.2789--
3.47636267500.3074--
3.47666268000.3043--
3.47686268500.3103--
3.47716269000.3449--
3.47746269500.304--
3.47776270000.2943--
3.47806270500.2984--
3.47826271000.2986--
3.47856271500.3188--
3.47886272000.3094--
3.47916272500.3031--
3.47936273000.3212--
3.47966273500.2903--
3.47996274000.3343--
3.48026274500.3163--
3.48056275000.3137--
3.48076275500.3095--
3.48106276000.3025--
3.48136276500.2937--
3.48166277000.3081--
3.48186277500.3056--
3.48216278000.3028--
3.48246278500.2933--
3.48276279000.2896--
3.48296279500.3054--
3.48326280000.31540.06300.2427
3.48356280500.304--
3.48386281000.3145--
3.48416281500.2868--
3.48436282000.2979--
3.48466282500.3101--
3.48496283000.298--
3.48526283500.3129--
3.48546284000.3145--
3.48576284500.3247--
3.48606285000.3223--
3.48636285500.3019--
3.48666286000.2993--
3.48686286500.2971--
3.48716287000.3031--
3.48746287500.3092--
3.48776288000.3188--
3.48796288500.305--
3.48826289000.3128--
3.48856289500.2958--
3.48886290000.3156--
3.48906290500.309--
3.48936291000.281--
3.48966291500.319--
3.48996292000.2987--
3.49026292500.3291--
3.49046293000.2996--
3.49076293500.2914--
3.49106294000.2812--
3.49136294500.2848--
3.49156295000.2959--
3.49186295500.2989--
3.49216296000.3326--
3.49246296500.3101--
3.49276297000.3057--
3.49296297500.3166--
3.49326298000.2907--
3.49356298500.3005--
3.49386299000.308--
3.49406299500.3051--
3.49436300000.30070.06360.2395
3.49466300500.3016--
3.49496301000.2921--
3.49526301500.298--
3.49546302000.2893--
3.49576302500.32--
3.49606303000.3225--
3.49636303500.3148--
3.49656304000.3204--
3.49686304500.2908--
3.49716305000.2989--
3.49746305500.3121--
3.49766306000.3091--
3.49796306500.3402--
3.49826307000.3045--
3.49856307500.3--
3.49886308000.3005--
3.49906308500.317--
3.49936309000.2734--
3.49966309500.3093--
3.49996310000.2994--
3.50016310500.3013--
3.50046311000.3111--
3.50076311500.2858--
3.50106312000.3034--
3.50136312500.3018--
3.50156313000.2933--
3.50186313500.3025--
3.50216314000.3043--
3.50246314500.305--
3.50266315000.2921--
3.50296315500.2846--
3.50326316000.2971--
3.50356316500.3239--
3.50376317000.3006--
3.50406317500.3107--
3.50436318000.3197--
3.50466318500.3053--
3.50496319000.2871--
3.50516319500.2986--
3.50546320000.2950.06310.2400
3.50576320500.2827--
3.50606321000.2981--
3.50626321500.2998--
3.50656322000.3086--
3.50686322500.3006--
3.50716323000.301--
3.50746323500.3028--
3.50766324000.2966--
3.50796324500.283--
3.50826325000.3083--
3.50856325500.304--
3.50876326000.3044--
3.50906326500.3178--
3.50936327000.306--
3.50966327500.3245--
3.50986328000.2853--
3.51016328500.3119--
3.51046329000.2908--
3.51076329500.3198--
3.51106330000.2996--
3.51126330500.3168--
3.51156331000.3--
3.51186331500.2781--
3.51216332000.3109--
3.51236332500.3042--
3.51266333000.284--
3.51296333500.3284--
3.51326334000.3179--
3.51356334500.3128--
3.51376335000.2817--
3.51406335500.3092--
3.51436336000.3024--
3.51466336500.3087--
3.51486337000.3135--
3.51516337500.294--
3.51546338000.3109--
3.51576338500.3243--
3.51606339000.2978--
3.51626339500.296--
3.51656340000.30620.06240.2425
3.51686340500.3158--
3.51716341000.3223--
3.51736341500.3041--
3.51766342000.3187--
3.51796342500.3022--
3.51826343000.2971--
3.51846343500.2763--
3.51876344000.3172--
3.51906344500.3113--
3.51936345000.3051--
3.51966345500.3084--
3.51986346000.2914--
3.52016346500.2911--
3.52046347000.2996--
3.52076347500.3093--
3.52096348000.299--
3.52126348500.2933--
3.52156349000.2987--
3.52186349500.2772--
3.52216350000.3137--
3.52236350500.313--
3.52266351000.2917--
3.52296351500.2931--
3.52326352000.3266--
3.52346352500.2916--
3.52376353000.3028--
3.52406353500.3075--
3.52436354000.3092--
3.52456354500.2892--
3.52486355000.3187--
3.52516355500.3241--
3.52546356000.314--
3.52576356500.3079--
3.52596357000.3148--
3.52626357500.3114--
3.52656358000.3017--
3.52686358500.2798--
3.52706359000.3056--
3.52736359500.2927--
3.52766360000.29490.06260.2447
3.52796360500.3006--
3.52826361000.3157--
3.52846361500.3052--
3.52876362000.2998--
3.52906362500.3119--
3.52936363000.3061--
3.52956363500.2862--
3.52986364000.3011--
3.53016364500.3011--
3.53046365000.2955--
3.53066365500.2873--
3.53096366000.2989--
3.53126366500.2828--
3.53156367000.2902--
3.53186367500.3138--
3.53206368000.3064--
3.53236368500.3107--
3.53266369000.289--
3.53296369500.3087--
3.53316370000.281--
3.53346370500.3084--
3.53376371000.2882--
3.53406371500.3146--
3.53436372000.3092--
3.53456372500.3152--
3.53486373000.3145--
3.53516373500.3152--
3.53546374000.3131--
3.53566374500.2979--
3.53596375000.3374--
3.53626375500.3217--
3.53656376000.3044--
3.53686376500.3139--
3.53706377000.3069--
3.53736377500.3091--
3.53766378000.3018--
3.53796378500.3195--
3.53816379000.2905--
3.53846379500.3253--
3.53876380000.30460.06280.2438
3.53906380500.3032--
3.53926381000.3105--
3.53956381500.3017--
3.53986382000.3144--
3.54016382500.3076--
3.54046383000.2912--
3.54066383500.2924--
3.54096384000.3088--
3.54126384500.3241--
3.54156385000.293--
3.54176385500.3211--
3.54206386000.3036--
3.54236386500.3001--
3.54266387000.2968--
3.54296387500.2892--
3.54316388000.3174--
3.54346388500.3116--
3.54376389000.3117--
3.54406389500.3082--
3.54426390000.2988--
3.54456390500.2769--
3.54486391000.323--
3.54516391500.321--
3.54536392000.2962--
3.54566392500.3099--
3.54596393000.3129--
3.54626393500.3006--
3.54656394000.3118--
3.54676394500.2969--
3.54706395000.3362--
3.54736395500.3084--
3.54766396000.2931--
3.54786396500.2826--
3.54816397000.3262--
3.54846397500.2977--
3.54876398000.309--
3.54906398500.3017--
3.54926399000.2997--
3.54956399500.308--
3.54986400000.31050.06210.2413
3.55016400500.303--
3.55036401000.2994--
3.55066401500.3015--
3.55096402000.2959--
3.55126402500.3027--
3.55146403000.2987--
3.55176403500.2932--
3.55206404000.3037--
3.55236404500.3071--
3.55266405000.2877--
3.55286405500.3122--
3.55316406000.2719--
3.55346406500.2909--
3.55376407000.3203--
3.55396407500.3024--
3.55426408000.3061--
3.55456408500.3115--
3.55486409000.3084--
3.55516409500.2968--
3.55536410000.3089--
3.55566410500.2857--
3.55596411000.2881--
3.55626411500.2846--
3.55646412000.2941--
3.55676412500.2918--
3.55706413000.3133--
3.55736413500.3062--
3.55756414000.3202--
3.55786414500.3134--
3.55816415000.3247--
3.55846415500.3008--
3.55876416000.2964--
3.55896416500.2911--
3.55926417000.3242--
3.55956417500.3284--
3.55986418000.3248--
3.56006418500.3081--
3.56036419000.3239--
3.56066419500.2915--
3.56096420000.29590.06180.2446
3.56126420500.3169--
3.56146421000.2955--
3.56176421500.2983--
3.56206422000.301--
3.56236422500.3194--
3.56256423000.3077--
3.56286423500.2963--
3.56316424000.3058--
3.56346424500.3006--
3.56376425000.2952--
3.56396425500.3033--
3.56426426000.2973--
3.56456426500.3094--
3.56486427000.3069--
3.56506427500.3136--
3.56536428000.3012--
3.56566428500.3142--
3.56596429000.314--
3.56616429500.2842--
3.56646430000.3073--
3.56676430500.3078--
3.56706431000.3084--
3.56736431500.3082--
3.56756432000.3007--
3.56786432500.305--
3.56816433000.2982--
3.56846433500.3222--
3.56866434000.327--
3.56896434500.2979--
3.56926435000.3196--
3.56956435500.3177--
3.56986436000.3202--
3.57006436500.2698--
3.57036437000.2949--
3.57066437500.3135--
3.57096438000.2806--
3.57116438500.304--
3.57146439000.31--
3.57176439500.3063--
3.57206440000.29550.06220.2448
3.57226440500.3193--
3.57256441000.2906--
3.57286441500.3066--
3.57316442000.3127--
3.57346442500.3245--
3.57366443000.2931--
3.57396443500.3065--
3.57426444000.3092--
3.57456444500.3097--
3.57476445000.3102--
3.57506445500.2969--
3.57536446000.3076--
3.57566446500.3123--
3.57596447000.299--
3.57616447500.3061--
3.57646448000.311--
3.57676448500.3005--
3.57706449000.2907--
3.57726449500.3197--
3.57756450000.3191--
3.57786450500.2987--
3.57816451000.3052--
3.57836451500.2989--
3.57866452000.3153--
3.57896452500.3163--
3.57926453000.3104--
3.57956453500.2985--
3.57976454000.2902--
3.58006454500.3135--
3.58036455000.3126--
3.58066455500.2954--
3.58086456000.3122--
3.58116456500.3134--
3.58146457000.3266--
3.58176457500.2999--
3.58206458000.3124--
3.58226458500.3006--
3.58256459000.2972--
3.58286459500.2915--
3.58316460000.30310.06230.2472
3.58336460500.3082--
3.58366461000.2871--
3.58396461500.3051--
3.58426462000.3038--
3.58456462500.296--
3.58476463000.2852--
3.58506463500.31--
3.58536464000.3018--
3.58566464500.3216--
3.58586465000.2971--
3.58616465500.3079--
3.58646466000.3005--
3.58676466500.2963--
3.58696467000.3034--
3.58726467500.2954--
3.58756468000.3116--
3.58786468500.2966--
3.58816469000.2912--
3.58836469500.3186--
3.58866470000.2952--
3.58896470500.2922--
3.58926471000.308--
3.58946471500.3177--
3.58976472000.2947--
3.59006472500.2952--
3.59036473000.3029--
3.59066473500.2979--
3.59086474000.3123--
3.59116474500.2958--
3.59146475000.3041--
3.59176475500.3052--
3.59196476000.2957--
3.59226476500.2846--
3.59256477000.3145--
3.59286477500.3238--
3.59306478000.3043--
3.59336478500.2808--
3.59366479000.3031--
3.59396479500.2819--
3.59426480000.29350.06240.2472
3.59446480500.2926--
3.59476481000.2954--
3.59506481500.3178--
3.59536482000.2896--
3.59556482500.3213--
3.59586483000.3108--
3.59616483500.3119--
3.59646484000.3243--
3.59676484500.2856--
3.59696485000.3158--
3.59726485500.3198--
3.59756486000.291--
3.59786486500.3323--
3.59806487000.3013--
3.59836487500.3096--
3.59866488000.2947--
3.59896488500.2987--
3.59916489000.3174--
3.59946489500.2999--
3.59976490000.3054--
3.60006490500.2911--
3.60036491000.3041--
3.60056491500.3186--
3.60086492000.2956--
3.60116492500.3007--
3.60146493000.3018--
3.60166493500.2988--
3.60196494000.302--
3.60226494500.2856--
3.60256495000.324--
3.60286495500.3005--
3.60306496000.3209--
3.60336496500.2978--
3.60366497000.281--
3.60396497500.2993--
3.60416498000.3067--
3.60446498500.293--
3.60476499000.2955--
3.60506499500.3113--
3.60526500000.2960.06200.2452
3.60556500500.3024--
3.60586501000.2999--
3.60616501500.3088--
3.60646502000.2915--
3.60666502500.288--
3.60696503000.2873--
3.60726503500.2997--
3.60756504000.3078--
3.60776504500.2978--
3.60806505000.3066--
3.60836505500.2905--
3.60866506000.3085--
3.60896506500.3019--
3.60916507000.278--
3.60946507500.2984--
3.60976508000.2917--
3.61006508500.2908--
3.61026509000.3138--
3.61056509500.3054--
3.61086510000.3074--
3.61116510500.2879--
3.61146511000.2992--
3.61166511500.301--
3.61196512000.2962--
3.61226512500.3116--
3.61256513000.2871--
3.61276513500.2848--
3.61306514000.3076--
3.61336514500.3084--
3.61366515000.2948--
3.61386515500.3095--
3.61416516000.2953--
3.61446516500.3061--
3.61476517000.3189--
3.61506517500.3073--
3.61526518000.2901--
3.61556518500.2986--
3.61586519000.321--
3.61616519500.3305--
3.61636520000.29610.06150.2437
3.61666520500.2799--
3.61696521000.3161--
3.61726521500.3066--
3.61756522000.2919--
3.61776522500.2947--
3.61806523000.3021--
3.61836523500.3063--
3.61866524000.2988--
3.61886524500.3143--
3.61916525000.3035--
3.61946525500.2841--
3.61976526000.2847--
3.61996526500.282--
3.62026527000.302--
3.62056527500.2794--
3.62086528000.2996--
3.62116528500.3065--
3.62136529000.2771--
3.62166529500.3161--
3.62196530000.2956--
3.62226530500.3107--
3.62246531000.3046--
3.62276531500.2864--
3.62306532000.3117--
3.62336532500.3249--
3.62366533000.2776--
3.62386533500.328--
3.62416534000.284--
3.62446534500.3193--
3.62476535000.2861--
3.62496535500.3129--
3.62526536000.3283--
3.62556536500.2985--
3.62586537000.3071--
3.62606537500.2925--
3.62636538000.3078--
3.62666538500.2753--
3.62696539000.2902--
3.62726539500.3036--
3.62746540000.30690.06120.2466
3.62776540500.3093--
3.62806541000.2861--
3.62836541500.295--
3.62856542000.3264--
3.62886542500.305--
3.62916543000.3067--
3.62946543500.3068--
3.62976544000.3038--
3.62996544500.2932--
3.63026545000.2878--
3.63056545500.2961--
3.63086546000.2981--
3.63106546500.3155--
3.63136547000.3073--
3.63166547500.286--
3.63196548000.3206--
3.63226548500.3077--
3.63246549000.3062--
3.63276549500.2992--
3.63306550000.2923--
3.63336550500.3044--
3.63356551000.3201--
3.63386551500.3065--
3.63416552000.318--
3.63446552500.2934--
3.63466553000.2725--
3.63496553500.3062--
3.63526554000.2927--
3.63556554500.3047--
3.63586555000.2898--
3.63606555500.3194--
3.63636556000.2893--
3.63666556500.2843--
3.63696557000.2805--
3.63716557500.3072--
3.63746558000.2924--
3.63776558500.3219--
3.63806559000.3089--
3.63836559500.311--
3.63856560000.28260.06130.2445
3.63886560500.3081--
3.63916561000.2869--
3.63946561500.3083--
3.63966562000.3226--
3.63996562500.2969--
3.64026563000.2919--
3.64056563500.2886--
3.64076564000.2857--
3.64106564500.2932--
3.64136565000.2969--
3.64166565500.3125--
3.64196566000.293--
3.64216566500.3058--
3.64246567000.2989--
3.64276567500.3105--
3.64306568000.2893--
3.64326568500.3186--
3.64356569000.3089--
3.64386569500.2955--
3.64416570000.2811--
3.64446570500.2996--
3.64466571000.2772--
3.64496571500.3069--
3.64526572000.3032--
3.64556572500.288--
3.64576573000.2996--
3.64606573500.2964--
3.64636574000.2918--
3.64666574500.2936--
3.64686575000.2819--
3.64716575500.3025--
3.64746576000.3017--
3.64776576500.3001--
3.64806577000.315--
3.64826577500.3021--
3.64856578000.3091--
3.64886578500.2961--
3.64916579000.3058--
3.64936579500.2911--
3.64966580000.28840.06110.2447
3.64996580500.2973--
3.65026581000.3033--
3.65056581500.2902--
3.65076582000.3233--
3.65106582500.2871--
3.65136583000.2879--
3.65166583500.2794--
3.65186584000.2999--
3.65216584500.3138--
3.65246585000.2969--
3.65276585500.2938--
3.65306586000.2935--
3.65326586500.3026--
3.65356587000.2879--
3.65386587500.315--
3.65416588000.3164--
3.65436588500.315--
3.65466589000.3099--
3.65496589500.2907--
3.65526590000.3059--
3.65546590500.2932--
3.65576591000.3076--
3.65606591500.2938--
3.65636592000.3128--
3.65666592500.2933--
3.65686593000.3138--
3.65716593500.3163--
3.65746594000.3222--
3.65776594500.2947--
3.65796595000.3048--
3.65826595500.304--
3.65856596000.3099--
3.65886596500.2966--
3.65916597000.3061--
3.65936597500.3028--
3.65966598000.2934--
3.65996598500.3061--
3.66026599000.2891--
3.66046599500.2991--
3.66076600000.29550.06130.2473
3.66106600500.3085--
3.66136601000.3008--
3.66156601500.311--
3.66186602000.2912--
3.66216602500.3038--
3.66246603000.2957--
3.66276603500.2904--
3.66296604000.3246--
3.66326604500.2945--
3.66356605000.3192--
3.66386605500.287--
3.66406606000.2918--
3.66436606500.2902--
3.66466607000.3204--
3.66496607500.3035--
3.66526608000.2909--
3.66546608500.2794--
3.66576609000.3062--
3.66606609500.2999--
3.66636610000.2845--
3.66656610500.2971--
3.66686611000.3044--
3.66716611500.3187--
3.66746612000.3168--
3.66766612500.2984--
3.66796613000.31--
3.66826613500.3021--
3.66856614000.2906--
3.66886614500.2992--
3.66906615000.314--
3.66936615500.3029--
3.66966616000.3081--
3.66996616500.3248--
3.67016617000.3207--
3.67046617500.2915--
3.67076618000.3026--
3.67106618500.322--
3.67136619000.3108--
3.67156619500.2914--
3.67186620000.29190.06230.2452
3.67216620500.298--
3.67246621000.3005--
3.67266621500.2934--
3.67296622000.3025--
3.67326622500.3031--
3.67356623000.2929--
3.67376623500.2972--
3.67406624000.2973--
3.67436624500.278--
3.67466625000.3112--
3.67496625500.2968--
3.67516626000.2922--
3.67546626500.3127--
3.67576627000.2983--
3.67606627500.3123--
3.67626628000.3079--
3.67656628500.3074--
3.67686629000.298--
3.67716629500.3069--
3.67746630000.3152--
3.67766630500.3062--
3.67796631000.3024--
3.67826631500.2973--
3.67856632000.3128--
3.67876632500.287--
3.67906633000.2916--
3.67936633500.2934--
3.67966634000.3115--
3.67996634500.3041--
3.68016635000.296--
3.68046635500.3008--
3.68076636000.2881--
3.68106636500.3141--
3.68126637000.3129--
3.68156637500.2948--
3.68186638000.2969--
3.68216638500.2807--
3.68236639000.2905--
3.68266639500.2985--
3.68296640000.30720.06210.2459
3.68326640500.31--
3.68356641000.315--
3.68376641500.305--
3.68406642000.2872--
3.68436642500.2975--
3.68466643000.2846--
3.68486643500.2913--
3.68516644000.3122--
3.68546644500.3051--
3.68576645000.3168--
3.68606645500.2961--
3.68626646000.3069--
3.68656646500.3134--
3.68686647000.3013--
3.68716647500.2892--
3.68736648000.27--
3.68766648500.2864--
3.68796649000.3149--
3.68826649500.2948--
3.68846650000.2872--
3.68876650500.304--
3.68906651000.2845--
3.68936651500.3075--
3.68966652000.3211--
3.68986652500.3036--
3.69016653000.2985--
3.69046653500.2948--
3.69076654000.2941--
3.69096654500.2901--
3.69126655000.2924--
3.69156655500.2826--
3.69186656000.2906--
3.69216656500.2881--
3.69236657000.3172--
3.69266657500.293--
3.69296658000.2833--
3.69326658500.2992--
3.69346659000.303--
3.69376659500.2887--
3.69406660000.29940.06240.2451
3.69436660500.2914--
3.69456661000.2814--
3.69486661500.3098--
3.69516662000.313--
3.69546662500.2841--
3.69576663000.3066--
3.69596663500.3052--
3.69626664000.2938--
3.69656664500.2992--
3.69686665000.2896--
3.69706665500.3219--
3.69736666000.3072--
3.69766666500.3002--
3.69796667000.2921--
3.69826667500.3024--
3.69846668000.3045--
3.69876668500.2988--
3.69906669000.2852--
3.69936669500.2933--
3.69956670000.2949--
3.69986670500.3074--
3.70016671000.3123--
3.70046671500.3119--
3.70076672000.3233--
3.70096672500.3037--
3.70126673000.2844--
3.70156673500.3076--
3.70186674000.3169--
3.70206674500.3165--
3.70236675000.3182--
3.70266675500.3004--
3.70296676000.2984--
3.70316676500.3021--
3.70346677000.3024--
3.70376677500.309--
3.70406678000.3179--
3.70436678500.2831--
3.70456679000.3064--
3.70486679500.2819--
3.70516680000.29870.06180.2453
3.70546680500.2999--
3.70566681000.283--
3.70596681500.2983--
3.70626682000.3029--
3.70656682500.2963--
3.70686683000.2908--
3.70706683500.3062--
3.70736684000.2943--
3.70766684500.2898--
3.70796685000.2852--
3.70816685500.2911--
3.70846686000.2894--
3.70876686500.3206--
3.70906687000.2957--
3.70926687500.3059--
3.70956688000.3133--
3.70986688500.2959--
3.71016689000.3147--
3.71046689500.3031--
3.71066690000.3119--
3.71096690500.293--
3.71126691000.3174--
3.71156691500.3053--
3.71176692000.303--
3.71206692500.3114--
3.71236693000.2965--
3.71266693500.273--
3.71296694000.2995--
3.71316694500.3087--
3.71346695000.3164--
3.71376695500.3039--
3.71406696000.2995--
3.71426696500.3141--
3.71456697000.3005--
3.71486697500.303--
3.71516698000.2977--
3.71536698500.3047--
3.71566699000.3204--
3.71596699500.2906--
3.71626700000.30990.06170.2458
3.71656700500.311--
3.71676701000.3003--
3.71706701500.3136--
3.71736702000.3143--
3.71766702500.2854--
3.71786703000.3032--
3.71816703500.2792--
3.71846704000.2786--
3.71876704500.2867--
3.71906705000.3036--
3.71926705500.2798--
3.71956706000.3059--
3.71986706500.3226--
3.72016707000.3003--
3.72036707500.287--
3.72066708000.3195--
3.72096708500.3138--
3.72126709000.3148--
3.72146709500.3112--
3.72176710000.2874--
3.72206710500.2817--
3.72236711000.2925--
3.72266711500.2963--
3.72286712000.275--
3.72316712500.3013--
3.72346713000.2855--
3.72376713500.3056--
3.72396714000.3131--
3.72426714500.2982--
3.72456715000.2976--
3.72486715500.2909--
3.72516716000.2955--
3.72536716500.2755--
3.72566717000.3046--
3.72596717500.2936--
3.72626718000.2975--
3.72646718500.3196--
3.72676719000.3061--
3.72706719500.2956--
3.72736720000.30880.06190.2456
3.72766720500.2978--
3.72786721000.3068--
3.72816721500.2861--
3.72846722000.2937--
3.72876722500.3026--
3.72896723000.292--
3.72926723500.3113--
3.72956724000.2871--
3.72986724500.2971--
3.73006725000.3051--
3.73036725500.3059--
3.73066726000.2925--
3.73096726500.2789--
3.73126727000.2806--
3.73146727500.2926--
3.73176728000.293--
3.73206728500.2977--
3.73236729000.3094--
3.73256729500.2889--
3.73286730000.2951--
3.73316730500.299--
3.73346731000.3011--
3.73376731500.2913--
3.73396732000.2872--
3.73426732500.2955--
3.73456733000.3135--
3.73486733500.3112--
3.73506734000.3018--
3.73536734500.2874--
3.73566735000.3161--
3.73596735500.3225--
3.73616736000.3076--
3.73646736500.2956--
3.73676737000.2882--
3.73706737500.316--
3.73736738000.3041--
3.73756738500.2914--
3.73786739000.3011--
3.73816739500.2944--
3.73846740000.29170.06200.2462
3.73866740500.2926--
3.73896741000.3108--
3.73926741500.286--
3.73956742000.3008--
3.73986742500.3051--
3.74006743000.304--
3.74036743500.2947--
3.74066744000.3014--
3.74096744500.2986--
3.74116745000.2987--
3.74146745500.3235--
3.74176746000.3136--
3.74206746500.2955--
3.74226747000.3119--
3.74256747500.2856--
3.74286748000.31--
3.74316748500.299--
3.74346749000.31--
3.74366749500.3005--
3.74396750000.3069--
3.74426750500.3018--
3.74456751000.2865--
3.74476751500.3163--
3.74506752000.3056--
3.74536752500.3116--
3.74566753000.3074--
3.74596753500.3--
3.74616754000.2691--
3.74646754500.2923--
3.74676755000.2883--
3.74706755500.3029--
3.74726756000.2975--
3.74756756500.2796--
3.74786757000.31--
3.74816757500.2958--
3.74846758000.2829--
3.74866758500.2673--
3.74896759000.28--
3.74926759500.3089--
3.74956760000.2850.06210.2491
3.74976760500.2937--
3.75006761000.2831--
3.75036761500.3028--
3.75066762000.3093--
3.75086762500.2759--
3.75116763000.2936--
3.75146763500.2861--
3.75176764000.3148--
3.75206764500.2883--
3.75226765000.307--
3.75256765500.3145--
3.75286766000.2887--
3.75316766500.3092--
3.75336767000.289--
3.75366767500.2953--
3.75396768000.2789--
3.75426768500.2959--
3.75456769000.2941--
3.75476769500.2827--
3.75506770000.3072--
3.75536770500.3041--
3.75566771000.2987--
3.75586771500.2869--
3.75616772000.3108--
3.75646772500.2947--
3.75676773000.2921--
3.75696773500.3024--
3.75726774000.306--
3.75756774500.3029--
3.75786775000.3037--
3.75816775500.3002--
3.75836776000.3144--
3.75866776500.3141--
3.75896777000.307--
3.75926777500.3146--
3.75946778000.2858--
3.75976778500.2973--
3.76006779000.3081--
3.76036779500.2964--
3.76066780000.31170.06170.2478
3.76086780500.2918--
3.76116781000.3056--
3.76146781500.2978--
3.76176782000.2904--
3.76196782500.2908--
3.76226783000.301--
3.76256783500.287--
3.76286784000.2958--
3.76306784500.3254--
3.76336785000.3134--
3.76366785500.2905--
3.76396786000.3065--
3.76426786500.2903--
3.76446787000.3096--
3.76476787500.3099--
3.76506788000.2961--
3.76536788500.3054--
3.76556789000.3139--
3.76586789500.2944--
3.76616790000.3063--
3.76646790500.304--
3.76676791000.3075--
3.76696791500.2999--
3.76726792000.278--
3.76756792500.2895--
3.76786793000.3069--
3.76806793500.3005--
3.76836794000.2937--
3.76866794500.3078--
3.76896795000.3049--
3.76926795500.3132--
3.76946796000.2872--
3.76976796500.3061--
3.77006797000.293--
3.77036797500.2888--
3.77056798000.2815--
3.77086798500.2886--
3.77116799000.3103--
3.77146799500.2957--
3.77166800000.31260.06220.2477
3.77196800500.3081--
3.77226801000.2934--
3.77256801500.3009--
3.77286802000.315--
3.77306802500.3124--
3.77336803000.3042--
3.77366803500.2962--
3.77396804000.3026--
3.77416804500.2978--
3.77446805000.308--
3.77476805500.2863--
3.77506806000.2883--
3.77536806500.3007--
3.77556807000.298--
3.77586807500.2987--
3.77616808000.2911--
3.77646808500.283--
3.77666809000.2889--
3.77696809500.2881--
3.77726810000.3029--
3.77756810500.3029--
3.77776811000.3101--
3.77806811500.3222--
3.77836812000.2859--
3.77866812500.2979--
3.77896813000.3071--
3.77916813500.2922--
3.77946814000.3199--
3.77976814500.3019--
3.78006815000.2979--
3.78026815500.3095--
3.78056816000.3014--
3.78086816500.29--
3.78116817000.2765--
3.78146817500.3194--
3.78166818000.2996--
3.78196818500.3039--
3.78226819000.3051--
3.78256819500.3082--
3.78276820000.29270.06260.2461
3.78306820500.3076--
3.78336821000.3023--
3.78366821500.3051--
3.78386822000.3062--
3.78416822500.2911--
3.78446823000.289--
3.78476823500.3044--
3.78506824000.2864--
3.78526824500.3091--
3.78556825000.3059--
3.78586825500.3077--
3.78616826000.3057--
3.78636826500.3146--
3.78666827000.2878--
3.78696827500.3078--
3.78726828000.3027--
3.78756828500.2837--
3.78776829000.2953--
3.78806829500.299--
3.78836830000.2967--
3.78866830500.2924--
3.78886831000.2975--
3.78916831500.2926--
3.78946832000.303--
3.78976832500.2894--
3.78996833000.2859--
3.79026833500.3024--
3.79056834000.2865--
3.79086834500.2785--
3.79116835000.3046--
3.79136835500.2987--
3.79166836000.2876--
3.79196836500.3091--
3.79226837000.2995--
3.79246837500.2964--
3.79276838000.2747--
3.79306838500.3001--
3.79336839000.3019--
3.79366839500.3016--
3.79386840000.28160.06200.2456
3.79416840500.2891--
3.79446841000.3165--
3.79476841500.3113--
3.79496842000.2977--
3.79526842500.2961--
3.79556843000.3074--
3.79586843500.2969--
3.79616844000.2696--
3.79636844500.2996--
3.79666845000.2791--
3.79696845500.2842--
3.79726846000.2936--
3.79746846500.2903--
3.79776847000.2927--
3.79806847500.2941--
3.79836848000.2859--
3.79856848500.287--
3.79886849000.2909--
3.79916849500.3031--
3.79946850000.3042--
3.79976850500.3075--
3.79996851000.3131--
3.80026851500.3056--
3.80056852000.2768--
3.80086852500.2741--
3.80106853000.2856--
3.80136853500.3173--
3.80166854000.3052--
3.80196854500.3187--
3.80226855000.3326--
3.80246855500.3064--
3.80276856000.2974--
3.80306856500.2965--
3.80336857000.2763--
3.80356857500.2933--
3.80386858000.3026--
3.80416858500.2815--
3.80446859000.3122--
3.80466859500.2786--
3.80496860000.31350.06220.2454
3.80526860500.3017--
3.80556861000.3054--
3.80586861500.292--
3.80606862000.2921--
3.80636862500.302--
3.80666863000.2933--
3.80696863500.2972--
3.80716864000.2776--
3.80746864500.2916--
3.80776865000.2908--
3.80806865500.2918--
3.80836866000.2967--
3.80856866500.3026--
3.80886867000.2901--
3.80916867500.3047--
3.80946868000.2961--
3.80966868500.3243--
3.80996869000.2719--
3.81026869500.2944--
3.81056870000.2925--
3.81076870500.2994--
3.81106871000.2981--
3.81136871500.2837--
3.81166872000.3008--
3.81196872500.2886--
3.81216873000.2627--
3.81246873500.3091--
3.81276874000.2957--
3.81306874500.2971--
3.81326875000.3001--
3.81356875500.3198--
3.81386876000.2934--
3.81416876500.2993--
3.81446877000.3032--
3.81466877500.2794--
3.81496878000.3017--
3.81526878500.3094--
3.81556879000.3053--
3.81576879500.2943--
3.81606880000.28980.06220.2437
3.81636880500.2906--
3.81666881000.3064--
3.81696881500.3048--
3.81716882000.2992--
3.81746882500.3041--
3.81776883000.3074--
3.81806883500.336--
3.81826884000.273--
3.81856884500.282--
3.81886885000.3177--
3.81916885500.2836--
3.81936886000.2837--
3.81966886500.3195--
3.81996887000.3018--
3.82026887500.2954--
3.82056888000.3199--
3.82076888500.3003--
3.82106889000.293--
3.82136889500.2976--
3.82166890000.2994--
3.82186890500.2687--
3.82216891000.2937--
3.82246891500.3081--
3.82276892000.2721--
3.82306892500.2873--
3.82326893000.2997--
3.82356893500.2849--
3.82386894000.3362--
3.82416894500.3201--
3.82436895000.2928--
3.82466895500.3011--
3.82496896000.2996--
3.82526896500.2805--
3.82546897000.2806--
3.82576897500.3137--
3.82606898000.2965--
3.82636898500.3029--
3.82666899000.2591--
3.82686899500.2901--
3.82716900000.29230.06210.2443
3.82746900500.2949--
3.82776901000.2721--
3.82796901500.3061--
3.82826902000.3007--
3.82856902500.3238--
3.82886903000.2844--
3.82916903500.2841--
3.82936904000.2962--
3.82966904500.3036--
3.82996905000.2925--
3.83026905500.3127--
3.83046906000.3017--
3.83076906500.2992--
3.83106907000.2944--
3.83136907500.2951--
3.83156908000.2967--
3.83186908500.3057--
3.83216909000.2943--
3.83246909500.3191--
3.83276910000.3--
3.83296910500.2866--
3.83326911000.2972--
3.83356911500.2995--
3.83386912000.3146--
3.83406912500.2897--
3.83436913000.2777--
3.83466913500.3031--
3.83496914000.3071--
3.83526914500.2934--
3.83546915000.2914--
3.83576915500.2867--
3.83606916000.2747--
3.83636916500.2976--
3.83656917000.3017--
3.83686917500.2867--
3.83716918000.2852--
3.83746918500.3057--
3.83766919000.3151--
3.83796919500.297--
3.83826920000.30110.06200.2458
3.83856920500.2996--
3.83886921000.2926--
3.83906921500.2856--
3.83936922000.2916--
3.83966922500.2956--
3.83996923000.3004--
3.84016923500.3004--
3.84046924000.2879--
3.84076924500.2877--
3.84106925000.3018--
3.84136925500.2924--
3.84156926000.2882--
3.84186926500.3055--
3.84216927000.2898--
3.84246927500.3159--
3.84266928000.2771--
3.84296928500.3105--
3.84326929000.278--
3.84356929500.2903--
3.84386930000.2801--
3.84406930500.2941--
3.84436931000.3006--
3.84466931500.3111--
3.84496932000.2767--
3.84516932500.313--
3.84546933000.285--
3.84576933500.3061--
3.84606934000.3031--
3.84626934500.2878--
3.84656935000.2895--
3.84686935500.2909--
3.84716936000.2832--
3.84746936500.2862--
3.84766937000.3068--
3.84796937500.2948--
3.84826938000.2766--
3.84856938500.3101--
3.84876939000.2901--
3.84906939500.3047--
3.84936940000.29550.06190.2458
3.84966940500.2856--
3.84996941000.2987--
3.85016941500.3089--
3.85046942000.2869--
3.85076942500.3083--
3.85106943000.2959--
3.85126943500.295--
3.85156944000.2893--
3.85186944500.2938--
3.85216945000.3016--
3.85236945500.3008--
3.85266946000.2995--
3.85296946500.2882--
3.85326947000.311--
3.85356947500.3151--
3.85376948000.2937--
3.85406948500.2877--
3.85436949000.2898--
3.85466949500.2714--
3.85486950000.2774--
3.85516950500.3129--
3.85546951000.3017--
3.85576951500.2967--
3.85606952000.2893--
3.85626952500.2906--
3.85656953000.296--
3.85686953500.2841--
3.85716954000.2837--
3.85736954500.2773--
3.85766955000.2834--
3.85796955500.2895--
3.85826956000.2907--
3.85846956500.3016--
3.85876957000.295--
3.85906957500.3071--
3.85936958000.2937--
3.85966958500.3173--
3.85986959000.2831--
3.86016959500.3107--
3.86046960000.30470.06190.2472
3.86076960500.2951--
3.86096961000.2738--
3.86126961500.2942--
3.86156962000.3081--
3.86186962500.3111--
3.86216963000.3--
3.86236963500.2959--
3.86266964000.2873--
3.86296964500.3034--
3.86326965000.3177--
3.86346965500.2926--
3.86376966000.2934--
3.86406966500.2941--
3.86436967000.3022--
3.86466967500.3228--
3.86486968000.278--
3.86516968500.3028--
3.86546969000.3023--
3.86576969500.303--
3.86596970000.2806--
3.86626970500.3105--
3.86656971000.2714--
3.86686971500.2929--
3.86706972000.2857--
3.86736972500.3013--
3.86766973000.2979--
3.86796973500.2845--
3.86826974000.3137--
3.86846974500.2828--
3.86876975000.3048--
3.86906975500.3143--
3.86936976000.2956--
3.86956976500.2904--
3.86986977000.2823--
3.87016977500.2816--
3.87046978000.3066--
3.87076978500.2973--
3.87096979000.289--
3.87126979500.3015--
3.87156980000.27630.06140.2458
3.87186980500.3051--
3.87206981000.2963--
3.87236981500.3101--
3.87266982000.2979--
3.87296982500.3059--
3.87316983000.3103--
3.87346983500.3279--
3.87376984000.2734--
3.87406984500.2831--
3.87436985000.2936--
3.87456985500.293--
3.87486986000.2672--
3.87516986500.3107--
3.87546987000.3051--
3.87566987500.2824--
3.87596988000.3083--
3.87626988500.2967--
3.87656989000.283--
3.87686989500.2814--
3.87706990000.2875--
3.87736990500.283--
3.87766991000.2993--
3.87796991500.3009--
3.87816992000.3083--
3.87846992500.2766--
3.87876993000.3039--
3.87906993500.2908--
3.87926994000.3007--
3.87956994500.2952--
3.87986995000.2963--
3.88016995500.2979--
3.88046996000.3068--
3.88066996500.2911--
3.88096997000.2949--
3.88126997500.3042--
3.88156998000.2892--
3.88176998500.2782--
3.88206999000.3055--
3.88236999500.3065--
3.88267000000.27690.06210.2464
3.88297000500.294--
3.88317001000.2753--
3.88347001500.2653--
3.88377002000.2926--
3.88407002500.3221--
3.88427003000.279--
3.88457003500.2823--
3.88487004000.2927--
3.88517004500.3078--
3.88547005000.3069--
3.88567005500.3019--
3.88597006000.2976--
3.88627006500.297--
3.88657007000.306--
3.88677007500.2929--
3.88707008000.2889--
3.88737008500.3011--
3.88767009000.2891--
3.88787009500.2796--
3.88817010000.2845--
3.88847010500.2979--
3.88877011000.2939--
3.88907011500.2905--
3.88927012000.2929--
3.88957012500.293--
3.88987013000.2969--
3.89017013500.2894--
3.89037014000.2811--
3.89067014500.2966--
3.89097015000.2955--
3.89127015500.2801--
3.89157016000.2969--
3.89177016500.303--
3.89207017000.3092--
3.89237017500.2897--
3.89267018000.2971--
3.89287018500.2935--
3.89317019000.3032--
3.89347019500.2951--
3.89377020000.28510.06210.2482
3.89397020500.3134--
3.89427021000.3037--
3.89457021500.299--
3.89487022000.2842--
3.89517022500.288--
3.89537023000.2823--
3.89567023500.2778--
3.89597024000.2947--
3.89627024500.2753--
3.89647025000.2798--
3.89677025500.2991--
3.89707026000.2942--
3.89737026500.2911--
3.89767027000.3104--
3.89787027500.2894--
3.89817028000.2892--
3.89847028500.3083--
3.89877029000.2925--
3.89897029500.2872--
3.89927030000.2737--
3.89957030500.3104--
3.89987031000.2847--
3.90007031500.2978--
3.90037032000.3053--
3.90067032500.2984--
3.90097033000.2926--
3.90127033500.2611--
3.90147034000.3078--
3.90177034500.2831--
3.90207035000.3007--
3.90237035500.2896--
3.90257036000.2759--
3.90287036500.2932--
3.90317037000.3014--
3.90347037500.3036--
3.90377038000.2763--
3.90397038500.2937--
3.90427039000.2994--
3.90457039500.2884--
3.90487040000.28620.06140.2471
3.90507040500.302--
3.90537041000.308--
3.90567041500.2902--
3.90597042000.2895--
3.90617042500.2794--
3.90647043000.2986--
3.90677043500.3009--
3.90707044000.3101--
3.90737044500.2823--
3.90757045000.3038--
3.90787045500.3078--
3.90817046000.2576--
3.90847046500.3091--
3.90867047000.3077--
3.90897047500.2683--
3.90927048000.2902--
3.90957048500.3059--
3.90987049000.3092--
3.91007049500.2987--
3.91037050000.3075--
3.91067050500.2964--
3.91097051000.2805--
3.91117051500.2976--
3.91147052000.3118--
3.91177052500.3027--
3.91207053000.3--
3.91237053500.3051--
3.91257054000.2951--
3.91287054500.3124--
3.91317055000.2999--
3.91347055500.3318--
3.91367056000.2884--
3.91397056500.3142--
3.91427057000.3006--
3.91457057500.2942--
3.91477058000.3229--
3.91507058500.2912--
3.91537059000.3004--
3.91567059500.2946--
3.91597060000.29540.06200.2483
3.91617060500.2722--
3.91647061000.3024--
3.91677061500.3069--
3.91707062000.2945--
3.91727062500.2851--
3.91757063000.3105--
3.91787063500.2989--
3.91817064000.2612--
3.91847064500.2955--
3.91867065000.2813--
3.91897065500.2787--
3.91927066000.2648--
3.91957066500.3079--
3.91977067000.284--
3.92007067500.2978--
3.92037068000.2738--
3.92067068500.3046--
3.92087069000.314--
3.92117069500.3028--
3.92147070000.2972--
3.92177070500.307--
3.92207071000.2863--
3.92227071500.2759--
3.92257072000.3015--
3.92287072500.2793--
3.92317073000.2778--
3.92337073500.287--
3.92367074000.3025--
3.92397074500.2972--
3.92427075000.3078--
3.92457075500.3094--
3.92477076000.2998--
3.92507076500.2957--
3.92537077000.2839--
3.92567077500.2929--
3.92587078000.2726--
3.92617078500.2942--
3.92647079000.2876--
3.92677079500.3032--
3.92697080000.29730.06160.2483
3.92727080500.2664--
3.92757081000.2822--
3.92787081500.2969--
3.92817082000.3026--
3.92837082500.2948--
3.92867083000.2835--
3.92897083500.2937--
3.92927084000.2782--
3.92947084500.2953--
3.92977085000.2803--
3.93007085500.2819--
3.93037086000.2896--
3.93067086500.3223--
3.93087087000.2877--
3.93117087500.2911--
3.93147088000.2968--
3.93177088500.308--
3.93197089000.2775--
3.93227089500.2828--
3.93257090000.3024--
3.93287090500.2773--
3.93317091000.3135--
3.93337091500.304--
3.93367092000.2912--
3.93397092500.309--
3.93427093000.2799--
3.93447093500.2931--
3.93477094000.3158--
3.93507094500.2864--
3.93537095000.2917--
3.93557095500.2856--
3.93587096000.3056--
3.93617096500.2906--
3.93647097000.2904--
3.93677097500.287--
3.93697098000.2984--
3.93727098500.2871--
3.93757099000.2863--
3.93787099500.2843--
3.93807100000.29510.06160.2500
3.93837100500.2713--
3.93867101000.3065--
3.93897101500.3115--
3.93927102000.3002--
3.93947102500.2723--
3.93977103000.285--
3.94007103500.2787--
3.94037104000.2942--
3.94057104500.297--
3.94087105000.3054--
3.94117105500.3039--
3.94147106000.2899--
3.94167106500.2929--
3.94197107000.3048--
3.94227107500.2833--
3.94257108000.2697--
3.94287108500.2912--
3.94307109000.3092--
3.94337109500.2849--
3.94367110000.3083--
3.94397110500.288--
3.94417111000.2933--
3.94447111500.2816--
3.94477112000.2874--
3.94507112500.2866--
3.94537113000.2861--
3.94557113500.2694--
3.94587114000.2782--
3.94617114500.2825--
3.94647115000.2833--
3.94667115500.2984--
3.94697116000.2966--
3.94727116500.289--
3.94757117000.2956--
3.94777117500.3013--
3.94807118000.2895--
3.94837118500.3039--
3.94867119000.2891--
3.94897119500.2918--
3.94917120000.28530.06200.2471
3.94947120500.2972--
3.94977121000.303--
3.95007121500.2845--
3.95027122000.3181--
3.95057122500.2894--
3.95087123000.2956--
3.95117123500.2754--
3.95147124000.3004--
3.95167124500.2896--
3.95197125000.321--
3.95227125500.2842--
3.95257126000.274--
3.95277126500.291--
3.95307127000.2819--
3.95337127500.312--
3.95367128000.3179--
3.95387128500.2859--
3.95417129000.2718--
3.95447129500.2979--
3.95477130000.3169--
3.95507130500.2871--
3.95527131000.2918--
3.95557131500.3101--
3.95587132000.2875--
3.95617132500.2904--
3.95637133000.2953--
3.95667133500.3036--
3.95697134000.2955--
3.95727134500.3135--
3.95757135000.2864--
3.95777135500.2969--
3.95807136000.3056--
3.95837136500.2961--
3.95867137000.2769--
3.95887137500.2884--
3.95917138000.2974--
3.95947138500.314--
3.95977139000.3115--
3.96007139500.2928--
3.96027140000.29530.06150.2494
3.96057140500.2746--
3.96087141000.2979--
3.96117141500.303--
3.96137142000.3104--
3.96167142500.2744--
3.96197143000.3004--
3.96227143500.3053--
3.96247144000.2967--
3.96277144500.319--
3.96307145000.3151--
3.96337145500.2868--
3.96367146000.2735--
3.96387146500.293--
3.96417147000.3138--
3.96447147500.2807--
3.96477148000.2939--
3.96497148500.3066--
3.96527149000.2872--
3.96557149500.2903--
3.96587150000.3035--
3.96617150500.2953--
3.96637151000.2911--
3.96667151500.2918--
3.96697152000.3006--
3.96727152500.2873--
3.96747153000.3016--
3.96777153500.3004--
3.96807154000.299--
3.96837154500.3204--
3.96857155000.2825--
3.96887155500.3088--
3.96917156000.2962--
3.96947156500.3087--
3.96977157000.2981--
3.96997157500.3128--
3.97027158000.2897--
3.97057158500.3077--
3.97087159000.3072--
3.97107159500.3103--
3.97137160000.30670.06130.2485
3.97167160500.2804--
3.97197161000.2896--
3.97227161500.3006--
3.97247162000.3072--
3.97277162500.3032--
3.97307163000.2954--
3.97337163500.3048--
3.97357164000.3012--
3.97387164500.3095--
3.97417165000.2944--
3.97447165500.2964--
3.97467166000.2808--
3.97497166500.292--
3.97527167000.2988--
3.97557167500.3281--
3.97587168000.2989--
3.97607168500.2965--
3.97637169000.2931--
3.97667169500.2955--
3.97697170000.309--
3.97717170500.303--
3.97747171000.3191--
3.97777171500.2944--
3.97807172000.2861--
3.97837172500.2953--
3.97857173000.2635--
3.97887173500.296--
3.97917174000.2627--
3.97947174500.2879--
3.97967175000.2846--
3.97997175500.2861--
3.98027176000.2927--
3.98057176500.2983--
3.98087177000.2938--
3.98107177500.3072--
3.98137178000.2931--
3.98167178500.3138--
3.98197179000.2749--
3.98217179500.2799--
3.98247180000.28780.06120.2471
3.98277180500.2907--
3.98307181000.2948--
3.98327181500.2908--
3.98357182000.3006--
3.98387182500.2988--
3.98417183000.3039--
3.98447183500.2868--
3.98467184000.2952--
3.98497184500.301--
3.98527185000.2974--
3.98557185500.2855--
3.98577186000.2814--
3.98607186500.2923--
3.98637187000.2871--
3.98667187500.2945--
3.98697188000.2784--
3.98717188500.297--
3.98747189000.2868--
3.98777189500.3033--
3.98807190000.2926--
3.98827190500.2846--
3.98857191000.3089--
3.98887191500.2919--
3.98917192000.288--
3.98937192500.2924--
3.98967193000.2859--
3.98997193500.3046--
3.99027194000.301--
3.99057194500.3174--
3.99077195000.2979--
3.99107195500.2919--
3.99137196000.2684--
3.99167196500.3031--
3.99187197000.2755--
3.99217197500.3001--
3.99247198000.2804--
3.99277198500.2884--
3.99307199000.2932--
3.99327199500.3005--
3.99357200000.28440.06130.2497
3.99387200500.2897--
3.99417201000.2868--
3.99437201500.3008--
3.99467202000.2878--
3.99497202500.2913--
3.99527203000.3182--
3.99547203500.2672--
3.99577204000.2751--
3.99607204500.3022--
3.99637205000.285--
3.99667205500.2739--
3.99687206000.2721--
3.99717206500.2935--
3.99747207000.2838--
3.99777207500.2783--
3.99797208000.2845--
3.99827208500.3122--
3.99857209000.2747--
3.99887209500.3002--
3.99917210000.2869--
3.99937210500.3122--
3.99967211000.2946--
3.99997211500.3026--
4.00027212000.2613--
4.00047212500.2905--
4.00077213000.2789--
4.00107213500.2846--
4.00137214000.2977--
4.00157214500.2928--
4.00187215000.2848--
4.00217215500.2834--
4.00247216000.2867--
4.00277216500.2694--
4.00297217000.2801--
4.00327217500.2891--
4.00357218000.2917--
4.00387218500.2873--
4.00407219000.2914--
4.00437219500.2883--
4.00467220000.30440.06120.2468
4.00497220500.2955--
4.00527221000.2841--
4.00547221500.301--
4.00577222000.3006--
4.00607222500.2848--
4.00637223000.2836--
4.00657223500.294--
4.00687224000.3143--
4.00717224500.2867--
4.00747225000.2813--
4.00767225500.2978--
4.00797226000.2892--
4.00827226500.2951--
4.00857227000.2823--
4.00887227500.2958--
4.00907228000.2729--
4.00937228500.2685--
4.00967229000.2982--
4.00997229500.2901--
4.01017230000.2864--
4.01047230500.2835--
4.01077231000.3058--
4.01107231500.2929--
4.01137232000.3004--
4.01157232500.2979--
4.01187233000.2769--
4.01217233500.2716--
4.01247234000.2892--
4.01267234500.2853--
4.01297235000.2794--
4.01327235500.2941--
4.01357236000.2924--
4.01377236500.2773--
4.01407237000.2925--
4.01437237500.2719--
4.01467238000.2939--
4.01497238500.2835--
4.01517239000.2984--
4.01547239500.2796--
4.01577240000.28920.06100.2514
4.01607240500.2871--
4.01627241000.2985--
4.01657241500.2935--
4.01687242000.2732--
4.01717242500.2645--
4.01747243000.2766--
4.01767243500.2833--
4.01797244000.2865--
4.01827244500.2838--
4.01857245000.2941--
4.01877245500.2734--
4.01907246000.3125--
4.01937246500.29--
4.01967247000.2459--
4.01997247500.2885--
4.02017248000.2749--
4.02047248500.2877--
4.02077249000.2812--
4.02107249500.2798--
4.02127250000.314--
4.02157250500.2991--
4.02187251000.2966--
4.02217251500.2886--
4.02237252000.2889--
4.02267252500.2897--
4.02297253000.2698--
4.02327253500.278--
4.02357254000.2805--
4.02377254500.2812--
4.02407255000.2796--
4.02437255500.2676--
4.02467256000.2901--
4.02487256500.2963--
4.02517257000.2784--
4.02547257500.3143--
4.02577258000.2757--
4.02607258500.2994--
4.02627259000.3102--
4.02657259500.2771--
4.02687260000.31170.06110.2499
4.02717260500.291--
4.02737261000.2943--
4.02767261500.3001--
4.02797262000.292--
4.02827262500.3151--
4.02847263000.2944--
4.02877263500.2927--
4.02907264000.2916--
4.02937264500.2787--
4.02967265000.2768--
4.02987265500.297--
4.03017266000.2864--
4.03047266500.2891--
4.03077267000.2797--
4.03097267500.282--
4.03127268000.2799--
4.03157268500.2953--
4.03187269000.2793--
4.03217269500.2995--
4.03237270000.3009--
4.03267270500.3058--
4.03297271000.2887--
4.03327271500.2866--
4.03347272000.2991--
4.03377272500.269--
4.03407273000.2991--
4.03437273500.2734--
4.03457274000.3006--
4.03487274500.2782--
4.03517275000.3087--
4.03547275500.2729--
4.03577276000.2952--
4.03597276500.2949--
4.03627277000.2745--
4.03657277500.2826--
4.03687278000.2846--
4.03707278500.2999--
4.03737279000.2773--
4.03767279500.284--
4.03797280000.29460.06100.2481
4.03827280500.2846--
4.03847281000.3111--
4.03877281500.275--
4.03907282000.2772--
4.03937282500.2938--
4.03957283000.2891--
4.03987283500.2975--
4.04017284000.2847--
4.04047284500.2818--
4.04077285000.2755--
4.04097285500.2966--
4.04127286000.29--
4.04157286500.2961--
4.04187287000.2828--
4.04207287500.3034--
4.04237288000.2871--
4.04267288500.2964--
4.04297289000.2891--
4.04317289500.296--
4.04347290000.2948--
4.04377290500.2649--
4.04407291000.2854--
4.04437291500.2808--
4.04457292000.2807--
4.04487292500.3336--
4.04517293000.2874--
4.04547293500.3105--
4.04567294000.2839--
4.04597294500.2889--
4.04627295000.3041--
4.04657295500.2915--
4.04687296000.2948--
4.04707296500.2829--
4.04737297000.2764--
4.04767297500.3075--
4.04797298000.3019--
4.04817298500.3068--
4.04847299000.2762--
4.04877299500.2926--
4.04907300000.28130.06080.2481
4.04927300500.2633--
4.04957301000.3027--
4.04987301500.2839--
4.05017302000.2828--
4.05047302500.2853--
4.05067303000.2982--
4.05097303500.2899--
4.05127304000.292--
4.05157304500.3122--
4.05177305000.286--
4.05207305500.2747--
4.05237306000.275--
4.05267306500.3041--
4.05297307000.2954--
4.05317307500.2766--
4.05347308000.3049--
4.05377308500.2903--
4.05407309000.2916--
4.05427309500.2664--
4.05457310000.2951--
4.05487310500.2868--
4.05517311000.2892--
4.05537311500.3006--
4.05567312000.2789--
4.05597312500.2893--
4.05627313000.2811--
4.05657313500.2728--
4.05677314000.2873--
4.05707314500.295--
4.05737315000.3052--
4.05767315500.2805--
4.05787316000.281--
4.05817316500.2843--
4.05847317000.2941--
4.05877317500.2767--
4.05907318000.3033--
4.05927318500.2717--
4.05957319000.2738--
4.05987319500.2813--
4.06017320000.29150.06090.2486
4.06037320500.2877--
4.06067321000.2874--
4.06097321500.2839--
4.06127322000.2739--
4.06157322500.2966--
4.06177323000.2987--
4.06207323500.2867--
4.06237324000.296--
4.06267324500.3046--
4.06287325000.3098--
4.06317325500.2771--
4.06347326000.3004--
4.06377326500.2845--
4.06397327000.2991--
4.06427327500.2786--
4.06457328000.31--
4.06487328500.2674--
4.06517329000.2998--
4.06537329500.2961--
4.06567330000.2878--
4.06597330500.2846--
4.06627331000.2939--
4.06647331500.2856--
4.06677332000.3043--
4.06707332500.3081--
4.06737333000.2721--
4.06767333500.2859--
4.06787334000.3117--
4.06817334500.2882--
4.06847335000.296--
4.06877335500.2982--
4.06897336000.2931--
4.06927336500.2814--
4.06957337000.291--
4.06987337500.2712--
4.07007338000.2656--
4.07037338500.2866--
4.07067339000.2816--
4.07097339500.2745--
4.07127340000.29140.06060.2495
4.07147340500.291--
4.07177341000.2723--
4.07207341500.2958--
4.07237342000.2821--
4.07257342500.2984--
4.07287343000.2946--
4.07317343500.2927--
4.07347344000.3017--
4.07377344500.2991--
4.07397345000.3024--
4.07427345500.297--
4.07457346000.2824--
4.07487346500.2615--
4.07507347000.2869--
4.07537347500.3058--
4.07567348000.2664--
4.07597348500.2817--
4.07617349000.2723--
4.07647349500.2985--
4.07677350000.2825--
4.07707350500.2786--
4.07737351000.2583--
4.07757351500.2726--
4.07787352000.2708--
4.07817352500.3009--
4.07847353000.2792--
4.07867353500.2899--
4.07897354000.2696--
4.07927354500.2949--
4.07957355000.2818--
4.07987355500.2798--
4.08007356000.3146--
4.08037356500.3103--
4.08067357000.3113--
4.08097357500.2838--
4.08117358000.2929--
4.08147358500.2894--
4.08177359000.2828--
4.08207359500.2985--
4.08227360000.27360.06130.2481
4.08257360500.3009--
4.08287361000.2855--
4.08317361500.2786--
4.08347362000.3159--
4.08367362500.2955--
4.08397363000.2851--
4.08427363500.2929--
4.08457364000.2858--
4.08477364500.2656--
4.08507365000.297--
4.08537365500.2967--
4.08567366000.3104--
4.08597366500.2779--
4.08617367000.3167--
4.08647367500.2844--
4.08677368000.2918--
4.08707368500.2763--
4.08727369000.2931--
4.08757369500.2745--
4.08787370000.2965--
4.08817370500.2957--
4.08847371000.3095--
4.08867371500.2865--
4.08897372000.2794--
4.08927372500.2872--
4.08957373000.2954--
4.08977373500.2871--
4.09007374000.2921--
4.09037374500.2888--
4.09067375000.288--
4.09087375500.2925--
4.09117376000.297--
4.09147376500.2963--
4.09177377000.2875--
4.09207377500.2725--
4.09227378000.2901--
4.09257378500.2831--
4.09287379000.2891--
4.09317379500.291--
4.09337380000.29940.06100.2471
4.09367380500.2836--
4.09397381000.3022--
4.09427381500.2988--
4.09457382000.3062--
4.09477382500.2563--
4.09507383000.2756--
4.09537383500.3026--
4.09567384000.2864--
4.09587384500.2979--
4.09617385000.3244--
4.09647385500.2883--
4.09677386000.3032--
4.09697386500.2863--
4.09727387000.2736--
4.09757387500.2713--
4.09787388000.2949--
4.09817388500.2854--
4.09837389000.3011--
4.09867389500.2709--
4.09897390000.2878--
4.09927390500.3011--
4.09947391000.2881--
4.09977391500.2915--
4.10007392000.2769--
4.10037392500.2898--
4.10067393000.2637--
4.10087393500.2858--
4.10117394000.3053--
4.10147394500.2869--
4.10177395000.2814--
4.10197395500.3138--
4.10227396000.283--
4.10257396500.2806--
4.10287397000.2889--
4.10307397500.2932--
4.10337398000.2745--
4.10367398500.3031--
4.10397399000.2836--
4.10427399500.2986--
4.10447400000.29910.06070.2468
4.10477400500.2961--
4.10507401000.2958--
4.10537401500.301--
4.10557402000.2699--
4.10587402500.2852--
4.10617403000.3007--
4.10647403500.2885--
4.10677404000.3028--
4.10697404500.325--
4.10727405000.2697--
4.10757405500.2876--
4.10787406000.2756--
4.10807406500.2777--
4.10837407000.2948--
4.10867407500.2895--
4.10897408000.2828--
4.10927408500.2864--
4.10947409000.2749--
4.10977409500.2926--
4.11007410000.2887--
4.11037410500.3049--
4.11057411000.2786--
4.11087411500.2934--
4.11117412000.2818--
4.11147412500.3013--
4.11167413000.2818--
4.11197413500.2952--
4.11227414000.2893--
4.11257414500.2775--
4.11287415000.2818--
4.11307415500.2945--
4.11337416000.2808--
4.11367416500.2996--
4.11397417000.2853--
4.11417417500.286--
4.11447418000.2863--
4.11477418500.2764--
4.11507419000.2762--
4.11537419500.2953--
4.11557420000.29540.06040.2497
4.11587420500.2707--
4.11617421000.2914--
4.11647421500.3039--
4.11667422000.2747--
4.11697422500.2809--
4.11727423000.2855--
4.11757423500.2922--
4.11777424000.2989--
4.11807424500.2872--
4.11837425000.2841--
4.11867425500.2872--
4.11897426000.3034--
4.11917426500.2874--
4.11947427000.2984--
4.11977427500.2925--
4.12007428000.2899--
4.12027428500.2904--
4.12057429000.2767--
4.12087429500.2892--
4.12117430000.2907--
4.12147430500.2926--
4.12167431000.2922--
4.12197431500.2953--
4.12227432000.2612--
4.12257432500.2907--
4.12277433000.2876--
4.12307433500.299--
4.12337434000.2607--
4.12367434500.2853--
4.12387435000.2946--
4.12417435500.2698--
4.12447436000.2832--
4.12477436500.3167--
4.12507437000.291--
4.12527437500.2793--
4.12557438000.3042--
4.12587438500.2899--
4.12617439000.2847--
4.12637439500.3058--
4.12667440000.29330.06050.2486
4.12697440500.276--
4.12727441000.3028--
4.12757441500.2772--
4.12777442000.2862--
4.12807442500.2832--
4.12837443000.2876--
4.12867443500.2896--
4.12887444000.274--
4.12917444500.2831--
4.12947445000.264--
4.12977445500.2896--
4.12997446000.2838--
4.13027446500.3016--
4.13057447000.3034--
4.13087447500.3037--
4.13117448000.2783--
4.13137448500.2788--
4.13167449000.2773--
4.13197449500.3103--
4.13227450000.2908--
4.13247450500.3025--
4.13277451000.2727--
4.13307451500.292--
4.13337452000.2871--
4.13367452500.2924--
4.13387453000.2869--
4.13417453500.2812--
4.13447454000.3095--
4.13477454500.2634--
4.13497455000.2838--
4.13527455500.3066--
4.13557456000.2975--
4.13587456500.3054--
4.13617457000.2742--
4.13637457500.2742--
4.13667458000.2874--
4.13697458500.2715--
4.13727459000.2976--
4.13747459500.281--
4.13777460000.27390.06040.2505
4.13807460500.2884--
4.13837461000.2855--
4.13857461500.2797--
4.13887462000.3079--
4.13917462500.279--
4.13947463000.2972--
4.13977463500.2734--
4.13997464000.2901--
4.14027464500.2867--
4.14057465000.2927--
4.14087465500.2938--
4.14107466000.2967--
4.14137466500.2847--
4.14167467000.2926--
4.14197467500.3063--
4.14227468000.2933--
4.14247468500.2862--
4.14277469000.2897--
4.14307469500.2778--
4.14337470000.2811--
4.14357470500.2887--
4.14387471000.2587--
4.14417471500.2915--
4.14447472000.2952--
4.14467472500.2961--
4.14497473000.2832--
4.14527473500.2865--
4.14557474000.2761--
4.14587474500.2743--
4.14607475000.2962--
4.14637475500.2764--
4.14667476000.2891--
4.14697476500.302--
4.14717477000.2931--
4.14747477500.2819--
4.14777478000.294--
4.14807478500.2795--
4.14837479000.2803--
4.14857479500.2733--
4.14887480000.28120.06040.2482
4.14917480500.2723--
4.14947481000.2731--
4.14967481500.2687--
4.14997482000.2786--
4.15027482500.2883--
4.15057483000.2966--
4.15077483500.2821--
4.15107484000.3136--
4.15137484500.2709--
4.15167485000.3097--
4.15197485500.2924--
4.15217486000.3055--
4.15247486500.2709--
4.15277487000.3002--
4.15307487500.3035--
4.15327488000.2658--
4.15357488500.2778--
4.15387489000.2759--
4.15417489500.28--
4.15447490000.2963--
4.15467490500.2815--
4.15497491000.2953--
4.15527491500.283--
4.15557492000.2846--
4.15577492500.2944--
4.15607493000.2914--
4.15637493500.2862--
4.15667494000.2706--
4.15697494500.3024--
4.15717495000.2951--
4.15747495500.2909--
4.15777496000.271--
4.15807496500.2742--
4.15827497000.2922--
4.15857497500.2907--
4.15887498000.3019--
4.15917498500.2817--
4.15937499000.3045--
4.15967499500.2789--
4.15997500000.29530.06030.2509
4.16027500500.2785--
4.16057501000.2689--
4.16077501500.2728--
4.16107502000.2802--
4.16137502500.2829--
4.16167503000.2793--
4.16187503500.2683--
4.16217504000.265--
4.16247504500.2966--
4.16277505000.2736--
4.16307505500.2803--
4.16327506000.2928--
4.16357506500.2999--
4.16387507000.2837--
4.16417507500.284--
4.16437508000.3092--
4.16467508500.292--
4.16497509000.2811--
4.16527509500.2652--
4.16547510000.2919--
4.16577510500.2943--
4.16607511000.3034--
4.16637511500.2817--
4.16667512000.2819--
4.16687512500.302--
4.16717513000.3146--
4.16747513500.2956--
4.16777514000.2853--
4.16797514500.3129--
4.16827515000.2843--
4.16857515500.2924--
4.16887516000.3023--
4.16917516500.2933--
4.16937517000.2818--
4.16967517500.2795--
4.16997518000.2944--
4.17027518500.2805--
4.17047519000.2919--
4.17077519500.2648--
4.17107520000.32170.06000.2493
4.17137520500.309--
4.17157521000.2905--
4.17187521500.2913--
4.17217522000.2943--
4.17247522500.2875--
4.17277523000.283--
4.17297523500.2812--
4.17327524000.2863--
4.17357524500.2957--
4.17387525000.2864--
4.17407525500.3105--
4.17437526000.3011--
4.17467526500.3008--
4.17497527000.2939--
4.17527527500.2778--
4.17547528000.3007--
4.17577528500.2774--
4.17607529000.2942--
4.17637529500.2693--
4.17657530000.2863--
4.17687530500.3021--
4.17717531000.2859--
4.17747531500.2884--
4.17777532000.3062--
4.17797532500.2864--
4.17827533000.2929--
4.17857533500.2926--
4.17887534000.2821--
4.17907534500.2956--
4.17937535000.2874--
4.17967535500.2757--
4.17997536000.283--
4.18017536500.2845--
4.18047537000.2963--
4.18077537500.2898--
4.18107538000.2972--
4.18137538500.2897--
4.18157539000.3022--
4.18187539500.2741--
4.18217540000.28860.05980.2496
4.18247540500.2921--
4.18267541000.2901--
4.18297541500.3048--
4.18327542000.284--
4.18357542500.2932--
4.18387543000.2869--
4.18407543500.2857--
4.18437544000.2666--
4.18467544500.2878--
4.18497545000.2879--
4.18517545500.2816--
4.18547546000.29--
4.18577546500.2658--
4.18607547000.2955--
4.18627547500.2904--
4.18657548000.2732--
4.18687548500.269--
4.18717549000.2828--
4.18747549500.286--
4.18767550000.2885--
4.18797550500.2966--
4.18827551000.3051--
4.18857551500.2862--
4.18877552000.2925--
4.18907552500.2769--
4.18937553000.2808--
4.18967553500.2846--
4.18997554000.2771--
4.19017554500.278--
4.19047555000.2684--
4.19077555500.2908--
4.19107556000.2754--
4.19127556500.265--
4.19157557000.268--
4.19187557500.2785--
4.19217558000.285--
4.19237558500.3102--
4.19267559000.2959--
4.19297559500.2836--
4.19327560000.30240.06020.2471
4.19357560500.282--
4.19377561000.2956--
4.19407561500.2861--
4.19437562000.2825--
4.19467562500.2863--
4.19487563000.2764--
4.19517563500.2726--
4.19547564000.2582--
4.19577564500.2943--
4.19607565000.2684--
4.19627565500.277--
4.19657566000.2923--
4.19687566500.2886--
4.19717567000.2641--
4.19737567500.2983--
4.19767568000.2879--
4.19797568500.2902--
4.19827569000.3005--
4.19847569500.2632--
4.19877570000.2833--
4.19907570500.3186--
4.19937571000.2957--
4.19967571500.2897--
4.19987572000.2837--
4.20017572500.2763--
4.20047573000.297--
4.20077573500.2942--
4.20097574000.2855--
4.20127574500.2909--
4.20157575000.2873--
4.20187575500.2902--
4.20217576000.2767--
4.20237576500.281--
4.20267577000.2954--
4.20297577500.2875--
4.20327578000.3--
4.20347578500.3364--
4.20377579000.2697--
4.20407579500.2828--
4.20437580000.2870.06050.2494
4.20467580500.2849--
4.20487581000.2866--
4.20517581500.3054--
4.20547582000.2925--
4.20577582500.275--
4.20597583000.2891--
4.20627583500.2801--
4.20657584000.2792--
4.20687584500.2833--
4.20707585000.2758--
4.20737585500.2715--
4.20767586000.2778--
4.20797586500.2759--
4.20827587000.2617--
4.20847587500.3069--
4.20877588000.3062--
4.20907588500.3041--
4.20937589000.2726--
4.20957589500.2696--
4.20987590000.2928--
4.21017590500.2716--
4.21047591000.2697--
4.21077591500.2875--
4.21097592000.2959--
4.21127592500.2877--
4.21157593000.296--
4.21187593500.2756--
4.21207594000.2712--
4.21237594500.2851--
4.21267595000.2616--
4.21297595500.2993--
4.21317596000.2821--
4.21347596500.276--
4.21377597000.2711--
4.21407597500.2918--
4.21437598000.2888--
4.21457598500.3064--
4.21487599000.2761--
4.21517599500.2891--
4.21547600000.30730.06030.2502
4.21567600500.2999--
4.21597601000.3151--
4.21627601500.2829--
4.21657602000.297--
4.21687602500.2903--
4.21707603000.2727--
4.21737603500.2847--
4.21767604000.2773--
4.21797604500.3129--
4.21817605000.2876--
4.21847605500.2812--
4.21877606000.2879--
4.21907606500.2911--
4.21927607000.2794--
4.21957607500.2991--
4.21987608000.2703--
4.22017608500.2934--
4.22047609000.2739--
4.22067609500.2815--
4.22097610000.2793--
4.22127610500.2833--
4.22157611000.2816--
4.22177611500.2822--
4.22207612000.2852--
4.22237612500.2842--
4.22267613000.3078--
4.22297613500.2898--
4.22317614000.2717--
4.22347614500.3026--
4.22377615000.3034--
4.22407615500.2917--
4.22427616000.2866--
4.22457616500.2969--
4.22487617000.2538--
4.22517617500.2762--
4.22547618000.2909--
4.22567618500.2726--
4.22597619000.3075--
4.22627619500.2881--
4.22657620000.29560.06040.2482
4.22677620500.2978--
4.22707621000.2942--
4.22737621500.2908--
4.22767622000.2996--
4.22787622500.2975--
4.22817623000.2888--
4.22847623500.2862--
4.22877624000.273--
4.22907624500.2905--
4.22927625000.2832--
4.22957625500.3023--
4.22987626000.2805--
4.23017626500.3066--
4.23037627000.3099--
4.23067627500.2983--
4.23097628000.2796--
4.23127628500.299--
4.23157629000.3003--
4.23177629500.2927--
4.23207630000.3002--
4.23237630500.2986--
4.23267631000.2927--
4.23287631500.301--
4.23317632000.2987--
4.23347632500.277--
4.23377633000.2839--
4.23397633500.2749--
4.23427634000.2902--
4.23457634500.2869--
4.23487635000.2895--
4.23517635500.2657--
4.23537636000.2747--
4.23567636500.2843--
4.23597637000.2957--
4.23627637500.2787--
4.23647638000.2698--
4.23677638500.302--
4.23707639000.307--
4.23737639500.2799--
4.23767640000.27710.06020.2504
4.23787640500.2827--
4.23817641000.2767--
4.23847641500.266--
4.23877642000.2782--
4.23897642500.3015--
4.23927643000.3095--
4.23957643500.2661--
4.23987644000.2731--
4.24007644500.2994--
4.24037645000.2909--
4.24067645500.3011--
4.24097646000.2811--
4.24127646500.2869--
4.24147647000.2993--
4.24177647500.2856--
4.24207648000.2787--
4.24237648500.304--
4.24257649000.2949--
4.24287649500.2654--
4.24317650000.2875--
4.24347650500.2739--
4.24377651000.2925--
4.24397651500.2788--
4.24427652000.2802--
4.24457652500.305--
4.24487653000.31--
4.24507653500.2845--
4.24537654000.2722--
4.24567654500.3027--
4.24597655000.3095--
4.24627655500.3115--
4.24647656000.2871--
4.24677656500.2823--
4.24707657000.2752--
4.24737657500.3113--
4.24757658000.2764--
4.24787658500.2874--
4.24817659000.2865--
4.24847659500.2806--
4.24867660000.28450.06040.2512
4.24897660500.2755--
4.24927661000.2792--
4.24957661500.305--
4.24987662000.2707--
4.25007662500.2842--
4.25037663000.2775--
4.25067663500.2849--
4.25097664000.2895--
4.25117664500.2864--
4.25147665000.2612--
4.25177665500.2731--
4.25207666000.2993--
4.25237666500.2741--
4.25257667000.2983--
4.25287667500.2661--
4.25317668000.2831--
4.25347668500.3222--
4.25367669000.2955--
4.25397669500.273--
4.25427670000.2953--
4.25457670500.2914--
4.25477671000.2841--
4.25507671500.2812--
4.25537672000.2891--
4.25567672500.2749--
4.25597673000.2828--
4.25617673500.2868--
4.25647674000.2721--
4.25677674500.2949--
4.25707675000.2841--
4.25727675500.3026--
4.25757676000.2656--
4.25787676500.2837--
4.25817677000.2837--
4.25847677500.2708--
4.25867678000.2785--
4.25897678500.2825--
4.25927679000.2917--
4.25957679500.2733--
4.25977680000.28260.06040.2494
4.26007680500.2826--
4.26037681000.2919--
4.26067681500.2905--
4.26087682000.2493--
4.26117682500.2961--
4.26147683000.2795--
4.26177683500.2966--
4.26207684000.283--
4.26227684500.3034--
4.26257685000.2572--
4.26287685500.277--
4.26317686000.2929--
4.26337686500.2864--
4.26367687000.283--
4.26397687500.2891--
4.26427688000.2904--
4.26457688500.307--
4.26477689000.2846--
4.26507689500.3057--
4.26537690000.274--
4.26567690500.3039--
4.26587691000.2946--
4.26617691500.2645--
4.26647692000.27--
4.26677692500.2672--
4.26697693000.2859--
4.26727693500.2729--
4.26757694000.2853--
4.26787694500.3276--
4.26817695000.2979--
4.26837695500.2753--
4.26867696000.2966--
4.26897696500.2738--
4.26927697000.3003--
4.26947697500.2675--
4.26977698000.2938--
4.27007698500.2772--
4.27037699000.2777--
4.27067699500.2982--
4.27087700000.28330.06030.2493
4.27117700500.3075--
4.27147701000.2839--
4.27177701500.3006--
4.27197702000.2958--
4.27227702500.2892--
4.27257703000.2814--
4.27287703500.2857--
4.27317704000.2939--
4.27337704500.3044--
4.27367705000.2875--
4.27397705500.301--
4.27427706000.276--
4.27447706500.296--
4.27477707000.2821--
4.27507707500.2821--
4.27537708000.28--
4.27557708500.3025--
4.27587709000.273--
4.27617709500.2884--
4.27647710000.2812--
4.27677710500.2831--
4.27697711000.2838--
4.27727711500.2713--
4.27757712000.2701--
4.27787712500.3018--
4.27807713000.2719--
4.27837713500.2747--
4.27867714000.2866--
4.27897714500.2753--
4.27927715000.296--
4.27947715500.3032--
4.27977716000.2799--
4.28007716500.2886--
4.28037717000.2877--
4.28057717500.2753--
4.28087718000.2901--
4.28117718500.2951--
4.28147719000.283--
4.28167719500.2898--
4.28197720000.2850.06050.2512
4.28227720500.2798--
4.28257721000.2718--
4.28287721500.2822--
4.28307722000.3102--
4.28337722500.2739--
4.28367723000.268--
4.28397723500.3013--
4.28417724000.2897--
4.28447724500.2851--
4.28477725000.292--
4.28507725500.2878--
4.28537726000.2884--
4.28557726500.2939--
4.28587727000.2789--
4.28617727500.2988--
4.28647728000.2836--
4.28667728500.2801--
4.28697729000.2959--
4.28727729500.266--
4.28757730000.3011--
4.28777730500.3029--
4.28807731000.2832--
4.28837731500.2828--
4.28867732000.2869--
4.28897732500.2843--
4.28917733000.2971--
4.28947733500.265--
4.28977734000.2889--
4.29007734500.2712--
4.29027735000.281--
4.29057735500.2979--
4.29087736000.2874--
4.29117736500.2615--
4.29147737000.2753--
4.29167737500.3005--
4.29197738000.2861--
4.29227738500.2975--
4.29257739000.283--
4.29277739500.2777--
4.29307740000.27960.06050.2500
4.29337740500.2827--
4.29367741000.302--
4.29397741500.2814--
4.29417742000.2653--
4.29447742500.2922--
4.29477743000.2881--
4.29507743500.2866--
4.29527744000.2997--
4.29557744500.292--
4.29587745000.2819--
4.29617745500.2627--
4.29637746000.284--
4.29667746500.2788--
4.29697747000.284--
4.29727747500.2787--
4.29757748000.2842--
4.29777748500.2864--
4.29807749000.2905--
4.29837749500.2986--
4.29867750000.2817--
4.29887750500.2927--
4.29917751000.2967--
4.29947751500.3021--
4.29977752000.2887--
4.30007752500.3015--
4.30027753000.2985--
4.30057753500.2845--
4.30087754000.2885--
4.30117754500.3011--
4.30137755000.2915--
4.30167755500.2988--
4.30197756000.297--
4.30227756500.2586--
4.30247757000.2808--
4.30277757500.3008--
4.30307758000.3037--
4.30337758500.2899--
4.30367759000.3136--
4.30387759500.2767--
4.30417760000.2620.06040.2504
4.30447760500.2943--
4.30477761000.2953--
4.30497761500.2841--
4.30527762000.3006--
4.30557762500.2708--
4.30587763000.2763--
4.30617763500.2825--
4.30637764000.2978--
4.30667764500.2851--
4.30697765000.2939--
4.30727765500.3137--
4.30747766000.2748--
4.30777766500.272--
4.30807767000.2816--
4.30837767500.2871--
4.30857768000.2828--
4.30887768500.29--
4.30917769000.2868--
4.30947769500.2744--
4.30977770000.2976--
4.30997770500.2806--
4.31027771000.2728--
4.31057771500.2926--
4.31087772000.2821--
4.31107772500.2794--
4.31137773000.2951--
4.31167773500.2757--
4.31197774000.2895--
4.31227774500.2809--
4.31247775000.3051--
4.31277775500.2816--
4.31307776000.2864--
4.31337776500.2899--
4.31357777000.3109--
4.31387777500.2986--
4.31417778000.2885--
4.31447778500.2694--
4.31467779000.2792--
4.31497779500.2822--
4.31527780000.29150.06060.2490
4.31557780500.296--
4.31587781000.2826--
4.31607781500.2703--
4.31637782000.2655--
4.31667782500.2909--
4.31697783000.3083--
4.31717783500.2765--
4.31747784000.2691--
4.31777784500.2704--
4.31807785000.2876--
4.31837785500.2735--
4.31857786000.2881--
4.31887786500.2833--
4.31917787000.267--
4.31947787500.2736--
4.31967788000.2842--
4.31997788500.292--
4.32027789000.2674--
4.32057789500.2788--
4.32087790000.2913--
4.32107790500.2784--
4.32137791000.293--
4.32167791500.2878--
4.32197792000.2931--
4.32217792500.2926--
4.32247793000.2829--
4.32277793500.2826--
4.32307794000.317--
4.32327794500.2901--
4.32357795000.2923--
4.32387795500.2811--
4.32417796000.2723--
4.32447796500.2856--
4.32467797000.2869--
4.32497797500.2856--
4.32527798000.2939--
4.32557798500.2771--
4.32577799000.2822--
4.32607799500.2958--
4.32637800000.27090.06030.2490
4.32667800500.2829--
4.32697801000.2849--
4.32717801500.286--
4.32747802000.2866--
4.32777802500.2824--
4.32807803000.282--
4.32827803500.281--
4.32857804000.2843--
4.32887804500.289--
4.32917805000.2957--
4.32937805500.2623--
4.32967806000.2953--
4.32997806500.2705--
4.33027807000.276--
4.33057807500.2844--
4.33077808000.2856--
4.33107808500.2711--
4.33137809000.2757--
4.33167809500.2712--
4.33187810000.2697--
4.33217810500.2793--
4.33247811000.2819--
4.33277811500.2791--
4.33307812000.2817--
4.33327812500.2789--
4.33357813000.3061--
4.33387813500.2854--
4.33417814000.2888--
4.33437814500.2626--
4.33467815000.2753--
4.33497815500.2713--
4.33527816000.2972--
4.33547816500.3016--
4.33577817000.3008--
4.33607817500.2935--
4.33637818000.2882--
4.33667818500.2852--
4.33687819000.3043--
4.33717819500.2532--
4.33747820000.28910.06030.2510
4.33777820500.2832--
4.33797821000.2954--
4.33827821500.275--
4.33857822000.2828--
4.33887822500.3032--
4.33917823000.2808--
4.33937823500.2813--
4.33967824000.2731--
4.33997824500.281--
4.34027825000.305--
4.34047825500.2741--
4.34077826000.2854--
4.34107826500.2859--
4.34137827000.2636--
4.34167827500.2814--
4.34187828000.2891--
4.34217828500.2643--
4.34247829000.2724--
4.34277829500.2813--
4.34297830000.292--
4.34327830500.2819--
4.34357831000.2742--
4.34387831500.2865--
4.34407832000.286--
4.34437832500.2913--
4.34467833000.2861--
4.34497833500.2795--
4.34527834000.273--
4.34547834500.2726--
4.34577835000.2843--
4.34607835500.2802--
4.34637836000.2911--
4.34657836500.3055--
4.34687837000.3098--
4.34717837500.2685--
4.34747838000.2794--
4.34777838500.2553--
4.34797839000.2672--
4.34827839500.2762--
4.34857840000.29360.06030.2500
4.34887840500.2839--
4.34907841000.2626--
4.34937841500.2739--
4.34967842000.2802--
4.34997842500.2786--
4.35017843000.2799--
4.35047843500.2707--
4.35077844000.3004--
4.35107844500.2965--
4.35137845000.2756--
4.35157845500.2859--
4.35187846000.2979--
4.35217846500.3064--
4.35247847000.2846--
4.35267847500.2586--
4.35297848000.2731--
4.35327848500.2839--
4.35357849000.2839--
4.35387849500.2756--
4.35407850000.2743--
4.35437850500.2756--
4.35467851000.2665--
4.35497851500.3085--
4.35517852000.2884--
4.35547852500.2854--
4.35577853000.2725--
4.35607853500.2774--
4.35627854000.2695--
4.35657854500.2872--
4.35687855000.2847--
4.35717855500.2712--
4.35747856000.2934--
4.35767856500.2778--
4.35797857000.2807--
4.35827857500.2889--
4.35857858000.2685--
4.35877858500.2848--
4.35907859000.2789--
4.35937859500.3076--
4.35967860000.27260.06020.2505
4.35997860500.2798--
4.36017861000.2977--
4.36047861500.2882--
4.36077862000.2857--
4.36107862500.2902--
4.36127863000.285--
4.36157863500.2842--
4.36187864000.2751--
4.36217864500.2738--
4.36247865000.2843--
4.36267865500.2806--
4.36297866000.2908--
4.36327866500.2942--
4.36357867000.2855--
4.36377867500.2617--
4.36407868000.287--
4.36437868500.3011--
4.36467869000.2812--
4.36487869500.2716--
4.36517870000.2872--
4.36547870500.2928--
4.36577871000.2947--
4.36607871500.2711--
4.36627872000.2826--
4.36657872500.2927--
4.36687873000.2856--
4.36717873500.2795--
4.36737874000.2994--
4.36767874500.2893--
4.36797875000.3062--
4.36827875500.2942--
4.36857876000.3044--
4.36877876500.2845--
4.36907877000.2846--
4.36937877500.3012--
4.36967878000.2755--
4.36987878500.3018--
4.37017879000.2797--
4.37047879500.303--
4.37077880000.27010.06020.2491
4.37097880500.2661--
4.37127881000.2841--
4.37157881500.2874--
4.37187882000.2867--
4.37217882500.2845--
4.37237883000.2721--
4.37267883500.2953--
4.37297884000.2947--
4.37327884500.269--
4.37347885000.2958--
4.37377885500.2878--
4.37407886000.2715--
4.37437886500.3017--
4.37467887000.293--
4.37487887500.2773--
4.37517888000.2871--
4.37547888500.2817--
4.37577889000.2867--
4.37597889500.3063--
4.37627890000.3051--
4.37657890500.2802--
4.37687891000.2915--
4.37707891500.293--
4.37737892000.2772--
4.37767892500.2882--
4.37797893000.3091--
4.37827893500.2714--
4.37847894000.2764--
4.37877894500.2697--
4.37907895000.2982--
4.37937895500.2838--
4.37957896000.2728--
4.37987896500.2733--
4.38017897000.3027--
4.38047897500.2965--
4.38077898000.2827--
4.38097898500.2773--
4.38127899000.2891--
4.38157899500.2905--
4.38187900000.30150.06010.2505
4.38207900500.2718--
4.38237901000.2946--
4.38267901500.2883--
4.38297902000.2717--
4.38317902500.2949--
4.38347903000.2891--
4.38377903500.2668--
4.38407904000.2969--
4.38437904500.2843--
4.38457905000.2923--
4.38487905500.2809--
4.38517906000.297--
4.38547906500.285--
4.38567907000.2696--
4.38597907500.2824--
4.38627908000.2787--
4.38657908500.2608--
4.38687909000.2795--
4.38707909500.2966--
4.38737910000.2918--
4.38767910500.2739--
4.38797911000.2593--
4.38817911500.2882--
4.38847912000.2729--
4.38877912500.2903--
4.38907913000.2773--
4.38937913500.2653--
4.38957914000.2849--
4.38987914500.2574--
4.39017915000.2821--
4.39047915500.2792--
4.39067916000.2906--
4.39097916500.2936--
4.39127917000.2877--
4.39157917500.2783--
4.39177918000.2802--
4.39207918500.2875--
4.39237919000.2707--
4.39267919500.2742--
4.39297920000.2780.06010.2479
4.39317920500.2988--
4.39347921000.2835--
4.39377921500.274--
4.39407922000.2727--
4.39427922500.254--
4.39457923000.2711--
4.39487923500.3009--
4.39517924000.2846--
4.39547924500.2785--
4.39567925000.2697--
4.39597925500.3027--
4.39627926000.2788--
4.39657926500.293--
4.39677927000.2783--
4.39707927500.2855--
4.39737928000.2802--
4.39767928500.2603--
4.39787929000.2861--
4.39817929500.2561--
4.39847930000.2861--
4.39877930500.2604--
4.39907931000.3093--
4.39927931500.2773--
4.39957932000.2796--
4.39987932500.2744--
4.40017933000.2668--
4.40037933500.2919--
4.40067934000.272--
4.40097934500.2834--
4.40127935000.296--
4.40157935500.2738--
4.40177936000.2883--
4.40207936500.2974--
4.40237937000.2583--
4.40267937500.2643--
4.40287938000.2836--
4.40317938500.2704--
4.40347939000.2769--
4.40377939500.2914--
4.40397940000.28950.06000.2489
4.40427940500.2896--
4.40457941000.2894--
4.40487941500.2888--
4.40517942000.2696--
4.40537942500.2745--
4.40567943000.2667--
4.40597943500.2723--
4.40627944000.2822--
4.40647944500.2763--
4.40677945000.2874--
4.40707945500.2678--
4.40737946000.2946--
4.40767946500.2996--
4.40787947000.2941--
4.40817947500.2499--
4.40847948000.2957--
4.40877948500.2792--
4.40897949000.2978--
4.40927949500.2876--
4.40957950000.2725--
4.40987950500.3055--
4.41017951000.2838--
4.41037951500.2907--
4.41067952000.2898--
4.41097952500.2939--
4.41127953000.2546--
4.41147953500.281--
4.41177954000.2729--
4.41207954500.2881--
4.41237955000.2685--
4.41257955500.3032--
4.41287956000.2794--
4.41317956500.2867--
4.41347957000.2907--
4.41377957500.2624--
4.41397958000.2766--
4.41427958500.2824--
4.41457959000.3023--
4.41487959500.2898--
4.41507960000.27380.06000.2486
4.41537960500.2814--
4.41567961000.2711--
4.41597961500.3041--
4.41627962000.2899--
4.41647962500.2795--
4.41677963000.2957--
4.41707963500.2906--
4.41737964000.2846--
4.41757964500.3012--
4.41787965000.28--
4.41817965500.256--
4.41847966000.2903--
4.41867966500.2679--
4.41897967000.267--
4.41927967500.2731--
4.41957968000.286--
4.41987968500.2983--
4.42007969000.2748--
4.42037969500.2962--
4.42067970000.2819--
4.42097970500.2754--
4.42117971000.2921--
4.42147971500.3111--
4.42177972000.2803--
4.42207972500.2791--
4.42237973000.2808--
4.42257973500.2618--
4.42287974000.2779--
4.42317974500.2726--
4.42347975000.2827--
4.42367975500.2787--
4.42397976000.2814--
4.42427976500.3015--
4.42457977000.2769--
4.42477977500.265--
4.42507978000.2535--
4.42537978500.2771--
4.42567979000.2785--
4.42597979500.2735--
4.42617980000.30050.06040.2503
4.42647980500.2767--
4.42677981000.2637--
4.42707981500.278--
4.42727982000.2846--
4.42757982500.2932--
4.42787983000.2811--
4.42817983500.2826--
4.42847984000.2804--
4.42867984500.2981--
4.42897985000.2846--
4.42927985500.2802--
4.42957986000.3015--
4.42977986500.2726--
4.43007987000.2868--
4.43037987500.2683--
4.43067988000.2853--
4.43087988500.2688--
4.43117989000.283--
4.43147989500.293--
4.43177990000.291--
4.43207990500.2768--
4.43227991000.2839--
4.43257991500.2742--
4.43287992000.2961--
4.43317992500.2984--
4.43337993000.2769--
4.43367993500.2583--
4.43397994000.2932--
4.43427994500.2766--
4.43457995000.2898--
4.43477995500.2812--
4.43507996000.2879--
4.43537996500.277--
4.43567997000.2802--
4.43587997500.2777--
4.43617998000.2969--
4.43647998500.2783--
4.43677999000.29--
4.43707999500.2988--
4.43728000000.28650.05990.2518
4.43758000500.278--
4.43788001000.2567--
4.43818001500.2977--
4.43838002000.2819--
4.43868002500.2878--
4.43898003000.257--
4.43928003500.2861--
4.43948004000.292--
4.43978004500.2758--
4.44008005000.2868--
4.44038005500.3056--
4.44068006000.2943--
4.44088006500.2645--
4.44118007000.2629--
4.44148007500.2916--
4.44178008000.2977--
4.44198008500.2738--
4.44228009000.3055--
4.44258009500.269--
4.44288010000.2811--
4.44318010500.2773--
4.44338011000.2761--
4.44368011500.2728--
4.44398012000.3009--
4.44428012500.2841--
4.44448013000.2846--
4.44478013500.2765--
4.44508014000.2941--
4.44538014500.289--
4.44558015000.2739--
4.44588015500.2823--
4.44618016000.3058--
4.44648016500.2814--
4.44678017000.2721--
4.44698017500.2993--
4.44728018000.264--
4.44758018500.3022--
4.44788019000.2969--
4.44808019500.2677--
4.44838020000.30150.06010.2504
4.44868020500.2903--
4.44898021000.2872--
4.44928021500.2812--
4.44948022000.2653--
4.44978022500.2694--
4.45008023000.2979--
4.45038023500.2727--
4.45058024000.2994--
4.45088024500.2666--
4.45118025000.2867--
4.45148025500.2929--
4.45168026000.2932--
4.45198026500.2909--
4.45228027000.2794--
4.45258027500.2759--
4.45288028000.2827--
4.45308028500.2921--
4.45338029000.2733--
4.45368029500.2671--
4.45398030000.2889--
4.45418030500.2649--
4.45448031000.2698--
4.45478031500.3059--
4.45508032000.2833--
4.45538032500.2928--
4.45558033000.2855--
4.45588033500.2798--
4.45618034000.2941--
4.45648034500.28--
4.45668035000.2686--
4.45698035500.2705--
4.45728036000.271--
4.45758036500.2788--
4.45788037000.2654--
4.45808037500.2714--
4.45838038000.2656--
4.45868038500.2813--
4.45898039000.2816--
4.45918039500.2924--
4.45948040000.28250.05990.2513
4.45978040500.2694--
4.46008041000.2792--
4.46028041500.251--
4.46058042000.2838--
4.46088042500.2622--
4.46118043000.2787--
4.46148043500.2676--
4.46168044000.2721--
4.46198044500.2987--
4.46228045000.2664--
4.46258045500.2946--
4.46278046000.2811--
4.46308046500.2793--
4.46338047000.2912--
4.46368047500.2736--
4.46398048000.2667--
4.46418048500.2943--
4.46448049000.2711--
4.46478049500.2886--
4.46508050000.2668--
4.46528050500.2913--
4.46558051000.2783--
4.46588051500.2996--
4.46618052000.2808--
4.46638052500.2867--
4.46668053000.2678--
4.46698053500.2672--
4.46728054000.2669--
4.46758054500.2993--
4.46778055000.2773--
4.46808055500.2719--
4.46838056000.2657--
4.46868056500.3064--
4.46888057000.2722--
4.46918057500.2792--
4.46948058000.2941--
4.46978058500.2794--
4.47008059000.2695--
4.47028059500.2746--
4.47058060000.30860.05970.2492
4.47088060500.2678--
4.47118061000.2823--
4.47138061500.2727--
4.47168062000.276--
4.47198062500.2942--
4.47228063000.2781--
4.47248063500.297--
4.47278064000.2908--
4.47308064500.2771--
4.47338065000.278--
4.47368065500.278--
4.47388066000.2723--
4.47418066500.2575--
4.47448067000.2615--
4.47478067500.2898--
4.47498068000.2801--
4.47528068500.2671--
4.47558069000.2673--
4.47588069500.3105--
4.47618070000.2903--
4.47638070500.2828--
4.47668071000.2815--
4.47698071500.2936--
4.47728072000.2785--
4.47748072500.3004--
4.47778073000.2837--
4.47808073500.2842--
4.47838074000.2891--
4.47868074500.2922--
4.47888075000.2799--
4.47918075500.2723--
4.47948076000.2801--
4.47978076500.2634--
4.47998077000.2736--
4.48028077500.3057--
4.48058078000.2857--
4.48088078500.2763--
4.48108079000.2744--
4.48138079500.2951--
4.48168080000.28980.05970.2532
4.48198080500.2822--
4.48228081000.2657--
4.48248081500.2903--
4.48278082000.29--
4.48308082500.2681--
4.48338083000.2795--
4.48358083500.2774--
4.48388084000.2743--
4.48418084500.2925--
4.48448085000.2968--
4.48478085500.2892--
4.48498086000.292--
4.48528086500.2848--
4.48558087000.2681--
4.48588087500.2735--
4.48608088000.3022--
4.48638088500.256--
4.48668089000.2831--
4.48698089500.2617--
4.48718090000.2668--
4.48748090500.2798--
4.48778091000.2681--
4.48808091500.2788--
4.48838092000.287--
4.48858092500.2777--
4.48888093000.2778--
4.48918093500.2815--
4.48948094000.2879--
4.48968094500.285--
4.48998095000.2798--
4.49028095500.2735--
4.49058096000.2836--
4.49088096500.281--
4.49108097000.2835--
4.49138097500.2794--
4.49168098000.2696--
4.49198098500.2903--
4.49218099000.2889--
4.49248099500.2855--
4.49278100000.28490.05980.2512
4.49308100500.2962--
4.49328101000.3032--
4.49358101500.2838--
4.49388102000.2893--
4.49418102500.2736--
4.49448103000.275--
4.49468103500.2653--
4.49498104000.2933--
4.49528104500.2783--
4.49558105000.2885--
4.49578105500.2953--
4.49608106000.2855--
4.49638106500.2791--
4.49668107000.2795--
4.49698107500.2986--
4.49718108000.2971--
4.49748108500.2762--
4.49778109000.2946--
4.49808109500.2884--
4.49828110000.269--
4.49858110500.31--
4.49888111000.2823--
4.49918111500.2608--
4.49938112000.2694--
4.49968112500.2837--
4.49998113000.272--
4.50028113500.3013--
4.50058114000.295--
4.50078114500.2684--
4.50108115000.2693--
4.50138115500.2771--
4.50168116000.2701--
4.50188116500.2881--
4.50218117000.287--
4.50248117500.2667--
4.50278118000.2866--
4.50308118500.2614--
4.50328119000.284--
4.50358119500.2821--
4.50388120000.27360.05990.2515
4.50418120500.2899--
4.50438121000.2956--
4.50468121500.2883--
4.50498122000.2748--
4.50528122500.3--
4.50558123000.2961--
4.50578123500.2877--
4.50608124000.2801--
4.50638124500.258--
4.50668125000.2755--
4.50688125500.2879--
4.50718126000.2804--
4.50748126500.272--
4.50778127000.2976--
4.50798127500.2845--
4.50828128000.2821--
4.50858128500.2717--
4.50888129000.2997--
4.50918129500.2724--
4.50938130000.2932--
4.50968130500.2857--
4.50998131000.2912--
4.51028131500.2846--
4.51048132000.2934--
4.51078132500.2848--
4.51108133000.2787--
4.51138133500.2877--
4.51168134000.2978--
4.51188134500.2865--
4.51218135000.2769--
4.51248135500.2769--
4.51278136000.3005--
4.51298136500.3022--
4.51328137000.2961--
4.51358137500.2822--
4.51388138000.2995--
4.51408138500.3078--
4.51438139000.2749--
4.51468139500.2821--
4.51498140000.26940.05970.2507
4.51528140500.2736--
4.51548141000.2803--
4.51578141500.2862--
4.51608142000.2908--
4.51638142500.2863--
4.51658143000.2838--
4.51688143500.289--
4.51718144000.2596--
4.51748144500.2747--
4.51778145000.2804--
4.51798145500.2711--
4.51828146000.2693--
4.51858146500.2559--
4.51888147000.2907--
4.51908147500.264--
4.51938148000.2719--
4.51968148500.2922--
4.51998149000.2714--
4.52018149500.2703--
4.52048150000.2756--
4.52078150500.2752--
4.52108151000.2768--
4.52138151500.2731--
4.52158152000.273--
4.52188152500.2692--
4.52218153000.2839--
4.52248153500.2666--
4.52268154000.2804--
4.52298154500.2779--
4.52328155000.2812--
4.52358155500.2821--
4.52388156000.2825--
4.52408156500.2857--
4.52438157000.2845--
4.52468157500.2886--
4.52498158000.2854--
4.52518158500.285--
4.52548159000.2752--
4.52578159500.284--
4.52608160000.28680.05970.2505
4.52638160500.2889--
4.52658161000.2832--
4.52688161500.2849--
4.52718162000.2669--
4.52748162500.2849--
4.52768163000.2675--
4.52798163500.2822--
4.52828164000.3019--
4.52858164500.2813--
4.52878165000.2895--
4.52908165500.2786--
4.52938166000.2764--
4.52968166500.2962--
4.52998167000.2826--
4.53018167500.2788--
4.53048168000.2966--
4.53078168500.2775--
4.53108169000.2742--
4.53128169500.2926--
4.53158170000.2736--
4.53188170500.2881--
4.53218171000.2734--
4.53248171500.2781--
4.53268172000.2752--
4.53298172500.2784--
4.53328173000.2829--
4.53358173500.2808--
4.53378174000.294--
4.53408174500.2799--
4.53438175000.2894--
4.53468175500.279--
4.53488176000.2821--
4.53518176500.2834--
4.53548177000.2838--
4.53578177500.2638--
4.53608178000.2844--
4.53628178500.2879--
4.53658179000.285--
4.53688179500.2985--
4.53718180000.27180.05980.2521
4.53738180500.2789--
4.53768181000.2797--
4.53798181500.2956--
4.53828182000.2761--
4.53858182500.277--
4.53878183000.2682--
4.53908183500.2858--
4.53938184000.2846--
4.53968184500.2687--
4.53988185000.2679--
4.54018185500.2907--
4.54048186000.2673--
4.54078186500.2763--
4.54098187000.2804--
4.54128187500.2571--
4.54158188000.2727--
4.54188188500.2693--
4.54218189000.2802--
4.54238189500.2807--
4.54268190000.2842--
4.54298190500.3099--
4.54328191000.2965--
4.54348191500.2795--
4.54378192000.275--
4.54408192500.2619--
4.54438193000.2808--
4.54468193500.2913--
4.54488194000.2815--
4.54518194500.2814--
4.54548195000.283--
4.54578195500.2828--
4.54598196000.2908--
4.54628196500.2997--
4.54658197000.2774--
4.54688197500.2677--
4.54708198000.2903--
4.54738198500.2731--
4.54768199000.2566--
4.54798199500.2877--
4.54828200000.30550.05960.2515
4.54848200500.2666--
4.54878201000.2708--
4.54908201500.2867--
4.54938202000.2971--
4.54958202500.2557--
4.54988203000.295--
4.55018203500.2705--
4.55048204000.301--
4.55078204500.2884--
4.55098205000.2737--
4.55128205500.2992--
4.55158206000.2766--
4.55188206500.2627--
4.55208207000.2817--
4.55238207500.291--
4.55268208000.2862--
4.55298208500.2909--
4.55328209000.2697--
4.55348209500.2743--
4.55378210000.2836--
4.55408210500.2971--
4.55438211000.2656--
4.55458211500.3023--
4.55488212000.2881--
4.55518212500.2782--
4.55548213000.2743--
4.55568213500.2562--
4.55598214000.2955--
4.55628214500.2834--
4.55658215000.2837--
4.55688215500.2856--
4.55708216000.269--
4.55738216500.2652--
4.55768217000.2747--
4.55798217500.286--
4.55818218000.293--
4.55848218500.2785--
4.55878219000.2927--
4.55908219500.2851--
4.55938220000.28290.05960.2523
4.55958220500.2806--
4.55988221000.294--
4.56018221500.2837--
4.56048222000.2722--
4.56068222500.2889--
4.56098223000.2906--
4.56128223500.2765--
4.56158224000.2848--
4.56178224500.2721--
4.56208225000.2826--
4.56238225500.2826--
4.56268226000.2712--
4.56298226500.2968--
4.56318227000.2787--
4.56348227500.2945--
4.56378228000.2688--
4.56408228500.2865--
4.56428229000.2765--
4.56458229500.2888--
4.56488230000.2869--
4.56518230500.2817--
4.56548231000.2882--
4.56568231500.2787--
4.56598232000.2981--
4.56628232500.2884--
4.56658233000.2782--
4.56678233500.2771--
4.56708234000.2782--
4.56738234500.2618--
4.56768235000.2844--
4.56788235500.2856--
4.56818236000.3047--
4.56848236500.3014--
4.56878237000.2743--
4.56908237500.2713--
4.56928238000.2678--
4.56958238500.2525--
4.56988239000.2778--
4.57018239500.2656--
4.57038240000.29150.05950.2532
4.57068240500.2935--
4.57098241000.2858--
4.57128241500.2653--
4.57158242000.2907--
4.57178242500.2747--
4.57208243000.2747--
4.57238243500.2822--
4.57268244000.2759--
4.57288244500.2819--
4.57318245000.2841--
4.57348245500.2739--
4.57378246000.2943--
4.57408246500.2716--
4.57428247000.2867--
4.57458247500.2622--
4.57488248000.261--
4.57518248500.2791--
4.57538249000.2925--
4.57568249500.2871--
4.57598250000.2898--
4.57628250500.2689--
4.57648251000.2794--
4.57678251500.2725--
4.57708252000.287--
4.57738252500.2695--
4.57768253000.2801--
4.57788253500.2768--
4.57818254000.2797--
4.57848254500.2764--
4.57878255000.2873--
4.57898255500.2776--
4.57928256000.2994--
4.57958256500.2594--
4.57988257000.2766--
4.58018257500.2684--
4.58038258000.2897--
4.58068258500.2751--
4.58098259000.2803--
4.58128259500.2918--
4.58148260000.29930.05960.2518
4.58178260500.2773--
4.58208261000.281--
4.58238261500.2791--
4.58258262000.2845--
4.58288262500.2876--
4.58318263000.277--
4.58348263500.2778--
4.58378264000.2803--
4.58398264500.281--
4.58428265000.29--
4.58458265500.272--
4.58488266000.2735--
4.58508266500.2731--
4.58538267000.2836--
4.58568267500.2947--
4.58598268000.2737--
4.58628268500.2958--
4.58648269000.2744--
4.58678269500.2908--
4.58708270000.2751--
4.58738270500.2794--
4.58758271000.2795--
4.58788271500.2787--
4.58818272000.2935--
4.58848272500.279--
4.58868273000.2798--
4.58898273500.2948--
4.58928274000.2734--
4.58958274500.2695--
4.58988275000.2854--
4.59008275500.2709--
4.59038276000.3127--
4.59068276500.263--
4.59098277000.2872--
4.59118277500.2867--
4.59148278000.2815--
4.59178278500.2864--
4.59208279000.2951--
4.59238279500.2692--
4.59258280000.27710.05960.2521
4.59288280500.2747--
4.59318281000.2929--
4.59348281500.2655--
4.59368282000.2615--
4.59398282500.2804--
4.59428283000.2584--
4.59458283500.2971--
4.59488284000.2875--
4.59508284500.2865--
4.59538285000.2688--
4.59568285500.2717--
4.59598286000.2623--
4.59618286500.286--
4.59648287000.2718--
4.59678287500.286--
4.59708288000.276--
4.59728288500.2869--
4.59758289000.2651--
4.59788289500.2848--
4.59818290000.2679--
4.59848290500.2764--
4.59868291000.2863--
4.59898291500.3118--
4.59928292000.2986--
4.59958292500.308--
4.59978293000.2969--
4.60008293500.2751--
4.60038294000.2946--
4.60068294500.2914--
4.60098295000.2834--
4.60118295500.2769--
4.60148296000.2686--
4.60178296500.2769--
4.60208297000.262--
4.60228297500.2849--
4.60258298000.2742--
4.60288298500.2869--
4.60318299000.2701--
4.60338299500.2734--
4.60368300000.29380.05980.2517
4.60398300500.311--
4.60428301000.2724--
4.60458301500.2782--
4.60478302000.2836--
4.60508302500.2629--
4.60538303000.2477--
4.60568303500.2844--
4.60588304000.2849--
4.60618304500.2806--
4.60648305000.2738--
4.60678305500.2803--
4.60708306000.297--
4.60728306500.258--
4.60758307000.2884--
4.60788307500.2945--
4.60818308000.3025--
4.60838308500.3014--
4.60868309000.2731--
4.60898309500.2899--
4.60928310000.2769--
4.60948310500.291--
4.60978311000.2743--
4.61008311500.292--
4.61038312000.2895--
4.61068312500.3112--
4.61088313000.2654--
4.61118313500.2747--
4.61148314000.2693--
4.61178314500.2866--
4.61198315000.2798--
4.61228315500.2668--
4.61258316000.2738--
4.61288316500.2531--
4.61318317000.2661--
4.61338317500.3007--
4.61368318000.2813--
4.61398318500.2722--
4.61428319000.2733--
4.61448319500.2905--
4.61478320000.27880.05980.2531
4.61508320500.2796--
4.61538321000.2556--
4.61558321500.2661--
4.61588322000.2743--
4.61618322500.2848--
4.61648323000.2673--
4.61678323500.2617--
4.61698324000.2861--
4.61728324500.2853--
4.61758325000.2769--
4.61788325500.2843--
4.61808326000.2785--
4.61838326500.2983--
4.61868327000.2782--
4.61898327500.2827--
4.61928328000.276--
4.61948328500.2759--
4.61978329000.2913--
4.62008329500.2753--
4.62038330000.2894--
4.62058330500.279--
4.62088331000.2546--
4.62118331500.2842--
4.62148332000.2835--
4.62178332500.2957--
4.62198333000.2798--
4.62228333500.2687--
4.62258334000.2922--
4.62288334500.2898--
4.62308335000.2954--
4.62338335500.2608--
4.62368336000.2959--
4.62398336500.2811--
4.62418337000.2838--
4.62448337500.2689--
4.62478338000.2803--
4.62508338500.277--
4.62538339000.2639--
4.62558339500.2744--
4.62588340000.28320.05970.2522
4.62618340500.2918--
4.62648341000.2924--
4.62668341500.2931--
4.62698342000.2745--
4.62728342500.2843--
4.62758343000.2698--
4.62788343500.2535--
4.62808344000.2891--
4.62838344500.308--
4.62868345000.2794--
4.62898345500.2817--
4.62918346000.303--
4.62948346500.2894--
4.62978347000.2937--
4.63008347500.2731--
4.63028348000.2821--
4.63058348500.2981--
4.63088349000.2858--
4.63118349500.2965--
4.63148350000.3028--
4.63168350500.2881--
4.63198351000.2636--
4.63228351500.2844--
4.63258352000.2688--
4.63278352500.289--
4.63308353000.2992--
4.63338353500.2779--
4.63368354000.2758--
4.63398354500.2988--
4.63418355000.2783--
4.63448355500.2665--
4.63478356000.3029--
4.63508356500.2888--
4.63528357000.2939--
4.63558357500.2729--
4.63588358000.2766--
4.63618358500.282--
4.63638359000.2901--
4.63668359500.2907--
4.63698360000.27790.05950.2523
4.63728360500.2805--
4.63758361000.2729--
4.63778361500.2877--
4.63808362000.271--
4.63838362500.2732--
4.63868363000.28--
4.63888363500.2864--
4.63918364000.2889--
4.63948364500.2922--
4.63978365000.2936--
4.64008365500.2799--
4.64028366000.2868--
4.64058366500.2699--
4.64088367000.2704--
4.64118367500.3056--
4.64138368000.2824--
4.64168368500.2773--
4.64198369000.2967--
4.64228369500.2802--
4.64258370000.293--
4.64278370500.3012--
4.64308371000.2983--
4.64338371500.299--
4.64368372000.3015--
4.64388372500.2751--
4.64418373000.2768--
4.64448373500.2652--
4.64478374000.304--
4.64498374500.2718--
4.64528375000.2689--
4.64558375500.2786--
4.64588376000.2828--
4.64618376500.2731--
4.64638377000.2784--
4.64668377500.2775--
4.64698378000.2857--
4.64728378500.2786--
4.64748379000.2808--
4.64778379500.2838--
4.64808380000.27050.05950.2509
4.64838380500.2888--
4.64868381000.2863--
4.64888381500.2934--
4.64918382000.2823--
4.64948382500.2615--
4.64978383000.2876--
4.64998383500.2838--
4.65028384000.267--
4.65058384500.2858--
4.65088385000.2837--
4.65108385500.2749--
4.65138386000.2787--
4.65168386500.2806--
4.65198387000.267--
4.65228387500.2894--
4.65248388000.2606--
4.65278388500.281--
4.65308389000.2959--
4.65338389500.28--
4.65358390000.2895--
4.65388390500.2822--
4.65418391000.2643--
4.65448391500.3037--
4.65478392000.2896--
4.65498392500.2789--
4.65528393000.2719--
4.65558393500.3064--
4.65588394000.2723--
4.65608394500.3079--
4.65638395000.2845--
4.65668395500.2697--
4.65698396000.2774--
4.65718396500.3119--
4.65748397000.2687--
4.65778397500.263--
4.65808398000.2929--
4.65838398500.2646--
4.65858399000.2675--
4.65888399500.2843--
4.65918400000.28870.05970.2524
4.65948400500.2748--
4.65968401000.2831--
4.65998401500.2845--
4.66028402000.2848--
4.66058402500.2574--
4.66088403000.2664--
4.66108403500.292--
4.66138404000.2889--
4.66168404500.2829--
4.66198405000.2844--
4.66218405500.2795--
4.66248406000.2788--
4.66278406500.2912--
4.66308407000.2833--
4.66328407500.2961--
4.66358408000.2603--
4.66388408500.2811--
4.66418409000.2792--
4.66448409500.2848--
4.66468410000.3056--
4.66498410500.2667--
4.66528411000.2554--
4.66558411500.2768--
4.66578412000.2829--
4.66608412500.2726--
4.66638413000.2718--
4.66668413500.2779--
4.66698414000.2801--
4.66718414500.2645--
4.66748415000.2806--
4.66778415500.2795--
4.66808416000.2877--
4.66828416500.2922--
4.66858417000.2792--
4.66888417500.2842--
4.66918418000.2898--
4.66948418500.2674--
4.66968419000.2945--
4.66998419500.289--
4.67028420000.27880.05990.2512
4.67058420500.2786--
4.67078421000.2716--
4.67108421500.2749--
4.67138422000.2873--
4.67168422500.2663--
4.67188423000.2635--
4.67218423500.2833--
4.67248424000.269--
4.67278424500.279--
4.67308425000.2748--
4.67328425500.2978--
4.67358426000.2888--
4.67388426500.2672--
4.67418427000.2786--
4.67438427500.2826--
4.67468428000.2827--
4.67498428500.2811--
4.67528429000.2871--
4.67558429500.2796--
4.67578430000.2805--
4.67608430500.2741--
4.67638431000.2805--
4.67668431500.2681--
4.67688432000.2732--
4.67718432500.2839--
4.67748433000.2821--
4.67778433500.2641--
4.67798434000.2809--
4.67828434500.2645--
4.67858435000.2935--
4.67888435500.273--
4.67918436000.2776--
4.67938436500.2827--
4.67968437000.2918--
4.67998437500.2807--
4.68028438000.2716--
4.68048438500.2848--
4.68078439000.2658--
4.68108439500.2892--
4.68138440000.28110.05980.2520
4.68168440500.2775--
4.68188441000.2848--
4.68218441500.297--
4.68248442000.2751--
4.68278442500.3036--
4.68298443000.275--
4.68328443500.2821--
4.68358444000.278--
4.68388444500.2661--
4.68408445000.2721--
4.68438445500.2678--
4.68468446000.275--
4.68498446500.2992--
4.68528447000.262--
4.68548447500.2643--
4.68578448000.2635--
4.68608448500.266--
4.68638449000.2731--
4.68658449500.2785--
4.68688450000.3--
4.68718450500.277--
4.68748451000.2824--
4.68778451500.2967--
4.68798452000.2878--
4.68828452500.2803--
4.68858453000.2775--
4.68888453500.2638--
4.68908454000.2767--
4.68938454500.2801--
4.68968455000.2672--
4.68998455500.276--
4.69028456000.2708--
4.69048456500.269--
4.69078457000.2628--
4.69108457500.2839--
4.69138458000.2729--
4.69158458500.28--
4.69188459000.2763--
4.69218459500.2693--
4.69248460000.29740.05980.2527
4.69268460500.2953--
4.69298461000.2871--
4.69328461500.282--
4.69358462000.2747--
4.69388462500.2883--
4.69408463000.277--
4.69438463500.2795--
4.69468464000.2666--
4.69498464500.2837--
4.69518465000.3075--
4.69548465500.2742--
4.69578466000.2732--
4.69608466500.2884--
4.69638467000.2877--
4.69658467500.2528--
4.69688468000.2754--
4.69718468500.2844--
4.69748469000.284--
4.69768469500.278--
4.69798470000.2897--
4.69828470500.2699--
4.69858471000.2656--
4.69878471500.2911--
4.69908472000.272--
4.69938472500.2592--
4.69968473000.2876--
4.69998473500.2953--
4.70018474000.2958--
4.70048474500.3062--
4.70078475000.2731--
4.70108475500.2909--
4.70128476000.3103--
4.70158476500.3046--
4.70188477000.2825--
4.70218477500.2977--
4.70248478000.2744--
4.70268478500.2667--
4.70298479000.294--
4.70328479500.294--
4.70358480000.28660.05970.2526
4.70378480500.2813--
4.70408481000.2787--
4.70438481500.2976--
4.70468482000.2702--
4.70488482500.2854--
4.70518483000.2695--
4.70548483500.2848--
4.70578484000.2851--
4.70608484500.2887--
4.70628485000.2775--
4.70658485500.2918--
4.70688486000.2661--
4.70718486500.2794--
4.70738487000.2828--
4.70768487500.2896--
4.70798488000.2847--
4.70828488500.279--
4.70858489000.2848--
4.70878489500.2651--
4.70908490000.2592--
4.70938490500.2834--
4.70968491000.2827--
4.70988491500.2841--
4.71018492000.2786--
4.71048492500.2729--
4.71078493000.2811--
4.71108493500.2819--
4.71128494000.29--
4.71158494500.2791--
4.71188495000.2842--
4.71218495500.2854--
4.71238496000.2879--
4.71268496500.278--
4.71298497000.2687--
4.71328497500.2856--
4.71348498000.2845--
4.71378498500.2764--
4.71408499000.2845--
4.71438499500.2797--
4.71468500000.28070.05980.2523
4.71488500500.2744--
4.71518501000.2696--
4.71548501500.272--
4.71578502000.2724--
4.71598502500.2809--
4.71628503000.2923--
4.71658503500.2718--
4.71688504000.2819--
4.71718504500.2751--
4.71738505000.2781--
4.71768505500.2732--
4.71798506000.2885--
4.71828506500.2749--
4.71848507000.2894--
4.71878507500.2782--
4.71908508000.2826--
4.71938508500.2847--
4.71958509000.2749--
4.71988509500.2948--
4.72018510000.2761--
4.72048510500.2681--
4.72078511000.2811--
4.72098511500.2838--
4.72128512000.2988--
4.72158512500.2768--
4.72188513000.2641--
4.72208513500.2794--
4.72238514000.2845--
4.72268514500.2853--
4.72298515000.2686--
4.72328515500.286--
4.72348516000.2934--
4.72378516500.2656--
4.72408517000.2757--
4.72438517500.2875--
4.72458518000.2648--
4.72488518500.2669--
4.72518519000.3055--
4.72548519500.2866--
4.72568520000.27630.05950.2527
4.72598520500.2981--
4.72628521000.2615--
4.72658521500.2781--
4.72688522000.2554--
4.72708522500.2841--
4.72738523000.291--
4.72768523500.2653--
4.72798524000.2642--
4.72818524500.2769--
4.72848525000.3061--
4.72878525500.2792--
4.72908526000.2795--
4.72938526500.2608--
4.72958527000.2742--
4.72988527500.2827--
4.73018528000.2756--
4.73048528500.264--
4.73068529000.2798--
4.73098529500.2687--
4.73128530000.2767--
4.73158530500.2876--
4.73178531000.2755--
4.73208531500.2762--
4.73238532000.2829--
4.73268532500.2985--
4.73298533000.2673--
4.73318533500.2808--
4.73348534000.2834--
4.73378534500.2737--
4.73408535000.2825--
4.73428535500.2893--
4.73458536000.2862--
4.73488536500.2701--
4.73518537000.2903--
4.73548537500.2713--
4.73568538000.2704--
4.73598538500.2777--
4.73628539000.2855--
4.73658539500.2909--
4.73678540000.27380.05970.2530
4.73708540500.2578--
4.73738541000.2761--
4.73768541500.2736--
4.73798542000.2925--
4.73818542500.2751--
4.73848543000.2745--
4.73878543500.265--
4.73908544000.264--
4.73928544500.2922--
4.73958545000.2709--
4.73988545500.273--
4.74018546000.2717--
4.74038546500.2964--
4.74068547000.2758--
4.74098547500.2665--
4.74128548000.2686--
4.74158548500.261--
4.74178549000.2845--
4.74208549500.2842--
4.74238550000.2677--
4.74268550500.273--
4.74288551000.2726--
4.74318551500.2842--
4.74348552000.2843--
4.74378552500.2755--
4.74408553000.2963--
4.74428553500.2829--
4.74458554000.2688--
4.74488554500.2604--
4.74518555000.2657--
4.74538555500.2733--
4.74568556000.2788--
4.74598556500.2596--
4.74628557000.2641--
4.74648557500.2764--
4.74678558000.2851--
4.74708558500.285--
4.74738559000.2989--
4.74768559500.2584--
4.74788560000.26350.05960.2515
4.74818560500.2872--
4.74848561000.2859--
4.74878561500.2693--
4.74898562000.2707--
4.74928562500.2818--
4.74958563000.278--
4.74988563500.2702--
4.75018564000.2844--
4.75038564500.2696--
4.75068565000.311--
4.75098565500.2757--
4.75128566000.3008--
4.75148566500.2909--
4.75178567000.2867--
4.75208567500.2715--
4.75238568000.2597--
4.75258568500.2833--
4.75288569000.2711--
4.75318569500.273--
4.75348570000.2605--
4.75378570500.2662--
4.75398571000.3027--
4.75428571500.2841--
4.75458572000.2864--
4.75488572500.2712--
4.75508573000.2985--
4.75538573500.2818--
4.75568574000.2833--
4.75598574500.2854--
4.75628575000.2855--
4.75648575500.2942--
4.75678576000.2637--
4.75708576500.2937--
4.75738577000.248--
4.75758577500.2808--
4.75788578000.2736--
4.75818578500.2891--
4.75848579000.292--
4.75878579500.2981--
4.75898580000.27050.05970.2523
4.75928580500.2938--
4.75958581000.2898--
4.75988581500.2887--
4.76008582000.3094--
4.76038582500.2743--
4.76068583000.285--
4.76098583500.2784--
4.76118584000.2765--
4.76148584500.2898--
4.76178585000.2911--
4.76208585500.2578--
4.76238586000.2773--
4.76258586500.2954--
4.76288587000.2726--
4.76318587500.292--
4.76348588000.2834--
4.76368588500.2853--
4.76398589000.2849--
4.76428589500.291--
4.76458590000.2863--
4.76488590500.2829--
4.76508591000.2685--
4.76538591500.294--
4.76568592000.3038--
4.76598592500.2591--
4.76618593000.2612--
4.76648593500.3025--
4.76678594000.2866--
4.76708594500.2845--
4.76728595000.286--
4.76758595500.274--
4.76788596000.2618--
4.76818596500.297--
4.76848597000.2829--
4.76868597500.2847--
4.76898598000.2863--
4.76928598500.2782--
4.76958599000.2673--
4.76978599500.2617--
4.77008600000.26640.05960.2527
4.77038600500.293--
4.77068601000.264--
4.77098601500.2771--
4.77118602000.2846--
4.77148602500.2785--
4.77178603000.2869--
4.77208603500.2775--
4.77228604000.2648--
4.77258604500.2821--
4.77288605000.2558--
4.77318605500.2428--
4.77338606000.2829--
4.77368606500.2875--
4.77398607000.2745--
4.77428607500.2935--
4.77458608000.2855--
4.77478608500.2776--
4.77508609000.2839--
4.77538609500.2787--
4.77568610000.2825--
4.77588610500.2702--
4.77618611000.2653--
4.77648611500.2969--
4.77678612000.2818--
4.77708612500.2764--
4.77728613000.2821--
4.77758613500.2763--
4.77788614000.3013--
4.77818614500.2906--
4.77838615000.2583--
4.77868615500.2757--
4.77898616000.2626--
4.77928616500.2738--
4.77958617000.2701--
4.77978617500.2792--
4.78008618000.293--
4.78038618500.2751--
4.78068619000.2826--
4.78088619500.276--
4.78118620000.28380.05960.2522
4.78148620500.2671--
4.78178621000.2813--
4.78198621500.2754--
4.78228622000.2908--
4.78258622500.2607--
4.78288623000.2838--
4.78318623500.2911--
4.78338624000.2607--
4.78368624500.2768--
4.78398625000.2749--
4.78428625500.265--
4.78448626000.2889--
4.78478626500.2872--
4.78508627000.2672--
4.78538627500.2768--
4.78568628000.2804--
4.78588628500.2751--
4.78618629000.282--
4.78648629500.2902--
4.78678630000.2859--
4.78698630500.2821--
4.78728631000.2709--
4.78758631500.2887--
4.78788632000.2623--
4.78808632500.2604--
4.78838633000.2749--
4.78868633500.2773--
4.78898634000.2848--
4.78928634500.2821--
4.78948635000.2733--
4.78978635500.3059--
4.79008636000.2825--
4.79038636500.2916--
4.79058637000.2805--
4.79088637500.2722--
4.79118638000.2878--
4.79148638500.2685--
4.79178639000.2689--
4.79198639500.2787--
4.79228640000.27960.05940.2521
4.79258640500.2788--
4.79288641000.2754--
4.79308641500.3004--
4.79338642000.2681--
4.79368642500.2713--
4.79398643000.2987--
4.79418643500.2824--
4.79448644000.305--
4.79478644500.284--
4.79508645000.2719--
4.79538645500.2693--
4.79558646000.2804--
4.79588646500.2669--
4.79618647000.2911--
4.79648647500.2848--
4.79668648000.2661--
4.79698648500.2789--
4.79728649000.2822--
4.79758649500.2667--
4.79788650000.3001--
4.79808650500.2848--
4.79838651000.2824--
4.79868651500.3065--
4.79898652000.2985--
4.79918652500.2764--
4.79948653000.2653--
4.79978653500.277--
4.80008654000.2681--
4.80028654500.2715--
4.80058655000.2912--
4.80088655500.2959--
4.80118656000.2717--
4.80148656500.2691--
4.80168657000.2811--
4.80198657500.277--
4.80228658000.2808--
4.80258658500.2642--
4.80278659000.2889--
4.80308659500.2773--
4.80338660000.27530.05950.2518
4.80368660500.2882--
4.80398661000.2946--
4.80418661500.2938--
4.80448662000.268--
4.80478662500.3018--
4.80508663000.2836--
4.80528663500.2911--
4.80558664000.2827--
4.80588664500.2898--
4.80618665000.289--
4.80648665500.2884--
4.80668666000.2714--
4.80698666500.263--
4.80728667000.2725--
4.80758667500.2959--
4.80778668000.2817--
4.80808668500.2869--
4.80838669000.2529--
4.80868669500.287--
4.80888670000.2906--
4.80918670500.2913--
4.80948671000.2874--
4.80978671500.2877--
4.81008672000.284--
4.81028672500.2999--
4.81058673000.2677--
4.81088673500.2746--
4.81118674000.2782--
4.81138674500.2909--
4.81168675000.275--
4.81198675500.2785--
4.81228676000.2915--
4.81258676500.2639--
4.81278677000.2703--
4.81308677500.2659--
4.81338678000.2796--
4.81368678500.2624--
4.81388679000.2853--
4.81418679500.2682--
4.81448680000.29120.05940.2525
4.81478680500.2843--
4.81498681000.2847--
4.81528681500.2765--
4.81558682000.2921--
4.81588682500.2591--
4.81618683000.2761--
4.81638683500.2823--
4.81668684000.3268--
4.81698684500.2804--
4.81728685000.2691--
4.81748685500.2826--
4.81778686000.2793--
4.81808686500.2768--
4.81838687000.2829--
4.81868687500.2958--
4.81888688000.2769--
4.81918688500.2863--
4.81948689000.2751--
4.81978689500.2699--
4.81998690000.2931--
4.82028690500.2998--
4.82058691000.2588--
4.82088691500.2681--
4.82108692000.2782--
4.82138692500.2807--
4.82168693000.2695--
4.82198693500.299--
4.82228694000.2591--
4.82248694500.2832--
4.82278695000.2745--
4.82308695500.2638--
4.82338696000.2866--
4.82358696500.2917--
4.82388697000.2416--
4.82418697500.2695--
4.82448698000.267--
4.82478698500.2756--
4.82498699000.265--
4.82528699500.27--
4.82558700000.27490.05940.2527
4.82588700500.2761--
4.82608701000.273--
4.82638701500.2772--
4.82668702000.2797--
4.82698702500.2741--
4.82728703000.2824--
4.82748703500.267--
4.82778704000.2865--
4.82808704500.2709--
4.82838705000.2778--
4.82858705500.2835--
4.82888706000.2688--
4.82918706500.2763--
4.82948707000.292--
4.82968707500.286--
4.82998708000.2754--
4.83028708500.2851--
4.83058709000.2663--
4.83088709500.2711--
4.83108710000.2834--
4.83138710500.2575--
4.83168711000.2643--
4.83198711500.2453--
4.83218712000.2798--
4.83248712500.2794--
4.83278713000.2867--
4.83308713500.2766--
4.83338714000.2784--
4.83358714500.2699--
4.83388715000.2764--
4.83418715500.2815--
4.83448716000.2754--
4.83468716500.2647--
4.83498717000.2949--
4.83528717500.2772--
4.83558718000.2947--
4.83578718500.2736--
4.83608719000.2487--
4.83638719500.2746--
4.83668720000.26440.05940.2532
4.83698720500.2825--
4.83718721000.2707--
4.83748721500.267--
4.83778722000.272--
4.83808722500.2898--
4.83828723000.2797--
4.83858723500.3008--
4.83888724000.2806--
4.83918724500.2853--
4.83948725000.2861--
4.83968725500.2859--
4.83998726000.2861--
4.84028726500.2849--
4.84058727000.2841--
4.84078727500.2918--
4.84108728000.2813--
4.84138728500.2896--
4.84168729000.274--
4.84188729500.2781--
4.84218730000.2694--
4.84248730500.272--
4.84278731000.2912--
4.84308731500.2788--
4.84328732000.2859--
4.84358732500.2618--
4.84388733000.2847--
4.84418733500.2649--
4.84438734000.2762--
4.84468734500.2812--
4.84498735000.2746--
4.84528735500.2675--
4.84558736000.2546--
4.84578736500.2745--
4.84608737000.2913--
4.84638737500.2483--
4.84668738000.2845--
4.84688738500.2764--
4.84718739000.2698--
4.84748739500.2657--
4.84778740000.27050.05950.2517
4.84798740500.2831--
4.84828741000.2771--
4.84858741500.2936--
4.84888742000.2749--
4.84918742500.2727--
4.84938743000.2876--
4.84968743500.2939--
4.84998744000.2841--
4.85028744500.2801--
4.85048745000.2787--
4.85078745500.2673--
4.85108746000.275--
4.85138746500.2905--
4.85168747000.2723--
4.85188747500.2694--
4.85218748000.2785--
4.85248748500.2742--
4.85278749000.2746--
4.85298749500.2899--
4.85328750000.2782--
4.85358750500.2605--
4.85388751000.2732--
4.85418751500.2757--
4.85438752000.2677--
4.85468752500.2707--
4.85498753000.2934--
4.85528753500.2876--
4.85548754000.2674--
4.85578754500.2684--
4.85608755000.2579--
4.85638755500.2912--
4.85658756000.2888--
4.85688756500.2788--
4.85718757000.2741--
4.85748757500.2844--
4.85778758000.2805--
4.85798758500.276--
4.85828759000.307--
4.85858759500.2843--
4.85888760000.2789-0.2527

</details>

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 5.2.0
  • Transformers: 4.57.0.dev0
  • PyTorch: 2.9.0.dev20250901+cu129
  • Accelerate: 1.12.0
  • Datasets: 3.2.0
  • Tokenizers: 0.22.1

Citation

BibTeX

Sentence Transformers
bibtex
@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "https://arxiv.org/abs/1908.10084",
}
MultipleNegativesRankingLoss
bibtex
@misc{henderson2017efficient,
    title={Efficient Natural Language Response Suggestion for Smart Reply},
    author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
    year={2017},
    eprint={1705.00652},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->