LikelySurf
commited on
Commit
•
f408ca2
1
Parent(s):
f34e078
End of training
Browse files- README.md +60 -0
- added_tokens.json +3 -0
- config.json +39 -0
- generation_config.json +6 -0
- merges.txt +2744 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +9 -0
- tokenizer.json +0 -0
- tokenizer_config.json +22 -0
- training_args.bin +3 -0
- vocab.json +1 -0
README.md
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
base_model: gpt2
|
4 |
+
tags:
|
5 |
+
- generated_from_trainer
|
6 |
+
model-index:
|
7 |
+
- name: FreeLabSeminar_MammoLLM_Jangbi
|
8 |
+
results: []
|
9 |
+
---
|
10 |
+
|
11 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
12 |
+
should probably proofread and complete it, then remove this comment. -->
|
13 |
+
|
14 |
+
# FreeLabSeminar_MammoLLM_Jangbi
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) on the None dataset.
|
17 |
+
It achieves the following results on the evaluation set:
|
18 |
+
- Loss: 5.1718
|
19 |
+
|
20 |
+
## Model description
|
21 |
+
|
22 |
+
More information needed
|
23 |
+
|
24 |
+
## Intended uses & limitations
|
25 |
+
|
26 |
+
More information needed
|
27 |
+
|
28 |
+
## Training and evaluation data
|
29 |
+
|
30 |
+
More information needed
|
31 |
+
|
32 |
+
## Training procedure
|
33 |
+
|
34 |
+
### Training hyperparameters
|
35 |
+
|
36 |
+
The following hyperparameters were used during training:
|
37 |
+
- learning_rate: 0.0005
|
38 |
+
- train_batch_size: 192
|
39 |
+
- eval_batch_size: 192
|
40 |
+
- seed: 42
|
41 |
+
- gradient_accumulation_steps: 4
|
42 |
+
- total_train_batch_size: 768
|
43 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
44 |
+
- lr_scheduler_type: cosine
|
45 |
+
- lr_scheduler_warmup_steps: 5
|
46 |
+
- num_epochs: 1
|
47 |
+
|
48 |
+
### Training results
|
49 |
+
|
50 |
+
| Training Loss | Epoch | Step | Validation Loss |
|
51 |
+
|:-------------:|:-----:|:----:|:---------------:|
|
52 |
+
| 6.7012 | 0.74 | 5 | 5.1718 |
|
53 |
+
|
54 |
+
|
55 |
+
### Framework versions
|
56 |
+
|
57 |
+
- Transformers 4.34.0
|
58 |
+
- Pytorch 1.13.1
|
59 |
+
- Datasets 2.14.5
|
60 |
+
- Tokenizers 0.14.1
|
added_tokens.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|endoftext|>": 0
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "gpt2",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"GPT2LMHeadModel"
|
6 |
+
],
|
7 |
+
"attn_pdrop": 0.1,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"embd_pdrop": 0.1,
|
10 |
+
"eos_token_id": 0,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"layer_norm_epsilon": 1e-05,
|
13 |
+
"model_type": "gpt2",
|
14 |
+
"n_ctx": 28,
|
15 |
+
"n_embd": 768,
|
16 |
+
"n_head": 12,
|
17 |
+
"n_inner": null,
|
18 |
+
"n_layer": 12,
|
19 |
+
"n_positions": 1024,
|
20 |
+
"reorder_and_upcast_attn": false,
|
21 |
+
"resid_pdrop": 0.1,
|
22 |
+
"scale_attn_by_inverse_layer_idx": false,
|
23 |
+
"scale_attn_weights": true,
|
24 |
+
"summary_activation": null,
|
25 |
+
"summary_first_dropout": 0.1,
|
26 |
+
"summary_proj_to_labels": true,
|
27 |
+
"summary_type": "cls_index",
|
28 |
+
"summary_use_proj": true,
|
29 |
+
"task_specific_params": {
|
30 |
+
"text-generation": {
|
31 |
+
"do_sample": true,
|
32 |
+
"max_length": 50
|
33 |
+
}
|
34 |
+
},
|
35 |
+
"torch_dtype": "float32",
|
36 |
+
"transformers_version": "4.34.0",
|
37 |
+
"use_cache": true,
|
38 |
+
"vocab_size": 3000
|
39 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 0,
|
5 |
+
"transformers_version": "4.34.0"
|
6 |
+
}
|
merges.txt
ADDED
@@ -0,0 +1,2744 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#version: 0.2
|
2 |
+
c a
|
3 |
+
m a
|
4 |
+
r e
|
5 |
+
t i
|
6 |
+
ca l
|
7 |
+
Ġ ma
|
8 |
+
Ġ a
|
9 |
+
Ġ i
|
10 |
+
e n
|
11 |
+
s e
|
12 |
+
o cal
|
13 |
+
f i
|
14 |
+
Ġ o
|
15 |
+
o n
|
16 |
+
t e
|
17 |
+
G r
|
18 |
+
c i
|
19 |
+
ti on
|
20 |
+
Ġ M
|
21 |
+
A t
|
22 |
+
ci fi
|
23 |
+
ca tion
|
24 |
+
cifi cation
|
25 |
+
n d
|
26 |
+
Ġi n
|
27 |
+
u s
|
28 |
+
d e
|
29 |
+
re d
|
30 |
+
Ġma m
|
31 |
+
te red
|
32 |
+
a de
|
33 |
+
ĠM G
|
34 |
+
cification s
|
35 |
+
Ġ c
|
36 |
+
i c
|
37 |
+
g r
|
38 |
+
Ġ m
|
39 |
+
Ġma s
|
40 |
+
r y
|
41 |
+
Ġ b
|
42 |
+
h e
|
43 |
+
Ġ p
|
44 |
+
n c
|
45 |
+
ic r
|
46 |
+
Ġ f
|
47 |
+
icr ocal
|
48 |
+
Ġm icrocal
|
49 |
+
Ġa nd
|
50 |
+
s i
|
51 |
+
h y
|
52 |
+
N o
|
53 |
+
Ġmicrocal cifications
|
54 |
+
Ġ n
|
55 |
+
ti v
|
56 |
+
se s
|
57 |
+
Ġmas ses
|
58 |
+
Ġo r
|
59 |
+
a re
|
60 |
+
l us
|
61 |
+
Ġ d
|
62 |
+
lus tered
|
63 |
+
gr ade
|
64 |
+
Ġa re
|
65 |
+
Ġc lustered
|
66 |
+
Ġf ocal
|
67 |
+
are nc
|
68 |
+
arenc hy
|
69 |
+
Ġp arenchy
|
70 |
+
Ġi s
|
71 |
+
l a
|
72 |
+
e g
|
73 |
+
T he
|
74 |
+
tiv e
|
75 |
+
ma ry
|
76 |
+
Ġparenchy ma
|
77 |
+
eg a
|
78 |
+
ega tive
|
79 |
+
Ġ Gr
|
80 |
+
Ġmam mary
|
81 |
+
m o
|
82 |
+
Ġd en
|
83 |
+
Ġ 3
|
84 |
+
l e
|
85 |
+
Ġ s
|
86 |
+
Ġn egative
|
87 |
+
) .
|
88 |
+
Ġo f
|
89 |
+
Ġ cal
|
90 |
+
r o
|
91 |
+
l y
|
92 |
+
Ġ C
|
93 |
+
s t
|
94 |
+
Ġden se
|
95 |
+
t y
|
96 |
+
v i
|
97 |
+
re a
|
98 |
+
Ġ vi
|
99 |
+
b le
|
100 |
+
rea st
|
101 |
+
si ble
|
102 |
+
Ġvi sible
|
103 |
+
la r
|
104 |
+
o us
|
105 |
+
Ġ L
|
106 |
+
Ġb reast
|
107 |
+
g n
|
108 |
+
Ġ se
|
109 |
+
u lar
|
110 |
+
t h
|
111 |
+
Ġ R
|
112 |
+
ro g
|
113 |
+
Ġse en
|
114 |
+
m e
|
115 |
+
ca t
|
116 |
+
cat tered
|
117 |
+
e r
|
118 |
+
N C
|
119 |
+
Ġmam mo
|
120 |
+
Ġs cattered
|
121 |
+
ous ly
|
122 |
+
en e
|
123 |
+
Ġ 2
|
124 |
+
Ġ (
|
125 |
+
ene ously
|
126 |
+
en i
|
127 |
+
Ġ fi
|
128 |
+
eni gn
|
129 |
+
Ġ 4
|
130 |
+
la nd
|
131 |
+
land ular
|
132 |
+
Ġfi b
|
133 |
+
o mo
|
134 |
+
Ġfib rog
|
135 |
+
Ġfibrog landular
|
136 |
+
a t
|
137 |
+
h omo
|
138 |
+
homo g
|
139 |
+
homog eneously
|
140 |
+
Ġin homogeneously
|
141 |
+
o th
|
142 |
+
M G
|
143 |
+
Gr ade
|
144 |
+
Ġb oth
|
145 |
+
Ġb enign
|
146 |
+
Ġcal cifications
|
147 |
+
ĠM MG
|
148 |
+
Ġden si
|
149 |
+
s y
|
150 |
+
Ġdensi ty
|
151 |
+
Ġ l
|
152 |
+
sy m
|
153 |
+
sym me
|
154 |
+
ĠR t
|
155 |
+
symme t
|
156 |
+
ĠL t
|
157 |
+
Ġ NC
|
158 |
+
symmet ry
|
159 |
+
Ġn o
|
160 |
+
U O
|
161 |
+
u p
|
162 |
+
Ġ grade
|
163 |
+
t he
|
164 |
+
i n
|
165 |
+
Ġcal cification
|
166 |
+
Ġmas s
|
167 |
+
Ġa symmetry
|
168 |
+
Ġ 1
|
169 |
+
p er
|
170 |
+
Ġ the
|
171 |
+
- >
|
172 |
+
Ġl o
|
173 |
+
up per
|
174 |
+
a l
|
175 |
+
Ġ upper
|
176 |
+
Ġno d
|
177 |
+
Ġf at
|
178 |
+
Ġbreast s
|
179 |
+
te r
|
180 |
+
Ġfat ty
|
181 |
+
Ġlo w
|
182 |
+
Ġlow er
|
183 |
+
Ġ r
|
184 |
+
Ġ -
|
185 |
+
Ġ le
|
186 |
+
ma l
|
187 |
+
s c
|
188 |
+
e d
|
189 |
+
u le
|
190 |
+
Ġ e
|
191 |
+
h i
|
192 |
+
a p
|
193 |
+
ĠR UO
|
194 |
+
ĠGr ade
|
195 |
+
Ġnod ule
|
196 |
+
Ġma y
|
197 |
+
w i
|
198 |
+
en si
|
199 |
+
ĠL UO
|
200 |
+
Ġmammo gr
|
201 |
+
ap hy
|
202 |
+
t a
|
203 |
+
i ty
|
204 |
+
Ġmammogr aphy
|
205 |
+
Ġo u
|
206 |
+
tiv ity
|
207 |
+
Ġs ensi
|
208 |
+
Ġsensi tivity
|
209 |
+
Ġou ter
|
210 |
+
a n
|
211 |
+
s s
|
212 |
+
in g
|
213 |
+
hi s
|
214 |
+
Ġcal c
|
215 |
+
Ġe x
|
216 |
+
T his
|
217 |
+
g e
|
218 |
+
Ġex t
|
219 |
+
o u
|
220 |
+
ta te
|
221 |
+
Ġ gr
|
222 |
+
sc u
|
223 |
+
b scu
|
224 |
+
Ġo bscu
|
225 |
+
u nc
|
226 |
+
c m
|
227 |
+
unc tate
|
228 |
+
Ġobscu re
|
229 |
+
mal l
|
230 |
+
N egative
|
231 |
+
Ġ B
|
232 |
+
me ly
|
233 |
+
re mely
|
234 |
+
Ġext remely
|
235 |
+
Ġp unctate
|
236 |
+
Ġc h
|
237 |
+
Ġ si
|
238 |
+
Ġs mall
|
239 |
+
Ġs u
|
240 |
+
g h
|
241 |
+
Ġr t
|
242 |
+
an ge
|
243 |
+
Ġch ange
|
244 |
+
Ġl t
|
245 |
+
ro u
|
246 |
+
wi th
|
247 |
+
rou nd
|
248 |
+
Ġ with
|
249 |
+
te rog
|
250 |
+
en t
|
251 |
+
Ġ &
|
252 |
+
gn i
|
253 |
+
o r
|
254 |
+
Ġ- ->
|
255 |
+
n er
|
256 |
+
si on
|
257 |
+
Ġin ner
|
258 |
+
Ġ2 0
|
259 |
+
terog eneously
|
260 |
+
nc e
|
261 |
+
Ġ ti
|
262 |
+
n egative
|
263 |
+
Ġa l
|
264 |
+
Ġd i
|
265 |
+
Ġsi nce
|
266 |
+
U I
|
267 |
+
Ġle sion
|
268 |
+
Ġma gni
|
269 |
+
f t
|
270 |
+
Ġa t
|
271 |
+
B enign
|
272 |
+
u e
|
273 |
+
Ġp ro
|
274 |
+
Ġo n
|
275 |
+
Ġle ft
|
276 |
+
Ġmicrocal cification
|
277 |
+
H e
|
278 |
+
w h
|
279 |
+
Ġti ss
|
280 |
+
Ġtiss ue
|
281 |
+
Ġ S
|
282 |
+
e w
|
283 |
+
m in
|
284 |
+
o up
|
285 |
+
p h
|
286 |
+
oup ed
|
287 |
+
Ġ ->
|
288 |
+
He terogeneously
|
289 |
+
v al
|
290 |
+
l d
|
291 |
+
Ġnod ular
|
292 |
+
Ġc o
|
293 |
+
i gh
|
294 |
+
o me
|
295 |
+
igh t
|
296 |
+
A symmetry
|
297 |
+
- ->
|
298 |
+
a r
|
299 |
+
Ġ re
|
300 |
+
Ġs ome
|
301 |
+
Ġlower s
|
302 |
+
r ph
|
303 |
+
Ġ G
|
304 |
+
ou ld
|
305 |
+
Ġc ould
|
306 |
+
ĠS A
|
307 |
+
f f
|
308 |
+
u se
|
309 |
+
Ġ round
|
310 |
+
ff use
|
311 |
+
te d
|
312 |
+
Ġ de
|
313 |
+
wh at
|
314 |
+
Ġsu r
|
315 |
+
Ġsome what
|
316 |
+
round ing
|
317 |
+
i l
|
318 |
+
Ġsur rounding
|
319 |
+
min ent
|
320 |
+
ou gh
|
321 |
+
th ough
|
322 |
+
Ġal though
|
323 |
+
Ġgr ouped
|
324 |
+
Ġpro minent
|
325 |
+
r c
|
326 |
+
k ing
|
327 |
+
Ġ20 0
|
328 |
+
the r
|
329 |
+
Ġ D
|
330 |
+
Ġr ight
|
331 |
+
p le
|
332 |
+
Ġa x
|
333 |
+
u l
|
334 |
+
o king
|
335 |
+
Ġ ì
|
336 |
+
il la
|
337 |
+
Ġ en
|
338 |
+
ĠL UI
|
339 |
+
d en
|
340 |
+
Ġax illa
|
341 |
+
ĠL N
|
342 |
+
Ġsu b
|
343 |
+
m p
|
344 |
+
i on
|
345 |
+
ĠM a
|
346 |
+
I I
|
347 |
+
wi se
|
348 |
+
Ġdi ffuse
|
349 |
+
Ġ20 1
|
350 |
+
ther wise
|
351 |
+
Ġo val
|
352 |
+
Ġ t
|
353 |
+
Ġ ,
|
354 |
+
Ġ he
|
355 |
+
ul ti
|
356 |
+
r i
|
357 |
+
Ġa mo
|
358 |
+
Ġ nc
|
359 |
+
Ġa b
|
360 |
+
ion al
|
361 |
+
Ġco mp
|
362 |
+
rph ous
|
363 |
+
Ġ 0
|
364 |
+
L O
|
365 |
+
L I
|
366 |
+
ulti ple
|
367 |
+
Ġcal cifi
|
368 |
+
Ġmicrocal c
|
369 |
+
n or
|
370 |
+
nor mal
|
371 |
+
ĠR UI
|
372 |
+
se d
|
373 |
+
Ġab normal
|
374 |
+
Ġamo rphous
|
375 |
+
mo st
|
376 |
+
Ġen ti
|
377 |
+
Ġenti re
|
378 |
+
Ġ Negative
|
379 |
+
u m
|
380 |
+
are o
|
381 |
+
r al
|
382 |
+
rea sed
|
383 |
+
Ġparenchy me
|
384 |
+
Ġre g
|
385 |
+
Ġdi st
|
386 |
+
l o
|
387 |
+
c t
|
388 |
+
O therwise
|
389 |
+
ci rc
|
390 |
+
Ġentire ly
|
391 |
+
areo lar
|
392 |
+
e ss
|
393 |
+
Ġreg ional
|
394 |
+
Ġvi ew
|
395 |
+
ri b
|
396 |
+
r a
|
397 |
+
Ġ No
|
398 |
+
Ġlo oking
|
399 |
+
Ġnodule s
|
400 |
+
Ġ Ċ
|
401 |
+
Ġal most
|
402 |
+
e s
|
403 |
+
ì Ŀ
|
404 |
+
la ted
|
405 |
+
den se
|
406 |
+
c reased
|
407 |
+
) ,
|
408 |
+
v er
|
409 |
+
Ġm i
|
410 |
+
re g
|
411 |
+
b enign
|
412 |
+
r ic
|
413 |
+
Ġ N
|
414 |
+
o si
|
415 |
+
Ġ Heterogeneously
|
416 |
+
osi tion
|
417 |
+
Ġsub areolar
|
418 |
+
fi n
|
419 |
+
Ġdist or
|
420 |
+
Ġare a
|
421 |
+
symmet ric
|
422 |
+
Ġ ë
|
423 |
+
a red
|
424 |
+
ver al
|
425 |
+
t ra
|
426 |
+
ar se
|
427 |
+
r reg
|
428 |
+
Ġ1 2
|
429 |
+
rreg ular
|
430 |
+
Ġ circ
|
431 |
+
Ġcomp osition
|
432 |
+
re vi
|
433 |
+
n g
|
434 |
+
Ġ F
|
435 |
+
Ġt o
|
436 |
+
Ġhe terogeneously
|
437 |
+
rib ed
|
438 |
+
n o
|
439 |
+
fi cation
|
440 |
+
Ġm ultiple
|
441 |
+
m mo
|
442 |
+
Ġis o
|
443 |
+
um sc
|
444 |
+
umsc ribed
|
445 |
+
a in
|
446 |
+
p i
|
447 |
+
e c
|
448 |
+
Ġco arse
|
449 |
+
B reast
|
450 |
+
ct u
|
451 |
+
u lated
|
452 |
+
y st
|
453 |
+
hi te
|
454 |
+
Ġmi d
|
455 |
+
Ġp le
|
456 |
+
hite ctu
|
457 |
+
s x
|
458 |
+
ĠG II
|
459 |
+
b a
|
460 |
+
p ic
|
461 |
+
Ġc en
|
462 |
+
m ent
|
463 |
+
ĠMa mmo
|
464 |
+
ĠL LI
|
465 |
+
Ġple omo
|
466 |
+
rph ic
|
467 |
+
A sx
|
468 |
+
ain t
|
469 |
+
Ġcirc umscribed
|
470 |
+
Ġcen ter
|
471 |
+
m mary
|
472 |
+
Ġp o
|
473 |
+
hitectu ral
|
474 |
+
pic ulated
|
475 |
+
ti es
|
476 |
+
h r
|
477 |
+
Ġi rregular
|
478 |
+
Ġcalcifi ed
|
479 |
+
ma mmary
|
480 |
+
Ġde fin
|
481 |
+
Ġ th
|
482 |
+
Ġ T
|
483 |
+
Ġpleomo rphic
|
484 |
+
lo oking
|
485 |
+
Ġa rc
|
486 |
+
Ġiso dense
|
487 |
+
Ġin ter
|
488 |
+
tra mammary
|
489 |
+
Ġsi z
|
490 |
+
Ġle ss
|
491 |
+
F ocal
|
492 |
+
h o
|
493 |
+
pi ci
|
494 |
+
p e
|
495 |
+
us pici
|
496 |
+
Ġ A
|
497 |
+
Ġf aint
|
498 |
+
Ġc yst
|
499 |
+
Ġp revi
|
500 |
+
w o
|
501 |
+
í ķ
|
502 |
+
Ġmagni fication
|
503 |
+
n y
|
504 |
+
Ġarc hitectural
|
505 |
+
ment al
|
506 |
+
ĠGII I
|
507 |
+
Ġ g
|
508 |
+
L ess
|
509 |
+
Ġti ny
|
510 |
+
Ġs piculated
|
511 |
+
Ġf ew
|
512 |
+
uspici ous
|
513 |
+
Ġ hy
|
514 |
+
ĠMa gni
|
515 |
+
ĠB enign
|
516 |
+
k in
|
517 |
+
l l
|
518 |
+
Ġpro ba
|
519 |
+
Ġe vi
|
520 |
+
Ġfi nd
|
521 |
+
o re
|
522 |
+
Ġfind ing
|
523 |
+
Ġinter val
|
524 |
+
O n
|
525 |
+
c e
|
526 |
+
u al
|
527 |
+
i s
|
528 |
+
. )
|
529 |
+
. (
|
530 |
+
ĠR LI
|
531 |
+
Ġhe terog
|
532 |
+
Ċ Ċ
|
533 |
+
Ġin tramammary
|
534 |
+
Ġ Otherwise
|
535 |
+
Ġdensi ties
|
536 |
+
Ġ v
|
537 |
+
k e
|
538 |
+
Ġ .
|
539 |
+
Ġ This
|
540 |
+
i ffuse
|
541 |
+
i ke
|
542 |
+
u n
|
543 |
+
wh ic
|
544 |
+
whic h
|
545 |
+
ì Ĺ
|
546 |
+
g mental
|
547 |
+
u t
|
548 |
+
m ma
|
549 |
+
Ġse veral
|
550 |
+
ho ic
|
551 |
+
sc ular
|
552 |
+
ou t
|
553 |
+
a scular
|
554 |
+
icrocal cifications
|
555 |
+
ĠLN s
|
556 |
+
Ġs kin
|
557 |
+
b reast
|
558 |
+
p a
|
559 |
+
Ġ- -
|
560 |
+
b ly
|
561 |
+
Ġdistor sion
|
562 |
+
r k
|
563 |
+
ĠG R
|
564 |
+
ĠL LO
|
565 |
+
mma tion
|
566 |
+
n e
|
567 |
+
Ġsu mmation
|
568 |
+
L t
|
569 |
+
g ed
|
570 |
+
Ġse gmental
|
571 |
+
Ġdefin i
|
572 |
+
den ce
|
573 |
+
ĠR LO
|
574 |
+
Ġevi dence
|
575 |
+
Ġs uspicious
|
576 |
+
Ġb i
|
577 |
+
Ġ which
|
578 |
+
Ġno ted
|
579 |
+
Ġext ent
|
580 |
+
Ġprevi ous
|
581 |
+
lar ged
|
582 |
+
p o
|
583 |
+
Ġa symmetric
|
584 |
+
Ġcal ci
|
585 |
+
i t
|
586 |
+
Ġb ut
|
587 |
+
d ual
|
588 |
+
Ġcomp ared
|
589 |
+
si dual
|
590 |
+
an t
|
591 |
+
R t
|
592 |
+
ent ral
|
593 |
+
Ġ- -->
|
594 |
+
Ġc entral
|
595 |
+
Ġl ike
|
596 |
+
ê °
|
597 |
+
Ġin creased
|
598 |
+
The re
|
599 |
+
Ġdistor tion
|
600 |
+
Ġv ascular
|
601 |
+
ene ous
|
602 |
+
t le
|
603 |
+
la ter
|
604 |
+
later al
|
605 |
+
f ocal
|
606 |
+
Ġf ar
|
607 |
+
ec hoic
|
608 |
+
A symmetric
|
609 |
+
Ġ 9
|
610 |
+
Ġaxilla e
|
611 |
+
e p
|
612 |
+
o ma
|
613 |
+
1 2
|
614 |
+
1 0
|
615 |
+
i p
|
616 |
+
S cattered
|
617 |
+
ìĹ IJ
|
618 |
+
eni ng
|
619 |
+
Ġheterog eneous
|
620 |
+
pa ci
|
621 |
+
ca n
|
622 |
+
Ġo paci
|
623 |
+
Ġre sidual
|
624 |
+
M icrocalcifications
|
625 |
+
Ġproba bly
|
626 |
+
o ry
|
627 |
+
c c
|
628 |
+
it on
|
629 |
+
a ble
|
630 |
+
pe ared
|
631 |
+
or tion
|
632 |
+
e ar
|
633 |
+
Ġ 6
|
634 |
+
min ant
|
635 |
+
C lustered
|
636 |
+
Ġsiz e
|
637 |
+
´ ì
|
638 |
+
Ġhy po
|
639 |
+
d ular
|
640 |
+
ca iton
|
641 |
+
a symmetry
|
642 |
+
Ġdefini te
|
643 |
+
Ġde creased
|
644 |
+
Ġde ep
|
645 |
+
Ġp ortion
|
646 |
+
Ġm ore
|
647 |
+
ĠL U
|
648 |
+
ĠT omo
|
649 |
+
gni fi
|
650 |
+
D iffuse
|
651 |
+
can t
|
652 |
+
ip ple
|
653 |
+
gnifi cant
|
654 |
+
Ġ200 4
|
655 |
+
ë ĭ
|
656 |
+
Ġcyst s
|
657 |
+
Ġsi gnificant
|
658 |
+
ti ng
|
659 |
+
ter i
|
660 |
+
l u
|
661 |
+
Ġt wo
|
662 |
+
red o
|
663 |
+
Ġen larged
|
664 |
+
minant ly
|
665 |
+
redo minantly
|
666 |
+
Ġhypo echoic
|
667 |
+
Ġsub tle
|
668 |
+
Ġn ipple
|
669 |
+
Ġparenchyma l
|
670 |
+
2 0
|
671 |
+
o ss
|
672 |
+
ì Ħ
|
673 |
+
ĠM LO
|
674 |
+
Ġp redominantly
|
675 |
+
Ġ w
|
676 |
+
o p
|
677 |
+
cc ess
|
678 |
+
ìĿ Į
|
679 |
+
Ġë ³
|
680 |
+
Ġno t
|
681 |
+
oss ly
|
682 |
+
M T
|
683 |
+
Ġpo s
|
684 |
+
Ġfi ne
|
685 |
+
Ġ200 8
|
686 |
+
Ġlike ly
|
687 |
+
teri or
|
688 |
+
Ġs h
|
689 |
+
l ight
|
690 |
+
ma rk
|
691 |
+
ccess ory
|
692 |
+
Ġarea s
|
693 |
+
1 1
|
694 |
+
o therwise
|
695 |
+
e ll
|
696 |
+
lar ge
|
697 |
+
c or
|
698 |
+
. ,
|
699 |
+
Ġopaci ty
|
700 |
+
M ultiple
|
701 |
+
ap peared
|
702 |
+
light ly
|
703 |
+
ë Ĭ
|
704 |
+
v o
|
705 |
+
. .
|
706 |
+
Ġsiz ed
|
707 |
+
ĠR U
|
708 |
+
A T
|
709 |
+
v e
|
710 |
+
Ģ ì
|
711 |
+
. -->
|
712 |
+
Ġmam m
|
713 |
+
mark able
|
714 |
+
Ġ1 0
|
715 |
+
Ġwith out
|
716 |
+
c tion
|
717 |
+
ê ²
|
718 |
+
e veral
|
719 |
+
in ear
|
720 |
+
r mal
|
721 |
+
Ġ200 9
|
722 |
+
Ġdiffuse ly
|
723 |
+
a tion
|
724 |
+
ĠC C
|
725 |
+
Ġg landular
|
726 |
+
ĠT S
|
727 |
+
cor n
|
728 |
+
Ġpos terior
|
729 |
+
Ġ UO
|
730 |
+
si ty
|
731 |
+
ĠF C
|
732 |
+
Ġth is
|
733 |
+
Ġmicrocal ci
|
734 |
+
ic k
|
735 |
+
¡ ľ
|
736 |
+
in sity
|
737 |
+
Ġde insity
|
738 |
+
d y
|
739 |
+
m m
|
740 |
+
Ġ O
|
741 |
+
symmet ri
|
742 |
+
Ġdi s
|
743 |
+
Ġth ick
|
744 |
+
d ule
|
745 |
+
ê° Ģ
|
746 |
+
Ġcalcifi caiton
|
747 |
+
lo b
|
748 |
+
Ġdist rib
|
749 |
+
Ġ P
|
750 |
+
Ġbi lateral
|
751 |
+
T wo
|
752 |
+
in ing
|
753 |
+
Ġdistrib u
|
754 |
+
en ously
|
755 |
+
Ġb x
|
756 |
+
He terog
|
757 |
+
a d
|
758 |
+
p corn
|
759 |
+
ĠB x
|
760 |
+
ĠF A
|
761 |
+
ëĬ Ķ
|
762 |
+
ê ³
|
763 |
+
Ġ :
|
764 |
+
Ġthick ening
|
765 |
+
íķ ĺ
|
766 |
+
Gr ouped
|
767 |
+
Ġaxilla ry
|
768 |
+
Ġn ew
|
769 |
+
¼ ë
|
770 |
+
Ġp re
|
771 |
+
d ensi
|
772 |
+
Ġmicrocal cifi
|
773 |
+
Ġbi op
|
774 |
+
Ġa n
|
775 |
+
Ġpo pcorn
|
776 |
+
densi ty
|
777 |
+
eg ional
|
778 |
+
cifi ed
|
779 |
+
Ġì Ŀ
|
780 |
+
Ġw ell
|
781 |
+
Ġl inear
|
782 |
+
Ġhy per
|
783 |
+
ti c
|
784 |
+
Ġp er
|
785 |
+
Ġno rmal
|
786 |
+
Ġ1 1
|
787 |
+
c lustered
|
788 |
+
ĠUO Q
|
789 |
+
Ġ201 0
|
790 |
+
ìĿ ´
|
791 |
+
ë IJ
|
792 |
+
Ġ '
|
793 |
+
Ġa symmetri
|
794 |
+
g ge
|
795 |
+
i gn
|
796 |
+
Ġgr an
|
797 |
+
3 2
|
798 |
+
Ġn eg
|
799 |
+
N ew
|
800 |
+
Ġdefin ed
|
801 |
+
lob al
|
802 |
+
S everal
|
803 |
+
Ġ 5
|
804 |
+
Ġc on
|
805 |
+
Ġgran ul
|
806 |
+
- -
|
807 |
+
i m
|
808 |
+
Ġ200 6
|
809 |
+
0 4
|
810 |
+
Ġ200 5
|
811 |
+
Ġ200 7
|
812 |
+
0 7
|
813 |
+
ì ľ
|
814 |
+
0 9
|
815 |
+
gge s
|
816 |
+
Heterog enously
|
817 |
+
ë ¶
|
818 |
+
Ġì ķ
|
819 |
+
Ġproba ble
|
820 |
+
Ġ í
|
821 |
+
de fin
|
822 |
+
Ġgranul oma
|
823 |
+
0 6
|
824 |
+
ĠM MT
|
825 |
+
Ġbiop sy
|
826 |
+
ĠFC C
|
827 |
+
M a
|
828 |
+
ĥ ģ
|
829 |
+
defin ed
|
830 |
+
Ġ large
|
831 |
+
t ry
|
832 |
+
ìĦ ľ
|
833 |
+
Ġhyper dense
|
834 |
+
0 5
|
835 |
+
u ct
|
836 |
+
Ġ I
|
837 |
+
Ġma rk
|
838 |
+
nc reased
|
839 |
+
circ le
|
840 |
+
te ry
|
841 |
+
F ew
|
842 |
+
Ġc or
|
843 |
+
p ro
|
844 |
+
Ġsu gges
|
845 |
+
Ġ201 2
|
846 |
+
Ġasymmetri es
|
847 |
+
0 8
|
848 |
+
ì §
|
849 |
+
e ft
|
850 |
+
No dular
|
851 |
+
ĠL ess
|
852 |
+
Ġ E
|
853 |
+
le ss
|
854 |
+
A l
|
855 |
+
f cation
|
856 |
+
Ġgranuloma s
|
857 |
+
Ġ Asymmetry
|
858 |
+
Al most
|
859 |
+
ëĭ ¤
|
860 |
+
t u
|
861 |
+
Ġ un
|
862 |
+
il k
|
863 |
+
Ġlo b
|
864 |
+
Ġsi te
|
865 |
+
Ġ200 3
|
866 |
+
s cattered
|
867 |
+
Ġt omo
|
868 |
+
Ġre ma
|
869 |
+
Ġa p
|
870 |
+
Ġc m
|
871 |
+
ta tion
|
872 |
+
Ġcor re
|
873 |
+
Ġou t
|
874 |
+
o w
|
875 |
+
ì ĭ
|
876 |
+
cal cified
|
877 |
+
p unctate
|
878 |
+
e creased
|
879 |
+
ta ining
|
880 |
+
Ġì ŀ
|
881 |
+
Ġ201 1
|
882 |
+
0 3
|
883 |
+
Ġmi ld
|
884 |
+
Ġprevi ously
|
885 |
+
Ġdis appeared
|
886 |
+
Ġpre s
|
887 |
+
Ġin c
|
888 |
+
Ġn on
|
889 |
+
Ħ ì
|
890 |
+
( -
|
891 |
+
Ġc lus
|
892 |
+
Ġd uct
|
893 |
+
Ġpo st
|
894 |
+
Ġpres ent
|
895 |
+
ĠF ocal
|
896 |
+
Ġ201 5
|
897 |
+
ĠO S
|
898 |
+
Ġ ca
|
899 |
+
Ġ201 4
|
900 |
+
Ġi ll
|
901 |
+
ìĹIJ ìĦľ
|
902 |
+
R egional
|
903 |
+
Ġ la
|
904 |
+
Ġcalcifi c
|
905 |
+
A D
|
906 |
+
Ġma r
|
907 |
+
Ġcalci um
|
908 |
+
v en
|
909 |
+
re markable
|
910 |
+
Ġsub A
|
911 |
+
Ġin vo
|
912 |
+
Ġì Ĺ
|
913 |
+
ĊĊ Ċ
|
914 |
+
ìľ ¼ë
|
915 |
+
ì Ļ
|
916 |
+
Ġe c
|
917 |
+
ad ow
|
918 |
+
Ġsh adow
|
919 |
+
i d
|
920 |
+
ł Ħ
|
921 |
+
Ġ201 6
|
922 |
+
Ġ >
|
923 |
+
revi ously
|
924 |
+
pi cal
|
925 |
+
Ġun remarkable
|
926 |
+
Ma ss
|
927 |
+
d ing
|
928 |
+
o st
|
929 |
+
ë ³
|
930 |
+
Ġs lightly
|
931 |
+
ë¶ Ģ
|
932 |
+
u b
|
933 |
+
Ī ìĿĮ
|
934 |
+
Ġa sym
|
935 |
+
en ous
|
936 |
+
A ccessory
|
937 |
+
ro m
|
938 |
+
Ġa symme
|
939 |
+
Ġcalcificaiton s
|
940 |
+
Ġ 8
|
941 |
+
ulti focal
|
942 |
+
Ġdistribu ted
|
943 |
+
Ī ëĭ¤
|
944 |
+
No dule
|
945 |
+
in ed
|
946 |
+
Ġ201 3
|
947 |
+
Ġper i
|
948 |
+
ìĿ ´ì
|
949 |
+
Ġgr ossly
|
950 |
+
d n
|
951 |
+
o mp
|
952 |
+
Ġclus ter
|
953 |
+
um b
|
954 |
+
Ġm ilk
|
955 |
+
ĠLU C
|
956 |
+
Ġcon taining
|
957 |
+
r t
|
958 |
+
Ġo s
|
959 |
+
umb er
|
960 |
+
Ġf rom
|
961 |
+
Ġn umber
|
962 |
+
Ġìķ Ĭ
|
963 |
+
Ġb o
|
964 |
+
ê³ ł
|
965 |
+
Ġr im
|
966 |
+
Ġg lobal
|
967 |
+
b oth
|
968 |
+
Ġ 7
|
969 |
+
ty pical
|
970 |
+
Ġs tu
|
971 |
+
a ted
|
972 |
+
Ġsh ap
|
973 |
+
Ġperi areolar
|
974 |
+
ore ign
|
975 |
+
ĠL eft
|
976 |
+
Ġb rea
|
977 |
+
Ġasym m
|
978 |
+
p rea
|
979 |
+
0 1
|
980 |
+
í Ļ
|
981 |
+
ìĿ ĺ
|
982 |
+
D ecreased
|
983 |
+
Ġ201 9
|
984 |
+
Ġheterog enous
|
985 |
+
Ġsugges ting
|
986 |
+
ë ¡ľ
|
987 |
+
I rregular
|
988 |
+
Ġre tra
|
989 |
+
Ġdefini tive
|
990 |
+
ëĭ Īëĭ¤
|
991 |
+
I ncreased
|
992 |
+
Ġcalc s
|
993 |
+
ph ic
|
994 |
+
Ġth an
|
995 |
+
Ġstu dy
|
996 |
+
Ġm icr
|
997 |
+
Ĥ ¬
|
998 |
+
Ġn e
|
999 |
+
Ġre markable
|
1000 |
+
u c
|
1001 |
+
ĠM g
|
1002 |
+
lu ting
|
1003 |
+
Ġbo dy
|
1004 |
+
ĠMa g
|
1005 |
+
ì§ Ģ
|
1006 |
+
Ġinc lu
|
1007 |
+
prea d
|
1008 |
+
ou nd
|
1009 |
+
is appeared
|
1010 |
+
0 2
|
1011 |
+
2 2
|
1012 |
+
ì ĥģ
|
1013 |
+
Ġ201 7
|
1014 |
+
Ġmark ed
|
1015 |
+
Ġretra ction
|
1016 |
+
Ġmicr o
|
1017 |
+
i lateral
|
1018 |
+
ì ł
|
1019 |
+
re e
|
1020 |
+
a c
|
1021 |
+
d iffuse
|
1022 |
+
Ġa ccessory
|
1023 |
+
yst ro
|
1024 |
+
S mall
|
1025 |
+
a m
|
1026 |
+
Ġ hi
|
1027 |
+
ma ss
|
1028 |
+
no tation
|
1029 |
+
n larged
|
1030 |
+
Ġ ê
|
1031 |
+
j ec
|
1032 |
+
lo p
|
1033 |
+
Ġë ¹
|
1034 |
+
ystro phic
|
1035 |
+
íķ ľ
|
1036 |
+
a nd
|
1037 |
+
Ġg un
|
1038 |
+
jec tion
|
1039 |
+
Ġf oreign
|
1040 |
+
Ġpro ven
|
1041 |
+
un t
|
1042 |
+
Ġë³ ´
|
1043 |
+
ve lop
|
1044 |
+
m ph
|
1045 |
+
s tic
|
1046 |
+
M MT
|
1047 |
+
m ultiple
|
1048 |
+
Ġ typical
|
1049 |
+
Ġon e
|
1050 |
+
íķ ¨
|
1051 |
+
Ġan notation
|
1052 |
+
ìĭ ľ
|
1053 |
+
. ->
|
1054 |
+
P unctate
|
1055 |
+
b out
|
1056 |
+
me try
|
1057 |
+
Ġ ly
|
1058 |
+
ba bly
|
1059 |
+
Ġmicrocalcifi caiton
|
1060 |
+
Ġinvo luting
|
1061 |
+
¸ ë¶Ģ
|
1062 |
+
ì ĺ
|
1063 |
+
Ġab out
|
1064 |
+
Gr ossly
|
1065 |
+
Ġly mph
|
1066 |
+
C AD
|
1067 |
+
ì Ľ
|
1068 |
+
Ġcorre lated
|
1069 |
+
g in
|
1070 |
+
Ġf or
|
1071 |
+
Ġcirc le
|
1072 |
+
no dular
|
1073 |
+
Ġlesion s
|
1074 |
+
ìĿ Ģ
|
1075 |
+
ec e
|
1076 |
+
Ġevi dn
|
1077 |
+
vo id
|
1078 |
+
Ġë¹ Ħ
|
1079 |
+
Ġevidn ece
|
1080 |
+
Ġa r
|
1081 |
+
Ġamo unt
|
1082 |
+
Ġrema ined
|
1083 |
+
Ġd ystrophic
|
1084 |
+
(- )
|
1085 |
+
t al
|
1086 |
+
ì ĸ
|
1087 |
+
Ġ ê²
|
1088 |
+
Ġin jection
|
1089 |
+
in ly
|
1090 |
+
S lightly
|
1091 |
+
a den
|
1092 |
+
en se
|
1093 |
+
Ġdistribu tion
|
1094 |
+
2 3
|
1095 |
+
I n
|
1096 |
+
ë °
|
1097 |
+
ëIJ ĺ
|
1098 |
+
l ike
|
1099 |
+
ê µ
|
1100 |
+
nd is
|
1101 |
+
ĠS cattered
|
1102 |
+
ndis ti
|
1103 |
+
N c
|
1104 |
+
Ġi ma
|
1105 |
+
Ġd ue
|
1106 |
+
Ġfib ro
|
1107 |
+
Ġ201 8
|
1108 |
+
Ġopaci ties
|
1109 |
+
o arse
|
1110 |
+
se veral
|
1111 |
+
Ġno de
|
1112 |
+
l t
|
1113 |
+
ĠìĹ Ĩ
|
1114 |
+
Ġm e
|
1115 |
+
E nlarged
|
1116 |
+
ì ŀ
|
1117 |
+
no ther
|
1118 |
+
New ly
|
1119 |
+
Ġo void
|
1120 |
+
Ġm ultifocal
|
1121 |
+
Ġì Ļ
|
1122 |
+
Ġec hoic
|
1123 |
+
Ġinclu ding
|
1124 |
+
ndisti nc
|
1125 |
+
Ġa s
|
1126 |
+
Ġobscu red
|
1127 |
+
ation s
|
1128 |
+
O val
|
1129 |
+
ub tle
|
1130 |
+
íĻ Ķ
|
1131 |
+
ndistinc t
|
1132 |
+
Ġn ega
|
1133 |
+
al pa
|
1134 |
+
B ilateral
|
1135 |
+
s mall
|
1136 |
+
Ĥ ĺ
|
1137 |
+
ĠGr ouped
|
1138 |
+
C al
|
1139 |
+
Ġb e
|
1140 |
+
si s
|
1141 |
+
Ġì ĸ
|
1142 |
+
2 1
|
1143 |
+
aden oma
|
1144 |
+
l in
|
1145 |
+
Ġm ost
|
1146 |
+
alpa ble
|
1147 |
+
c omp
|
1148 |
+
Ġp un
|
1149 |
+
mo rphous
|
1150 |
+
large ment
|
1151 |
+
êµ IJ
|
1152 |
+
si nce
|
1153 |
+
ìĦ ±
|
1154 |
+
ĠìĿ ´ì
|
1155 |
+
Ġë¹Ħ êµIJ
|
1156 |
+
P ro
|
1157 |
+
c re
|
1158 |
+
¶ Ķ
|
1159 |
+
Ġa sy
|
1160 |
+
Ġen largement
|
1161 |
+
ĠRU C
|
1162 |
+
Ģì Ĥ¬
|
1163 |
+
Ġasymme tery
|
1164 |
+
Ġ x
|
1165 |
+
revi ous
|
1166 |
+
Ġo ther
|
1167 |
+
ëIJ ¨
|
1168 |
+
c tive
|
1169 |
+
n al
|
1170 |
+
ou ter
|
1171 |
+
f a
|
1172 |
+
rea ctive
|
1173 |
+
ĠB UO
|
1174 |
+
Ġap peared
|
1175 |
+
Ġnon calcified
|
1176 |
+
p t
|
1177 |
+
ë ı
|
1178 |
+
ļ Ķ
|
1179 |
+
ìľ¼ë ¡ľ
|
1180 |
+
í Į
|
1181 |
+
ĠM ultiple
|
1182 |
+
ê³ ¼
|
1183 |
+
ë ł
|
1184 |
+
ì ķ
|
1185 |
+
Ġì ´
|
1186 |
+
Ġì ľ
|
1187 |
+
fication s
|
1188 |
+
ho w
|
1189 |
+
S A
|
1190 |
+
ë ª
|
1191 |
+
Ġp alpable
|
1192 |
+
no dule
|
1193 |
+
Ġmar gin
|
1194 |
+
Ġfibro adenoma
|
1195 |
+
M ore
|
1196 |
+
q u
|
1197 |
+
Ġcalcifi ca
|
1198 |
+
ma t
|
1199 |
+
ti fa
|
1200 |
+
si de
|
1201 |
+
Ġs how
|
1202 |
+
ìĻ Ģ
|
1203 |
+
Ġshap ed
|
1204 |
+
cre ening
|
1205 |
+
P reviously
|
1206 |
+
Ĩ Į
|
1207 |
+
Ġi ndistinct
|
1208 |
+
ro w
|
1209 |
+
D ense
|
1210 |
+
Ġcalci fcation
|
1211 |
+
g ing
|
1212 |
+
Ġma inly
|
1213 |
+
ĠL T
|
1214 |
+
íĮ Į
|
1215 |
+
tifa ct
|
1216 |
+
R e
|
1217 |
+
Ġla st
|
1218 |
+
at ter
|
1219 |
+
atter n
|
1220 |
+
D isappeared
|
1221 |
+
Ġp ar
|
1222 |
+
Ġs pread
|
1223 |
+
ĠC lustered
|
1224 |
+
st s
|
1225 |
+
ìĽ IJ
|
1226 |
+
n i
|
1227 |
+
Ġ reactive
|
1228 |
+
Ġin tra
|
1229 |
+
ĪìĿĮ íĮĮ
|
1230 |
+
ĠìķĬ ìĿĮ
|
1231 |
+
B oth
|
1232 |
+
S uspicious
|
1233 |
+
i z
|
1234 |
+
y stic
|
1235 |
+
Ġar tifact
|
1236 |
+
+ ,
|
1237 |
+
t s
|
1238 |
+
Ġp attern
|
1239 |
+
Ġsub areo
|
1240 |
+
m icrocal
|
1241 |
+
m icrocalcifications
|
1242 |
+
gr ouped
|
1243 |
+
he ll
|
1244 |
+
ĠD iffuse
|
1245 |
+
Ġë ¶
|
1246 |
+
Ġo therwise
|
1247 |
+
ar row
|
1248 |
+
Ġde velop
|
1249 |
+
f ter
|
1250 |
+
y er
|
1251 |
+
rea se
|
1252 |
+
Ġde te
|
1253 |
+
Ġap pe
|
1254 |
+
Ġla yer
|
1255 |
+
µ ëĭĪëĭ¤
|
1256 |
+
Ĭ µëĭĪëĭ¤
|
1257 |
+
No te
|
1258 |
+
ĠL I
|
1259 |
+
Ġ20 20
|
1260 |
+
Ġbrea s
|
1261 |
+
ma gni
|
1262 |
+
Ġinter nal
|
1263 |
+
o ci
|
1264 |
+
nc er
|
1265 |
+
Ġ ;
|
1266 |
+
eg mental
|
1267 |
+
ĠR egional
|
1268 |
+
Ġnew ly
|
1269 |
+
Ġne ed
|
1270 |
+
Ġpun tate
|
1271 |
+
o dense
|
1272 |
+
Ġmammogr am
|
1273 |
+
ë ħ
|
1274 |
+
Ġ íķ
|
1275 |
+
ce pt
|
1276 |
+
Ġë³ ´ì
|
1277 |
+
pro bably
|
1278 |
+
Ġasymm tery
|
1279 |
+
Ġmicrocalcificaiton s
|
1280 |
+
ë° ©
|
1281 |
+
lin e
|
1282 |
+
U ni
|
1283 |
+
Ġ ta
|
1284 |
+
ti fi
|
1285 |
+
eg g
|
1286 |
+
Ġiso echoic
|
1287 |
+
Ġdis per
|
1288 |
+
G R
|
1289 |
+
R ound
|
1290 |
+
d i
|
1291 |
+
r p
|
1292 |
+
Ġ H
|
1293 |
+
Ġa fter
|
1294 |
+
den tifi
|
1295 |
+
+ )
|
1296 |
+
reg ional
|
1297 |
+
Ġappe ar
|
1298 |
+
Ġn ear
|
1299 |
+
al ly
|
1300 |
+
ĠLUO Q
|
1301 |
+
Ġmicrocalci fcation
|
1302 |
+
Ġrema ining
|
1303 |
+
Ġca ncer
|
1304 |
+
Ġdisper sed
|
1305 |
+
l i
|
1306 |
+
ê ¸
|
1307 |
+
his m
|
1308 |
+
Ġlob ular
|
1309 |
+
Uni dentifi
|
1310 |
+
- -->
|
1311 |
+
1 9
|
1312 |
+
Ġ [
|
1313 |
+
Ġì ł
|
1314 |
+
Ġmar king
|
1315 |
+
Unidentifi able
|
1316 |
+
m on
|
1317 |
+
Ġìŀ Ī
|
1318 |
+
rp hism
|
1319 |
+
N L
|
1320 |
+
W NL
|
1321 |
+
o s
|
1322 |
+
¹ ĺ
|
1323 |
+
re o
|
1324 |
+
Ħì ļĶ
|
1325 |
+
Ġduct al
|
1326 |
+
ìĺ ģ
|
1327 |
+
Ġbreas sts
|
1328 |
+
r ocal
|
1329 |
+
Ġ h
|
1330 |
+
fi ci
|
1331 |
+
ty pe
|
1332 |
+
o val
|
1333 |
+
ĠNo dular
|
1334 |
+
ê° ľ
|
1335 |
+
g ory
|
1336 |
+
Ġreg ion
|
1337 |
+
ĠF N
|
1338 |
+
Ġ egg
|
1339 |
+
Ġc ystic
|
1340 |
+
ta c
|
1341 |
+
ba ble
|
1342 |
+
Ġappear ing
|
1343 |
+
R ight
|
1344 |
+
on o
|
1345 |
+
te reo
|
1346 |
+
te gory
|
1347 |
+
si a
|
1348 |
+
S creening
|
1349 |
+
h en
|
1350 |
+
Ġm m
|
1351 |
+
ĠRUO Q
|
1352 |
+
ĠS everal
|
1353 |
+
lo w
|
1354 |
+
it ve
|
1355 |
+
C oarse
|
1356 |
+
r ue
|
1357 |
+
ŀ Ħ
|
1358 |
+
re s
|
1359 |
+
in y
|
1360 |
+
Ġsub c
|
1361 |
+
Diffuse ly
|
1362 |
+
ad i
|
1363 |
+
ìĿ´ì łĦ
|
1364 |
+
ĠìĿ´ì łĦ
|
1365 |
+
qu i
|
1366 |
+
tac tic
|
1367 |
+
- '
|
1368 |
+
m metry
|
1369 |
+
Ģ íĻĶ
|
1370 |
+
ĠM icrocalcifications
|
1371 |
+
Ġp hen
|
1372 |
+
st ra
|
1373 |
+
Ġ( <
|
1374 |
+
Ġde mon
|
1375 |
+
Ġth ree
|
1376 |
+
íķĺ ì§Ģ
|
1377 |
+
Ġì´ ĪìĿĮíĮĮ
|
1378 |
+
ëħ Ħ
|
1379 |
+
Ġphen o
|
1380 |
+
Ġdemon stra
|
1381 |
+
n ew
|
1382 |
+
s ual
|
1383 |
+
s hell
|
1384 |
+
u la
|
1385 |
+
Ġ UI
|
1386 |
+
Ġgr oup
|
1387 |
+
Ġdi la
|
1388 |
+
Ġout side
|
1389 |
+
tereo tactic
|
1390 |
+
Ġpheno type
|
1391 |
+
1 7
|
1392 |
+
Ġb ening
|
1393 |
+
Ġs ono
|
1394 |
+
Ġë³ ĢíĻĶ
|
1395 |
+
ĠP unctate
|
1396 |
+
Ġima ging
|
1397 |
+
ĠìĹĨ ìĿĮ
|
1398 |
+
1 6
|
1399 |
+
S piculated
|
1400 |
+
Ġ lateral
|
1401 |
+
Ġp uc
|
1402 |
+
ĠR T
|
1403 |
+
ne ed
|
1404 |
+
ĠFC D
|
1405 |
+
Ġìĸ ij
|
1406 |
+
sual iz
|
1407 |
+
S egmental
|
1408 |
+
v ocal
|
1409 |
+
Ġ U
|
1410 |
+
Ġ rou
|
1411 |
+
ł ë°©
|
1412 |
+
Ġsubareo la
|
1413 |
+
qui vocal
|
1414 |
+
- ,
|
1415 |
+
L eft
|
1416 |
+
V ascular
|
1417 |
+
n the
|
1418 |
+
p revious
|
1419 |
+
ì ĬµëĭĪëĭ¤
|
1420 |
+
Ġ ê°Ģ
|
1421 |
+
Ġma l
|
1422 |
+
cation s
|
1423 |
+
Ġe de
|
1424 |
+
Ġì Ħ
|
1425 |
+
ê² ¬
|
1426 |
+
Ġhi de
|
1427 |
+
nthe sis
|
1428 |
+
1 8
|
1429 |
+
A bout
|
1430 |
+
R UO
|
1431 |
+
f ci
|
1432 |
+
© °
|
1433 |
+
¸ ¡
|
1434 |
+
ë į
|
1435 |
+
í ĸ
|
1436 |
+
Ġ II
|
1437 |
+
ĠM R
|
1438 |
+
vi ew
|
1439 |
+
Ġex cept
|
1440 |
+
ng le
|
1441 |
+
ĠìĻ ¸ë¶Ģ
|
1442 |
+
Ġpuc tate
|
1443 |
+
c on
|
1444 |
+
d le
|
1445 |
+
ë Ĥĺ
|
1446 |
+
Ġmam o
|
1447 |
+
ĠC a
|
1448 |
+
sy nthesis
|
1449 |
+
Ġcorre la
|
1450 |
+
ìĻ ¸ë¶Ģ
|
1451 |
+
Ġa cc
|
1452 |
+
te ro
|
1453 |
+
in tramammary
|
1454 |
+
Ġt rue
|
1455 |
+
ĠN c
|
1456 |
+
Ġpre v
|
1457 |
+
Ġë³´ ìĿ´
|
1458 |
+
Ġíķ ĦìļĶ
|
1459 |
+
) -->
|
1460 |
+
h ree
|
1461 |
+
t ro
|
1462 |
+
ij ë³
|
1463 |
+
Ġì ¶Ķ
|
1464 |
+
ĠP reviously
|
1465 |
+
1 4
|
1466 |
+
C C
|
1467 |
+
a s
|
1468 |
+
i ties
|
1469 |
+
u ation
|
1470 |
+
§ Ģ
|
1471 |
+
Ġ WNL
|
1472 |
+
Ġb ra
|
1473 |
+
in ner
|
1474 |
+
Ġr adi
|
1475 |
+
Ġe val
|
1476 |
+
Ġpleomo rphism
|
1477 |
+
Ģì ľ
|
1478 |
+
oci ated
|
1479 |
+
Ġmammogram s
|
1480 |
+
Ġmal ign
|
1481 |
+
B x
|
1482 |
+
ë §
|
1483 |
+
mo re
|
1484 |
+
Ġì ĥ
|
1485 |
+
ìĹ ¬
|
1486 |
+
Ġìŀ ĪìĿĮ
|
1487 |
+
Ġasy me
|
1488 |
+
1 5
|
1489 |
+
Ġa ss
|
1490 |
+
Ġp ain
|
1491 |
+
ĠB oth
|
1492 |
+
Ġpunctate d
|
1493 |
+
rc hitectural
|
1494 |
+
Ġì ĺ
|
1495 |
+
ìĿ ¸
|
1496 |
+
ip he
|
1497 |
+
Ġlob ule
|
1498 |
+
ëª ¨
|
1499 |
+
Ġdemonstra ble
|
1500 |
+
Ġdila tation
|
1501 |
+
Ġeval uation
|
1502 |
+
2 4
|
1503 |
+
a g
|
1504 |
+
Ġare o
|
1505 |
+
Ġdense ly
|
1506 |
+
ĠL O
|
1507 |
+
ê² ĢìĤ¬
|
1508 |
+
Ġmicrocalcifi ca
|
1509 |
+
ĠUI Q
|
1510 |
+
d v
|
1511 |
+
s uspicious
|
1512 |
+
fi i
|
1513 |
+
a gn
|
1514 |
+
a ction
|
1515 |
+
o f
|
1516 |
+
ì ¸¡
|
1517 |
+
Ġsi ngle
|
1518 |
+
Ġabnormal ities
|
1519 |
+
Ġper iphe
|
1520 |
+
Ġshap e
|
1521 |
+
Ġhi gh
|
1522 |
+
Ġnega itve
|
1523 |
+
m try
|
1524 |
+
° °
|
1525 |
+
í ļ
|
1526 |
+
Ġs up
|
1527 |
+
Ġs tate
|
1528 |
+
Ġì ĭ
|
1529 |
+
ìĿ Ħ
|
1530 |
+
ĠE R
|
1531 |
+
´ Ģì
|
1532 |
+
cal cifications
|
1533 |
+
ver ted
|
1534 |
+
Ġmid dle
|
1535 |
+
Ġass ociated
|
1536 |
+
1 3
|
1537 |
+
3 0
|
1538 |
+
> >
|
1539 |
+
s pe
|
1540 |
+
circ umscribed
|
1541 |
+
ìĿ´ì §Ģ
|
1542 |
+
ìł ķ
|
1543 |
+
Ġdevelop ed
|
1544 |
+
low er
|
1545 |
+
íļ Į
|
1546 |
+
u ta
|
1547 |
+
x t
|
1548 |
+
¡ °
|
1549 |
+
Ġ <
|
1550 |
+
Ŀ íļĮ
|
1551 |
+
Ġa d
|
1552 |
+
Ġë³ ijë³
|
1553 |
+
S ubtle
|
1554 |
+
ĠA dv
|
1555 |
+
Ġê ´Ģì
|
1556 |
+
A rchitectural
|
1557 |
+
F aint
|
1558 |
+
T hree
|
1559 |
+
i rregular
|
1560 |
+
s piculated
|
1561 |
+
ĠC AD
|
1562 |
+
Ġwith in
|
1563 |
+
ĠS mall
|
1564 |
+
ĠìĿ ĺ
|
1565 |
+
A morphous
|
1566 |
+
¦ Ŀ
|
1567 |
+
Ġma c
|
1568 |
+
ĠR O
|
1569 |
+
im i
|
1570 |
+
Ġë³´ ìĿ´ì§Ģ
|
1571 |
+
Ġdete ction
|
1572 |
+
ëį ĺ
|
1573 |
+
2 8
|
1574 |
+
A nother
|
1575 |
+
D ec
|
1576 |
+
M O
|
1577 |
+
u r
|
1578 |
+
¬ ìĺģ
|
1579 |
+
ëĬ ¥
|
1580 |
+
like ly
|
1581 |
+
Ġê´Ģì °°
|
1582 |
+
A n
|
1583 |
+
O ther
|
1584 |
+
S kin
|
1585 |
+
T iny
|
1586 |
+
b ec
|
1587 |
+
p ec
|
1588 |
+
de creased
|
1589 |
+
Ġ200 2
|
1590 |
+
Ġabnormal ity
|
1591 |
+
íķĺ ìŬ
|
1592 |
+
ĠI n
|
1593 |
+
Ġmark er
|
1594 |
+
ĨĮ 견
|
1595 |
+
Ġë³´ì ŀĦ
|
1596 |
+
C I
|
1597 |
+
t o
|
1598 |
+
ļ ľ
|
1599 |
+
se gmental
|
1600 |
+
Ġs tereotactic
|
1601 |
+
Ġ( #
|
1602 |
+
ĠD ecreased
|
1603 |
+
ri or
|
1604 |
+
pro ven
|
1605 |
+
Ġtomo synthesis
|
1606 |
+
ĠìĹ IJ
|
1607 |
+
Ġec ho
|
1608 |
+
comp ared
|
1609 |
+
ëł ·
|
1610 |
+
ê¸ °
|
1611 |
+
Ġareo lar
|
1612 |
+
imi ted
|
1613 |
+
ļľ ëł·
|
1614 |
+
G lobal
|
1615 |
+
Ġa round
|
1616 |
+
de d
|
1617 |
+
Ġs y
|
1618 |
+
ra bec
|
1619 |
+
no w
|
1620 |
+
uspici on
|
1621 |
+
Ġí Ļ
|
1622 |
+
Ġsugges tive
|
1623 |
+
omp ared
|
1624 |
+
Ġima ge
|
1625 |
+
Ġperiphe ry
|
1626 |
+
. -
|
1627 |
+
W ell
|
1628 |
+
Ġ ê°
|
1629 |
+
omo rphic
|
1630 |
+
Ġre tro
|
1631 |
+
Ġë ļľëł·
|
1632 |
+
pe ct
|
1633 |
+
Cal cifications
|
1634 |
+
ëı Ħ
|
1635 |
+
CI S
|
1636 |
+
3 1
|
1637 |
+
o le
|
1638 |
+
¸ ìĽIJ
|
1639 |
+
Ġs ca
|
1640 |
+
ĠC al
|
1641 |
+
Ġ20 21
|
1642 |
+
Ġabnormal ly
|
1643 |
+
Ġiso lated
|
1644 |
+
ìĭ ¬
|
1645 |
+
ìĸ ´
|
1646 |
+
Pro minent
|
1647 |
+
Ġsubc uta
|
1648 |
+
Ġasyme mtry
|
1649 |
+
+ +,
|
1650 |
+
0 0
|
1651 |
+
A S
|
1652 |
+
S l
|
1653 |
+
a ma
|
1654 |
+
i ncreased
|
1655 |
+
Ġa nother
|
1656 |
+
Ġp rior
|
1657 |
+
Ġs l
|
1658 |
+
me d
|
1659 |
+
Ġë §
|
1660 |
+
Ġarc hitectu
|
1661 |
+
ne ous
|
1662 |
+
Ġme tal
|
1663 |
+
Ġìĥ Ŀ
|
1664 |
+
rabec ular
|
1665 |
+
D i
|
1666 |
+
M MG
|
1667 |
+
a bout
|
1668 |
+
i ld
|
1669 |
+
q ual
|
1670 |
+
Ġinvo l
|
1671 |
+
rt oma
|
1672 |
+
In tramammary
|
1673 |
+
Ġegg shell
|
1674 |
+
ama rtoma
|
1675 |
+
f or
|
1676 |
+
l ic
|
1677 |
+
t ome
|
1678 |
+
Ġs mal
|
1679 |
+
at he
|
1680 |
+
Ġchange s
|
1681 |
+
ĠN ew
|
1682 |
+
ĠMagni fication
|
1683 |
+
ê° ģ
|
1684 |
+
Ġmicrocalci fci
|
1685 |
+
pro bable
|
1686 |
+
ĠLI Q
|
1687 |
+
Ġmac rocal
|
1688 |
+
2 7
|
1689 |
+
M icrocal
|
1690 |
+
o lu
|
1691 |
+
s pread
|
1692 |
+
ti ne
|
1693 |
+
le r
|
1694 |
+
Ġvi sualiz
|
1695 |
+
Ġë Ĭ
|
1696 |
+
íķ ´
|
1697 |
+
Ġlob ulated
|
1698 |
+
Ġê² ĥ
|
1699 |
+
Ġcalcifica ti
|
1700 |
+
res sion
|
1701 |
+
Ġacc hitectural
|
1702 |
+
fii cations
|
1703 |
+
2 9
|
1704 |
+
o bscu
|
1705 |
+
ë ¥
|
1706 |
+
Ġ ro
|
1707 |
+
ĠO val
|
1708 |
+
ìł ģ
|
1709 |
+
ìĸ ij
|
1710 |
+
Re sidual
|
1711 |
+
h ing
|
1712 |
+
j ac
|
1713 |
+
o ther
|
1714 |
+
ģ ìĥģ
|
1715 |
+
Ġm ic
|
1716 |
+
Ġs can
|
1717 |
+
ĠP ost
|
1718 |
+
Ġnode s
|
1719 |
+
comp osition
|
1720 |
+
Ġìĭ ľ
|
1721 |
+
jac ent
|
1722 |
+
D e
|
1723 |
+
L C
|
1724 |
+
a tive
|
1725 |
+
p la
|
1726 |
+
Ġo p
|
1727 |
+
ci ally
|
1728 |
+
gr ossly
|
1729 |
+
ĠR ight
|
1730 |
+
Ġl uc
|
1731 |
+
Ġë °
|
1732 |
+
ìĹ Ĩ
|
1733 |
+
Ġas pect
|
1734 |
+
ëĬ¥ ìĦ±
|
1735 |
+
o l
|
1736 |
+
x illa
|
1737 |
+
he d
|
1738 |
+
al l
|
1739 |
+
ĠD CIS
|
1740 |
+
Ġt rabecular
|
1741 |
+
Ġneg e
|
1742 |
+
ag tive
|
1743 |
+
. --
|
1744 |
+
G II
|
1745 |
+
O S
|
1746 |
+
p r
|
1747 |
+
v ascular
|
1748 |
+
ì ļ
|
1749 |
+
Į Ģ
|
1750 |
+
de r
|
1751 |
+
ta sia
|
1752 |
+
Ġre view
|
1753 |
+
Ġê² ĢìĤ¬
|
1754 |
+
ula ting
|
1755 |
+
ĠìĦ ĿíļĮ
|
1756 |
+
íĸ ī
|
1757 |
+
Ġad jacent
|
1758 |
+
Ġro d
|
1759 |
+
% )
|
1760 |
+
3 3
|
1761 |
+
C a
|
1762 |
+
C ompared
|
1763 |
+
M ultifocal
|
1764 |
+
R T
|
1765 |
+
S ep
|
1766 |
+
c ent
|
1767 |
+
h ic
|
1768 |
+
i rc
|
1769 |
+
o stic
|
1770 |
+
s kin
|
1771 |
+
t ric
|
1772 |
+
u g
|
1773 |
+
ì ¶Ķ
|
1774 |
+
). .
|
1775 |
+
Ġpro minant
|
1776 |
+
Ġ200 1
|
1777 |
+
ion s
|
1778 |
+
ĠF aint
|
1779 |
+
ĠA symmetric
|
1780 |
+
Ġw as
|
1781 |
+
(- ),
|
1782 |
+
Ġìĺ ģìĥģ
|
1783 |
+
Ġë³ijë³ Ģ
|
1784 |
+
Ġsubcuta neous
|
1785 |
+
Ġmicrocalcifci ations
|
1786 |
+
obscu re
|
1787 |
+
4 2
|
1788 |
+
a ccessory
|
1789 |
+
c hed
|
1790 |
+
t wo
|
1791 |
+
Ġo il
|
1792 |
+
Ġì ¦Ŀ
|
1793 |
+
Ġview s
|
1794 |
+
Ġë ª
|
1795 |
+
Ġmore likely
|
1796 |
+
ĠRU M
|
1797 |
+
Ġasymm try
|
1798 |
+
Ġmicro ca
|
1799 |
+
ac h
|
1800 |
+
Ġme ta
|
1801 |
+
Ġasy metry
|
1802 |
+
Ġìľ łë°©
|
1803 |
+
microcal cification
|
1804 |
+
agn ostic
|
1805 |
+
ĠìĥĿ ê°ģ
|
1806 |
+
ĠëĬ Ķ
|
1807 |
+
Ġluc ent
|
1808 |
+
Ġnege tive
|
1809 |
+
a nc
|
1810 |
+
c ted
|
1811 |
+
ì ¹ĺ
|
1812 |
+
Ľ Ħ
|
1813 |
+
nc hing
|
1814 |
+
ĠGr ossly
|
1815 |
+
Ġs us
|
1816 |
+
ë³ ´
|
1817 |
+
ìŀ Ħ
|
1818 |
+
Ġede ma
|
1819 |
+
2 5
|
1820 |
+
2 6
|
1821 |
+
C irc
|
1822 |
+
a morphous
|
1823 |
+
b x
|
1824 |
+
s ubtle
|
1825 |
+
± °
|
1826 |
+
¸ ë
|
1827 |
+
at hy
|
1828 |
+
Ġe ach
|
1829 |
+
Ġon ly
|
1830 |
+
Ġhe tero
|
1831 |
+
Ġë ĭ
|
1832 |
+
Ġg ade
|
1833 |
+
ë¶ Ħ
|
1834 |
+
ĠI D
|
1835 |
+
ìľ¼ë Ĥĺ
|
1836 |
+
Ġnear ly
|
1837 |
+
Ġrou tine
|
1838 |
+
Ġsup er
|
1839 |
+
now n
|
1840 |
+
E R
|
1841 |
+
L UO
|
1842 |
+
Ġc he
|
1843 |
+
ou r
|
1844 |
+
Ġne agtive
|
1845 |
+
Cal cified
|
1846 |
+
pec ted
|
1847 |
+
B T
|
1848 |
+
M LO
|
1849 |
+
S uspicion
|
1850 |
+
o b
|
1851 |
+
ĺ 모
|
1852 |
+
or der
|
1853 |
+
Ġdefinite ly
|
1854 |
+
ĠP ro
|
1855 |
+
Ġintra mmary
|
1856 |
+
anc y
|
1857 |
+
i mal
|
1858 |
+
s ti
|
1859 |
+
© ëĭĪëĭ¤
|
1860 |
+
ì ĨĮ
|
1861 |
+
vi ng
|
1862 |
+
ĠĊ Ċ
|
1863 |
+
es p
|
1864 |
+
is odense
|
1865 |
+
po t
|
1866 |
+
Ġw all
|
1867 |
+
Ġan terior
|
1868 |
+
Ġí ģ
|
1869 |
+
Ġë¹ĦêµIJ ìĭľ
|
1870 |
+
mat oma
|
1871 |
+
con taining
|
1872 |
+
Ġarchitectu re
|
1873 |
+
for m
|
1874 |
+
Microcal cification
|
1875 |
+
A sym
|
1876 |
+
I s
|
1877 |
+
p per
|
1878 |
+
Ġ )
|
1879 |
+
Ġ k
|
1880 |
+
ma mmo
|
1881 |
+
ĠM A
|
1882 |
+
ĠM M
|
1883 |
+
st a
|
1884 |
+
ut li
|
1885 |
+
Ġbiop si
|
1886 |
+
ìŀ IJ
|
1887 |
+
+ +
|
1888 |
+
A B
|
1889 |
+
Ġ V
|
1890 |
+
ti ll
|
1891 |
+
se r
|
1892 |
+
No t
|
1893 |
+
Ġthe m
|
1894 |
+
Ġe spe
|
1895 |
+
Ġe qual
|
1896 |
+
Ġdi lated
|
1897 |
+
Ġì ¢
|
1898 |
+
ĠLN E
|
1899 |
+
Ġcomp ression
|
1900 |
+
no t
|
1901 |
+
Ġheterog enously
|
1902 |
+
ĠI ncreased
|
1903 |
+
Ġduct s
|
1904 |
+
Ġbrea ts
|
1905 |
+
Ġmargin ated
|
1906 |
+
Ġ(< -
|
1907 |
+
Ġbra nching
|
1908 |
+
Ģìľ Ħ
|
1909 |
+
ë§ Į
|
1910 |
+
Ġsca r
|
1911 |
+
AS x
|
1912 |
+
Ġìĭľ íĸī
|
1913 |
+
order line
|
1914 |
+
Ġespe cially
|
1915 |
+
5 2
|
1916 |
+
i nc
|
1917 |
+
cal cification
|
1918 |
+
Ġs pot
|
1919 |
+
ro us
|
1920 |
+
ĠD BT
|
1921 |
+
Ġì ĥģ
|
1922 |
+
Ġpos sible
|
1923 |
+
Ġshow s
|
1924 |
+
ĠII I
|
1925 |
+
Ġinvol ving
|
1926 |
+
De velop
|
1927 |
+
Ġche st
|
1928 |
+
utli ple
|
1929 |
+
F CC
|
1930 |
+
L N
|
1931 |
+
e b
|
1932 |
+
o m
|
1933 |
+
r ge
|
1934 |
+
s u
|
1935 |
+
u me
|
1936 |
+
ë ¦
|
1937 |
+
ë ¬
|
1938 |
+
ë ©°
|
1939 |
+
se l
|
1940 |
+
Ġì °
|
1941 |
+
ĠT wo
|
1942 |
+
op ple
|
1943 |
+
ĠìĿ ´
|
1944 |
+
Ġpar ti
|
1945 |
+
ĠíĻ ķ
|
1946 |
+
Ġì¦Ŀ ê°Ģ
|
1947 |
+
f at
|
1948 |
+
k en
|
1949 |
+
s ome
|
1950 |
+
s ub
|
1951 |
+
t ly
|
1952 |
+
Ġ At
|
1953 |
+
Ī ĺ
|
1954 |
+
ci ng
|
1955 |
+
Ġin verted
|
1956 |
+
Ġf o
|
1957 |
+
Ġs till
|
1958 |
+
Ġde rmal
|
1959 |
+
ĠMa ss
|
1960 |
+
es sel
|
1961 |
+
symmetri es
|
1962 |
+
¼ë ¶
|
1963 |
+
Ġí ı
|
1964 |
+
Ġinc rease
|
1965 |
+
Ġ> >
|
1966 |
+
Ġdete cted
|
1967 |
+
Ġta ken
|
1968 |
+
Ġmicrocalcifcation s
|
1969 |
+
Ġmic or
|
1970 |
+
ĠìĦĿíļĮ íĻĶ
|
1971 |
+
Circ umscribed
|
1972 |
+
form ity
|
1973 |
+
opple r
|
1974 |
+
F eb
|
1975 |
+
J an
|
1976 |
+
M ar
|
1977 |
+
ì ´
|
1978 |
+
Ġ íķĺ
|
1979 |
+
Ġax il
|
1980 |
+
Ġì ¡°
|
1981 |
+
Ġì ĨĮ견
|
1982 |
+
Ġen h
|
1983 |
+
ê° Ħ
|
1984 |
+
Ġë³ ¸ìĽIJ
|
1985 |
+
uct al
|
1986 |
+
Ġinclu ded
|
1987 |
+
Ġh amartoma
|
1988 |
+
Ġê°Ģ ëĬ¥ìĦ±
|
1989 |
+
Ġcorrela tion
|
1990 |
+
Ġmalign ancy
|
1991 |
+
Ġmeta sta
|
1992 |
+
¼ë¶ Ģ
|
1993 |
+
q ue
|
1994 |
+
fi r
|
1995 |
+
de te
|
1996 |
+
Ġc la
|
1997 |
+
si st
|
1998 |
+
Ġs pic
|
1999 |
+
ĠR e
|
2000 |
+
ter val
|
2001 |
+
teri al
|
2002 |
+
cor re
|
2003 |
+
¼ë ¡ľ
|
2004 |
+
pro minent
|
2005 |
+
Ħì ¹ĺ
|
2006 |
+
new ly
|
2007 |
+
Ġgroup s
|
2008 |
+
ĠU pper
|
2009 |
+
ĠMR I
|
2010 |
+
Ġmicrocalcifica ti
|
2011 |
+
Ġretro mammary
|
2012 |
+
GII I
|
2013 |
+
Ġreview ed
|
2014 |
+
ì¶Ķ ê°Ģ
|
2015 |
+
Ġk nown
|
2016 |
+
Ġbiopsi ed
|
2017 |
+
sist ent
|
2018 |
+
, .
|
2019 |
+
e xt
|
2020 |
+
r ight
|
2021 |
+
s p
|
2022 |
+
v ed
|
2023 |
+
ë ĵ
|
2024 |
+
ij ľ
|
2025 |
+
ķ Į
|
2026 |
+
ĺ ìŀIJ
|
2027 |
+
ma inly
|
2028 |
+
ti ny
|
2029 |
+
cal ci
|
2030 |
+
Ġma g
|
2031 |
+
en tion
|
2032 |
+
ar ge
|
2033 |
+
Ġì Ĥ¬
|
2034 |
+
Ġamo rph
|
2035 |
+
ê² Į
|
2036 |
+
ìľ¼ë ©°
|
2037 |
+
ëª ħ
|
2038 |
+
fici al
|
2039 |
+
Ġmalign ant
|
2040 |
+
Di agnostic
|
2041 |
+
athe r
|
2042 |
+
Ġscan ty
|
2043 |
+
ĠMA M
|
2044 |
+
fir med
|
2045 |
+
9 9
|
2046 |
+
E quivocal
|
2047 |
+
a te
|
2048 |
+
b e
|
2049 |
+
m me
|
2050 |
+
Ġ wh
|
2051 |
+
cifi c
|
2052 |
+
he ter
|
2053 |
+
cat heter
|
2054 |
+
in imal
|
2055 |
+
ĠS l
|
2056 |
+
Ġfinding s
|
2057 |
+
Ġv essel
|
2058 |
+
ëł ¤
|
2059 |
+
Ġê´Ģì°° ëIJĺ
|
2060 |
+
ĠìĹIJ ìĦľ
|
2061 |
+
Ġëĭ ¤
|
2062 |
+
) ->
|
2063 |
+
P revious
|
2064 |
+
a sx
|
2065 |
+
b ro
|
2066 |
+
c l
|
2067 |
+
d isappeared
|
2068 |
+
g lobal
|
2069 |
+
u ge
|
2070 |
+
© ´
|
2071 |
+
gr aphy
|
2072 |
+
Ġm ed
|
2073 |
+
tive ly
|
2074 |
+
Ġex am
|
2075 |
+
Ġde formity
|
2076 |
+
Ġ0 3
|
2077 |
+
Ġcalcifi action
|
2078 |
+
um s
|
2079 |
+
ëIJ ľ
|
2080 |
+
Ma gni
|
2081 |
+
ì§ ģ
|
2082 |
+
ìĽ Ķ
|
2083 |
+
ĠìĿ´ì ĥģ
|
2084 |
+
Ġì´ ¬ìĺģ
|
2085 |
+
mat ous
|
2086 |
+
Ġta il
|
2087 |
+
ë¥ ¼
|
2088 |
+
dete ction
|
2089 |
+
ention ed
|
2090 |
+
Ġmed i
|
2091 |
+
I m
|
2092 |
+
N on
|
2093 |
+
a f
|
2094 |
+
a nce
|
2095 |
+
a symmetric
|
2096 |
+
i st
|
2097 |
+
Ġ ê³ł
|
2098 |
+
ij ìĽIJ
|
2099 |
+
Ġno w
|
2100 |
+
Ġhe matoma
|
2101 |
+
Ġìķ ½
|
2102 |
+
Ħì ŀ
|
2103 |
+
ëı Ļ
|
2104 |
+
Ġìľ Ħì¹ĺ
|
2105 |
+
Ġdevelop ing
|
2106 |
+
Ġìł ķ
|
2107 |
+
Ġì¶Ķ ìłķ
|
2108 |
+
Ġmetal lic
|
2109 |
+
olu cent
|
2110 |
+
Ġê²ĥ ìľ¼ë¡ľ
|
2111 |
+
Ġsuper ficial
|
2112 |
+
Is odense
|
2113 |
+
Ġparti ally
|
2114 |
+
af fin
|
2115 |
+
J ul
|
2116 |
+
L inear
|
2117 |
+
c le
|
2118 |
+
d uctal
|
2119 |
+
e ct
|
2120 |
+
s tion
|
2121 |
+
s lightly
|
2122 |
+
w ell
|
2123 |
+
Ġ up
|
2124 |
+
ca ted
|
2125 |
+
ci ty
|
2126 |
+
No v
|
2127 |
+
grade C
|
2128 |
+
Ġ( -
|
2129 |
+
Ġl i
|
2130 |
+
Ġnod ue
|
2131 |
+
Ġr ather
|
2132 |
+
Ġe quivocal
|
2133 |
+
ar i
|
2134 |
+
Ġcalcifi cat
|
2135 |
+
ìĿ ¼
|
2136 |
+
ĠF U
|
2137 |
+
ĠA x
|
2138 |
+
ìĹ Ī
|
2139 |
+
20 09
|
2140 |
+
Ġmicrocalcifi action
|
2141 |
+
tu re
|
2142 |
+
Ġasymme ty
|
2143 |
+
Ġcluster d
|
2144 |
+
ìķ Ħ
|
2145 |
+
Ġë¶ ĢìľĦ
|
2146 |
+
to tal
|
2147 |
+
Ġëļľëł· íķĺì§Ģ
|
2148 |
+
Ġsus pected
|
2149 |
+
Ġaxil lar
|
2150 |
+
ĠMAM MO
|
2151 |
+
A ug
|
2152 |
+
F A
|
2153 |
+
P ost
|
2154 |
+
a xilla
|
2155 |
+
f aint
|
2156 |
+
t r
|
2157 |
+
ma r
|
2158 |
+
ma tion
|
2159 |
+
Ġs mo
|
2160 |
+
Ġs cat
|
2161 |
+
ĠR ound
|
2162 |
+
ap hic
|
2163 |
+
tate d
|
2164 |
+
ri al
|
2165 |
+
Ġmicrocalc s
|
2166 |
+
Ġë Ĥ
|
2167 |
+
lob ulated
|
2168 |
+
ĠI rregular
|
2169 |
+
ìĿ´ì ĥģ
|
2170 |
+
Ġtypical ly
|
2171 |
+
ìĸ ´ì
|
2172 |
+
Ġnega t
|
2173 |
+
ë³´ ëĭ¤
|
2174 |
+
ume rous
|
2175 |
+
corre lated
|
2176 |
+
ijľ ìĭľ
|
2177 |
+
A pr
|
2178 |
+
N U
|
2179 |
+
c h
|
2180 |
+
c y
|
2181 |
+
i op
|
2182 |
+
m n
|
2183 |
+
r h
|
2184 |
+
u nd
|
2185 |
+
u mp
|
2186 |
+
ë ij
|
2187 |
+
Į Ģì
|
2188 |
+
Ġmam mmo
|
2189 |
+
Ġpro min
|
2190 |
+
ĠD oppler
|
2191 |
+
Ġmicrocalc fication
|
2192 |
+
Ġmicrocalc fiications
|
2193 |
+
mark ed
|
2194 |
+
íķĺ ìĺ
|
2195 |
+
Ġhyper pla
|
2196 |
+
Ġasymme ry
|
2197 |
+
ëIJĺ ìĸ´
|
2198 |
+
Pro bably
|
2199 |
+
Ġë³ĢíĻĶ ìĹĨ
|
2200 |
+
ĠCa tegory
|
2201 |
+
Ġsy mmetry
|
2202 |
+
Ġë§ ĺ모
|
2203 |
+
Ġwh ole
|
2204 |
+
NU H
|
2205 |
+
E xt
|
2206 |
+
L imited
|
2207 |
+
M R
|
2208 |
+
c la
|
2209 |
+
c rease
|
2210 |
+
i bro
|
2211 |
+
m i
|
2212 |
+
u re
|
2213 |
+
¯ ¸
|
2214 |
+
ca te
|
2215 |
+
ma ined
|
2216 |
+
re v
|
2217 |
+
Ġma terial
|
2218 |
+
Ġa den
|
2219 |
+
Gr c
|
2220 |
+
ĠMG ìĹIJìĦľ
|
2221 |
+
le omorphic
|
2222 |
+
Ġse rial
|
2223 |
+
in e
|
2224 |
+
ar c
|
2225 |
+
ĠD isappeared
|
2226 |
+
Ġ0 4
|
2227 |
+
Ġview ìĹIJìĦľ
|
2228 |
+
ĠNo dule
|
2229 |
+
Ġë ı
|
2230 |
+
Ġv e
|
2231 |
+
lu ding
|
2232 |
+
ĠO ther
|
2233 |
+
Heterog eneous
|
2234 |
+
ì§ Ħ
|
2235 |
+
ĠE nlarged
|
2236 |
+
Ġbrea t
|
2237 |
+
In terval
|
2238 |
+
ĠìĻ Ģ
|
2239 |
+
Ġede matous
|
2240 |
+
Ġradi olucent
|
2241 |
+
ĠLO Q
|
2242 |
+
ĠìĥĿê°ģ ëIJ¨
|
2243 |
+
��ID C
|
2244 |
+
Ġmedi al
|
2245 |
+
mn ant
|
2246 |
+
Ġhyperpla sia
|
2247 |
+
+ ),
|
2248 |
+
A P
|
2249 |
+
M ild
|
2250 |
+
c oarse
|
2251 |
+
d x
|
2252 |
+
f ew
|
2253 |
+
g ative
|
2254 |
+
i fcation
|
2255 |
+
m ly
|
2256 |
+
ë ©´
|
2257 |
+
re mly
|
2258 |
+
Ġin ser
|
2259 |
+
Ġm entioned
|
2260 |
+
Ġb en
|
2261 |
+
ly ing
|
2262 |
+
ĠL AP
|
2263 |
+
al r
|
2264 |
+
ter d
|
2265 |
+
min al
|
2266 |
+
Ġre lated
|
2267 |
+
Ġcalcifi ation
|
2268 |
+
íķ ©ëĭĪëĭ¤
|
2269 |
+
ear ly
|
2270 |
+
ction s
|
2271 |
+
Ġí ijľìĭľ
|
2272 |
+
ë³ ijìĽIJ
|
2273 |
+
íĻ ķ
|
2274 |
+
ë° ĺ
|
2275 |
+
Ġcalcifcation s
|
2276 |
+
fici ation
|
2277 |
+
Ġìĸij ìĦ±
|
2278 |
+
ĠìĿĺ ìĭ¬
|
2279 |
+
Ġvisualiz ation
|
2280 |
+
ĠV AB
|
2281 |
+
iop sy
|
2282 |
+
ëij IJ
|
2283 |
+
b ilateral
|
2284 |
+
g g
|
2285 |
+
r m
|
2286 |
+
Ġ qu
|
2287 |
+
Ġa y
|
2288 |
+
en larged
|
2289 |
+
on d
|
2290 |
+
Ġden s
|
2291 |
+
le ft
|
2292 |
+
ĠC oarse
|
2293 |
+
Ġde p
|
2294 |
+
Ġde line
|
2295 |
+
ĠD ense
|
2296 |
+
On e
|
2297 |
+
Ġv ari
|
2298 |
+
ve l
|
2299 |
+
Ġsugges ted
|
2300 |
+
Ġë¹ĦêµIJ íķĺìŬ
|
2301 |
+
mat ched
|
2302 |
+
Ġpar affin
|
2303 |
+
Ġcorrela ting
|
2304 |
+
Ġsmal ler
|
2305 |
+
inc luding
|
2306 |
+
ĠíĻķ ìĿ¸
|
2307 |
+
fat ty
|
2308 |
+
sub areolar
|
2309 |
+
ì¶Ķê°Ģ ê²ĢìĤ¬
|
2310 |
+
ump y
|
2311 |
+
4 3
|
2312 |
+
F at
|
2313 |
+
a ge
|
2314 |
+
b iopsy
|
2315 |
+
c tasia
|
2316 |
+
e x
|
2317 |
+
m ilk
|
2318 |
+
¬ íķ¨
|
2319 |
+
Ġ catheter
|
2320 |
+
Ġma t
|
2321 |
+
Ġa m
|
2322 |
+
vi sualiz
|
2323 |
+
Ġfi l
|
2324 |
+
Ġno r
|
2325 |
+
Ġext en
|
2326 |
+
Ġsi de
|
2327 |
+
Ġdi ff
|
2328 |
+
ĠS lightly
|
2329 |
+
ar t
|
2330 |
+
Ġre mnant
|
2331 |
+
ĠMa m
|
2332 |
+
osi s
|
2333 |
+
Ġë ¡ľ
|
2334 |
+
Ġcirc ums
|
2335 |
+
Ġple mo
|
2336 |
+
Ġcen tered
|
2337 |
+
íķ ł
|
2338 |
+
Ġv s
|
2339 |
+
ìľ ł
|
2340 |
+
ac tive
|
2341 |
+
diffuse ly
|
2342 |
+
ĠH G
|
2343 |
+
ĠPro bably
|
2344 |
+
su gges
|
2345 |
+
Ġsmo oth
|
2346 |
+
+ /
|
2347 |
+
a ry
|
2348 |
+
g en
|
2349 |
+
i la
|
2350 |
+
i or
|
2351 |
+
i fications
|
2352 |
+
u minal
|
2353 |
+
ì ¡°
|
2354 |
+
í Ħ
|
2355 |
+
í ĽĦ
|
2356 |
+
Ġma in
|
2357 |
+
Ġo ver
|
2358 |
+
on e
|
2359 |
+
Ġin n
|
2360 |
+
Ġf oci
|
2361 |
+
Ġbreast ìĹIJ
|
2362 |
+
ĠR LC
|
2363 |
+
Ġr ange
|
2364 |
+
ĠG I
|
2365 |
+
um mation
|
2366 |
+
Ġiso density
|
2367 |
+
Ģì §
|
2368 |
+
Ġí Į
|
2369 |
+
Ġí ĺ
|
2370 |
+
Ġê ±°
|
2371 |
+
Pro bable
|
2372 |
+
Ġë¶ Ħ
|
2373 |
+
Ġê´Ģì°° ëIJ¨
|
2374 |
+
Ġvisualiz ed
|
2375 |
+
ìĸij ìĦ±
|
2376 |
+
Ġíģ ¬
|
2377 |
+
Ġdep th
|
2378 |
+
íĦ °
|
2379 |
+
H ER
|
2380 |
+
I ll
|
2381 |
+
M U
|
2382 |
+
P leomorphic
|
2383 |
+
i cal
|
2384 |
+
n t
|
2385 |
+
o lo
|
2386 |
+
p reviously
|
2387 |
+
ê ·
|
2388 |
+
Ġ nd
|
2389 |
+
ŀ Ī
|
2390 |
+
Gr C
|
2391 |
+
ĠMG ìĻĢ
|
2392 |
+
Ġn ec
|
2393 |
+
arenchy mal
|
2394 |
+
ĠS NUH
|
2395 |
+
ar ly
|
2396 |
+
Ġë IJ
|
2397 |
+
is o
|
2398 |
+
Ġ-- -->
|
2399 |
+
Ġê ¸
|
2400 |
+
Ġìĸ ´
|
2401 |
+
Ġneed le
|
2402 |
+
fici ations
|
2403 |
+
Ġìĸij 측
|
2404 |
+
Develop ing
|
2405 |
+
Ġì¡° ì§ģ
|
2406 |
+
Ġìķ½ ê°Ħ
|
2407 |
+
Ġëı Ļ
|
2408 |
+
rm is
|
2409 |
+
Ġfil m
|
2410 |
+
H x
|
2411 |
+
S ome
|
2412 |
+
p rev
|
2413 |
+
ª ½
|
2414 |
+
ì Ķ
|
2415 |
+
ca tegory
|
2416 |
+
Ġc lu
|
2417 |
+
si ng
|
2418 |
+
ro sis
|
2419 |
+
vi e
|
2420 |
+
Ġext remly
|
2421 |
+
Ġdi sc
|
2422 |
+
Ġde crease
|
2423 |
+
Ġde rmis
|
2424 |
+
ĠF ibro
|
2425 |
+
ĠMammo graphy
|
2426 |
+
íķ ´ì
|
2427 |
+
ĠìĿ ¸
|
2428 |
+
Ġlob ulating
|
2429 |
+
(- ).
|
2430 |
+
Ġme ts
|
2431 |
+
Ġë³´ìĿ´ ëĬĶ
|
2432 |
+
ur ther
|
2433 |
+
Ġmetal ic
|
2434 |
+
Ġmacrocal cification
|
2435 |
+
ìļ °
|
2436 |
+
ë¦ ¬
|
2437 |
+
mme tric
|
2438 |
+
Ġve ry
|
2439 |
+
. >
|
2440 |
+
A symmetries
|
2441 |
+
J un
|
2442 |
+
L ob
|
2443 |
+
o in
|
2444 |
+
p athy
|
2445 |
+
r ant
|
2446 |
+
y r
|
2447 |
+
y pical
|
2448 |
+
Ħ ľ
|
2449 |
+
Ī ì
|
2450 |
+
į Ķ
|
2451 |
+
en cy
|
2452 |
+
gr am
|
2453 |
+
Ġm utliple
|
2454 |
+
Ġden ist
|
2455 |
+
Ġs hell
|
2456 |
+
ĠR I
|
2457 |
+
Ġmammo pathy
|
2458 |
+
Ġ1 99
|
2459 |
+
ĠB reast
|
2460 |
+
Ġpro mi
|
2461 |
+
ĠD dx
|
2462 |
+
ple omorphic
|
2463 |
+
Ġì §
|
2464 |
+
Ġcalcifi ations
|
2465 |
+
ĠN E
|
2466 |
+
Ġë įĶ
|
2467 |
+
no tated
|
2468 |
+
ĠA bout
|
2469 |
+
po s
|
2470 |
+
po ma
|
2471 |
+
Ġcalci fci
|
2472 |
+
ëĭ ¹
|
2473 |
+
op athy
|
2474 |
+
ĠìĿ ¼ë¶Ģ
|
2475 |
+
circle s
|
2476 |
+
Ġun matched
|
2477 |
+
Ġca cifications
|
2478 |
+
Ġec tasia
|
2479 |
+
ìĺ ¤
|
2480 |
+
di tion
|
2481 |
+
Ġh uge
|
2482 |
+
Ġrou dn
|
2483 |
+
ĠCal cifications
|
2484 |
+
Ġëª ¨
|
2485 |
+
Ġì° ¸
|
2486 |
+
calci um
|
2487 |
+
Ħìŀ ¬
|
2488 |
+
stion able
|
2489 |
+
ĠíĮ IJ
|
2490 |
+
ìĶ ©
|
2491 |
+
Ġdenist y
|
2492 |
+
O ct
|
2493 |
+
T ypical
|
2494 |
+
¼ ì¹ĺ
|
2495 |
+
ë £
|
2496 |
+
ë Ĥ
|
2497 |
+
í ĺ
|
2498 |
+
Ġm inimal
|
2499 |
+
Ġb eni
|
2500 |
+
Ġf urther
|
2501 |
+
ĠL L
|
2502 |
+
Ġle vel
|
2503 |
+
Ġch an
|
2504 |
+
ĠS ubtle
|
2505 |
+
ĠD W
|
2506 |
+
ul ging
|
2507 |
+
Ġ0 2
|
2508 |
+
ĠF B
|
2509 |
+
20 03
|
2510 |
+
20 19
|
2511 |
+
Ġper sistent
|
2512 |
+
Ġasymmetri city
|
2513 |
+
ìľ łë°©
|
2514 |
+
Ġnumber s
|
2515 |
+
Ġmicro lobulated
|
2516 |
+
ìķ ½
|
2517 |
+
Ġintra ductal
|
2518 |
+
ĠDiffuse ly
|
2519 |
+
Ġìł ľ
|
2520 |
+
rocal cifications
|
2521 |
+
spe cific
|
2522 |
+
Ġmacrocal cifications
|
2523 |
+
Ġmicor calcifications
|
2524 |
+
ext ent
|
2525 |
+
Ġ(- )
|
2526 |
+
Ġli poma
|
2527 |
+
Ġmaterial s
|
2528 |
+
Ġqu ad
|
2529 |
+
Ġdeline ated
|
2530 |
+
Ģì§ Ħ
|
2531 |
+
olo g
|
2532 |
+
l inear
|
2533 |
+
£ ¼
|
2534 |
+
¶ Į
|
2535 |
+
ê ´
|
2536 |
+
ë ŀ
|
2537 |
+
ë ĮĢì
|
2538 |
+
í ŀĪ
|
2539 |
+
Ġ ul
|
2540 |
+
Ģ ëįĺ
|
2541 |
+
re sidual
|
2542 |
+
Gr d
|
2543 |
+
Ġf ade
|
2544 |
+
la tively
|
2545 |
+
Ġs o
|
2546 |
+
ĠL LC
|
2547 |
+
ĠL uminal
|
2548 |
+
Ġse ge
|
2549 |
+
Ġl umpy
|
2550 |
+
Ġch agn
|
2551 |
+
Ġal rge
|
2552 |
+
Ġco m
|
2553 |
+
ple te
|
2554 |
+
ĠLUI Q
|
2555 |
+
ual ted
|
2556 |
+
oma tic
|
2557 |
+
op corn
|
2558 |
+
ê² ł
|
2559 |
+
Ġí ĽĦ
|
2560 |
+
ë¶Ģ íĦ°
|
2561 |
+
Nodule s
|
2562 |
+
Ġcluster s
|
2563 |
+
Ġê ¶Į
|
2564 |
+
Ġas ses
|
2565 |
+
pt omatic
|
2566 |
+
ìķ Ķ
|
2567 |
+
Ġë¶ Ī
|
2568 |
+
di es
|
2569 |
+
Ġìĸij ìĥģ
|
2570 |
+
Ġmicrocalcifica ions
|
2571 |
+
Dec rease
|
2572 |
+
ĠIn tramammary
|
2573 |
+
ĠCal cified
|
2574 |
+
Asym ptomatic
|
2575 |
+
Ġíı ¬íķ¨
|
2576 |
+
Ġnegat vie
|
2577 |
+
Ġaden osis
|
2578 |
+
arc hitectural
|
2579 |
+
iso lated
|
2580 |
+
ë£ Į
|
2581 |
+
Ġquad rant
|
2582 |
+
Ġchagn e
|
2583 |
+
+ ).
|
2584 |
+
= >
|
2585 |
+
c ystic
|
2586 |
+
i te
|
2587 |
+
l um
|
2588 |
+
m id
|
2589 |
+
t our
|
2590 |
+
w si
|
2591 |
+
y n
|
2592 |
+
ê ±°
|
2593 |
+
ë ²
|
2594 |
+
Ġ #
|
2595 |
+
Ĭ ¹
|
2596 |
+
Ľ IJ
|
2597 |
+
Ġm ole
|
2598 |
+
Ġb re
|
2599 |
+
Ġf ound
|
2600 |
+
Ġmicrocal fications
|
2601 |
+
Ġasymmetry ëĬĶ
|
2602 |
+
an cing
|
2603 |
+
ĠS egmental
|
2604 |
+
Ġre pla
|
2605 |
+
ĠG lobal
|
2606 |
+
Ġì Īĺ
|
2607 |
+
ĠĊ ĊĊ
|
2608 |
+
Ġë ĵ
|
2609 |
+
Ġë ĮĢ
|
2610 |
+
Ġ. .
|
2611 |
+
Ġclus ted
|
2612 |
+
ë³ ¸ìĽIJ
|
2613 |
+
íĻ ĺìŀIJ
|
2614 |
+
Ġmicro al
|
2615 |
+
ëı ħ
|
2616 |
+
Re mained
|
2617 |
+
ĠH RT
|
2618 |
+
Ġ(< --
|
2619 |
+
con firmed
|
2620 |
+
Ġë³´ìĿ´ ëįĺ
|
2621 |
+
Ġradi o
|
2622 |
+
ĠNew ly
|
2623 |
+
Ġì¢ ĭ
|
2624 |
+
ë¬ ¸
|
2625 |
+
ì´ ¬ìĺģ
|
2626 |
+
Ġë³ĢíĻĶìĹĨ ìĿĮ
|
2627 |
+
Ġvari able
|
2628 |
+
ex cept
|
2629 |
+
Ġmat ched
|
2630 |
+
Ġexten ding
|
2631 |
+
Ġì¡°ì§ģ ê²ĢìĤ¬
|
2632 |
+
pos terior
|
2633 |
+
Ġsege mental
|
2634 |
+
) :
|
2635 |
+
F oreign
|
2636 |
+
N O
|
2637 |
+
_ _
|
2638 |
+
c yst
|
2639 |
+
p ar
|
2640 |
+
t at
|
2641 |
+
v a
|
2642 |
+
¸ ê¸
|
2643 |
+
Ī ë¡ľ
|
2644 |
+
Ŀ ¼ë
|
2645 |
+
ti e
|
2646 |
+
Ġa dn
|
2647 |
+
ĠMG s
|
2648 |
+
Ġb y
|
2649 |
+
Ġb ulging
|
2650 |
+
No rmal
|
2651 |
+
er a
|
2652 |
+
Ġmammo tome
|
2653 |
+
ap il
|
2654 |
+
Ġ200 0
|
2655 |
+
Ġt ub
|
2656 |
+
Ġamo rh
|
2657 |
+
lo ma
|
2658 |
+
Ġto tal
|
2659 |
+
Ġhypo e
|
2660 |
+
ccess ary
|
2661 |
+
íķĺ ëĬĶ
|
2662 |
+
Ġìķ Ī
|
2663 |
+
ĠìĹ °
|
2664 |
+
Ġmicro Ca
|
2665 |
+
Ġpun cate
|
2666 |
+
Ġenlargement s
|
2667 |
+
Ġpar tly
|
2668 |
+
íĸ ¥
|
2669 |
+
Ġê° IJ
|
2670 |
+
om plete
|
2671 |
+
Ġmetasta tic
|
2672 |
+
ifcation s
|
2673 |
+
Ġinser tion
|
2674 |
+
Ġdens se
|
2675 |
+
visualiz ed
|
2676 |
+
Ġnec rosis
|
2677 |
+
wsi e
|
2678 |
+
¸ê¸ ī
|
2679 |
+
apil loma
|
2680 |
+
Ġtub ular
|
2681 |
+
( +)
|
2682 |
+
, ,
|
2683 |
+
N early
|
2684 |
+
e m
|
2685 |
+
i ve
|
2686 |
+
s ummation
|
2687 |
+
¡ ìĻĢ
|
2688 |
+
¯ Ģ
|
2689 |
+
¹ Į
|
2690 |
+
ħ ëĭĪëĭ¤
|
2691 |
+
ocal iz
|
2692 |
+
te ctasia
|
2693 |
+
Ġin L
|
2694 |
+
Ġc l
|
2695 |
+
Ġc ell
|
2696 |
+
he tero
|
2697 |
+
Ġp or
|
2698 |
+
Ġmicrocal fication
|
2699 |
+
Ġs light
|
2700 |
+
ĠC T
|
2701 |
+
ĠR SA
|
2702 |
+
at ure
|
2703 |
+
sy metry
|
2704 |
+
an notated
|
2705 |
+
Ġcalc fication
|
2706 |
+
Ġab n
|
2707 |
+
ual r
|
2708 |
+
ìĹIJ ëıĦ
|
2709 |
+
ĠLU M
|
2710 |
+
ìĦ ł
|
2711 |
+
vo luting
|
2712 |
+
íķĺ ê³ł
|
2713 |
+
Ġcon tour
|
2714 |
+
Ġìķ ¡ìĻĢ
|
2715 |
+
uc tectasia
|
2716 |
+
Ġcalcifica ion
|
2717 |
+
Ġcalcifica ions
|
2718 |
+
Ġë³´ì ĺ
|
2719 |
+
Ġsubc ut
|
2720 |
+
athe red
|
2721 |
+
Ġëª »
|
2722 |
+
¸ë Ŀ¼ë
|
2723 |
+
Ġenh ance
|
2724 |
+
Ġenh ancing
|
2725 |
+
Ġspic ualted
|
2726 |
+
Ġê³ł ìķ½
|
2727 |
+
Ext remely
|
2728 |
+
MR I
|
2729 |
+
ê· ¸ëĿ¼ë
|
2730 |
+
Ġrepla cing
|
2731 |
+
Ġê°IJ ìĨĮ
|
2732 |
+
¯Ģ ë¡ľ
|
2733 |
+
ê·¸ëĿ¼ë ¯¸
|
2734 |
+
5 0
|
2735 |
+
P opcorn
|
2736 |
+
a se
|
2737 |
+
c ribed
|
2738 |
+
e re
|
2739 |
+
m ild
|
2740 |
+
ê ¹Į
|
2741 |
+
ë ĮĢ
|
2742 |
+
Ġ /
|
2743 |
+
ľ 견
|
2744 |
+
ti ple
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:30fb25ef2d1f5f12e82708a112b950b3acc4e5c66aabb17fb88cf86fd46a9924
|
3 |
+
size 352633693
|
special_tokens_map.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|endoftext|>"
|
4 |
+
],
|
5 |
+
"bos_token": "<|endoftext|>",
|
6 |
+
"eos_token": "<|endoftext|>",
|
7 |
+
"pad_token": "<|endoftext|>",
|
8 |
+
"unk_token": "<|endoftext|>"
|
9 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"0": {
|
5 |
+
"content": "<|endoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": false,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
}
|
12 |
+
},
|
13 |
+
"additional_special_tokens": [
|
14 |
+
"<|endoftext|>"
|
15 |
+
],
|
16 |
+
"bos_token": "<|endoftext|>",
|
17 |
+
"clean_up_tokenization_spaces": true,
|
18 |
+
"eos_token": "<|endoftext|>",
|
19 |
+
"model_max_length": 1024,
|
20 |
+
"tokenizer_class": "GPT2Tokenizer",
|
21 |
+
"unk_token": "<|endoftext|>"
|
22 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:913e297436421e94a46897f5710a3d1ad1598b2fa65864479dc5bcf01e9b8d4c
|
3 |
+
size 4155
|
vocab.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"<|endoftext|>":0,"!":1,"\"":2,"#":3,"$":4,"%":5,"&":6,"'":7,"(":8,")":9,"*":10,"+":11,",":12,"-":13,".":14,"/":15,"0":16,"1":17,"2":18,"3":19,"4":20,"5":21,"6":22,"7":23,"8":24,"9":25,":":26,";":27,"<":28,"=":29,">":30,"?":31,"@":32,"A":33,"B":34,"C":35,"D":36,"E":37,"F":38,"G":39,"H":40,"I":41,"J":42,"K":43,"L":44,"M":45,"N":46,"O":47,"P":48,"Q":49,"R":50,"S":51,"T":52,"U":53,"V":54,"W":55,"X":56,"Y":57,"Z":58,"[":59,"\\":60,"]":61,"^":62,"_":63,"`":64,"a":65,"b":66,"c":67,"d":68,"e":69,"f":70,"g":71,"h":72,"i":73,"j":74,"k":75,"l":76,"m":77,"n":78,"o":79,"p":80,"q":81,"r":82,"s":83,"t":84,"u":85,"v":86,"w":87,"x":88,"y":89,"z":90,"{":91,"|":92,"}":93,"~":94,"¡":95,"¢":96,"£":97,"¤":98,"¥":99,"¦":100,"§":101,"¨":102,"©":103,"ª":104,"«":105,"¬":106,"®":107,"¯":108,"°":109,"±":110,"²":111,"³":112,"´":113,"µ":114,"¶":115,"·":116,"¸":117,"¹":118,"º":119,"»":120,"¼":121,"½":122,"¾":123,"¿":124,"À":125,"Á":126,"Â":127,"Ã":128,"Ä":129,"Å":130,"Æ":131,"Ç":132,"È":133,"É":134,"Ê":135,"Ë":136,"Ì":137,"Í":138,"Î":139,"Ï":140,"Ð":141,"Ñ":142,"Ò":143,"Ó":144,"Ô":145,"Õ":146,"Ö":147,"×":148,"Ø":149,"Ù":150,"Ú":151,"Û":152,"Ü":153,"Ý":154,"Þ":155,"ß":156,"à":157,"á":158,"â":159,"ã":160,"ä":161,"å":162,"æ":163,"ç":164,"è":165,"é":166,"ê":167,"ë":168,"ì":169,"í":170,"î":171,"ï":172,"ð":173,"ñ":174,"ò":175,"ó":176,"ô":177,"õ":178,"ö":179,"÷":180,"ø":181,"ù":182,"ú":183,"û":184,"ü":185,"ý":186,"þ":187,"ÿ":188,"Ā":189,"ā":190,"Ă":191,"ă":192,"Ą":193,"ą":194,"Ć":195,"ć":196,"Ĉ":197,"ĉ":198,"Ċ":199,"ċ":200,"Č":201,"č":202,"Ď":203,"ď":204,"Đ":205,"đ":206,"Ē":207,"ē":208,"Ĕ":209,"ĕ":210,"Ė":211,"ė":212,"Ę":213,"ę":214,"Ě":215,"ě":216,"Ĝ":217,"ĝ":218,"Ğ":219,"ğ":220,"Ġ":221,"ġ":222,"Ģ":223,"ģ":224,"Ĥ":225,"ĥ":226,"Ħ":227,"ħ":228,"Ĩ":229,"ĩ":230,"Ī":231,"ī":232,"Ĭ":233,"ĭ":234,"Į":235,"į":236,"İ":237,"ı":238,"IJ":239,"ij":240,"Ĵ":241,"ĵ":242,"Ķ":243,"ķ":244,"ĸ":245,"Ĺ":246,"ĺ":247,"Ļ":248,"ļ":249,"Ľ":250,"ľ":251,"Ŀ":252,"ŀ":253,"Ł":254,"ł":255,"Ń":256,"ca":257,"ma":258,"re":259,"ti":260,"cal":261,"Ġma":262,"Ġa":263,"Ġi":264,"en":265,"se":266,"ocal":267,"fi":268,"Ġo":269,"on":270,"te":271,"Gr":272,"ci":273,"tion":274,"ĠM":275,"At":276,"cifi":277,"cation":278,"cification":279,"nd":280,"Ġin":281,"us":282,"de":283,"red":284,"Ġmam":285,"tered":286,"ade":287,"ĠMG":288,"cifications":289,"Ġc":290,"ic":291,"gr":292,"Ġm":293,"Ġmas":294,"ry":295,"Ġb":296,"he":297,"Ġp":298,"nc":299,"icr":300,"Ġf":301,"icrocal":302,"Ġmicrocal":303,"Ġand":304,"si":305,"hy":306,"No":307,"Ġmicrocalcifications":308,"Ġn":309,"tiv":310,"ses":311,"Ġmasses":312,"Ġor":313,"are":314,"lus":315,"Ġd":316,"lustered":317,"grade":318,"Ġare":319,"Ġclustered":320,"Ġfocal":321,"arenc":322,"arenchy":323,"Ġparenchy":324,"Ġis":325,"la":326,"eg":327,"The":328,"tive":329,"mary":330,"Ġparenchyma":331,"ega":332,"egative":333,"ĠGr":334,"Ġmammary":335,"mo":336,"Ġden":337,"Ġ3":338,"le":339,"Ġs":340,"Ġnegative":341,").":342,"Ġof":343,"Ġcal":344,"ro":345,"ly":346,"ĠC":347,"st":348,"Ġdense":349,"ty":350,"vi":351,"rea":352,"Ġvi":353,"ble":354,"reast":355,"sible":356,"Ġvisible":357,"lar":358,"ous":359,"ĠL":360,"Ġbreast":361,"gn":362,"Ġse":363,"ular":364,"th":365,"ĠR":366,"rog":367,"Ġseen":368,"me":369,"cat":370,"cattered":371,"er":372,"NC":373,"Ġmammo":374,"Ġscattered":375,"ously":376,"ene":377,"Ġ2":378,"Ġ(":379,"eneously":380,"eni":381,"Ġfi":382,"enign":383,"Ġ4":384,"land":385,"landular":386,"Ġfib":387,"omo":388,"Ġfibrog":389,"Ġfibroglandular":390,"at":391,"homo":392,"homog":393,"homogeneously":394,"Ġinhomogeneously":395,"oth":396,"MG":397,"Grade":398,"Ġboth":399,"Ġbenign":400,"Ġcalcifications":401,"ĠMMG":402,"Ġdensi":403,"sy":404,"Ġdensity":405,"Ġl":406,"sym":407,"symme":408,"ĠRt":409,"symmet":410,"ĠLt":411,"ĠNC":412,"symmetry":413,"Ġno":414,"UO":415,"up":416,"Ġgrade":417,"the":418,"in":419,"Ġcalcification":420,"Ġmass":421,"Ġasymmetry":422,"Ġ1":423,"per":424,"Ġthe":425,"->":426,"Ġlo":427,"upper":428,"al":429,"Ġupper":430,"Ġnod":431,"Ġfat":432,"Ġbreasts":433,"ter":434,"Ġfatty":435,"Ġlow":436,"Ġlower":437,"Ġr":438,"Ġ-":439,"Ġle":440,"mal":441,"sc":442,"ed":443,"ule":444,"Ġe":445,"hi":446,"ap":447,"ĠRUO":448,"ĠGrade":449,"Ġnodule":450,"Ġmay":451,"wi":452,"ensi":453,"ĠLUO":454,"Ġmammogr":455,"aphy":456,"ta":457,"ity":458,"Ġmammography":459,"Ġou":460,"tivity":461,"Ġsensi":462,"Ġsensitivity":463,"Ġouter":464,"an":465,"ss":466,"ing":467,"his":468,"Ġcalc":469,"Ġex":470,"This":471,"ge":472,"Ġext":473,"ou":474,"tate":475,"Ġgr":476,"scu":477,"bscu":478,"Ġobscu":479,"unc":480,"cm":481,"unctate":482,"Ġobscure":483,"mall":484,"Negative":485,"ĠB":486,"mely":487,"remely":488,"Ġextremely":489,"Ġpunctate":490,"Ġch":491,"Ġsi":492,"Ġsmall":493,"Ġsu":494,"gh":495,"Ġrt":496,"ange":497,"Ġchange":498,"Ġlt":499,"rou":500,"with":501,"round":502,"Ġwith":503,"terog":504,"ent":505,"Ġ&":506,"gni":507,"or":508,"Ġ-->":509,"ner":510,"sion":511,"Ġinner":512,"Ġ20":513,"terogeneously":514,"nce":515,"Ġti":516,"negative":517,"Ġal":518,"Ġdi":519,"Ġsince":520,"UI":521,"Ġlesion":522,"Ġmagni":523,"ft":524,"Ġat":525,"Benign":526,"ue":527,"Ġpro":528,"Ġon":529,"Ġleft":530,"Ġmicrocalcification":531,"He":532,"wh":533,"Ġtiss":534,"Ġtissue":535,"ĠS":536,"ew":537,"min":538,"oup":539,"ph":540,"ouped":541,"Ġ->":542,"Heterogeneously":543,"val":544,"ld":545,"Ġnodular":546,"Ġco":547,"igh":548,"ome":549,"ight":550,"Asymmetry":551,"-->":552,"ar":553,"Ġre":554,"Ġsome":555,"Ġlowers":556,"rph":557,"ĠG":558,"ould":559,"Ġcould":560,"ĠSA":561,"ff":562,"use":563,"Ġround":564,"ffuse":565,"ted":566,"Ġde":567,"what":568,"Ġsur":569,"Ġsomewhat":570,"rounding":571,"il":572,"Ġsurrounding":573,"minent":574,"ough":575,"though":576,"Ġalthough":577,"Ġgrouped":578,"Ġprominent":579,"rc":580,"king":581,"Ġ200":582,"ther":583,"ĠD":584,"Ġright":585,"ple":586,"Ġax":587,"ul":588,"oking":589,"Ġì":590,"illa":591,"Ġen":592,"ĠLUI":593,"den":594,"Ġaxilla":595,"ĠLN":596,"Ġsub":597,"mp":598,"ion":599,"ĠMa":600,"II":601,"wise":602,"Ġdiffuse":603,"Ġ201":604,"therwise":605,"Ġoval":606,"Ġt":607,"Ġ,":608,"Ġhe":609,"ulti":610,"ri":611,"Ġamo":612,"Ġnc":613,"Ġab":614,"ional":615,"Ġcomp":616,"rphous":617,"Ġ0":618,"LO":619,"LI":620,"ultiple":621,"Ġcalcifi":622,"Ġmicrocalc":623,"nor":624,"normal":625,"ĠRUI":626,"sed":627,"Ġabnormal":628,"Ġamorphous":629,"most":630,"Ġenti":631,"Ġentire":632,"ĠNegative":633,"um":634,"areo":635,"ral":636,"reased":637,"Ġparenchyme":638,"Ġreg":639,"Ġdist":640,"lo":641,"ct":642,"Otherwise":643,"circ":644,"Ġentirely":645,"areolar":646,"ess":647,"Ġregional":648,"Ġview":649,"rib":650,"ra":651,"ĠNo":652,"Ġlooking":653,"Ġnodules":654,"ĠĊ":655,"Ġalmost":656,"es":657,"ìĿ":658,"lated":659,"dense":660,"creased":661,"),":662,"ver":663,"Ġmi":664,"reg":665,"benign":666,"ric":667,"ĠN":668,"osi":669,"ĠHeterogeneously":670,"osition":671,"Ġsubareolar":672,"fin":673,"Ġdistor":674,"Ġarea":675,"symmetric":676,"Ġë":677,"ared":678,"veral":679,"tra":680,"arse":681,"rreg":682,"Ġ12":683,"rregular":684,"Ġcirc":685,"Ġcomposition":686,"revi":687,"ng":688,"ĠF":689,"Ġto":690,"Ġheterogeneously":691,"ribed":692,"no":693,"fication":694,"Ġmultiple":695,"mmo":696,"Ġiso":697,"umsc":698,"umscribed":699,"ain":700,"pi":701,"ec":702,"Ġcoarse":703,"Breast":704,"ctu":705,"ulated":706,"yst":707,"hite":708,"Ġmid":709,"Ġple":710,"hitectu":711,"sx":712,"ĠGII":713,"ba":714,"pic":715,"Ġcen":716,"ment":717,"ĠMammo":718,"ĠLLI":719,"Ġpleomo":720,"rphic":721,"Asx":722,"aint":723,"Ġcircumscribed":724,"Ġcenter":725,"mmary":726,"Ġpo":727,"hitectural":728,"piculated":729,"ties":730,"hr":731,"Ġirregular":732,"Ġcalcified":733,"mammary":734,"Ġdefin":735,"Ġth":736,"ĠT":737,"Ġpleomorphic":738,"looking":739,"Ġarc":740,"Ġisodense":741,"Ġinter":742,"tramammary":743,"Ġsiz":744,"Ġless":745,"Focal":746,"ho":747,"pici":748,"pe":749,"uspici":750,"ĠA":751,"Ġfaint":752,"Ġcyst":753,"Ġprevi":754,"wo":755,"íķ":756,"Ġmagnification":757,"ny":758,"Ġarchitectural":759,"mental":760,"ĠGIII":761,"Ġg":762,"Less":763,"Ġtiny":764,"Ġspiculated":765,"Ġfew":766,"uspicious":767,"Ġhy":768,"ĠMagni":769,"ĠBenign":770,"kin":771,"ll":772,"Ġproba":773,"Ġevi":774,"Ġfind":775,"ore":776,"Ġfinding":777,"Ġinterval":778,"On":779,"ce":780,"ual":781,"is":782,".)":783,".(":784,"ĠRLI":785,"Ġheterog":786,"ĊĊ":787,"Ġintramammary":788,"ĠOtherwise":789,"Ġdensities":790,"Ġv":791,"ke":792,"Ġ.":793,"ĠThis":794,"iffuse":795,"ike":796,"un":797,"whic":798,"which":799,"ìĹ":800,"gmental":801,"ut":802,"mma":803,"Ġseveral":804,"hoic":805,"scular":806,"out":807,"ascular":808,"icrocalcifications":809,"ĠLNs":810,"Ġskin":811,"breast":812,"pa":813,"Ġ--":814,"bly":815,"Ġdistorsion":816,"rk":817,"ĠGR":818,"ĠLLO":819,"mmation":820,"ne":821,"Ġsummation":822,"Lt":823,"ged":824,"Ġsegmental":825,"Ġdefini":826,"dence":827,"ĠRLO":828,"Ġevidence":829,"Ġsuspicious":830,"Ġbi":831,"Ġwhich":832,"Ġnoted":833,"Ġextent":834,"Ġprevious":835,"larged":836,"po":837,"Ġasymmetric":838,"Ġcalci":839,"it":840,"Ġbut":841,"dual":842,"Ġcompared":843,"sidual":844,"ant":845,"Rt":846,"entral":847,"Ġ--->":848,"Ġcentral":849,"Ġlike":850,"ê°":851,"Ġincreased":852,"There":853,"Ġdistortion":854,"Ġvascular":855,"eneous":856,"tle":857,"later":858,"lateral":859,"focal":860,"Ġfar":861,"echoic":862,"Asymmetric":863,"Ġ9":864,"Ġaxillae":865,"ep":866,"oma":867,"12":868,"10":869,"ip":870,"Scattered":871,"ìĹIJ":872,"ening":873,"Ġheterogeneous":874,"paci":875,"can":876,"Ġopaci":877,"Ġresidual":878,"Microcalcifications":879,"Ġprobably":880,"ory":881,"cc":882,"iton":883,"able":884,"peared":885,"ortion":886,"ear":887,"Ġ6":888,"minant":889,"Clustered":890,"Ġsize":891,"´ì":892,"Ġhypo":893,"dular":894,"caiton":895,"asymmetry":896,"Ġdefinite":897,"Ġdecreased":898,"Ġdeep":899,"Ġportion":900,"Ġmore":901,"ĠLU":902,"ĠTomo":903,"gnifi":904,"Diffuse":905,"cant":906,"ipple":907,"gnificant":908,"Ġ2004":909,"ëĭ":910,"Ġcysts":911,"Ġsignificant":912,"ting":913,"teri":914,"lu":915,"Ġtwo":916,"redo":917,"Ġenlarged":918,"minantly":919,"redominantly":920,"Ġhypoechoic":921,"Ġsubtle":922,"Ġnipple":923,"Ġparenchymal":924,"20":925,"oss":926,"ìĦ":927,"ĠMLO":928,"Ġpredominantly":929,"Ġw":930,"op":931,"ccess":932,"ìĿĮ":933,"Ġë³":934,"Ġnot":935,"ossly":936,"MT":937,"Ġpos":938,"Ġfine":939,"Ġ2008":940,"Ġlikely":941,"terior":942,"Ġsh":943,"light":944,"mark":945,"ccessory":946,"Ġareas":947,"11":948,"otherwise":949,"ell":950,"large":951,"cor":952,".,":953,"Ġopacity":954,"Multiple":955,"appeared":956,"lightly":957,"ëĬ":958,"vo":959,"..":960,"Ġsized":961,"ĠRU":962,"AT":963,"ve":964,"Ģì":965,".-->":966,"Ġmamm":967,"markable":968,"Ġ10":969,"Ġwithout":970,"ction":971,"ê²":972,"everal":973,"inear":974,"rmal":975,"Ġ2009":976,"Ġdiffusely":977,"ation":978,"ĠCC":979,"Ġglandular":980,"ĠTS":981,"corn":982,"Ġposterior":983,"ĠUO":984,"sity":985,"ĠFC":986,"Ġthis":987,"Ġmicrocalci":988,"ick":989,"¡ľ":990,"insity":991,"Ġdeinsity":992,"dy":993,"mm":994,"ĠO":995,"symmetri":996,"Ġdis":997,"Ġthick":998,"dule":999,"ê°Ģ":1000,"Ġcalcificaiton":1001,"lob":1002,"Ġdistrib":1003,"ĠP":1004,"Ġbilateral":1005,"Two":1006,"ining":1007,"Ġdistribu":1008,"enously":1009,"Ġbx":1010,"Heterog":1011,"ad":1012,"pcorn":1013,"ĠBx":1014,"ĠFA":1015,"ëĬĶ":1016,"ê³":1017,"Ġ:":1018,"Ġthickening":1019,"íķĺ":1020,"Grouped":1021,"Ġaxillary":1022,"Ġnew":1023,"¼ë":1024,"Ġpre":1025,"densi":1026,"Ġmicrocalcifi":1027,"Ġbiop":1028,"Ġan":1029,"Ġpopcorn":1030,"density":1031,"egional":1032,"cified":1033,"ĠìĿ":1034,"Ġwell":1035,"Ġlinear":1036,"Ġhyper":1037,"tic":1038,"Ġper":1039,"Ġnormal":1040,"Ġ11":1041,"clustered":1042,"ĠUOQ":1043,"Ġ2010":1044,"ìĿ´":1045,"ëIJ":1046,"Ġ'":1047,"Ġasymmetri":1048,"gge":1049,"ign":1050,"Ġgran":1051,"32":1052,"Ġneg":1053,"New":1054,"Ġdefined":1055,"lobal":1056,"Several":1057,"Ġ5":1058,"Ġcon":1059,"Ġgranul":1060,"--":1061,"im":1062,"Ġ2006":1063,"04":1064,"Ġ2005":1065,"Ġ2007":1066,"07":1067,"ìľ":1068,"09":1069,"gges":1070,"Heterogenously":1071,"ë¶":1072,"Ġìķ":1073,"Ġprobable":1074,"Ġí":1075,"defin":1076,"Ġgranuloma":1077,"06":1078,"ĠMMT":1079,"Ġbiopsy":1080,"ĠFCC":1081,"Ma":1082,"ĥģ":1083,"defined":1084,"Ġlarge":1085,"try":1086,"ìĦľ":1087,"Ġhyperdense":1088,"05":1089,"uct":1090,"ĠI":1091,"Ġmark":1092,"ncreased":1093,"circle":1094,"tery":1095,"Few":1096,"Ġcor":1097,"pro":1098,"Ġsugges":1099,"Ġ2012":1100,"Ġasymmetries":1101,"08":1102,"ì§":1103,"eft":1104,"Nodular":1105,"ĠLess":1106,"ĠE":1107,"less":1108,"Al":1109,"fcation":1110,"Ġgranulomas":1111,"ĠAsymmetry":1112,"Almost":1113,"ëĭ¤":1114,"tu":1115,"Ġun":1116,"ilk":1117,"Ġlob":1118,"Ġsite":1119,"Ġ2003":1120,"scattered":1121,"Ġtomo":1122,"Ġrema":1123,"Ġap":1124,"Ġcm":1125,"tation":1126,"Ġcorre":1127,"Ġout":1128,"ow":1129,"ìĭ":1130,"calcified":1131,"punctate":1132,"ecreased":1133,"taining":1134,"Ġìŀ":1135,"Ġ2011":1136,"03":1137,"Ġmild":1138,"Ġpreviously":1139,"Ġdisappeared":1140,"Ġpres":1141,"Ġinc":1142,"Ġnon":1143,"Ħì":1144,"(-":1145,"Ġclus":1146,"Ġduct":1147,"Ġpost":1148,"Ġpresent":1149,"ĠFocal":1150,"Ġ2015":1151,"ĠOS":1152,"Ġca":1153,"Ġ2014":1154,"Ġill":1155,"ìĹIJìĦľ":1156,"Regional":1157,"Ġla":1158,"Ġcalcific":1159,"AD":1160,"Ġmar":1161,"Ġcalcium":1162,"ven":1163,"remarkable":1164,"ĠsubA":1165,"Ġinvo":1166,"ĠìĹ":1167,"ĊĊĊ":1168,"ìľ¼ë":1169,"ìĻ":1170,"Ġec":1171,"adow":1172,"Ġshadow":1173,"id":1174,"łĦ":1175,"Ġ2016":1176,"Ġ>":1177,"reviously":1178,"pical":1179,"Ġunremarkable":1180,"Mass":1181,"ding":1182,"ost":1183,"ë³":1184,"Ġslightly":1185,"ë¶Ģ":1186,"ub":1187,"ĪìĿĮ":1188,"Ġasym":1189,"enous":1190,"Accessory":1191,"rom":1192,"Ġasymme":1193,"Ġcalcificaitons":1194,"Ġ8":1195,"ultifocal":1196,"Ġdistributed":1197,"Īëĭ¤":1198,"Nodule":1199,"ined":1200,"Ġ2013":1201,"Ġperi":1202,"ìĿ´ì":1203,"Ġgrossly":1204,"dn":1205,"omp":1206,"Ġcluster":1207,"umb":1208,"Ġmilk":1209,"ĠLUC":1210,"Ġcontaining":1211,"rt":1212,"Ġos":1213,"umber":1214,"Ġfrom":1215,"Ġnumber":1216,"ĠìķĬ":1217,"Ġbo":1218,"ê³ł":1219,"Ġrim":1220,"Ġglobal":1221,"both":1222,"Ġ7":1223,"typical":1224,"Ġstu":1225,"ated":1226,"Ġshap":1227,"Ġperiareolar":1228,"oreign":1229,"ĠLeft":1230,"Ġbrea":1231,"Ġasymm":1232,"prea":1233,"01":1234,"íĻ":1235,"ìĿĺ":1236,"Decreased":1237,"Ġ2019":1238,"Ġheterogenous":1239,"Ġsuggesting":1240,"ë¡ľ":1241,"Irregular":1242,"Ġretra":1243,"Ġdefinitive":1244,"ëĭĪëĭ¤":1245,"Increased":1246,"Ġcalcs":1247,"phic":1248,"Ġthan":1249,"Ġstudy":1250,"Ġmicr":1251,"Ĥ¬":1252,"Ġne":1253,"Ġremarkable":1254,"uc":1255,"ĠMg":1256,"luting":1257,"Ġbody":1258,"ĠMag":1259,"ì§Ģ":1260,"Ġinclu":1261,"pread":1262,"ound":1263,"isappeared":1264,"02":1265,"22":1266,"ìĥģ":1267,"Ġ2017":1268,"Ġmarked":1269,"Ġretraction":1270,"Ġmicro":1271,"ilateral":1272,"ìł":1273,"ree":1274,"ac":1275,"diffuse":1276,"Ġaccessory":1277,"ystro":1278,"Small":1279,"am":1280,"Ġhi":1281,"mass":1282,"notation":1283,"nlarged":1284,"Ġê":1285,"jec":1286,"lop":1287,"Ġë¹":1288,"ystrophic":1289,"íķľ":1290,"and":1291,"Ġgun":1292,"jection":1293,"Ġforeign":1294,"Ġproven":1295,"unt":1296,"Ġë³´":1297,"velop":1298,"mph":1299,"stic":1300,"MMT":1301,"multiple":1302,"Ġtypical":1303,"Ġone":1304,"íķ¨":1305,"Ġannotation":1306,"ìĭľ":1307,".->":1308,"Punctate":1309,"bout":1310,"metry":1311,"Ġly":1312,"bably":1313,"Ġmicrocalcificaiton":1314,"Ġinvoluting":1315,"¸ë¶Ģ":1316,"ìĺ":1317,"Ġabout":1318,"Grossly":1319,"Ġlymph":1320,"CAD":1321,"ìĽ":1322,"Ġcorrelated":1323,"gin":1324,"Ġfor":1325,"Ġcircle":1326,"nodular":1327,"Ġlesions":1328,"ìĿĢ":1329,"ece":1330,"Ġevidn":1331,"void":1332,"Ġë¹Ħ":1333,"Ġevidnece":1334,"Ġar":1335,"Ġamount":1336,"Ġremained":1337,"Ġdystrophic":1338,"(-)":1339,"tal":1340,"ìĸ":1341,"Ġê²":1342,"Ġinjection":1343,"inly":1344,"Slightly":1345,"aden":1346,"ense":1347,"Ġdistribution":1348,"23":1349,"In":1350,"ë°":1351,"ëIJĺ":1352,"like":1353,"êµ":1354,"ndis":1355,"ĠScattered":1356,"ndisti":1357,"Nc":1358,"Ġima":1359,"Ġdue":1360,"Ġfibro":1361,"Ġ2018":1362,"Ġopacities":1363,"oarse":1364,"several":1365,"Ġnode":1366,"lt":1367,"ĠìĹĨ":1368,"Ġme":1369,"Enlarged":1370,"ìŀ":1371,"nother":1372,"Newly":1373,"Ġovoid":1374,"Ġmultifocal":1375,"ĠìĻ":1376,"Ġechoic":1377,"Ġincluding":1378,"ndistinc":1379,"Ġas":1380,"Ġobscured":1381,"ations":1382,"Oval":1383,"ubtle":1384,"íĻĶ":1385,"ndistinct":1386,"Ġnega":1387,"alpa":1388,"Bilateral":1389,"small":1390,"Ĥĺ":1391,"ĠGrouped":1392,"Cal":1393,"Ġbe":1394,"sis":1395,"Ġìĸ":1396,"21":1397,"adenoma":1398,"lin":1399,"Ġmost":1400,"alpable":1401,"comp":1402,"Ġpun":1403,"morphous":1404,"largement":1405,"êµIJ":1406,"since":1407,"ìĦ±":1408,"ĠìĿ´ì":1409,"Ġë¹ĦêµIJ":1410,"Pro":1411,"cre":1412,"¶Ķ":1413,"Ġasy":1414,"Ġenlargement":1415,"ĠRUC":1416,"ĢìĤ¬":1417,"Ġasymmetery":1418,"Ġx":1419,"revious":1420,"Ġother":1421,"ëIJ¨":1422,"ctive":1423,"nal":1424,"outer":1425,"fa":1426,"reactive":1427,"ĠBUO":1428,"Ġappeared":1429,"Ġnoncalcified":1430,"pt":1431,"ëı":1432,"ļĶ":1433,"ìľ¼ë¡ľ":1434,"íĮ":1435,"ĠMultiple":1436,"ê³¼":1437,"ëł":1438,"ìķ":1439,"Ġì´":1440,"Ġìľ":1441,"fications":1442,"how":1443,"SA":1444,"ëª":1445,"Ġpalpable":1446,"nodule":1447,"Ġmargin":1448,"Ġfibroadenoma":1449,"More":1450,"qu":1451,"Ġcalcifica":1452,"mat":1453,"tifa":1454,"side":1455,"Ġshow":1456,"ìĻĢ":1457,"Ġshaped":1458,"creening":1459,"Previously":1460,"ĨĮ":1461,"Ġindistinct":1462,"row":1463,"Dense":1464,"Ġcalcifcation":1465,"ging":1466,"Ġmainly":1467,"ĠLT":1468,"íĮĮ":1469,"tifact":1470,"Re":1471,"Ġlast":1472,"atter":1473,"attern":1474,"Disappeared":1475,"Ġpar":1476,"Ġspread":1477,"ĠClustered":1478,"sts":1479,"ìĽIJ":1480,"ni":1481,"Ġreactive":1482,"Ġintra":1483,"ĪìĿĮíĮĮ":1484,"ĠìķĬìĿĮ":1485,"Both":1486,"Suspicious":1487,"iz":1488,"ystic":1489,"Ġartifact":1490,"+,":1491,"ts":1492,"Ġpattern":1493,"Ġsubareo":1494,"microcal":1495,"microcalcifications":1496,"grouped":1497,"hell":1498,"ĠDiffuse":1499,"Ġë¶":1500,"Ġotherwise":1501,"arrow":1502,"Ġdevelop":1503,"fter":1504,"yer":1505,"rease":1506,"Ġdete":1507,"Ġappe":1508,"Ġlayer":1509,"µëĭĪëĭ¤":1510,"ĬµëĭĪëĭ¤":1511,"Note":1512,"ĠLI":1513,"Ġ2020":1514,"Ġbreas":1515,"magni":1516,"Ġinternal":1517,"oci":1518,"ncer":1519,"Ġ;":1520,"egmental":1521,"ĠRegional":1522,"Ġnewly":1523,"Ġneed":1524,"Ġpuntate":1525,"odense":1526,"Ġmammogram":1527,"ëħ":1528,"Ġíķ":1529,"cept":1530,"Ġë³´ì":1531,"probably":1532,"Ġasymmtery":1533,"Ġmicrocalcificaitons":1534,"ë°©":1535,"line":1536,"Uni":1537,"Ġta":1538,"tifi":1539,"egg":1540,"Ġisoechoic":1541,"Ġdisper":1542,"GR":1543,"Round":1544,"di":1545,"rp":1546,"ĠH":1547,"Ġafter":1548,"dentifi":1549,"+)":1550,"regional":1551,"Ġappear":1552,"Ġnear":1553,"ally":1554,"ĠLUOQ":1555,"Ġmicrocalcifcation":1556,"Ġremaining":1557,"Ġcancer":1558,"Ġdispersed":1559,"li":1560,"ê¸":1561,"hism":1562,"Ġlobular":1563,"Unidentifi":1564,"--->":1565,"19":1566,"Ġ[":1567,"Ġìł":1568,"Ġmarking":1569,"Unidentifiable":1570,"mon":1571,"ĠìŀĪ":1572,"rphism":1573,"NL":1574,"WNL":1575,"os":1576,"¹ĺ":1577,"reo":1578,"ĦìļĶ":1579,"Ġductal":1580,"ìĺģ":1581,"Ġbreassts":1582,"rocal":1583,"Ġh":1584,"fici":1585,"type":1586,"oval":1587,"ĠNodular":1588,"ê°ľ":1589,"gory":1590,"Ġregion":1591,"ĠFN":1592,"Ġegg":1593,"Ġcystic":1594,"tac":1595,"bable":1596,"Ġappearing":1597,"Right":1598,"ono":1599,"tereo":1600,"tegory":1601,"sia":1602,"Screening":1603,"hen":1604,"Ġmm":1605,"ĠRUOQ":1606,"ĠSeveral":1607,"low":1608,"itve":1609,"Coarse":1610,"rue":1611,"ŀĦ":1612,"res":1613,"iny":1614,"Ġsubc":1615,"Diffusely":1616,"adi":1617,"ìĿ´ìłĦ":1618,"ĠìĿ´ìłĦ":1619,"qui":1620,"tactic":1621,"-'":1622,"mmetry":1623,"ĢíĻĶ":1624,"ĠMicrocalcifications":1625,"Ġphen":1626,"stra":1627,"Ġ(<":1628,"Ġdemon":1629,"Ġthree":1630,"íķĺì§Ģ":1631,"Ġì´ĪìĿĮíĮĮ":1632,"ëħĦ":1633,"Ġpheno":1634,"Ġdemonstra":1635,"new":1636,"sual":1637,"shell":1638,"ula":1639,"ĠUI":1640,"Ġgroup":1641,"Ġdila":1642,"Ġoutside":1643,"tereotactic":1644,"Ġphenotype":1645,"17":1646,"Ġbening":1647,"Ġsono":1648,"Ġë³ĢíĻĶ":1649,"ĠPunctate":1650,"Ġimaging":1651,"ĠìĹĨìĿĮ":1652,"16":1653,"Spiculated":1654,"Ġlateral":1655,"Ġpuc":1656,"ĠRT":1657,"need":1658,"ĠFCD":1659,"Ġìĸij":1660,"sualiz":1661,"Segmental":1662,"vocal":1663,"ĠU":1664,"Ġrou":1665,"łë°©":1666,"Ġsubareola":1667,"quivocal":1668,"-,":1669,"Left":1670,"Vascular":1671,"nthe":1672,"previous":1673,"ìĬµëĭĪëĭ¤":1674,"Ġê°Ģ":1675,"Ġmal":1676,"cations":1677,"Ġede":1678,"ĠìĦ":1679,"견":1680,"Ġhide":1681,"nthesis":1682,"18":1683,"About":1684,"RUO":1685,"fci":1686,"©°":1687,"¸¡":1688,"ëį":1689,"íĸ":1690,"ĠII":1691,"ĠMR":1692,"view":1693,"Ġexcept":1694,"ngle":1695,"ĠìĻ¸ë¶Ģ":1696,"Ġpuctate":1697,"con":1698,"dle":1699,"ëĤĺ":1700,"Ġmamo":1701,"ĠCa":1702,"synthesis":1703,"Ġcorrela":1704,"ìĻ¸ë¶Ģ":1705,"Ġacc":1706,"tero":1707,"intramammary":1708,"Ġtrue":1709,"ĠNc":1710,"Ġprev":1711,"Ġë³´ìĿ´":1712,"ĠíķĦìļĶ":1713,")-->":1714,"hree":1715,"tro":1716,"ijë³":1717,"Ġì¶Ķ":1718,"ĠPreviously":1719,"14":1720,"CC":1721,"as":1722,"ities":1723,"uation":1724,"§Ģ":1725,"ĠWNL":1726,"Ġbra":1727,"inner":1728,"Ġradi":1729,"Ġeval":1730,"Ġpleomorphism":1731,"Ģìľ":1732,"ociated":1733,"Ġmammograms":1734,"Ġmalign":1735,"Bx":1736,"ë§":1737,"more":1738,"Ġìĥ":1739,"ìŬ":1740,"ĠìŀĪìĿĮ":1741,"Ġasyme":1742,"15":1743,"Ġass":1744,"Ġpain":1745,"ĠBoth":1746,"Ġpunctated":1747,"rchitectural":1748,"Ġìĺ":1749,"ìĿ¸":1750,"iphe":1751,"Ġlobule":1752,"모":1753,"Ġdemonstrable":1754,"Ġdilatation":1755,"Ġevaluation":1756,"24":1757,"ag":1758,"Ġareo":1759,"Ġdensely":1760,"ĠLO":1761,"ê²ĢìĤ¬":1762,"Ġmicrocalcifica":1763,"ĠUIQ":1764,"dv":1765,"suspicious":1766,"fii":1767,"agn":1768,"action":1769,"of":1770,"측":1771,"Ġsingle":1772,"Ġabnormalities":1773,"Ġperiphe":1774,"Ġshape":1775,"Ġhigh":1776,"Ġnegaitve":1777,"mtry":1778,"°°":1779,"íļ":1780,"Ġsup":1781,"Ġstate":1782,"Ġìĭ":1783,"ìĿĦ":1784,"ĠER":1785,"´Ģì":1786,"calcifications":1787,"verted":1788,"Ġmiddle":1789,"Ġassociated":1790,"13":1791,"30":1792,">>":1793,"spe":1794,"circumscribed":1795,"ìĿ´ì§Ģ":1796,"ìłķ":1797,"Ġdeveloped":1798,"lower":1799,"íļĮ":1800,"uta":1801,"xt":1802,"¡°":1803,"Ġ<":1804,"ĿíļĮ":1805,"Ġad":1806,"Ġë³ijë³":1807,"Subtle":1808,"ĠAdv":1809,"Ġê´Ģì":1810,"Architectural":1811,"Faint":1812,"Three":1813,"irregular":1814,"spiculated":1815,"ĠCAD":1816,"Ġwithin":1817,"ĠSmall":1818,"ĠìĿĺ":1819,"Amorphous":1820,"¦Ŀ":1821,"Ġmac":1822,"ĠRO":1823,"imi":1824,"Ġë³´ìĿ´ì§Ģ":1825,"Ġdetection":1826,"ëįĺ":1827,"28":1828,"Another":1829,"Dec":1830,"MO":1831,"ur":1832,"¬ìĺģ":1833,"ëĬ¥":1834,"likely":1835,"Ġê´Ģì°°":1836,"An":1837,"Other":1838,"Skin":1839,"Tiny":1840,"bec":1841,"pec":1842,"decreased":1843,"Ġ2002":1844,"Ġabnormality":1845,"íķĺìŬ":1846,"ĠIn":1847,"Ġmarker":1848,"ĨĮ견":1849,"Ġë³´ìŀĦ":1850,"CI":1851,"to":1852,"ļľ":1853,"segmental":1854,"Ġstereotactic":1855,"Ġ(#":1856,"ĠDecreased":1857,"rior":1858,"proven":1859,"Ġtomosynthesis":1860,"ĠìĹIJ":1861,"Ġecho":1862,"compared":1863,"ëł·":1864,"기":1865,"Ġareolar":1866,"imited":1867,"ļľëł·":1868,"Global":1869,"Ġaround":1870,"ded":1871,"Ġsy":1872,"rabec":1873,"now":1874,"uspicion":1875,"ĠíĻ":1876,"Ġsuggestive":1877,"ompared":1878,"Ġimage":1879,"Ġperiphery":1880,".-":1881,"Well":1882,"Ġê°":1883,"omorphic":1884,"Ġretro":1885,"Ġëļľëł·":1886,"pect":1887,"Calcifications":1888,"ëıĦ":1889,"CIS":1890,"31":1891,"ole":1892,"¸ìĽIJ":1893,"Ġsca":1894,"ĠCal":1895,"Ġ2021":1896,"Ġabnormally":1897,"Ġisolated":1898,"ìĭ¬":1899,"ìĸ´":1900,"Prominent":1901,"Ġsubcuta":1902,"Ġasymemtry":1903,"++,":1904,"00":1905,"AS":1906,"Sl":1907,"ama":1908,"increased":1909,"Ġanother":1910,"Ġprior":1911,"Ġsl":1912,"med":1913,"Ġë§":1914,"Ġarchitectu":1915,"neous":1916,"Ġmetal":1917,"ĠìĥĿ":1918,"rabecular":1919,"Di":1920,"MMG":1921,"about":1922,"ild":1923,"qual":1924,"Ġinvol":1925,"rtoma":1926,"Intramammary":1927,"Ġeggshell":1928,"amartoma":1929,"for":1930,"lic":1931,"tome":1932,"Ġsmal":1933,"athe":1934,"Ġchanges":1935,"ĠNew":1936,"ĠMagnification":1937,"ê°ģ":1938,"Ġmicrocalcifci":1939,"probable":1940,"ĠLIQ":1941,"Ġmacrocal":1942,"27":1943,"Microcal":1944,"olu":1945,"spread":1946,"tine":1947,"ler":1948,"Ġvisualiz":1949,"ĠëĬ":1950,"íķ´":1951,"Ġlobulated":1952,"Ġê²ĥ":1953,"Ġcalcificati":1954,"ression":1955,"Ġacchitectural":1956,"fiications":1957,"29":1958,"obscu":1959,"ë¥":1960,"Ġro":1961,"ĠOval":1962,"ìłģ":1963,"ìĸij":1964,"Residual":1965,"hing":1966,"jac":1967,"other":1968,"ģìĥģ":1969,"Ġmic":1970,"Ġscan":1971,"ĠPost":1972,"Ġnodes":1973,"composition":1974,"Ġìĭľ":1975,"jacent":1976,"De":1977,"LC":1978,"ative":1979,"pla":1980,"Ġop":1981,"cially":1982,"grossly":1983,"ĠRight":1984,"Ġluc":1985,"Ġë°":1986,"ìĹĨ":1987,"Ġaspect":1988,"ëĬ¥ìĦ±":1989,"ol":1990,"xilla":1991,"hed":1992,"all":1993,"ĠDCIS":1994,"Ġtrabecular":1995,"Ġnege":1996,"agtive":1997,".--":1998,"GII":1999,"OS":2000,"pr":2001,"vascular":2002,"ìļ":2003,"ĮĢ":2004,"der":2005,"tasia":2006,"Ġreview":2007,"Ġê²ĢìĤ¬":2008,"ulating":2009,"ĠìĦĿíļĮ":2010,"íĸī":2011,"Ġadjacent":2012,"Ġrod":2013,"%)":2014,"33":2015,"Ca":2016,"Compared":2017,"Multifocal":2018,"RT":2019,"Sep":2020,"cent":2021,"hic":2022,"irc":2023,"ostic":2024,"skin":2025,"tric":2026,"ug":2027,"ì¶Ķ":2028,")..":2029,"Ġprominant":2030,"Ġ2001":2031,"ions":2032,"ĠFaint":2033,"ĠAsymmetric":2034,"Ġwas":2035,"(-),":2036,"Ġìĺģìĥģ":2037,"Ġë³ijë³Ģ":2038,"Ġsubcutaneous":2039,"Ġmicrocalcifciations":2040,"obscure":2041,"42":2042,"accessory":2043,"ched":2044,"two":2045,"Ġoil":2046,"Ġì¦Ŀ":2047,"Ġviews":2048,"Ġëª":2049,"Ġmorelikely":2050,"ĠRUM":2051,"Ġasymmtry":2052,"Ġmicroca":2053,"ach":2054,"Ġmeta":2055,"Ġasymetry":2056,"Ġìľłë°©":2057,"microcalcification":2058,"agnostic":2059,"ĠìĥĿê°ģ":2060,"ĠëĬĶ":2061,"Ġlucent":2062,"Ġnegetive":2063,"anc":2064,"cted":2065,"ì¹ĺ":2066,"ĽĦ":2067,"nching":2068,"ĠGrossly":2069,"Ġsus":2070,"ë³´":2071,"ìŀĦ":2072,"Ġedema":2073,"25":2074,"26":2075,"Circ":2076,"amorphous":2077,"bx":2078,"subtle":2079,"±°":2080,"¸ë":2081,"athy":2082,"Ġeach":2083,"Ġonly":2084,"Ġhetero":2085,"Ġëĭ":2086,"Ġgade":2087,"ë¶Ħ":2088,"ĠID":2089,"ìľ¼ëĤĺ":2090,"Ġnearly":2091,"Ġroutine":2092,"Ġsuper":2093,"nown":2094,"ER":2095,"LUO":2096,"Ġche":2097,"our":2098,"Ġneagtive":2099,"Calcified":2100,"pected":2101,"BT":2102,"MLO":2103,"Suspicion":2104,"ob":2105,"ĺ모":2106,"order":2107,"Ġdefinitely":2108,"ĠPro":2109,"Ġintrammary":2110,"ancy":2111,"imal":2112,"sti":2113,"©ëĭĪëĭ¤":2114,"ìĨĮ":2115,"ving":2116,"ĠĊĊ":2117,"esp":2118,"isodense":2119,"pot":2120,"Ġwall":2121,"Ġanterior":2122,"Ġíģ":2123,"Ġë¹ĦêµIJìĭľ":2124,"matoma":2125,"containing":2126,"Ġarchitecture":2127,"form":2128,"Microcalcification":2129,"Asym":2130,"Is":2131,"pper":2132,"Ġ)":2133,"Ġk":2134,"mammo":2135,"ĠMA":2136,"ĠMM":2137,"sta":2138,"utli":2139,"Ġbiopsi":2140,"ìŀIJ":2141,"++":2142,"AB":2143,"ĠV":2144,"till":2145,"ser":2146,"Not":2147,"Ġthem":2148,"Ġespe":2149,"Ġequal":2150,"Ġdilated":2151,"Ġì¢":2152,"ĠLNE":2153,"Ġcompression":2154,"not":2155,"Ġheterogenously":2156,"ĠIncreased":2157,"Ġducts":2158,"Ġbreats":2159,"Ġmarginated":2160,"Ġ(<-":2161,"Ġbranching":2162,"ĢìľĦ":2163,"ë§Į":2164,"Ġscar":2165,"ASx":2166,"Ġìĭľíĸī":2167,"orderline":2168,"Ġespecially":2169,"52":2170,"inc":2171,"calcification":2172,"Ġspot":2173,"rous":2174,"ĠDBT":2175,"Ġìĥģ":2176,"Ġpossible":2177,"Ġshows":2178,"ĠIII":2179,"Ġinvolving":2180,"Develop":2181,"Ġchest":2182,"utliple":2183,"FCC":2184,"LN":2185,"eb":2186,"om":2187,"rge":2188,"su":2189,"ume":2190,"ë¦":2191,"ë¬":2192,"ë©°":2193,"sel":2194,"Ġì°":2195,"ĠTwo":2196,"opple":2197,"ĠìĿ´":2198,"Ġparti":2199,"ĠíĻķ":2200,"Ġì¦Ŀê°Ģ":2201,"fat":2202,"ken":2203,"some":2204,"sub":2205,"tly":2206,"ĠAt":2207,"Īĺ":2208,"cing":2209,"Ġinverted":2210,"Ġfo":2211,"Ġstill":2212,"Ġdermal":2213,"ĠMass":2214,"essel":2215,"symmetries":2216,"¼ë¶":2217,"Ġíı":2218,"Ġincrease":2219,"Ġ>>":2220,"Ġdetected":2221,"Ġtaken":2222,"Ġmicrocalcifcations":2223,"Ġmicor":2224,"ĠìĦĿíļĮíĻĶ":2225,"Circumscribed":2226,"formity":2227,"oppler":2228,"Feb":2229,"Jan":2230,"Mar":2231,"ì´":2232,"Ġíķĺ":2233,"Ġaxil":2234,"Ġì¡°":2235,"ĠìĨĮ견":2236,"Ġenh":2237,"ê°Ħ":2238,"Ġ본ìĽIJ":2239,"uctal":2240,"Ġincluded":2241,"Ġhamartoma":2242,"Ġê°ĢëĬ¥ìĦ±":2243,"Ġcorrelation":2244,"Ġmalignancy":2245,"Ġmetasta":2246,"¼ë¶Ģ":2247,"que":2248,"fir":2249,"dete":2250,"Ġcla":2251,"sist":2252,"Ġspic":2253,"ĠRe":2254,"terval":2255,"terial":2256,"corre":2257,"¼ë¡ľ":2258,"prominent":2259,"Ħì¹ĺ":2260,"newly":2261,"Ġgroups":2262,"ĠUpper":2263,"ĠMRI":2264,"Ġmicrocalcificati":2265,"Ġretromammary":2266,"GIII":2267,"Ġreviewed":2268,"ì¶Ķê°Ģ":2269,"Ġknown":2270,"Ġbiopsied":2271,"sistent":2272,",.":2273,"ext":2274,"right":2275,"sp":2276,"ved":2277,"ëĵ":2278,"ijľ":2279,"ķĮ":2280,"ĺìŀIJ":2281,"mainly":2282,"tiny":2283,"calci":2284,"Ġmag":2285,"ention":2286,"arge":2287,"ĠìĤ¬":2288,"Ġamorph":2289,"ê²Į":2290,"ìľ¼ë©°":2291,"ëªħ":2292,"ficial":2293,"Ġmalignant":2294,"Diagnostic":2295,"ather":2296,"Ġscanty":2297,"ĠMAM":2298,"firmed":2299,"99":2300,"Equivocal":2301,"ate":2302,"be":2303,"mme":2304,"Ġwh":2305,"cific":2306,"heter":2307,"catheter":2308,"inimal":2309,"ĠSl":2310,"Ġfindings":2311,"Ġvessel":2312,"볤":2313,"Ġê´Ģì°°ëIJĺ":2314,"ĠìĹIJìĦľ":2315,"Ġëĭ¤":2316,")->":2317,"Previous":2318,"asx":2319,"bro":2320,"cl":2321,"disappeared":2322,"global":2323,"uge":2324,"©´":2325,"graphy":2326,"Ġmed":2327,"tively":2328,"Ġexam":2329,"Ġdeformity":2330,"Ġ03":2331,"Ġcalcifiaction":2332,"ums":2333,"ëIJľ":2334,"Magni":2335,"ì§ģ":2336,"ìĽĶ":2337,"ĠìĿ´ìĥģ":2338,"Ġì´¬ìĺģ":2339,"matous":2340,"Ġtail":2341,"를":2342,"detection":2343,"entioned":2344,"Ġmedi":2345,"Im":2346,"Non":2347,"af":2348,"ance":2349,"asymmetric":2350,"ist":2351,"Ġê³ł":2352,"ijìĽIJ":2353,"Ġnow":2354,"Ġhematoma":2355,"Ġìķ½":2356,"Ħìŀ":2357,"ëıĻ":2358,"ĠìľĦì¹ĺ":2359,"Ġdeveloping":2360,"Ġìłķ":2361,"Ġì¶Ķìłķ":2362,"Ġmetallic":2363,"olucent":2364,"Ġê²ĥìľ¼ë¡ľ":2365,"Ġsuperficial":2366,"Isodense":2367,"Ġpartially":2368,"affin":2369,"Jul":2370,"Linear":2371,"cle":2372,"ductal":2373,"ect":2374,"stion":2375,"slightly":2376,"well":2377,"Ġup":2378,"cated":2379,"city":2380,"Nov":2381,"gradeC":2382,"Ġ(-":2383,"Ġli":2384,"Ġnodue":2385,"Ġrather":2386,"Ġequivocal":2387,"ari":2388,"Ġcalcificat":2389,"ìĿ¼":2390,"ĠFU":2391,"ĠAx":2392,"ìĹĪ":2393,"2009":2394,"Ġmicrocalcifiaction":2395,"ture":2396,"Ġasymmety":2397,"Ġclusterd":2398,"ìķĦ":2399,"Ġë¶ĢìľĦ":2400,"total":2401,"Ġëļľëł·íķĺì§Ģ":2402,"Ġsuspected":2403,"Ġaxillar":2404,"ĠMAMMO":2405,"Aug":2406,"FA":2407,"Post":2408,"axilla":2409,"faint":2410,"tr":2411,"mar":2412,"mation":2413,"Ġsmo":2414,"Ġscat":2415,"ĠRound":2416,"aphic":2417,"tated":2418,"rial":2419,"Ġmicrocalcs":2420,"ĠëĤ":2421,"lobulated":2422,"ĠIrregular":2423,"ìĿ´ìĥģ":2424,"Ġtypically":2425,"ìĸ´ì":2426,"Ġnegat":2427,"ë³´ëĭ¤":2428,"umerous":2429,"correlated":2430,"ijľìĭľ":2431,"Apr":2432,"NU":2433,"ch":2434,"cy":2435,"iop":2436,"mn":2437,"rh":2438,"und":2439,"ump":2440,"ëij":2441,"ĮĢì":2442,"Ġmammmo":2443,"Ġpromin":2444,"ĠDoppler":2445,"Ġmicrocalcfication":2446,"Ġmicrocalcfiications":2447,"marked":2448,"íķĺìĺ":2449,"Ġhyperpla":2450,"Ġasymmery":2451,"ëIJĺìĸ´":2452,"Probably":2453,"Ġë³ĢíĻĶìĹĨ":2454,"ĠCategory":2455,"Ġsymmetry":2456,"Ġë§ĺ모":2457,"Ġwhole":2458,"NUH":2459,"Ext":2460,"Limited":2461,"MR":2462,"cla":2463,"crease":2464,"ibro":2465,"mi":2466,"ure":2467,"¯¸":2468,"cate":2469,"mained":2470,"rev":2471,"Ġmaterial":2472,"Ġaden":2473,"Grc":2474,"ĠMGìĹIJìĦľ":2475,"leomorphic":2476,"Ġserial":2477,"ine":2478,"arc":2479,"ĠDisappeared":2480,"Ġ04":2481,"ĠviewìĹIJìĦľ":2482,"ĠNodule":2483,"Ġëı":2484,"Ġve":2485,"luding":2486,"ĠOther":2487,"Heterogeneous":2488,"ì§Ħ":2489,"ĠEnlarged":2490,"Ġbreat":2491,"Interval":2492,"ĠìĻĢ":2493,"Ġedematous":2494,"Ġradiolucent":2495,"ĠLOQ":2496,"ĠìĥĿê°ģëIJ¨":2497,"ĠIDC":2498,"Ġmedial":2499,"mnant":2500,"Ġhyperplasia":2501,"+),":2502,"AP":2503,"Mild":2504,"coarse":2505,"dx":2506,"few":2507,"gative":2508,"ifcation":2509,"mly":2510,"ë©´":2511,"remly":2512,"Ġinser":2513,"Ġmentioned":2514,"Ġben":2515,"lying":2516,"ĠLAP":2517,"alr":2518,"terd":2519,"minal":2520,"Ġrelated":2521,"Ġcalcifiation":2522,"íķ©ëĭĪëĭ¤":2523,"early":2524,"ctions":2525,"Ġíijľìĭľ":2526,"ë³ijìĽIJ":2527,"íĻķ":2528,"ë°ĺ":2529,"Ġcalcifcations":2530,"ficiation":2531,"ĠìĸijìĦ±":2532,"ĠìĿĺìĭ¬":2533,"Ġvisualization":2534,"ĠVAB":2535,"iopsy":2536,"ëijIJ":2537,"bilateral":2538,"gg":2539,"rm":2540,"Ġqu":2541,"Ġay":2542,"enlarged":2543,"ond":2544,"Ġdens":2545,"left":2546,"ĠCoarse":2547,"Ġdep":2548,"Ġdeline":2549,"ĠDense":2550,"One":2551,"Ġvari":2552,"vel":2553,"Ġsuggested":2554,"Ġë¹ĦêµIJíķĺìŬ":2555,"matched":2556,"Ġparaffin":2557,"Ġcorrelating":2558,"Ġsmaller":2559,"including":2560,"ĠíĻķìĿ¸":2561,"fatty":2562,"subareolar":2563,"ì¶Ķê°Ģê²ĢìĤ¬":2564,"umpy":2565,"43":2566,"Fat":2567,"age":2568,"biopsy":2569,"ctasia":2570,"ex":2571,"milk":2572,"¬íķ¨":2573,"Ġcatheter":2574,"Ġmat":2575,"Ġam":2576,"visualiz":2577,"Ġfil":2578,"Ġnor":2579,"Ġexten":2580,"Ġside":2581,"Ġdiff":2582,"ĠSlightly":2583,"art":2584,"Ġremnant":2585,"ĠMam":2586,"osis":2587,"Ġë¡ľ":2588,"Ġcircums":2589,"Ġplemo":2590,"Ġcentered":2591,"íķł":2592,"Ġvs":2593,"ìľł":2594,"active":2595,"diffusely":2596,"ĠHG":2597,"ĠProbably":2598,"sugges":2599,"Ġsmooth":2600,"+/":2601,"ary":2602,"gen":2603,"ila":2604,"ior":2605,"ifications":2606,"uminal":2607,"ì¡°":2608,"íĦ":2609,"íĽĦ":2610,"Ġmain":2611,"Ġover":2612,"one":2613,"Ġinn":2614,"Ġfoci":2615,"ĠbreastìĹIJ":2616,"ĠRLC":2617,"Ġrange":2618,"ĠGI":2619,"ummation":2620,"Ġisodensity":2621,"Ģì§":2622,"ĠíĮ":2623,"Ġíĺ":2624,"Ġê±°":2625,"Probable":2626,"Ġë¶Ħ":2627,"Ġê´Ģì°°ëIJ¨":2628,"Ġvisualized":2629,"ìĸijìĦ±":2630,"Ġíģ¬":2631,"Ġdepth":2632,"íĦ°":2633,"HER":2634,"Ill":2635,"MU":2636,"Pleomorphic":2637,"ical":2638,"nt":2639,"olo":2640,"previously":2641,"ê·":2642,"Ġnd":2643,"ŀĪ":2644,"GrC":2645,"ĠMGìĻĢ":2646,"Ġnec":2647,"arenchymal":2648,"ĠSNUH":2649,"arly":2650,"ĠëIJ":2651,"iso":2652,"Ġ---->":2653,"Ġê¸":2654,"Ġìĸ´":2655,"Ġneedle":2656,"ficiations":2657,"Ġìĸij측":2658,"Developing":2659,"Ġì¡°ì§ģ":2660,"Ġìķ½ê°Ħ":2661,"ĠëıĻ":2662,"rmis":2663,"Ġfilm":2664,"Hx":2665,"Some":2666,"prev":2667,"ª½":2668,"ìĶ":2669,"category":2670,"Ġclu":2671,"sing":2672,"rosis":2673,"vie":2674,"Ġextremly":2675,"Ġdisc":2676,"Ġdecrease":2677,"Ġdermis":2678,"ĠFibro":2679,"ĠMammography":2680,"íķ´ì":2681,"ĠìĿ¸":2682,"Ġlobulating":2683,"(-).":2684,"Ġmets":2685,"Ġë³´ìĿ´ëĬĶ":2686,"urther":2687,"Ġmetalic":2688,"Ġmacrocalcification":2689,"ìļ°":2690,"리":2691,"mmetric":2692,"Ġvery":2693,".>":2694,"Asymmetries":2695,"Jun":2696,"Lob":2697,"oin":2698,"pathy":2699,"rant":2700,"yr":2701,"ypical":2702,"Ħľ":2703,"Īì":2704,"įĶ":2705,"ency":2706,"gram":2707,"Ġmutliple":2708,"Ġdenist":2709,"Ġshell":2710,"ĠRI":2711,"Ġmammopathy":2712,"Ġ199":2713,"ĠBreast":2714,"Ġpromi":2715,"ĠDdx":2716,"pleomorphic":2717,"Ġì§":2718,"Ġcalcifiations":2719,"ĠNE":2720,"ĠëįĶ":2721,"notated":2722,"ĠAbout":2723,"pos":2724,"poma":2725,"Ġcalcifci":2726,"ëĭ¹":2727,"opathy":2728,"ĠìĿ¼ë¶Ģ":2729,"circles":2730,"Ġunmatched":2731,"Ġcacifications":2732,"Ġectasia":2733,"ìĺ¤":2734,"dition":2735,"Ġhuge":2736,"Ġroudn":2737,"ĠCalcifications":2738,"Ġ모":2739,"Ġì°¸":2740,"calcium":2741,"Ħìŀ¬":2742,"stionable":2743,"ĠíĮIJ":2744,"ìĶ©":2745,"Ġdenisty":2746,"Oct":2747,"Typical":2748,"¼ì¹ĺ":2749,"ë£":2750,"ëĤ":2751,"íĺ":2752,"Ġminimal":2753,"Ġbeni":2754,"Ġfurther":2755,"ĠLL":2756,"Ġlevel":2757,"Ġchan":2758,"ĠSubtle":2759,"ĠDW":2760,"ulging":2761,"Ġ02":2762,"ĠFB":2763,"2003":2764,"2019":2765,"Ġpersistent":2766,"Ġasymmetricity":2767,"ìľłë°©":2768,"Ġnumbers":2769,"Ġmicrolobulated":2770,"ìķ½":2771,"Ġintraductal":2772,"ĠDiffusely":2773,"Ġìłľ":2774,"rocalcifications":2775,"specific":2776,"Ġmacrocalcifications":2777,"Ġmicorcalcifications":2778,"extent":2779,"Ġ(-)":2780,"Ġlipoma":2781,"Ġmaterials":2782,"Ġquad":2783,"Ġdelineated":2784,"Ģì§Ħ":2785,"olog":2786,"linear":2787,"£¼":2788,"¶Į":2789,"ê´":2790,"ëŀ":2791,"ëĮĢì":2792,"íŀĪ":2793,"Ġul":2794,"Ģëįĺ":2795,"residual":2796,"Grd":2797,"Ġfade":2798,"latively":2799,"Ġso":2800,"ĠLLC":2801,"ĠLuminal":2802,"Ġsege":2803,"Ġlumpy":2804,"Ġchagn":2805,"Ġalrge":2806,"Ġcom":2807,"plete":2808,"ĠLUIQ":2809,"ualted":2810,"omatic":2811,"opcorn":2812,"ê²ł":2813,"ĠíĽĦ":2814,"ë¶ĢíĦ°":2815,"Nodules":2816,"Ġclusters":2817,"Ġê¶Į":2818,"Ġasses":2819,"ptomatic":2820,"ìķĶ":2821,"Ġë¶Ī":2822,"dies":2823,"Ġìĸijìĥģ":2824,"Ġmicrocalcificaions":2825,"Decrease":2826,"ĠIntramammary":2827,"ĠCalcified":2828,"Asymptomatic":2829,"Ġíı¬íķ¨":2830,"Ġnegatvie":2831,"Ġadenosis":2832,"architectural":2833,"isolated":2834,"ë£Į":2835,"Ġquadrant":2836,"Ġchagne":2837,"+).":2838,"=>":2839,"cystic":2840,"ite":2841,"lum":2842,"mid":2843,"tour":2844,"wsi":2845,"yn":2846,"ê±°":2847,"ë²":2848,"Ġ#":2849,"Ĭ¹":2850,"ĽIJ":2851,"Ġmole":2852,"Ġbre":2853,"Ġfound":2854,"Ġmicrocalfications":2855,"ĠasymmetryëĬĶ":2856,"ancing":2857,"ĠSegmental":2858,"Ġrepla":2859,"ĠGlobal":2860,"ĠìĪĺ":2861,"ĠĊĊĊ":2862,"Ġëĵ":2863,"ĠëĮĢ":2864,"Ġ..":2865,"Ġclusted":2866,"본ìĽIJ":2867,"íĻĺìŀIJ":2868,"Ġmicroal":2869,"ëıħ":2870,"Remained":2871,"ĠHRT":2872,"Ġ(<--":2873,"confirmed":2874,"Ġë³´ìĿ´ëįĺ":2875,"Ġradio":2876,"ĠNewly":2877,"Ġì¢ĭ":2878,"문":2879,"ì´¬ìĺģ":2880,"Ġë³ĢíĻĶìĹĨìĿĮ":2881,"Ġvariable":2882,"except":2883,"Ġmatched":2884,"Ġextending":2885,"Ġì¡°ì§ģê²ĢìĤ¬":2886,"posterior":2887,"Ġsegemental":2888,"):":2889,"Foreign":2890,"NO":2891,"__":2892,"cyst":2893,"par":2894,"tat":2895,"va":2896,"¸ê¸":2897,"Īë¡ľ":2898,"Ŀ¼ë":2899,"tie":2900,"Ġadn":2901,"ĠMGs":2902,"Ġby":2903,"Ġbulging":2904,"Normal":2905,"era":2906,"Ġmammotome":2907,"apil":2908,"Ġ2000":2909,"Ġtub":2910,"Ġamorh":2911,"loma":2912,"Ġtotal":2913,"Ġhypoe":2914,"ccessary":2915,"íķĺëĬĶ":2916,"ĠìķĪ":2917,"ĠìĹ°":2918,"ĠmicroCa":2919,"Ġpuncate":2920,"Ġenlargements":2921,"Ġpartly":2922,"íĸ¥":2923,"Ġê°IJ":2924,"omplete":2925,"Ġmetastatic":2926,"ifcations":2927,"Ġinsertion":2928,"Ġdensse":2929,"visualized":2930,"Ġnecrosis":2931,"wsie":2932,"¸ê¸ī":2933,"apilloma":2934,"Ġtubular":2935,"(+)":2936,",,":2937,"Nearly":2938,"em":2939,"ive":2940,"summation":2941,"¡ìĻĢ":2942,"¯Ģ":2943,"¹Į":2944,"ħëĭĪëĭ¤":2945,"ocaliz":2946,"tectasia":2947,"ĠinL":2948,"Ġcl":2949,"Ġcell":2950,"hetero":2951,"Ġpor":2952,"Ġmicrocalfication":2953,"Ġslight":2954,"ĠCT":2955,"ĠRSA":2956,"ature":2957,"symetry":2958,"annotated":2959,"Ġcalcfication":2960,"Ġabn":2961,"ualr":2962,"ìĹIJëıĦ":2963,"ĠLUM":2964,"ìĦł":2965,"voluting":2966,"íķĺê³ł":2967,"Ġcontour":2968,"Ġìķ¡ìĻĢ":2969,"uctectasia":2970,"Ġcalcificaion":2971,"Ġcalcificaions":2972,"Ġë³´ìĺ":2973,"Ġsubcut":2974,"athered":2975,"Ġ못":2976,"¸ëĿ¼ë":2977,"Ġenhance":2978,"Ġenhancing":2979,"Ġspicualted":2980,"Ġê³łìķ½":2981,"Extremely":2982,"MRI":2983,"ê·¸ëĿ¼ë":2984,"Ġreplacing":2985,"Ġê°IJìĨĮ":2986,"¯Ģë¡ľ":2987,"ê·¸ëĿ¼ë¯¸":2988,"50":2989,"Popcorn":2990,"ase":2991,"cribed":2992,"ere":2993,"mild":2994,"ê¹Į":2995,"ëĮĢ":2996,"Ġ/":2997,"ľê²¬":2998,"tiple":2999}
|