Deploy TinyModel1 from GitHub Actions
Browse files- README.md +99 -16
- TinyModel1Image.png +0 -0
- artifact.json +7 -1
- model.safetensors +1 -1
- tokenizer.json +568 -568
README.md
CHANGED
|
@@ -1,38 +1,121 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: transformers
|
|
|
|
| 4 |
datasets:
|
| 5 |
- ag_news
|
|
|
|
|
|
|
| 6 |
tags:
|
| 7 |
- tiny
|
|
|
|
| 8 |
- text-classification
|
| 9 |
- ag-news
|
| 10 |
---
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
# TinyModel1
|
| 13 |
|
| 14 |
-
TinyModel1 is a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
##
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
|
|
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
##
|
| 31 |
|
| 32 |
-
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
## Intended use
|
| 36 |
|
| 37 |
-
-
|
| 38 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: transformers
|
| 4 |
+
pipeline_tag: text-classification
|
| 5 |
datasets:
|
| 6 |
- ag_news
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
tags:
|
| 10 |
- tiny
|
| 11 |
+
- bert
|
| 12 |
- text-classification
|
| 13 |
- ag-news
|
| 14 |
---
|
| 15 |
|
| 16 |
+
<div align="center">
|
| 17 |
+
<img src="TinyModel1Image.png" alt="TinyModel1" width="560" />
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
# TinyModel1
|
| 21 |
|
| 22 |
+
**TinyModel1** is a compact **encoder** model for **news topic classification**, trained from scratch on the [AG News](https://huggingface.co/datasets/fancyzhx/ag_news) dataset. It targets fast CPU/GPU inference, simple deployment behind a router or API, and use as a **baseline** before larger or domain-specific models.
|
| 23 |
+
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
## Model summary
|
| 27 |
+
|
| 28 |
+
| | |
|
| 29 |
+
|:--|:--|
|
| 30 |
+
| **Task** | Text classification (single-label, 4 classes) |
|
| 31 |
+
| **Labels** | World, Sports, Business, Sci/Tech |
|
| 32 |
+
| **Architecture** | Tiny BERT-style encoder (`BertForSequenceClassification`) |
|
| 33 |
+
| **Parameters** | 1,339,268 (~1.34M) |
|
| 34 |
+
| **Max sequence length** | 128 tokens (training & inference) |
|
| 35 |
+
| **Framework** | [Transformers](https://github.com/huggingface/transformers) · Safetensors |
|
| 36 |
+
|
| 37 |
+
---
|
| 38 |
+
|
| 39 |
+
## Model overview
|
| 40 |
+
|
| 41 |
+
This release fits a **small footprint** so you can run batch or interactive classification without heavy GPUs. Training uses a WordPiece tokenizer fit on the training split and a shallow BERT stack suited to short news sentences.
|
| 42 |
|
| 43 |
+
### **Core capabilities**
|
| 44 |
|
| 45 |
+
- **Topic routing** — assign one of four coarse news categories for search, feeds, or moderation triage.
|
| 46 |
+
- **Low latency** — small parameter count keeps inference suitable for edge and serverless setups.
|
| 47 |
+
- **Fine-tuning base** — swap labels or add data for your domain while keeping the same architecture.
|
| 48 |
|
| 49 |
+
---
|
| 50 |
+
|
| 51 |
+
## Training
|
| 52 |
+
|
| 53 |
+
| Setting | Value |
|
| 54 |
+
|:--|:--|
|
| 55 |
+
| **Train samples** | 3000 |
|
| 56 |
+
| **Eval samples** | 600 |
|
| 57 |
+
| **Epochs** | 2 |
|
| 58 |
+
| **Batch size** | 16 |
|
| 59 |
+
| **Learning rate** | 0.0001 |
|
| 60 |
+
| **Optimizer** | AdamW |
|
| 61 |
+
|
| 62 |
+
---
|
| 63 |
|
| 64 |
+
## Evaluation
|
| 65 |
+
|
| 66 |
+
| Metric | Value |
|
| 67 |
+
|:--|:--|
|
| 68 |
+
| **Eval accuracy** | 0.5333 |
|
| 69 |
+
| **Final train loss** | 1.1592 |
|
| 70 |
+
|
| 71 |
+
Metrics are computed on the held-out eval split configured above; treat them as a **sanity-check baseline**, not a production SLA.
|
| 72 |
+
|
| 73 |
+
---
|
| 74 |
|
| 75 |
+
## Getting started
|
| 76 |
|
| 77 |
+
### Inference with `transformers`
|
| 78 |
+
|
| 79 |
+
```python
|
| 80 |
+
from transformers import pipeline
|
| 81 |
+
|
| 82 |
+
clf = pipeline(
|
| 83 |
+
"text-classification",
|
| 84 |
+
model="TinyModel1", # or local path after save
|
| 85 |
+
tokenizer="TinyModel1",
|
| 86 |
+
top_k=None,
|
| 87 |
+
)
|
| 88 |
+
text = "Markets rose after the central bank held rates steady."
|
| 89 |
+
print(clf(text))
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
Use `top_k=None` (or your Transformers version’s equivalent) to obtain scores for **all** labels. Replace `"TinyModel1"` with your Hugging Face model id (for example `HyperlinksSpace/TinyModel1`) when loading from the Hub.
|
| 93 |
+
|
| 94 |
+
---
|
| 95 |
+
|
| 96 |
+
## Training data
|
| 97 |
+
|
| 98 |
+
- **Dataset:** [fancyzhx/ag_news](https://huggingface.co/datasets/fancyzhx/ag_news) (4-class news topics).
|
| 99 |
+
- **Preprocessing:** tokenizer trained on training texts; sequences truncated to 128 tokens.
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
|
| 103 |
## Intended use
|
| 104 |
|
| 105 |
+
- Prototyping **routing**, **tagging**, and **dashboard** features over English news-style text.
|
| 106 |
+
- Teaching and benchmarking small-classification setups.
|
| 107 |
+
- Starting point for **domain adaptation** (finance, sports, etc.) with your own labels.
|
| 108 |
+
|
| 109 |
+
---
|
| 110 |
+
|
| 111 |
+
## Limitations
|
| 112 |
+
|
| 113 |
+
- **Accuracy** is modest by design; do not rely on it for high-stakes decisions without validation on your data.
|
| 114 |
+
- **English-oriented** news wording; other languages or social-style text may degrade.
|
| 115 |
+
- **Four fixed classes**; not suitable as a general-purpose language model.
|
| 116 |
+
|
| 117 |
+
---
|
| 118 |
+
|
| 119 |
+
## License
|
| 120 |
+
|
| 121 |
+
This model is released under the **Apache 2.0** license (see repository `LICENSE` where applicable).
|
TinyModel1Image.png
ADDED
|
artifact.json
CHANGED
|
@@ -11,5 +11,11 @@
|
|
| 11 |
"Sci/Tech"
|
| 12 |
],
|
| 13 |
"eval_accuracy": 0.5333,
|
| 14 |
-
"train_loss": 1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
|
|
|
| 11 |
"Sci/Tech"
|
| 12 |
],
|
| 13 |
"eval_accuracy": 0.5333,
|
| 14 |
+
"train_loss": 1.1592,
|
| 15 |
+
"num_parameters": 1339268,
|
| 16 |
+
"max_train_samples": 3000,
|
| 17 |
+
"max_eval_samples": 600,
|
| 18 |
+
"epochs": 2,
|
| 19 |
+
"batch_size": 16,
|
| 20 |
+
"learning_rate": 0.0001
|
| 21 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5361600
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cba14b26a613ac7b40a9a9c83ce169e36cfca8c69b642d27354dd585324f676a
|
| 3 |
size 5361600
|
tokenizer.json
CHANGED
|
@@ -213,57 +213,57 @@
|
|
| 213 |
"x": 57,
|
| 214 |
"y": 58,
|
| 215 |
"z": 59,
|
| 216 |
-
"##
|
| 217 |
-
"##
|
| 218 |
-
"##
|
| 219 |
-
"##
|
| 220 |
"##s": 64,
|
| 221 |
-
"##
|
| 222 |
-
"##
|
| 223 |
-
"##
|
| 224 |
-
"##
|
| 225 |
-
"##
|
| 226 |
-
"##
|
| 227 |
-
"##
|
| 228 |
-
"##
|
| 229 |
-
"##
|
| 230 |
-
"##
|
| 231 |
-
"##
|
| 232 |
-
"##
|
| 233 |
-
"##
|
| 234 |
-
"##
|
| 235 |
-
"##
|
| 236 |
-
"##
|
| 237 |
-
"##
|
| 238 |
-
"##
|
| 239 |
-
"##
|
| 240 |
-
"##
|
| 241 |
-
"##
|
| 242 |
-
"##
|
| 243 |
-
"##
|
| 244 |
-
"##
|
| 245 |
-
"##
|
| 246 |
-
"##
|
| 247 |
-
"##
|
| 248 |
-
"##
|
| 249 |
-
"##
|
| 250 |
-
"##
|
| 251 |
-
"##
|
| 252 |
-
"##
|
| 253 |
-
"##
|
| 254 |
"##-": 98,
|
| 255 |
"##)": 99,
|
| 256 |
-
"##
|
| 257 |
"##/": 101,
|
| 258 |
-
"##
|
| 259 |
-
"##
|
| 260 |
-
"##
|
| 261 |
-
"##
|
| 262 |
-
"##
|
| 263 |
-
"##
|
| 264 |
-
"##
|
| 265 |
-
"##
|
| 266 |
-
"##
|
| 267 |
"##er": 111,
|
| 268 |
"th": 112,
|
| 269 |
"##in": 113,
|
|
@@ -493,8 +493,8 @@
|
|
| 493 |
"##ick": 337,
|
| 494 |
"##out": 338,
|
| 495 |
"cr": 339,
|
| 496 |
-
"##
|
| 497 |
-
"##
|
| 498 |
"two": 342,
|
| 499 |
"go": 343,
|
| 500 |
"no": 344,
|
|
@@ -586,8 +586,8 @@
|
|
| 586 |
"##one": 430,
|
| 587 |
"##urs": 431,
|
| 588 |
"##ations": 432,
|
| 589 |
-
"##
|
| 590 |
-
"##
|
| 591 |
"fl": 435,
|
| 592 |
"inv": 436,
|
| 593 |
"one": 437,
|
|
@@ -690,11 +690,11 @@
|
|
| 690 |
"##ood": 534,
|
| 691 |
"li": 535,
|
| 692 |
"tech": 536,
|
| 693 |
-
"##
|
| 694 |
-
"##
|
| 695 |
-
"##
|
| 696 |
-
"##
|
| 697 |
-
"##
|
| 698 |
"week": 542,
|
| 699 |
"##ason": 543,
|
| 700 |
"##ounc": 544,
|
|
@@ -761,8 +761,8 @@
|
|
| 761 |
"##ely": 605,
|
| 762 |
"ass": 606,
|
| 763 |
"news": 607,
|
| 764 |
-
"##
|
| 765 |
-
"##
|
| 766 |
"##orts": 610,
|
| 767 |
"afp": 611,
|
| 768 |
"milit": 612,
|
|
@@ -782,8 +782,8 @@
|
|
| 782 |
"stocks": 626,
|
| 783 |
"red": 627,
|
| 784 |
"ter": 628,
|
| 785 |
-
"##
|
| 786 |
-
"##
|
| 787 |
"fed": 631,
|
| 788 |
"par": 632,
|
| 789 |
"shar": 633,
|
|
@@ -866,8 +866,8 @@
|
|
| 866 |
"post": 710,
|
| 867 |
"##ran": 711,
|
| 868 |
"billion": 712,
|
| 869 |
-
"##
|
| 870 |
-
"##
|
| 871 |
"minist": 715,
|
| 872 |
"market": 716,
|
| 873 |
"say": 717,
|
|
@@ -890,10 +890,10 @@
|
|
| 890 |
"##ards": 734,
|
| 891 |
"years": 735,
|
| 892 |
"help": 736,
|
| 893 |
-
"##
|
| 894 |
"##ual": 738,
|
| 895 |
-
"##
|
| 896 |
-
"##
|
| 897 |
"near": 741,
|
| 898 |
"launch": 742,
|
| 899 |
"##int": 743,
|
|
@@ -914,8 +914,8 @@
|
|
| 914 |
"col": 758,
|
| 915 |
"day": 759,
|
| 916 |
"jap": 760,
|
| 917 |
-
"##
|
| 918 |
-
"##
|
| 919 |
"##ony": 763,
|
| 920 |
"champ": 764,
|
| 921 |
"aw": 765,
|
|
@@ -988,8 +988,8 @@
|
|
| 988 |
"killed": 832,
|
| 989 |
"home": 833,
|
| 990 |
"job": 834,
|
| 991 |
-
"##
|
| 992 |
-
"##
|
| 993 |
"##inian": 837,
|
| 994 |
"##orn": 838,
|
| 995 |
"##ures": 839,
|
|
@@ -998,8 +998,8 @@
|
|
| 998 |
"ca": 842,
|
| 999 |
"fall": 843,
|
| 1000 |
"tra": 844,
|
| 1001 |
-
"##
|
| 1002 |
-
"##
|
| 1003 |
"##ants": 847,
|
| 1004 |
"ins": 848,
|
| 1005 |
"plans": 849,
|
|
@@ -1049,8 +1049,8 @@
|
|
| 1049 |
"larg": 893,
|
| 1050 |
"miss": 894,
|
| 1051 |
"##ner": 895,
|
| 1052 |
-
"##
|
| 1053 |
-
"##
|
| 1054 |
"##eless": 898,
|
| 1055 |
"what": 899,
|
| 1056 |
"##ense": 900,
|
|
@@ -1111,8 +1111,8 @@
|
|
| 1111 |
"ed": 955,
|
| 1112 |
"loss": 956,
|
| 1113 |
"publ": 957,
|
| 1114 |
-
"##
|
| 1115 |
-
"##
|
| 1116 |
"##ving": 960,
|
| 1117 |
"stre": 961,
|
| 1118 |
"##use": 962,
|
|
@@ -1133,12 +1133,12 @@
|
|
| 1133 |
"wind": 977,
|
| 1134 |
"add": 978,
|
| 1135 |
"general": 979,
|
| 1136 |
-
"
|
| 1137 |
-
"
|
| 1138 |
"san": 982,
|
| 1139 |
-
"##
|
| 1140 |
"##lud": 984,
|
| 1141 |
-
"##
|
| 1142 |
"##ons": 986,
|
| 1143 |
"##ities": 987,
|
| 1144 |
"##eld": 988,
|
|
@@ -1151,8 +1151,8 @@
|
|
| 1151 |
"her": 995,
|
| 1152 |
"way": 996,
|
| 1153 |
"##ned": 997,
|
| 1154 |
-
"##
|
| 1155 |
-
"##
|
| 1156 |
"stock": 1000,
|
| 1157 |
"leader": 1001,
|
| 1158 |
"network": 1002,
|
|
@@ -1171,8 +1171,8 @@
|
|
| 1171 |
"im": 1015,
|
| 1172 |
"put": 1016,
|
| 1173 |
"tit": 1017,
|
| 1174 |
-
"##
|
| 1175 |
-
"##
|
| 1176 |
"##itch": 1020,
|
| 1177 |
"##ops": 1021,
|
| 1178 |
"amp": 1022,
|
|
@@ -1188,10 +1188,10 @@
|
|
| 1188 |
"tick": 1032,
|
| 1189 |
"##eb": 1033,
|
| 1190 |
"##eep": 1034,
|
| 1191 |
-
"##
|
| 1192 |
-
"##
|
| 1193 |
-
"##
|
| 1194 |
-
"##
|
| 1195 |
"##ank": 1039,
|
| 1196 |
"##round": 1040,
|
| 1197 |
"##isco": 1041,
|
|
@@ -1207,8 +1207,8 @@
|
|
| 1207 |
"pc": 1051,
|
| 1208 |
"ver": 1052,
|
| 1209 |
"won": 1053,
|
| 1210 |
-
"##
|
| 1211 |
-
"##
|
| 1212 |
"##vers": 1056,
|
| 1213 |
"##ese": 1057,
|
| 1214 |
"them": 1058,
|
|
@@ -1225,8 +1225,8 @@
|
|
| 1225 |
"baghdad": 1069,
|
| 1226 |
"cust": 1070,
|
| 1227 |
"nas": 1071,
|
| 1228 |
-
"##
|
| 1229 |
-
"##
|
| 1230 |
"there": 1074,
|
| 1231 |
"##ects": 1075,
|
| 1232 |
"being": 1076,
|
|
@@ -1355,11 +1355,11 @@
|
|
| 1355 |
"many": 1199,
|
| 1356 |
"round": 1200,
|
| 1357 |
"ww": 1201,
|
| 1358 |
-
"##
|
| 1359 |
"##son": 1203,
|
| 1360 |
-
"##
|
| 1361 |
-
"##
|
| 1362 |
-
"##
|
| 1363 |
"##fat": 1207,
|
| 1364 |
"##ene": 1208,
|
| 1365 |
"##ication": 1209,
|
|
@@ -1460,8 +1460,8 @@
|
|
| 1460 |
"poss": 1304,
|
| 1461 |
"six": 1305,
|
| 1462 |
"tur": 1306,
|
| 1463 |
-
"##
|
| 1464 |
-
"##
|
| 1465 |
"##ject": 1309,
|
| 1466 |
"##ind": 1310,
|
| 1467 |
"##elf": 1311,
|
|
@@ -1475,11 +1475,11 @@
|
|
| 1475 |
"num": 1319,
|
| 1476 |
"tim": 1320,
|
| 1477 |
"your": 1321,
|
| 1478 |
-
"##
|
| 1479 |
"##ne": 1323,
|
| 1480 |
"##ior": 1324,
|
| 1481 |
-
"##
|
| 1482 |
-
"##
|
| 1483 |
"##erry": 1327,
|
| 1484 |
"##ats": 1328,
|
| 1485 |
"##ators": 1329,
|
|
@@ -1523,8 +1523,8 @@
|
|
| 1523 |
"lif": 1367,
|
| 1524 |
"past": 1368,
|
| 1525 |
"rul": 1369,
|
| 1526 |
-
"##
|
| 1527 |
-
"##
|
| 1528 |
"##info": 1372,
|
| 1529 |
"##iting": 1373,
|
| 1530 |
"##ised": 1374,
|
|
@@ -1656,13 +1656,13 @@
|
|
| 1656 |
"line": 1500,
|
| 1657 |
"sent": 1501,
|
| 1658 |
"soc": 1502,
|
| 1659 |
-
"##
|
| 1660 |
-
"##
|
| 1661 |
"##so": 1505,
|
| 1662 |
-
"##
|
| 1663 |
-
"##
|
| 1664 |
-
"##
|
| 1665 |
-
"##
|
| 1666 |
"##ws": 1510,
|
| 1667 |
"##ator": 1511,
|
| 1668 |
"##ida": 1512,
|
|
@@ -1691,8 +1691,8 @@
|
|
| 1691 |
"wall": 1535,
|
| 1692 |
"well": 1536,
|
| 1693 |
"yan": 1537,
|
| 1694 |
-
"##
|
| 1695 |
-
"##
|
| 1696 |
"##ites": 1540,
|
| 1697 |
"stra": 1541,
|
| 1698 |
"##veil": 1542,
|
|
@@ -1718,9 +1718,9 @@
|
|
| 1718 |
"men": 1562,
|
| 1719 |
"match": 1563,
|
| 1720 |
"val": 1564,
|
| 1721 |
-
"##
|
| 1722 |
"##port": 1566,
|
| 1723 |
-
"##
|
| 1724 |
"##van": 1568,
|
| 1725 |
"inf": 1569,
|
| 1726 |
"##ally": 1570,
|
|
@@ -1755,13 +1755,13 @@
|
|
| 1755 |
"lo": 1599,
|
| 1756 |
"mal": 1600,
|
| 1757 |
"ur": 1601,
|
| 1758 |
-
"##
|
| 1759 |
-
"##
|
| 1760 |
-
"##
|
| 1761 |
-
"##
|
| 1762 |
-
"##
|
| 1763 |
-
"##
|
| 1764 |
-
"##
|
| 1765 |
"##fact": 1609,
|
| 1766 |
"##ered": 1610,
|
| 1767 |
"##ench": 1611,
|
|
@@ -1796,11 +1796,11 @@
|
|
| 1796 |
"tenn": 1640,
|
| 1797 |
"vo": 1641,
|
| 1798 |
"want": 1642,
|
| 1799 |
-
"##
|
| 1800 |
"##mber": 1644,
|
| 1801 |
-
"##
|
| 1802 |
-
"##
|
| 1803 |
-
"##
|
| 1804 |
"##ward": 1648,
|
| 1805 |
"toky": 1649,
|
| 1806 |
"stop": 1650,
|
|
@@ -1839,10 +1839,10 @@
|
|
| 1839 |
"mail": 1683,
|
| 1840 |
"much": 1684,
|
| 1841 |
"outs": 1685,
|
| 1842 |
-
"##
|
| 1843 |
-
"##
|
| 1844 |
-
"##
|
| 1845 |
-
"##
|
| 1846 |
"##att": 1690,
|
| 1847 |
"anal": 1691,
|
| 1848 |
"##chester": 1692,
|
|
@@ -1884,13 +1884,13 @@
|
|
| 1884 |
"pur": 1728,
|
| 1885 |
"sn": 1729,
|
| 1886 |
"tv": 1730,
|
| 1887 |
-
"##
|
| 1888 |
-
"##
|
| 1889 |
-
"##
|
| 1890 |
-
"##
|
| 1891 |
-
"##
|
| 1892 |
-
"##
|
| 1893 |
-
"##
|
| 1894 |
"##atic": 1738,
|
| 1895 |
"##ative": 1739,
|
| 1896 |
"inform": 1740,
|
|
@@ -1938,16 +1938,16 @@
|
|
| 1938 |
"nations": 1782,
|
| 1939 |
"pil": 1783,
|
| 1940 |
"rise": 1784,
|
| 1941 |
-
"##
|
| 1942 |
-
"##
|
| 1943 |
-
"##
|
| 1944 |
-
"##
|
| 1945 |
-
"##
|
| 1946 |
"##ress": 1790,
|
| 1947 |
-
"##
|
| 1948 |
"##esh": 1792,
|
| 1949 |
-
"##
|
| 1950 |
-
"##
|
| 1951 |
"forces": 1795,
|
| 1952 |
"univers": 1796,
|
| 1953 |
"##rial": 1797,
|
|
@@ -1979,10 +1979,10 @@
|
|
| 1979 |
"rates": 1823,
|
| 1980 |
"rank": 1824,
|
| 1981 |
"xp": 1825,
|
| 1982 |
-
"##
|
| 1983 |
-
"##
|
| 1984 |
-
"##
|
| 1985 |
-
"##
|
| 1986 |
"##ink": 1830,
|
| 1987 |
"##ests": 1831,
|
| 1988 |
"##ater": 1832,
|
|
@@ -2157,15 +2157,15 @@
|
|
| 2157 |
"vot": 2001,
|
| 2158 |
"wound": 2002,
|
| 2159 |
"wild": 2003,
|
| 2160 |
-
"##
|
| 2161 |
-
"##
|
| 2162 |
-
"##
|
| 2163 |
-
"##
|
| 2164 |
-
"##
|
| 2165 |
-
"##
|
| 2166 |
-
"##
|
| 2167 |
-
"##
|
| 2168 |
-
"##
|
| 2169 |
"##ining": 2013,
|
| 2170 |
"##ately": 2014,
|
| 2171 |
"infl": 2015,
|
|
@@ -2275,10 +2275,10 @@
|
|
| 2275 |
"yards": 2119,
|
| 2276 |
"##ef": 2120,
|
| 2277 |
"##ees": 2121,
|
| 2278 |
-
"##
|
| 2279 |
"##lam": 2123,
|
| 2280 |
"##less": 2124,
|
| 2281 |
-
"##
|
| 2282 |
"##ert": 2126,
|
| 2283 |
"though": 2127,
|
| 2284 |
"##inal": 2128,
|
|
@@ -2332,11 +2332,11 @@
|
|
| 2332 |
"sir": 2176,
|
| 2333 |
"youn": 2177,
|
| 2334 |
"yasser": 2178,
|
| 2335 |
-
"##
|
| 2336 |
-
"##
|
| 2337 |
-
"##
|
| 2338 |
-
"##
|
| 2339 |
-
"##
|
| 2340 |
"##ways": 2184,
|
| 2341 |
"those": 2185,
|
| 2342 |
"##ined": 2186,
|
|
@@ -2397,8 +2397,8 @@
|
|
| 2397 |
"mike": 2241,
|
| 2398 |
"si": 2242,
|
| 2399 |
"##eration": 2243,
|
| 2400 |
-
"
|
| 2401 |
-
"
|
| 2402 |
"##icks": 2246,
|
| 2403 |
"##str": 2247,
|
| 2404 |
"store": 2248,
|
|
@@ -2449,11 +2449,11 @@
|
|
| 2449 |
"details": 2293,
|
| 2450 |
"germany": 2294,
|
| 2451 |
"civil": 2295,
|
| 2452 |
-
")
|
| 2453 |
-
")
|
| 2454 |
".\\": 2298,
|
| 2455 |
-
"
|
| 2456 |
-
"
|
| 2457 |
"bur": 2301,
|
| 2458 |
"cand": 2302,
|
| 2459 |
"fur": 2303,
|
|
@@ -2472,8 +2472,8 @@
|
|
| 2472 |
"rout": 2316,
|
| 2473 |
"vol": 2317,
|
| 2474 |
"wants": 2318,
|
| 2475 |
-
"##
|
| 2476 |
-
"##
|
| 2477 |
"##arm": 2321,
|
| 2478 |
"##ared": 2322,
|
| 2479 |
"##itness": 2323,
|
|
@@ -2513,8 +2513,8 @@
|
|
| 2513 |
"california": 2357,
|
| 2514 |
"miami": 2358,
|
| 2515 |
"chinese": 2359,
|
| 2516 |
-
"
|
| 2517 |
-
"
|
| 2518 |
"500": 2362,
|
| 2519 |
"cal": 2363,
|
| 2520 |
"cop": 2364,
|
|
@@ -2530,15 +2530,15 @@
|
|
| 2530 |
"roy": 2374,
|
| 2531 |
"rising": 2375,
|
| 2532 |
"yah": 2376,
|
| 2533 |
-
"##
|
| 2534 |
-
"##
|
| 2535 |
-
"##
|
| 2536 |
-
"##
|
| 2537 |
-
"##
|
| 2538 |
-
"##
|
| 2539 |
-
"##
|
| 2540 |
-
"##
|
| 2541 |
-
"##
|
| 2542 |
"##wh": 2386,
|
| 2543 |
"##ona": 2387,
|
| 2544 |
"town": 2388,
|
|
@@ -2608,10 +2608,10 @@
|
|
| 2608 |
"##no": 2452,
|
| 2609 |
"##set": 2453,
|
| 2610 |
"##sue": 2454,
|
| 2611 |
-
"##
|
| 2612 |
-
"##
|
| 2613 |
-
"##
|
| 2614 |
-
"##
|
| 2615 |
"##val": 2459,
|
| 2616 |
"##vet": 2460,
|
| 2617 |
"##50": 2461,
|
|
@@ -2696,15 +2696,15 @@
|
|
| 2696 |
"sets": 2540,
|
| 2697 |
"same": 2541,
|
| 2698 |
"vill": 2542,
|
| 2699 |
-
"##
|
| 2700 |
-
"##
|
| 2701 |
-
"##
|
| 2702 |
-
"##
|
| 2703 |
-
"##
|
| 2704 |
-
"##
|
| 2705 |
-
"##
|
| 2706 |
-
"##
|
| 2707 |
-
"##
|
| 2708 |
"##xic": 2552,
|
| 2709 |
"##we": 2553,
|
| 2710 |
"##wards": 2554,
|
|
@@ -2804,12 +2804,12 @@
|
|
| 2804 |
"vent": 2648,
|
| 2805 |
"vote": 2649,
|
| 2806 |
"western": 2650,
|
| 2807 |
-
"##
|
| 2808 |
-
"##
|
| 2809 |
"##oot": 2653,
|
| 2810 |
-
"##
|
| 2811 |
-
"##
|
| 2812 |
-
"##
|
| 2813 |
"##inc": 2657,
|
| 2814 |
"##ana": 2658,
|
| 2815 |
"##atory": 2659,
|
|
@@ -2897,16 +2897,16 @@
|
|
| 2897 |
"wid": 2741,
|
| 2898 |
"wood": 2742,
|
| 2899 |
"yuk": 2743,
|
| 2900 |
-
"##
|
| 2901 |
-
"##
|
| 2902 |
-
"##
|
| 2903 |
-
"##
|
| 2904 |
-
"##
|
| 2905 |
-
"##
|
| 2906 |
-
"##
|
| 2907 |
-
"##
|
| 2908 |
-
"##
|
| 2909 |
-
"##
|
| 2910 |
"##wide": 2754,
|
| 2911 |
"thin": 2755,
|
| 2912 |
"##ann": 2756,
|
|
@@ -3015,19 +3015,19 @@
|
|
| 3015 |
"size": 2859,
|
| 3016 |
"sites": 2860,
|
| 3017 |
"tem": 2861,
|
| 3018 |
-
"##
|
| 3019 |
-
"##
|
| 3020 |
-
"##
|
| 3021 |
-
"##
|
| 3022 |
-
"##
|
| 3023 |
-
"##
|
| 3024 |
-
"##
|
| 3025 |
"##ps": 2869,
|
| 3026 |
-
"##
|
| 3027 |
-
"##
|
| 3028 |
-
"##
|
| 3029 |
-
"##
|
| 3030 |
-
"##
|
| 3031 |
"##wood": 2875,
|
| 3032 |
"##ery": 2876,
|
| 3033 |
"thail": 2877,
|
|
@@ -3138,17 +3138,17 @@
|
|
| 3138 |
"vac": 2982,
|
| 3139 |
"view": 2983,
|
| 3140 |
"water": 2984,
|
| 3141 |
-
"##
|
| 3142 |
-
"##
|
| 3143 |
-
"##
|
| 3144 |
-
"##
|
| 3145 |
-
"##
|
| 3146 |
-
"##
|
| 3147 |
-
"##
|
| 3148 |
-
"##
|
| 3149 |
-
"##
|
| 3150 |
-
"##
|
| 3151 |
-
"##
|
| 3152 |
"##ville": 2996,
|
| 3153 |
"##wal": 2997,
|
| 3154 |
"##erent": 2998,
|
|
@@ -3287,19 +3287,19 @@
|
|
| 3287 |
"uran": 3131,
|
| 3288 |
"wel": 3132,
|
| 3289 |
"went": 3133,
|
| 3290 |
-
"##
|
| 3291 |
-
"##
|
| 3292 |
-
"##
|
| 3293 |
-
"##
|
| 3294 |
-
"##
|
| 3295 |
-
"##
|
| 3296 |
-
"##
|
| 3297 |
-
"##
|
| 3298 |
-
"##
|
| 3299 |
-
"##
|
| 3300 |
-
"##
|
| 3301 |
-
"##
|
| 3302 |
-
"##
|
| 3303 |
"##inth": 3147,
|
| 3304 |
"theft": 3148,
|
| 3305 |
"##itz": 3149,
|
|
@@ -3459,19 +3459,19 @@
|
|
| 3459 |
"wrap": 3303,
|
| 3460 |
"zone": 3304,
|
| 3461 |
"zeal": 3305,
|
| 3462 |
-
"##
|
| 3463 |
-
"##
|
| 3464 |
-
"##
|
| 3465 |
-
"##
|
| 3466 |
-
"##
|
| 3467 |
-
"##
|
| 3468 |
-
"##
|
| 3469 |
-
"##
|
| 3470 |
-
"##
|
| 3471 |
-
"##
|
| 3472 |
-
"##
|
| 3473 |
-
"##
|
| 3474 |
-
"##
|
| 3475 |
"##zn": 3319,
|
| 3476 |
"##zz": 3320,
|
| 3477 |
"##vent": 3321,
|
|
@@ -3641,21 +3641,21 @@
|
|
| 3641 |
"ways": 3485,
|
| 3642 |
"wond": 3486,
|
| 3643 |
"zar": 3487,
|
| 3644 |
-
"##
|
| 3645 |
-
"##
|
| 3646 |
-
"##
|
| 3647 |
-
"##
|
| 3648 |
-
"##
|
| 3649 |
-
"##
|
| 3650 |
-
"##
|
| 3651 |
-
"##
|
| 3652 |
-
"##
|
| 3653 |
-
"##
|
| 3654 |
-
"##
|
| 3655 |
-
"##
|
| 3656 |
-
"##
|
| 3657 |
-
"##
|
| 3658 |
-
"##
|
| 3659 |
"##xx": 3503,
|
| 3660 |
"##west": 3504,
|
| 3661 |
"##inos": 3505,
|
|
@@ -3860,8 +3860,8 @@
|
|
| 3860 |
"dial": 3704,
|
| 3861 |
"done": 3705,
|
| 3862 |
"donald": 3706,
|
| 3863 |
-
"
|
| 3864 |
-
"
|
| 3865 |
"eth": 3709,
|
| 3866 |
"egy": 3710,
|
| 3867 |
"eastern": 3711,
|
|
@@ -3888,22 +3888,22 @@
|
|
| 3888 |
"va": 3732,
|
| 3889 |
"vio": 3733,
|
| 3890 |
"yen": 3734,
|
| 3891 |
-
"##
|
| 3892 |
-
"##
|
| 3893 |
-
"##
|
| 3894 |
-
"##
|
| 3895 |
-
"##
|
| 3896 |
-
"##
|
| 3897 |
-
"##
|
| 3898 |
-
"##
|
| 3899 |
-
"##
|
| 3900 |
-
"##
|
| 3901 |
-
"##
|
| 3902 |
-
"##
|
| 3903 |
-
"##
|
| 3904 |
-
"##
|
| 3905 |
-
"##
|
| 3906 |
-
"##
|
| 3907 |
"##va": 3751,
|
| 3908 |
"##wer": 3752,
|
| 3909 |
"##wich": 3753,
|
|
@@ -4108,8 +4108,8 @@
|
|
| 4108 |
"telecommunications": 3952,
|
| 4109 |
"04": 3953,
|
| 4110 |
"33": 3954,
|
| 4111 |
-
"
|
| 4112 |
-
"
|
| 4113 |
"52": 3957,
|
| 4114 |
"54": 3958,
|
| 4115 |
"800": 3959,
|
|
@@ -4153,29 +4153,29 @@
|
|
| 4153 |
"trop": 3997,
|
| 4154 |
"vod": 3998,
|
| 4155 |
"wm": 3999,
|
| 4156 |
-
"##
|
| 4157 |
-
"##
|
| 4158 |
-
"##
|
| 4159 |
-
"##
|
| 4160 |
-
"##
|
| 4161 |
-
"##
|
| 4162 |
-
"##
|
| 4163 |
-
"##
|
| 4164 |
-
"##
|
| 4165 |
-
"##
|
| 4166 |
-
"##
|
| 4167 |
-
"##
|
| 4168 |
-
"##
|
| 4169 |
-
"##
|
| 4170 |
-
"##
|
| 4171 |
-
"##
|
| 4172 |
-
"##
|
| 4173 |
-
"##
|
| 4174 |
-
"##
|
| 4175 |
-
"##
|
| 4176 |
-
"##
|
| 4177 |
-
"##
|
| 4178 |
-
"##
|
| 4179 |
"##0s": 4023,
|
| 4180 |
"thom": 4024,
|
| 4181 |
"##oring": 4025,
|
|
@@ -4390,9 +4390,9 @@
|
|
| 4390 |
"kuznetsova": 4234,
|
| 4391 |
".-": 4235,
|
| 4392 |
"38": 4236,
|
| 4393 |
-
"
|
| 4394 |
"51": 4238,
|
| 4395 |
-
"
|
| 4396 |
"97": 4240,
|
| 4397 |
"aig": 4241,
|
| 4398 |
"ach": 4242,
|
|
@@ -4453,29 +4453,29 @@
|
|
| 4453 |
"vend": 4297,
|
| 4454 |
"wis": 4298,
|
| 4455 |
"wizards": 4299,
|
| 4456 |
-
"##
|
| 4457 |
-
"##
|
| 4458 |
-
"##
|
| 4459 |
-
"##
|
| 4460 |
-
"##
|
| 4461 |
-
"##
|
| 4462 |
-
"##
|
| 4463 |
-
"##
|
| 4464 |
-
"##
|
| 4465 |
-
"##
|
| 4466 |
-
"##
|
| 4467 |
-
"##
|
| 4468 |
-
"##
|
| 4469 |
-
"##
|
| 4470 |
-
"##
|
| 4471 |
-
"##
|
| 4472 |
-
"##
|
| 4473 |
"##rd": 4317,
|
| 4474 |
"##ray": 4318,
|
| 4475 |
"##right": 4319,
|
| 4476 |
-
"##
|
| 4477 |
-
"##
|
| 4478 |
-
"##
|
| 4479 |
"##za": 4323,
|
| 4480 |
"##jay": 4324,
|
| 4481 |
"##ern": 4325,
|
|
@@ -4624,8 +4624,8 @@
|
|
| 4624 |
"howard": 4468,
|
| 4625 |
"charles": 4469,
|
| 4626 |
"entered": 4470,
|
| 4627 |
-
"
|
| 4628 |
-
"
|
| 4629 |
"korean": 4473,
|
| 4630 |
"standards": 4474,
|
| 4631 |
"single": 4475,
|
|
@@ -4782,32 +4782,32 @@
|
|
| 4782 |
"wake": 4626,
|
| 4783 |
"wide": 4627,
|
| 4784 |
"yud": 4628,
|
| 4785 |
-
"##
|
| 4786 |
-
"##
|
| 4787 |
-
"##
|
| 4788 |
-
"##
|
| 4789 |
-
"##
|
| 4790 |
-
"##
|
| 4791 |
-
"##
|
| 4792 |
-
"##
|
| 4793 |
-
"##
|
| 4794 |
-
"##
|
| 4795 |
-
"##
|
| 4796 |
-
"##
|
| 4797 |
-
"##
|
| 4798 |
-
"##
|
| 4799 |
-
"##
|
| 4800 |
-
"##
|
| 4801 |
-
"##
|
| 4802 |
-
"##
|
| 4803 |
"##ril": 4647,
|
| 4804 |
"##ruit": 4648,
|
| 4805 |
-
"##
|
| 4806 |
-
"##
|
| 4807 |
-
"##
|
| 4808 |
-
"##
|
| 4809 |
-
"##
|
| 4810 |
-
"##
|
| 4811 |
"##wart": 4655,
|
| 4812 |
"##work": 4656,
|
| 4813 |
"##wait": 4657,
|
|
@@ -5163,32 +5163,32 @@
|
|
| 5163 |
"xm": 5007,
|
| 5164 |
"yard": 5008,
|
| 5165 |
"zimb": 5009,
|
| 5166 |
-
"##
|
| 5167 |
-
"##
|
| 5168 |
"##eer": 5012,
|
| 5169 |
-
"##
|
| 5170 |
-
"##
|
| 5171 |
-
"##
|
| 5172 |
-
"##
|
| 5173 |
-
"##
|
| 5174 |
-
"##
|
| 5175 |
-
"##
|
| 5176 |
-
"##
|
| 5177 |
-
"##
|
| 5178 |
-
"##
|
| 5179 |
-
"##
|
| 5180 |
-
"##
|
| 5181 |
-
"##
|
| 5182 |
-
"##
|
| 5183 |
-
"##
|
| 5184 |
-
"##
|
| 5185 |
-
"##
|
| 5186 |
-
"##
|
| 5187 |
-
"##
|
| 5188 |
-
"##
|
| 5189 |
-
"##
|
| 5190 |
-
"##
|
| 5191 |
-
"##
|
| 5192 |
"##web": 5036,
|
| 5193 |
"##jects": 5037,
|
| 5194 |
"##inct": 5038,
|
|
@@ -5295,12 +5295,12 @@
|
|
| 5295 |
"contest": 5139,
|
| 5296 |
"busch": 5140,
|
| 5297 |
"##izumi": 5141,
|
| 5298 |
-
"
|
| 5299 |
-
"
|
| 5300 |
"corner": 5144,
|
| 5301 |
"##eph": 5145,
|
| 5302 |
-
"
|
| 5303 |
-
"
|
| 5304 |
"flaw": 5148,
|
| 5305 |
"eli": 5149,
|
| 5306 |
"accounts": 5150,
|
|
@@ -5576,11 +5576,11 @@
|
|
| 5576 |
"53": 5420,
|
| 5577 |
"550": 5421,
|
| 5578 |
"64": 5422,
|
| 5579 |
-
"
|
| 5580 |
-
"
|
| 5581 |
"82": 5425,
|
| 5582 |
-
"
|
| 5583 |
-
"
|
| 5584 |
"aer": 5428,
|
| 5585 |
"ace": 5429,
|
| 5586 |
"band": 5430,
|
|
@@ -5662,36 +5662,36 @@
|
|
| 5662 |
"wides": 5506,
|
| 5663 |
"wto": 5507,
|
| 5664 |
"zur": 5508,
|
| 5665 |
-
"##
|
| 5666 |
-
"##
|
| 5667 |
-
"##
|
| 5668 |
-
"##
|
| 5669 |
-
"##
|
| 5670 |
-
"##
|
| 5671 |
-
"##
|
| 5672 |
-
"##
|
| 5673 |
-
"##
|
| 5674 |
-
"##
|
| 5675 |
-
"##
|
| 5676 |
-
"##
|
| 5677 |
-
"##
|
| 5678 |
-
"##
|
| 5679 |
-
"##
|
| 5680 |
-
"##
|
| 5681 |
-
"##
|
| 5682 |
-
"##
|
| 5683 |
-
"##
|
| 5684 |
-
"##
|
| 5685 |
-
"##
|
| 5686 |
-
"##
|
| 5687 |
-
"##
|
| 5688 |
-
"##
|
| 5689 |
-
"##
|
| 5690 |
-
"##
|
| 5691 |
-
"##
|
| 5692 |
-
"##
|
| 5693 |
-
"##
|
| 5694 |
-
"##
|
| 5695 |
"##vic": 5539,
|
| 5696 |
"##wr": 5540,
|
| 5697 |
"##wom": 5541,
|
|
@@ -5767,8 +5767,8 @@
|
|
| 5767 |
"##ocol": 5611,
|
| 5768 |
"concess": 5612,
|
| 5769 |
"conrad": 5613,
|
| 5770 |
-
"
|
| 5771 |
-
"
|
| 5772 |
"unw": 5616,
|
| 5773 |
"units": 5617,
|
| 5774 |
"que": 5618,
|
|
@@ -6185,8 +6185,8 @@
|
|
| 6185 |
"66": 6029,
|
| 6186 |
"63": 6030,
|
| 6187 |
"71": 6031,
|
| 6188 |
-
"
|
| 6189 |
-
"
|
| 6190 |
"bm": 6034,
|
| 6191 |
"bes": 6035,
|
| 6192 |
"bed": 6036,
|
|
@@ -6213,9 +6213,9 @@
|
|
| 6213 |
"ele": 6057,
|
| 6214 |
"ech": 6058,
|
| 6215 |
"erupted": 6059,
|
| 6216 |
-
"
|
| 6217 |
-
"
|
| 6218 |
-
"
|
| 6219 |
"fan": 6063,
|
| 6220 |
"fash": 6064,
|
| 6221 |
"fals": 6065,
|
|
@@ -6232,8 +6232,8 @@
|
|
| 6232 |
"hart": 6076,
|
| 6233 |
"hok": 6077,
|
| 6234 |
"hiring": 6078,
|
| 6235 |
-
"
|
| 6236 |
-
"
|
| 6237 |
"ioc": 6081,
|
| 6238 |
"ill": 6082,
|
| 6239 |
"ji": 6083,
|
|
@@ -6256,8 +6256,8 @@
|
|
| 6256 |
"lacks": 6100,
|
| 6257 |
"lux": 6101,
|
| 6258 |
"lley": 6102,
|
| 6259 |
-
"
|
| 6260 |
-
"
|
| 6261 |
"mates": 6105,
|
| 6262 |
"moss": 6106,
|
| 6263 |
"mey": 6107,
|
|
@@ -6265,8 +6265,8 @@
|
|
| 6265 |
"nom": 6109,
|
| 6266 |
"nose": 6110,
|
| 6267 |
"ps": 6111,
|
| 6268 |
-
"
|
| 6269 |
-
"
|
| 6270 |
"pon": 6114,
|
| 6271 |
"pill": 6115,
|
| 6272 |
"pays": 6116,
|
|
@@ -6301,58 +6301,58 @@
|
|
| 6301 |
"wys": 6145,
|
| 6302 |
"wave": 6146,
|
| 6303 |
"woes": 6147,
|
| 6304 |
-
"##
|
| 6305 |
-
"##
|
| 6306 |
-
"##
|
| 6307 |
-
"##
|
| 6308 |
-
"##
|
| 6309 |
-
"##
|
| 6310 |
-
"##
|
| 6311 |
-
"##
|
| 6312 |
-
"##
|
| 6313 |
-
"##
|
| 6314 |
-
"##
|
| 6315 |
-
"##
|
| 6316 |
-
"##
|
| 6317 |
-
"##
|
| 6318 |
-
"##
|
| 6319 |
-
"##
|
| 6320 |
-
"##
|
| 6321 |
-
"##
|
| 6322 |
-
"##
|
| 6323 |
-
"##
|
| 6324 |
-
"##
|
| 6325 |
-
"##
|
| 6326 |
-
"##
|
| 6327 |
-
"##
|
| 6328 |
-
"##
|
| 6329 |
-
"##
|
| 6330 |
-
"##
|
| 6331 |
-
"##
|
| 6332 |
-
"##
|
| 6333 |
-
"##
|
| 6334 |
-
"##
|
| 6335 |
-
"##
|
| 6336 |
-
"##
|
| 6337 |
-
"##
|
| 6338 |
-
"##
|
| 6339 |
-
"##
|
| 6340 |
-
"##
|
| 6341 |
-
"##
|
| 6342 |
-
"##
|
| 6343 |
-
"##
|
| 6344 |
-
"##
|
| 6345 |
-
"##
|
| 6346 |
-
"##
|
| 6347 |
-
"##
|
| 6348 |
-
"##
|
| 6349 |
-
"##
|
| 6350 |
"##wag": 6194,
|
| 6351 |
"##western": 6195,
|
| 6352 |
"##wau": 6196,
|
| 6353 |
-
"##
|
| 6354 |
-
"##
|
| 6355 |
-
"##
|
| 6356 |
"##--": 6200,
|
| 6357 |
"##erate": 6201,
|
| 6358 |
"##erie": 6202,
|
|
@@ -6410,8 +6410,8 @@
|
|
| 6410 |
"##irts": 6254,
|
| 6411 |
"##irut": 6255,
|
| 6412 |
"##iristan": 6256,
|
| 6413 |
-
"##
|
| 6414 |
-
"##
|
| 6415 |
"##olph": 6259,
|
| 6416 |
"##aming": 6260,
|
| 6417 |
"##ambi": 6261,
|
|
@@ -6654,8 +6654,8 @@
|
|
| 6654 |
"eddie": 6498,
|
| 6655 |
"streets": 6499,
|
| 6656 |
"batting": 6500,
|
| 6657 |
-
"
|
| 6658 |
-
"
|
| 6659 |
"##gests": 6503,
|
| 6660 |
"update2": 6504,
|
| 6661 |
"update1": 6505,
|
|
@@ -6985,8 +6985,8 @@
|
|
| 6985 |
"lleyton": 6829,
|
| 6986 |
"mhz": 6830,
|
| 6987 |
"meyer": 6831,
|
| 6988 |
-
"
|
| 6989 |
-
"
|
| 6990 |
"ponting": 6834,
|
| 6991 |
"rfid": 6835,
|
| 6992 |
"svetlana": 6836,
|
|
@@ -7074,8 +7074,8 @@
|
|
| 7074 |
"honey": 6918,
|
| 7075 |
"ia": 6919,
|
| 7076 |
"icon": 6920,
|
| 7077 |
-
"
|
| 7078 |
-
"
|
| 7079 |
"jar": 6923,
|
| 7080 |
"jen": 6924,
|
| 7081 |
"ke": 6925,
|
|
@@ -7107,8 +7107,8 @@
|
|
| 7107 |
"ol": 6951,
|
| 7108 |
"oce": 6952,
|
| 7109 |
"ori": 6953,
|
| 7110 |
-
"
|
| 7111 |
-
"
|
| 7112 |
"pad": 6956,
|
| 7113 |
"pest": 6957,
|
| 7114 |
"pist": 6958,
|
|
@@ -7139,8 +7139,8 @@
|
|
| 7139 |
"tying": 6983,
|
| 7140 |
"tumb": 6984,
|
| 7141 |
"tumble": 6985,
|
| 7142 |
-
"
|
| 7143 |
-
"
|
| 7144 |
"u2": 6988,
|
| 7145 |
"van": 6989,
|
| 7146 |
"vanc": 6990,
|
|
@@ -7159,59 +7159,59 @@
|
|
| 7159 |
"yes": 7003,
|
| 7160 |
"zid": 7004,
|
| 7161 |
"ziff": 7005,
|
| 7162 |
-
"##
|
| 7163 |
-
"##
|
| 7164 |
-
"##
|
| 7165 |
-
"##
|
| 7166 |
-
"##
|
| 7167 |
-
"##
|
| 7168 |
-
"##
|
| 7169 |
-
"##
|
| 7170 |
-
"##
|
| 7171 |
-
"##
|
| 7172 |
-
"##
|
| 7173 |
-
"##
|
| 7174 |
-
"##
|
| 7175 |
-
"##
|
| 7176 |
-
"##
|
| 7177 |
-
"##
|
| 7178 |
-
"##
|
| 7179 |
-
"##
|
| 7180 |
-
"##
|
| 7181 |
-
"##
|
| 7182 |
-
"##
|
| 7183 |
-
"##
|
| 7184 |
-
"##
|
| 7185 |
-
"##
|
| 7186 |
-
"##
|
| 7187 |
-
"##
|
| 7188 |
-
"##
|
| 7189 |
-
"##
|
| 7190 |
-
"##
|
| 7191 |
-
"##
|
| 7192 |
-
"##
|
| 7193 |
-
"##
|
| 7194 |
-
"##
|
| 7195 |
-
"##
|
| 7196 |
-
"##
|
| 7197 |
-
"##
|
| 7198 |
-
"##
|
| 7199 |
-
"##
|
| 7200 |
-
"##
|
| 7201 |
-
"##
|
| 7202 |
-
"##
|
| 7203 |
-
"##
|
| 7204 |
-
"##
|
| 7205 |
-
"##
|
| 7206 |
-
"##
|
| 7207 |
-
"##
|
| 7208 |
-
"##
|
| 7209 |
-
"##
|
| 7210 |
-
"##
|
| 7211 |
-
"##
|
| 7212 |
-
"##
|
| 7213 |
-
"##
|
| 7214 |
-
"##
|
| 7215 |
"##voc": 7059,
|
| 7216 |
"##xious": 7060,
|
| 7217 |
"##wl": 7061,
|
|
@@ -7453,9 +7453,9 @@
|
|
| 7453 |
"##berry": 7297,
|
| 7454 |
"##berwol": 7298,
|
| 7455 |
"euros": 7299,
|
| 7456 |
-
"##
|
| 7457 |
-
"##
|
| 7458 |
-
"##
|
| 7459 |
"flock": 7303,
|
| 7460 |
"flushing": 7304,
|
| 7461 |
"invasion": 7305,
|
|
@@ -7647,10 +7647,10 @@
|
|
| 7647 |
"powered": 7491,
|
| 7648 |
"really": 7492,
|
| 7649 |
"realnetw": 7493,
|
| 7650 |
-
"
|
| 7651 |
"148": 7495,
|
| 7652 |
-
"
|
| 7653 |
-
"
|
| 7654 |
"household": 7498,
|
| 7655 |
"mcken": 7499,
|
| 7656 |
"visa": 7500,
|
|
@@ -7730,8 +7730,8 @@
|
|
| 7730 |
"purpose": 7574,
|
| 7731 |
"purdue": 7575,
|
| 7732 |
"snaps": 7576,
|
| 7733 |
-
"##
|
| 7734 |
-
"##
|
| 7735 |
"##itten": 7579,
|
| 7736 |
"opposed": 7580,
|
| 7737 |
"blackberry": 7581,
|
|
@@ -7748,8 +7748,8 @@
|
|
| 7748 |
"frag": 7592,
|
| 7749 |
"location": 7593,
|
| 7750 |
"mounted": 7594,
|
| 7751 |
-
"
|
| 7752 |
-
"
|
| 7753 |
"tyrone": 7597,
|
| 7754 |
"typhoon": 7598,
|
| 7755 |
"doubled": 7599,
|
|
@@ -7963,8 +7963,8 @@
|
|
| 7963 |
"feedster": 7807,
|
| 7964 |
"websites": 7808,
|
| 7965 |
"rebounds": 7809,
|
| 7966 |
-
"
|
| 7967 |
-
"
|
| 7968 |
"solaris": 7812,
|
| 7969 |
"domainkeys": 7813,
|
| 7970 |
"citizen": 7814,
|
|
@@ -8045,8 +8045,8 @@
|
|
| 8045 |
"astronomers": 7889,
|
| 8046 |
"neighborhood": 7890,
|
| 8047 |
"dhaka": 7891,
|
| 8048 |
-
"
|
| 8049 |
-
"
|
| 8050 |
"false": 7894,
|
| 8051 |
"goran": 7895,
|
| 8052 |
"gurunet": 7896,
|
|
|
|
| 213 |
"x": 57,
|
| 214 |
"y": 58,
|
| 215 |
"z": 59,
|
| 216 |
+
"##a": 60,
|
| 217 |
+
"##n": 61,
|
| 218 |
+
"##k": 62,
|
| 219 |
+
"##e": 63,
|
| 220 |
"##s": 64,
|
| 221 |
+
"##m": 65,
|
| 222 |
+
"##b": 66,
|
| 223 |
+
"##o": 67,
|
| 224 |
+
"##d": 68,
|
| 225 |
+
"##i": 69,
|
| 226 |
+
"##l": 70,
|
| 227 |
+
"##t": 71,
|
| 228 |
+
"##h": 72,
|
| 229 |
+
"##p": 73,
|
| 230 |
+
"##y": 74,
|
| 231 |
+
"##r": 75,
|
| 232 |
+
"##u": 76,
|
| 233 |
+
"##c": 77,
|
| 234 |
+
"##g": 78,
|
| 235 |
+
"##2": 79,
|
| 236 |
+
"##9": 80,
|
| 237 |
+
"##q": 81,
|
| 238 |
+
"##z": 82,
|
| 239 |
+
"##f": 83,
|
| 240 |
+
"##v": 84,
|
| 241 |
+
"##x": 85,
|
| 242 |
+
"##7": 86,
|
| 243 |
+
"##1": 87,
|
| 244 |
+
"##w": 88,
|
| 245 |
+
"##8": 89,
|
| 246 |
+
"##5": 90,
|
| 247 |
+
"##0": 91,
|
| 248 |
+
"##6": 92,
|
| 249 |
+
"##\\": 93,
|
| 250 |
+
"##j": 94,
|
| 251 |
+
"##3": 95,
|
| 252 |
+
"##,": 96,
|
| 253 |
+
"##4": 97,
|
| 254 |
"##-": 98,
|
| 255 |
"##)": 99,
|
| 256 |
+
"##.": 100,
|
| 257 |
"##/": 101,
|
| 258 |
+
"##'": 102,
|
| 259 |
+
"##&": 103,
|
| 260 |
+
"##\"": 104,
|
| 261 |
+
"##:": 105,
|
| 262 |
+
"##$": 106,
|
| 263 |
+
"##_": 107,
|
| 264 |
+
"##(": 108,
|
| 265 |
+
"###": 109,
|
| 266 |
+
"##*": 110,
|
| 267 |
"##er": 111,
|
| 268 |
"th": 112,
|
| 269 |
"##in": 113,
|
|
|
|
| 493 |
"##ick": 337,
|
| 494 |
"##out": 338,
|
| 495 |
"cr": 339,
|
| 496 |
+
"##ond": 340,
|
| 497 |
+
"##ong": 341,
|
| 498 |
"two": 342,
|
| 499 |
"go": 343,
|
| 500 |
"no": 344,
|
|
|
|
| 586 |
"##one": 430,
|
| 587 |
"##urs": 431,
|
| 588 |
"##ations": 432,
|
| 589 |
+
"##ek": 433,
|
| 590 |
+
"##ep": 434,
|
| 591 |
"fl": 435,
|
| 592 |
"inv": 436,
|
| 593 |
"one": 437,
|
|
|
|
| 690 |
"##ood": 534,
|
| 691 |
"li": 535,
|
| 692 |
"tech": 536,
|
| 693 |
+
"##az": 537,
|
| 694 |
+
"##duc": 538,
|
| 695 |
+
"##les": 539,
|
| 696 |
+
"##yst": 540,
|
| 697 |
+
"##ged": 541,
|
| 698 |
"week": 542,
|
| 699 |
"##ason": 543,
|
| 700 |
"##ounc": 544,
|
|
|
|
| 761 |
"##ely": 605,
|
| 762 |
"ass": 606,
|
| 763 |
"news": 607,
|
| 764 |
+
"##land": 608,
|
| 765 |
+
"##gr": 609,
|
| 766 |
"##orts": 610,
|
| 767 |
"afp": 611,
|
| 768 |
"milit": 612,
|
|
|
|
| 782 |
"stocks": 626,
|
| 783 |
"red": 627,
|
| 784 |
"ter": 628,
|
| 785 |
+
"##line": 629,
|
| 786 |
+
"##co": 630,
|
| 787 |
"fed": 631,
|
| 788 |
"par": 632,
|
| 789 |
"shar": 633,
|
|
|
|
| 866 |
"post": 710,
|
| 867 |
"##ran": 711,
|
| 868 |
"billion": 712,
|
| 869 |
+
"##io": 713,
|
| 870 |
+
"##hip": 714,
|
| 871 |
"minist": 715,
|
| 872 |
"market": 716,
|
| 873 |
"say": 717,
|
|
|
|
| 890 |
"##ards": 734,
|
| 891 |
"years": 735,
|
| 892 |
"help": 736,
|
| 893 |
+
"##ph": 737,
|
| 894 |
"##ual": 738,
|
| 895 |
+
"##ct": 739,
|
| 896 |
+
"##ger": 740,
|
| 897 |
"near": 741,
|
| 898 |
"launch": 742,
|
| 899 |
"##int": 743,
|
|
|
|
| 914 |
"col": 758,
|
| 915 |
"day": 759,
|
| 916 |
"jap": 760,
|
| 917 |
+
"##ms": 761,
|
| 918 |
+
"##ied": 762,
|
| 919 |
"##ony": 763,
|
| 920 |
"champ": 764,
|
| 921 |
"aw": 765,
|
|
|
|
| 988 |
"killed": 832,
|
| 989 |
"home": 833,
|
| 990 |
"job": 834,
|
| 991 |
+
"##ious": 835,
|
| 992 |
+
"##cer": 836,
|
| 993 |
"##inian": 837,
|
| 994 |
"##orn": 838,
|
| 995 |
"##ures": 839,
|
|
|
|
| 998 |
"ca": 842,
|
| 999 |
"fall": 843,
|
| 1000 |
"tra": 844,
|
| 1001 |
+
"##bs": 845,
|
| 1002 |
+
"##uts": 846,
|
| 1003 |
"##ants": 847,
|
| 1004 |
"ins": 848,
|
| 1005 |
"plans": 849,
|
|
|
|
| 1049 |
"larg": 893,
|
| 1050 |
"miss": 894,
|
| 1051 |
"##ner": 895,
|
| 1052 |
+
"##pos": 896,
|
| 1053 |
+
"##uch": 897,
|
| 1054 |
"##eless": 898,
|
| 1055 |
"what": 899,
|
| 1056 |
"##ense": 900,
|
|
|
|
| 1111 |
"ed": 955,
|
| 1112 |
"loss": 956,
|
| 1113 |
"publ": 957,
|
| 1114 |
+
"##be": 958,
|
| 1115 |
+
"##ium": 959,
|
| 1116 |
"##ving": 960,
|
| 1117 |
"stre": 961,
|
| 1118 |
"##use": 962,
|
|
|
|
| 1133 |
"wind": 977,
|
| 1134 |
"add": 978,
|
| 1135 |
"general": 979,
|
| 1136 |
+
"19": 980,
|
| 1137 |
+
"11": 981,
|
| 1138 |
"san": 982,
|
| 1139 |
+
"##bm": 983,
|
| 1140 |
"##lud": 984,
|
| 1141 |
+
"##ges": 985,
|
| 1142 |
"##ons": 986,
|
| 1143 |
"##ities": 987,
|
| 1144 |
"##eld": 988,
|
|
|
|
| 1151 |
"her": 995,
|
| 1152 |
"way": 996,
|
| 1153 |
"##ned": 997,
|
| 1154 |
+
"##ling": 998,
|
| 1155 |
+
"##pr": 999,
|
| 1156 |
"stock": 1000,
|
| 1157 |
"leader": 1001,
|
| 1158 |
"network": 1002,
|
|
|
|
| 1171 |
"im": 1015,
|
| 1172 |
"put": 1016,
|
| 1173 |
"tit": 1017,
|
| 1174 |
+
"##ool": 1018,
|
| 1175 |
+
"##hd": 1019,
|
| 1176 |
"##itch": 1020,
|
| 1177 |
"##ops": 1021,
|
| 1178 |
"amp": 1022,
|
|
|
|
| 1188 |
"tick": 1032,
|
| 1189 |
"##eb": 1033,
|
| 1190 |
"##eep": 1034,
|
| 1191 |
+
"##lin": 1035,
|
| 1192 |
+
"##let": 1036,
|
| 1193 |
+
"##ted": 1037,
|
| 1194 |
+
"##ces": 1038,
|
| 1195 |
"##ank": 1039,
|
| 1196 |
"##round": 1040,
|
| 1197 |
"##isco": 1041,
|
|
|
|
| 1207 |
"pc": 1051,
|
| 1208 |
"ver": 1052,
|
| 1209 |
"won": 1053,
|
| 1210 |
+
"##ky": 1054,
|
| 1211 |
+
"##fo": 1055,
|
| 1212 |
"##vers": 1056,
|
| 1213 |
"##ese": 1057,
|
| 1214 |
"them": 1058,
|
|
|
|
| 1225 |
"baghdad": 1069,
|
| 1226 |
"cust": 1070,
|
| 1227 |
"nas": 1071,
|
| 1228 |
+
"##ok": 1072,
|
| 1229 |
+
"##ty": 1073,
|
| 1230 |
"there": 1074,
|
| 1231 |
"##ects": 1075,
|
| 1232 |
"being": 1076,
|
|
|
|
| 1355 |
"many": 1199,
|
| 1356 |
"round": 1200,
|
| 1357 |
"ww": 1201,
|
| 1358 |
+
"##aw": 1202,
|
| 1359 |
"##son": 1203,
|
| 1360 |
+
"##loy": 1204,
|
| 1361 |
+
"##ux": 1205,
|
| 1362 |
+
"##cl": 1206,
|
| 1363 |
"##fat": 1207,
|
| 1364 |
"##ene": 1208,
|
| 1365 |
"##ication": 1209,
|
|
|
|
| 1460 |
"poss": 1304,
|
| 1461 |
"six": 1305,
|
| 1462 |
"tur": 1306,
|
| 1463 |
+
"##uel": 1307,
|
| 1464 |
+
"##com": 1308,
|
| 1465 |
"##ject": 1309,
|
| 1466 |
"##ind": 1310,
|
| 1467 |
"##elf": 1311,
|
|
|
|
| 1475 |
"num": 1319,
|
| 1476 |
"tim": 1320,
|
| 1477 |
"your": 1321,
|
| 1478 |
+
"##ave": 1322,
|
| 1479 |
"##ne": 1323,
|
| 1480 |
"##ior": 1324,
|
| 1481 |
+
"##ham": 1325,
|
| 1482 |
+
"##pite": 1326,
|
| 1483 |
"##erry": 1327,
|
| 1484 |
"##ats": 1328,
|
| 1485 |
"##ators": 1329,
|
|
|
|
| 1523 |
"lif": 1367,
|
| 1524 |
"past": 1368,
|
| 1525 |
"rul": 1369,
|
| 1526 |
+
"##med": 1370,
|
| 1527 |
+
"##iers": 1371,
|
| 1528 |
"##info": 1372,
|
| 1529 |
"##iting": 1373,
|
| 1530 |
"##ised": 1374,
|
|
|
|
| 1656 |
"line": 1500,
|
| 1657 |
"sent": 1501,
|
| 1658 |
"soc": 1502,
|
| 1659 |
+
"##ners": 1503,
|
| 1660 |
+
"##ev": 1504,
|
| 1661 |
"##so": 1505,
|
| 1662 |
+
"##min": 1506,
|
| 1663 |
+
"##back": 1507,
|
| 1664 |
+
"##oid": 1508,
|
| 1665 |
+
"##ik": 1509,
|
| 1666 |
"##ws": 1510,
|
| 1667 |
"##ator": 1511,
|
| 1668 |
"##ida": 1512,
|
|
|
|
| 1691 |
"wall": 1535,
|
| 1692 |
"well": 1536,
|
| 1693 |
"yan": 1537,
|
| 1694 |
+
"##ker": 1538,
|
| 1695 |
+
"##ret": 1539,
|
| 1696 |
"##ites": 1540,
|
| 1697 |
"stra": 1541,
|
| 1698 |
"##veil": 1542,
|
|
|
|
| 1718 |
"men": 1562,
|
| 1719 |
"match": 1563,
|
| 1720 |
"val": 1564,
|
| 1721 |
+
"##da": 1565,
|
| 1722 |
"##port": 1566,
|
| 1723 |
+
"##gan": 1567,
|
| 1724 |
"##van": 1568,
|
| 1725 |
"inf": 1569,
|
| 1726 |
"##ally": 1570,
|
|
|
|
| 1755 |
"lo": 1599,
|
| 1756 |
"mal": 1600,
|
| 1757 |
"ur": 1601,
|
| 1758 |
+
"##ai": 1602,
|
| 1759 |
+
"##ns": 1603,
|
| 1760 |
+
"##ness": 1604,
|
| 1761 |
+
"##sh": 1605,
|
| 1762 |
+
"##ler": 1606,
|
| 1763 |
+
"##pe": 1607,
|
| 1764 |
+
"##ging": 1608,
|
| 1765 |
"##fact": 1609,
|
| 1766 |
"##ered": 1610,
|
| 1767 |
"##ench": 1611,
|
|
|
|
| 1796 |
"tenn": 1640,
|
| 1797 |
"vo": 1641,
|
| 1798 |
"want": 1642,
|
| 1799 |
+
"##ause": 1643,
|
| 1800 |
"##mber": 1644,
|
| 1801 |
+
"##lo": 1645,
|
| 1802 |
+
"##lier": 1646,
|
| 1803 |
+
"##ta": 1647,
|
| 1804 |
"##ward": 1648,
|
| 1805 |
"toky": 1649,
|
| 1806 |
"stop": 1650,
|
|
|
|
| 1839 |
"mail": 1683,
|
| 1840 |
"much": 1684,
|
| 1841 |
"outs": 1685,
|
| 1842 |
+
"##pl": 1686,
|
| 1843 |
+
"##uk": 1687,
|
| 1844 |
+
"##uj": 1688,
|
| 1845 |
+
"##gers": 1689,
|
| 1846 |
"##att": 1690,
|
| 1847 |
"anal": 1691,
|
| 1848 |
"##chester": 1692,
|
|
|
|
| 1884 |
"pur": 1728,
|
| 1885 |
"sn": 1729,
|
| 1886 |
"tv": 1730,
|
| 1887 |
+
"##af": 1731,
|
| 1888 |
+
"##ael": 1732,
|
| 1889 |
+
"##ked": 1733,
|
| 1890 |
+
"##ming": 1734,
|
| 1891 |
+
"##by": 1735,
|
| 1892 |
+
"##off": 1736,
|
| 1893 |
+
"##red": 1737,
|
| 1894 |
"##atic": 1738,
|
| 1895 |
"##ative": 1739,
|
| 1896 |
"inform": 1740,
|
|
|
|
| 1938 |
"nations": 1782,
|
| 1939 |
"pil": 1783,
|
| 1940 |
"rise": 1784,
|
| 1941 |
+
"##aign": 1785,
|
| 1942 |
+
"##ex": 1786,
|
| 1943 |
+
"##eal": 1787,
|
| 1944 |
+
"##iver": 1788,
|
| 1945 |
+
"##ll": 1789,
|
| 1946 |
"##ress": 1790,
|
| 1947 |
+
"##go": 1791,
|
| 1948 |
"##esh": 1792,
|
| 1949 |
+
"##ena": 1793,
|
| 1950 |
+
"##eng": 1794,
|
| 1951 |
"forces": 1795,
|
| 1952 |
"univers": 1796,
|
| 1953 |
"##rial": 1797,
|
|
|
|
| 1979 |
"rates": 1823,
|
| 1980 |
"rank": 1824,
|
| 1981 |
"xp": 1825,
|
| 1982 |
+
"##ny": 1826,
|
| 1983 |
+
"##ping": 1827,
|
| 1984 |
+
"##cy": 1828,
|
| 1985 |
+
"##cri": 1829,
|
| 1986 |
"##ink": 1830,
|
| 1987 |
"##ests": 1831,
|
| 1988 |
"##ater": 1832,
|
|
|
|
| 2157 |
"vot": 2001,
|
| 2158 |
"wound": 2002,
|
| 2159 |
"wild": 2003,
|
| 2160 |
+
"##ney": 2004,
|
| 2161 |
+
"##ket": 2005,
|
| 2162 |
+
"##eat": 2006,
|
| 2163 |
+
"##mir": 2007,
|
| 2164 |
+
"##bur": 2008,
|
| 2165 |
+
"##ij": 2009,
|
| 2166 |
+
"##ience": 2010,
|
| 2167 |
+
"##til": 2011,
|
| 2168 |
+
"##cc": 2012,
|
| 2169 |
"##ining": 2013,
|
| 2170 |
"##ately": 2014,
|
| 2171 |
"infl": 2015,
|
|
|
|
| 2275 |
"yards": 2119,
|
| 2276 |
"##ef": 2120,
|
| 2277 |
"##ees": 2121,
|
| 2278 |
+
"##bit": 2122,
|
| 2279 |
"##lam": 2123,
|
| 2280 |
"##less": 2124,
|
| 2281 |
+
"##gin": 2125,
|
| 2282 |
"##ert": 2126,
|
| 2283 |
"though": 2127,
|
| 2284 |
"##inal": 2128,
|
|
|
|
| 2332 |
"sir": 2176,
|
| 2333 |
"youn": 2177,
|
| 2334 |
"yasser": 2178,
|
| 2335 |
+
"##bc": 2179,
|
| 2336 |
+
"##band": 2180,
|
| 2337 |
+
"##lad": 2181,
|
| 2338 |
+
"##hic": 2182,
|
| 2339 |
+
"##zil": 2183,
|
| 2340 |
"##ways": 2184,
|
| 2341 |
"those": 2185,
|
| 2342 |
"##ined": 2186,
|
|
|
|
| 2397 |
"mike": 2241,
|
| 2398 |
"si": 2242,
|
| 2399 |
"##eration": 2243,
|
| 2400 |
+
"tom": 2244,
|
| 2401 |
+
"too": 2245,
|
| 2402 |
"##icks": 2246,
|
| 2403 |
"##str": 2247,
|
| 2404 |
"store": 2248,
|
|
|
|
| 2449 |
"details": 2293,
|
| 2450 |
"germany": 2294,
|
| 2451 |
"civil": 2295,
|
| 2452 |
+
"),": 2296,
|
| 2453 |
+
").": 2297,
|
| 2454 |
".\\": 2298,
|
| 2455 |
+
"29": 2299,
|
| 2456 |
+
"23": 2300,
|
| 2457 |
"bur": 2301,
|
| 2458 |
"cand": 2302,
|
| 2459 |
"fur": 2303,
|
|
|
|
| 2472 |
"rout": 2316,
|
| 2473 |
"vol": 2317,
|
| 2474 |
"wants": 2318,
|
| 2475 |
+
"##ban": 2319,
|
| 2476 |
+
"##dle": 2320,
|
| 2477 |
"##arm": 2321,
|
| 2478 |
"##ared": 2322,
|
| 2479 |
"##itness": 2323,
|
|
|
|
| 2513 |
"california": 2357,
|
| 2514 |
"miami": 2358,
|
| 2515 |
"chinese": 2359,
|
| 2516 |
+
"27": 2360,
|
| 2517 |
+
"26": 2361,
|
| 2518 |
"500": 2362,
|
| 2519 |
"cal": 2363,
|
| 2520 |
"cop": 2364,
|
|
|
|
| 2530 |
"roy": 2374,
|
| 2531 |
"rising": 2375,
|
| 2532 |
"yah": 2376,
|
| 2533 |
+
"##mo": 2377,
|
| 2534 |
+
"##mar": 2378,
|
| 2535 |
+
"##br": 2379,
|
| 2536 |
+
"##oint": 2380,
|
| 2537 |
+
"##den": 2381,
|
| 2538 |
+
"##iest": 2382,
|
| 2539 |
+
"##han": 2383,
|
| 2540 |
+
"##res": 2384,
|
| 2541 |
+
"##ren": 2385,
|
| 2542 |
"##wh": 2386,
|
| 2543 |
"##ona": 2387,
|
| 2544 |
"town": 2388,
|
|
|
|
| 2608 |
"##no": 2452,
|
| 2609 |
"##set": 2453,
|
| 2610 |
"##sue": 2454,
|
| 2611 |
+
"##bi": 2455,
|
| 2612 |
+
"##bed": 2456,
|
| 2613 |
+
"##ds": 2457,
|
| 2614 |
+
"##gage": 2458,
|
| 2615 |
"##val": 2459,
|
| 2616 |
"##vet": 2460,
|
| 2617 |
"##50": 2461,
|
|
|
|
| 2696 |
"sets": 2540,
|
| 2697 |
"same": 2541,
|
| 2698 |
"vill": 2542,
|
| 2699 |
+
"##kins": 2543,
|
| 2700 |
+
"##mas": 2544,
|
| 2701 |
+
"##bo": 2545,
|
| 2702 |
+
"##iw": 2546,
|
| 2703 |
+
"##pal": 2547,
|
| 2704 |
+
"##yl": 2548,
|
| 2705 |
+
"##yle": 2549,
|
| 2706 |
+
"##ric": 2550,
|
| 2707 |
+
"##ga": 2551,
|
| 2708 |
"##xic": 2552,
|
| 2709 |
"##we": 2553,
|
| 2710 |
"##wards": 2554,
|
|
|
|
| 2804 |
"vent": 2648,
|
| 2805 |
"vote": 2649,
|
| 2806 |
"western": 2650,
|
| 2807 |
+
"##aff": 2651,
|
| 2808 |
+
"##mit": 2652,
|
| 2809 |
"##oot": 2653,
|
| 2810 |
+
"##te": 2654,
|
| 2811 |
+
"##rac": 2655,
|
| 2812 |
+
"##ues": 2656,
|
| 2813 |
"##inc": 2657,
|
| 2814 |
"##ana": 2658,
|
| 2815 |
"##atory": 2659,
|
|
|
|
| 2897 |
"wid": 2741,
|
| 2898 |
"wood": 2742,
|
| 2899 |
"yuk": 2743,
|
| 2900 |
+
"##nes": 2744,
|
| 2901 |
+
"##ba": 2745,
|
| 2902 |
+
"##bes": 2746,
|
| 2903 |
+
"##lt": 2747,
|
| 2904 |
+
"##liam": 2748,
|
| 2905 |
+
"##rich": 2749,
|
| 2906 |
+
"##ufact": 2750,
|
| 2907 |
+
"##come": 2751,
|
| 2908 |
+
"##get": 2752,
|
| 2909 |
+
"##ford": 2753,
|
| 2910 |
"##wide": 2754,
|
| 2911 |
"thin": 2755,
|
| 2912 |
"##ann": 2756,
|
|
|
|
| 3015 |
"size": 2859,
|
| 3016 |
"sites": 2860,
|
| 3017 |
"tem": 2861,
|
| 3018 |
+
"##aa": 2862,
|
| 3019 |
+
"##ait": 2863,
|
| 3020 |
+
"##ss": 2864,
|
| 3021 |
+
"##men": 2865,
|
| 3022 |
+
"##mun": 2866,
|
| 3023 |
+
"##la": 2867,
|
| 3024 |
+
"##to": 2868,
|
| 3025 |
"##ps": 2869,
|
| 3026 |
+
"##ya": 2870,
|
| 3027 |
+
"##yn": 2871,
|
| 3028 |
+
"##uation": 2872,
|
| 3029 |
+
"##uff": 2873,
|
| 3030 |
+
"##ced": 2874,
|
| 3031 |
"##wood": 2875,
|
| 3032 |
"##ery": 2876,
|
| 3033 |
"thail": 2877,
|
|
|
|
| 3138 |
"vac": 2982,
|
| 3139 |
"view": 2983,
|
| 3140 |
"water": 2984,
|
| 3141 |
+
"##aj": 2985,
|
| 3142 |
+
"##nel": 2986,
|
| 3143 |
+
"##eg": 2987,
|
| 3144 |
+
"##bn": 2988,
|
| 3145 |
+
"##bor": 2989,
|
| 3146 |
+
"##ded": 2990,
|
| 3147 |
+
"##duce": 2991,
|
| 3148 |
+
"##pon": 2992,
|
| 3149 |
+
"##ring": 2993,
|
| 3150 |
+
"##cel": 2994,
|
| 3151 |
+
"##fi": 2995,
|
| 3152 |
"##ville": 2996,
|
| 3153 |
"##wal": 2997,
|
| 3154 |
"##erent": 2998,
|
|
|
|
| 3287 |
"uran": 3131,
|
| 3288 |
"wel": 3132,
|
| 3289 |
"went": 3133,
|
| 3290 |
+
"##ax": 3134,
|
| 3291 |
+
"##ken": 3135,
|
| 3292 |
+
"##egr": 3136,
|
| 3293 |
+
"##lish": 3137,
|
| 3294 |
+
"##tors": 3138,
|
| 3295 |
+
"##tles": 3139,
|
| 3296 |
+
"##yc": 3140,
|
| 3297 |
+
"##ris": 3141,
|
| 3298 |
+
"##uit": 3142,
|
| 3299 |
+
"##uary": 3143,
|
| 3300 |
+
"##cal": 3144,
|
| 3301 |
+
"##cow": 3145,
|
| 3302 |
+
"##cial": 3146,
|
| 3303 |
"##inth": 3147,
|
| 3304 |
"theft": 3148,
|
| 3305 |
"##itz": 3149,
|
|
|
|
| 3459 |
"wrap": 3303,
|
| 3460 |
"zone": 3304,
|
| 3461 |
"zeal": 3305,
|
| 3462 |
+
"##na": 3306,
|
| 3463 |
+
"##makers": 3307,
|
| 3464 |
+
"##do": 3308,
|
| 3465 |
+
"##dam": 3309,
|
| 3466 |
+
"##ders": 3310,
|
| 3467 |
+
"##dog": 3311,
|
| 3468 |
+
"##ties": 3312,
|
| 3469 |
+
"##ha": 3313,
|
| 3470 |
+
"##har": 3314,
|
| 3471 |
+
"##pers": 3315,
|
| 3472 |
+
"##post": 3316,
|
| 3473 |
+
"##rill": 3317,
|
| 3474 |
+
"##rict": 3318,
|
| 3475 |
"##zn": 3319,
|
| 3476 |
"##zz": 3320,
|
| 3477 |
"##vent": 3321,
|
|
|
|
| 3641 |
"ways": 3485,
|
| 3642 |
"wond": 3486,
|
| 3643 |
"zar": 3487,
|
| 3644 |
+
"##night": 3488,
|
| 3645 |
+
"##kes": 3489,
|
| 3646 |
+
"##sa": 3490,
|
| 3647 |
+
"##mal": 3491,
|
| 3648 |
+
"##mond": 3492,
|
| 3649 |
+
"##ox": 3493,
|
| 3650 |
+
"##lies": 3494,
|
| 3651 |
+
"##lah": 3495,
|
| 3652 |
+
"##tions": 3496,
|
| 3653 |
+
"##rone": 3497,
|
| 3654 |
+
"##car": 3498,
|
| 3655 |
+
"##cape": 3499,
|
| 3656 |
+
"##gu": 3500,
|
| 3657 |
+
"##gent": 3501,
|
| 3658 |
+
"##field": 3502,
|
| 3659 |
"##xx": 3503,
|
| 3660 |
"##west": 3504,
|
| 3661 |
"##inos": 3505,
|
|
|
|
| 3860 |
"dial": 3704,
|
| 3861 |
"done": 3705,
|
| 3862 |
"donald": 3706,
|
| 3863 |
+
"ep": 3707,
|
| 3864 |
+
"ec": 3708,
|
| 3865 |
"eth": 3709,
|
| 3866 |
"egy": 3710,
|
| 3867 |
"eastern": 3711,
|
|
|
|
| 3888 |
"va": 3732,
|
| 3889 |
"vio": 3733,
|
| 3890 |
"yen": 3734,
|
| 3891 |
+
"##aver": 3735,
|
| 3892 |
+
"##nn": 3736,
|
| 3893 |
+
"##eas": 3737,
|
| 3894 |
+
"##east": 3738,
|
| 3895 |
+
"##ease": 3739,
|
| 3896 |
+
"##ma": 3740,
|
| 3897 |
+
"##die": 3741,
|
| 3898 |
+
"##lan": 3742,
|
| 3899 |
+
"##lom": 3743,
|
| 3900 |
+
"##ten": 3744,
|
| 3901 |
+
"##hi": 3745,
|
| 3902 |
+
"##hib": 3746,
|
| 3903 |
+
"##haps": 3747,
|
| 3904 |
+
"##ption": 3748,
|
| 3905 |
+
"##rad": 3749,
|
| 3906 |
+
"##rum": 3750,
|
| 3907 |
"##va": 3751,
|
| 3908 |
"##wer": 3752,
|
| 3909 |
"##wich": 3753,
|
|
|
|
| 4108 |
"telecommunications": 3952,
|
| 4109 |
"04": 3953,
|
| 4110 |
"33": 3954,
|
| 4111 |
+
"49": 3955,
|
| 4112 |
+
"46": 3956,
|
| 4113 |
"52": 3957,
|
| 4114 |
"54": 3958,
|
| 4115 |
"800": 3959,
|
|
|
|
| 4153 |
"trop": 3997,
|
| 4154 |
"vod": 3998,
|
| 4155 |
"wm": 3999,
|
| 4156 |
+
"##ead": 4000,
|
| 4157 |
+
"##mens": 4001,
|
| 4158 |
+
"##bod": 4002,
|
| 4159 |
+
"##oes": 4003,
|
| 4160 |
+
"##ift": 4004,
|
| 4161 |
+
"##ique": 4005,
|
| 4162 |
+
"##lig": 4006,
|
| 4163 |
+
"##held": 4007,
|
| 4164 |
+
"##py": 4008,
|
| 4165 |
+
"##pts": 4009,
|
| 4166 |
+
"##ym": 4010,
|
| 4167 |
+
"##yond": 4011,
|
| 4168 |
+
"##ua": 4012,
|
| 4169 |
+
"##cat": 4013,
|
| 4170 |
+
"##cle": 4014,
|
| 4171 |
+
"##ction": 4015,
|
| 4172 |
+
"##cats": 4016,
|
| 4173 |
+
"##craft": 4017,
|
| 4174 |
+
"##gn": 4018,
|
| 4175 |
+
"##gs": 4019,
|
| 4176 |
+
"##ze": 4020,
|
| 4177 |
+
"##zona": 4021,
|
| 4178 |
+
"##fort": 4022,
|
| 4179 |
"##0s": 4023,
|
| 4180 |
"thom": 4024,
|
| 4181 |
"##oring": 4025,
|
|
|
|
| 4390 |
"kuznetsova": 4234,
|
| 4391 |
".-": 4235,
|
| 4392 |
"38": 4236,
|
| 4393 |
+
"57": 4237,
|
| 4394 |
"51": 4238,
|
| 4395 |
+
"55": 4239,
|
| 4396 |
"97": 4240,
|
| 4397 |
"aig": 4241,
|
| 4398 |
"ach": 4242,
|
|
|
|
| 4453 |
"vend": 4297,
|
| 4454 |
"wis": 4298,
|
| 4455 |
"wizards": 4299,
|
| 4456 |
+
"##au": 4300,
|
| 4457 |
+
"##nam": 4301,
|
| 4458 |
+
"##ein": 4302,
|
| 4459 |
+
"##ever": 4303,
|
| 4460 |
+
"##ml": 4304,
|
| 4461 |
+
"##my": 4305,
|
| 4462 |
+
"##mos": 4306,
|
| 4463 |
+
"##dick": 4307,
|
| 4464 |
+
"##dden": 4308,
|
| 4465 |
+
"##ien": 4309,
|
| 4466 |
+
"##iro": 4310,
|
| 4467 |
+
"##iod": 4311,
|
| 4468 |
+
"##lins": 4312,
|
| 4469 |
+
"##tom": 4313,
|
| 4470 |
+
"##hran": 4314,
|
| 4471 |
+
"##pm": 4315,
|
| 4472 |
+
"##pool": 4316,
|
| 4473 |
"##rd": 4317,
|
| 4474 |
"##ray": 4318,
|
| 4475 |
"##right": 4319,
|
| 4476 |
+
"##cing": 4320,
|
| 4477 |
+
"##col": 4321,
|
| 4478 |
+
"##gar": 4322,
|
| 4479 |
"##za": 4323,
|
| 4480 |
"##jay": 4324,
|
| 4481 |
"##ern": 4325,
|
|
|
|
| 4624 |
"howard": 4468,
|
| 4625 |
"charles": 4469,
|
| 4626 |
"entered": 4470,
|
| 4627 |
+
"mcd": 4471,
|
| 4628 |
+
"mcc": 4472,
|
| 4629 |
"korean": 4473,
|
| 4630 |
"standards": 4474,
|
| 4631 |
"single": 4475,
|
|
|
|
| 4782 |
"wake": 4626,
|
| 4783 |
"wide": 4627,
|
| 4784 |
"yud": 4628,
|
| 4785 |
+
"##ae": 4629,
|
| 4786 |
+
"##aur": 4630,
|
| 4787 |
+
"##kn": 4631,
|
| 4788 |
+
"##ko": 4632,
|
| 4789 |
+
"##ew": 4633,
|
| 4790 |
+
"##sf": 4634,
|
| 4791 |
+
"##sler": 4635,
|
| 4792 |
+
"##syl": 4636,
|
| 4793 |
+
"##mers": 4637,
|
| 4794 |
+
"##burn": 4638,
|
| 4795 |
+
"##backs": 4639,
|
| 4796 |
+
"##oon": 4640,
|
| 4797 |
+
"##oom": 4641,
|
| 4798 |
+
"##dney": 4642,
|
| 4799 |
+
"##iet": 4643,
|
| 4800 |
+
"##ht": 4644,
|
| 4801 |
+
"##hy": 4645,
|
| 4802 |
+
"##hoy": 4646,
|
| 4803 |
"##ril": 4647,
|
| 4804 |
"##ruit": 4648,
|
| 4805 |
+
"##ule": 4649,
|
| 4806 |
+
"##cus": 4650,
|
| 4807 |
+
"##cop": 4651,
|
| 4808 |
+
"##gether": 4652,
|
| 4809 |
+
"##giving": 4653,
|
| 4810 |
+
"##fe": 4654,
|
| 4811 |
"##wart": 4655,
|
| 4812 |
"##work": 4656,
|
| 4813 |
"##wait": 4657,
|
|
|
|
| 5163 |
"xm": 5007,
|
| 5164 |
"yard": 5008,
|
| 5165 |
"zimb": 5009,
|
| 5166 |
+
"##ki": 5010,
|
| 5167 |
+
"##kel": 5011,
|
| 5168 |
"##eer": 5012,
|
| 5169 |
+
"##me": 5013,
|
| 5170 |
+
"##mad": 5014,
|
| 5171 |
+
"##mand": 5015,
|
| 5172 |
+
"##bury": 5016,
|
| 5173 |
+
"##of": 5017,
|
| 5174 |
+
"##iation": 5018,
|
| 5175 |
+
"##lers": 5019,
|
| 5176 |
+
"##light": 5020,
|
| 5177 |
+
"##liest": 5021,
|
| 5178 |
+
"##tv": 5022,
|
| 5179 |
+
"##hard": 5023,
|
| 5180 |
+
"##horn": 5024,
|
| 5181 |
+
"##pp": 5025,
|
| 5182 |
+
"##uan": 5026,
|
| 5183 |
+
"##ued": 5027,
|
| 5184 |
+
"##uite": 5028,
|
| 5185 |
+
"##cos": 5029,
|
| 5186 |
+
"##cell": 5030,
|
| 5187 |
+
"##care": 5031,
|
| 5188 |
+
"##ground": 5032,
|
| 5189 |
+
"##zen": 5033,
|
| 5190 |
+
"##zai": 5034,
|
| 5191 |
+
"##fc": 5035,
|
| 5192 |
"##web": 5036,
|
| 5193 |
"##jects": 5037,
|
| 5194 |
"##inct": 5038,
|
|
|
|
| 5295 |
"contest": 5139,
|
| 5296 |
"busch": 5140,
|
| 5297 |
"##izumi": 5141,
|
| 5298 |
+
"2001": 5142,
|
| 5299 |
+
"2000": 5143,
|
| 5300 |
"corner": 5144,
|
| 5301 |
"##eph": 5145,
|
| 5302 |
+
"fla": 5146,
|
| 5303 |
+
"flo": 5147,
|
| 5304 |
"flaw": 5148,
|
| 5305 |
"eli": 5149,
|
| 5306 |
"accounts": 5150,
|
|
|
|
| 5576 |
"53": 5420,
|
| 5577 |
"550": 5421,
|
| 5578 |
"64": 5422,
|
| 5579 |
+
"79": 5423,
|
| 5580 |
+
"78": 5424,
|
| 5581 |
"82": 5425,
|
| 5582 |
+
"99": 5426,
|
| 5583 |
+
"94": 5427,
|
| 5584 |
"aer": 5428,
|
| 5585 |
"ace": 5429,
|
| 5586 |
"band": 5430,
|
|
|
|
| 5662 |
"wides": 5506,
|
| 5663 |
"wto": 5507,
|
| 5664 |
"zur": 5508,
|
| 5665 |
+
"##aq": 5509,
|
| 5666 |
+
"##aire": 5510,
|
| 5667 |
+
"##netw": 5511,
|
| 5668 |
+
"##eim": 5512,
|
| 5669 |
+
"##eals": 5513,
|
| 5670 |
+
"##maker": 5514,
|
| 5671 |
+
"##bus": 5515,
|
| 5672 |
+
"##break": 5516,
|
| 5673 |
+
"##ois": 5517,
|
| 5674 |
+
"##dy": 5518,
|
| 5675 |
+
"##iop": 5519,
|
| 5676 |
+
"##iem": 5520,
|
| 5677 |
+
"##lon": 5521,
|
| 5678 |
+
"##hen": 5522,
|
| 5679 |
+
"##hol": 5523,
|
| 5680 |
+
"##hood": 5524,
|
| 5681 |
+
"##house": 5525,
|
| 5682 |
+
"##ple": 5526,
|
| 5683 |
+
"##pose": 5527,
|
| 5684 |
+
"##pread": 5528,
|
| 5685 |
+
"##yg": 5529,
|
| 5686 |
+
"##yan": 5530,
|
| 5687 |
+
"##ror": 5531,
|
| 5688 |
+
"##rel": 5532,
|
| 5689 |
+
"##rate": 5533,
|
| 5690 |
+
"##rick": 5534,
|
| 5691 |
+
"##rating": 5535,
|
| 5692 |
+
"##cr": 5536,
|
| 5693 |
+
"##cling": 5537,
|
| 5694 |
+
"##gas": 5538,
|
| 5695 |
"##vic": 5539,
|
| 5696 |
"##wr": 5540,
|
| 5697 |
"##wom": 5541,
|
|
|
|
| 5767 |
"##ocol": 5611,
|
| 5768 |
"concess": 5612,
|
| 5769 |
"conrad": 5613,
|
| 5770 |
+
"und": 5614,
|
| 5771 |
+
"unc": 5615,
|
| 5772 |
"unw": 5616,
|
| 5773 |
"units": 5617,
|
| 5774 |
"que": 5618,
|
|
|
|
| 6185 |
"66": 6029,
|
| 6186 |
"63": 6030,
|
| 6187 |
"71": 6031,
|
| 6188 |
+
"81": 6032,
|
| 6189 |
+
"88": 6033,
|
| 6190 |
"bm": 6034,
|
| 6191 |
"bes": 6035,
|
| 6192 |
"bed": 6036,
|
|
|
|
| 6213 |
"ele": 6057,
|
| 6214 |
"ech": 6058,
|
| 6215 |
"erupted": 6059,
|
| 6216 |
+
"fm": 6060,
|
| 6217 |
+
"fd": 6061,
|
| 6218 |
+
"ft": 6062,
|
| 6219 |
"fan": 6063,
|
| 6220 |
"fash": 6064,
|
| 6221 |
"fals": 6065,
|
|
|
|
| 6232 |
"hart": 6076,
|
| 6233 |
"hok": 6077,
|
| 6234 |
"hiring": 6078,
|
| 6235 |
+
"ii": 6079,
|
| 6236 |
+
"ic": 6080,
|
| 6237 |
"ioc": 6081,
|
| 6238 |
"ill": 6082,
|
| 6239 |
"ji": 6083,
|
|
|
|
| 6256 |
"lacks": 6100,
|
| 6257 |
"lux": 6101,
|
| 6258 |
"lley": 6102,
|
| 6259 |
+
"ml": 6103,
|
| 6260 |
+
"mh": 6104,
|
| 6261 |
"mates": 6105,
|
| 6262 |
"moss": 6106,
|
| 6263 |
"mey": 6107,
|
|
|
|
| 6265 |
"nom": 6109,
|
| 6266 |
"nose": 6110,
|
| 6267 |
"ps": 6111,
|
| 6268 |
+
"p2": 6112,
|
| 6269 |
+
"pf": 6113,
|
| 6270 |
"pon": 6114,
|
| 6271 |
"pill": 6115,
|
| 6272 |
"pays": 6116,
|
|
|
|
| 6301 |
"wys": 6145,
|
| 6302 |
"wave": 6146,
|
| 6303 |
"woes": 6147,
|
| 6304 |
+
"##ao": 6148,
|
| 6305 |
+
"##ni": 6149,
|
| 6306 |
+
"##nic": 6150,
|
| 6307 |
+
"##kin": 6151,
|
| 6308 |
+
"##eason": 6152,
|
| 6309 |
+
"##sin": 6153,
|
| 6310 |
+
"##mes": 6154,
|
| 6311 |
+
"##mine": 6155,
|
| 6312 |
+
"##bon": 6156,
|
| 6313 |
+
"##bel": 6157,
|
| 6314 |
+
"##bos": 6158,
|
| 6315 |
+
"##bour": 6159,
|
| 6316 |
+
"##base": 6160,
|
| 6317 |
+
"##bek": 6161,
|
| 6318 |
+
"##boy": 6162,
|
| 6319 |
+
"##bank": 6163,
|
| 6320 |
+
"##body": 6164,
|
| 6321 |
+
"##oit": 6165,
|
| 6322 |
+
"##ding": 6166,
|
| 6323 |
+
"##iar": 6167,
|
| 6324 |
+
"##ias": 6168,
|
| 6325 |
+
"##ios": 6169,
|
| 6326 |
+
"##lor": 6170,
|
| 6327 |
+
"##lison": 6171,
|
| 6328 |
+
"##lana": 6172,
|
| 6329 |
+
"##tar": 6173,
|
| 6330 |
+
"##town": 6174,
|
| 6331 |
+
"##tada": 6175,
|
| 6332 |
+
"##hill": 6176,
|
| 6333 |
+
"##hman": 6177,
|
| 6334 |
+
"##po": 6178,
|
| 6335 |
+
"##pes": 6179,
|
| 6336 |
+
"##pass": 6180,
|
| 6337 |
+
"##pped": 6181,
|
| 6338 |
+
"##yad": 6182,
|
| 6339 |
+
"##rim": 6183,
|
| 6340 |
+
"##rors": 6184,
|
| 6341 |
+
"##ca": 6185,
|
| 6342 |
+
"##case": 6186,
|
| 6343 |
+
"##qtada": 6187,
|
| 6344 |
+
"##zed": 6188,
|
| 6345 |
+
"##zie": 6189,
|
| 6346 |
+
"##zone": 6190,
|
| 6347 |
+
"##zuk": 6191,
|
| 6348 |
+
"##fall": 6192,
|
| 6349 |
+
"##vin": 6193,
|
| 6350 |
"##wag": 6194,
|
| 6351 |
"##western": 6195,
|
| 6352 |
"##wau": 6196,
|
| 6353 |
+
"##\\\\": 6197,
|
| 6354 |
+
"##jected": 6198,
|
| 6355 |
+
"##joy": 6199,
|
| 6356 |
"##--": 6200,
|
| 6357 |
"##erate": 6201,
|
| 6358 |
"##erie": 6202,
|
|
|
|
| 6410 |
"##irts": 6254,
|
| 6411 |
"##irut": 6255,
|
| 6412 |
"##iristan": 6256,
|
| 6413 |
+
"##ola": 6257,
|
| 6414 |
+
"##ols": 6258,
|
| 6415 |
"##olph": 6259,
|
| 6416 |
"##aming": 6260,
|
| 6417 |
"##ambi": 6261,
|
|
|
|
| 6654 |
"eddie": 6498,
|
| 6655 |
"streets": 6499,
|
| 6656 |
"batting": 6500,
|
| 6657 |
+
"196": 6501,
|
| 6658 |
+
"113": 6502,
|
| 6659 |
"##gests": 6503,
|
| 6660 |
"update2": 6504,
|
| 6661 |
"update1": 6505,
|
|
|
|
| 6985 |
"lleyton": 6829,
|
| 6986 |
"mhz": 6830,
|
| 6987 |
"meyer": 6831,
|
| 6988 |
+
"p2p": 6832,
|
| 6989 |
+
"pfiz": 6833,
|
| 6990 |
"ponting": 6834,
|
| 6991 |
"rfid": 6835,
|
| 6992 |
"svetlana": 6836,
|
|
|
|
| 7074 |
"honey": 6918,
|
| 7075 |
"ia": 6919,
|
| 7076 |
"icon": 6920,
|
| 7077 |
+
"jb": 6921,
|
| 7078 |
+
"jr": 6922,
|
| 7079 |
"jar": 6923,
|
| 7080 |
"jen": 6924,
|
| 7081 |
"ke": 6925,
|
|
|
|
| 7107 |
"ol": 6951,
|
| 7108 |
"oce": 6952,
|
| 7109 |
"ori": 6953,
|
| 7110 |
+
"pk": 6954,
|
| 7111 |
+
"pd": 6955,
|
| 7112 |
"pad": 6956,
|
| 7113 |
"pest": 6957,
|
| 7114 |
"pist": 6958,
|
|
|
|
| 7139 |
"tying": 6983,
|
| 7140 |
"tumb": 6984,
|
| 7141 |
"tumble": 6985,
|
| 7142 |
+
"um": 6986,
|
| 7143 |
+
"ug": 6987,
|
| 7144 |
"u2": 6988,
|
| 7145 |
"van": 6989,
|
| 7146 |
"vanc": 6990,
|
|
|
|
| 7159 |
"yes": 7003,
|
| 7160 |
"zid": 7004,
|
| 7161 |
"ziff": 7005,
|
| 7162 |
+
"##aug": 7006,
|
| 7163 |
+
"##aware": 7007,
|
| 7164 |
+
"##net": 7008,
|
| 7165 |
+
"##nom": 7009,
|
| 7166 |
+
"##nants": 7010,
|
| 7167 |
+
"##nology": 7011,
|
| 7168 |
+
"##kok": 7012,
|
| 7169 |
+
"##killer": 7013,
|
| 7170 |
+
"##ean": 7014,
|
| 7171 |
+
"##sm": 7015,
|
| 7172 |
+
"##sburg": 7016,
|
| 7173 |
+
"##mu": 7017,
|
| 7174 |
+
"##mare": 7018,
|
| 7175 |
+
"##mail": 7019,
|
| 7176 |
+
"##bar": 7020,
|
| 7177 |
+
"##bits": 7021,
|
| 7178 |
+
"##buster": 7022,
|
| 7179 |
+
"##bara": 7023,
|
| 7180 |
+
"##oin": 7024,
|
| 7181 |
+
"##oke": 7025,
|
| 7182 |
+
"##due": 7026,
|
| 7183 |
+
"##dale": 7027,
|
| 7184 |
+
"##iate": 7028,
|
| 7185 |
+
"##iber": 7029,
|
| 7186 |
+
"##iece": 7030,
|
| 7187 |
+
"##hes": 7031,
|
| 7188 |
+
"##had": 7032,
|
| 7189 |
+
"##hocks": 7033,
|
| 7190 |
+
"##pin": 7034,
|
| 7191 |
+
"##pen": 7035,
|
| 7192 |
+
"##part": 7036,
|
| 7193 |
+
"##ports": 7037,
|
| 7194 |
+
"##pson": 7038,
|
| 7195 |
+
"##yton": 7039,
|
| 7196 |
+
"##ression": 7040,
|
| 7197 |
+
"##render": 7041,
|
| 7198 |
+
"##uals": 7042,
|
| 7199 |
+
"##uana": 7043,
|
| 7200 |
+
"##cu": 7044,
|
| 7201 |
+
"##cers": 7045,
|
| 7202 |
+
"##cair": 7046,
|
| 7203 |
+
"##crew": 7047,
|
| 7204 |
+
"##gb": 7048,
|
| 7205 |
+
"##gom": 7049,
|
| 7206 |
+
"##gus": 7050,
|
| 7207 |
+
"##gard": 7051,
|
| 7208 |
+
"##gment": 7052,
|
| 7209 |
+
"##gart": 7053,
|
| 7210 |
+
"##greg": 7054,
|
| 7211 |
+
"##zer": 7055,
|
| 7212 |
+
"##zard": 7056,
|
| 7213 |
+
"##fa": 7057,
|
| 7214 |
+
"##function": 7058,
|
| 7215 |
"##voc": 7059,
|
| 7216 |
"##xious": 7060,
|
| 7217 |
"##wl": 7061,
|
|
|
|
| 7453 |
"##berry": 7297,
|
| 7454 |
"##berwol": 7298,
|
| 7455 |
"euros": 7299,
|
| 7456 |
+
"##ekom": 7300,
|
| 7457 |
+
"##ekster": 7301,
|
| 7458 |
+
"##eption": 7302,
|
| 7459 |
"flock": 7303,
|
| 7460 |
"flushing": 7304,
|
| 7461 |
"invasion": 7305,
|
|
|
|
| 7647 |
"powered": 7491,
|
| 7648 |
"really": 7492,
|
| 7649 |
"realnetw": 7493,
|
| 7650 |
+
"147": 7494,
|
| 7651 |
"148": 7495,
|
| 7652 |
+
"140": 7496,
|
| 7653 |
+
"146": 7497,
|
| 7654 |
"household": 7498,
|
| 7655 |
"mcken": 7499,
|
| 7656 |
"visa": 7500,
|
|
|
|
| 7730 |
"purpose": 7574,
|
| 7731 |
"purdue": 7575,
|
| 7732 |
"snaps": 7576,
|
| 7733 |
+
"##mingham": 7577,
|
| 7734 |
+
"##offs": 7578,
|
| 7735 |
"##itten": 7579,
|
| 7736 |
"opposed": 7580,
|
| 7737 |
"blackberry": 7581,
|
|
|
|
| 7748 |
"frag": 7592,
|
| 7749 |
"location": 7593,
|
| 7750 |
"mounted": 7594,
|
| 7751 |
+
"tyler": 7595,
|
| 7752 |
+
"type": 7596,
|
| 7753 |
"tyrone": 7597,
|
| 7754 |
"typhoon": 7598,
|
| 7755 |
"doubled": 7599,
|
|
|
|
| 7963 |
"feedster": 7807,
|
| 7964 |
"websites": 7808,
|
| 7965 |
"rebounds": 7809,
|
| 7966 |
+
"mcdonald": 7810,
|
| 7967 |
+
"mccullum": 7811,
|
| 7968 |
"solaris": 7812,
|
| 7969 |
"domainkeys": 7813,
|
| 7970 |
"citizen": 7814,
|
|
|
|
| 8045 |
"astronomers": 7889,
|
| 8046 |
"neighborhood": 7890,
|
| 8047 |
"dhaka": 7891,
|
| 8048 |
+
"fdx": 7892,
|
| 8049 |
+
"ftc": 7893,
|
| 8050 |
"false": 7894,
|
| 8051 |
"goran": 7895,
|
| 8052 |
"gurunet": 7896,
|