CoolFace
Modelpublic

bobox/DeBERTa3-s-CustomPoolin-toytest-step1

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes22downloads
Model Card

SentenceTransformer based on microsoft/deberta-v3-small

This is a sentence-transformers model finetuned from microsoft/deberta-v3-small. It maps sentences & paragraphs to a 768-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: microsoft/deberta-v3-small <!-- at revision a36c739020e01763fe789b4b85e2df55d6180012 -->
  • Maximum Sequence Length: 512 tokens
  • Output Dimensionality: 768 tokens
  • Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: DebertaV2Model 
  (1): AdvancedWeightedPooling(
    (linear_cls_pj): Linear(in_features=768, out_features=768, bias=True)
    (linear_cls_Qpj): Linear(in_features=768, out_features=768, bias=True)
    (linear_mean_pj): Linear(in_features=768, out_features=768, bias=True)
    (linear_attnOut): Linear(in_features=768, out_features=768, bias=True)
    (mha): MultiheadAttention(
      (out_proj): NonDynamicallyQuantizableLinear(in_features=768, out_features=768, bias=True)
    )
    (layernorm_output): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_weightedPooing): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_pjCls): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_pjMean): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_attnOut): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
  )
)

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("bobox/DeBERTa3-s-CustomPoolin-toytest-step1")
# Run inference
sentences = [
    'who was the first person who made the violin',
    'Violin The first makers of violins probably borrowed from various developments of the Byzantine lira. These included the rebec;[13] the Arabic rebab; the vielle (also known as the fidel or viuola); and the lira da braccio[11][14] The violin in its present form emerged in early 16th-century northern Italy. The earliest pictures of violins, albeit with three strings, are seen in northern Italy around 1530, at around the same time as the words "violino" and "vyollon" are seen in Italian and French documents. One of the earliest explicit descriptions of the instrument, including its tuning, is from the Epitome musical by Jambe de Fer, published in Lyon in 1556.[15] By this time, the violin had already begun to spread throughout Europe.',
    "Alice in Chains Alice in Chains is an American rock band from Seattle, Washington, formed in 1987 by guitarist and vocalist Jerry Cantrell and drummer Sean Kinney,[1] who recruited bassist Mike Starr[1] and lead vocalist Layne Staley.[1][2][3] Starr was replaced by Mike Inez in 1993.[4] After Staley's death in 2002, William DuVall joined in 2006 as co-lead vocalist and rhythm guitarist. The band took its name from Staley's previous group, the glam metal band Alice N' Chains.[5][2]",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

<!--

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

Semantic Similarity
MetricValue
pearson_cosine0.67
spearman_cosine0.674
pearson_manhattan0.6847
spearman_manhattan0.6765
pearson_euclidean0.682
spearman_euclidean0.6744
pearson_dot0.6678
spearman_dot0.6715
pearson_max0.6847
spearman_max0.6765
Binary Classification
MetricValue
cosine_accuracy0.6973
cosineaccuracythreshold0.915
cosine_f10.5579
cosinef1threshold0.8169
cosine_precision0.4437
cosine_recall0.7514
cosine_ap0.5243
dot_accuracy0.6953
dotaccuracythreshold700.5377
dot_f10.5546
dotf1threshold623.9098
dot_precision0.4456
dot_recall0.7341
dot_ap0.5242
manhattan_accuracy0.6953
manhattanaccuracythreshold235.2859
manhattan_f10.5517
manhattanf1threshold347.6478
manhattan_precision0.458
manhattan_recall0.6936
manhattan_ap0.5239
euclidean_accuracy0.6973
euclideanaccuracythreshold11.39
euclidean_f10.5567
euclideanf1threshold16.6854
euclidean_precision0.4422
euclidean_recall0.7514
euclidean_ap0.5247
max_accuracy0.6973
maxaccuracythreshold700.5377
max_f10.5579
maxf1threshold623.9098
max_precision0.458
max_recall0.7514
max_ap0.5247
Binary Classification
MetricValue
cosine_accuracy0.668
cosineaccuracythreshold0.8046
cosine_f10.6843
cosinef1threshold0.7131
cosine_precision0.561
cosine_recall0.8771
cosine_ap0.6982
dot_accuracy0.6699
dotaccuracythreshold609.7378
dot_f10.6846
dotf1threshold546.0852
dot_precision0.5667
dot_recall0.8644
dot_ap0.6969
manhattan_accuracy0.6758
manhattanaccuracythreshold363.4094
manhattan_f10.6874
manhattanf1threshold430.9032
manhattan_precision0.5802
manhattan_recall0.8432
manhattan_ap0.7022
euclidean_accuracy0.666
euclideanaccuracythreshold17.237
euclidean_f10.6845
euclideanf1threshold20.8608
euclidean_precision0.5647
euclidean_recall0.8686
euclidean_ap0.6983
max_accuracy0.6758
maxaccuracythreshold609.7378
max_f10.6874
maxf1threshold546.0852
max_precision0.5802
max_recall0.8771
max_ap0.7022

<!--

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

Unnamed Dataset
  • Size: 32,500 training samples
  • Columns: <code>sentence1</code> and <code>sentence2</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | |:--------|:----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 29.3 tokens</li><li>max: 343 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 57.53 tokens</li><li>max: 512 tokens</li></ul> |
  • Samples: | sentence1 | sentence2 | |:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>A Slippery Dick is what type of creature?</code> | <code>The Slippery Dick (Juvenile) - Whats That Fish! Description Also known as Sand-reef Wrasses and Slippery Dick Wrasse. Found singly or in pairs or in groups constantly circling around reefs, sea grass beds and sandy areas. Colours highly variable especially between juvenile to adult. They feed on hard shell invertebrates. Length - 18cm Depth - 2-12m Widespread Western Atlantic & Caribbean Most reef fish seen by divers during the day are grazers, that cruise around just above the surface of the coral or snoop into crevices looking for algae, worms and small crustaceans. Wrasses have small protruding teeth and graze the bottom taking in a variety of snails, worms, crabs, shrimps and eggs. Any hard coats or thick shells are then ground down by their pharyngeal jaws and the delicacies inside digested. From juvenile to adult wrasses dramatically alter their colour and body shapes. Wrasses are always on the go during the day, but are the first to go to bed and the last to rise. Small wrasses dive below the sand to sleep and larger wrasses wedge themselves in crevasses. Related creatures Heads up! Many creatures change during their life. Juvenile fish become adults and some change shape or their colour. Some species change sex and others just get older. The following creature(s) are known relatives of the Slippery Dick (Juvenile). Click the image(s) to explore further or hover over to get a better view! Slippery Dick</code> | | <code>e.&#9;in solids the atoms are closely locked in position and can only vibrate, in liquids the atoms and molecules are more loosely connected and can collide with and move past one another, while in gases the atoms or molecules are free to move independently, colliding frequently.</code> | <code>Within a substance, atoms that collide frequently and move independently of one another are most likely in a gas</code> | | <code>In December 2015 , the film was ranked # 192 on IMDb .</code> | <code>As of December 2015 , it is the # 192 highest rated film on IMDb.</code> |
  • Loss: <code>GISTEmbedLoss</code> with these parameters:
json
  {'guide': SentenceTransformer(
    (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
    (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
  ), 'temperature': 0.025}

Evaluation Dataset

Unnamed Dataset
  • Size: 1,664 evaluation samples
  • Columns: <code>sentence1</code> and <code>sentence2</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 28.74 tokens</li><li>max: 330 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 56.55 tokens</li><li>max: 512 tokens</li></ul> |
  • Samples: | sentence1 | sentence2 | |:--------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>What component of an organism, made up of many cells, in turn makes up an organ?</code> | <code></code> | | <code>Diffusion Diffusion is a process where atoms or molecules move from areas of high concentration to areas of low concentration.</code> | <code>Diffusion is the process in which a substance naturally moves from an area of higher to lower concentration.</code> | | <code>In the 1966 movie The Good, The Bad And The Ugly, Clint Eastwood played the Good" and Lee van Cleef played "the Bad", but who played "the Ugly"?</code> | <code>View All Photos (10) Movie Info In the last and the best installment of his so-called "Dollars" trilogy of Sergio Leone-directed "spaghetti westerns," Clint Eastwood reprised the role of a taciturn, enigmatic loner. Here he searches for a cache of stolen gold against rivals the Bad (Lee Van Cleef), a ruthless bounty hunter, and the Ugly (Eli Wallach), a Mexican bandit. Though dubbed "the Good," Eastwood's character is not much better than his opponents -- he is just smarter and shoots faster. The film's title reveals its ironic attitude toward the canonized heroes of the classical western. "The real West was the world of violence, fear, and brutal instincts," claimed Leone. "In pursuit of profit there is no such thing as good and evil, generosity or deviousness; everything depends on chance, and not the best wins but the luckiest." Immensely entertaining and beautifully shot in Techniscope by Tonino Delli Colli, the movie is a virtually definitive "spaghetti western," rivaled only by Leone's own Once Upon a Time in the West (1968). The main musical theme by Ennio Morricone hit #1 on the British pop charts. Originally released in Italy at 177 minutes, the movie was later cut for its international release. ~ Yuri German, Rovi Rating:</code> |
  • Loss: <code>GISTEmbedLoss</code> with these parameters:
json
  {'guide': SentenceTransformer(
    (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
    (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
  ), 'temperature': 0.025}

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 32
  • per_device_eval_batch_size: 256
  • lr_scheduler_type: cosinewithmin_lr
  • lr_scheduler_kwargs: {'numcycles': 0.5, 'minlr': 3.3333333333333337e-06}
  • warmup_ratio: 0.33
  • save_safetensors: False
  • fp16: True
  • push_to_hub: True
  • hub_model_id: bobox/DeBERTa3-s-CustomPoolin-toytest-step1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • 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: 256
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 5e-05
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 3
  • max_steps: -1
  • lr_scheduler_type: cosinewithmin_lr
  • lr_scheduler_kwargs: {'numcycles': 0.5, 'minlr': 3.3333333333333337e-06}
  • warmup_ratio: 0.33
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: False
  • 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: False
  • fp16: True
  • 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: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • 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}
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamw_torch
  • 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: True
  • resume_from_checkpoint: None
  • hub_model_id: bobox/DeBERTa3-s-CustomPoolin-toytest-step1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • hub_private_repo: False
  • hub_always_push: False
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • 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
  • dispatch_batches: None
  • split_batches: 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
  • eval_use_gather_object: False
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional

</details>

Training Logs

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

EpochStepTraining LossValidation Losssts-test_spearman_cosineallNLI-dev_max_apQnli-dev_max_ap
0.001014.9603----
0.0020228.2529----
0.0030327.6365----
0.003946.1387----
0.004955.5753----
0.005965.6951----
0.006976.3533----
0.0079827.3848----
0.008993.8501----
0.00981027.911----
0.0108114.9042----
0.0118126.8003----
0.0128135.7317----
0.01381420.261----
0.01481527.9051----
0.0157165.5959----
0.0167175.8052----
0.0177184.5088----
0.0187197.3472----
0.0197205.8668----
0.0207216.4083----
0.0217226.011----
0.0226235.2394----
0.0236244.2966----
0.02462526.605----
0.0256266.2067----
0.0266276.0346----
0.0276285.4676----
0.0285296.4292----
0.02953026.6452----
0.03053118.8401----
0.0315327.4531----
0.0325334.8286----
0.0335345.0078----
0.0344355.4115----
0.0354365.4196----
0.0364374.5023----
0.0374385.376----
0.0384395.2303----
0.0394405.6694----
0.0404414.7825----
0.0413424.6507----
0.04234324.2072----
0.0433444.9285----
0.0443456.326----
0.0453464.5724----
0.0463474.754----
0.0472485.5443----
0.0482494.5764----
0.0492505.1434----
0.05025122.6991----
0.0512525.4277----
0.0522535.0178----
0.0531544.8779----
0.0541554.2884----
0.05515616.0994----
0.05615721.31----
0.0571584.9721----
0.0581595.143----
0.0591603.5933----
0.0600615.2559----
0.0610624.0757----
0.0620633.6612----
0.0630644.7505----
0.0640654.1979----
0.0650663.9982----
0.0659674.7065----
0.0669685.3413----
0.0679693.6964----
0.06897017.8774----
0.0699714.8154----
0.0709724.8356----
0.0719734.568----
0.0728744.0898----
0.0738753.4502----
0.0748763.7733----
0.0758774.5204----
0.0768784.2526----
0.0778794.4398----
0.0787804.0988----
0.0797813.9704----
0.0807824.3343----
0.0817834.2587----
0.08278415.0149----
0.08378514.6599----
0.0846864.0623----
0.0856873.7597----
0.0866884.3433----
0.0876894.0287----
0.0886904.6257----
0.08969113.4689----
0.0906924.6583----
0.0915934.2682----
0.0925944.468----
0.0935953.4333----
0.09459612.7654----
0.0955973.5577----
0.09659812.5875----
0.0974994.2206----
0.09841003.5981----
0.09941013.5575----
0.10041024.0271----
0.10141034.0803----
0.10241044.0886----
0.10331054.176----
0.10431064.6653----
0.10531074.3076----
0.10631088.7282----
0.10731093.4192----
0.108311010.6027----
0.10931114.0959----
0.11021124.2785----
0.11121133.9945----
0.112211410.0652----
0.11321153.8621----
0.11421164.3975----
0.11521179.7899----
0.11611184.3812----
0.11711193.8715----
0.11811203.8327----
0.11911213.5103----
0.12011229.3158----
0.12111233.7201----
0.12201243.4311----
0.12301253.7946----
0.12401264.0456----
0.1251273.482----
0.12601283.1901----
0.12701293.414----
0.12801303.4967----
0.12891313.6594----
0.12991328.066----
0.13091333.7872----
0.13191344.0023----
0.13291353.7728----
0.13391363.1893----
0.13481373.3635----
0.13581384.0195----
0.13681394.1097----
0.13781403.7903----
0.13881413.5748----
0.13981423.8104----
0.14071438.0411----
0.14171443.4819----
0.14271453.452----
0.14371463.5861----
0.14471473.4324----
0.14571483.521----
0.14671493.8868----
0.14761508.1191----
0.14861513.6447----
0.14961522.9436----
0.15061538.15352.20320.22360.40090.5892
0.15161543.9619----
0.15261553.1301----
0.15351563.0478----
0.15451573.2986----
0.15551583.2847----
0.15651593.6599----
0.15751603.2238----
0.15851612.8897----
0.15941623.9443----
0.16041633.3733----
0.16141643.7444----
0.16241653.4813----
0.16341662.6865----
0.16441672.7587----
0.16541683.3628----
0.16631693.0035----
0.167317010.1591----
0.16831713.5366----
0.16931728.4047----
0.17031733.8643----
0.17131743.3529----
0.17221753.7143----
0.17321763.3323----
0.17421773.1206----
0.17521783.1348----
0.17621797.6011----
0.17721803.7025----
0.178118110.5662----
0.17911828.966----
0.18011839.426----
0.18111843.0025----
0.18211857.0984----
0.18311867.3808----
0.18411872.8657----
0.18501886.5636----
0.18601893.4702----
0.18701905.9302----
0.18801913.2406----
0.18901923.4459----
0.19001935.269----
0.19091944.8605----
0.19191952.9891----
0.19291963.6681----
0.19391973.1589----
0.19491983.1835----
0.19591993.7561----
0.19692004.0891----
0.19782013.563----
0.19882023.7433----
0.19982033.3813----
0.20082045.2311----
0.20182053.3494----
0.20282063.3533----
0.20372073.688----
0.20472083.5342----
0.20572094.9381----
0.20672103.1839----
0.20772113.0465----
0.20872123.1232----
0.20962134.6297----
0.21062142.9834----
0.21162154.2231----
0.21262163.1458----
0.21362173.2525----
0.21462183.5971----
0.21562193.5616----
0.21652203.2378----
0.21752212.9075----
0.21852223.0391----
0.21952233.5573----
0.22052243.2092----
0.22152253.2646----
0.22242263.0886----
0.22342273.5241----
0.22442283.0111----
0.22542293.707----
0.22642305.3822----
0.22742313.2646----
0.22832322.7021----
0.22932333.5131----
0.23032343.103----
0.23132352.9535----
0.23232362.9631----
0.23332372.8068----
0.23432383.4251----
0.23522392.8495----
0.23622402.9972----
0.23722413.3509----
0.23822422.9234----
0.23922432.4086----
0.24022443.1282----
0.24112452.3352----
0.24212462.4706----
0.24312473.5449----
0.24412482.8963----
0.24512492.773----
0.24612502.355----
0.24702512.656----
0.24802522.6221----
0.24902538.6739----
0.2525410.8242----
0.25102552.3408----
0.25202562.1221----
0.25302573.295----
0.25392582.5896----
0.25492592.1215----
0.25592609.4851----
0.25692612.1982----
0.25792623.0568----
0.25892632.6269----
0.25982642.4792----
0.26082651.9445----
0.26182662.4061----
0.26282678.3116----
0.26382688.0804----
0.26482692.1674----
0.26572707.1975----
0.26672715.9104----
0.26772722.498----
0.26872732.5249----
0.26972742.7152----
0.27072752.7904----
0.27172762.7745----
0.27262772.9741----
0.27362781.8215----
0.27462794.6844----
0.27562802.8613----
0.27662812.7147----
0.27762822.814----
0.27852832.3569----
0.27952842.672----
0.28052853.2052----
0.28152862.8056----
0.28252872.6268----
0.28352882.5641----
0.28442892.4475----
0.28542902.7377----
0.28642912.3831----
0.28742928.8069----
0.28842932.186----
0.28942942.3389----
0.29042951.9744----
0.29132962.4491----
0.29232972.5668----
0.29332982.1939----
0.29432992.2832----
0.29533002.7508----
0.29633012.5206----
0.29723022.3522----
0.29823032.7186----
0.29923042.1369----
0.30023059.7972----
0.30123061.93781.57860.29240.42720.6159
0.30223072.5365----
0.30313082.0346----
0.30413092.0721----
0.30513102.6966----
0.30613112.6757----
0.307131210.6395----
0.30813132.8671----
0.30913142.0144----
0.31003159.9338----
0.31103162.6167----
0.31203172.1342----
0.31303189.0369----
0.31403192.0182----
0.31503202.2189----
0.31593211.9667----
0.31693222.3371----
0.31793236.9866----
0.31893241.6119----
0.31993251.8615----
0.32093262.1708----
0.32193272.0174----
0.32283286.7891----
0.32383292.155----
0.32483302.4636----
0.32583311.9844----
0.32683321.9035----
0.32783332.0729----
0.32873341.5715----
0.32973352.7211----
0.33073362.0351----
0.33173372.4049----
0.33273382.3939----
0.33373391.7353----
0.33463401.8393----
0.33563412.2874----
0.33663421.8566----
0.33763432.2676----
0.33863441.7895----
0.33963452.2506----
0.34063461.5613----
0.34153472.3531----
0.34253481.99----
0.343534912.0831----
0.34453502.0959----
0.34553512.0641----
0.34653521.9197----
0.34743531.9382----
0.34843542.3819----
0.34943551.6053----
0.35043562.4719----
0.35143571.5602----
0.35243582.1675----
0.353335911.5856----
0.35433609.3718----
0.35533611.8952----
0.35633621.701----
0.35733631.46----
0.35833641.7913----
0.35933659.1152----
0.36023669.2681----
0.36123672.2932----
0.36223681.7176----
0.36323692.2559----
0.36423701.9846----
0.36523711.8022----
0.36613728.1128----
0.36713736.929----
0.36813741.9038----
0.36913751.3899----
0.37013761.5677----
0.37113775.2357----
0.37203782.2304----
0.37303792.1727----
0.37403802.2941----
0.3753812.2257----
0.37603821.7489----
0.37703831.5027----
0.37803841.6917----
0.37893855.7867----
0.37993861.6871----
0.38093871.5652----
0.38193882.1691----
0.38293891.869----
0.38393902.1934----
0.38483917.0152----
0.38583922.0454----
0.38683931.8098----
0.38783945.7529----
0.38883951.3949----
0.38983961.5962----
0.39073976.1436----
0.39173985.2979----
0.39273991.2422----
0.39374002.1152----
0.39474011.6679----
0.39574024.2978----
0.39674031.624----
0.39764042.0267----
0.39864051.3975----
0.39964061.905----
0.40064075.4419----
0.40164082.0008----
0.40264091.8387----
0.40354102.2391----
0.40454111.7153----
0.40554122.1533----
0.40654131.788----
0.40754143.482----
0.40854151.8376----
0.40944164.8811----
0.41044171.9421----
0.41144181.4796----
0.41244191.6209----
0.41344201.8734----
0.41444211.9444----
0.41544221.9581----
0.41634231.5175----
0.41734241.2831----
0.41834251.1355----
0.41934261.864----
0.42034275.1574----
0.42134285.323----
0.42224291.385----
0.42324301.1691----
0.42424311.8994----
0.42524325.4254----
0.42624331.9113----
0.42724342.1108----
0.42814351.7012----
0.42914361.5722----
0.43014371.5967----
0.43114385.609----
0.43214391.4444----
0.43314405.3153----
0.43414415.0934----
0.43504421.3028----
0.43604431.263----
0.43704441.8462----
0.43804452.1533----
0.43904461.5467----
0.44004471.4331----
0.44094481.4416----
0.44194491.5976----
0.44294501.8723----
0.44394511.1753----
0.44494522.3205----
0.44594531.6467----
0.44694540.9322----
0.44784551.958----
0.44884561.8746----
0.44984571.4546----
0.45084580.9795----
0.45184591.54581.26760.27510.44850.6433
0.45284601.6558----
0.45374611.389----
0.45474621.5608----
0.45574631.6618----
0.45674641.5122----
0.45774651.3602----
0.45874661.6714----
0.45964671.0644----
0.46064687.6421----
0.46164691.2987----
0.46264701.4231----
0.46364717.7424----
0.46464721.6811----
0.46564731.1814----
0.46654741.4486----
0.46754751.3892----
0.46854761.3681----
0.46954771.3081----
0.47054780.9102----
0.47154791.0992----
0.47244806.018----
0.47344816.0908----
0.47444821.2245----
0.47544831.4825----
0.47644841.8037----
0.47744851.3611----
0.47834861.7482----
0.47934871.6385----
0.48034881.3245----
0.48134891.5638----
0.48234901.566----
0.48334911.9482----
0.48434926.0859----
0.48524935.8754----
0.48624940.9964----
0.48724951.5949----
0.48824961.3167----
0.48924973.9345----
0.49024984.3886----
0.49114991.6124----
0.49215001.2145----
0.49315013.5499----
0.49415021.2999----
0.49515031.2375----
0.49615041.1606----
0.49705051.4634----
0.49805061.35----
0.49905071.7187----
0.55081.5915----
0.50105091.2357----
0.50205103.4122----
0.50305114.244----
0.50395120.9151----
0.50495131.4323----
0.50595141.4824----
0.50695151.339----
0.50795164.1658----
0.50895171.3062----
0.50985181.2905----
0.51085191.1487----
0.51185202.8652----
0.51285211.2634----
0.51385221.6745----
0.51485231.6548----
0.51575242.4204----
0.51675251.7201----
0.51775261.761----
0.51875272.7098----
0.51975281.6425----
0.52075291.2466----
0.52175301.3339----
0.52265311.2398----
0.52365323.5325----
0.52465331.1303----
0.52565341.2601----
0.52665351.5762----
0.52765361.3992----
0.52855371.7125----
0.52955383.6759----
0.53055391.5468----
0.53155401.4316----
0.53255411.2797----
0.53355421.9122----
0.53445432.0367----
0.53545443.3029----
0.53645453.9263----
0.53745463.0101----
0.53845473.3555----
0.53945481.2068----
0.54045491.1566----
0.54135501.2773----
0.54235511.4047----
0.54335521.6048----
0.54435531.217----
0.54535541.8104----
0.54635551.687----
0.54725561.6702----
0.54825571.7011----
0.54925581.7341----
0.55025591.5006----
0.55125601.2778----
0.55225611.5081----
0.55315621.2398----
0.55415631.1054----
0.55515644.0185----
0.55615651.0427----
0.55715661.3934----
0.55815671.2378----
0.55915681.022----
0.56005690.9001----
0.56105701.3279----
0.56205711.2889----
0.56305720.9383----
0.56405731.749----
0.56505740.7669----
0.56595750.9355----
0.56695761.3596----
0.56795775.5102----
0.56895780.7984----
0.56995790.8871----
0.57095801.1151----
0.57195810.9502----
0.57285823.6492----
0.57385833.4262----
0.57485841.3362----
0.57585850.9015----
0.57685861.5884----
0.57785871.109----
0.57875881.041----
0.57975891.4892----
0.58075901.2623----
0.58175911.5302----
0.58275921.3517----
0.58375930.6166----
0.58465941.6761----
0.58565951.1115----
0.58665961.2945----
0.58765971.4378----
0.58865980.9928----
0.58965990.9898----
0.59066004.6887----
0.59156011.2254----
0.59256021.2707----
0.59356031.8289----
0.59456040.7801----
0.59556050.9111----
0.59656061.1405----
0.59746071.0497----
0.59846081.0792----
0.59946090.9699----
0.60046100.9398----
0.60146111.5483----
0.60246120.9971.00470.39800.45540.6701
0.60336130.8358----
0.60436141.211----
0.60536156.7813----
0.60636161.1229----
0.60736171.0317----
0.60836181.2123----
0.60936191.4073----
0.61026200.9951----
0.61126211.3166----
0.61226224.5204----
0.61326230.6539----
0.61426241.1959----
0.61526254.2551----
0.61616261.2459----
0.61716271.3758----
0.61816281.0524----
0.61916291.5197----
0.62016301.0201----
0.62116310.9007----
0.62206320.8418----
0.62306331.4343----
0.62406340.5292----
0.6256350.8549----
0.62606360.8703----
0.62706370.9911----
0.62806381.3342----
0.62896391.1332----
0.62996403.9965----
0.63096410.7236----
0.63196420.9079----
0.63296431.0967----
0.63396441.4183----
0.63486451.3841----
0.63586461.2982----
0.63686470.9048----
0.63786480.7918----
0.63886490.3685----
0.63986500.6949----
0.64076515.1568----
0.64176521.3943----
0.64276530.8608----
0.64376540.8197----
0.64476550.822----
0.64576563.2918----
0.64676570.5596----
0.64766584.1499----
0.64866591.0279----
0.64966601.1506----
0.65066611.1673----
0.65166620.96----
0.65266633.5414----
0.65356640.6599----
0.65456653.5518----
0.65556661.1906----
0.65656672.1353----
0.65756680.7083----
0.65856692.9425----
0.65946700.9433----
0.66046711.8499----
0.66146721.1614----
0.66246731.0474----
0.66346741.2895----
0.66446750.9789----
0.66546760.7719----
0.66636771.2203----
0.66736781.0516----
0.66836792.5514----
0.66936800.7346----
0.67036811.0245----
0.67136822.8005----
0.67226831.3212----
0.67326840.95----
0.67426851.0483----
0.67526860.8504----
0.67626872.281----
0.67726881.8153----
0.67816891.3652----
0.67916901.0949----
0.68016911.2196----
0.68116920.7995----
0.68216931.5108----
0.68316940.7933----
0.68416951.2367----
0.68506961.0352----
0.68606971.1709----
0.68706981.452----
0.68806990.8497----
0.68907002.8109----
0.69007012.6196----
0.69097021.4556----
0.69197031.3494----
0.69297041.6624----
0.69397051.6169----
0.69497060.5565----
0.69597070.8594----
0.69697080.8551----
0.69787091.1693----
0.69887101.0514----
0.69987111.1862----
0.70087120.8359----
0.70187130.7692----
0.70287141.815----
0.70377151.0751----
0.70477160.6526----
0.70577171.1617----
0.70677181.0783----
0.70777190.7916----
0.70877201.3039----
0.70967211.1156----
0.71067221.0529----
0.71167230.8265----
0.71267240.8019----
0.71367250.6116----
0.71467261.135----
0.71567270.7692----
0.71657282.3559----
0.71757291.352----
0.71857302.823----
0.71957311.0067----
0.72057320.9077----
0.72157331.0933----
0.72247340.8174----
0.72347351.2212----
0.72447361.1557----
0.72547370.6191----
0.72647381.7437----
0.72747390.8977----
0.72837401.0782----
0.72937410.8985----
0.73037421.4867----
0.73137430.7497----
0.73237440.6433----
0.73337451.4175----
0.73437461.1896----
0.73527471.9867----
0.73627480.8968----
0.73727490.7265----
0.73827500.9418----
0.73927511.3717----
0.74027522.1774----
0.74117531.0854----
0.74217540.9777----
0.74317551.2721----
0.74417560.7114----
0.74517571.4036----
0.74617581.1742----
0.74707590.9351----
0.74807600.5537----
0.74907610.8688----
0.757623.0053----
0.75107633.3743----
0.75207641.9928----
0.75307651.51180.93420.45140.47920.6782
0.75397661.1213----
0.75497672.1312----
0.75597681.3739----
0.75697690.8819----
0.75797700.9069----
0.75897710.935----
0.75987720.7874----
0.76087731.9942----
0.76187741.1711----
0.76287750.8407----
0.76387761.5171----
0.76487770.5308----
0.76577781.4107----
0.76677791.1766----
0.76777801.326----
0.76877810.7371----
0.76977821.0504----
0.77077831.1458----
0.77177840.7242----
0.77267850.8113----
0.77367861.3808----
0.77467870.7584----
0.77567881.226----
0.77667891.0599----
0.77767902.9348----
0.77857911.0849----
0.77957920.5362----
0.78057931.3765----
0.78157940.6824----
0.78257950.6009----
0.78357962.3853----
0.78447971.0571----
0.78547980.9172----
0.78647990.7915----
0.78748000.827----
0.78848010.8465----
0.78948022.3489----
0.79048030.6506----
0.79138040.8346----
0.79238050.6249----
0.79338061.0557----
0.79438070.7552----
0.79538081.281----
0.79638090.7846----
0.79728102.6403----
0.79828110.3679----
0.79928121.9118----
0.80028132.5911----
0.80128141.1783----
0.80228150.9347----
0.80318160.5311----
0.80418170.7092----
0.80518180.8384----
0.80618190.514----
0.80718200.3638----
0.80818211.9376----
0.80918220.9177----
0.81008230.8293----
0.81108240.7269----
0.81208250.664----
0.81308260.6205----
0.81408270.6562----
0.81508280.6576----
0.81598290.9931----
0.81698301.1707----
0.81798310.8635----
0.81898320.7274----
0.81998331.6808----
0.82098341.8309----
0.82198350.6191----
0.82288361.0789----
0.82388371.1637----
0.82488380.7813----
0.82588391.0403----
0.82688400.7656----
0.82788410.9994----
0.82878421.009----
0.82978430.8585----
0.83078440.8847----
0.83178450.8321----
0.83278461.2605----
0.83378471.0609----
0.83468482.0115----
0.83568491.2952----
0.83668500.6999----
0.83768510.7006----
0.83868520.927----
0.83968531.2083----
0.84068540.608----
0.84158550.8478----
0.84258561.5731----
0.84358571.6353----
0.84458580.7862----
0.84558590.8909----
0.84658601.1719----
0.84748611.2722----
0.84848621.0022----
0.84948631.5307----
0.85048641.0162----
0.85148650.6827----
0.85248660.7744----
0.85338671.2011----
0.85438680.9219----
0.85538690.7636----
0.85638701.5061----
0.85738711.5569----
0.85838720.5896----
0.85938731.1918----
0.86028740.8572----
0.86128751.0421----
0.86228762.4599----
0.86328770.55----
0.86428781.2829----
0.86528790.7808----
0.86618801.7712----
0.86718810.7456----
0.86818821.2805----
0.86918832.1927----
0.87018840.855----
0.87118850.667----
0.87208861.1097----
0.87308871.8795----
0.87408880.6767----
0.8758890.7549----
0.87608900.8616----
0.87708911.9461----
0.87808921.2694----
0.87898931.825----
0.87998940.9218----
0.88098951.0297----
0.88198960.609----
0.88298970.9638----
0.88398980.5521----
0.88488991.3365----
0.88589000.8443----
0.88689010.7848----
0.88789021.0733----
0.88889030.5657----
0.88989041.8081----
0.89079050.8232----
0.89179060.6159----
0.89279070.9832----
0.89379081.1375----
0.89479091.4182----
0.89579101.2287----
0.89679111.0915----
0.89769120.8116----
0.89869130.6824----
0.89969140.8888----
0.90069150.5974----
0.90169161.1766----
0.90269170.9415----
0.90359180.63870.78560.51470.48350.6934
0.90459190.7342----
0.90559201.2232----
0.90659211.4883----
0.90759221.4453----
0.90859230.665----
0.90949240.8973----
0.91049250.7578----
0.91149260.8693----
0.91249271.0055----
0.91349280.4451----
0.91449291.3435----
0.91549301.0979----
0.91639311.0552----
0.91739320.8224----
0.91839332.824----
0.91939341.3514----
0.92039351.3339----
0.92139360.8439----
0.92229370.6325----
0.92329380.7714----
0.92429390.4552----
0.92529401.3962----
0.92629411.3079----
0.92729420.8963----
0.92819430.7712----
0.92919440.7079----
0.93019451.2151----
0.93119460.5961----
0.93219471.5555----
0.93319480.6374----
0.93419490.8514----
0.93509501.0144----
0.93609510.346----
0.93709520.7938----
0.93809530.7822----
0.93909542.5079----
0.94009550.4717----
0.94099562.047----
0.94199571.4548----
0.94299580.6623----
0.94399590.8172----
0.94499600.9362----
0.94599611.6731----
0.94699620.4495----
0.94789630.5375----
0.94889641.3343----
0.94989650.5332----
0.95089661.0183----
0.95189670.6058----
0.95289680.6536----
0.95379691.0448----
0.95479700.9479----
0.95579710.8316----
0.95679721.0847----
0.95779731.3262----
0.95879740.6488----
0.95969750.7577----
0.96069761.0546----
0.96169770.9759----
0.96269780.526----
0.96369790.9726----
0.96469800.7035----
0.96569810.4028----
0.96659820.889----
0.96759830.6391----
0.96859842.2124----
0.96959852.5108----
0.97059860.5352----
0.97159870.7982----
0.97249880.8057----
0.97349890.6363----
0.97449901.4105----
0.97549910.6527----
0.97649920.7418----
0.97749931.5734----
0.97839940.512----
0.97939950.7346----
0.98039960.6094----
0.98139970.9234----
0.98239982.1518----
0.98339990.458----
0.984310001.0281----
0.985210010.735----
0.986210021.1242----
0.987210031.3979----
0.988210040.8926----
0.989210052.1105----
0.990210060.6443----
0.991110071.6493----
0.992110081.125----
0.993110090.3277----
0.994110100.8848----
0.995110110.6624----
0.996110120.7913----
0.997010131.2572----
0.998010141.2533----
0.999010150.7953----
1.010160.3578----
1.001010171.1694----
1.002010181.0959----
1.003010190.8922----
1.003910200.7743----
1.004910210.5631----
1.005910221.2144----
1.006910230.5034----
1.007910240.7687----
1.008910250.7181----
1.009810261.0367----
1.010810270.8523----
1.011810281.1932----
1.012810291.3118----
1.013810300.8769----
1.014810310.8931----
1.015710320.8208----
1.016710330.7876----
1.017710341.1651----
1.018710350.8233----
1.019710360.7586----
1.020710370.8531----
1.021710381.81----
1.022610390.601----
1.023610400.6086----
1.024610410.6538----
1.025610420.5518----
1.026610431.249----
1.027610440.5059----
1.028510450.6202----
1.029510460.8073----
1.030510470.4438----
1.031510481.4425----
1.032510490.3772----
1.033510500.4225----
1.034410510.7363----
1.035410520.4342----
1.036410530.8763----
1.037410540.8974----
1.038410550.9175----
1.039410560.9145----
1.040410570.7247----
1.041310580.6066----
1.042310590.5892----
1.043310602.1779----
1.044310610.7973----
1.045310620.4354----
1.046310631.2032----
1.047210641.088----
1.048210650.3944----
1.049210660.5178----
1.050210671.0818----
1.051210680.8308----
1.052210691.54----
1.053110700.8444----
1.054110710.48290.73220.57930.49430.6916
1.055110720.495----
1.056110730.8591----
1.057110740.327----
1.058110750.7161----
1.059110760.6374----
1.060010771.1748----
1.061010781.7501----
1.062010790.5544----
1.063010800.6265----
1.064010811.6517----
1.065010820.7457----
1.065910830.7492----
1.066910840.8013----
1.067910850.1619----
1.068910860.5057----
1.069910870.4712----
1.070910880.8382----
1.071910890.6045----
1.072810900.6117----
1.073810910.7028----
1.074810921.2376----
1.075810931.045----
1.076810941.1152----
1.077810950.5572----
1.078710960.7047----
1.079710971.4233----
1.080710980.8478----
1.081710990.6851----
1.082711000.4462----
1.083711012.1139----
1.084611020.8097----
1.085611031.0912----
1.086611041.1922----
1.087611050.3888----
1.088611060.7842----
1.089611070.1422----
1.090611080.6949----
1.091511090.819----
1.092511100.4947----
1.093511110.3346----
1.094511121.1459----
1.095511130.3276----
1.096511140.7464----
1.097411150.8906----
1.098411161.9711----
1.099411170.6403----
1.100411181.3684----
1.101411191.2074----
1.102411200.5098----
1.103311210.5498----
1.104311220.3848----
1.105311232.0202----
1.106311240.5944----
1.107311250.3266----
1.108311261.0289----
1.109311271.0807----
1.110211280.6155----
1.111211291.1686----
1.112211301.0762----
1.113211310.6781----
1.114211320.6144----
1.115211330.8022----
1.116111340.5213----
1.117111350.6014----
1.118111360.901----
1.119111370.9938----
1.120111381.8173----
1.121111390.5572----
1.122011400.7489----
1.123011410.4338----
1.124011420.3086----
1.12511430.6942----
1.126011440.7665----
1.127011450.2734----
1.128011460.9961----
1.128911470.5258----
1.129911480.7122----
1.130911490.3747----
1.131911500.6397----
1.132911510.5504----
1.133911520.5572----
1.134811530.7828----
1.135811541.0443----
1.136811551.0731----
1.137811561.1341----
1.138811570.391----
1.139811581.462----
1.140711590.8131----
1.141711600.7323----
1.142711610.5473----
1.143711620.7973----
1.144711630.5875----
1.145711640.9248----
1.146711650.6898----
1.147611661.4924----
1.148611670.8908----
1.149611680.564----
1.150611690.3779----
1.151611701.0715----
1.152611710.4366----
1.153511720.6391----
1.154511731.2133----
1.155511741.4135----
1.156511750.7748----
1.157511760.544----
1.158511770.5168----
1.159411780.6931----
1.160411790.87----
1.161411800.9842----
1.162411810.3614----
1.163411820.4167----
1.164411830.3688----
1.165411840.5431----
1.166311850.6127----
1.167311860.8693----
1.168311870.7596----
1.169311880.724----
1.170311890.9105----
1.171311900.3941----
1.172211911.1768----
1.173211920.5509----
1.174211931.1616----
1.175211940.6835----
1.176211950.4379----
1.177211960.5453----
1.178111970.5505----
1.179111980.7472----
1.180111990.3541----
1.181112000.796----
1.182112010.558----
1.183112020.8679----
1.184112030.7619----
1.185012040.7039----
1.186012050.7166----
1.187012060.6982----
1.188012070.4206----
1.189012080.6361----
1.190012090.6248----
1.190912100.7933----
1.191912110.5985----
1.192912120.6147----
1.193912130.6085----
1.194912140.6713----
1.195912151.0315----
1.196912162.0024----
1.197812171.6034----
1.198812181.7407----
1.199812191.2014----
1.200812201.8377----
1.201812210.6652----
1.202812220.2618----
1.203712231.4023----
1.204712240.25750.67520.59640.49820.7087
1.205712250.6646----
1.206712260.8142----
1.207712270.7552----
1.208712280.8724----
1.209612290.92----
1.210612300.8513----
1.211612310.5221----
1.212612320.8456----
1.213612330.3728----
1.214612341.1982----
1.215612350.4944----
1.216512360.454----
1.217512370.8594----
1.218512380.8604----
1.219512390.9616----
1.220512400.9257----
1.221512410.8514----
1.222412420.6498----
1.223412431.0719----
1.224412441.2279----
1.225412451.0294----
1.226412460.7619----
1.227412470.3707----
1.228312480.3229----
1.229312490.9892----
1.230312500.7125----
1.231312510.3682----
1.232312520.5191----
1.233312530.5471----
1.234312540.3635----
1.235212550.5368----
1.236212560.4115----
1.237212570.3883----
1.238212580.4394----
1.239212590.6474----
1.240212601.0838----
1.241112610.7188----
1.242112620.5869----
1.243112632.6805----
1.244112640.7447----
1.245112651.1048----
1.246112660.4745----
1.247012671.3479----
1.248012680.4079----
1.249012690.3326----
1.2512700.5237----
1.251012710.2571----
1.252012720.7165----
1.253012730.5696----
1.253912740.8936----
1.254912750.3444----
1.255912760.785----
1.256912770.3361----
1.257912780.3905----
1.258912790.8173----
1.259812800.4759----
1.260812810.3544----
1.261812820.4727----
1.262812830.5195----
1.263812840.5446----
1.264812850.585----
1.265712860.4068----
1.266712871.4534----
1.267712880.3907----
1.268712890.8361----
1.269712901.1358----
1.270712910.6607----
1.271712920.5284----
1.272612930.8732----
1.273612940.4414----
1.274612950.9862----
1.275612960.5916----
1.276612970.4013----
1.277612980.5889----
1.278512990.7337----
1.279513000.4836----
1.280513010.6721----
1.281513020.622----
1.282513030.4463----
1.283513041.0106----
1.284413050.9205----
1.285413061.0984----
1.286413070.3085----
1.287413080.4345----
1.288413090.3946----
1.289413101.6366----
1.290413110.909----
1.291313121.0468----
1.292313131.0732----
1.293313140.5856----
1.294313150.8502----
1.295313160.8886----
1.296313170.7551----
1.297213180.7487----
1.298213190.9703----
1.299213200.4291----
1.300213210.7965----
1.301213220.811----
1.302213230.9556----
1.303113240.8323----
1.304113250.327----
1.305113260.7244----
1.306113271.088----
1.307113280.9094----
1.308113290.7003----
1.309113300.8419----
1.310013310.6017----
1.311013320.4095----
1.312013330.8019----
1.313013340.7212----
1.314013350.6535----
1.315013361.2404----
1.315913370.8993----
1.316913380.5882----
1.317913390.6385----
1.318913400.5562----
1.319913410.2869----
1.320913420.3641----
1.321913430.4218----
1.322813440.606----
1.323813450.3806----
1.324813460.8854----
1.325813470.4355----
1.326813480.1498----
1.327813491.2401----
1.328713500.3354----
1.329713510.9802----
1.330713520.3976----
1.331713531.476----
1.332713541.0131----
1.333713550.6467----
1.334613560.6601----
1.335613570.5619----
1.336613580.5519----
1.337613590.2673----
1.338613600.7003----
1.339613610.4145----
1.340613620.9338----
1.341513631.6307----
1.342513640.353----
1.343513650.6528----
1.344513660.7904----
1.345513670.7177----
1.346513680.2139----
1.347413690.6728----
1.348413700.9091----
1.349413710.5011----
1.350413720.8399----
1.351413730.5121----
1.352413741.4742----
1.353313750.4506----
1.354313760.3336----
1.355313770.41870.65600.62400.50220.7068
1.356313780.5715----
1.357313790.5358----
1.358313800.5081----
1.359313810.8904----
1.360213820.8929----
1.361213830.658----
1.362213840.7433----
1.363213851.4056----
1.364213860.3945----
1.365213870.5946----
1.366113880.6706----
1.367113890.7309----
1.368113900.5186----
1.369113910.5135----
1.370113921.2628----
1.371113930.4493----
1.372013941.0504----
1.373013950.5056----
1.374013960.7245----
1.37513970.7753----
1.376013980.5531----
1.377013990.6692----
1.378014000.5516----
1.378914010.637----
1.379914020.3756----
1.380914030.7963----
1.381914040.623----
1.382914050.5124----
1.383914060.5348----
1.384814070.5751----
1.385814080.6647----
1.386814090.5282----
1.387814100.678----
1.388814110.9675----
1.389814120.8766----
1.390714130.5828----
1.391714140.5702----
1.392714150.1859----
1.393714161.3485----
1.394714170.5655----
1.395714180.389----
1.396714190.3533----
1.397614200.4214----
1.398614210.2939----
1.399614220.5645----
1.400614230.7114----
1.401614240.3381----
1.402614250.3896----
1.403514260.7151----
1.404514270.8335----
1.405514280.5981----
1.406514290.8689----
1.407514300.3731----
1.408514310.8882----
1.409414320.7825----
1.410414330.6815----
1.411414340.2557----
1.412414350.777----
1.413414360.2612----
1.414414370.9318----
1.415414380.5541----
1.416314390.7122----
1.417314400.8204----
1.418314410.4663----
1.419314420.5459----
1.420314430.6332----
1.421314440.5651----
1.422214450.6551----
1.423214460.2372----
1.424214470.4671----
1.425214480.5134----
1.426214490.6305----
1.427214501.5586----
1.428114510.294----
1.429114521.0767----
1.430114530.8044----
1.431114541.206----
1.432114550.3643----
1.433114561.0759----
1.434114570.2343----
1.435014580.5088----
1.436014590.7708----
1.437014600.5081----
1.438014611.1688----
1.439014620.4619----
1.440014630.6047----
1.440914640.4521----
1.441914650.4313----
1.442914660.781----
1.443914670.4163----
1.444914681.0091----
1.445914690.9163----
1.446914700.297----
1.447814710.6652----
1.448814720.51----
1.449814730.4238----
1.450814740.2851----
1.451814750.7563----
1.452814761.5687----
1.453714770.4711----
1.454714780.3604----
1.455714790.4551----
1.456714800.5354----
1.457714810.6896----
1.458714820.9103----
1.459614830.2517----
1.460614841.1375----
1.461614850.6002----
1.462614860.483----
1.463614870.5464----
1.464614880.4677----
1.465614890.673----
1.466514901.1392----
1.467514910.69----
1.468514920.5697----
1.469514930.3707----
1.470514940.7141----
1.471514950.4173----
1.472414961.0088----
1.473414970.5028----
1.474414980.6502----
1.475414990.5432----
1.476415000.7481----
1.477415010.6316----
1.478315020.5775----
1.479315030.5893----
1.480315040.8438----
1.481315050.4522----
1.482315060.5695----
1.483315070.9334----
1.484315080.8144----
1.485215090.6911----
1.486215100.2779----
1.487215110.7079----
1.488215120.4727----
1.489215130.3663----
1.490215140.5314----
1.491115150.2767----
1.492115160.3167----
1.493115170.4638----
1.494115180.675----
1.495115190.5539----
1.496115201.0517----
1.497015210.5162----
1.498015220.6293----
1.499015230.5688----
1.515240.3404----
1.501015250.512----
1.502015260.5594----
1.503015270.894----
1.503915280.6125----
1.504915290.6056----
1.505915300.71770.60760.63090.49710.6999
1.506915310.3312----
1.507915320.4585----
1.508915330.4917----
1.509815340.614----
1.510815350.1733----
1.511815360.7729----
1.512815370.2272----
1.513815380.4664----
1.514815390.4116----
1.515715400.2704----
1.516715411.8474----
1.517715420.91----
1.518715430.1718----
1.519715440.528----
1.520715450.3511----
1.521715460.7824----
1.522615470.2457----
1.523615481.3333----
1.524615490.3311----
1.525615500.9244----
1.526615510.8461----
1.527615520.5966----
1.528515530.6486----
1.529515540.3623----
1.530515551.0995----
1.531515560.6517----
1.532515570.3321----
1.533515580.5902----
1.534415592.0103----
1.535415600.6423----
1.536415610.6593----
1.537415621.1699----
1.538415630.4871----
1.539415641.2181----
1.540415650.6265----
1.541315660.3751----
1.542315670.3528----
1.543315680.3335----
1.544315690.3162----
1.545315700.9398----
1.546315710.567----
1.547215720.5336----
1.548215731.33----
1.549215741.4235----
1.550215750.9983----
1.551215760.4337----
1.552215770.4167----
1.553115780.2232----
1.554115790.3178----
1.555115800.3089----
1.556115810.4723----
1.557115820.9546----
1.558115830.5077----
1.559115840.8998----
1.560015850.2729----
1.561015860.8975----
1.562015870.5164----
1.563015880.4061----
1.564015890.6179----
1.565015900.2995----
1.565915910.2999----
1.566915920.7981----
1.567915930.646----
1.568915940.2591----
1.569915950.3448----
1.570915960.3245----
1.571915970.713----
1.572815980.565----
1.573815990.5098----
1.574816001.2973----
1.575816010.2531----
1.576816020.6581----
1.577816030.9468----
1.578716040.4272----
1.579716050.5431----
1.580716060.8867----
1.581716070.8721----
1.582716080.6227----
1.583716090.1811----
1.584616100.7213----
1.585616110.2797----
1.586616120.6565----
1.587616130.7022----
1.588616140.7888----
1.589616150.709----
1.590616160.7434----
1.591516170.53----
1.592516180.4844----
1.593516190.5643----
1.594516200.3544----
1.595516210.2189----
1.596516220.4058----
1.597416230.7974----
1.598416240.5026----
1.599416250.5145----
1.600416260.7416----
1.601416270.7841----
1.602416280.7778----
1.603316290.3109----
1.604316300.2943----
1.605316310.3306----
1.606316320.4688----
1.607316330.319----
1.608316340.4538----
1.609316350.5982----
1.610216360.3236----
1.611216370.5368----
1.612216380.5106----
1.613216390.4051----
1.614216400.6246----
1.615216410.3804----
1.616116420.3031----
1.617116430.6316----
1.618116440.2239----
1.619116451.37----
1.620116460.2093----
1.621116470.4044----
1.622016480.3808----
1.623016490.4414----
1.624016500.7992----
1.62516510.4573----
1.626016520.2918----
1.627016530.423----
1.628016540.367----
1.628916550.4115----
1.629916560.3583----
1.630916570.3222----
1.631916580.8085----
1.632916590.2026----
1.633916600.5456----
1.634816610.8468----
1.635816621.1053----
1.636816630.7123----
1.637816640.2607----
1.638816650.0968----
1.639816660.2164----
1.640716670.69----
1.641716681.0048----
1.642716690.3305----
1.643716700.2231----
1.644716710.2445----
1.645716720.3242----
1.646716730.089----
1.647616740.5702----
1.648616750.4989----
1.649616760.9726----
1.650616770.4638----
1.651616780.4957----
1.652616790.8089----
1.653516800.2915----
1.654516810.5772----
1.655516820.569----
1.656516830.5680.59070.62420.52460.7027
1.657516840.4959----
1.658516850.4703----
1.659416860.2729----
1.660416870.9194----
1.661416880.4448----
1.662416891.034----
1.663416900.7181----
1.664416910.3676----
1.665416920.2037----
1.666316930.5381----
1.667316940.5897----
1.668316950.3893----
1.669316960.2726----
1.670316970.3016----
1.671316980.3622----
1.672216990.7413----
1.673217000.4711----
1.674217010.5852----
1.675217020.2488----
1.676217030.6424----
1.677217040.5929----
1.678117051.1645----
1.679117060.3906----
1.680117070.6635----
1.681117080.3191----
1.682117091.1335----
1.683117100.4492----
1.684117110.5182----
1.685017121.1094----
1.686017130.2395----
1.687017140.7895----
1.688017150.1977----
1.689017160.3888----
1.690017170.5365----
1.690917180.7392----
1.691917190.7695----
1.692917200.6455----
1.693917210.25----
1.694917220.4361----
1.695917230.5931----
1.696917240.3968----
1.697817250.7418----
1.698817261.2343----
1.699817270.5609----
1.700817280.2499----
1.701817290.3217----
1.702817300.5106----
1.703717310.5158----
1.704717320.3063----
1.705717330.6839----
1.706717340.7934----
1.707717350.3674----
1.708717360.7417----
1.709617370.5724----
1.710617380.4792----
1.711617390.1971----
1.712617400.1942----
1.713617410.1964----
1.714617420.5801----
1.715617430.4141----
1.716517440.7436----
1.717517450.5944----
1.718517460.2409----
1.719517470.7519----
1.720517480.539----
1.721517490.4905----
1.722417500.5004----
1.723417510.8092----
1.724417520.7336----
1.725417530.7179----
1.726417540.5934----
1.727417550.3778----
1.728317560.536----
1.729317570.7303----
1.730317580.4749----
1.731317590.2381----
1.732317600.3432----
1.733317610.551----
1.734317620.7364----
1.735217630.3735----
1.736217640.219----
1.737217650.5522----
1.738217660.5187----
1.739217670.8373----
1.740217680.3356----
1.741117690.4305----
1.742117700.5027----
1.743117710.5996----
1.744117720.6392----
1.745117730.5633----
1.746117740.527----
1.747017750.792----
1.748017760.3731----
1.749017770.5097----
1.7517780.6975----
1.751017790.4482----
1.752017800.3304----
1.753017810.7658----
1.753917820.3893----
1.754917830.4672----
1.755917840.6018----
1.756917850.299----
1.757917860.5875----
1.758917870.5496----
1.759817880.2671----
1.760817890.3964----
1.761817900.7899----
1.762817910.2364----
1.763817920.6523----
1.764817930.1899----
1.765717940.5742----
1.766717950.406----
1.767717960.3509----
1.768717970.2206----
1.769717980.7158----
1.770717990.403----
1.771718000.4324----
1.772618010.4338----
1.773618020.4808----
1.774618030.3099----
1.775618040.9415----
1.776618050.8304----
1.777618060.4728----
1.778518070.5041----
1.779518080.1113----
1.780518090.6698----
1.781518100.2146----
1.782518110.3076----
1.783518120.431----
1.784418130.3019----
1.785418140.4078----
1.786418150.5552----
1.787418160.7442----
1.788418170.855----
1.789418180.5502----
1.790418190.4423----
1.791318200.4353----
1.792318210.4199----
1.793318220.5881----
1.794318230.393----
1.795318240.8371----
1.796318250.8951----
1.797218260.5165----
1.798218270.2122----
1.799218280.5037----
1.800218290.4873----
1.801218300.5968----
1.802218310.4316----
1.803118320.1818----
1.804118330.2078----
1.805118340.5342----
1.806118350.2382----
1.807118360.14140.56290.64250.52390.6921
1.808118370.3592----
1.809118380.893----
1.810018390.3389----
1.811018401.2053----
1.812018410.2925----
1.813018420.3789----
1.814018430.4395----
1.815018440.1913----
1.815918450.2172----
1.816918460.6572----
1.817918470.3379----
1.818918480.3634----
1.819918490.2917----
1.820918500.0589----
1.821918510.3823----
1.822818520.6974----
1.823818530.692----
1.824818540.2734----
1.825818550.3252----
1.826818560.2146----
1.827818570.5838----
1.828718580.6808----
1.829718590.7431----
1.830718600.2359----
1.831718610.3265----
1.832718620.7019----
1.833718631.182----
1.834618640.3365----
1.835618650.2282----
1.836618660.7224----
1.837618670.3317----
1.838618680.922----
1.839618690.7089----
1.840618700.1003----
1.841518710.1736----
1.842518720.8854----
1.843518730.2689----
1.844518740.2709----
1.845518750.4293----
1.846518760.6023----
1.847418770.817----
1.848418780.3847----
1.849418790.8794----
1.850418800.8067----
1.851418810.3147----
1.852418820.8664----
1.853318830.8473----
1.854318840.6057----
1.855318850.702----
1.856318861.3453----
1.857318870.8523----
1.858318880.2808----
1.859318890.7078----
1.860218900.5023----
1.861218910.4426----
1.862218920.5713----
1.863218930.2241----
1.864218940.0912----
1.865218950.6717----
1.866118960.4985----
1.867118970.485----
1.868118980.9783----
1.869118990.4758----
1.870119000.5097----
1.871119010.282----
1.872019020.8734----
1.873019030.5185----
1.874019040.2085----
1.87519050.3836----
1.876019060.4029----
1.877019070.4809----
1.878019080.8473----
1.878919090.7449----
1.879919100.7715----
1.880919110.6199----
1.881919120.1564----
1.882919130.3665----
1.883919140.155----
1.884819150.8861----
1.885819160.4216----
1.886819170.3504----
1.887819180.764----
1.888819190.2264----
1.889819200.7582----
1.890719210.3519----
1.891719220.4565----
1.892719230.7107----
1.893719240.6174----
1.894719250.9543----
1.895719260.4905----
1.896719270.6205----
1.897619280.6184----
1.898619290.4762----
1.899619300.5842----
1.900619310.0988----
1.901619320.7592----
1.902619330.4981----
1.903519340.3224----
1.904519350.8206----
1.905519360.781----
1.906519370.6597----
1.907519380.3783----
1.908519390.3694----
1.909419400.4454----
1.910419410.2308----
1.911419420.325----
1.912419430.4636----
1.913419440.2686----
1.914419450.6857----
1.915419460.5308----
1.916319470.4918----
1.917319480.4506----
1.918319490.5216----
1.919319500.7475----
1.920319510.6182----
1.921319520.3789----
1.922219530.3469----
1.923219540.5435----
1.924219550.1886----
1.925219560.7569----
1.926219570.3396----
1.927219580.5911----
1.928119590.2211----
1.929119600.4902----
1.930119610.5863----
1.931119620.3685----
1.932119630.5296----
1.933119640.2576----
1.934119650.2258----
1.935019660.4208----
1.936019670.4088----
1.937019680.4198----
1.938019690.3591----
1.939019700.2849----
1.940019710.6841----
1.940919720.1712----
1.941919730.2629----
1.942919740.444----
1.943919750.1811----
1.944919760.4874----
1.945919770.6704----
1.946919780.1352----
1.947819790.243----
1.948819800.7386----
1.949819810.188----
1.950819820.4885----
1.951819830.398----
1.952819840.4067----
1.953719850.2526----
1.954719860.4214----
1.955719870.699----
1.956719881.1089----
1.957719890.67920.56150.65880.52210.6928
1.958719900.4697----
1.959619910.1804----
1.960619920.9363----
1.961619930.315----
1.962619940.216----
1.963619951.0211----
1.964619960.2225----
1.965619970.3734----
1.966519981.1127----
1.967519990.5302----
1.968520000.4619----
1.969520010.4452----
1.970520020.2555----
1.971520030.3951----
1.972420040.4926----
1.973420050.4563----
1.974420060.2664----
1.975420070.5579----
1.976420080.4412----
1.977420090.641----
1.978320100.2505----
1.979320110.5773----
1.980320120.4118----
1.981320130.6585----
1.982320141.0842----
1.983320150.5697----
1.984320160.4335----
1.985220171.0189----
1.986220180.7046----
1.987220190.2414----
1.988220200.3538----
1.989220210.6771----
1.990220220.4546----
1.991120230.3169----
1.992120240.4244----
1.993120250.0684----
1.994120260.4007----
1.995120270.3198----
1.996120280.1821----
1.997020290.491----
1.998020300.8449----
1.999020310.2122----
2.020320.212----
2.001020330.5254----
2.002020340.7473----
2.003020350.0799----
2.003920360.4975----
2.004920370.4425----
2.005920380.3234----
2.006920390.3183----
2.007920400.3073----
2.008920410.2292----
2.009820420.3874----
2.010820430.6781----
2.011820440.6645----
2.012820450.2373----
2.013820460.3813----
2.014820470.88----
2.015720480.3683----
2.016720490.519----
2.017720501.0128----
2.018720511.1026----
2.019720520.4198----
2.020720530.1097----
2.021720540.4641----
2.022620550.4183----
2.023620560.2043----
2.024620570.7447----
2.025620580.5261----
2.026620591.0812----
2.027620600.3421----
2.028520610.5063----
2.029520620.2861----
2.030520630.0981----
2.031520640.5772----
2.032520650.0832----
2.033520660.3156----
2.034420670.1706----
2.035420680.3911----
2.036420690.6807----
2.037420700.5363----
2.038420710.5497----
2.039420720.7298----
2.040420730.3255----
2.041320740.2934----
2.042320750.2041----
2.043320760.6235----
2.044320770.4104----
2.045320780.1305----
2.046320790.1591----
2.047220800.3531----
2.048220810.2944----
2.049220820.3121----
2.050220830.5418----
2.051220840.8162----
2.052220850.4787----
2.053120860.1146----
2.054120870.2373----
2.055120880.1548----
2.056120890.4515----
2.057120900.4699----
2.058120910.3675----
2.059120920.2537----
2.060020930.4433----
2.061020940.3595----
2.062020950.4329----
2.063020960.1803----
2.064020970.6451----
2.065020980.3992----
2.065920990.2349----
2.066921000.1526----
2.067921010.133----
2.068921020.8299----
2.069921030.5157----
2.070921040.4256----
2.071921050.3434----
2.072821060.3479----
2.073821070.2604----
2.074821080.3513----
2.075821090.8243----
2.076821100.2352----
2.077821110.2082----
2.078721120.145----
2.079721131.3586----
2.080721140.3679----
2.081721150.3545----
2.082721160.6441----
2.083721170.8558----
2.084621180.4696----
2.085621190.8495----
2.086621200.8995----
2.087621210.3276----
2.088621220.7393----
2.089621230.048----
2.090621240.2266----
2.091521250.6785----
2.092521260.3503----
2.093521270.1894----
2.094521281.2168----
2.095521290.1664----
2.096521300.3649----
2.097421310.5949----
2.098421320.571----
2.099421330.3775----
2.100421340.3978----
2.101421350.4804----
2.102421360.2534----
2.103321370.2701----
2.104321380.2538----
2.105321390.6239----
2.106321400.7077----
2.107321410.1929----
2.108321420.13670.52930.64880.50990.7068
2.109321430.1882----
2.110221440.4297----
2.111221450.5098----
2.112221460.3554----
2.113221470.5338----
2.114221480.4045----
2.115221490.6929----
2.116121500.3397----
2.117121510.4817----
2.118121520.3459----
2.119121530.6743----
2.120121540.461----
2.121121550.4665----
2.122021560.2519----
2.123021570.4271----
2.124021580.1528----
2.12521590.3622----
2.126021600.2196----
2.127021610.2029----
2.128021620.7731----
2.128921630.2184----
2.129921640.4623----
2.130921650.1743----
2.131921660.1833----
2.132921670.274----
2.133921680.8368----
2.134821690.2218----
2.135821700.3106----
2.136821710.6703----
2.137821720.2926----
2.138821730.1584----
2.139821740.2456----
2.140721750.4458----
2.141721760.494----
2.142721770.4601----
2.143721780.6571----
2.144721790.1915----
2.145721800.2892----
2.146721810.3592----
2.147621820.89----
2.148621830.4856----
2.149621840.2403----
2.150621850.263----
2.151621860.5816----
2.152621870.2912----
2.153521880.2722----
2.154521890.3503----
2.155521900.3788----
2.156521910.4935----
2.157521920.2505----
2.158521930.3122----
2.159421940.2363----
2.160421950.4411----
2.161421960.5624----
2.162421970.1555----
2.163421980.4505----
2.164421990.2699----
2.165422000.2575----
2.166322010.2773----
2.167322020.7659----
2.168322030.5827----
2.169322040.4094----
2.170322050.5912----
2.171322060.2814----
2.172222070.6024----
2.173222080.4436----
2.174222090.2696----
2.175222100.1876----
2.176222110.4322----
2.177222120.401----
2.178122130.4703----
2.179122140.2829----
2.180122150.217----
2.181122160.2039----
2.182122170.3816----
2.183122180.3872----
2.184122190.5381----
2.185022200.3297----
2.186022210.7472----
2.187022220.409----
2.188022230.3398----
2.189022240.5215----
2.190022250.3045----
2.190922260.195----
2.191922270.457----
2.192922280.387----
2.193922290.3079----
2.194922300.7337----
2.195922310.3105----
2.196922320.4746----
2.197822330.4945----
2.198822340.7614----
2.199822350.5402----
2.200822360.7004----
2.201822370.2853----
2.202822380.061----
2.203722390.9005----
2.204722400.4169----
2.205722410.5792----
2.206722420.2046----
2.207722430.876----
2.208722440.3884----
2.209622450.826----
2.210622460.3453----
2.211622470.1741----
2.212622480.1238----
2.213622490.3539----
2.214622500.6756----
2.215622510.2457----
2.216522520.1128----
2.217522530.5331----
2.218522540.499----
2.219522550.9985----
2.220522560.5565----
2.221522570.545----
2.222422580.6449----
2.223422590.8312----
2.224422600.155----
2.225422610.8201----
2.226422620.2976----
2.227422630.1666----
2.228322640.2341----
2.229322650.1533----
2.230322660.2068----
2.231322670.2045----
2.232322680.2308----
2.233322690.1454----
2.234322700.2369----
2.235222710.1508----
2.236222720.4161----
2.237222730.2739----
2.238222740.7653----
2.239222750.3751----
2.240222760.6602----
2.241122770.2636----
2.242122780.3619----
2.243122791.2106----
2.244122800.5429----
2.245122810.2715----
2.246122820.3696----
2.247022830.5001----
2.248022840.263----
2.249022850.2834----
2.2522860.3014----
2.251022870.1766----
2.252022880.452----
2.253022890.3325----
2.253922900.3046----
2.254922910.0783----
2.255922920.5475----
2.256922930.1652----
2.257922940.2344----
2.258922950.68250.50270.67410.51780.7015
2.259822960.172----
2.260822970.1702----
2.261822980.2923----
2.262822990.9845----
2.263823000.3264----
2.264823010.3324----
2.265723020.133----
2.266723030.5128----
2.267723040.3315----
2.268723050.8059----
2.269723060.4871----
2.270723070.4682----
2.271723080.3445----
2.272623090.6977----
2.273623100.2097----
2.274623110.9707----
2.275623120.3347----
2.276623130.1578----
2.277623140.2311----
2.278523150.3391----
2.279523160.3266----
2.280523170.4752----
2.281523180.3747----
2.282523190.2869----
2.283523200.2732----
2.284423210.5805----
2.285423220.6248----
2.286423230.1827----
2.287423240.0837----
2.288423250.3561----
2.289423260.2894----
2.290423270.4555----
2.291323280.5762----
2.292323290.6998----
2.293323300.548----
2.294323310.4924----
2.295323320.5409----
2.296323330.7607----
2.297223340.4493----
2.298223350.1872----
2.299223360.2478----
2.300223370.4008----
2.301223380.2723----
2.302223390.4008----
2.303123400.4166----
2.304123410.2233----
2.305123420.606----
2.306123430.7489----
2.307123440.6439----
2.308123450.5636----
2.309123460.1038----
2.310023470.5164----
2.311023480.3576----
2.312023490.5828----
2.313023500.7128----
2.314023510.4945----
2.315023520.3841----
2.315923530.598----
2.316923540.2705----
2.317923550.2488----
2.318923560.2014----
2.319923570.1288----
2.320923580.2358----
2.321923590.2984----
2.322823600.1404----
2.323823610.1777----
2.324823620.7692----
2.325823630.1564----
2.326823640.1589----
2.327823650.517----
2.328723660.0561----
2.329723670.6459----
2.330723680.3254----
2.331723690.8167----
2.332723700.6455----
2.333723710.4716----
2.334623720.4538----
2.335623730.2246----
2.336623740.2168----
2.337623750.1789----
2.338623760.6535----
2.339623770.1169----
2.340623780.3429----
2.341523790.4071----
2.342523800.2805----
2.343523810.3936----
2.344523820.5997----
2.345523830.4108----
2.346523840.0802----
2.347423850.428----
2.348423860.9649----
2.349423870.3741----
2.350423880.2907----
2.351423890.1665----
2.352423900.464----
2.353323910.2636----
2.354323920.1748----
2.355323930.2673----
2.356323940.4091----
2.357323950.3149----
2.358323960.222----
2.359323970.3191----
2.360223980.6364----
2.361223990.3431----
2.362224000.3021----
2.363224010.5573----
2.364224020.3081----
2.365224030.3263----
2.366124040.345----
2.367124050.2477----
2.368124060.5129----
2.369124070.1907----
2.370124080.5318----
2.371124090.5115----
2.372024100.5919----
2.373024110.2424----
2.374024120.3523----
2.37524130.2838----
2.376024140.5143----
2.377024150.2617----
2.378024160.2902----
2.378924170.2989----
2.379924180.1996----
2.380924190.3886----
2.381924200.884----
2.382924210.311----
2.383924220.3463----
2.384824230.3554----
2.385824240.4----
2.386824250.271----
2.387824260.3827----
2.388824270.3209----
2.389824280.3825----
2.390724290.4422----
2.391724300.2985----
2.392724310.0181----
2.393724320.7523----
2.394724330.1871----
2.395724340.4331----
2.396724350.0969----
2.397624360.6248----
2.398624370.177----
2.399624380.4363----
2.400624390.6808----
2.401624400.3351----
2.402624410.1954----
2.403524420.4625----
2.404524430.1783----
2.405524440.3819----
2.406524450.7562----
2.407524460.154----
2.408524470.5065----
2.409424480.36140.50450.66990.51290.7047
2.410424490.261----
2.411424500.0852----
2.412424510.252----
2.413424520.057----
2.414424530.7811----
2.415424540.3099----
2.416324550.1505----
2.417324560.1391----
2.418324570.2339----
2.419324580.3976----
2.420324590.3867----
2.421324600.5535----
2.422224610.334----
2.423224620.1176----
2.424224630.363----
2.425224640.6583----
2.426224650.4029----
2.427224660.3915----
2.428124670.2261----
2.429124680.3856----
2.430124690.4336----
2.431124700.4369----
2.432124710.1303----
2.433124720.6326----
2.434124730.1735----
2.435024740.5125----
2.436024750.1103----
2.437024760.2421----
2.438024770.2513----
2.439024780.1199----
2.440024790.1829----
2.440924800.2527----
2.441924810.2036----
2.442924820.4078----
2.443924830.2764----
2.444924840.4487----
2.445924850.6344----
2.446924860.1742----
2.447824870.5259----
2.448824880.6818----
2.449824890.7824----
2.450824900.0713----
2.451824910.2966----
2.452824920.7014----
2.453724930.1383----
2.454724940.1846----
2.455724950.4537----
2.456724960.2155----
2.457724970.4813----
2.458724980.6803----
2.459624990.0744----
2.460625000.451----
2.461625010.4568----
2.462625020.1182----
2.463625030.3563----
2.464625040.2821----
2.465625050.1239----
2.466525060.5076----
2.467525070.2629----
2.468525080.362----
2.469525090.1892----
2.470525100.2334----
2.471525110.1624----
2.472425120.2166----
2.473425130.2771----
2.474425140.4421----
2.475425150.4224----
2.476425160.5839----
2.477425170.2874----
2.478325180.3557----
2.479325190.3501----
2.480325200.2368----
2.481325210.5408----
2.482325220.2134----
2.483325230.9646----
2.484325240.7589----
2.485225250.2106----
2.486225260.2096----
2.487225270.4391----
2.488225280.2735----
2.489225290.4712----
2.490225300.2503----
2.491125310.4035----
2.492125320.4989----
2.493125330.4082----
2.494125340.297----
2.495125350.178----
2.496125360.3749----
2.497025370.2872----
2.498025380.1993----
2.499025390.4424----
2.525400.4321----
2.501025410.2728----
2.502025420.1387----
2.503025431.0402----
2.503925440.4153----
2.504925450.4845----
2.505925460.4674----
2.506925470.2211----
2.507925480.3532----
2.508925490.2734----
2.509825500.3015----
2.510825510.0508----
2.511825520.5125----
2.512825530.0729----
2.513825540.376----
2.514825550.2335----
2.515725560.2233----
2.516725570.257----
2.517725580.6108----
2.518725590.0648----
2.519725600.3249----
2.520725610.3661----
2.521725620.1489----
2.522625630.1006----
2.523625640.205----
2.524625650.132----
2.525625660.4317----
2.526625670.4741----
2.527625680.3413----
2.528525690.7061----
2.529525700.3047----
2.530525710.79----
2.531525720.4705----
2.532525730.0915----
2.533525740.4268----
2.534425750.3548----
2.535425760.2926----
2.536425770.4319----
2.537425780.293----
2.538425790.4523----
2.539425800.3576----
2.540425810.3131----
2.541325820.1289----
2.542325830.2224----
2.543325840.2187----
2.544325850.1808----
2.545325860.5719----
2.546325870.3357----
2.547225880.4923----
2.548225890.7231----
2.549225900.5006----
2.550225910.6329----
2.551225920.23----
2.552225930.158----
2.553125940.1245----
2.554125950.2352----
2.555125960.6465----
2.556125970.3682----
2.557125980.2663----
2.558125990.2182----
2.559126000.2484----
2.560026010.19320.49170.66880.52300.6985
2.561026020.0946----
2.562026030.3778----
2.563026040.1033----
2.564026050.4318----
2.565026060.2179----
2.565926070.0971----
2.566926080.4726----
2.567926090.3389----
2.568926100.1408----
2.569926110.0972----
2.570926120.1531----
2.571926130.1374----
2.572826140.2092----
2.573826150.1692----
2.574826160.412----
2.575826170.0756----
2.576826180.8034----
2.577826190.8405----
2.578726200.2442----
2.579726210.3537----
2.580726220.4989----
2.581726230.4902----
2.582726240.8908----
2.583726250.1239----
2.584626260.4208----
2.585626270.3947----
2.586626280.4709----
2.587626290.452----
2.588626300.1296----
2.589626310.3835----
2.590626320.3944----
2.591526330.7798----
2.592526340.381----
2.593526350.5957----
2.594526360.0761----
2.595526370.1285----
2.596526380.395----
2.597426390.8514----
2.598426400.2844----
2.599426410.236----
2.600426420.3958----
2.601426430.4496----
2.602426440.6127----
2.603326450.2044----
2.604326460.1861----
2.605326470.1584----
2.606326480.3345----
2.607326490.2336----
2.608326500.2932----
2.609326510.2814----
2.610226520.4036----
2.611226530.3042----
2.612226540.42----
2.613226550.2876----
2.614226560.3322----
2.615226570.3078----
2.616126580.3052----
2.617126590.6088----
2.618126600.2831----
2.619126610.5751----
2.620126620.0988----
2.621126630.1851----
2.622026640.3453----
2.623026650.441----
2.624026660.0953----
2.62526670.1422----
2.626026680.1243----
2.627026690.32----
2.628026700.2588----
2.628926710.4652----
2.629926720.4017----
2.630926730.1883----
2.631926740.3345----
2.632926750.162----
2.633926760.3113----
2.634826770.6358----
2.635826780.397----
2.636826790.454----
2.637826800.1772----
2.638826810.0152----
2.639826820.142----
2.640726830.4372----
2.641726840.4235----
2.642726850.1866----
2.643726860.0524----
2.644726870.1163----
2.645726880.1485----
2.646726890.1149----
2.647626900.3884----
2.648626910.172----
2.649626920.4707----
2.650626930.3776----
2.651626940.309----
2.652626950.7073----
2.653526960.0827----
2.654526970.3375----
2.655526980.2815----
2.656526990.41----
2.657527000.1364----
2.658527010.4235----
2.659427020.4157----
2.660427031.088----
2.661427040.2303----
2.662427050.2966----
2.663427060.4843----
2.664427070.2855----
2.665427080.2591----
2.666327090.467----
2.667327100.139----
2.668327110.3564----
2.669327120.141----
2.670327130.1698----
2.671327140.3223----
2.672227150.4376----
2.673227160.1578----
2.674227170.2388----
2.675227180.211----
2.676227190.2561----
2.677227200.0494----
2.678127210.589----
2.679127220.5799----
2.680127230.2218----
2.681127240.3222----
2.682127250.7828----
2.683127260.3504----
2.684127270.333----
2.685027280.6705----
2.686027290.2021----
2.687027300.7059----
2.688027310.0523----
2.689027320.3013----
2.690027330.249----
2.690927340.4251----
2.691927351.0586----
2.692927360.4656----
2.693927370.1227----
2.694927380.1047----
2.695927390.4664----
2.696927400.4104----
2.697827410.4076----
2.698827420.2715----
2.699827430.167----
2.700827440.2799----
2.701827450.1801----
2.702827460.2727----
2.703727470.1934----
2.704727480.4175----
2.705727490.5095----
2.706727500.4747----
2.707727510.2593----
2.708727520.508----
2.709627530.1706----
2.710627540.3720.48860.67350.52400.6999
2.711627550.1012----
2.712627560.1855----
2.713627570.1423----
2.714627580.2128----
2.715627590.1641----
2.716527600.2113----
2.717527610.5309----
2.718527620.1855----
2.719527630.353----
2.720527640.3805----
2.721527650.4292----
2.722427660.2547----
2.723427670.3077----
2.724427680.6004----
2.725427690.116----
2.726427700.1424----
2.727427710.2555----
2.728327720.3408----
2.729327730.117----
2.730327740.1352----
2.731327750.1671----
2.732327760.2096----
2.733327770.1569----
2.734327781.3244----
2.735227790.3514----
2.736227800.607----
2.737227810.2289----
2.738227820.2472----
2.739227830.9307----
2.740227840.336----
2.741127850.5573----
2.742127860.2472----
2.743127870.2082----
2.744127880.2614----
2.745127890.6271----
2.746127900.2748----
2.747027910.3488----
2.748027920.052----
2.749027930.3308----
2.7527940.2661----
2.751027950.2692----
2.752027960.1316----
2.753027970.3616----
2.753927980.1442----
2.754927990.3065----
2.755928000.5695----
2.756928010.0946----
2.757928020.2218----
2.758928030.3658----
2.759828040.2364----
2.760828050.2508----
2.761828060.3074----
2.762828070.1118----
2.763828080.4156----
2.764828090.1576----
2.765728100.3728----
2.766728110.2044----
2.767728120.3115----
2.768728130.1254----
2.769728140.3651----
2.770728150.2305----
2.771728160.1259----
2.772628170.3865----
2.773628180.5593----
2.774628190.216----
2.775628200.2696----
2.776628210.3779----
2.777628220.2451----
2.778528230.4448----
2.779528240.045----
2.780528250.3465----
2.781528260.1853----
2.782528270.1103----
2.783528280.277----
2.784428290.1521----
2.785428300.2653----
2.786428310.4891----
2.787428320.4052----
2.788428330.4734----
2.789428340.3711----
2.790428350.3721----
2.791328360.2153----
2.792328370.3035----
2.793328380.413----
2.794328390.3275----
2.795328400.45----
2.796328410.8403----
2.797228420.2697----
2.798228430.1558----
2.799228440.2919----
2.800228450.2728----
2.801228460.6732----
2.802228470.1906----
2.803128480.0684----
2.804128490.1759----
2.805128500.4616----
2.806128510.1753----
2.807128520.0538----
2.808128530.2727----
2.809128540.6287----
2.810028550.2557----
2.811028560.2785----
2.812028570.1492----
2.813028580.141----
2.814028590.2445----
2.815028600.1115----
2.815928610.3406----
2.816928620.5149----
2.817928630.2799----
2.818928640.3185----
2.819928650.1001----
2.820928660.0394----
2.821928670.1332----
2.822828680.4512----
2.823828690.6693----
2.824828700.239----
2.825828710.2037----
2.826828720.304----
2.827828730.2295----
2.828728740.5068----
2.829728750.4523----
2.830728760.2962----
2.831728770.5274----
2.832728780.6032----
2.833728790.5692----
2.834628800.1158----
2.835628810.1685----
2.836628820.4206----
2.837628830.198----
2.838628840.3901----
2.839628850.2684----
2.840628860.1488----
2.841528870.0959----
2.842528880.5298----
2.843528890.2391----
2.844528900.239----
2.845528910.1347----
2.846528920.5638----
2.847428930.7352----
2.848428940.2605----
2.849428950.549----
2.850428960.4349----
2.851428970.2525----
2.852428980.1922----
2.853328990.5798----
2.854329000.3186----
2.855329010.2008----
2.856329021.1413----
2.857329030.7863----
2.858329040.1799----
2.859329050.3595----
2.860229060.3704----
2.861229070.75920.48880.67400.52470.7022
2.862229080.3438----
2.863229090.3004----
2.864229100.0605----
2.865229110.2806----
2.866129120.5737----
2.867129130.3122----
2.868129140.6209----
2.869129150.3461----
2.870129160.2759----
2.871129170.2877----
2.872029181.5252----
2.873029190.3598----
2.874029200.2988----
2.87529210.1411----
2.876029220.2136----
2.877029230.2058----
2.878029240.4305----
2.878929250.5253----
2.879929260.3112----
2.880929270.6982----
2.881929280.3565----
2.882929290.2734----
2.883929300.1425----
2.884829310.7445----
2.885829320.4615----
2.886829330.1666----
2.887829340.5224----
2.888829350.0262----
2.889829360.6386----
2.890729370.2209----
2.891729380.2289----
2.892729390.4258----
2.893729400.4327----
2.894729410.6541----
2.895729420.2661----
2.896729430.4912----
2.897629440.1441----
2.898629450.2309----
2.899629460.3028----
2.900629470.1203----
2.901629480.6289----
2.902629490.3618----
2.903529500.2684----
2.904529510.1371----
2.905529520.6694----
2.906529530.2216----
2.907529540.1103----
2.908529550.2106----
2.909429560.4114----
2.910429570.166----
2.911429580.0788----
2.912429590.2894----
2.913429600.2845----
2.914429610.2357----
2.915429620.3342----
2.916329630.3945----
2.917329640.2308----
2.918329650.4013----
2.919329660.3327----
2.920329670.4024----
2.921329680.1838----
2.922229690.3868----
2.923229700.4597----
2.924229710.2572----
2.925229720.4641----
2.926229730.0732----
2.927229740.9887----
2.928129750.2109----
2.929129760.1698----
2.930129770.4012----
2.931129780.1757----
2.932129790.3168----
2.933129800.1128----
2.934129810.1795----
2.935029820.3252----
2.936029830.037----
2.937029840.3334----
2.938029850.3173----
2.939029860.151----
2.940029870.3881----
2.940929880.1861----
2.941929890.2437----
2.942929900.4226----
2.943929910.5198----
2.944929920.3833----
2.945929930.253----
2.946929940.3421----
2.947829950.05----
2.948829960.7686----
2.949829970.1071----
2.950829980.3382----
2.951829990.2211----
2.952830000.389----
2.953730010.1802----
2.954730020.295----
2.955730030.2534----
2.956730040.8536----
2.957730050.5325----
2.958730060.376----
2.959630070.1309----
2.960630080.3147----
2.961630090.1782----
2.962630100.4162----
2.963630110.3284----
2.964630120.1792----
2.965630130.1753----
2.966530140.5557----
2.967530150.183----
2.968530160.1412----
2.969530170.4037----
2.970530180.6259----
2.971530190.2387----
2.972430200.458----
2.973430210.2202----
2.974430220.1132----
2.975430230.1922----
2.976430240.3622----
2.977430250.3681----
2.978330260.1704----
2.979330270.2572----
2.980330280.2254----
2.981330290.5572----
2.982330300.691----
2.983330310.3----
2.984330320.3137----
2.985230330.4111----
2.986230340.4421----
2.987230350.1184----
2.988230360.2347----
2.989230370.4659----
2.990230380.391----
2.991130390.3805----
2.992130400.1296----
2.993130410.055----
2.994130420.3864----
2.995130430.2506----
2.996130440.1876----
2.997030450.3416----
2.998030460.5668----
2.999030470.0809----
3.030480.0768----

</details>

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 3.2.1
  • Transformers: 4.44.2
  • PyTorch: 2.5.0+cu121
  • Accelerate: 0.34.2
  • Datasets: 3.0.2
  • Tokenizers: 0.19.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",
}
GISTEmbedLoss
bibtex
@misc{solatorio2024gistembed,
    title={GISTEmbed: Guided In-sample Selection of Training Negatives for Text Embedding Fine-tuning},
    author={Aivin V. Solatorio},
    year={2024},
    eprint={2402.16829},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}

<!--

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. -->