Add BERTopic model
Browse files- README.md +73 -0
- config.json +16 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +4074 -0
- topic_embeddings.safetensors +3 -0
- topics.json +410 -0
README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags:
|
| 4 |
+
- bertopic
|
| 5 |
+
library_name: bertopic
|
| 6 |
+
pipeline_tag: text-classification
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# MARTINI_enrich_BERTopic_A4Army
|
| 10 |
+
|
| 11 |
+
This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
|
| 12 |
+
BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
|
| 13 |
+
|
| 14 |
+
## Usage
|
| 15 |
+
|
| 16 |
+
To use this model, please install BERTopic:
|
| 17 |
+
|
| 18 |
+
```
|
| 19 |
+
pip install -U bertopic
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
You can use the model as follows:
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from bertopic import BERTopic
|
| 26 |
+
topic_model = BERTopic.load("AIDA-UPM/MARTINI_enrich_BERTopic_A4Army")
|
| 27 |
+
|
| 28 |
+
topic_model.get_topic_info()
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Topic overview
|
| 32 |
+
|
| 33 |
+
* Number of topics: 4
|
| 34 |
+
* Number of training documents: 279
|
| 35 |
+
|
| 36 |
+
<details>
|
| 37 |
+
<summary>Click here for an overview of all topics.</summary>
|
| 38 |
+
|
| 39 |
+
| Topic ID | Topic Keywords | Topic Frequency | Label |
|
| 40 |
+
|----------|----------------|-----------------|-------|
|
| 41 |
+
| -1 | court - arrests - salford - worldwidedemonstration - mikey | 32 | -1_court_arrests_salford_worldwidedemonstration |
|
| 42 |
+
| 0 | vaccine - injected - midazolam - nurses - stockport | 120 | 0_vaccine_injected_midazolam_nurses |
|
| 43 |
+
| 1 | posters - rallies - wednesday - wetherspoons - brolly | 90 | 1_posters_rallies_wednesday_wetherspoons |
|
| 44 |
+
| 2 | lancashire - corbyn - meetings - interclubbers - 29th | 37 | 2_lancashire_corbyn_meetings_interclubbers |
|
| 45 |
+
|
| 46 |
+
</details>
|
| 47 |
+
|
| 48 |
+
## Training hyperparameters
|
| 49 |
+
|
| 50 |
+
* calculate_probabilities: True
|
| 51 |
+
* language: None
|
| 52 |
+
* low_memory: False
|
| 53 |
+
* min_topic_size: 10
|
| 54 |
+
* n_gram_range: (1, 1)
|
| 55 |
+
* nr_topics: None
|
| 56 |
+
* seed_topic_list: None
|
| 57 |
+
* top_n_words: 10
|
| 58 |
+
* verbose: False
|
| 59 |
+
* zeroshot_min_similarity: 0.7
|
| 60 |
+
* zeroshot_topic_list: None
|
| 61 |
+
|
| 62 |
+
## Framework versions
|
| 63 |
+
|
| 64 |
+
* Numpy: 1.26.4
|
| 65 |
+
* HDBSCAN: 0.8.40
|
| 66 |
+
* UMAP: 0.5.7
|
| 67 |
+
* Pandas: 2.2.3
|
| 68 |
+
* Scikit-Learn: 1.5.2
|
| 69 |
+
* Sentence-transformers: 3.3.1
|
| 70 |
+
* Transformers: 4.46.3
|
| 71 |
+
* Numba: 0.60.0
|
| 72 |
+
* Plotly: 5.24.1
|
| 73 |
+
* Python: 3.10.12
|
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"calculate_probabilities": true,
|
| 3 |
+
"language": null,
|
| 4 |
+
"low_memory": false,
|
| 5 |
+
"min_topic_size": 10,
|
| 6 |
+
"n_gram_range": [
|
| 7 |
+
1,
|
| 8 |
+
1
|
| 9 |
+
],
|
| 10 |
+
"nr_topics": null,
|
| 11 |
+
"seed_topic_list": null,
|
| 12 |
+
"top_n_words": 10,
|
| 13 |
+
"verbose": false,
|
| 14 |
+
"zeroshot_min_similarity": 0.7,
|
| 15 |
+
"zeroshot_topic_list": null
|
| 16 |
+
}
|
ctfidf.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ad94e72d4647855d00f3922036c7427f8373396974db21fbb607c8bd93f50b5
|
| 3 |
+
size 95088
|
ctfidf_config.json
ADDED
|
@@ -0,0 +1,4074 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"ctfidf_model": {
|
| 3 |
+
"bm25_weighting": false,
|
| 4 |
+
"reduce_frequent_words": true
|
| 5 |
+
},
|
| 6 |
+
"vectorizer_model": {
|
| 7 |
+
"params": {
|
| 8 |
+
"analyzer": "word",
|
| 9 |
+
"binary": false,
|
| 10 |
+
"decode_error": "strict",
|
| 11 |
+
"encoding": "utf-8",
|
| 12 |
+
"input": "content",
|
| 13 |
+
"lowercase": true,
|
| 14 |
+
"max_df": 0.8,
|
| 15 |
+
"max_features": null,
|
| 16 |
+
"min_df": 1,
|
| 17 |
+
"ngram_range": [
|
| 18 |
+
1,
|
| 19 |
+
1
|
| 20 |
+
],
|
| 21 |
+
"stop_words": [
|
| 22 |
+
"i",
|
| 23 |
+
"me",
|
| 24 |
+
"my",
|
| 25 |
+
"myself",
|
| 26 |
+
"we",
|
| 27 |
+
"our",
|
| 28 |
+
"ours",
|
| 29 |
+
"ourselves",
|
| 30 |
+
"you",
|
| 31 |
+
"you're",
|
| 32 |
+
"you've",
|
| 33 |
+
"you'll",
|
| 34 |
+
"you'd",
|
| 35 |
+
"your",
|
| 36 |
+
"yours",
|
| 37 |
+
"yourself",
|
| 38 |
+
"yourselves",
|
| 39 |
+
"he",
|
| 40 |
+
"him",
|
| 41 |
+
"his",
|
| 42 |
+
"himself",
|
| 43 |
+
"she",
|
| 44 |
+
"she's",
|
| 45 |
+
"her",
|
| 46 |
+
"hers",
|
| 47 |
+
"herself",
|
| 48 |
+
"it",
|
| 49 |
+
"it's",
|
| 50 |
+
"its",
|
| 51 |
+
"itself",
|
| 52 |
+
"they",
|
| 53 |
+
"them",
|
| 54 |
+
"their",
|
| 55 |
+
"theirs",
|
| 56 |
+
"themselves",
|
| 57 |
+
"what",
|
| 58 |
+
"which",
|
| 59 |
+
"who",
|
| 60 |
+
"whom",
|
| 61 |
+
"this",
|
| 62 |
+
"that",
|
| 63 |
+
"that'll",
|
| 64 |
+
"these",
|
| 65 |
+
"those",
|
| 66 |
+
"am",
|
| 67 |
+
"is",
|
| 68 |
+
"are",
|
| 69 |
+
"was",
|
| 70 |
+
"were",
|
| 71 |
+
"be",
|
| 72 |
+
"been",
|
| 73 |
+
"being",
|
| 74 |
+
"have",
|
| 75 |
+
"has",
|
| 76 |
+
"had",
|
| 77 |
+
"having",
|
| 78 |
+
"do",
|
| 79 |
+
"does",
|
| 80 |
+
"did",
|
| 81 |
+
"doing",
|
| 82 |
+
"a",
|
| 83 |
+
"an",
|
| 84 |
+
"the",
|
| 85 |
+
"and",
|
| 86 |
+
"but",
|
| 87 |
+
"if",
|
| 88 |
+
"or",
|
| 89 |
+
"because",
|
| 90 |
+
"as",
|
| 91 |
+
"until",
|
| 92 |
+
"while",
|
| 93 |
+
"of",
|
| 94 |
+
"at",
|
| 95 |
+
"by",
|
| 96 |
+
"for",
|
| 97 |
+
"with",
|
| 98 |
+
"about",
|
| 99 |
+
"against",
|
| 100 |
+
"between",
|
| 101 |
+
"into",
|
| 102 |
+
"through",
|
| 103 |
+
"during",
|
| 104 |
+
"before",
|
| 105 |
+
"after",
|
| 106 |
+
"above",
|
| 107 |
+
"below",
|
| 108 |
+
"to",
|
| 109 |
+
"from",
|
| 110 |
+
"up",
|
| 111 |
+
"down",
|
| 112 |
+
"in",
|
| 113 |
+
"out",
|
| 114 |
+
"on",
|
| 115 |
+
"off",
|
| 116 |
+
"over",
|
| 117 |
+
"under",
|
| 118 |
+
"again",
|
| 119 |
+
"further",
|
| 120 |
+
"then",
|
| 121 |
+
"once",
|
| 122 |
+
"here",
|
| 123 |
+
"there",
|
| 124 |
+
"when",
|
| 125 |
+
"where",
|
| 126 |
+
"why",
|
| 127 |
+
"how",
|
| 128 |
+
"all",
|
| 129 |
+
"any",
|
| 130 |
+
"both",
|
| 131 |
+
"each",
|
| 132 |
+
"few",
|
| 133 |
+
"more",
|
| 134 |
+
"most",
|
| 135 |
+
"other",
|
| 136 |
+
"some",
|
| 137 |
+
"such",
|
| 138 |
+
"no",
|
| 139 |
+
"nor",
|
| 140 |
+
"not",
|
| 141 |
+
"only",
|
| 142 |
+
"own",
|
| 143 |
+
"same",
|
| 144 |
+
"so",
|
| 145 |
+
"than",
|
| 146 |
+
"too",
|
| 147 |
+
"very",
|
| 148 |
+
"s",
|
| 149 |
+
"t",
|
| 150 |
+
"can",
|
| 151 |
+
"will",
|
| 152 |
+
"just",
|
| 153 |
+
"don",
|
| 154 |
+
"don't",
|
| 155 |
+
"should",
|
| 156 |
+
"should've",
|
| 157 |
+
"now",
|
| 158 |
+
"d",
|
| 159 |
+
"ll",
|
| 160 |
+
"m",
|
| 161 |
+
"o",
|
| 162 |
+
"re",
|
| 163 |
+
"ve",
|
| 164 |
+
"y",
|
| 165 |
+
"ain",
|
| 166 |
+
"aren",
|
| 167 |
+
"aren't",
|
| 168 |
+
"couldn",
|
| 169 |
+
"couldn't",
|
| 170 |
+
"didn",
|
| 171 |
+
"didn't",
|
| 172 |
+
"doesn",
|
| 173 |
+
"doesn't",
|
| 174 |
+
"hadn",
|
| 175 |
+
"hadn't",
|
| 176 |
+
"hasn",
|
| 177 |
+
"hasn't",
|
| 178 |
+
"haven",
|
| 179 |
+
"haven't",
|
| 180 |
+
"isn",
|
| 181 |
+
"isn't",
|
| 182 |
+
"ma",
|
| 183 |
+
"mightn",
|
| 184 |
+
"mightn't",
|
| 185 |
+
"mustn",
|
| 186 |
+
"mustn't",
|
| 187 |
+
"needn",
|
| 188 |
+
"needn't",
|
| 189 |
+
"shan",
|
| 190 |
+
"shan't",
|
| 191 |
+
"shouldn",
|
| 192 |
+
"shouldn't",
|
| 193 |
+
"wasn",
|
| 194 |
+
"wasn't",
|
| 195 |
+
"weren",
|
| 196 |
+
"weren't",
|
| 197 |
+
"won",
|
| 198 |
+
"won't",
|
| 199 |
+
"wouldn",
|
| 200 |
+
"wouldn't",
|
| 201 |
+
"A4Army"
|
| 202 |
+
],
|
| 203 |
+
"strip_accents": "unicode",
|
| 204 |
+
"token_pattern": "(?u)\\b\\w\\w+\\b",
|
| 205 |
+
"vocabulary": null
|
| 206 |
+
},
|
| 207 |
+
"vocab": {
|
| 208 |
+
"rapid": 2819,
|
| 209 |
+
"response": 2935,
|
| 210 |
+
"share": 3086,
|
| 211 |
+
"url": 3614,
|
| 212 |
+
"emergencies": 1275,
|
| 213 |
+
"bailiffs": 501,
|
| 214 |
+
"cops": 949,
|
| 215 |
+
"council": 969,
|
| 216 |
+
"someone": 3200,
|
| 217 |
+
"property": 2733,
|
| 218 |
+
"specific": 3227,
|
| 219 |
+
"arrested": 415,
|
| 220 |
+
"threat": 3447,
|
| 221 |
+
"arrest": 414,
|
| 222 |
+
"children": 801,
|
| 223 |
+
"risk": 2960,
|
| 224 |
+
"snatched": 3184,
|
| 225 |
+
"masquerading": 2151,
|
| 226 |
+
"constables": 919,
|
| 227 |
+
"social": 3189,
|
| 228 |
+
"workers": 3818,
|
| 229 |
+
"emergency": 1276,
|
| 230 |
+
"needs": 2309,
|
| 231 |
+
"attend": 455,
|
| 232 |
+
"immediately": 1758,
|
| 233 |
+
"unmuted": 3591,
|
| 234 |
+
"settings": 3079,
|
| 235 |
+
"notifications": 2351,
|
| 236 |
+
"make": 2121,
|
| 237 |
+
"useful": 3620,
|
| 238 |
+
"consider": 914,
|
| 239 |
+
"using": 3624,
|
| 240 |
+
"folders": 1474,
|
| 241 |
+
"feature": 1413,
|
| 242 |
+
"put": 2780,
|
| 243 |
+
"noisy": 2337,
|
| 244 |
+
"separate": 3066,
|
| 245 |
+
"folder": 1473,
|
| 246 |
+
"court": 979,
|
| 247 |
+
"hearings": 1656,
|
| 248 |
+
"news": 2323,
|
| 249 |
+
"videos": 3672,
|
| 250 |
+
"appear": 389,
|
| 251 |
+
"100s": 16,
|
| 252 |
+
"random": 2815,
|
| 253 |
+
"unrelated": 3594,
|
| 254 |
+
"assumption": 440,
|
| 255 |
+
"en": 1280,
|
| 256 |
+
"route": 2981,
|
| 257 |
+
"kabal": 1910,
|
| 258 |
+
"know": 1934,
|
| 259 |
+
"private": 2697,
|
| 260 |
+
"really": 2833,
|
| 261 |
+
"unless": 3587,
|
| 262 |
+
"strict": 3298,
|
| 263 |
+
"screening": 3035,
|
| 264 |
+
"procedure": 2703,
|
| 265 |
+
"user": 3621,
|
| 266 |
+
"local": 2043,
|
| 267 |
+
"full": 1528,
|
| 268 |
+
"irrelevant": 1857,
|
| 269 |
+
"newly": 2322,
|
| 270 |
+
"set": 3077,
|
| 271 |
+
"replace": 2903,
|
| 272 |
+
"war": 3718,
|
| 273 |
+
"peace": 2519,
|
| 274 |
+
"paused": 2506,
|
| 275 |
+
"11th": 26,
|
| 276 |
+
"sept": 3067,
|
| 277 |
+
"2023": 75,
|
| 278 |
+
"agents": 322,
|
| 279 |
+
"79": 217,
|
| 280 |
+
"glebe": 1575,
|
| 281 |
+
"shaw": 3090,
|
| 282 |
+
"ol2": 2398,
|
| 283 |
+
"7sf": 222,
|
| 284 |
+
"nearby": 2303,
|
| 285 |
+
"plain": 2591,
|
| 286 |
+
"clothes": 841,
|
| 287 |
+
"man": 2127,
|
| 288 |
+
"woman": 3808,
|
| 289 |
+
"banging": 506,
|
| 290 |
+
"door": 1189,
|
| 291 |
+
"minutes": 2236,
|
| 292 |
+
"residents": 2923,
|
| 293 |
+
"afraid": 317,
|
| 294 |
+
"regret": 2872,
|
| 295 |
+
"inform": 1793,
|
| 296 |
+
"network": 2315,
|
| 297 |
+
"placed": 2589,
|
| 298 |
+
"pause": 2505,
|
| 299 |
+
"notice": 2348,
|
| 300 |
+
"message": 2201,
|
| 301 |
+
"board": 595,
|
| 302 |
+
"invite": 1851,
|
| 303 |
+
"links": 2020,
|
| 304 |
+
"revoked": 2950,
|
| 305 |
+
"accept": 262,
|
| 306 |
+
"sincere": 3139,
|
| 307 |
+
"apologies": 386,
|
| 308 |
+
"understand": 3571,
|
| 309 |
+
"come": 866,
|
| 310 |
+
"shock": 3102,
|
| 311 |
+
"upsetting": 3610,
|
| 312 |
+
"intention": 1829,
|
| 313 |
+
"take": 3369,
|
| 314 |
+
"needed": 2307,
|
| 315 |
+
"move": 2271,
|
| 316 |
+
"thank": 3425,
|
| 317 |
+
"everyone": 1326,
|
| 318 |
+
"bottom": 615,
|
| 319 |
+
"heart": 1657,
|
| 320 |
+
"think": 3436,
|
| 321 |
+
"others": 2444,
|
| 322 |
+
"lead": 1975,
|
| 323 |
+
"push": 2776,
|
| 324 |
+
"forward": 1500,
|
| 325 |
+
"renewed": 2896,
|
| 326 |
+
"energy": 1288,
|
| 327 |
+
"co": 846,
|
| 328 |
+
"ordinate": 2432,
|
| 329 |
+
"grow": 1614,
|
| 330 |
+
"networks": 2316,
|
| 331 |
+
"barry": 515,
|
| 332 |
+
"call": 696,
|
| 333 |
+
"observers": 2370,
|
| 334 |
+
"auditors": 464,
|
| 335 |
+
"hearing": 1655,
|
| 336 |
+
"name": 2291,
|
| 337 |
+
"mikey": 2221,
|
| 338 |
+
"aka": 332,
|
| 339 |
+
"michael": 2211,
|
| 340 |
+
"photiou": 2559,
|
| 341 |
+
"bail": 498,
|
| 342 |
+
"application": 393,
|
| 343 |
+
"relating": 2878,
|
| 344 |
+
"assault": 434,
|
| 345 |
+
"charges": 782,
|
| 346 |
+
"house": 1718,
|
| 347 |
+
"chester": 797,
|
| 348 |
+
"wed": 3746,
|
| 349 |
+
"sep": 3065,
|
| 350 |
+
"sure": 3346,
|
| 351 |
+
"aim": 329,
|
| 352 |
+
"10am": 18,
|
| 353 |
+
"crown": 1012,
|
| 354 |
+
"colvin": 862,
|
| 355 |
+
"castle": 741,
|
| 356 |
+
"ch1": 768,
|
| 357 |
+
"2an": 107,
|
| 358 |
+
"contact": 926,
|
| 359 |
+
"respectful": 2930,
|
| 360 |
+
"polite": 2626,
|
| 361 |
+
"calm": 701,
|
| 362 |
+
"times": 3465,
|
| 363 |
+
"judge": 1900,
|
| 364 |
+
"confirmed": 902,
|
| 365 |
+
"satanic": 3010,
|
| 366 |
+
"freemason": 1517,
|
| 367 |
+
"speak": 3222,
|
| 368 |
+
"noise": 2336,
|
| 369 |
+
"inside": 1816,
|
| 370 |
+
"courtroom": 981,
|
| 371 |
+
"open": 2415,
|
| 372 |
+
"previous": 2683,
|
| 373 |
+
"scheduled": 3024,
|
| 374 |
+
"monday": 2256,
|
| 375 |
+
"postponed": 2652,
|
| 376 |
+
"detail": 1118,
|
| 377 |
+
"situation": 3148,
|
| 378 |
+
"shut": 3121,
|
| 379 |
+
"urgent": 3613,
|
| 380 |
+
"child": 800,
|
| 381 |
+
"snatchers": 3185,
|
| 382 |
+
"services": 3074,
|
| 383 |
+
"attempting": 453,
|
| 384 |
+
"snatch": 3183,
|
| 385 |
+
"year": 3850,
|
| 386 |
+
"girl": 1570,
|
| 387 |
+
"asap": 425,
|
| 388 |
+
"site": 3144,
|
| 389 |
+
"multiple": 2279,
|
| 390 |
+
"vehicles": 3650,
|
| 391 |
+
"searched": 3039,
|
| 392 |
+
"phones": 2558,
|
| 393 |
+
"confiscated": 904,
|
| 394 |
+
"engage": 1290,
|
| 395 |
+
"observe": 2368,
|
| 396 |
+
"film": 1442,
|
| 397 |
+
"warning": 3725,
|
| 398 |
+
"young": 3857,
|
| 399 |
+
"stay": 3266,
|
| 400 |
+
"background": 494,
|
| 401 |
+
"could": 968,
|
| 402 |
+
"use": 3618,
|
| 403 |
+
"action": 277,
|
| 404 |
+
"justification": 1908,
|
| 405 |
+
"63": 192,
|
| 406 |
+
"elgin": 1269,
|
| 407 |
+
"ashton": 429,
|
| 408 |
+
"lyne": 2087,
|
| 409 |
+
"ol7": 2399,
|
| 410 |
+
"9by": 239,
|
| 411 |
+
"family": 1402,
|
| 412 |
+
"elsewhere": 1271,
|
| 413 |
+
"checking": 792,
|
| 414 |
+
"back": 493,
|
| 415 |
+
"develops": 1127,
|
| 416 |
+
"6th": 202,
|
| 417 |
+
"7th": 223,
|
| 418 |
+
"september": 3068,
|
| 419 |
+
"room": 2975,
|
| 420 |
+
"taunton": 3382,
|
| 421 |
+
"magistrates": 2113,
|
| 422 |
+
"advance": 306,
|
| 423 |
+
"notification": 2350,
|
| 424 |
+
"witnesses": 3804,
|
| 425 |
+
"gallery": 1543,
|
| 426 |
+
"gary": 1551,
|
| 427 |
+
"thompson": 3441,
|
| 428 |
+
"trial": 3524,
|
| 429 |
+
"security": 3045,
|
| 430 |
+
"guards": 1619,
|
| 431 |
+
"jab": 1865,
|
| 432 |
+
"person": 2541,
|
| 433 |
+
"video": 3671,
|
| 434 |
+
"link": 2018,
|
| 435 |
+
"remand": 2889,
|
| 436 |
+
"since": 3138,
|
| 437 |
+
"moved": 2272,
|
| 438 |
+
"prison": 2694,
|
| 439 |
+
"exeter": 1348,
|
| 440 |
+
"two": 3554,
|
| 441 |
+
"arrive": 419,
|
| 442 |
+
"early": 1230,
|
| 443 |
+
"address": 290,
|
| 444 |
+
"johns": 1887,
|
| 445 |
+
"rd": 2825,
|
| 446 |
+
"ta1": 3365,
|
| 447 |
+
"4ax": 160,
|
| 448 |
+
"welcomes": 3758,
|
| 449 |
+
"one": 2406,
|
| 450 |
+
"however": 1719,
|
| 451 |
+
"spaces": 3217,
|
| 452 |
+
"limited": 2014,
|
| 453 |
+
"give": 1571,
|
| 454 |
+
"preference": 2664,
|
| 455 |
+
"law": 1970,
|
| 456 |
+
"notes": 2347,
|
| 457 |
+
"breaches": 631,
|
| 458 |
+
"used": 3619,
|
| 459 |
+
"attendees": 458,
|
| 460 |
+
"courteous": 980,
|
| 461 |
+
"staff": 3249,
|
| 462 |
+
"excuse": 1344,
|
| 463 |
+
"exclude": 1342,
|
| 464 |
+
"particular": 2483,
|
| 465 |
+
"must": 2287,
|
| 466 |
+
"quiet": 2800,
|
| 467 |
+
"try": 3539,
|
| 468 |
+
"block": 589,
|
| 469 |
+
"entering": 1302,
|
| 470 |
+
"across": 274,
|
| 471 |
+
"country": 974,
|
| 472 |
+
"unlawfully": 3586,
|
| 473 |
+
"blocking": 592,
|
| 474 |
+
"members": 2188,
|
| 475 |
+
"buildings": 669,
|
| 476 |
+
"passing": 2492,
|
| 477 |
+
"front": 1525,
|
| 478 |
+
"desk": 1112,
|
| 479 |
+
"mention": 2196,
|
| 480 |
+
"respondent": 2934,
|
| 481 |
+
"say": 3016,
|
| 482 |
+
"together": 3480,
|
| 483 |
+
"else": 1270,
|
| 484 |
+
"business": 679,
|
| 485 |
+
"answer": 375,
|
| 486 |
+
"questions": 2794,
|
| 487 |
+
"respond": 2933,
|
| 488 |
+
"question": 2790,
|
| 489 |
+
"obliged": 2366,
|
| 490 |
+
"yes": 3852,
|
| 491 |
+
"obliges": 2367,
|
| 492 |
+
"remember": 2892,
|
| 493 |
+
"absolutely": 258,
|
| 494 |
+
"courts": 982,
|
| 495 |
+
"small": 3173,
|
| 496 |
+
"number": 2356,
|
| 497 |
+
"exceptions": 1338,
|
| 498 |
+
"member": 2187,
|
| 499 |
+
"fully": 1529,
|
| 500 |
+
"entitled": 1305,
|
| 501 |
+
"enter": 1300,
|
| 502 |
+
"without": 3802,
|
| 503 |
+
"giving": 1574,
|
| 504 |
+
"reason": 2834,
|
| 505 |
+
"printer": 2690,
|
| 506 |
+
"copies": 947,
|
| 507 |
+
"otherwise": 2445,
|
| 508 |
+
"copy": 950,
|
| 509 |
+
"phone": 2557,
|
| 510 |
+
"refer": 2858,
|
| 511 |
+
"bag": 497,
|
| 512 |
+
"minimum": 2231,
|
| 513 |
+
"amount": 361,
|
| 514 |
+
"objects": 2364,
|
| 515 |
+
"possible": 2642,
|
| 516 |
+
"gets": 1566,
|
| 517 |
+
"incident": 1769,
|
| 518 |
+
"paperwork": 2473,
|
| 519 |
+
"police": 2620,
|
| 520 |
+
"evidence": 1329,
|
| 521 |
+
"informed": 1796,
|
| 522 |
+
"consent": 910,
|
| 523 |
+
"done": 1188,
|
| 524 |
+
"center": 760,
|
| 525 |
+
"crime": 1001,
|
| 526 |
+
"battery": 524,
|
| 527 |
+
"show": 3111,
|
| 528 |
+
"reasonable": 2835,
|
| 529 |
+
"throughout": 3455,
|
| 530 |
+
"solely": 3197,
|
| 531 |
+
"bringing": 645,
|
| 532 |
+
"attention": 459,
|
| 533 |
+
"injury": 1810,
|
| 534 |
+
"death": 1061,
|
| 535 |
+
"caused": 747,
|
| 536 |
+
"injections": 1805,
|
| 537 |
+
"interacted": 1830,
|
| 538 |
+
"remaining": 2888,
|
| 539 |
+
"indeed": 1783,
|
| 540 |
+
"point": 2612,
|
| 541 |
+
"joking": 1892,
|
| 542 |
+
"laughing": 1966,
|
| 543 |
+
"top": 3491,
|
| 544 |
+
"presence": 2670,
|
| 545 |
+
"indicates": 1785,
|
| 546 |
+
"given": 1572,
|
| 547 |
+
"instructions": 1824,
|
| 548 |
+
"high": 1679,
|
| 549 |
+
"rid": 2953,
|
| 550 |
+
"activists": 280,
|
| 551 |
+
"means": 2171,
|
| 552 |
+
"standard": 3251,
|
| 553 |
+
"practice": 2660,
|
| 554 |
+
"arrests": 417,
|
| 555 |
+
"scare": 3021,
|
| 556 |
+
"claiming": 822,
|
| 557 |
+
"made": 2110,
|
| 558 |
+
"allegations": 342,
|
| 559 |
+
"common": 878,
|
| 560 |
+
"cop": 945,
|
| 561 |
+
"committed": 877,
|
| 562 |
+
"comman": 870,
|
| 563 |
+
"touching": 3495,
|
| 564 |
+
"arm": 407,
|
| 565 |
+
"04": 6,
|
| 566 |
+
"18": 44,
|
| 567 |
+
"standing": 3253,
|
| 568 |
+
"calmly": 702,
|
| 569 |
+
"49": 156,
|
| 570 |
+
"54": 175,
|
| 571 |
+
"camera": 707,
|
| 572 |
+
"pointed": 2613,
|
| 573 |
+
"different": 1136,
|
| 574 |
+
"direction": 1145,
|
| 575 |
+
"heard": 1654,
|
| 576 |
+
"possibly": 2643,
|
| 577 |
+
"44": 148,
|
| 578 |
+
"guard": 1618,
|
| 579 |
+
"stepped": 3271,
|
| 580 |
+
"got": 1591,
|
| 581 |
+
"pushing": 2779,
|
| 582 |
+
"actually": 285,
|
| 583 |
+
"bit": 575,
|
| 584 |
+
"laugh": 1965,
|
| 585 |
+
"40": 145,
|
| 586 |
+
"47": 154,
|
| 587 |
+
"commits": 876,
|
| 588 |
+
"despite": 1114,
|
| 589 |
+
"sending": 3062,
|
| 590 |
+
"notices": 2349,
|
| 591 |
+
"affidavits": 315,
|
| 592 |
+
"held": 1662,
|
| 593 |
+
"altcourse": 353,
|
| 594 |
+
"liverpool": 2037,
|
| 595 |
+
"treated": 3521,
|
| 596 |
+
"poorly": 2635,
|
| 597 |
+
"standards": 3252,
|
| 598 |
+
"repeatedly": 2902,
|
| 599 |
+
"denied": 1098,
|
| 600 |
+
"access": 264,
|
| 601 |
+
"justice": 1907,
|
| 602 |
+
"list": 2026,
|
| 603 |
+
"22": 84,
|
| 604 |
+
"complaints": 891,
|
| 605 |
+
"complain": 889,
|
| 606 |
+
"ppo": 2658,
|
| 607 |
+
"behalf": 539,
|
| 608 |
+
"involved": 1854,
|
| 609 |
+
"case": 737,
|
| 610 |
+
"bailiff": 500,
|
| 611 |
+
"raid": 2802,
|
| 612 |
+
"recently": 2844,
|
| 613 |
+
"appeared": 390,
|
| 614 |
+
"preliminary": 2666,
|
| 615 |
+
"everett": 1325,
|
| 616 |
+
"interested": 1835,
|
| 617 |
+
"litany": 2029,
|
| 618 |
+
"questionable": 2791,
|
| 619 |
+
"actions": 278,
|
| 620 |
+
"cps": 988,
|
| 621 |
+
"report": 2909,
|
| 622 |
+
"world": 3822,
|
| 623 |
+
"wide": 3781,
|
| 624 |
+
"13": 31,
|
| 625 |
+
"united": 3580,
|
| 626 |
+
"kingdom": 1930,
|
| 627 |
+
"rising": 2959,
|
| 628 |
+
"23rd": 88,
|
| 629 |
+
"free": 1514,
|
| 630 |
+
"side": 3125,
|
| 631 |
+
"human": 1727,
|
| 632 |
+
"rights": 2955,
|
| 633 |
+
"manchester_freedom_fighters": 2129,
|
| 634 |
+
"worldwidedemonstration": 3825,
|
| 635 |
+
"worldwidedemochat": 3824,
|
| 636 |
+
"facebook": 1384,
|
| 637 |
+
"com": 863,
|
| 638 |
+
"save": 3012,
|
| 639 |
+
"image": 1754,
|
| 640 |
+
"reupload": 2948,
|
| 641 |
+
"getting": 1567,
|
| 642 |
+
"lamont": 1949,
|
| 643 |
+
"fake": 1397,
|
| 644 |
+
"username": 3622,
|
| 645 |
+
"extra": 1377,
|
| 646 |
+
"real": 2831,
|
| 647 |
+
"written": 3838,
|
| 648 |
+
"section": 3043,
|
| 649 |
+
"bio": 567,
|
| 650 |
+
"never": 2320,
|
| 651 |
+
"asking": 432,
|
| 652 |
+
"permission": 2538,
|
| 653 |
+
"well": 3760,
|
| 654 |
+
"illegal": 1752,
|
| 655 |
+
"permanent": 2536,
|
| 656 |
+
"criminal": 1003,
|
| 657 |
+
"damage": 1031,
|
| 658 |
+
"permanently": 2537,
|
| 659 |
+
"glued": 1580,
|
| 660 |
+
"onto": 2413,
|
| 661 |
+
"windows": 3793,
|
| 662 |
+
"advertising": 311,
|
| 663 |
+
"advertisers": 310,
|
| 664 |
+
"exposing": 1371,
|
| 665 |
+
"vulgar": 3698,
|
| 666 |
+
"language": 1956,
|
| 667 |
+
"gimp": 1569,
|
| 668 |
+
"send": 3061,
|
| 669 |
+
"17": 41,
|
| 670 |
+
"dressed": 1207,
|
| 671 |
+
"constable": 918,
|
| 672 |
+
"uniforms": 3576,
|
| 673 |
+
"drawn": 1205,
|
| 674 |
+
"batons": 523,
|
| 675 |
+
"advertiser": 309,
|
| 676 |
+
"meeting": 2178,
|
| 677 |
+
"mount": 2270,
|
| 678 |
+
"m2": 2095,
|
| 679 |
+
"5ns": 186,
|
| 680 |
+
"weds": 3749,
|
| 681 |
+
"30th": 122,
|
| 682 |
+
"aug": 465,
|
| 683 |
+
"7pm": 221,
|
| 684 |
+
"shout": 3109,
|
| 685 |
+
"continually": 929,
|
| 686 |
+
"threaten": 3448,
|
| 687 |
+
"duration": 1225,
|
| 688 |
+
"randomly": 2816,
|
| 689 |
+
"falsley": 1400,
|
| 690 |
+
"release": 2881,
|
| 691 |
+
"rip": 2956,
|
| 692 |
+
"signs": 3128,
|
| 693 |
+
"tell": 3399,
|
| 694 |
+
"pretending": 2679,
|
| 695 |
+
"msm": 2277,
|
| 696 |
+
"approve": 399,
|
| 697 |
+
"politically": 2628,
|
| 698 |
+
"ignore": 1749,
|
| 699 |
+
"flagrant": 1461,
|
| 700 |
+
"violations": 3680,
|
| 701 |
+
"224": 85,
|
| 702 |
+
"planning": 2596,
|
| 703 |
+
"act": 275,
|
| 704 |
+
"1990": 52,
|
| 705 |
+
"bbc": 527,
|
| 706 |
+
"vrus": 3696,
|
| 707 |
+
"19th": 53,
|
| 708 |
+
"salford": 3004,
|
| 709 |
+
"m50": 2104,
|
| 710 |
+
"2hf": 109,
|
| 711 |
+
"break": 632,
|
| 712 |
+
"cashless": 739,
|
| 713 |
+
"settlement": 3081,
|
| 714 |
+
"shop": 3103,
|
| 715 |
+
"outlet": 2447,
|
| 716 |
+
"refuses": 2864,
|
| 717 |
+
"watertight": 3736,
|
| 718 |
+
"lawful": 1971,
|
| 719 |
+
"process": 2706,
|
| 720 |
+
"pay": 2508,
|
| 721 |
+
"bank": 507,
|
| 722 |
+
"england": 1292,
|
| 723 |
+
"royal": 2983,
|
| 724 |
+
"mint": 2233,
|
| 725 |
+
"important": 1764,
|
| 726 |
+
"consume": 925,
|
| 727 |
+
"product": 2715,
|
| 728 |
+
"exact": 1332,
|
| 729 |
+
"slightly": 3170,
|
| 730 |
+
"ready": 2830,
|
| 731 |
+
"something": 3202,
|
| 732 |
+
"behind": 540,
|
| 733 |
+
"counter": 972,
|
| 734 |
+
"prepared": 2668,
|
| 735 |
+
"eg": 1259,
|
| 736 |
+
"coffee": 850,
|
| 737 |
+
"worker": 3817,
|
| 738 |
+
"gives": 1573,
|
| 739 |
+
"item": 1861,
|
| 740 |
+
"debt": 1066,
|
| 741 |
+
"incurred": 1782,
|
| 742 |
+
"seller": 3059,
|
| 743 |
+
"cannot": 724,
|
| 744 |
+
"sue": 3323,
|
| 745 |
+
"buyer": 686,
|
| 746 |
+
"offers": 2385,
|
| 747 |
+
"legal": 1988,
|
| 748 |
+
"tender": 3407,
|
| 749 |
+
"coins": 852,
|
| 750 |
+
"muffin": 2278,
|
| 751 |
+
"bite": 578,
|
| 752 |
+
"walk": 3709,
|
| 753 |
+
"simple": 3136,
|
| 754 |
+
"boycott": 622,
|
| 755 |
+
"masses": 2153,
|
| 756 |
+
"accepted": 263,
|
| 757 |
+
"blindly": 588,
|
| 758 |
+
"leading": 1977,
|
| 759 |
+
"chinese": 804,
|
| 760 |
+
"credit": 996,
|
| 761 |
+
"score": 3031,
|
| 762 |
+
"system": 3363,
|
| 763 |
+
"always": 356,
|
| 764 |
+
"higher": 1680,
|
| 765 |
+
"quality": 2786,
|
| 766 |
+
"copeland": 946,
|
| 767 |
+
"train": 3509,
|
| 768 |
+
"hamilton": 1632,
|
| 769 |
+
"morning": 2265,
|
| 770 |
+
"unknown": 3584,
|
| 771 |
+
"wirral": 3798,
|
| 772 |
+
"birkenhead": 572,
|
| 773 |
+
"merseyside": 2199,
|
| 774 |
+
"ch41": 770,
|
| 775 |
+
"5hw": 184,
|
| 776 |
+
"witness": 3803,
|
| 777 |
+
"audit": 462,
|
| 778 |
+
"let": 1996,
|
| 779 |
+
"judges": 1901,
|
| 780 |
+
"taking": 3372,
|
| 781 |
+
"active": 279,
|
| 782 |
+
"interest": 1834,
|
| 783 |
+
"proceedings": 2705,
|
| 784 |
+
"virus": 3681,
|
| 785 |
+
"return": 2946,
|
| 786 |
+
"following": 1478,
|
| 787 |
+
"22nd": 86,
|
| 788 |
+
"wednesday": 3747,
|
| 789 |
+
"bot": 614,
|
| 790 |
+
"spam": 3219,
|
| 791 |
+
"channel": 779,
|
| 792 |
+
"chat": 786,
|
| 793 |
+
"night": 2331,
|
| 794 |
+
"buffet": 666,
|
| 795 |
+
"31st": 124,
|
| 796 |
+
"jan": 1877,
|
| 797 |
+
"2024": 76,
|
| 798 |
+
"till": 3463,
|
| 799 |
+
"late": 1962,
|
| 800 |
+
"entry": 1308,
|
| 801 |
+
"booze": 613,
|
| 802 |
+
"non": 2339,
|
| 803 |
+
"alco": 336,
|
| 804 |
+
"drinks": 1211,
|
| 805 |
+
"included": 1772,
|
| 806 |
+
"price": 2685,
|
| 807 |
+
"luc": 2077,
|
| 808 |
+
"cafe": 690,
|
| 809 |
+
"feeding": 1419,
|
| 810 |
+
"fight": 1430,
|
| 811 |
+
"tyranny": 3557,
|
| 812 |
+
"213": 82,
|
| 813 |
+
"burnage": 673,
|
| 814 |
+
"lane": 1955,
|
| 815 |
+
"m19": 2094,
|
| 816 |
+
"1fn": 60,
|
| 817 |
+
"raided": 2803,
|
| 818 |
+
"feb": 1416,
|
| 819 |
+
"2021": 74,
|
| 820 |
+
"government": 1593,
|
| 821 |
+
"unlawful": 3585,
|
| 822 |
+
"ineffective": 1790,
|
| 823 |
+
"lockdown": 2048,
|
| 824 |
+
"defenders": 1084,
|
| 825 |
+
"delicious": 1091,
|
| 826 |
+
"breakfasts": 633,
|
| 827 |
+
"lunches": 2082,
|
| 828 |
+
"hot": 1714,
|
| 829 |
+
"desserts": 1116,
|
| 830 |
+
"polish": 2625,
|
| 831 |
+
"twist": 3552,
|
| 832 |
+
"tue": 3543,
|
| 833 |
+
"fri": 1519,
|
| 834 |
+
"sun": 3334,
|
| 835 |
+
"9am": 238,
|
| 836 |
+
"mondays": 2257,
|
| 837 |
+
"online": 2411,
|
| 838 |
+
"15": 35,
|
| 839 |
+
"20th": 79,
|
| 840 |
+
"january": 1879,
|
| 841 |
+
"manchesterff": 2130,
|
| 842 |
+
"making": 2123,
|
| 843 |
+
"target": 3379,
|
| 844 |
+
"hands": 1637,
|
| 845 |
+
"sefton": 3053,
|
| 846 |
+
"refuse": 2862,
|
| 847 |
+
"climate": 834,
|
| 848 |
+
"hoax": 1686,
|
| 849 |
+
"spreading": 3244,
|
| 850 |
+
"edwin": 1255,
|
| 851 |
+
"van": 3638,
|
| 852 |
+
"der": 1104,
|
| 853 |
+
"sar": 3007,
|
| 854 |
+
"languishes": 1957,
|
| 855 |
+
"icu": 1742,
|
| 856 |
+
"hole": 1691,
|
| 857 |
+
"brain": 624,
|
| 858 |
+
"continue": 930,
|
| 859 |
+
"govt": 1595,
|
| 860 |
+
"doctors": 1182,
|
| 861 |
+
"wilfully": 3787,
|
| 862 |
+
"burying": 677,
|
| 863 |
+
"sign": 3127,
|
| 864 |
+
"forecast": 1487,
|
| 865 |
+
"afternoon": 318,
|
| 866 |
+
"lightning": 2011,
|
| 867 |
+
"light": 2010,
|
| 868 |
+
"rain": 2808,
|
| 869 |
+
"stop": 3287,
|
| 870 |
+
"dried": 1208,
|
| 871 |
+
"throngs": 3454,
|
| 872 |
+
"returned": 2947,
|
| 873 |
+
"huge": 1724,
|
| 874 |
+
"numbers": 2357,
|
| 875 |
+
"stopping": 3289,
|
| 876 |
+
"looking": 2061,
|
| 877 |
+
"reading": 2829,
|
| 878 |
+
"photos": 2562,
|
| 879 |
+
"sq": 3246,
|
| 880 |
+
"busy": 682,
|
| 881 |
+
"rebels": 2837,
|
| 882 |
+
"roundabouts": 2980,
|
| 883 |
+
"portwood": 2640,
|
| 884 |
+
"stockport": 3281,
|
| 885 |
+
"m60": 2105,
|
| 886 |
+
"junc": 1905,
|
| 887 |
+
"27": 98,
|
| 888 |
+
"pizza": 2583,
|
| 889 |
+
"hut": 1735,
|
| 890 |
+
"bbq": 528,
|
| 891 |
+
"fun": 1530,
|
| 892 |
+
"friends": 1523,
|
| 893 |
+
"gatley": 1557,
|
| 894 |
+
"cheadle": 787,
|
| 895 |
+
"hulme": 1726,
|
| 896 |
+
"worsley": 3831,
|
| 897 |
+
"oldham": 2401,
|
| 898 |
+
"nationwide": 2297,
|
| 899 |
+
"rebelsonroundabouts": 2838,
|
| 900 |
+
"m28": 2098,
|
| 901 |
+
"2wh": 113,
|
| 902 |
+
"a575": 251,
|
| 903 |
+
"east": 1234,
|
| 904 |
+
"lancs": 1951,
|
| 905 |
+
"marks": 2147,
|
| 906 |
+
"church": 812,
|
| 907 |
+
"yellow": 3851,
|
| 908 |
+
"boards": 596,
|
| 909 |
+
"banners": 511,
|
| 910 |
+
"itv": 1863,
|
| 911 |
+
"british": 648,
|
| 912 |
+
"soap": 3188,
|
| 913 |
+
"awards": 486,
|
| 914 |
+
"lowry": 2075,
|
| 915 |
+
"theatre": 3427,
|
| 916 |
+
"quays": 2788,
|
| 917 |
+
"3az": 141,
|
| 918 |
+
"5pm": 187,
|
| 919 |
+
"successful": 3318,
|
| 920 |
+
"macclesfield": 2108,
|
| 921 |
+
"200": 68,
|
| 922 |
+
"lots": 2067,
|
| 923 |
+
"vaccine": 3632,
|
| 924 |
+
"posters": 2648,
|
| 925 |
+
"encouraging": 1283,
|
| 926 |
+
"futures": 1541,
|
| 927 |
+
"jamie": 1876,
|
| 928 |
+
"foxx": 1510,
|
| 929 |
+
"diy": 1176,
|
| 930 |
+
"correx": 960,
|
| 931 |
+
"design": 1109,
|
| 932 |
+
"inkscape": 1812,
|
| 933 |
+
"svg": 3355,
|
| 934 |
+
"file": 1438,
|
| 935 |
+
"format": 1494,
|
| 936 |
+
"exported": 1368,
|
| 937 |
+
"large": 1959,
|
| 938 |
+
"png": 2610,
|
| 939 |
+
"split": 3237,
|
| 940 |
+
"posterazor": 2647,
|
| 941 |
+
"printed": 2689,
|
| 942 |
+
"6x": 205,
|
| 943 |
+
"a4": 247,
|
| 944 |
+
"covered": 984,
|
| 945 |
+
"plastic": 2600,
|
| 946 |
+
"adhesive": 292,
|
| 947 |
+
"wrap": 3835,
|
| 948 |
+
"type": 3555,
|
| 949 |
+
"cover": 983,
|
| 950 |
+
"kid": 1919,
|
| 951 |
+
"school": 3026,
|
| 952 |
+
"books": 608,
|
| 953 |
+
"50p": 169,
|
| 954 |
+
"total": 3493,
|
| 955 |
+
"cost": 963,
|
| 956 |
+
"2nd": 111,
|
| 957 |
+
"pic": 2564,
|
| 958 |
+
"shows": 3117,
|
| 959 |
+
"age": 320,
|
| 960 |
+
"55": 177,
|
| 961 |
+
"stroke": 3301,
|
| 962 |
+
"april": 402,
|
| 963 |
+
"jabbed": 1867,
|
| 964 |
+
"silence": 3129,
|
| 965 |
+
"oscar": 2443,
|
| 966 |
+
"winning": 3797,
|
| 967 |
+
"actor": 282,
|
| 968 |
+
"ray": 2824,
|
| 969 |
+
"django": 1177,
|
| 970 |
+
"unchained": 3567,
|
| 971 |
+
"olympia": 2403,
|
| 972 |
+
"washington": 3730,
|
| 973 |
+
"state": 3260,
|
| 974 |
+
"capitol": 726,
|
| 975 |
+
"tivoli": 3475,
|
| 976 |
+
"fountain": 1507,
|
| 977 |
+
"103": 17,
|
| 978 |
+
"foutain": 1508,
|
| 979 |
+
"march": 2141,
|
| 980 |
+
"olcwwtkwnzw3othh": 2400,
|
| 981 |
+
"worldwidedemousaofficial": 3826,
|
| 982 |
+
"twitter": 3553,
|
| 983 |
+
"wwrforfreedom": 3843,
|
| 984 |
+
"ukreiif": 3560,
|
| 985 |
+
"net": 2314,
|
| 986 |
+
"zero": 3861,
|
| 987 |
+
"agenda": 321,
|
| 988 |
+
"conference": 899,
|
| 989 |
+
"armouries": 410,
|
| 990 |
+
"000": 1,
|
| 991 |
+
"500": 168,
|
| 992 |
+
"fringe": 1524,
|
| 993 |
+
"150": 36,
|
| 994 |
+
"exhibitors": 1351,
|
| 995 |
+
"75": 211,
|
| 996 |
+
"250": 92,
|
| 997 |
+
"authorities": 470,
|
| 998 |
+
"750": 212,
|
| 999 |
+
"investors": 1850,
|
| 1000 |
+
"occupiers": 2374,
|
| 1001 |
+
"developers": 1126,
|
| 1002 |
+
"16th": 40,
|
| 1003 |
+
"17th": 43,
|
| 1004 |
+
"18th": 47,
|
| 1005 |
+
"connect": 908,
|
| 1006 |
+
"places": 2590,
|
| 1007 |
+
"businesses": 680,
|
| 1008 |
+
"accelerate": 261,
|
| 1009 |
+
"unlock": 3588,
|
| 1010 |
+
"sustainable": 3354,
|
| 1011 |
+
"inclusive": 1774,
|
| 1012 |
+
"transformational": 3516,
|
| 1013 |
+
"investment": 1849,
|
| 1014 |
+
"unites": 3581,
|
| 1015 |
+
"raise": 2811,
|
| 1016 |
+
"awareness": 488,
|
| 1017 |
+
"thursday": 3457,
|
| 1018 |
+
"complaint": 890,
|
| 1019 |
+
"liability": 1999,
|
| 1020 |
+
"order": 2430,
|
| 1021 |
+
"payment": 2512,
|
| 1022 |
+
"tax": 3384,
|
| 1023 |
+
"though": 3443,
|
| 1024 |
+
"bonafide": 604,
|
| 1025 |
+
"medical": 2174,
|
| 1026 |
+
"exemption": 1347,
|
| 1027 |
+
"paying": 2511,
|
| 1028 |
+
"decades": 1068,
|
| 1029 |
+
"10th": 21,
|
| 1030 |
+
"cheshire": 794,
|
| 1031 |
+
"magistrate": 2112,
|
| 1032 |
+
"combined": 865,
|
| 1033 |
+
"legh": 1991,
|
| 1034 |
+
"warrington": 3728,
|
| 1035 |
+
"wa1": 3700,
|
| 1036 |
+
"1ur": 66,
|
| 1037 |
+
"moment": 2253,
|
| 1038 |
+
"gmp": 1584,
|
| 1039 |
+
"steal": 3269,
|
| 1040 |
+
"speaker": 3223,
|
| 1041 |
+
"walking": 3711,
|
| 1042 |
+
"female": 1427,
|
| 1043 |
+
"inspector": 1819,
|
| 1044 |
+
"look": 2060,
|
| 1045 |
+
"policing": 2622,
|
| 1046 |
+
"broad": 650,
|
| 1047 |
+
"daylight": 1053,
|
| 1048 |
+
"theft": 3428,
|
| 1049 |
+
"slyly": 3172,
|
| 1050 |
+
"moving": 2275,
|
| 1051 |
+
"beside": 552,
|
| 1052 |
+
"orders": 2431,
|
| 1053 |
+
"blatant": 585,
|
| 1054 |
+
"claimed": 821,
|
| 1055 |
+
"found": 1504,
|
| 1056 |
+
"dozens": 1200,
|
| 1057 |
+
"spoke": 3238,
|
| 1058 |
+
"owned": 2459,
|
| 1059 |
+
"playing": 2604,
|
| 1060 |
+
"audio": 461,
|
| 1061 |
+
"blatantly": 586,
|
| 1062 |
+
"took": 3488,
|
| 1063 |
+
"antagonize": 376,
|
| 1064 |
+
"attendance": 456,
|
| 1065 |
+
"angle": 370,
|
| 1066 |
+
"tussling": 3548,
|
| 1067 |
+
"kicked": 1918,
|
| 1068 |
+
"thugs": 3456,
|
| 1069 |
+
"stole": 3283,
|
| 1070 |
+
"source": 3212,
|
| 1071 |
+
"greater": 1605,
|
| 1072 |
+
"outside": 2452,
|
| 1073 |
+
"building": 668,
|
| 1074 |
+
"peaceful": 2520,
|
| 1075 |
+
"quay": 2787,
|
| 1076 |
+
"least": 1981,
|
| 1077 |
+
"officers": 2388,
|
| 1078 |
+
"ranking": 2818,
|
| 1079 |
+
"portable": 2638,
|
| 1080 |
+
"worth": 3833,
|
| 1081 |
+
"330": 130,
|
| 1082 |
+
"messages": 2202,
|
| 1083 |
+
"related": 2877,
|
| 1084 |
+
"coronation": 954,
|
| 1085 |
+
"talk": 3373,
|
| 1086 |
+
"present": 2671,
|
| 1087 |
+
"regarding": 2865,
|
| 1088 |
+
"apparent": 387,
|
| 1089 |
+
"questioned": 2792,
|
| 1090 |
+
"mumbled": 2280,
|
| 1091 |
+
"vicinity": 3665,
|
| 1092 |
+
"play": 2603,
|
| 1093 |
+
"laying": 1974,
|
| 1094 |
+
"kind": 1928,
|
| 1095 |
+
"retaliation": 2944,
|
| 1096 |
+
"stickers": 3277,
|
| 1097 |
+
"criticizing": 1006,
|
| 1098 |
+
"hi": 1677,
|
| 1099 |
+
"happy": 1642,
|
| 1100 |
+
"joined": 1889,
|
| 1101 |
+
"part": 2480,
|
| 1102 |
+
"true": 3536,
|
| 1103 |
+
"leaf": 1978,
|
| 1104 |
+
"garden": 1550,
|
| 1105 |
+
"produce": 2711,
|
| 1106 |
+
"healthy": 1652,
|
| 1107 |
+
"area": 404,
|
| 1108 |
+
"everything": 1327,
|
| 1109 |
+
"grown": 1616,
|
| 1110 |
+
"organically": 2436,
|
| 1111 |
+
"volunteers": 3693,
|
| 1112 |
+
"would": 3834,
|
| 1113 |
+
"learn": 1980,
|
| 1114 |
+
"growing": 1615,
|
| 1115 |
+
"spend": 3231,
|
| 1116 |
+
"minded": 2229,
|
| 1117 |
+
"enjoy": 1294,
|
| 1118 |
+
"beautiful": 531,
|
| 1119 |
+
"countryside": 975,
|
| 1120 |
+
"anywhere": 383,
|
| 1121 |
+
"water": 3734,
|
| 1122 |
+
"snacks": 3181,
|
| 1123 |
+
"fb": 1410,
|
| 1124 |
+
"page": 2465,
|
| 1125 |
+
"directions": 1146,
|
| 1126 |
+
"table": 3366,
|
| 1127 |
+
"amazing": 358,
|
| 1128 |
+
"fell": 1425,
|
| 1129 |
+
"covid": 986,
|
| 1130 |
+
"bs": 663,
|
| 1131 |
+
"counted": 971,
|
| 1132 |
+
"close": 837,
|
| 1133 |
+
"300light": 119,
|
| 1134 |
+
"subjects": 3313,
|
| 1135 |
+
"goes": 1586,
|
| 1136 |
+
"normally": 2342,
|
| 1137 |
+
"struggle": 3303,
|
| 1138 |
+
"50papers": 170,
|
| 1139 |
+
"couple": 976,
|
| 1140 |
+
"11am": 25,
|
| 1141 |
+
"half": 1629,
|
| 1142 |
+
"left": 1985,
|
| 1143 |
+
"kept": 1915,
|
| 1144 |
+
"loosing": 2062,
|
| 1145 |
+
"fear": 1411,
|
| 1146 |
+
"happens": 1641,
|
| 1147 |
+
"towns": 3497,
|
| 1148 |
+
"little": 2031,
|
| 1149 |
+
"form": 1493,
|
| 1150 |
+
"community": 882,
|
| 1151 |
+
"lack": 1940,
|
| 1152 |
+
"plans": 2597,
|
| 1153 |
+
"deserve": 1108,
|
| 1154 |
+
"better": 555,
|
| 1155 |
+
"carry": 735,
|
| 1156 |
+
"things": 3435,
|
| 1157 |
+
"spot": 3240,
|
| 1158 |
+
"men": 2191,
|
| 1159 |
+
"women": 3809,
|
| 1160 |
+
"paula": 2503,
|
| 1161 |
+
"matsikidze": 2159,
|
| 1162 |
+
"election": 1265,
|
| 1163 |
+
"didsbury": 1132,
|
| 1164 |
+
"4th": 164,
|
| 1165 |
+
"especially": 1312,
|
| 1166 |
+
"leafletting": 1979,
|
| 1167 |
+
"mobility": 2246,
|
| 1168 |
+
"problems": 2702,
|
| 1169 |
+
"directly": 1147,
|
| 1170 |
+
"0161": 4,
|
| 1171 |
+
"448": 151,
|
| 1172 |
+
"2968": 104,
|
| 1173 |
+
"paulamatsikidze": 2504,
|
| 1174 |
+
"yahoo": 3847,
|
| 1175 |
+
"dessert": 1115,
|
| 1176 |
+
"competition": 887,
|
| 1177 |
+
"kate": 1913,
|
| 1178 |
+
"upsidedown": 3611,
|
| 1179 |
+
"pineapple": 2582,
|
| 1180 |
+
"cake": 691,
|
| 1181 |
+
"bakewell": 503,
|
| 1182 |
+
"tart": 3381,
|
| 1183 |
+
"apple": 392,
|
| 1184 |
+
"rhubarb": 2952,
|
| 1185 |
+
"crumble": 1014,
|
| 1186 |
+
"pastry": 2496,
|
| 1187 |
+
"chef": 793,
|
| 1188 |
+
"winner": 3796,
|
| 1189 |
+
"beat": 529,
|
| 1190 |
+
"chance": 776,
|
| 1191 |
+
"tescos": 3415,
|
| 1192 |
+
"impact": 1759,
|
| 1193 |
+
"game": 1544,
|
| 1194 |
+
"hours": 1717,
|
| 1195 |
+
"unfolding": 3574,
|
| 1196 |
+
"eyes": 1381,
|
| 1197 |
+
"cohesion": 851,
|
| 1198 |
+
"yet": 3855,
|
| 1199 |
+
"received": 2841,
|
| 1200 |
+
"weeks": 3753,
|
| 1201 |
+
"hope": 1702,
|
| 1202 |
+
"alert": 339,
|
| 1203 |
+
"engagement": 1291,
|
| 1204 |
+
"collection": 859,
|
| 1205 |
+
"confirm": 901,
|
| 1206 |
+
"available": 476,
|
| 1207 |
+
"coordinate": 944,
|
| 1208 |
+
"m38": 2101,
|
| 1209 |
+
"9re": 240,
|
| 1210 |
+
"enforcement": 1289,
|
| 1211 |
+
"locksmith": 2052,
|
| 1212 |
+
"canine": 723,
|
| 1213 |
+
"attempted": 452,
|
| 1214 |
+
"pick": 2568,
|
| 1215 |
+
"locks": 2051,
|
| 1216 |
+
"called": 697,
|
| 1217 |
+
"ensure": 1297,
|
| 1218 |
+
"remain": 2886,
|
| 1219 |
+
"firm": 1456,
|
| 1220 |
+
"lawfully": 1972,
|
| 1221 |
+
"obligation": 2365,
|
| 1222 |
+
"record": 2849,
|
| 1223 |
+
"collect": 857,
|
| 1224 |
+
"interaction": 1831,
|
| 1225 |
+
"dartford": 1046,
|
| 1226 |
+
"memorial": 2189,
|
| 1227 |
+
"finishing": 1453,
|
| 1228 |
+
"register": 2869,
|
| 1229 |
+
"er": 1310,
|
| 1230 |
+
"charge": 781,
|
| 1231 |
+
"library": 2002,
|
| 1232 |
+
"decided": 1072,
|
| 1233 |
+
"cut": 1024,
|
| 1234 |
+
"display": 1166,
|
| 1235 |
+
"scissors": 3030,
|
| 1236 |
+
"showed": 3113,
|
| 1237 |
+
"damaging": 1033,
|
| 1238 |
+
"said": 2999,
|
| 1239 |
+
"low": 2072,
|
| 1240 |
+
"voice": 3689,
|
| 1241 |
+
"registering": 2870,
|
| 1242 |
+
"deaths": 1062,
|
| 1243 |
+
"hear": 1653,
|
| 1244 |
+
"showing": 3115,
|
| 1245 |
+
"died": 1134,
|
| 1246 |
+
"usual": 3625,
|
| 1247 |
+
"feedback": 1418,
|
| 1248 |
+
"conversations": 941,
|
| 1249 |
+
"booked": 607,
|
| 1250 |
+
"peacekeepers": 2522,
|
| 1251 |
+
"course": 978,
|
| 1252 |
+
"15th": 38,
|
| 1253 |
+
"cancellations": 717,
|
| 1254 |
+
"closer": 838,
|
| 1255 |
+
"book": 606,
|
| 1256 |
+
"cancellation": 716,
|
| 1257 |
+
"ago": 325,
|
| 1258 |
+
"posted": 2645,
|
| 1259 |
+
"volunteering": 3692,
|
| 1260 |
+
"organic": 2435,
|
| 1261 |
+
"redux": 2857,
|
| 1262 |
+
"50": 167,
|
| 1263 |
+
"80": 224,
|
| 1264 |
+
"materials": 2157,
|
| 1265 |
+
"per": 2530,
|
| 1266 |
+
"designed": 1110,
|
| 1267 |
+
"areas": 405,
|
| 1268 |
+
"past": 2494,
|
| 1269 |
+
"opposed": 2424,
|
| 1270 |
+
"traffic": 3507,
|
| 1271 |
+
"drivers": 1214,
|
| 1272 |
+
"distance": 1171,
|
| 1273 |
+
"pdfs": 2518,
|
| 1274 |
+
"run": 2987,
|
| 1275 |
+
"operative": 2419,
|
| 1276 |
+
"largest": 1961,
|
| 1277 |
+
"longest": 2058,
|
| 1278 |
+
"established": 1314,
|
| 1279 |
+
"wholesalers": 3778,
|
| 1280 |
+
"certified": 767,
|
| 1281 |
+
"base": 516,
|
| 1282 |
+
"smithfield": 3178,
|
| 1283 |
+
"mission": 2242,
|
| 1284 |
+
"mend": 2192,
|
| 1285 |
+
"broken": 652,
|
| 1286 |
+
"wasteful": 3732,
|
| 1287 |
+
"polluting": 2630,
|
| 1288 |
+
"enjoyed": 1295,
|
| 1289 |
+
"relationships": 2879,
|
| 1290 |
+
"farmers": 1407,
|
| 1291 |
+
"25": 91,
|
| 1292 |
+
"basis": 519,
|
| 1293 |
+
"able": 254,
|
| 1294 |
+
"consistently": 916,
|
| 1295 |
+
"provide": 2751,
|
| 1296 |
+
"grocers": 1611,
|
| 1297 |
+
"veg": 3648,
|
| 1298 |
+
"box": 620,
|
| 1299 |
+
"schemes": 3025,
|
| 1300 |
+
"processors": 2709,
|
| 1301 |
+
"ops": 2426,
|
| 1302 |
+
"besides": 553,
|
| 1303 |
+
"weekly": 3752,
|
| 1304 |
+
"fruit": 1526,
|
| 1305 |
+
"30pm": 121,
|
| 1306 |
+
"roof": 2974,
|
| 1307 |
+
"arndale": 413,
|
| 1308 |
+
"joke": 1891,
|
| 1309 |
+
"although": 355,
|
| 1310 |
+
"lot": 2066,
|
| 1311 |
+
"tables": 3367,
|
| 1312 |
+
"talking": 3374,
|
| 1313 |
+
"victims": 3667,
|
| 1314 |
+
"injection": 1804,
|
| 1315 |
+
"injuries": 1808,
|
| 1316 |
+
"midazolam": 2214,
|
| 1317 |
+
"murders": 2284,
|
| 1318 |
+
"latest": 1964,
|
| 1319 |
+
"setting": 3078,
|
| 1320 |
+
"25th": 94,
|
| 1321 |
+
"00": 0,
|
| 1322 |
+
"northwich": 2345,
|
| 1323 |
+
"boots": 612,
|
| 1324 |
+
"optician": 2427,
|
| 1325 |
+
"confrontational": 905,
|
| 1326 |
+
"approach": 398,
|
| 1327 |
+
"offering": 2384,
|
| 1328 |
+
"paper": 2472,
|
| 1329 |
+
"beginning": 538,
|
| 1330 |
+
"told": 3483,
|
| 1331 |
+
"mainstream": 2118,
|
| 1332 |
+
"maps": 2138,
|
| 1333 |
+
"map": 2137,
|
| 1334 |
+
"asitps": 430,
|
| 1335 |
+
"locations": 2047,
|
| 1336 |
+
"surrounding": 3349,
|
| 1337 |
+
"centres": 764,
|
| 1338 |
+
"exhaustive": 1349,
|
| 1339 |
+
"interactive": 1832,
|
| 1340 |
+
"700": 208,
|
| 1341 |
+
"win": 3790,
|
| 1342 |
+
"summary": 3331,
|
| 1343 |
+
"card": 727,
|
| 1344 |
+
"emails": 1274,
|
| 1345 |
+
"sent": 3064,
|
| 1346 |
+
"councillors": 970,
|
| 1347 |
+
"operators": 2420,
|
| 1348 |
+
"cranks": 990,
|
| 1349 |
+
"alexandra": 340,
|
| 1350 |
+
"whalley": 3770,
|
| 1351 |
+
"range": 2817,
|
| 1352 |
+
"announced": 373,
|
| 1353 |
+
"leaving": 1983,
|
| 1354 |
+
"increasing": 1779,
|
| 1355 |
+
"rent": 2897,
|
| 1356 |
+
"owners": 2461,
|
| 1357 |
+
"arrived": 420,
|
| 1358 |
+
"pavillion": 2507,
|
| 1359 |
+
"policy": 2623,
|
| 1360 |
+
"email": 1272,
|
| 1361 |
+
"magic": 2111,
|
| 1362 |
+
"takes": 3371,
|
| 1363 |
+
"discriminatory": 1155,
|
| 1364 |
+
"ways": 3738,
|
| 1365 |
+
"account": 268,
|
| 1366 |
+
"wants": 3717,
|
| 1367 |
+
"cards": 728,
|
| 1368 |
+
"homeless": 1695,
|
| 1369 |
+
"unable": 3565,
|
| 1370 |
+
"buy": 685,
|
| 1371 |
+
"cup": 1018,
|
| 1372 |
+
"tea": 3386,
|
| 1373 |
+
"pop": 2636,
|
| 1374 |
+
"drink": 1209,
|
| 1375 |
+
"elder": 1262,
|
| 1376 |
+
"purse": 2774,
|
| 1377 |
+
"stolen": 3284,
|
| 1378 |
+
"occasions": 2373,
|
| 1379 |
+
"sit": 3143,
|
| 1380 |
+
"awarding": 485,
|
| 1381 |
+
"contract": 934,
|
| 1382 |
+
"service": 3073,
|
| 1383 |
+
"discriminate": 1154,
|
| 1384 |
+
"providing": 2754,
|
| 1385 |
+
"violates": 3679,
|
| 1386 |
+
"fundamental": 1533,
|
| 1387 |
+
"fairness": 1394,
|
| 1388 |
+
"european": 1320,
|
| 1389 |
+
"central": 762,
|
| 1390 |
+
"ensures": 1298,
|
| 1391 |
+
"autonomy": 474,
|
| 1392 |
+
"banknotes": 508,
|
| 1393 |
+
"money": 2258,
|
| 1394 |
+
"involving": 1855,
|
| 1395 |
+
"third": 3440,
|
| 1396 |
+
"party": 2488,
|
| 1397 |
+
"equipment": 1309,
|
| 1398 |
+
"internet": 1838,
|
| 1399 |
+
"electricity": 1267,
|
| 1400 |
+
"meaning": 2170,
|
| 1401 |
+
"power": 2657,
|
| 1402 |
+
"lose": 2063,
|
| 1403 |
+
"creditors": 997,
|
| 1404 |
+
"shops": 3105,
|
| 1405 |
+
"restaurants": 2938,
|
| 1406 |
+
"customer": 1022,
|
| 1407 |
+
"agreed": 326,
|
| 1408 |
+
"information": 1795,
|
| 1409 |
+
"commission": 874,
|
| 1410 |
+
"recommendation": 2847,
|
| 1411 |
+
"2010": 70,
|
| 1412 |
+
"privacy": 2696,
|
| 1413 |
+
"transactions": 3515,
|
| 1414 |
+
"respect": 2928,
|
| 1415 |
+
"data": 1047,
|
| 1416 |
+
"identity": 1747,
|
| 1417 |
+
"protected": 2739,
|
| 1418 |
+
"financial": 1447,
|
| 1419 |
+
"matters": 2161,
|
| 1420 |
+
"provides": 2753,
|
| 1421 |
+
"savings": 3015,
|
| 1422 |
+
"options": 2429,
|
| 1423 |
+
"digital": 1140,
|
| 1424 |
+
"crucial": 1013,
|
| 1425 |
+
"inclusion": 1773,
|
| 1426 |
+
"socially": 3190,
|
| 1427 |
+
"vulnerable": 3699,
|
| 1428 |
+
"citizens": 818,
|
| 1429 |
+
"elderly": 1263,
|
| 1430 |
+
"lower": 2073,
|
| 1431 |
+
"income": 1775,
|
| 1432 |
+
"helps": 1668,
|
| 1433 |
+
"track": 3504,
|
| 1434 |
+
"expenses": 1357,
|
| 1435 |
+
"allows": 348,
|
| 1436 |
+
"control": 936,
|
| 1437 |
+
"spending": 3232,
|
| 1438 |
+
"example": 1333,
|
| 1439 |
+
"preventing": 2682,
|
| 1440 |
+
"overspending": 2457,
|
| 1441 |
+
"fast": 1409,
|
| 1442 |
+
"settle": 3080,
|
| 1443 |
+
"instantly": 1822,
|
| 1444 |
+
"secure": 3044,
|
| 1445 |
+
"proven": 2750,
|
| 1446 |
+
"terms": 3412,
|
| 1447 |
+
"cybercrime": 1028,
|
| 1448 |
+
"fraud": 1513,
|
| 1449 |
+
"counterfeiting": 973,
|
| 1450 |
+
"entail": 1299,
|
| 1451 |
+
"risks": 2961,
|
| 1452 |
+
"either": 1260,
|
| 1453 |
+
"payer": 2510,
|
| 1454 |
+
"payee": 2509,
|
| 1455 |
+
"store": 3290,
|
| 1456 |
+
"value": 3637,
|
| 1457 |
+
"instrument": 1825,
|
| 1458 |
+
"hold": 1687,
|
| 1459 |
+
"saving": 3014,
|
| 1460 |
+
"purposes": 2773,
|
| 1461 |
+
"default": 1079,
|
| 1462 |
+
"gifts": 1568,
|
| 1463 |
+
"payments": 2513,
|
| 1464 |
+
"parents": 2476,
|
| 1465 |
+
"entrust": 1307,
|
| 1466 |
+
"amounts": 362,
|
| 1467 |
+
"purchases": 2770,
|
| 1468 |
+
"friend": 1521,
|
| 1469 |
+
"acquaintance": 273,
|
| 1470 |
+
"purchase": 2769,
|
| 1471 |
+
"contributes": 935,
|
| 1472 |
+
"literacy": 2030,
|
| 1473 |
+
"cookery": 943,
|
| 1474 |
+
"experts": 1363,
|
| 1475 |
+
"28th": 102,
|
| 1476 |
+
"best": 554,
|
| 1477 |
+
"homemade": 1696,
|
| 1478 |
+
"main": 2116,
|
| 1479 |
+
"meal": 2168,
|
| 1480 |
+
"serve": 3070,
|
| 1481 |
+
"eat": 1237,
|
| 1482 |
+
"scrumptious": 3038,
|
| 1483 |
+
"entries": 1306,
|
| 1484 |
+
"receive": 2840,
|
| 1485 |
+
"month": 2261,
|
| 1486 |
+
"removed": 2895,
|
| 1487 |
+
"alcohol": 337,
|
| 1488 |
+
"license": 2004,
|
| 1489 |
+
"informal": 1794,
|
| 1490 |
+
"gathering": 1556,
|
| 1491 |
+
"03": 5,
|
| 1492 |
+
"five": 1458,
|
| 1493 |
+
"summons": 3333,
|
| 1494 |
+
"attended": 457,
|
| 1495 |
+
"asked": 431,
|
| 1496 |
+
"lengthy": 1994,
|
| 1497 |
+
"proceeded": 2704,
|
| 1498 |
+
"grill": 1607,
|
| 1499 |
+
"checked": 791,
|
| 1500 |
+
"clerk": 830,
|
| 1501 |
+
"continued": 931,
|
| 1502 |
+
"document": 1183,
|
| 1503 |
+
"produced": 2712,
|
| 1504 |
+
"explaining": 1365,
|
| 1505 |
+
"three": 3451,
|
| 1506 |
+
"blocked": 591,
|
| 1507 |
+
"various": 3643,
|
| 1508 |
+
"excuses": 1345,
|
| 1509 |
+
"enough": 1296,
|
| 1510 |
+
"mckenzie": 2165,
|
| 1511 |
+
"allowed": 347,
|
| 1512 |
+
"protestors": 2744,
|
| 1513 |
+
"arsey": 422,
|
| 1514 |
+
"guy": 1626,
|
| 1515 |
+
"presumably": 2678,
|
| 1516 |
+
"head": 1650,
|
| 1517 |
+
"lit": 2028,
|
| 1518 |
+
"sick": 3123,
|
| 1519 |
+
"constant": 920,
|
| 1520 |
+
"remained": 2887,
|
| 1521 |
+
"protesting": 2743,
|
| 1522 |
+
"handing": 1636,
|
| 1523 |
+
"protest": 2742,
|
| 1524 |
+
"refused": 2863,
|
| 1525 |
+
"threatened": 3449,
|
| 1526 |
+
"eventually": 1323,
|
| 1527 |
+
"receiving": 2842,
|
| 1528 |
+
"scan": 3020,
|
| 1529 |
+
"tried": 3528,
|
| 1530 |
+
"deny": 1100,
|
| 1531 |
+
"exist": 1352,
|
| 1532 |
+
"office": 2386,
|
| 1533 |
+
"ground": 1613,
|
| 1534 |
+
"floor": 1464,
|
| 1535 |
+
"comes": 868,
|
| 1536 |
+
"schedule": 3023,
|
| 1537 |
+
"upstairs": 3612,
|
| 1538 |
+
"prosecutor": 2737,
|
| 1539 |
+
"prosecuting": 2735,
|
| 1540 |
+
"officer": 2387,
|
| 1541 |
+
"robot": 2966,
|
| 1542 |
+
"mode": 2247,
|
| 1543 |
+
"machine": 2109,
|
| 1544 |
+
"issues": 1860,
|
| 1545 |
+
"authorizes": 473,
|
| 1546 |
+
"adamant": 287,
|
| 1547 |
+
"exists": 1354,
|
| 1548 |
+
"ok": 2395,
|
| 1549 |
+
"downstairs": 1199,
|
| 1550 |
+
"replied": 2908,
|
| 1551 |
+
"oh": 2393,
|
| 1552 |
+
"sorry": 3209,
|
| 1553 |
+
"authorized": 472,
|
| 1554 |
+
"beforehand": 535,
|
| 1555 |
+
"requested": 2914,
|
| 1556 |
+
"subject": 3312,
|
| 1557 |
+
"line": 2016,
|
| 1558 |
+
"cpr": 987,
|
| 1559 |
+
"rule": 2985,
|
| 1560 |
+
"requires": 2918,
|
| 1561 |
+
"far": 1406,
|
| 1562 |
+
"5th": 188,
|
| 1563 |
+
"seen": 3051,
|
| 1564 |
+
"read": 2828,
|
| 1565 |
+
"receipts": 2839,
|
| 1566 |
+
"adjourn": 294,
|
| 1567 |
+
"12th": 30,
|
| 1568 |
+
"correspondence": 959,
|
| 1569 |
+
"cases": 738,
|
| 1570 |
+
"restrict": 2939,
|
| 1571 |
+
"text": 3420,
|
| 1572 |
+
"steve": 3274,
|
| 1573 |
+
"parker": 2477,
|
| 1574 |
+
"fair": 1392,
|
| 1575 |
+
"trade": 3506,
|
| 1576 |
+
"foods": 1479,
|
| 1577 |
+
"toiletries": 3481,
|
| 1578 |
+
"suit": 3329,
|
| 1579 |
+
"diets": 1135,
|
| 1580 |
+
"proud": 2748,
|
| 1581 |
+
"sold": 3195,
|
| 1582 |
+
"vegan": 3649,
|
| 1583 |
+
"became": 532,
|
| 1584 |
+
"fashionable": 1408,
|
| 1585 |
+
"buxton": 684,
|
| 1586 |
+
"hub": 1721,
|
| 1587 |
+
"clubhouse": 844,
|
| 1588 |
+
"sk17": 3154,
|
| 1589 |
+
"6xn": 206,
|
| 1590 |
+
"21st": 83,
|
| 1591 |
+
"admission": 300,
|
| 1592 |
+
"raffle": 2801,
|
| 1593 |
+
"brilliant": 644,
|
| 1594 |
+
"invaluable": 1844,
|
| 1595 |
+
"talks": 3375,
|
| 1596 |
+
"demand": 1093,
|
| 1597 |
+
"fantastic": 1405,
|
| 1598 |
+
"alternative": 354,
|
| 1599 |
+
"therapies": 3430,
|
| 1600 |
+
"practically": 2659,
|
| 1601 |
+
"ailment": 328,
|
| 1602 |
+
"personable": 2542,
|
| 1603 |
+
"intuition": 1843,
|
| 1604 |
+
"health": 1651,
|
| 1605 |
+
"exciting": 1341,
|
| 1606 |
+
"positive": 2641,
|
| 1607 |
+
"upbeat": 3601,
|
| 1608 |
+
"vibes": 3663,
|
| 1609 |
+
"natural": 2298,
|
| 1610 |
+
"choice": 806,
|
| 1611 |
+
"ashbourne": 428,
|
| 1612 |
+
"01335": 3,
|
| 1613 |
+
"346096": 132,
|
| 1614 |
+
"26": 95,
|
| 1615 |
+
"leicester": 1993,
|
| 1616 |
+
"tv": 3549,
|
| 1617 |
+
"wait": 3701,
|
| 1618 |
+
"tribe": 3525,
|
| 1619 |
+
"rolllout": 2971,
|
| 1620 |
+
"everywhere": 1328,
|
| 1621 |
+
"become": 533,
|
| 1622 |
+
"hull": 1725,
|
| 1623 |
+
"walkout": 3712,
|
| 1624 |
+
"picket": 2569,
|
| 1625 |
+
"loud": 2068,
|
| 1626 |
+
"clear": 827,
|
| 1627 |
+
"symbolically": 3359,
|
| 1628 |
+
"turned": 3546,
|
| 1629 |
+
"backs": 495,
|
| 1630 |
+
"unsettled": 3596,
|
| 1631 |
+
"photo": 2560,
|
| 1632 |
+
"bombed": 603,
|
| 1633 |
+
"excess": 1339,
|
| 1634 |
+
"placard": 2585,
|
| 1635 |
+
"publicity": 2762,
|
| 1636 |
+
"darren": 1045,
|
| 1637 |
+
"nesbit": 2313,
|
| 1638 |
+
"14th": 34,
|
| 1639 |
+
"thrilled": 3452,
|
| 1640 |
+
"hosting": 1713,
|
| 1641 |
+
"editor": 1249,
|
| 1642 |
+
"worked": 3816,
|
| 1643 |
+
"relentlessly": 2884,
|
| 1644 |
+
"campaign": 709,
|
| 1645 |
+
"special": 3226,
|
| 1646 |
+
"request": 2913,
|
| 1647 |
+
"fixed": 1460,
|
| 1648 |
+
"plane": 2594,
|
| 1649 |
+
"earth": 1232,
|
| 1650 |
+
"cosmology": 962,
|
| 1651 |
+
"congratulations": 906,
|
| 1652 |
+
"dr": 1201,
|
| 1653 |
+
"vernon": 3654,
|
| 1654 |
+
"coleman": 854,
|
| 1655 |
+
"job": 1884,
|
| 1656 |
+
"vacancies": 3629,
|
| 1657 |
+
"awake": 481,
|
| 1658 |
+
"imagine": 1757,
|
| 1659 |
+
"nourishing": 2352,
|
| 1660 |
+
"regenerative": 2867,
|
| 1661 |
+
"commons": 879,
|
| 1662 |
+
"software": 3194,
|
| 1663 |
+
"resources": 2927,
|
| 1664 |
+
"producers": 2713,
|
| 1665 |
+
"communities": 881,
|
| 1666 |
+
"build": 667,
|
| 1667 |
+
"fairer": 1393,
|
| 1668 |
+
"systems": 3364,
|
| 1669 |
+
"avoid": 478,
|
| 1670 |
+
"supermarkets": 3339,
|
| 1671 |
+
"forget": 1491,
|
| 1672 |
+
"partners": 2487,
|
| 1673 |
+
"locate": 2046,
|
| 1674 |
+
"working": 3819,
|
| 1675 |
+
"helping": 1666,
|
| 1676 |
+
"hubs": 1722,
|
| 1677 |
+
"buying": 687,
|
| 1678 |
+
"costs": 964,
|
| 1679 |
+
"watching": 3733,
|
| 1680 |
+
"socials": 3191,
|
| 1681 |
+
"soon": 3206,
|
| 1682 |
+
"launched": 1968,
|
| 1683 |
+
"campaigns": 710,
|
| 1684 |
+
"update": 3603,
|
| 1685 |
+
"tomorrows": 3485,
|
| 1686 |
+
"unfortunately": 3575,
|
| 1687 |
+
"snow": 3186,
|
| 1688 |
+
"poor": 2634,
|
| 1689 |
+
"driving": 1216,
|
| 1690 |
+
"conditions": 898,
|
| 1691 |
+
"thought": 3444,
|
| 1692 |
+
"safety": 2998,
|
| 1693 |
+
"concerned": 896,
|
| 1694 |
+
"taken": 3370,
|
| 1695 |
+
"decision": 1074,
|
| 1696 |
+
"postpone": 2651,
|
| 1697 |
+
"rescheduled": 2919,
|
| 1698 |
+
"overnight": 2456,
|
| 1699 |
+
"temperatures": 3401,
|
| 1700 |
+
"drop": 1217,
|
| 1701 |
+
"minus": 2234,
|
| 1702 |
+
"degrees": 1087,
|
| 1703 |
+
"celsius": 756,
|
| 1704 |
+
"roads": 2964,
|
| 1705 |
+
"icey": 1740,
|
| 1706 |
+
"dangerous": 1039,
|
| 1707 |
+
"drive": 1212,
|
| 1708 |
+
"safely": 2997,
|
| 1709 |
+
"poole": 2632,
|
| 1710 |
+
"cavern": 751,
|
| 1711 |
+
"solomons": 3199,
|
| 1712 |
+
"temple": 3404,
|
| 1713 |
+
"miles": 2225,
|
| 1714 |
+
"moderate": 2248,
|
| 1715 |
+
"leader": 1976,
|
| 1716 |
+
"dave": 1051,
|
| 1717 |
+
"pools": 2633,
|
| 1718 |
+
"foot": 1481,
|
| 1719 |
+
"45": 152,
|
| 1720 |
+
"postcode": 2644,
|
| 1721 |
+
"sk179dh": 3155,
|
| 1722 |
+
"packed": 2464,
|
| 1723 |
+
"lunch": 2081,
|
| 1724 |
+
"liquid": 2025,
|
| 1725 |
+
"refreshment": 2861,
|
| 1726 |
+
"round": 2979,
|
| 1727 |
+
"plenty": 2605,
|
| 1728 |
+
"green": 1606,
|
| 1729 |
+
"toilets": 3482,
|
| 1730 |
+
"visitor": 3684,
|
| 1731 |
+
"kids": 1923,
|
| 1732 |
+
"dogs": 1186,
|
| 1733 |
+
"mile": 2224,
|
| 1734 |
+
"starting": 3258,
|
| 1735 |
+
"visiting": 3683,
|
| 1736 |
+
"via": 3662,
|
| 1737 |
+
"1400": 33,
|
| 1738 |
+
"feet": 1423,
|
| 1739 |
+
"elevation": 1268,
|
| 1740 |
+
"pub": 2761,
|
| 1741 |
+
"club": 843,
|
| 1742 |
+
"pease": 2524,
|
| 1743 |
+
"keepers": 1914,
|
| 1744 |
+
"th": 3421,
|
| 1745 |
+
"marc": 2140,
|
| 1746 |
+
"horn": 1707,
|
| 1747 |
+
"melville": 2186,
|
| 1748 |
+
"35": 133,
|
| 1749 |
+
"road": 2963,
|
| 1750 |
+
"stretford": 3297,
|
| 1751 |
+
"m32": 2100,
|
| 1752 |
+
"8ea": 228,
|
| 1753 |
+
"auditing": 463,
|
| 1754 |
+
"place": 2587,
|
| 1755 |
+
"org": 2433,
|
| 1756 |
+
"website": 3745,
|
| 1757 |
+
"youtube": 3858,
|
| 1758 |
+
"256": 93,
|
| 1759 |
+
"744": 210,
|
| 1760 |
+
"humphrey": 1730,
|
| 1761 |
+
"minute": 2235,
|
| 1762 |
+
"streets": 3296,
|
| 1763 |
+
"match": 2156,
|
| 1764 |
+
"trafford": 3508,
|
| 1765 |
+
"optional": 2428,
|
| 1766 |
+
"donation": 1187,
|
| 1767 |
+
"caroline": 733,
|
| 1768 |
+
"daniels": 1042,
|
| 1769 |
+
"february": 1417,
|
| 1770 |
+
"naturopath": 2299,
|
| 1771 |
+
"herbalist": 1672,
|
| 1772 |
+
"works": 3820,
|
| 1773 |
+
"wilmslow": 3789,
|
| 1774 |
+
"herb": 1670,
|
| 1775 |
+
"walks": 3713,
|
| 1776 |
+
"workshops": 3821,
|
| 1777 |
+
"clients": 833,
|
| 1778 |
+
"biological": 568,
|
| 1779 |
+
"sciences": 3029,
|
| 1780 |
+
"degree": 1086,
|
| 1781 |
+
"spent": 3233,
|
| 1782 |
+
"pharmaceutical": 2551,
|
| 1783 |
+
"industry": 1788,
|
| 1784 |
+
"training": 3510,
|
| 1785 |
+
"enemy": 1287,
|
| 1786 |
+
"tools": 3489,
|
| 1787 |
+
"plants": 2598,
|
| 1788 |
+
"techniques": 3396,
|
| 1789 |
+
"turn": 3545,
|
| 1790 |
+
"herbal": 1671,
|
| 1791 |
+
"remedies": 2891,
|
| 1792 |
+
"explore": 1367,
|
| 1793 |
+
"spring": 3245,
|
| 1794 |
+
"cleanse": 826,
|
| 1795 |
+
"herbs": 1673,
|
| 1796 |
+
"demonstration": 1096,
|
| 1797 |
+
"preserve": 2674,
|
| 1798 |
+
"whole": 3777,
|
| 1799 |
+
"tinctures": 3467,
|
| 1800 |
+
"glycerites": 1582,
|
| 1801 |
+
"fire": 1454,
|
| 1802 |
+
"cider": 813,
|
| 1803 |
+
"gather": 1555,
|
| 1804 |
+
"dry": 1221,
|
| 1805 |
+
"fightingforourfreedom": 1435,
|
| 1806 |
+
"worldwidefreedomrally": 3827,
|
| 1807 |
+
"letter": 1997,
|
| 1808 |
+
"offices": 2389,
|
| 1809 |
+
"nbn": 2301,
|
| 1810 |
+
"28": 101,
|
| 1811 |
+
"honeysuckle": 1699,
|
| 1812 |
+
"newcastle": 2321,
|
| 1813 |
+
"wear": 3741,
|
| 1814 |
+
"white": 3775,
|
| 1815 |
+
"shirt": 3101,
|
| 1816 |
+
"worldwide": 3823,
|
| 1817 |
+
"spanning": 3220,
|
| 1818 |
+
"usa": 3617,
|
| 1819 |
+
"europe": 1319,
|
| 1820 |
+
"canada": 713,
|
| 1821 |
+
"australia": 466,
|
| 1822 |
+
"calgary": 695,
|
| 1823 |
+
"alberta": 335,
|
| 1824 |
+
"odt": 2379,
|
| 1825 |
+
"docx": 1185,
|
| 1826 |
+
"downloads": 1198,
|
| 1827 |
+
"hall": 1631,
|
| 1828 |
+
"speech": 3228,
|
| 1829 |
+
"movement": 2273,
|
| 1830 |
+
"assembly": 437,
|
| 1831 |
+
"roam": 2965,
|
| 1832 |
+
"freely": 1516,
|
| 1833 |
+
"movements": 2274,
|
| 1834 |
+
"controlled": 937,
|
| 1835 |
+
"monitored": 2259,
|
| 1836 |
+
"history": 1684,
|
| 1837 |
+
"unity": 3582,
|
| 1838 |
+
"regardless": 2866,
|
| 1839 |
+
"sex": 3085,
|
| 1840 |
+
"status": 3265,
|
| 1841 |
+
"colour": 861,
|
| 1842 |
+
"creed": 998,
|
| 1843 |
+
"lied": 2006,
|
| 1844 |
+
"miami": 2210,
|
| 1845 |
+
"atlanta": 445,
|
| 1846 |
+
"cnn": 845,
|
| 1847 |
+
"added": 288,
|
| 1848 |
+
"cities": 816,
|
| 1849 |
+
"shortly": 3107,
|
| 1850 |
+
"fightback": 1431,
|
| 1851 |
+
"continues": 932,
|
| 1852 |
+
"outlets": 2448,
|
| 1853 |
+
"big": 560,
|
| 1854 |
+
"tech": 3394,
|
| 1855 |
+
"censor": 757,
|
| 1856 |
+
"daily": 1029,
|
| 1857 |
+
"onboard": 2405,
|
| 1858 |
+
"opens": 2418,
|
| 1859 |
+
"thorne": 3442,
|
| 1860 |
+
"opened": 2416,
|
| 1861 |
+
"doors": 1190,
|
| 1862 |
+
"yorkshire": 3856,
|
| 1863 |
+
"mike": 2220,
|
| 1864 |
+
"collapsing": 856,
|
| 1865 |
+
"darlington": 1044,
|
| 1866 |
+
"hero": 1674,
|
| 1867 |
+
"disgusting": 1161,
|
| 1868 |
+
"atrocities": 446,
|
| 1869 |
+
"monsters": 2260,
|
| 1870 |
+
"face": 1383,
|
| 1871 |
+
"stott": 3293,
|
| 1872 |
+
"absolute": 257,
|
| 1873 |
+
"diamond": 1131,
|
| 1874 |
+
"gentle": 1564,
|
| 1875 |
+
"helpful": 1665,
|
| 1876 |
+
"souls": 3211,
|
| 1877 |
+
"ever": 1324,
|
| 1878 |
+
"seemed": 3050,
|
| 1879 |
+
"knew": 1933,
|
| 1880 |
+
"insightful": 1817,
|
| 1881 |
+
"words": 3815,
|
| 1882 |
+
"whatever": 3771,
|
| 1883 |
+
"personally": 2544,
|
| 1884 |
+
"feel": 1420,
|
| 1885 |
+
"honour": 1700,
|
| 1886 |
+
"known": 1936,
|
| 1887 |
+
"surely": 3347,
|
| 1888 |
+
"missed": 2240,
|
| 1889 |
+
"met": 2204,
|
| 1890 |
+
"rest": 2937,
|
| 1891 |
+
"legend": 1990,
|
| 1892 |
+
"onit": 2410,
|
| 1893 |
+
"served": 3071,
|
| 1894 |
+
"schools": 3028,
|
| 1895 |
+
"shine": 3100,
|
| 1896 |
+
"forever": 1490,
|
| 1897 |
+
"americans": 360,
|
| 1898 |
+
"willing": 3788,
|
| 1899 |
+
"step": 3270,
|
| 1900 |
+
"defend": 1083,
|
| 1901 |
+
"constitution": 922,
|
| 1902 |
+
"six": 3150,
|
| 1903 |
+
"uh": 3558,
|
| 1904 |
+
"broadcasting": 651,
|
| 1905 |
+
"fox": 1509,
|
| 1906 |
+
"folks": 1476,
|
| 1907 |
+
"tired": 3472,
|
| 1908 |
+
"sudden": 3322,
|
| 1909 |
+
"syndrome": 3361,
|
| 1910 |
+
"plastered": 2599,
|
| 1911 |
+
"thousands": 3446,
|
| 1912 |
+
"pictures": 2571,
|
| 1913 |
+
"hats": 1649,
|
| 1914 |
+
"pond": 2631,
|
| 1915 |
+
"brother": 655,
|
| 1916 |
+
"passed": 2489,
|
| 1917 |
+
"away": 490,
|
| 1918 |
+
"poland": 2619,
|
| 1919 |
+
"funeral": 1539,
|
| 1920 |
+
"consequently": 912,
|
| 1921 |
+
"dinner": 1142,
|
| 1922 |
+
"24th": 90,
|
| 1923 |
+
"thoughts": 3445,
|
| 1924 |
+
"ian": 1737,
|
| 1925 |
+
"jarvis": 1880,
|
| 1926 |
+
"serves": 3072,
|
| 1927 |
+
"gluten": 1581,
|
| 1928 |
+
"ians": 1738,
|
| 1929 |
+
"presentation": 2672,
|
| 1930 |
+
"include": 1771,
|
| 1931 |
+
"5g": 183,
|
| 1932 |
+
"touch": 3494,
|
| 1933 |
+
"insurance": 1827,
|
| 1934 |
+
"pointers": 2614,
|
| 1935 |
+
"wider": 3782,
|
| 1936 |
+
"considerations": 915,
|
| 1937 |
+
"suggest": 3327,
|
| 1938 |
+
"rushed": 2991,
|
| 1939 |
+
"international": 1837,
|
| 1940 |
+
"discuss": 1156,
|
| 1941 |
+
"oppose": 2423,
|
| 1942 |
+
"applications": 394,
|
| 1943 |
+
"regulations": 2875,
|
| 1944 |
+
"finally": 1445,
|
| 1945 |
+
"tips": 3471,
|
| 1946 |
+
"self": 3057,
|
| 1947 |
+
"protection": 2740,
|
| 1948 |
+
"introductory": 1842,
|
| 1949 |
+
"raising": 2812,
|
| 1950 |
+
"technical": 3395,
|
| 1951 |
+
"sufficient": 3326,
|
| 1952 |
+
"knowledge": 1935,
|
| 1953 |
+
"mind": 2228,
|
| 1954 |
+
"current": 1020,
|
| 1955 |
+
"rollout": 2972,
|
| 1956 |
+
"jolly": 1893,
|
| 1957 |
+
"nailor": 2289,
|
| 1958 |
+
"starts": 3259,
|
| 1959 |
+
"previously": 2684,
|
| 1960 |
+
"presented": 2673,
|
| 1961 |
+
"atherton": 444,
|
| 1962 |
+
"m46": 2103,
|
| 1963 |
+
"0dn": 12,
|
| 1964 |
+
"david": 1052,
|
| 1965 |
+
"adelman": 291,
|
| 1966 |
+
"peoples": 2529,
|
| 1967 |
+
"lawyer": 1973,
|
| 1968 |
+
"27th": 100,
|
| 1969 |
+
"delighted": 1092,
|
| 1970 |
+
"nightmare": 2332,
|
| 1971 |
+
"dream": 1206,
|
| 1972 |
+
"evil": 1330,
|
| 1973 |
+
"breaking": 634,
|
| 1974 |
+
"spell": 3229,
|
| 1975 |
+
"releasing": 2883,
|
| 1976 |
+
"joining": 1890,
|
| 1977 |
+
"dots": 1195,
|
| 1978 |
+
"globalist": 1577,
|
| 1979 |
+
"sovereign": 3215,
|
| 1980 |
+
"cambridge": 704,
|
| 1981 |
+
"university": 3583,
|
| 1982 |
+
"educated": 1252,
|
| 1983 |
+
"qualified": 2785,
|
| 1984 |
+
"solicitor": 3198,
|
| 1985 |
+
"conventional": 939,
|
| 1986 |
+
"incarceration": 1766,
|
| 1987 |
+
"life": 2008,
|
| 1988 |
+
"living": 2039,
|
| 1989 |
+
"teaching": 3389,
|
| 1990 |
+
"english": 1293,
|
| 1991 |
+
"spain": 3218,
|
| 1992 |
+
"several": 3082,
|
| 1993 |
+
"awarded": 484,
|
| 1994 |
+
"funding": 1537,
|
| 1995 |
+
"teach": 3387,
|
| 1996 |
+
"thinking": 3438,
|
| 1997 |
+
"skills": 3160,
|
| 1998 |
+
"experience": 1358,
|
| 1999 |
+
"education": 1254,
|
| 2000 |
+
"led": 1984,
|
| 2001 |
+
"research": 2920,
|
| 2002 |
+
"author": 469,
|
| 2003 |
+
"published": 2764,
|
| 2004 |
+
"thinkers": 3437,
|
| 2005 |
+
"locally": 2045,
|
| 2006 |
+
"asda": 426,
|
| 2007 |
+
"cricket": 999,
|
| 2008 |
+
"dane": 1037,
|
| 2009 |
+
"rochdale": 2967,
|
| 2010 |
+
"ol12": 2396,
|
| 2011 |
+
"6xt": 207,
|
| 2012 |
+
"friday": 1520,
|
| 2013 |
+
"jo": 1883,
|
| 2014 |
+
"hello": 1663,
|
| 2015 |
+
"fighter": 1432,
|
| 2016 |
+
"awaken": 482,
|
| 2017 |
+
"months": 2262,
|
| 2018 |
+
"corrupted": 961,
|
| 2019 |
+
"ridiculous": 2954,
|
| 2020 |
+
"coppers": 948,
|
| 2021 |
+
"lying": 2085,
|
| 2022 |
+
"stating": 3262,
|
| 2023 |
+
"ptsd": 2760,
|
| 2024 |
+
"bunch": 672,
|
| 2025 |
+
"bastards": 520,
|
| 2026 |
+
"anyway": 382,
|
| 2027 |
+
"christmas": 811,
|
| 2028 |
+
"oclock": 2376,
|
| 2029 |
+
"armed": 409,
|
| 2030 |
+
"impersonating": 1761,
|
| 2031 |
+
"ruled": 2986,
|
| 2032 |
+
"yesterday": 3853,
|
| 2033 |
+
"acting": 276,
|
| 2034 |
+
"illegally": 1753,
|
| 2035 |
+
"civil": 819,
|
| 2036 |
+
"dispute": 1169,
|
| 2037 |
+
"holding": 1689,
|
| 2038 |
+
"kat": 1912,
|
| 2039 |
+
"tenants": 3406,
|
| 2040 |
+
"whose": 3779,
|
| 2041 |
+
"whereabouts": 3772,
|
| 2042 |
+
"currently": 1021,
|
| 2043 |
+
"closing": 839,
|
| 2044 |
+
"discussion": 1159,
|
| 2045 |
+
"changed": 777,
|
| 2046 |
+
"title": 3474,
|
| 2047 |
+
"a4army": 248,
|
| 2048 |
+
"ads": 304,
|
| 2049 |
+
"calendar": 693,
|
| 2050 |
+
"documents": 1184,
|
| 2051 |
+
"demons": 1095,
|
| 2052 |
+
"injecting": 1803,
|
| 2053 |
+
"poison": 2616,
|
| 2054 |
+
"3pm": 144,
|
| 2055 |
+
"alder": 338,
|
| 2056 |
+
"hey": 1676,
|
| 2057 |
+
"childrends": 802,
|
| 2058 |
+
"hospital": 1710,
|
| 2059 |
+
"serving": 3075,
|
| 2060 |
+
"pumps": 2765,
|
| 2061 |
+
"merseyway": 2200,
|
| 2062 |
+
"26th": 97,
|
| 2063 |
+
"nov": 2353,
|
| 2064 |
+
"speaking": 3224,
|
| 2065 |
+
"peacefully": 2521,
|
| 2066 |
+
"entered": 1301,
|
| 2067 |
+
"claim": 820,
|
| 2068 |
+
"pspo": 2759,
|
| 2069 |
+
"supposedly": 3345,
|
| 2070 |
+
"bans": 512,
|
| 2071 |
+
"shouting": 3110,
|
| 2072 |
+
"megaphone": 2183,
|
| 2073 |
+
"expressing": 1374,
|
| 2074 |
+
"disapproval": 1150,
|
| 2075 |
+
"indirectly": 1786,
|
| 2076 |
+
"c19": 688,
|
| 2077 |
+
"bioweapon": 571,
|
| 2078 |
+
"sites": 3145,
|
| 2079 |
+
"bill": 564,
|
| 2080 |
+
"usually": 3626,
|
| 2081 |
+
"drunkenness": 1220,
|
| 2082 |
+
"breach": 630,
|
| 2083 |
+
"recent": 2843,
|
| 2084 |
+
"followed": 1477,
|
| 2085 |
+
"4km": 162,
|
| 2086 |
+
"november": 2354,
|
| 2087 |
+
"rise": 2958,
|
| 2088 |
+
"replicate": 2906,
|
| 2089 |
+
"black": 579,
|
| 2090 |
+
"weekend": 3751,
|
| 2091 |
+
"flyers": 1472,
|
| 2092 |
+
"newspapers": 2325,
|
| 2093 |
+
"provided": 2752,
|
| 2094 |
+
"flags": 1462,
|
| 2095 |
+
"placards": 2586,
|
| 2096 |
+
"vax": 3647,
|
| 2097 |
+
"alongside": 351,
|
| 2098 |
+
"participating": 2482,
|
| 2099 |
+
"seeing": 3049,
|
| 2100 |
+
"escalator": 1311,
|
| 2101 |
+
"general": 1561,
|
| 2102 |
+
"dangers": 1040,
|
| 2103 |
+
"megaphones": 2184,
|
| 2104 |
+
"horns": 1708,
|
| 2105 |
+
"calender": 694,
|
| 2106 |
+
"29th": 106,
|
| 2107 |
+
"october": 2378,
|
| 2108 |
+
"successfully": 3319,
|
| 2109 |
+
"saved": 3013,
|
| 2110 |
+
"precinct": 2661,
|
| 2111 |
+
"home": 1694,
|
| 2112 |
+
"designs": 1111,
|
| 2113 |
+
"upcoming": 3602,
|
| 2114 |
+
"oct": 2377,
|
| 2115 |
+
"template": 3402,
|
| 2116 |
+
"modify": 2250,
|
| 2117 |
+
"urls": 3615,
|
| 2118 |
+
"logos": 2055,
|
| 2119 |
+
"assist": 439,
|
| 2120 |
+
"changes": 778,
|
| 2121 |
+
"libre": 2003,
|
| 2122 |
+
"writer": 3837,
|
| 2123 |
+
"microsoft": 2213,
|
| 2124 |
+
"word": 3814,
|
| 2125 |
+
"replacement": 2905,
|
| 2126 |
+
"doc": 1180,
|
| 2127 |
+
"gang": 1546,
|
| 2128 |
+
"came": 706,
|
| 2129 |
+
"sky": 3164,
|
| 2130 |
+
"ch4": 769,
|
| 2131 |
+
"variants": 3640,
|
| 2132 |
+
"terry": 3413,
|
| 2133 |
+
"trio": 3530,
|
| 2134 |
+
"07779": 9,
|
| 2135 |
+
"618381": 191,
|
| 2136 |
+
"trioscreenprint": 3531,
|
| 2137 |
+
"btconnect": 665,
|
| 2138 |
+
"hsj": 1720,
|
| 2139 |
+
"patient": 2499,
|
| 2140 |
+
"congress": 907,
|
| 2141 |
+
"demo": 1094,
|
| 2142 |
+
"start": 3256,
|
| 2143 |
+
"teams": 3391,
|
| 2144 |
+
"later": 1963,
|
| 2145 |
+
"similar": 3133,
|
| 2146 |
+
"ukhsa": 3559,
|
| 2147 |
+
"convention": 938,
|
| 2148 |
+
"complex": 892,
|
| 2149 |
+
"windmill": 3791,
|
| 2150 |
+
"3gx": 143,
|
| 2151 |
+
"unite": 3579,
|
| 2152 |
+
"whitty": 3776,
|
| 2153 |
+
"strikes": 3300,
|
| 2154 |
+
"chief": 799,
|
| 2155 |
+
"depopulator": 1102,
|
| 2156 |
+
"chris": 809,
|
| 2157 |
+
"wef": 3754,
|
| 2158 |
+
"stooge": 3286,
|
| 2159 |
+
"andy": 367,
|
| 2160 |
+
"burnham": 674,
|
| 2161 |
+
"care": 729,
|
| 2162 |
+
"8am": 227,
|
| 2163 |
+
"delegates": 1089,
|
| 2164 |
+
"queuing": 2796,
|
| 2165 |
+
"ample": 363,
|
| 2166 |
+
"opportunity": 2422,
|
| 2167 |
+
"conversation": 940,
|
| 2168 |
+
"hopefully": 1704,
|
| 2169 |
+
"deansgate": 1059,
|
| 2170 |
+
"programme": 2721,
|
| 2171 |
+
"ahead": 327,
|
| 2172 |
+
"prevent": 2680,
|
| 2173 |
+
"wave": 3737,
|
| 2174 |
+
"lies": 2007,
|
| 2175 |
+
"guests": 1621,
|
| 2176 |
+
"aware": 487,
|
| 2177 |
+
"destruction": 1117,
|
| 2178 |
+
"disability": 1148,
|
| 2179 |
+
"policies": 2621,
|
| 2180 |
+
"assemble": 436,
|
| 2181 |
+
"invited": 1852,
|
| 2182 |
+
"academia": 260,
|
| 2183 |
+
"officials": 2391,
|
| 2184 |
+
"charity": 783,
|
| 2185 |
+
"ngos": 2327,
|
| 2186 |
+
"witty": 3806,
|
| 2187 |
+
"jenny": 1882,
|
| 2188 |
+
"harries": 1648,
|
| 2189 |
+
"exec": 1346,
|
| 2190 |
+
"phe": 2555,
|
| 2191 |
+
"retreat": 2945,
|
| 2192 |
+
"encourage": 1282,
|
| 2193 |
+
"decent": 1070,
|
| 2194 |
+
"honest": 1697,
|
| 2195 |
+
"spread": 3243,
|
| 2196 |
+
"honesty": 1698,
|
| 2197 |
+
"click": 832,
|
| 2198 |
+
"sk1": 3153,
|
| 2199 |
+
"1ra": 64,
|
| 2200 |
+
"chalk": 773,
|
| 2201 |
+
"decathlon": 1069,
|
| 2202 |
+
"sports": 3239,
|
| 2203 |
+
"sk4": 3157,
|
| 2204 |
+
"1dn": 59,
|
| 2205 |
+
"railway": 2806,
|
| 2206 |
+
"191": 49,
|
| 2207 |
+
"192": 50,
|
| 2208 |
+
"323": 126,
|
| 2209 |
+
"328": 127,
|
| 2210 |
+
"364": 135,
|
| 2211 |
+
"stepping": 3272,
|
| 2212 |
+
"hill": 1683,
|
| 2213 |
+
"windsor": 3794,
|
| 2214 |
+
"yards": 3849,
|
| 2215 |
+
"vaccination": 3631,
|
| 2216 |
+
"believed": 543,
|
| 2217 |
+
"released": 2882,
|
| 2218 |
+
"warrant": 3727,
|
| 2219 |
+
"second": 3041,
|
| 2220 |
+
"contains": 927,
|
| 2221 |
+
"explanation": 1366,
|
| 2222 |
+
"original": 2441,
|
| 2223 |
+
"268mb": 96,
|
| 2224 |
+
"recompressed": 2848,
|
| 2225 |
+
"load": 2041,
|
| 2226 |
+
"quicker": 2798,
|
| 2227 |
+
"78mb": 216,
|
| 2228 |
+
"vallance": 3636,
|
| 2229 |
+
"originally": 2442,
|
| 2230 |
+
"planned": 2595,
|
| 2231 |
+
"ardwick": 403,
|
| 2232 |
+
"brunswick": 661,
|
| 2233 |
+
"m13": 2090,
|
| 2234 |
+
"9uj": 242,
|
| 2235 |
+
"1km": 62,
|
| 2236 |
+
"mancunian": 2131,
|
| 2237 |
+
"a57": 250,
|
| 2238 |
+
"201": 69,
|
| 2239 |
+
"203": 77,
|
| 2240 |
+
"a6": 252,
|
| 2241 |
+
"junction": 1906,
|
| 2242 |
+
"436": 147,
|
| 2243 |
+
"sk2": 3156,
|
| 2244 |
+
"7jq": 219,
|
| 2245 |
+
"5db": 182,
|
| 2246 |
+
"parkopedia": 2478,
|
| 2247 |
+
"sheffield": 3094,
|
| 2248 |
+
"preston": 2676,
|
| 2249 |
+
"blackburn": 580,
|
| 2250 |
+
"burnley": 675,
|
| 2251 |
+
"huddersfield": 1723,
|
| 2252 |
+
"criminals": 1004,
|
| 2253 |
+
"silences": 3131,
|
| 2254 |
+
"dead": 1057,
|
| 2255 |
+
"injured": 1807,
|
| 2256 |
+
"23": 87,
|
| 2257 |
+
"gates": 1554,
|
| 2258 |
+
"foundation": 1505,
|
| 2259 |
+
"bought": 616,
|
| 2260 |
+
"55m": 179,
|
| 2261 |
+
"biontech": 570,
|
| 2262 |
+
"shares": 3087,
|
| 2263 |
+
"2019": 72,
|
| 2264 |
+
"achieving": 271,
|
| 2265 |
+
"impartiality": 1760,
|
| 2266 |
+
"output": 2451,
|
| 2267 |
+
"editorial": 1250,
|
| 2268 |
+
"guidelines": 1623,
|
| 2269 |
+
"pandemic": 2471,
|
| 2270 |
+
"29": 103,
|
| 2271 |
+
"53": 174,
|
| 2272 |
+
"bristol": 646,
|
| 2273 |
+
"visit": 3682,
|
| 2274 |
+
"nhs": 2328,
|
| 2275 |
+
"promised": 2726,
|
| 2276 |
+
"result": 2941,
|
| 2277 |
+
"realising": 2832,
|
| 2278 |
+
"reopened": 2899,
|
| 2279 |
+
"clearly": 829,
|
| 2280 |
+
"scene": 3022,
|
| 2281 |
+
"locked": 2050,
|
| 2282 |
+
"duty": 1226,
|
| 2283 |
+
"assess": 438,
|
| 2284 |
+
"numerous": 2359,
|
| 2285 |
+
"requests": 2915,
|
| 2286 |
+
"aseem": 427,
|
| 2287 |
+
"malhotra": 2125,
|
| 2288 |
+
"dale": 1030,
|
| 2289 |
+
"vincent": 3678,
|
| 2290 |
+
"misconduct": 2238,
|
| 2291 |
+
"alleged": 343,
|
| 2292 |
+
"assaulted": 435,
|
| 2293 |
+
"leave": 1982,
|
| 2294 |
+
"land": 1952,
|
| 2295 |
+
"owner": 2460,
|
| 2296 |
+
"interviewed": 1839,
|
| 2297 |
+
"allegation": 341,
|
| 2298 |
+
"facts": 1389,
|
| 2299 |
+
"footage": 1482,
|
| 2300 |
+
"decide": 1071,
|
| 2301 |
+
"bailed": 499,
|
| 2302 |
+
"4am": 158,
|
| 2303 |
+
"pending": 2527,
|
| 2304 |
+
"investigation": 1848,
|
| 2305 |
+
"offence": 2380,
|
| 2306 |
+
"defence": 1081,
|
| 2307 |
+
"submitted": 3314,
|
| 2308 |
+
"less": 1995,
|
| 2309 |
+
"ten": 3405,
|
| 2310 |
+
"14": 32,
|
| 2311 |
+
"outnumbered": 2450,
|
| 2312 |
+
"unnecessary": 3593,
|
| 2313 |
+
"brave": 628,
|
| 2314 |
+
"honourable": 1701,
|
| 2315 |
+
"displayed": 1167,
|
| 2316 |
+
"incredible": 1781,
|
| 2317 |
+
"courage": 977,
|
| 2318 |
+
"martin": 2149,
|
| 2319 |
+
"ava": 475,
|
| 2320 |
+
"dora": 1191,
|
| 2321 |
+
"matt": 2160,
|
| 2322 |
+
"casie": 740,
|
| 2323 |
+
"daniel": 1041,
|
| 2324 |
+
"partner": 2486,
|
| 2325 |
+
"brian": 639,
|
| 2326 |
+
"recorded": 2850,
|
| 2327 |
+
"editing": 1248,
|
| 2328 |
+
"vast": 3646,
|
| 2329 |
+
"difficult": 1138,
|
| 2330 |
+
"situations": 3149,
|
| 2331 |
+
"nobody": 2335,
|
| 2332 |
+
"harmed": 1644,
|
| 2333 |
+
"trying": 3540,
|
| 2334 |
+
"started": 3257,
|
| 2335 |
+
"6am": 197,
|
| 2336 |
+
"driven": 1213,
|
| 2337 |
+
"wales": 3708,
|
| 2338 |
+
"dorset": 1192,
|
| 2339 |
+
"birmingham": 573,
|
| 2340 |
+
"arriving": 421,
|
| 2341 |
+
"tiring": 3473,
|
| 2342 |
+
"physically": 2563,
|
| 2343 |
+
"mentally": 2195,
|
| 2344 |
+
"introduce": 1841,
|
| 2345 |
+
"programmable": 2720,
|
| 2346 |
+
"currency": 1019,
|
| 2347 |
+
"dependent": 1101,
|
| 2348 |
+
"upon": 3607,
|
| 2349 |
+
"cyber": 1027,
|
| 2350 |
+
"attacks": 450,
|
| 2351 |
+
"cuts": 1026,
|
| 2352 |
+
"failure": 1391,
|
| 2353 |
+
"banks": 510,
|
| 2354 |
+
"society": 3192,
|
| 2355 |
+
"mean": 2169,
|
| 2356 |
+
"rainy": 2810,
|
| 2357 |
+
"selling": 3060,
|
| 2358 |
+
"unwanted": 3599,
|
| 2359 |
+
"items": 1862,
|
| 2360 |
+
"tipping": 3470,
|
| 2361 |
+
"waiters": 3702,
|
| 2362 |
+
"hairdressers": 1628,
|
| 2363 |
+
"boot": 611,
|
| 2364 |
+
"sales": 3003,
|
| 2365 |
+
"markets": 2146,
|
| 2366 |
+
"fivers": 1459,
|
| 2367 |
+
"grandchildren": 1601,
|
| 2368 |
+
"buskers": 681,
|
| 2369 |
+
"tooth": 3490,
|
| 2370 |
+
"fairy": 1395,
|
| 2371 |
+
"piggy": 2577,
|
| 2372 |
+
"affect": 314,
|
| 2373 |
+
"penny": 2528,
|
| 2374 |
+
"transaction": 3514,
|
| 2375 |
+
"tracked": 3505,
|
| 2376 |
+
"privilege": 2698,
|
| 2377 |
+
"benefit": 547,
|
| 2378 |
+
"coroner": 956,
|
| 2379 |
+
"tabor": 3368,
|
| 2380 |
+
"3ag": 140,
|
| 2381 |
+
"lightpapers": 2012,
|
| 2382 |
+
"coroners": 957,
|
| 2383 |
+
"guilty": 1625,
|
| 2384 |
+
"investigate": 1846,
|
| 2385 |
+
"warn": 3723,
|
| 2386 |
+
"promo": 2727,
|
| 2387 |
+
"bitchute": 576,
|
| 2388 |
+
"channels": 780,
|
| 2389 |
+
"viewable": 3674,
|
| 2390 |
+
"browser": 659,
|
| 2391 |
+
"content": 928,
|
| 2392 |
+
"smaller": 3174,
|
| 2393 |
+
"larger": 1960,
|
| 2394 |
+
"incl": 1770,
|
| 2395 |
+
"replaced": 2904,
|
| 2396 |
+
"view": 3673,
|
| 2397 |
+
"expand": 1356,
|
| 2398 |
+
"platforms": 2602,
|
| 2399 |
+
"candlelit": 721,
|
| 2400 |
+
"vigil": 3676,
|
| 2401 |
+
"wonderful": 3810,
|
| 2402 |
+
"floral": 1465,
|
| 2403 |
+
"lanterns": 1958,
|
| 2404 |
+
"subscribe": 3315,
|
| 2405 |
+
"edge": 1244,
|
| 2406 |
+
"matrix": 2158,
|
| 2407 |
+
"weekday": 3750,
|
| 2408 |
+
"candles": 722,
|
| 2409 |
+
"sheets": 3093,
|
| 2410 |
+
"britain": 647,
|
| 2411 |
+
"railways": 2807,
|
| 2412 |
+
"brought": 657,
|
| 2413 |
+
"standstill": 3254,
|
| 2414 |
+
"rmt": 2962,
|
| 2415 |
+
"union": 3577,
|
| 2416 |
+
"24": 89,
|
| 2417 |
+
"hour": 1716,
|
| 2418 |
+
"rail": 2804,
|
| 2419 |
+
"running": 2988,
|
| 2420 |
+
"companies": 883,
|
| 2421 |
+
"strike": 3299,
|
| 2422 |
+
"dispatchers": 1165,
|
| 2423 |
+
"chiltern": 803,
|
| 2424 |
+
"cross": 1009,
|
| 2425 |
+
"trains": 3511,
|
| 2426 |
+
"anglia": 371,
|
| 2427 |
+
"lner": 2040,
|
| 2428 |
+
"midlands": 2218,
|
| 2429 |
+
"c2c": 689,
|
| 2430 |
+
"western": 3766,
|
| 2431 |
+
"northern": 2344,
|
| 2432 |
+
"southeastern": 3214,
|
| 2433 |
+
"transpennine": 3517,
|
| 2434 |
+
"express": 1372,
|
| 2435 |
+
"avanti": 477,
|
| 2436 |
+
"coast": 848,
|
| 2437 |
+
"govia": 1594,
|
| 2438 |
+
"thameslink": 3424,
|
| 2439 |
+
"plan": 2592,
|
| 2440 |
+
"travel": 3520,
|
| 2441 |
+
"coaches": 847,
|
| 2442 |
+
"rallies": 2813,
|
| 2443 |
+
"direct": 1144,
|
| 2444 |
+
"easy": 1236,
|
| 2445 |
+
"shifted": 3097,
|
| 2446 |
+
"earlier": 1229,
|
| 2447 |
+
"accomodate": 265,
|
| 2448 |
+
"daz": 1055,
|
| 2449 |
+
"lions": 2023,
|
| 2450 |
+
"shopping": 3104,
|
| 2451 |
+
"bigsy": 563,
|
| 2452 |
+
"recovering": 2852,
|
| 2453 |
+
"abuse": 259,
|
| 2454 |
+
"unn": 3592,
|
| 2455 |
+
"lost": 2065,
|
| 2456 |
+
"macbook": 2107,
|
| 2457 |
+
"belongings": 545,
|
| 2458 |
+
"gone": 1588,
|
| 2459 |
+
"convoy": 942,
|
| 2460 |
+
"bigger": 561,
|
| 2461 |
+
"might": 2219,
|
| 2462 |
+
"easier": 1233,
|
| 2463 |
+
"paypal": 2515,
|
| 2464 |
+
"allgravybaby222": 345,
|
| 2465 |
+
"gmail": 1583,
|
| 2466 |
+
"american": 359,
|
| 2467 |
+
"vice": 3664,
|
| 2468 |
+
"hit": 1685,
|
| 2469 |
+
"piece": 2573,
|
| 2470 |
+
"saying": 3017,
|
| 2471 |
+
"political": 2627,
|
| 2472 |
+
"detention": 1120,
|
| 2473 |
+
"proof": 2731,
|
| 2474 |
+
"find": 1449,
|
| 2475 |
+
"arresting": 416,
|
| 2476 |
+
"london": 2056,
|
| 2477 |
+
"teat": 3393,
|
| 2478 |
+
"sucker": 3321,
|
| 2479 |
+
"named": 2292,
|
| 2480 |
+
"simon": 3135,
|
| 2481 |
+
"kin": 1927,
|
| 2482 |
+
"pro": 2699,
|
| 2483 |
+
"pieces": 2574,
|
| 2484 |
+
"km": 1931,
|
| 2485 |
+
"apparently": 388,
|
| 2486 |
+
"potus": 2655,
|
| 2487 |
+
"son": 3205,
|
| 2488 |
+
"weighing": 3756,
|
| 2489 |
+
"crack": 989,
|
| 2490 |
+
"rocks": 2969,
|
| 2491 |
+
"prestwich": 2677,
|
| 2492 |
+
"detained": 1119,
|
| 2493 |
+
"mentioning": 2198,
|
| 2494 |
+
"nuremberg": 2360,
|
| 2495 |
+
"wikipedia": 3785,
|
| 2496 |
+
"walt": 3716,
|
| 2497 |
+
"disney": 1164,
|
| 2498 |
+
"company": 884,
|
| 2499 |
+
"tpg": 3500,
|
| 2500 |
+
"capital": 725,
|
| 2501 |
+
"soros": 3208,
|
| 2502 |
+
"fund": 1532,
|
| 2503 |
+
"management": 2128,
|
| 2504 |
+
"james": 1875,
|
| 2505 |
+
"murdoch": 2285,
|
| 2506 |
+
"updated": 3604,
|
| 2507 |
+
"edenfield": 1243,
|
| 2508 |
+
"simply": 3137,
|
| 2509 |
+
"printing": 2691,
|
| 2510 |
+
"puts": 2781,
|
| 2511 |
+
"voices": 3690,
|
| 2512 |
+
"poster": 2646,
|
| 2513 |
+
"onwards": 2414,
|
| 2514 |
+
"m45": 2102,
|
| 2515 |
+
"7jz": 220,
|
| 2516 |
+
"tents": 3410,
|
| 2517 |
+
"camp": 708,
|
| 2518 |
+
"wooded": 3812,
|
| 2519 |
+
"boxcleverarmy": 621,
|
| 2520 |
+
"attempts": 454,
|
| 2521 |
+
"communication": 880,
|
| 2522 |
+
"longfield": 2059,
|
| 2523 |
+
"m25": 2097,
|
| 2524 |
+
"1ay": 56,
|
| 2525 |
+
"tram": 3512,
|
| 2526 |
+
"1bp": 57,
|
| 2527 |
+
"victoria": 3668,
|
| 2528 |
+
"97": 235,
|
| 2529 |
+
"98": 236,
|
| 2530 |
+
"x41": 3844,
|
| 2531 |
+
"x43": 3845,
|
| 2532 |
+
"shudehill": 3120,
|
| 2533 |
+
"1bt": 58,
|
| 2534 |
+
"double": 1196,
|
| 2535 |
+
"sided": 3126,
|
| 2536 |
+
"baseless": 517,
|
| 2537 |
+
"sy": 3358,
|
| 2538 |
+
"clever": 831,
|
| 2539 |
+
"army": 412,
|
| 2540 |
+
"premeditated": 2667,
|
| 2541 |
+
"mental": 2194,
|
| 2542 |
+
"forcibly": 1485,
|
| 2543 |
+
"medicated": 2175,
|
| 2544 |
+
"priory": 2693,
|
| 2545 |
+
"kidnapping": 1920,
|
| 2546 |
+
"incorrect": 1777,
|
| 2547 |
+
"danger": 1038,
|
| 2548 |
+
"criteria": 1005,
|
| 2549 |
+
"required": 2916,
|
| 2550 |
+
"justin": 1909,
|
| 2551 |
+
"bieber": 559,
|
| 2552 |
+
"wife": 3784,
|
| 2553 |
+
"hailey": 1627,
|
| 2554 |
+
"nasal": 2295,
|
| 2555 |
+
"flu": 1468,
|
| 2556 |
+
"spray": 3242,
|
| 2557 |
+
"secondary": 3042,
|
| 2558 |
+
"students": 3307,
|
| 2559 |
+
"2xa5": 117,
|
| 2560 |
+
"pupils": 2767,
|
| 2561 |
+
"offered": 2383,
|
| 2562 |
+
"fluenz": 1469,
|
| 2563 |
+
"influenza": 1792,
|
| 2564 |
+
"hand": 1633,
|
| 2565 |
+
"aimed": 330,
|
| 2566 |
+
"primary": 2686,
|
| 2567 |
+
"a5": 249,
|
| 2568 |
+
"size": 3151,
|
| 2569 |
+
"twice": 3551,
|
| 2570 |
+
"a0": 243,
|
| 2571 |
+
"metre": 2206,
|
| 2572 |
+
"4x8": 165,
|
| 2573 |
+
"32": 125,
|
| 2574 |
+
"prints": 2692,
|
| 2575 |
+
"finish": 1451,
|
| 2576 |
+
"flyer": 1471,
|
| 2577 |
+
"cathriona": 743,
|
| 2578 |
+
"philip": 2556,
|
| 2579 |
+
"putting": 2782,
|
| 2580 |
+
"analysts": 365,
|
| 2581 |
+
"hard": 1643,
|
| 2582 |
+
"graft": 1599,
|
| 2583 |
+
"omar": 2404,
|
| 2584 |
+
"pfizer": 2548,
|
| 2585 |
+
"excruciating": 1343,
|
| 2586 |
+
"pain": 2468,
|
| 2587 |
+
"difficulty": 1139,
|
| 2588 |
+
"bleeding": 587,
|
| 2589 |
+
"toe": 3478,
|
| 2590 |
+
"perfectly": 2532,
|
| 2591 |
+
"speaks": 3225,
|
| 2592 |
+
"07": 8,
|
| 2593 |
+
"medicine": 2177,
|
| 2594 |
+
"medication": 2176,
|
| 2595 |
+
"prove": 2749,
|
| 2596 |
+
"suffered": 3324,
|
| 2597 |
+
"knees": 1932,
|
| 2598 |
+
"damaged": 1032,
|
| 2599 |
+
"jacket": 1872,
|
| 2600 |
+
"toes": 3479,
|
| 2601 |
+
"crowd": 1010,
|
| 2602 |
+
"moments": 2254,
|
| 2603 |
+
"ripped": 2957,
|
| 2604 |
+
"disused": 1174,
|
| 2605 |
+
"deliberate": 1090,
|
| 2606 |
+
"attempt": 451,
|
| 2607 |
+
"provoke": 2756,
|
| 2608 |
+
"harrass": 1647,
|
| 2609 |
+
"humble": 1729,
|
| 2610 |
+
"pie": 2572,
|
| 2611 |
+
"stories": 3291,
|
| 2612 |
+
"advantage": 307,
|
| 2613 |
+
"method": 2205,
|
| 2614 |
+
"a2": 244,
|
| 2615 |
+
"window": 3792,
|
| 2616 |
+
"single": 3140,
|
| 2617 |
+
"whereas": 3773,
|
| 2618 |
+
"32p": 128,
|
| 2619 |
+
"a3": 245,
|
| 2620 |
+
"laminator": 1948,
|
| 2621 |
+
"stick": 3275,
|
| 2622 |
+
"former": 1495,
|
| 2623 |
+
"utd": 3627,
|
| 2624 |
+
"goalkeeper": 1585,
|
| 2625 |
+
"trophies": 3534,
|
| 2626 |
+
"intensive": 1828,
|
| 2627 |
+
"52": 172,
|
| 2628 |
+
"reminder": 2893,
|
| 2629 |
+
"fighting": 1434,
|
| 2630 |
+
"genocide": 1563,
|
| 2631 |
+
"biologicial": 569,
|
| 2632 |
+
"weapon": 3739,
|
| 2633 |
+
"massively": 2155,
|
| 2634 |
+
"famous": 1403,
|
| 2635 |
+
"reports": 2912,
|
| 2636 |
+
"blackout": 581,
|
| 2637 |
+
"fact": 1387,
|
| 2638 |
+
"incessantly": 1768,
|
| 2639 |
+
"pushed": 2777,
|
| 2640 |
+
"silent": 3132,
|
| 2641 |
+
"tweet": 3550,
|
| 2642 |
+
"01": 2,
|
| 2643 |
+
"06": 7,
|
| 2644 |
+
"live": 2033,
|
| 2645 |
+
"redo": 2855,
|
| 2646 |
+
"vs": 3697,
|
| 2647 |
+
"unused": 3597,
|
| 2648 |
+
"pages": 2466,
|
| 2649 |
+
"ones": 2407,
|
| 2650 |
+
"60x60cm": 190,
|
| 2651 |
+
"waterproofing": 3735,
|
| 2652 |
+
"laminate": 1945,
|
| 2653 |
+
"finished": 1452,
|
| 2654 |
+
"edges": 1245,
|
| 2655 |
+
"guillotine": 1624,
|
| 2656 |
+
"outer": 2446,
|
| 2657 |
+
"scrap": 3034,
|
| 2658 |
+
"expose": 1369,
|
| 2659 |
+
"prittstick": 2695,
|
| 2660 |
+
"accurately": 270,
|
| 2661 |
+
"corners": 953,
|
| 2662 |
+
"pva": 2783,
|
| 2663 |
+
"glue": 1579,
|
| 2664 |
+
"smoothed": 3180,
|
| 2665 |
+
"debit": 1065,
|
| 2666 |
+
"apply": 395,
|
| 2667 |
+
"corner": 952,
|
| 2668 |
+
"diagonally": 1130,
|
| 2669 |
+
"rather": 2822,
|
| 2670 |
+
"unroll": 3595,
|
| 2671 |
+
"vertically": 3658,
|
| 2672 |
+
"sadiq": 2995,
|
| 2673 |
+
"khan": 1917,
|
| 2674 |
+
"51": 171,
|
| 2675 |
+
"mayor": 2164,
|
| 2676 |
+
"attack": 449,
|
| 2677 |
+
"booster": 609,
|
| 2678 |
+
"stayed": 3267,
|
| 2679 |
+
"nicola": 2330,
|
| 2680 |
+
"bravely": 629,
|
| 2681 |
+
"hundred": 1731,
|
| 2682 |
+
"within": 3801,
|
| 2683 |
+
"earshot": 1231,
|
| 2684 |
+
"sitting": 3147,
|
| 2685 |
+
"grass": 1604,
|
| 2686 |
+
"jabs": 1871,
|
| 2687 |
+
"az": 491,
|
| 2688 |
+
"blood": 593,
|
| 2689 |
+
"clots": 842,
|
| 2690 |
+
"growth": 1617,
|
| 2691 |
+
"stabbing": 3247,
|
| 2692 |
+
"chest": 795,
|
| 2693 |
+
"muscle": 2286,
|
| 2694 |
+
"spasms": 3221,
|
| 2695 |
+
"pneumonia": 2609,
|
| 2696 |
+
"persistent": 2540,
|
| 2697 |
+
"cough": 966,
|
| 2698 |
+
"bad": 496,
|
| 2699 |
+
"sleeping": 3168,
|
| 2700 |
+
"memory": 2190,
|
| 2701 |
+
"fired": 1455,
|
| 2702 |
+
"ill": 1751,
|
| 2703 |
+
"sell": 3058,
|
| 2704 |
+
"description": 1107,
|
| 2705 |
+
"substack": 3316,
|
| 2706 |
+
"discussing": 1158,
|
| 2707 |
+
"astra": 443,
|
| 2708 |
+
"zeneca": 3860,
|
| 2709 |
+
"symptoms": 3360,
|
| 2710 |
+
"clot": 840,
|
| 2711 |
+
"lung": 2083,
|
| 2712 |
+
"shown": 3116,
|
| 2713 |
+
"ct": 1016,
|
| 2714 |
+
"cleared": 828,
|
| 2715 |
+
"thinners": 3439,
|
| 2716 |
+
"appenditure": 391,
|
| 2717 |
+
"chamber": 775,
|
| 2718 |
+
"benign": 549,
|
| 2719 |
+
"ultrasound": 3562,
|
| 2720 |
+
"causes": 748,
|
| 2721 |
+
"serious": 3069,
|
| 2722 |
+
"trouble": 3535,
|
| 2723 |
+
"sleep": 3167,
|
| 2724 |
+
"wakes": 3706,
|
| 2725 |
+
"coughing": 967,
|
| 2726 |
+
"gasping": 1552,
|
| 2727 |
+
"breathe": 637,
|
| 2728 |
+
"ongoing": 2409,
|
| 2729 |
+
"often": 2392,
|
| 2730 |
+
"drops": 1218,
|
| 2731 |
+
"body": 601,
|
| 2732 |
+
"constantly": 921,
|
| 2733 |
+
"morphine": 2266,
|
| 2734 |
+
"legs": 1992,
|
| 2735 |
+
"wearing": 3742,
|
| 2736 |
+
"tights": 3461,
|
| 2737 |
+
"crawling": 991,
|
| 2738 |
+
"sensation": 3063,
|
| 2739 |
+
"skin": 3161,
|
| 2740 |
+
"red": 2854,
|
| 2741 |
+
"ward": 3719,
|
| 2742 |
+
"recovered": 2851,
|
| 2743 |
+
"forgetting": 1492,
|
| 2744 |
+
"flight": 1463,
|
| 2745 |
+
"stairs": 3250,
|
| 2746 |
+
"breath": 636,
|
| 2747 |
+
"tight": 3460,
|
| 2748 |
+
"chested": 796,
|
| 2749 |
+
"sometimes": 3203,
|
| 2750 |
+
"choke": 807,
|
| 2751 |
+
"vomit": 3694,
|
| 2752 |
+
"bed": 534,
|
| 2753 |
+
"potential": 2653,
|
| 2754 |
+
"effects": 1257,
|
| 2755 |
+
"consultants": 924,
|
| 2756 |
+
"cause": 746,
|
| 2757 |
+
"doctor": 1181,
|
| 2758 |
+
"mentioned": 2197,
|
| 2759 |
+
"anything": 381,
|
| 2760 |
+
"allergic": 344,
|
| 2761 |
+
"chocolate": 805,
|
| 2762 |
+
"insomnia": 1818,
|
| 2763 |
+
"sickness": 3124,
|
| 2764 |
+
"blame": 583,
|
| 2765 |
+
"tests": 3419,
|
| 2766 |
+
"tested": 3417,
|
| 2767 |
+
"negative": 2310,
|
| 2768 |
+
"diagnosis": 1129,
|
| 2769 |
+
"smoker": 3179,
|
| 2770 |
+
"fit": 1457,
|
| 2771 |
+
"ecg": 1240,
|
| 2772 |
+
"flow": 1466,
|
| 2773 |
+
"test": 3416,
|
| 2774 |
+
"menopause": 2193,
|
| 2775 |
+
"azithromycin": 492,
|
| 2776 |
+
"antibiotic": 377,
|
| 2777 |
+
"fostair": 1501,
|
| 2778 |
+
"inhaler": 1799,
|
| 2779 |
+
"steroid": 3273,
|
| 2780 |
+
"hormone": 1706,
|
| 2781 |
+
"asthma": 441,
|
| 2782 |
+
"neither": 2312,
|
| 2783 |
+
"helped": 1664,
|
| 2784 |
+
"gp": 1596,
|
| 2785 |
+
"referral": 2860,
|
| 2786 |
+
"neurologist": 2318,
|
| 2787 |
+
"neurological": 2317,
|
| 2788 |
+
"recruitment": 2853,
|
| 2789 |
+
"consultant": 923,
|
| 2790 |
+
"daughters": 1050,
|
| 2791 |
+
"grandad": 1600,
|
| 2792 |
+
"benefits": 548,
|
| 2793 |
+
"financially": 1448,
|
| 2794 |
+
"struggling": 3304,
|
| 2795 |
+
"grilled": 1608,
|
| 2796 |
+
"whether": 3774,
|
| 2797 |
+
"occured": 2375,
|
| 2798 |
+
"100": 14,
|
| 2799 |
+
"certain": 766,
|
| 2800 |
+
"afterwards": 319,
|
| 2801 |
+
"football": 1483,
|
| 2802 |
+
"metro": 2207,
|
| 2803 |
+
"newspaper": 2324,
|
| 2804 |
+
"believe": 542,
|
| 2805 |
+
"paragraph": 2474,
|
| 2806 |
+
"astonished": 442,
|
| 2807 |
+
"patients": 2500,
|
| 2808 |
+
"mild": 2222,
|
| 2809 |
+
"severe": 3083,
|
| 2810 |
+
"mhra": 2209,
|
| 2811 |
+
"reporting": 2911,
|
| 2812 |
+
"period": 2534,
|
| 2813 |
+
"444": 150,
|
| 2814 |
+
"reported": 2910,
|
| 2815 |
+
"adverse": 308,
|
| 2816 |
+
"reactions": 2827,
|
| 2817 |
+
"varying": 3644,
|
| 2818 |
+
"severity": 3084,
|
| 2819 |
+
"debate": 1063,
|
| 2820 |
+
"fpo": 1511,
|
| 2821 |
+
"biggest": 562,
|
| 2822 |
+
"austria": 468,
|
| 2823 |
+
"susanne": 3351,
|
| 2824 |
+
"furst": 1540,
|
| 2825 |
+
"grills": 1610,
|
| 2826 |
+
"legacy": 1987,
|
| 2827 |
+
"politicians": 2629,
|
| 2828 |
+
"lockdowns": 2049,
|
| 2829 |
+
"mask": 2150,
|
| 2830 |
+
"mandates": 2132,
|
| 2831 |
+
"censorship": 759,
|
| 2832 |
+
"millions": 2226,
|
| 2833 |
+
"wasted": 3731,
|
| 2834 |
+
"procurement": 2710,
|
| 2835 |
+
"supposed": 3344,
|
| 2836 |
+
"piles": 2578,
|
| 2837 |
+
"bodies": 600,
|
| 2838 |
+
"linz": 2021,
|
| 2839 |
+
"upper": 3609,
|
| 2840 |
+
"fabrication": 1382,
|
| 2841 |
+
"begin": 536,
|
| 2842 |
+
"ad": 286,
|
| 2843 |
+
"blank": 584,
|
| 2844 |
+
"2x4": 116,
|
| 2845 |
+
"sticker": 3276,
|
| 2846 |
+
"210": 81,
|
| 2847 |
+
"297": 105,
|
| 2848 |
+
"mm": 2244,
|
| 2849 |
+
"landscape": 1954,
|
| 2850 |
+
"orientation": 2440,
|
| 2851 |
+
"measurements": 2173,
|
| 2852 |
+
"margins": 2143,
|
| 2853 |
+
"margin": 2142,
|
| 2854 |
+
"height": 1661,
|
| 2855 |
+
"width": 3783,
|
| 2856 |
+
"67": 196,
|
| 2857 |
+
"middle": 2216,
|
| 2858 |
+
"gap": 1548,
|
| 2859 |
+
"created": 993,
|
| 2860 |
+
"reduced": 2856,
|
| 2861 |
+
"differently": 1137,
|
| 2862 |
+
"adjust": 295,
|
| 2863 |
+
"dimensions": 1141,
|
| 2864 |
+
"overlap": 2455,
|
| 2865 |
+
"uncheck": 3568,
|
| 2866 |
+
"scaling": 3018,
|
| 2867 |
+
"shrink": 3119,
|
| 2868 |
+
"printable": 2688,
|
| 2869 |
+
"branding": 627,
|
| 2870 |
+
"laminated": 1946,
|
| 2871 |
+
"hung": 1733,
|
| 2872 |
+
"sticks": 3278,
|
| 2873 |
+
"develop": 1125,
|
| 2874 |
+
"die": 1133,
|
| 2875 |
+
"images": 1756,
|
| 2876 |
+
"zip": 3862,
|
| 2877 |
+
"cropped": 1008,
|
| 2878 |
+
"makes": 2122,
|
| 2879 |
+
"existing": 1353,
|
| 2880 |
+
"templates": 3403,
|
| 2881 |
+
"worry": 3828,
|
| 2882 |
+
"aspect": 433,
|
| 2883 |
+
"ratio": 2823,
|
| 2884 |
+
"portrait": 2639,
|
| 2885 |
+
"horizontal": 1705,
|
| 2886 |
+
"vertical": 3657,
|
| 2887 |
+
"paste": 2495,
|
| 2888 |
+
"comments": 873,
|
| 2889 |
+
"ink": 1811,
|
| 2890 |
+
"fill": 1440,
|
| 2891 |
+
"promote": 2729,
|
| 2892 |
+
"princess": 2687,
|
| 2893 |
+
"bajrakitiyabha": 502,
|
| 2894 |
+
"thailand": 3423,
|
| 2895 |
+
"eldest": 1264,
|
| 2896 |
+
"daughter": 1049,
|
| 2897 |
+
"king": 1929,
|
| 2898 |
+
"vajiralongkorn": 3635,
|
| 2899 |
+
"coma": 864,
|
| 2900 |
+
"fail": 1390,
|
| 2901 |
+
"thai": 3422,
|
| 2902 |
+
"german": 1565,
|
| 2903 |
+
"microbiologist": 2212,
|
| 2904 |
+
"prof": 2718,
|
| 2905 |
+
"sucharit": 3320,
|
| 2906 |
+
"bhakdi": 557,
|
| 2907 |
+
"advisors": 313,
|
| 2908 |
+
"confirms": 903,
|
| 2909 |
+
"citizen": 817,
|
| 2910 |
+
"journalist": 1897,
|
| 2911 |
+
"moira": 2252,
|
| 2912 |
+
"brown": 658,
|
| 2913 |
+
"nails": 2290,
|
| 2914 |
+
"lackey": 1941,
|
| 2915 |
+
"devi": 1128,
|
| 2916 |
+
"shilldhar": 3098,
|
| 2917 |
+
"wall": 3714,
|
| 2918 |
+
"edinburgh": 1246,
|
| 2919 |
+
"finances": 1446,
|
| 2920 |
+
"global": 1576,
|
| 2921 |
+
"funded": 1536,
|
| 2922 |
+
"scottish": 3033,
|
| 2923 |
+
"pharma": 2550,
|
| 2924 |
+
"pays": 2516,
|
| 2925 |
+
"salary": 3001,
|
| 2926 |
+
"wellcome": 3762,
|
| 2927 |
+
"trust": 3537,
|
| 2928 |
+
"funds": 1538,
|
| 2929 |
+
"pack": 2463,
|
| 2930 |
+
"featuring": 1415,
|
| 2931 |
+
"label": 1939,
|
| 2932 |
+
"normal": 2341,
|
| 2933 |
+
"particulary": 2485,
|
| 2934 |
+
"resolution": 2926,
|
| 2935 |
+
"wendy": 3764,
|
| 2936 |
+
"bob": 598,
|
| 2937 |
+
"moran": 2264,
|
| 2938 |
+
"queue": 2795,
|
| 2939 |
+
"57": 180,
|
| 2940 |
+
"warns": 3726,
|
| 2941 |
+
"myocarditis": 2288,
|
| 2942 |
+
"pericarditis": 2533,
|
| 2943 |
+
"36": 134,
|
| 2944 |
+
"points": 2615,
|
| 2945 |
+
"dismiss": 1162,
|
| 2946 |
+
"personal": 2543,
|
| 2947 |
+
"anymore": 380,
|
| 2948 |
+
"none": 2340,
|
| 2949 |
+
"jcvi": 1881,
|
| 2950 |
+
"roll": 2970,
|
| 2951 |
+
"victory": 3669,
|
| 2952 |
+
"dedicate": 1077,
|
| 2953 |
+
"tribute": 3526,
|
| 2954 |
+
"lovelyist": 2071,
|
| 2955 |
+
"fought": 1503,
|
| 2956 |
+
"went": 3765,
|
| 2957 |
+
"centers": 761,
|
| 2958 |
+
"persuade": 2545,
|
| 2959 |
+
"impossible": 1765,
|
| 2960 |
+
"lives": 2038,
|
| 2961 |
+
"efforts": 1258,
|
| 2962 |
+
"announcement": 374,
|
| 2963 |
+
"jabbing": 1869,
|
| 2964 |
+
"rose": 2976,
|
| 2965 |
+
"reusing": 2949,
|
| 2966 |
+
"longer": 2057,
|
| 2967 |
+
"relevant": 2885,
|
| 2968 |
+
"victim": 3666,
|
| 2969 |
+
"rainproofing": 2809,
|
| 2970 |
+
"stuck": 3305,
|
| 2971 |
+
"sticky": 3279,
|
| 2972 |
+
"tape": 3378,
|
| 2973 |
+
"compared": 885,
|
| 2974 |
+
"laminates": 1947,
|
| 2975 |
+
"compiled": 888,
|
| 2976 |
+
"versions": 3656,
|
| 2977 |
+
"2x2": 114,
|
| 2978 |
+
"2x3": 115,
|
| 2979 |
+
"ebay": 1238,
|
| 2980 |
+
"12p": 28,
|
| 2981 |
+
"sheet": 3092,
|
| 2982 |
+
"cheaper": 789,
|
| 2983 |
+
"wish": 3799,
|
| 2984 |
+
"mp": 2276,
|
| 2985 |
+
"andrew": 366,
|
| 2986 |
+
"bridgen": 640,
|
| 2987 |
+
"2020": 73,
|
| 2988 |
+
"unequivocally": 3572,
|
| 2989 |
+
"vaccines": 3633,
|
| 2990 |
+
"extension": 1375,
|
| 2991 |
+
"silenced": 3130,
|
| 2992 |
+
"murder": 2281,
|
| 2993 |
+
"stats": 3264,
|
| 2994 |
+
"accountable": 269,
|
| 2995 |
+
"6pm": 201,
|
| 2996 |
+
"college": 860,
|
| 2997 |
+
"nursing": 2362,
|
| 2998 |
+
"employed": 1279,
|
| 2999 |
+
"hospitals": 1712,
|
| 3000 |
+
"holds": 1690,
|
| 3001 |
+
"barred": 514,
|
| 3002 |
+
"jubilee": 1899,
|
| 3003 |
+
"wing": 3795,
|
| 3004 |
+
"vent": 3652,
|
| 3005 |
+
"infirmary": 1791,
|
| 3006 |
+
"calverley": 703,
|
| 3007 |
+
"ls1": 2076,
|
| 3008 |
+
"3ex": 142,
|
| 3009 |
+
"malpractice": 2126,
|
| 3010 |
+
"gbh": 1558,
|
| 3011 |
+
"crimes": 1002,
|
| 3012 |
+
"humanity": 1728,
|
| 3013 |
+
"injected": 1802,
|
| 3014 |
+
"nurses": 2361,
|
| 3015 |
+
"feelings": 1422,
|
| 3016 |
+
"murdered": 2282,
|
| 3017 |
+
"experimental": 1360,
|
| 3018 |
+
"telling": 3400,
|
| 3019 |
+
"wake": 3704,
|
| 3020 |
+
"notch": 2346,
|
| 3021 |
+
"softly": 3193,
|
| 3022 |
+
"plus": 2607,
|
| 3023 |
+
"educating": 1253,
|
| 3024 |
+
"magnet": 2114,
|
| 3025 |
+
"ingredients": 1798,
|
| 3026 |
+
"irrefutable": 1856,
|
| 3027 |
+
"undeniable": 3569,
|
| 3028 |
+
"pathetic": 2497,
|
| 3029 |
+
"educate": 1251,
|
| 3030 |
+
"detox": 1123,
|
| 3031 |
+
"vitamins": 3686,
|
| 3032 |
+
"minerals": 2230,
|
| 3033 |
+
"products": 2717,
|
| 3034 |
+
"supplement": 3340,
|
| 3035 |
+
"supplements": 3341,
|
| 3036 |
+
"interfere": 1836,
|
| 3037 |
+
"pregnant": 2665,
|
| 3038 |
+
"independent": 1784,
|
| 3039 |
+
"retailer": 2943,
|
| 3040 |
+
"chain": 771,
|
| 3041 |
+
"additives": 289,
|
| 3042 |
+
"fillers": 1441,
|
| 3043 |
+
"creating": 994,
|
| 3044 |
+
"ross": 2977,
|
| 3045 |
+
"aked": 333,
|
| 3046 |
+
"m12": 2089,
|
| 3047 |
+
"4an": 159,
|
| 3048 |
+
"disabled": 1149,
|
| 3049 |
+
"fyi": 1542,
|
| 3050 |
+
"piccadily": 2567,
|
| 3051 |
+
"173": 42,
|
| 3052 |
+
"marshall": 2148,
|
| 3053 |
+
"6bw": 198,
|
| 3054 |
+
"apollo": 385,
|
| 3055 |
+
"aaron": 253,
|
| 3056 |
+
"butler": 683,
|
| 3057 |
+
"continuously": 933,
|
| 3058 |
+
"hoped": 1703,
|
| 3059 |
+
"inquest": 1814,
|
| 3060 |
+
"brothers": 656,
|
| 3061 |
+
"delayed": 1088,
|
| 3062 |
+
"johnson": 1888,
|
| 3063 |
+
"manufactured": 2136,
|
| 3064 |
+
"janssen": 1878,
|
| 3065 |
+
"roy": 2982,
|
| 3066 |
+
"ignoring": 1750,
|
| 3067 |
+
"article": 423,
|
| 3068 |
+
"acknowledge": 272,
|
| 3069 |
+
"mon": 2255,
|
| 3070 |
+
"sheep": 3091,
|
| 3071 |
+
"yesterdays": 3854,
|
| 3072 |
+
"olds": 2402,
|
| 3073 |
+
"reference": 2859,
|
| 3074 |
+
"5222236390": 173,
|
| 3075 |
+
"avon": 480,
|
| 3076 |
+
"somerset": 3201,
|
| 3077 |
+
"harms": 1645,
|
| 3078 |
+
"300": 118,
|
| 3079 |
+
"majority": 2120,
|
| 3080 |
+
"incompetent": 1776,
|
| 3081 |
+
"offences": 2381,
|
| 3082 |
+
"gross": 1612,
|
| 3083 |
+
"negligent": 2311,
|
| 3084 |
+
"manslaughter": 2134,
|
| 3085 |
+
"corporate": 958,
|
| 3086 |
+
"conspiracy": 917,
|
| 3087 |
+
"commit": 875,
|
| 3088 |
+
"unmasked": 3589,
|
| 3089 |
+
"rehearsed": 2876,
|
| 3090 |
+
"dances": 1036,
|
| 3091 |
+
"tiktok": 3462,
|
| 3092 |
+
"worst": 3832,
|
| 3093 |
+
"massive": 2154,
|
| 3094 |
+
"strain": 3294,
|
| 3095 |
+
"entire": 1304,
|
| 3096 |
+
"meanwhile": 2172,
|
| 3097 |
+
"dying": 1227,
|
| 3098 |
+
"deadly": 1058,
|
| 3099 |
+
"remove": 2894,
|
| 3100 |
+
"space": 3216,
|
| 3101 |
+
"manually": 2135,
|
| 3102 |
+
"stockportnhs": 3282,
|
| 3103 |
+
"treehouse": 3523,
|
| 3104 |
+
"9447022392": 232,
|
| 3105 |
+
"95900": 234,
|
| 3106 |
+
"stanley": 3255,
|
| 3107 |
+
"clashing": 825,
|
| 3108 |
+
"8p": 229,
|
| 3109 |
+
"440": 149,
|
| 3110 |
+
"7jb": 218,
|
| 3111 |
+
"killing": 1926,
|
| 3112 |
+
"injuring": 1809,
|
| 3113 |
+
"tbc": 3385,
|
| 3114 |
+
"pushers": 2778,
|
| 3115 |
+
"idea": 1743,
|
| 3116 |
+
"beaten": 530,
|
| 3117 |
+
"trashed": 3519,
|
| 3118 |
+
"pcr": 2517,
|
| 3119 |
+
"requirements": 2917,
|
| 3120 |
+
"tossed": 3492,
|
| 3121 |
+
"trace": 3503,
|
| 3122 |
+
"defeated": 1080,
|
| 3123 |
+
"passports": 2493,
|
| 3124 |
+
"binned": 566,
|
| 3125 |
+
"bonfire": 605,
|
| 3126 |
+
"120": 27,
|
| 3127 |
+
"payouts": 2514,
|
| 3128 |
+
"withdrawn": 3800,
|
| 3129 |
+
"repeal": 2900,
|
| 3130 |
+
"coronavirus": 955,
|
| 3131 |
+
"pathway": 2498,
|
| 3132 |
+
"prosecutions": 2736,
|
| 3133 |
+
"jail": 1874,
|
| 3134 |
+
"perpetrators": 2539,
|
| 3135 |
+
"overhaul": 2454,
|
| 3136 |
+
"attached": 448,
|
| 3137 |
+
"ql": 2784,
|
| 3138 |
+
"54mm": 176,
|
| 3139 |
+
"dk": 1178,
|
| 3140 |
+
"55224": 178,
|
| 3141 |
+
"updating": 3605,
|
| 3142 |
+
"progress": 2722,
|
| 3143 |
+
"create": 992,
|
| 3144 |
+
"sizes": 3152,
|
| 3145 |
+
"comment": 872,
|
| 3146 |
+
"commemorate": 871,
|
| 3147 |
+
"holders": 1688,
|
| 3148 |
+
"flowers": 1467,
|
| 3149 |
+
"dunfermline": 1224,
|
| 3150 |
+
"denise": 1099,
|
| 3151 |
+
"bennett": 550,
|
| 3152 |
+
"jabinjuriesglobal": 1870,
|
| 3153 |
+
"exhibit": 1350,
|
| 3154 |
+
"injectable": 1801,
|
| 3155 |
+
"experiments": 1362,
|
| 3156 |
+
"scotland": 3032,
|
| 3157 |
+
"story": 3292,
|
| 3158 |
+
"jab_injuries_scotland": 1866,
|
| 3159 |
+
"protonmail": 2747,
|
| 3160 |
+
"indvidious": 1789,
|
| 3161 |
+
"proxy": 2757,
|
| 3162 |
+
"google": 1589,
|
| 3163 |
+
"fallowfield": 1399,
|
| 3164 |
+
"shutting": 3122,
|
| 3165 |
+
"bodey": 599,
|
| 3166 |
+
"incessant": 1767,
|
| 3167 |
+
"pressure": 2675,
|
| 3168 |
+
"summer": 3332,
|
| 3169 |
+
"ruse": 2989,
|
| 3170 |
+
"entice": 1303,
|
| 3171 |
+
"balloons": 504,
|
| 3172 |
+
"proving": 2755,
|
| 3173 |
+
"purely": 2771,
|
| 3174 |
+
"attract": 460,
|
| 3175 |
+
"unwary": 3600,
|
| 3176 |
+
"activities": 281,
|
| 3177 |
+
"increasingly": 1780,
|
| 3178 |
+
"desperate": 1113,
|
| 3179 |
+
"fool": 1480,
|
| 3180 |
+
"teddy": 3397,
|
| 3181 |
+
"maybe": 2162,
|
| 3182 |
+
"hurt": 1734,
|
| 3183 |
+
"m14": 2092,
|
| 3184 |
+
"6wp": 204,
|
| 3185 |
+
"midday": 2215,
|
| 3186 |
+
"jabbers": 1868,
|
| 3187 |
+
"calling": 698,
|
| 3188 |
+
"bouncy": 617,
|
| 3189 |
+
"games": 1545,
|
| 3190 |
+
"drag": 1202,
|
| 3191 |
+
"potentially": 2654,
|
| 3192 |
+
"term": 3411,
|
| 3193 |
+
"trick": 3527,
|
| 3194 |
+
"sainsbury": 3000,
|
| 3195 |
+
"extremely": 1379,
|
| 3196 |
+
"short": 3106,
|
| 3197 |
+
"pattie": 2502,
|
| 3198 |
+
"funday": 1534,
|
| 3199 |
+
"cares": 731,
|
| 3200 |
+
"anybody": 379,
|
| 3201 |
+
"snake": 3182,
|
| 3202 |
+
"oils": 2394,
|
| 3203 |
+
"ice": 1739,
|
| 3204 |
+
"propper": 2734,
|
| 3205 |
+
"fu": 1527,
|
| 3206 |
+
"fundays": 1535,
|
| 3207 |
+
"ne": 2302,
|
| 3208 |
+
"utter": 3628,
|
| 3209 |
+
"discrace": 1153,
|
| 3210 |
+
"feeling": 1421,
|
| 3211 |
+
"99": 237,
|
| 3212 |
+
"beryl": 551,
|
| 3213 |
+
"blue": 594,
|
| 3214 |
+
"pilled": 2580,
|
| 3215 |
+
"charter": 785,
|
| 3216 |
+
"93": 231,
|
| 3217 |
+
"bb11": 525,
|
| 3218 |
+
"1py": 63,
|
| 3219 |
+
"sources": 3213,
|
| 3220 |
+
"cutaneous": 1025,
|
| 3221 |
+
"vasculitis": 3645,
|
| 3222 |
+
"journal": 1896,
|
| 3223 |
+
"dermatologic": 1106,
|
| 3224 |
+
"therapy": 3431,
|
| 3225 |
+
"dth": 1222,
|
| 3226 |
+
"15458": 37,
|
| 3227 |
+
"mar": 2139,
|
| 3228 |
+
"male": 2124,
|
| 3229 |
+
"73": 209,
|
| 3230 |
+
"thrombosis": 3453,
|
| 3231 |
+
"necrosis": 2305,
|
| 3232 |
+
"shin": 3099,
|
| 3233 |
+
"dose": 1193,
|
| 3234 |
+
"pmid": 2608,
|
| 3235 |
+
"3418975": 131,
|
| 3236 |
+
"distal": 1170,
|
| 3237 |
+
"vesicles": 3660,
|
| 3238 |
+
"triple": 3532,
|
| 3239 |
+
"leg": 1986,
|
| 3240 |
+
"bruising": 660,
|
| 3241 |
+
"melody": 2185,
|
| 3242 |
+
"obus": 2371,
|
| 3243 |
+
"purca": 2768,
|
| 3244 |
+
"yana": 3848,
|
| 3245 |
+
"neuroscience": 2319,
|
| 3246 |
+
"student": 3306,
|
| 3247 |
+
"burst": 676,
|
| 3248 |
+
"vescicles": 3659,
|
| 3249 |
+
"lip": 2024,
|
| 3250 |
+
"38": 138,
|
| 3251 |
+
"mother": 2269,
|
| 3252 |
+
"21": 80,
|
| 3253 |
+
"rash": 2821,
|
| 3254 |
+
"tingling": 3468,
|
| 3255 |
+
"numbness": 2358,
|
| 3256 |
+
"breakouts": 635,
|
| 3257 |
+
"suffering": 3325,
|
| 3258 |
+
"sores": 3207,
|
| 3259 |
+
"neck": 2304,
|
| 3260 |
+
"shoulder": 3108,
|
| 3261 |
+
"stomach": 3285,
|
| 3262 |
+
"doses": 1194,
|
| 3263 |
+
"varicose": 3642,
|
| 3264 |
+
"ulcers": 3561,
|
| 3265 |
+
"amputated": 364,
|
| 3266 |
+
"extreme": 1378,
|
| 3267 |
+
"gore": 1590,
|
| 3268 |
+
"necrotic": 2306,
|
| 3269 |
+
"graphic": 1603,
|
| 3270 |
+
"imagery": 1755,
|
| 3271 |
+
"showcasing": 3112,
|
| 3272 |
+
"features": 1414,
|
| 3273 |
+
"19": 48,
|
| 3274 |
+
"milder": 2223,
|
| 3275 |
+
"extent": 1376,
|
| 3276 |
+
"worse": 3829,
|
| 3277 |
+
"catriona": 744,
|
| 3278 |
+
"patterson": 2501,
|
| 3279 |
+
"46": 153,
|
| 3280 |
+
"harpurhey": 1646,
|
| 3281 |
+
"lined": 2017,
|
| 3282 |
+
"happening": 1640,
|
| 3283 |
+
"conran": 909,
|
| 3284 |
+
"m9": 2106,
|
| 3285 |
+
"4da": 161,
|
| 3286 |
+
"81": 225,
|
| 3287 |
+
"112": 23,
|
| 3288 |
+
"118": 24,
|
| 3289 |
+
"163": 39,
|
| 3290 |
+
"picc": 2566,
|
| 3291 |
+
"gdns": 1559,
|
| 3292 |
+
"mayes": 2163,
|
| 3293 |
+
"mins": 2232,
|
| 3294 |
+
"stations": 3263,
|
| 3295 |
+
"damon": 1034,
|
| 3296 |
+
"organizing": 2438,
|
| 3297 |
+
"staying": 3268,
|
| 3298 |
+
"mcr": 2166,
|
| 3299 |
+
"statement": 3261,
|
| 3300 |
+
"injectors": 1806,
|
| 3301 |
+
"legally": 1989,
|
| 3302 |
+
"gps": 1597,
|
| 3303 |
+
"pharmacists": 2553,
|
| 3304 |
+
"penalty": 2526,
|
| 3305 |
+
"1965": 51,
|
| 3306 |
+
"abolished": 255,
|
| 3307 |
+
"exception": 1337,
|
| 3308 |
+
"treaty": 3522,
|
| 3309 |
+
"187": 45,
|
| 3310 |
+
"protocol": 2746,
|
| 3311 |
+
"concerning": 897,
|
| 3312 |
+
"abolition": 256,
|
| 3313 |
+
"acts": 283,
|
| 3314 |
+
"strong": 3302,
|
| 3315 |
+
"weapons": 3740,
|
| 3316 |
+
"geneva": 1562,
|
| 3317 |
+
"wilful": 3786,
|
| 3318 |
+
"hence": 1669,
|
| 3319 |
+
"warfare": 3721,
|
| 3320 |
+
"anna": 372,
|
| 3321 |
+
"de": 1056,
|
| 3322 |
+
"buisseret": 670,
|
| 3323 |
+
"version": 3655,
|
| 3324 |
+
"tpl": 3501,
|
| 3325 |
+
"files": 1439,
|
| 3326 |
+
"tinyurl": 3469,
|
| 3327 |
+
"approved": 400,
|
| 3328 |
+
"affiliated": 316,
|
| 3329 |
+
"awarness": 489,
|
| 3330 |
+
"mainly": 2117,
|
| 3331 |
+
"pills": 2581,
|
| 3332 |
+
"partial": 2481,
|
| 3333 |
+
"protests": 2745,
|
| 3334 |
+
"anwsers": 378,
|
| 3335 |
+
"handed": 1634,
|
| 3336 |
+
"identical": 1745,
|
| 3337 |
+
"pill": 2579,
|
| 3338 |
+
"cheatsheet": 790,
|
| 3339 |
+
"27k": 99,
|
| 3340 |
+
"views": 3675,
|
| 3341 |
+
"brush": 662,
|
| 3342 |
+
"figures": 1437,
|
| 3343 |
+
"modified": 2249,
|
| 3344 |
+
"sassy": 3009,
|
| 3345 |
+
"sarcastic": 3008,
|
| 3346 |
+
"dare": 1043,
|
| 3347 |
+
"insult": 1826,
|
| 3348 |
+
"sacrifice": 2994,
|
| 3349 |
+
"inquistive": 1815,
|
| 3350 |
+
"uncensored": 3566,
|
| 3351 |
+
"articles": 424,
|
| 3352 |
+
"turns": 3547,
|
| 3353 |
+
"warned": 3724,
|
| 3354 |
+
"fighters": 1433,
|
| 3355 |
+
"happened": 1639,
|
| 3356 |
+
"prevented": 2681,
|
| 3357 |
+
"probably": 2700,
|
| 3358 |
+
"crying": 1015,
|
| 3359 |
+
"essentially": 1313,
|
| 3360 |
+
"knows": 1937,
|
| 3361 |
+
"calls": 700,
|
| 3362 |
+
"recognize": 2846,
|
| 3363 |
+
"write": 3836,
|
| 3364 |
+
"names": 2293,
|
| 3365 |
+
"prefer": 2663,
|
| 3366 |
+
"identified": 1746,
|
| 3367 |
+
"filter": 1443,
|
| 3368 |
+
"results": 2942,
|
| 3369 |
+
"select": 3056,
|
| 3370 |
+
"filters": 1444,
|
| 3371 |
+
"ccg": 754,
|
| 3372 |
+
"poisoning": 2618,
|
| 3373 |
+
"keywords": 1916,
|
| 3374 |
+
"cambridgeshire": 705,
|
| 3375 |
+
"censored": 758,
|
| 3376 |
+
"rubbing": 2984,
|
| 3377 |
+
"clinical": 835,
|
| 3378 |
+
"instead": 1823,
|
| 3379 |
+
"experimented": 1361,
|
| 3380 |
+
"maiming": 2115,
|
| 3381 |
+
"explain": 1364,
|
| 3382 |
+
"adults": 305,
|
| 3383 |
+
"2030": 78,
|
| 3384 |
+
"paid": 2467,
|
| 3385 |
+
"58": 181,
|
| 3386 |
+
"sundays": 3335,
|
| 3387 |
+
"clinics": 836,
|
| 3388 |
+
"tens": 3408,
|
| 3389 |
+
"sam": 3005,
|
| 3390 |
+
"suspended": 3352,
|
| 3391 |
+
"dragged": 1203,
|
| 3392 |
+
"similarly": 3134,
|
| 3393 |
+
"mohammad": 2251,
|
| 3394 |
+
"adil": 293,
|
| 3395 |
+
"surgeon": 3348,
|
| 3396 |
+
"questioning": 2793,
|
| 3397 |
+
"narrative": 2294,
|
| 3398 |
+
"mortgages": 2267,
|
| 3399 |
+
"families": 1401,
|
| 3400 |
+
"cars": 736,
|
| 3401 |
+
"loans": 2042,
|
| 3402 |
+
"career": 730,
|
| 3403 |
+
"researchers": 2922,
|
| 3404 |
+
"bankruptcy": 509,
|
| 3405 |
+
"determine": 1121,
|
| 3406 |
+
"waiting": 3703,
|
| 3407 |
+
"declare": 1076,
|
| 3408 |
+
"safe": 2996,
|
| 3409 |
+
"testing": 3418,
|
| 3410 |
+
"invested": 1845,
|
| 3411 |
+
"hundreds": 1732,
|
| 3412 |
+
"billions": 565,
|
| 3413 |
+
"pounds": 2656,
|
| 3414 |
+
"mistake": 2243,
|
| 3415 |
+
"admit": 301,
|
| 3416 |
+
"liable": 2000,
|
| 3417 |
+
"trillions": 3529,
|
| 3418 |
+
"relative": 2880,
|
| 3419 |
+
"wards": 3720,
|
| 3420 |
+
"drugs": 1219,
|
| 3421 |
+
"remdesivir": 2890,
|
| 3422 |
+
"overused": 2458,
|
| 3423 |
+
"respiratory": 2932,
|
| 3424 |
+
"depressants": 1103,
|
| 3425 |
+
"ie": 1748,
|
| 3426 |
+
"respiration": 2931,
|
| 3427 |
+
"breathing": 638,
|
| 3428 |
+
"worsen": 3830,
|
| 3429 |
+
"problem": 2701,
|
| 3430 |
+
"sedative": 3046,
|
| 3431 |
+
"painkiller": 2469,
|
| 3432 |
+
"somewhat": 3204,
|
| 3433 |
+
"kill": 1924,
|
| 3434 |
+
"official": 2390,
|
| 3435 |
+
"mg": 2208,
|
| 3436 |
+
"upped": 3608,
|
| 3437 |
+
"10mg": 19,
|
| 3438 |
+
"targeted": 3380,
|
| 3439 |
+
"kidney": 1921,
|
| 3440 |
+
"organ": 2434,
|
| 3441 |
+
"processed": 2707,
|
| 3442 |
+
"kidneys": 1922,
|
| 3443 |
+
"organs": 2439,
|
| 3444 |
+
"lungs": 2084,
|
| 3445 |
+
"fluid": 1470,
|
| 3446 |
+
"hospitalizations": 1711,
|
| 3447 |
+
"ramp": 2814,
|
| 3448 |
+
"fearmongering": 1412,
|
| 3449 |
+
"searching": 3040,
|
| 3450 |
+
"sessions": 3076,
|
| 3451 |
+
"responses": 2936,
|
| 3452 |
+
"suggestions": 3328,
|
| 3453 |
+
"particularly": 2484,
|
| 3454 |
+
"gov": 1592,
|
| 3455 |
+
"vaers": 3634,
|
| 3456 |
+
"eudra": 1318,
|
| 3457 |
+
"eu": 1317,
|
| 3458 |
+
"admitted": 302,
|
| 3459 |
+
"factor": 1388,
|
| 3460 |
+
"actual": 284,
|
| 3461 |
+
"figure": 1436,
|
| 3462 |
+
"likely": 2013,
|
| 3463 |
+
"10x": 22,
|
| 3464 |
+
"parent": 2475,
|
| 3465 |
+
"journals": 1898,
|
| 3466 |
+
"consequences": 911,
|
| 3467 |
+
"eye": 1380,
|
| 3468 |
+
"accord": 266,
|
| 3469 |
+
"coerced": 849,
|
| 3470 |
+
"establishment": 1315,
|
| 3471 |
+
"felicity": 1424,
|
| 3472 |
+
"jackson": 1873,
|
| 3473 |
+
"urmston": 3616,
|
| 3474 |
+
"seizures": 3055,
|
| 3475 |
+
"laundry": 1969,
|
| 3476 |
+
"instagram": 1821,
|
| 3477 |
+
"losing": 2064,
|
| 3478 |
+
"jobs": 1885,
|
| 3479 |
+
"livelihood": 2035,
|
| 3480 |
+
"fine": 1450,
|
| 3481 |
+
"placebos": 2588,
|
| 3482 |
+
"percentage": 2531,
|
| 3483 |
+
"toxic": 3498,
|
| 3484 |
+
"concentrated": 895,
|
| 3485 |
+
"batches": 522,
|
| 3486 |
+
"ek9788": 1261,
|
| 3487 |
+
"batch": 521,
|
| 3488 |
+
"641": 193,
|
| 3489 |
+
"dismissed": 1163,
|
| 3490 |
+
"polio": 2624,
|
| 3491 |
+
"smallpox": 3175,
|
| 3492 |
+
"diphtheria": 1143,
|
| 3493 |
+
"program": 2719,
|
| 3494 |
+
"unvaccinated": 3598,
|
| 3495 |
+
"92": 230,
|
| 3496 |
+
"vaccinated": 3630,
|
| 3497 |
+
"according": 267,
|
| 3498 |
+
"ending": 1286,
|
| 3499 |
+
"bout": 619,
|
| 3500 |
+
"wrongs": 3840,
|
| 3501 |
+
"causing": 749,
|
| 3502 |
+
"spike": 3234,
|
| 3503 |
+
"protein": 2741,
|
| 3504 |
+
"circles": 814,
|
| 3505 |
+
"replicates": 2907,
|
| 3506 |
+
"produces": 2714,
|
| 3507 |
+
"caught": 745,
|
| 3508 |
+
"vessels": 3661,
|
| 3509 |
+
"platelets": 2601,
|
| 3510 |
+
"attach": 447,
|
| 3511 |
+
"blockage": 590,
|
| 3512 |
+
"restrictions": 2940,
|
| 3513 |
+
"ended": 1285,
|
| 3514 |
+
"thermostat": 3433,
|
| 3515 |
+
"choose": 808,
|
| 3516 |
+
"variant": 3639,
|
| 3517 |
+
"boosters": 610,
|
| 3518 |
+
"collected": 858,
|
| 3519 |
+
"brainwashing": 625,
|
| 3520 |
+
"repeated": 2901,
|
| 3521 |
+
"experienced": 1359,
|
| 3522 |
+
"weather": 3743,
|
| 3523 |
+
"venue": 3653,
|
| 3524 |
+
"angel": 369,
|
| 3525 |
+
"inn": 1813,
|
| 3526 |
+
"spinning": 3235,
|
| 3527 |
+
"punk": 2766,
|
| 3528 |
+
"bands": 505,
|
| 3529 |
+
"reckless": 2845,
|
| 3530 |
+
"endangerment": 1284,
|
| 3531 |
+
"publicly": 2763,
|
| 3532 |
+
"screenshots": 3036,
|
| 3533 |
+
"bella": 544,
|
| 3534 |
+
"luca": 2078,
|
| 3535 |
+
"northampton": 2343,
|
| 3536 |
+
"forcing": 1486,
|
| 3537 |
+
"helpless": 1667,
|
| 3538 |
+
"dear": 1060,
|
| 3539 |
+
"lady": 1942,
|
| 3540 |
+
"arms": 411,
|
| 3541 |
+
"drives": 1215,
|
| 3542 |
+
"slaughter": 3165,
|
| 3543 |
+
"tripled": 3533,
|
| 3544 |
+
"shred": 3118,
|
| 3545 |
+
"compassion": 886,
|
| 3546 |
+
"2018": 71,
|
| 3547 |
+
"timestamp": 3466,
|
| 3548 |
+
"wrong": 3839,
|
| 3549 |
+
"discussed": 1157,
|
| 3550 |
+
"protect": 2738,
|
| 3551 |
+
"confidentiality": 900,
|
| 3552 |
+
"propaganda": 2732,
|
| 3553 |
+
"veins": 3651,
|
| 3554 |
+
"promos": 2728,
|
| 3555 |
+
"julian": 1903,
|
| 3556 |
+
"lion": 2022,
|
| 3557 |
+
"aggressive": 324,
|
| 3558 |
+
"defenceless": 1082,
|
| 3559 |
+
"chestergate": 798,
|
| 3560 |
+
"wellington": 3763,
|
| 3561 |
+
"1aa": 54,
|
| 3562 |
+
"dates": 1048,
|
| 3563 |
+
"transport": 3518,
|
| 3564 |
+
"easter": 1235,
|
| 3565 |
+
"holidays": 1693,
|
| 3566 |
+
"preparing": 2669,
|
| 3567 |
+
"syringes": 3362,
|
| 3568 |
+
"vid": 3670,
|
| 3569 |
+
"caution": 750,
|
| 3570 |
+
"postie": 2649,
|
| 3571 |
+
"grilling": 1609,
|
| 3572 |
+
"poisoners": 2617,
|
| 3573 |
+
"drawing": 1204,
|
| 3574 |
+
"crowds": 1011,
|
| 3575 |
+
"mostly": 2268,
|
| 3576 |
+
"39": 139,
|
| 3577 |
+
"intimidation": 1840,
|
| 3578 |
+
"implied": 1762,
|
| 3579 |
+
"loudly": 2069,
|
| 3580 |
+
"implies": 1763,
|
| 3581 |
+
"lie": 2005,
|
| 3582 |
+
"almost": 349,
|
| 3583 |
+
"wellbeing": 3761,
|
| 3584 |
+
"2mw": 110,
|
| 3585 |
+
"highlighting": 1682,
|
| 3586 |
+
"study": 3308,
|
| 3587 |
+
"karlstad": 1911,
|
| 3588 |
+
"et": 1316,
|
| 3589 |
+
"al": 334,
|
| 3590 |
+
"600": 189,
|
| 3591 |
+
"quick": 2797,
|
| 3592 |
+
"highlight": 1681,
|
| 3593 |
+
"australian": 467,
|
| 3594 |
+
"cricketer": 1000,
|
| 3595 |
+
"ryan": 2992,
|
| 3596 |
+
"campbell": 711,
|
| 3597 |
+
"induced": 1787,
|
| 3598 |
+
"ps": 2758,
|
| 3599 |
+
"opening": 2417,
|
| 3600 |
+
"organizations": 2437,
|
| 3601 |
+
"nitter": 2334,
|
| 3602 |
+
"avoids": 479,
|
| 3603 |
+
"linking": 2019,
|
| 3604 |
+
"heatons": 1659,
|
| 3605 |
+
"heaton": 1658,
|
| 3606 |
+
"moor": 2263,
|
| 3607 |
+
"promotional": 2730,
|
| 3608 |
+
"un": 3564,
|
| 3609 |
+
"teamhalo": 3390,
|
| 3610 |
+
"needles": 2308,
|
| 3611 |
+
"mirror": 2237,
|
| 3612 |
+
"ivermectin": 1864,
|
| 3613 |
+
"beginner": 537,
|
| 3614 |
+
"guide": 1622,
|
| 3615 |
+
"nine": 2333,
|
| 3616 |
+
"brief": 643,
|
| 3617 |
+
"killed": 1925,
|
| 3618 |
+
"suspicious": 3353,
|
| 3619 |
+
"circumstances": 815,
|
| 3620 |
+
"pharmacies": 2552,
|
| 3621 |
+
"unfiltered": 3573,
|
| 3622 |
+
"reach": 2826,
|
| 3623 |
+
"murderous": 2283,
|
| 3624 |
+
"tentacles": 3409,
|
| 3625 |
+
"slaughtered": 3166,
|
| 3626 |
+
"4pm": 163,
|
| 3627 |
+
"superhero": 3337,
|
| 3628 |
+
"theme": 3429,
|
| 3629 |
+
"superheroes": 3338,
|
| 3630 |
+
"alone": 350,
|
| 3631 |
+
"costumes": 965,
|
| 3632 |
+
"tivot": 3476,
|
| 3633 |
+
"opposite": 2425,
|
| 3634 |
+
"tesco": 3414,
|
| 3635 |
+
"petrol": 2546,
|
| 3636 |
+
"2bt": 108,
|
| 3637 |
+
"exit": 1355,
|
| 3638 |
+
"underpass": 3570,
|
| 3639 |
+
"enclosed": 1281,
|
| 3640 |
+
"toll": 3484,
|
| 3641 |
+
"basic": 518,
|
| 3642 |
+
"effect": 1256,
|
| 3643 |
+
"variation": 3641,
|
| 3644 |
+
"toxicity": 3499,
|
| 3645 |
+
"graph": 1602,
|
| 3646 |
+
"adjusted": 296,
|
| 3647 |
+
"markers": 2145,
|
| 3648 |
+
"suitable": 3330,
|
| 3649 |
+
"ew8904": 1331,
|
| 3650 |
+
"658": 195,
|
| 3651 |
+
"sorted": 3210,
|
| 3652 |
+
"alphabetical": 352,
|
| 3653 |
+
"wallet": 3715,
|
| 3654 |
+
"schoolkids": 3027,
|
| 3655 |
+
"teachers": 3388,
|
| 3656 |
+
"processing": 2708,
|
| 3657 |
+
"logical": 2054,
|
| 3658 |
+
"echo": 1241,
|
| 3659 |
+
"newsquest": 2326,
|
| 3660 |
+
"gannett": 1547,
|
| 3661 |
+
"499": 157,
|
| 3662 |
+
"651": 194,
|
| 3663 |
+
"charlton": 784,
|
| 3664 |
+
"lived": 2034,
|
| 3665 |
+
"glossy": 1578,
|
| 3666 |
+
"passers": 2490,
|
| 3667 |
+
"customized": 1023,
|
| 3668 |
+
"footballers": 1484,
|
| 3669 |
+
"distributed": 1172,
|
| 3670 |
+
"fans": 1404,
|
| 3671 |
+
"stadiums": 3248,
|
| 3672 |
+
"tucked": 3542,
|
| 3673 |
+
"sunshine": 3336,
|
| 3674 |
+
"1000s": 15,
|
| 3675 |
+
"busiest": 678,
|
| 3676 |
+
"except": 1335,
|
| 3677 |
+
"cheap": 788,
|
| 3678 |
+
"succesful": 3317,
|
| 3679 |
+
"spirits": 3236,
|
| 3680 |
+
"dampened": 1035,
|
| 3681 |
+
"showers": 3114,
|
| 3682 |
+
"brolly": 653,
|
| 3683 |
+
"awakening": 483,
|
| 3684 |
+
"slumber": 3171,
|
| 3685 |
+
"bolton": 602,
|
| 3686 |
+
"thanking": 3426,
|
| 3687 |
+
"issue": 1859,
|
| 3688 |
+
"bhs": 558,
|
| 3689 |
+
"hotel": 1715,
|
| 3690 |
+
"tuned": 3544,
|
| 3691 |
+
"slight": 3169,
|
| 3692 |
+
"lull": 2080,
|
| 3693 |
+
"supporting": 3342,
|
| 3694 |
+
"excepting": 1336,
|
| 3695 |
+
"rush": 2990,
|
| 3696 |
+
"nowhere": 2355,
|
| 3697 |
+
"spots": 3241,
|
| 3698 |
+
"pairs": 2470,
|
| 3699 |
+
"observed": 2369,
|
| 3700 |
+
"onlookers": 2412,
|
| 3701 |
+
"witnessing": 3805,
|
| 3702 |
+
"level": 1998,
|
| 3703 |
+
"massacre": 2152,
|
| 3704 |
+
"wrought": 3842,
|
| 3705 |
+
"population": 2637,
|
| 3706 |
+
"95": 233,
|
| 3707 |
+
"waking": 3707,
|
| 3708 |
+
"amazed": 357,
|
| 3709 |
+
"exposed": 1370,
|
| 3710 |
+
"shift": 3096,
|
| 3711 |
+
"pls": 2606,
|
| 3712 |
+
"heavy": 1660,
|
| 3713 |
+
"gear": 1560,
|
| 3714 |
+
"forecasters": 1488,
|
| 3715 |
+
"predict": 2662,
|
| 3716 |
+
"wettest": 3768,
|
| 3717 |
+
"sturgeon": 3310,
|
| 3718 |
+
"tear": 3392,
|
| 3719 |
+
"ducts": 1223,
|
| 3720 |
+
"cold": 853,
|
| 3721 |
+
"unit": 3578,
|
| 3722 |
+
"investigating": 1847,
|
| 3723 |
+
"dnr": 1179,
|
| 3724 |
+
"productive": 2716,
|
| 3725 |
+
"posting": 2650,
|
| 3726 |
+
"supportive": 3343,
|
| 3727 |
+
"passersby": 2491,
|
| 3728 |
+
"outnumber": 2449,
|
| 3729 |
+
"detractors": 1124,
|
| 3730 |
+
"scroll": 3037,
|
| 3731 |
+
"comfort": 869,
|
| 3732 |
+
"zone": 3863,
|
| 3733 |
+
"armchair": 408,
|
| 3734 |
+
"tmitv": 3477,
|
| 3735 |
+
"nw": 2363,
|
| 3736 |
+
"adjustments": 298,
|
| 3737 |
+
"umbrella": 3563,
|
| 3738 |
+
"chairs": 772,
|
| 3739 |
+
"displaying": 1168,
|
| 3740 |
+
"adjustment": 297,
|
| 3741 |
+
"thursdays": 3458,
|
| 3742 |
+
"m16": 2093,
|
| 3743 |
+
"12pm": 29,
|
| 3744 |
+
"sitps": 3146,
|
| 3745 |
+
"bench": 546,
|
| 3746 |
+
"facing": 1386,
|
| 3747 |
+
"lake": 1943,
|
| 3748 |
+
"wetherspoons": 3767,
|
| 3749 |
+
"whsmith": 3780,
|
| 3750 |
+
"wh": 3769,
|
| 3751 |
+
"smith": 3177,
|
| 3752 |
+
"exchange": 1340,
|
| 3753 |
+
"spencer": 3230,
|
| 3754 |
+
"ludgate": 2079,
|
| 3755 |
+
"6hf": 199,
|
| 3756 |
+
"saturdays": 3011,
|
| 3757 |
+
"forseeable": 1496,
|
| 3758 |
+
"plandemic": 2593,
|
| 3759 |
+
"disgust": 1160,
|
| 3760 |
+
"4xa6": 166,
|
| 3761 |
+
"sharing": 3088,
|
| 3762 |
+
"santander": 3006,
|
| 3763 |
+
"stopped": 3288,
|
| 3764 |
+
"vocal": 3688,
|
| 3765 |
+
"strangely": 3295,
|
| 3766 |
+
"uploaded": 3606,
|
| 3767 |
+
"meets": 2180,
|
| 3768 |
+
"derelict": 1105,
|
| 3769 |
+
"web": 3744,
|
| 3770 |
+
"skittles": 3163,
|
| 3771 |
+
"gate": 1553,
|
| 3772 |
+
"1xl": 67,
|
| 3773 |
+
"lift": 2009,
|
| 3774 |
+
"offer": 2382,
|
| 3775 |
+
"bramhall": 626,
|
| 3776 |
+
"warmth": 3722,
|
| 3777 |
+
"excellent": 1334,
|
| 3778 |
+
"village": 3677,
|
| 3779 |
+
"sk7": 3158,
|
| 3780 |
+
"1aq": 55,
|
| 3781 |
+
"378": 136,
|
| 3782 |
+
"379": 137,
|
| 3783 |
+
"751": 213,
|
| 3784 |
+
"768": 214,
|
| 3785 |
+
"877": 226,
|
| 3786 |
+
"meadway": 2167,
|
| 3787 |
+
"1jz": 61,
|
| 3788 |
+
"natwest": 2300,
|
| 3789 |
+
"railings": 2805,
|
| 3790 |
+
"adorn": 303,
|
| 3791 |
+
"mark": 2144,
|
| 3792 |
+
"lymm": 2086,
|
| 3793 |
+
"inspirational": 1820,
|
| 3794 |
+
"bountiful": 618,
|
| 3795 |
+
"crop": 1007,
|
| 3796 |
+
"swing": 3357,
|
| 3797 |
+
"visitors": 3685,
|
| 3798 |
+
"ages": 323,
|
| 3799 |
+
"determined": 1122,
|
| 3800 |
+
"trams": 3513,
|
| 3801 |
+
"9th": 241,
|
| 3802 |
+
"pha": 2549,
|
| 3803 |
+
"alliance": 346,
|
| 3804 |
+
"meetup": 2181,
|
| 3805 |
+
"lancashire": 1950,
|
| 3806 |
+
"function": 1531,
|
| 3807 |
+
"lowerhouse": 2074,
|
| 3808 |
+
"bb12": 526,
|
| 3809 |
+
"6lp": 200,
|
| 3810 |
+
"interclubbers": 1833,
|
| 3811 |
+
"picadilly": 2565,
|
| 3812 |
+
"resist": 2924,
|
| 3813 |
+
"defy": 1085,
|
| 3814 |
+
"comply": 893,
|
| 3815 |
+
"tonight": 3486,
|
| 3816 |
+
"10pm": 20,
|
| 3817 |
+
"snug": 3187,
|
| 3818 |
+
"meetings": 2179,
|
| 3819 |
+
"jul": 1902,
|
| 3820 |
+
"drinkers": 1210,
|
| 3821 |
+
"beyond": 556,
|
| 3822 |
+
"admins": 299,
|
| 3823 |
+
"maintain": 2119,
|
| 3824 |
+
"centred": 763,
|
| 3825 |
+
"woodman": 3813,
|
| 3826 |
+
"sole": 3196,
|
| 3827 |
+
"purpose": 2772,
|
| 3828 |
+
"forth": 1497,
|
| 3829 |
+
"meetups": 2182,
|
| 3830 |
+
"outwood": 2453,
|
| 3831 |
+
"happen": 1638,
|
| 3832 |
+
"fortnightly": 1498,
|
| 3833 |
+
"demos": 1097,
|
| 3834 |
+
"deemed": 1078,
|
| 3835 |
+
"reoccurring": 2898,
|
| 3836 |
+
"woke": 3807,
|
| 3837 |
+
"listed": 2027,
|
| 3838 |
+
"messaging": 2203,
|
| 3839 |
+
"localised": 2044,
|
| 3840 |
+
"national": 2296,
|
| 3841 |
+
"users": 3623,
|
| 3842 |
+
"advised": 312,
|
| 3843 |
+
"periodically": 2535,
|
| 3844 |
+
"miss": 2239,
|
| 3845 |
+
"bitcoin": 577,
|
| 3846 |
+
"scam": 3019,
|
| 3847 |
+
"unmissable": 3590,
|
| 3848 |
+
"skip": 3162,
|
| 3849 |
+
"fall": 1398,
|
| 3850 |
+
"holiday": 1692,
|
| 3851 |
+
"halifax": 1630,
|
| 3852 |
+
"littleborough": 2032,
|
| 3853 |
+
"ol15": 2397,
|
| 3854 |
+
"0hb": 13,
|
| 3855 |
+
"foreseeable": 1489,
|
| 3856 |
+
"quickly": 2799,
|
| 3857 |
+
"folk": 1475,
|
| 3858 |
+
"calderdale": 692,
|
| 3859 |
+
"30am": 120,
|
| 3860 |
+
"debbie": 1064,
|
| 3861 |
+
"hicks": 1678,
|
| 3862 |
+
"piers": 2576,
|
| 3863 |
+
"corbyn": 951,
|
| 3864 |
+
"resistance": 2925,
|
| 3865 |
+
"bradford": 623,
|
| 3866 |
+
"caz": 752,
|
| 3867 |
+
"wakefield": 3705,
|
| 3868 |
+
"declaration": 1075,
|
| 3869 |
+
"claims": 823,
|
| 3870 |
+
"deciding": 1073,
|
| 3871 |
+
"eal": 1228,
|
| 3872 |
+
"invites": 1853,
|
| 3873 |
+
"smart": 3176,
|
| 3874 |
+
"infrastructure": 1797,
|
| 3875 |
+
"anel": 368,
|
| 3876 |
+
"onfirmed": 2408,
|
| 3877 |
+
"project": 2723,
|
| 3878 |
+
"founder": 1506,
|
| 3879 |
+
"jonathon": 1895,
|
| 3880 |
+
"tilt": 3464,
|
| 3881 |
+
"emily": 1277,
|
| 3882 |
+
"garcia": 1549,
|
| 3883 |
+
"researcher": 2921,
|
| 3884 |
+
"creator": 995,
|
| 3885 |
+
"emora": 1278,
|
| 3886 |
+
"yuile": 3859,
|
| 3887 |
+
"ickets": 1741,
|
| 3888 |
+
"voluntary": 3691,
|
| 3889 |
+
"ticket": 3459,
|
| 3890 |
+
"emailed": 1273,
|
| 3891 |
+
"48": 155,
|
| 3892 |
+
"regularly": 2874,
|
| 3893 |
+
"authority": 471,
|
| 3894 |
+
"camping": 712,
|
| 3895 |
+
"rasen": 2820,
|
| 3896 |
+
"lincolnshire": 2015,
|
| 3897 |
+
"eurovision": 1321,
|
| 3898 |
+
"arena": 406,
|
| 3899 |
+
"regular": 2873,
|
| 3900 |
+
"wednesdays": 3748,
|
| 3901 |
+
"lamb": 1944,
|
| 3902 |
+
"eccles": 1239,
|
| 3903 |
+
"mo": 2245,
|
| 3904 |
+
"tu": 3541,
|
| 3905 |
+
"fr": 1512,
|
| 3906 |
+
"sa": 2993,
|
| 3907 |
+
"su": 3311,
|
| 3908 |
+
"31": 123,
|
| 3909 |
+
"downing": 1197,
|
| 3910 |
+
"wefminster": 3755,
|
| 3911 |
+
"viva": 3687,
|
| 3912 |
+
"la": 1938,
|
| 3913 |
+
"revolution": 2951,
|
| 3914 |
+
"candidates": 720,
|
| 3915 |
+
"belief": 541,
|
| 3916 |
+
"pffa": 2547,
|
| 3917 |
+
"seed": 3047,
|
| 3918 |
+
"seeds": 3048,
|
| 3919 |
+
"photocopying": 2561,
|
| 3920 |
+
"tyrannical": 3556,
|
| 3921 |
+
"surveillance": 3350,
|
| 3922 |
+
"rossendale": 2978,
|
| 3923 |
+
"cath": 742,
|
| 3924 |
+
"jonathan": 1894,
|
| 3925 |
+
"elections": 1266,
|
| 3926 |
+
"nominating": 2338,
|
| 3927 |
+
"candidate": 719,
|
| 3928 |
+
"vote": 3695,
|
| 3929 |
+
"seize": 3054,
|
| 3930 |
+
"pen": 2525,
|
| 3931 |
+
"cease": 755,
|
| 3932 |
+
"heroes": 1675,
|
| 3933 |
+
"188": 46,
|
| 3934 |
+
"oxford": 2462,
|
| 3935 |
+
"m139pl": 2091,
|
| 3936 |
+
"john": 1886,
|
| 3937 |
+
"christian": 810,
|
| 3938 |
+
"apolitical": 384,
|
| 3939 |
+
"thesis": 3434,
|
| 3940 |
+
"cern": 765,
|
| 3941 |
+
"studying": 3309,
|
| 3942 |
+
"phd": 2554,
|
| 3943 |
+
"expressed": 1373,
|
| 3944 |
+
"wrongthink": 3841,
|
| 3945 |
+
"discourse": 1152,
|
| 3946 |
+
"callout": 699,
|
| 3947 |
+
"tonnes": 3487,
|
| 3948 |
+
"appreciated": 396,
|
| 3949 |
+
"claire": 824,
|
| 3950 |
+
"eventbrite": 1322,
|
| 3951 |
+
"apr": 401,
|
| 3952 |
+
"bst": 664,
|
| 3953 |
+
"m1": 2088,
|
| 3954 |
+
"economic": 1242,
|
| 3955 |
+
"forum": 1499,
|
| 3956 |
+
"teef": 3398,
|
| 3957 |
+
"ideas": 1744,
|
| 3958 |
+
"33": 129,
|
| 3959 |
+
"regent": 2868,
|
| 3960 |
+
"m30": 2099,
|
| 3961 |
+
"0bp": 10,
|
| 3962 |
+
"manger": 2133,
|
| 3963 |
+
"boars": 597,
|
| 3964 |
+
"canceled": 715,
|
| 3965 |
+
"pizzeria": 2584,
|
| 3966 |
+
"m24": 2096,
|
| 3967 |
+
"1sh": 65,
|
| 3968 |
+
"min": 2227,
|
| 3969 |
+
"edit": 1247,
|
| 3970 |
+
"middleton": 2217,
|
| 3971 |
+
"6ue": 203,
|
| 3972 |
+
"guest": 1620,
|
| 3973 |
+
"louise": 2070,
|
| 3974 |
+
"dec": 1067,
|
| 3975 |
+
"landlady": 1953,
|
| 3976 |
+
"appreciates": 397,
|
| 3977 |
+
"poa": 2611,
|
| 3978 |
+
"swan": 3356,
|
| 3979 |
+
"threats": 3450,
|
| 3980 |
+
"freedoms": 1515,
|
| 3981 |
+
"faces": 1385,
|
| 3982 |
+
"bulls": 671,
|
| 3983 |
+
"handforth": 1635,
|
| 3984 |
+
"conservatory": 913,
|
| 3985 |
+
"bar": 513,
|
| 3986 |
+
"occasionally": 2372,
|
| 3987 |
+
"log": 2053,
|
| 3988 |
+
"registration": 2871,
|
| 3989 |
+
"arrival": 418,
|
| 3990 |
+
"cancelling": 718,
|
| 3991 |
+
"cancel": 714,
|
| 3992 |
+
"culture": 1017,
|
| 3993 |
+
"ccc": 753,
|
| 3994 |
+
"stimulating": 3280,
|
| 3995 |
+
"fresh": 1518,
|
| 3996 |
+
"friendly": 1522,
|
| 3997 |
+
"welcoming": 3759,
|
| 3998 |
+
"grab": 1598,
|
| 3999 |
+
"lively": 2036,
|
| 4000 |
+
"faith": 1396,
|
| 4001 |
+
"opinions": 2421,
|
| 4002 |
+
"welcomed": 3757,
|
| 4003 |
+
"respected": 2929,
|
| 4004 |
+
"britons": 649,
|
| 4005 |
+
"bridgewater": 641,
|
| 4006 |
+
"5le": 185,
|
| 4007 |
+
"tavern": 3383,
|
| 4008 |
+
"sk8": 3159,
|
| 4009 |
+
"2nz": 112,
|
| 4010 |
+
"compound": 894,
|
| 4011 |
+
"golden": 1587,
|
| 4012 |
+
"parrs": 2479,
|
| 4013 |
+
"wood": 3811,
|
| 4014 |
+
"a34": 246,
|
| 4015 |
+
"disbury": 1151,
|
| 4016 |
+
"42b": 146,
|
| 4017 |
+
"daytime": 1054,
|
| 4018 |
+
"roma": 2973,
|
| 4019 |
+
"bistro": 574,
|
| 4020 |
+
"77": 215,
|
| 4021 |
+
"0da": 11,
|
| 4022 |
+
"horsforth": 1709,
|
| 4023 |
+
"nibbles": 2329,
|
| 4024 |
+
"jumpers": 1904,
|
| 4025 |
+
"rock": 2968,
|
| 4026 |
+
"xx": 3846,
|
| 4027 |
+
"blackpool": 582,
|
| 4028 |
+
"pier": 2575,
|
| 4029 |
+
"festival": 1429,
|
| 4030 |
+
"promenade": 2725,
|
| 4031 |
+
"tower": 3496,
|
| 4032 |
+
"sharp": 3089,
|
| 4033 |
+
"fellow": 1426,
|
| 4034 |
+
"warriors": 3729,
|
| 4035 |
+
"theres": 3432,
|
| 4036 |
+
"prom": 2724,
|
| 4037 |
+
"rebellion": 2836,
|
| 4038 |
+
"airshow": 331,
|
| 4039 |
+
"comedy": 867,
|
| 4040 |
+
"carpet": 734,
|
| 4041 |
+
"fenced": 1428,
|
| 4042 |
+
"missing": 2241,
|
| 4043 |
+
"singles": 3141,
|
| 4044 |
+
"walkden": 3710,
|
| 4045 |
+
"shell": 3095,
|
| 4046 |
+
"island": 1858,
|
| 4047 |
+
"truther": 3538,
|
| 4048 |
+
"picnic": 2570,
|
| 4049 |
+
"hyde": 1736,
|
| 4050 |
+
"tandle": 3376,
|
| 4051 |
+
"covering": 985,
|
| 4052 |
+
"queen": 2789,
|
| 4053 |
+
"libraries": 2001,
|
| 4054 |
+
"carlisle": 732,
|
| 4055 |
+
"pursuit": 2775,
|
| 4056 |
+
"brooklands": 654,
|
| 4057 |
+
"tap": 3377,
|
| 4058 |
+
"sale": 3002,
|
| 4059 |
+
"tpr": 3502,
|
| 4060 |
+
"peak": 2523,
|
| 4061 |
+
"district": 1173,
|
| 4062 |
+
"launch": 1967,
|
| 4063 |
+
"sees": 3052,
|
| 4064 |
+
"increase": 1778,
|
| 4065 |
+
"collaborative": 855,
|
| 4066 |
+
"bridging": 642,
|
| 4067 |
+
"division": 1175,
|
| 4068 |
+
"fostering": 1502,
|
| 4069 |
+
"challenges": 774,
|
| 4070 |
+
"initiative": 1800,
|
| 4071 |
+
"sister": 3142
|
| 4072 |
+
}
|
| 4073 |
+
}
|
| 4074 |
+
}
|
topic_embeddings.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f28c5b3541c3ea72d24110a4fb69ba1191b22cde695d7f5a3f7925067b3bdd1
|
| 3 |
+
size 16472
|
topics.json
ADDED
|
@@ -0,0 +1,410 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"topic_representations": {
|
| 3 |
+
"-1": [
|
| 4 |
+
[
|
| 5 |
+
"court",
|
| 6 |
+
0.5203116536140442
|
| 7 |
+
],
|
| 8 |
+
[
|
| 9 |
+
"arrests",
|
| 10 |
+
0.513209342956543
|
| 11 |
+
],
|
| 12 |
+
[
|
| 13 |
+
"salford",
|
| 14 |
+
0.4804341197013855
|
| 15 |
+
],
|
| 16 |
+
[
|
| 17 |
+
"worldwidedemonstration",
|
| 18 |
+
0.4793010950088501
|
| 19 |
+
],
|
| 20 |
+
[
|
| 21 |
+
"mikey",
|
| 22 |
+
0.4785696864128113
|
| 23 |
+
]
|
| 24 |
+
],
|
| 25 |
+
"0": [
|
| 26 |
+
[
|
| 27 |
+
"vaccine",
|
| 28 |
+
0.5622231364250183
|
| 29 |
+
],
|
| 30 |
+
[
|
| 31 |
+
"injected",
|
| 32 |
+
0.5036036372184753
|
| 33 |
+
],
|
| 34 |
+
[
|
| 35 |
+
"midazolam",
|
| 36 |
+
0.4908721148967743
|
| 37 |
+
],
|
| 38 |
+
[
|
| 39 |
+
"nurses",
|
| 40 |
+
0.47249239683151245
|
| 41 |
+
],
|
| 42 |
+
[
|
| 43 |
+
"stockport",
|
| 44 |
+
0.4635111093521118
|
| 45 |
+
]
|
| 46 |
+
],
|
| 47 |
+
"1": [
|
| 48 |
+
[
|
| 49 |
+
"posters",
|
| 50 |
+
0.5347205400466919
|
| 51 |
+
],
|
| 52 |
+
[
|
| 53 |
+
"rallies",
|
| 54 |
+
0.5133228898048401
|
| 55 |
+
],
|
| 56 |
+
[
|
| 57 |
+
"wednesday",
|
| 58 |
+
0.46263617277145386
|
| 59 |
+
],
|
| 60 |
+
[
|
| 61 |
+
"wetherspoons",
|
| 62 |
+
0.46171456575393677
|
| 63 |
+
],
|
| 64 |
+
[
|
| 65 |
+
"brolly",
|
| 66 |
+
0.4347672462463379
|
| 67 |
+
]
|
| 68 |
+
],
|
| 69 |
+
"2": [
|
| 70 |
+
[
|
| 71 |
+
"lancashire",
|
| 72 |
+
0.5375930070877075
|
| 73 |
+
],
|
| 74 |
+
[
|
| 75 |
+
"corbyn",
|
| 76 |
+
0.4944015145301819
|
| 77 |
+
],
|
| 78 |
+
[
|
| 79 |
+
"meetings",
|
| 80 |
+
0.49385595321655273
|
| 81 |
+
],
|
| 82 |
+
[
|
| 83 |
+
"interclubbers",
|
| 84 |
+
0.4621308743953705
|
| 85 |
+
],
|
| 86 |
+
[
|
| 87 |
+
"29th",
|
| 88 |
+
0.46053528785705566
|
| 89 |
+
]
|
| 90 |
+
]
|
| 91 |
+
},
|
| 92 |
+
"topics": [
|
| 93 |
+
-1,
|
| 94 |
+
-1,
|
| 95 |
+
2,
|
| 96 |
+
-1,
|
| 97 |
+
-1,
|
| 98 |
+
-1,
|
| 99 |
+
1,
|
| 100 |
+
-1,
|
| 101 |
+
-1,
|
| 102 |
+
0,
|
| 103 |
+
0,
|
| 104 |
+
1,
|
| 105 |
+
2,
|
| 106 |
+
1,
|
| 107 |
+
-1,
|
| 108 |
+
-1,
|
| 109 |
+
2,
|
| 110 |
+
1,
|
| 111 |
+
-1,
|
| 112 |
+
1,
|
| 113 |
+
2,
|
| 114 |
+
1,
|
| 115 |
+
-1,
|
| 116 |
+
1,
|
| 117 |
+
1,
|
| 118 |
+
1,
|
| 119 |
+
1,
|
| 120 |
+
1,
|
| 121 |
+
0,
|
| 122 |
+
-1,
|
| 123 |
+
0,
|
| 124 |
+
2,
|
| 125 |
+
1,
|
| 126 |
+
1,
|
| 127 |
+
-1,
|
| 128 |
+
1,
|
| 129 |
+
-1,
|
| 130 |
+
-1,
|
| 131 |
+
1,
|
| 132 |
+
2,
|
| 133 |
+
0,
|
| 134 |
+
1,
|
| 135 |
+
-1,
|
| 136 |
+
1,
|
| 137 |
+
1,
|
| 138 |
+
1,
|
| 139 |
+
-1,
|
| 140 |
+
-1,
|
| 141 |
+
1,
|
| 142 |
+
1,
|
| 143 |
+
-1,
|
| 144 |
+
0,
|
| 145 |
+
0,
|
| 146 |
+
1,
|
| 147 |
+
1,
|
| 148 |
+
0,
|
| 149 |
+
1,
|
| 150 |
+
-1,
|
| 151 |
+
2,
|
| 152 |
+
1,
|
| 153 |
+
1,
|
| 154 |
+
1,
|
| 155 |
+
1,
|
| 156 |
+
2,
|
| 157 |
+
-1,
|
| 158 |
+
-1,
|
| 159 |
+
-1,
|
| 160 |
+
1,
|
| 161 |
+
0,
|
| 162 |
+
0,
|
| 163 |
+
0,
|
| 164 |
+
1,
|
| 165 |
+
2,
|
| 166 |
+
1,
|
| 167 |
+
-1,
|
| 168 |
+
-1,
|
| 169 |
+
2,
|
| 170 |
+
1,
|
| 171 |
+
1,
|
| 172 |
+
-1,
|
| 173 |
+
-1,
|
| 174 |
+
-1,
|
| 175 |
+
-1,
|
| 176 |
+
-1,
|
| 177 |
+
-1,
|
| 178 |
+
-1,
|
| 179 |
+
-1,
|
| 180 |
+
2,
|
| 181 |
+
-1,
|
| 182 |
+
1,
|
| 183 |
+
-1,
|
| 184 |
+
0,
|
| 185 |
+
-1,
|
| 186 |
+
-1,
|
| 187 |
+
-1,
|
| 188 |
+
0,
|
| 189 |
+
2,
|
| 190 |
+
0,
|
| 191 |
+
-1,
|
| 192 |
+
0,
|
| 193 |
+
-1,
|
| 194 |
+
-1,
|
| 195 |
+
2,
|
| 196 |
+
2,
|
| 197 |
+
-1,
|
| 198 |
+
-1,
|
| 199 |
+
-1,
|
| 200 |
+
1,
|
| 201 |
+
-1,
|
| 202 |
+
2,
|
| 203 |
+
-1,
|
| 204 |
+
-1,
|
| 205 |
+
-1,
|
| 206 |
+
-1,
|
| 207 |
+
2,
|
| 208 |
+
-1,
|
| 209 |
+
-1,
|
| 210 |
+
-1,
|
| 211 |
+
2,
|
| 212 |
+
2,
|
| 213 |
+
-1,
|
| 214 |
+
-1,
|
| 215 |
+
-1,
|
| 216 |
+
0,
|
| 217 |
+
-1,
|
| 218 |
+
-1,
|
| 219 |
+
-1,
|
| 220 |
+
-1,
|
| 221 |
+
-1,
|
| 222 |
+
-1,
|
| 223 |
+
-1,
|
| 224 |
+
2,
|
| 225 |
+
2,
|
| 226 |
+
2,
|
| 227 |
+
-1,
|
| 228 |
+
2,
|
| 229 |
+
-1,
|
| 230 |
+
0,
|
| 231 |
+
0,
|
| 232 |
+
-1,
|
| 233 |
+
0,
|
| 234 |
+
-1,
|
| 235 |
+
-1,
|
| 236 |
+
0,
|
| 237 |
+
-1,
|
| 238 |
+
-1,
|
| 239 |
+
0,
|
| 240 |
+
0,
|
| 241 |
+
0,
|
| 242 |
+
0,
|
| 243 |
+
0,
|
| 244 |
+
-1,
|
| 245 |
+
-1,
|
| 246 |
+
0,
|
| 247 |
+
-1,
|
| 248 |
+
-1,
|
| 249 |
+
-1,
|
| 250 |
+
-1,
|
| 251 |
+
0,
|
| 252 |
+
0,
|
| 253 |
+
0,
|
| 254 |
+
2,
|
| 255 |
+
0,
|
| 256 |
+
-1,
|
| 257 |
+
-1,
|
| 258 |
+
-1,
|
| 259 |
+
2,
|
| 260 |
+
0,
|
| 261 |
+
2,
|
| 262 |
+
-1,
|
| 263 |
+
-1,
|
| 264 |
+
-1,
|
| 265 |
+
0,
|
| 266 |
+
-1,
|
| 267 |
+
2,
|
| 268 |
+
2,
|
| 269 |
+
2,
|
| 270 |
+
0,
|
| 271 |
+
0,
|
| 272 |
+
2,
|
| 273 |
+
-1,
|
| 274 |
+
-1,
|
| 275 |
+
-1,
|
| 276 |
+
-1,
|
| 277 |
+
-1,
|
| 278 |
+
1,
|
| 279 |
+
-1,
|
| 280 |
+
0,
|
| 281 |
+
0,
|
| 282 |
+
-1,
|
| 283 |
+
0,
|
| 284 |
+
-1,
|
| 285 |
+
-1,
|
| 286 |
+
-1,
|
| 287 |
+
-1,
|
| 288 |
+
-1,
|
| 289 |
+
0,
|
| 290 |
+
0,
|
| 291 |
+
-1,
|
| 292 |
+
0,
|
| 293 |
+
-1,
|
| 294 |
+
0,
|
| 295 |
+
-1,
|
| 296 |
+
-1,
|
| 297 |
+
-1,
|
| 298 |
+
-1,
|
| 299 |
+
-1,
|
| 300 |
+
0,
|
| 301 |
+
0,
|
| 302 |
+
0,
|
| 303 |
+
0,
|
| 304 |
+
0,
|
| 305 |
+
-1,
|
| 306 |
+
-1,
|
| 307 |
+
0,
|
| 308 |
+
-1,
|
| 309 |
+
0,
|
| 310 |
+
0,
|
| 311 |
+
-1,
|
| 312 |
+
-1,
|
| 313 |
+
-1,
|
| 314 |
+
0,
|
| 315 |
+
0,
|
| 316 |
+
-1,
|
| 317 |
+
-1,
|
| 318 |
+
0,
|
| 319 |
+
-1,
|
| 320 |
+
0,
|
| 321 |
+
0,
|
| 322 |
+
-1,
|
| 323 |
+
2,
|
| 324 |
+
-1,
|
| 325 |
+
2,
|
| 326 |
+
-1,
|
| 327 |
+
2,
|
| 328 |
+
1,
|
| 329 |
+
0,
|
| 330 |
+
0,
|
| 331 |
+
0,
|
| 332 |
+
0,
|
| 333 |
+
-1,
|
| 334 |
+
-1,
|
| 335 |
+
0,
|
| 336 |
+
-1,
|
| 337 |
+
-1,
|
| 338 |
+
0,
|
| 339 |
+
-1,
|
| 340 |
+
0,
|
| 341 |
+
-1,
|
| 342 |
+
0,
|
| 343 |
+
0,
|
| 344 |
+
0,
|
| 345 |
+
0,
|
| 346 |
+
0,
|
| 347 |
+
0,
|
| 348 |
+
0,
|
| 349 |
+
0,
|
| 350 |
+
0,
|
| 351 |
+
0,
|
| 352 |
+
0,
|
| 353 |
+
0,
|
| 354 |
+
0,
|
| 355 |
+
0,
|
| 356 |
+
0,
|
| 357 |
+
0,
|
| 358 |
+
0,
|
| 359 |
+
0,
|
| 360 |
+
0,
|
| 361 |
+
0,
|
| 362 |
+
0,
|
| 363 |
+
0,
|
| 364 |
+
0,
|
| 365 |
+
0,
|
| 366 |
+
0,
|
| 367 |
+
-1,
|
| 368 |
+
0,
|
| 369 |
+
0,
|
| 370 |
+
0,
|
| 371 |
+
0
|
| 372 |
+
],
|
| 373 |
+
"topic_sizes": {
|
| 374 |
+
"-1": 120,
|
| 375 |
+
"2": 32,
|
| 376 |
+
"1": 37,
|
| 377 |
+
"0": 90
|
| 378 |
+
},
|
| 379 |
+
"topic_mapper": [
|
| 380 |
+
[
|
| 381 |
+
-1,
|
| 382 |
+
-1,
|
| 383 |
+
-1
|
| 384 |
+
],
|
| 385 |
+
[
|
| 386 |
+
0,
|
| 387 |
+
0,
|
| 388 |
+
0
|
| 389 |
+
],
|
| 390 |
+
[
|
| 391 |
+
1,
|
| 392 |
+
1,
|
| 393 |
+
2
|
| 394 |
+
],
|
| 395 |
+
[
|
| 396 |
+
2,
|
| 397 |
+
2,
|
| 398 |
+
1
|
| 399 |
+
]
|
| 400 |
+
],
|
| 401 |
+
"topic_labels": {
|
| 402 |
+
"-1": "-1_court_arrests_salford_worldwidedemonstration",
|
| 403 |
+
"0": "0_vaccine_injected_midazolam_nurses",
|
| 404 |
+
"1": "1_posters_rallies_wednesday_wetherspoons",
|
| 405 |
+
"2": "2_lancashire_corbyn_meetings_interclubbers"
|
| 406 |
+
},
|
| 407 |
+
"custom_labels": null,
|
| 408 |
+
"_outliers": 1,
|
| 409 |
+
"topic_aspects": {}
|
| 410 |
+
}
|