Add BERTopic model
Browse files- README.md +72 -0
- config.json +16 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +3580 -0
- topic_embeddings.safetensors +3 -0
- topics.json +252 -0
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,72 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
             | 
| 2 | 
            +
            ---
         | 
| 3 | 
            +
            tags:
         | 
| 4 | 
            +
            - bertopic
         | 
| 5 | 
            +
            library_name: bertopic
         | 
| 6 | 
            +
            pipeline_tag: text-classification
         | 
| 7 | 
            +
            ---
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # MARTINI_enrich_BERTopic_eatitgoys
         | 
| 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_eatitgoys")
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            topic_model.get_topic_info()
         | 
| 29 | 
            +
            ```
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            ## Topic overview
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            * Number of topics: 3
         | 
| 34 | 
            +
            * Number of training documents: 150
         | 
| 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 | catfish - sunscreens - omega - carotenoids - dioxin | 32 | -1_catfish_sunscreens_omega_carotenoids | 
         | 
| 42 | 
            +
            | 0 | microplastics - fluoride - aspartame - sodium - hydrogenated | 18 | 0_microplastics_fluoride_aspartame_sodium | 
         | 
| 43 | 
            +
            | 1 | vaccine - adjuvents - injected - platelet - inactivated | 100 | 1_vaccine_adjuvents_injected_platelet |
         | 
| 44 | 
            +
              
         | 
| 45 | 
            +
            </details>
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            ## Training hyperparameters
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            * calculate_probabilities: True
         | 
| 50 | 
            +
            * language: None
         | 
| 51 | 
            +
            * low_memory: False
         | 
| 52 | 
            +
            * min_topic_size: 10
         | 
| 53 | 
            +
            * n_gram_range: (1, 1)
         | 
| 54 | 
            +
            * nr_topics: None
         | 
| 55 | 
            +
            * seed_topic_list: None
         | 
| 56 | 
            +
            * top_n_words: 10
         | 
| 57 | 
            +
            * verbose: False
         | 
| 58 | 
            +
            * zeroshot_min_similarity: 0.7
         | 
| 59 | 
            +
            * zeroshot_topic_list: None
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            ## Framework versions
         | 
| 62 | 
            +
             | 
| 63 | 
            +
            * Numpy: 1.26.4
         | 
| 64 | 
            +
            * HDBSCAN: 0.8.40
         | 
| 65 | 
            +
            * UMAP: 0.5.7
         | 
| 66 | 
            +
            * Pandas: 2.2.3
         | 
| 67 | 
            +
            * Scikit-Learn: 1.5.2
         | 
| 68 | 
            +
            * Sentence-transformers: 3.3.1
         | 
| 69 | 
            +
            * Transformers: 4.46.3
         | 
| 70 | 
            +
            * Numba: 0.60.0
         | 
| 71 | 
            +
            * Plotly: 5.24.1
         | 
| 72 | 
            +
            * 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:d8a3d6d9f013bfc7847ac4431efa1b424db585ff7b934c785135917aa3eefc07
         | 
| 3 | 
            +
            size 75448
         | 
    	
        ctfidf_config.json
    ADDED
    
    | @@ -0,0 +1,3580 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 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 | 
            +
                    "eatitgoys"
         | 
| 202 | 
            +
                  ],
         | 
| 203 | 
            +
                  "strip_accents": "unicode",
         | 
| 204 | 
            +
                  "token_pattern": "(?u)\\b\\w\\w+\\b",
         | 
| 205 | 
            +
                  "vocabulary": null
         | 
| 206 | 
            +
                },
         | 
| 207 | 
            +
                "vocab": {
         | 
| 208 | 
            +
                  "somethings": 2818,
         | 
| 209 | 
            +
                  "fishy": 1257,
         | 
| 210 | 
            +
                  "options": 2118,
         | 
| 211 | 
            +
                  "safer": 2644,
         | 
| 212 | 
            +
                  "eat": 1056,
         | 
| 213 | 
            +
                  "sardines": 2661,
         | 
| 214 | 
            +
                  "wild": 3311,
         | 
| 215 | 
            +
                  "caught": 562,
         | 
| 216 | 
            +
                  "canned": 528,
         | 
| 217 | 
            +
                  "tuna": 3145,
         | 
| 218 | 
            +
                  "steaks": 2877,
         | 
| 219 | 
            +
                  "larger": 1730,
         | 
| 220 | 
            +
                  "mercury": 1902,
         | 
| 221 | 
            +
                  "sablefish": 2642,
         | 
| 222 | 
            +
                  "salmon": 2654,
         | 
| 223 | 
            +
                  "anchovies": 239,
         | 
| 224 | 
            +
                  "fix": 1259,
         | 
| 225 | 
            +
                  "omega": 2108,
         | 
| 226 | 
            +
                  "3s": 68,
         | 
| 227 | 
            +
                  "price": 2361,
         | 
| 228 | 
            +
                  "tag": 2995,
         | 
| 229 | 
            +
                  "dissuade": 993,
         | 
| 230 | 
            +
                  "put": 2432,
         | 
| 231 | 
            +
                  "catch": 556,
         | 
| 232 | 
            +
                  "civilisation": 638,
         | 
| 233 | 
            +
                  "fishing": 1256,
         | 
| 234 | 
            +
                  "practically": 2337,
         | 
| 235 | 
            +
                  "minus": 1948,
         | 
| 236 | 
            +
                  "cost": 799,
         | 
| 237 | 
            +
                  "bait": 367,
         | 
| 238 | 
            +
                  "petrol": 2233,
         | 
| 239 | 
            +
                  "skill": 2778,
         | 
| 240 | 
            +
                  "serve": 2709,
         | 
| 241 | 
            +
                  "upcoming": 3179,
         | 
| 242 | 
            +
                  "hardships": 1443,
         | 
| 243 | 
            +
                  "documentary": 1007,
         | 
| 244 | 
            +
                  "farmed": 1207,
         | 
| 245 | 
            +
                  "learn": 1751,
         | 
| 246 | 
            +
                  "atlantic": 332,
         | 
| 247 | 
            +
                  "flatfishes": 1260,
         | 
| 248 | 
            +
                  "halibut": 1430,
         | 
| 249 | 
            +
                  "flounder": 1269,
         | 
| 250 | 
            +
                  "sole": 2810,
         | 
| 251 | 
            +
                  "cod": 662,
         | 
| 252 | 
            +
                  "addition": 145,
         | 
| 253 | 
            +
                  "carotenoids": 545,
         | 
| 254 | 
            +
                  "ethoxyquin": 1128,
         | 
| 255 | 
            +
                  "feed": 1222,
         | 
| 256 | 
            +
                  "content": 765,
         | 
| 257 | 
            +
                  "resulting": 2596,
         | 
| 258 | 
            +
                  "concentrations": 714,
         | 
| 259 | 
            +
                  "herring": 1483,
         | 
| 260 | 
            +
                  "highest": 1489,
         | 
| 261 | 
            +
                  "heavily": 1466,
         | 
| 262 | 
            +
                  "polluted": 2302,
         | 
| 263 | 
            +
                  "baltic": 372,
         | 
| 264 | 
            +
                  "sea": 2679,
         | 
| 265 | 
            +
                  "avoid": 355,
         | 
| 266 | 
            +
                  "seabass": 2680,
         | 
| 267 | 
            +
                  "subject": 2914,
         | 
| 268 | 
            +
                  "rule": 2633,
         | 
| 269 | 
            +
                  "near": 2017,
         | 
| 270 | 
            +
                  "farms": 1210,
         | 
| 271 | 
            +
                  "equally": 1113,
         | 
| 272 | 
            +
                  "food": 1283,
         | 
| 273 | 
            +
                  "chain": 587,
         | 
| 274 | 
            +
                  "names": 2011,
         | 
| 275 | 
            +
                  "heard": 1461,
         | 
| 276 | 
            +
                  "basa": 379,
         | 
| 277 | 
            +
                  "panga": 2172,
         | 
| 278 | 
            +
                  "swai": 2975,
         | 
| 279 | 
            +
                  "shark": 2724,
         | 
| 280 | 
            +
                  "catfish": 558,
         | 
| 281 | 
            +
                  "native": 2015,
         | 
| 282 | 
            +
                  "east": 1054,
         | 
| 283 | 
            +
                  "asia": 311,
         | 
| 284 | 
            +
                  "standards": 2867,
         | 
| 285 | 
            +
                  "west": 3289,
         | 
| 286 | 
            +
                  "offenders": 2093,
         | 
| 287 | 
            +
                  "secondly": 2685,
         | 
| 288 | 
            +
                  "grown": 1418,
         | 
| 289 | 
            +
                  "abysmal": 112,
         | 
| 290 | 
            +
                  "rancidification": 2460,
         | 
| 291 | 
            +
                  "tell": 3018,
         | 
| 292 | 
            +
                  "difference": 959,
         | 
| 293 | 
            +
                  "ones": 2109,
         | 
| 294 | 
            +
                  "bright": 485,
         | 
| 295 | 
            +
                  "pink": 2262,
         | 
| 296 | 
            +
                  "colour": 680,
         | 
| 297 | 
            +
                  "dull": 1034,
         | 
| 298 | 
            +
                  "orange": 2120,
         | 
| 299 | 
            +
                  "trout": 3132,
         | 
| 300 | 
            +
                  "pumped": 2419,
         | 
| 301 | 
            +
                  "xenoestrogens": 3346,
         | 
| 302 | 
            +
                  "maximise": 1874,
         | 
| 303 | 
            +
                  "females": 1229,
         | 
| 304 | 
            +
                  "hormones": 1511,
         | 
| 305 | 
            +
                  "meat": 1883,
         | 
| 306 | 
            +
                  "paradoxically": 2174,
         | 
| 307 | 
            +
                  "tilapia": 3070,
         | 
| 308 | 
            +
                  "methyltestosterone": 1922,
         | 
| 309 | 
            +
                  "grow": 1416,
         | 
| 310 | 
            +
                  "exclusively": 1153,
         | 
| 311 | 
            +
                  "male": 1842,
         | 
| 312 | 
            +
                  "bigger": 421,
         | 
| 313 | 
            +
                  "species": 2838,
         | 
| 314 | 
            +
                  "sexless": 2715,
         | 
| 315 | 
            +
                  "fry": 1323,
         | 
| 316 | 
            +
                  "stage": 2862,
         | 
| 317 | 
            +
                  "persist": 2224,
         | 
| 318 | 
            +
                  "plate": 2281,
         | 
| 319 | 
            +
                  "pellets": 2211,
         | 
| 320 | 
            +
                  "fed": 1221,
         | 
| 321 | 
            +
                  "terrestrial": 3028,
         | 
| 322 | 
            +
                  "mammals": 1847,
         | 
| 323 | 
            +
                  "pollutants": 2301,
         | 
| 324 | 
            +
                  "poultry": 2329,
         | 
| 325 | 
            +
                  "swine": 2983,
         | 
| 326 | 
            +
                  "beef": 397,
         | 
| 327 | 
            +
                  "eggs": 1071,
         | 
| 328 | 
            +
                  "obviously": 2085,
         | 
| 329 | 
            +
                  "equal": 1112,
         | 
| 330 | 
            +
                  "others": 2134,
         | 
| 331 | 
            +
                  "costs": 800,
         | 
| 332 | 
            +
                  "okay": 2101,
         | 
| 333 | 
            +
                  "consume": 754,
         | 
| 334 | 
            +
                  "moderation": 1961,
         | 
| 335 | 
            +
                  "foremost": 1289,
         | 
| 336 | 
            +
                  "cheap": 601,
         | 
| 337 | 
            +
                  "bottom": 461,
         | 
| 338 | 
            +
                  "feeding": 1223,
         | 
| 339 | 
            +
                  "almost": 210,
         | 
| 340 | 
            +
                  "compared": 700,
         | 
| 341 | 
            +
                  "swimming": 2982,
         | 
| 342 | 
            +
                  "overfed": 2143,
         | 
| 343 | 
            +
                  "weight": 3285,
         | 
| 344 | 
            +
                  "excess": 1151,
         | 
| 345 | 
            +
                  "pesticides": 2231,
         | 
| 346 | 
            +
                  "antibiotics": 250,
         | 
| 347 | 
            +
                  "build": 497,
         | 
| 348 | 
            +
                  "enclosure": 1085,
         | 
| 349 | 
            +
                  "devastating": 941,
         | 
| 350 | 
            +
                  "seabed": 2681,
         | 
| 351 | 
            +
                  "contributing": 773,
         | 
| 352 | 
            +
                  "concerning": 718,
         | 
| 353 | 
            +
                  "instances": 1637,
         | 
| 354 | 
            +
                  "caged": 517,
         | 
| 355 | 
            +
                  "farm": 1206,
         | 
| 356 | 
            +
                  "happen": 1434,
         | 
| 357 | 
            +
                  "major": 1838,
         | 
| 358 | 
            +
                  "issue": 1678,
         | 
| 359 | 
            +
                  "industrial": 1595,
         | 
| 360 | 
            +
                  "pollution": 2303,
         | 
| 361 | 
            +
                  "factories": 1193,
         | 
| 362 | 
            +
                  "tend": 3023,
         | 
| 363 | 
            +
                  "dump": 1035,
         | 
| 364 | 
            +
                  "large": 1729,
         | 
| 365 | 
            +
                  "waste": 3268,
         | 
| 366 | 
            +
                  "waterways": 3270,
         | 
| 367 | 
            +
                  "results": 2597,
         | 
| 368 | 
            +
                  "dioxins": 968,
         | 
| 369 | 
            +
                  "dioxin": 967,
         | 
| 370 | 
            +
                  "compounds": 709,
         | 
| 371 | 
            +
                  "dlcs": 1004,
         | 
| 372 | 
            +
                  "stores": 2892,
         | 
| 373 | 
            +
                  "passed": 2191,
         | 
| 374 | 
            +
                  "via": 3238,
         | 
| 375 | 
            +
                  "consumption": 757,
         | 
| 376 | 
            +
                  "documented": 1008,
         | 
| 377 | 
            +
                  "defects": 894,
         | 
| 378 | 
            +
                  "offspring": 2096,
         | 
| 379 | 
            +
                  "usual": 3198,
         | 
| 380 | 
            +
                  "combat": 683,
         | 
| 381 | 
            +
                  "spray": 2854,
         | 
| 382 | 
            +
                  "enclosures": 1086,
         | 
| 383 | 
            +
                  "case": 549,
         | 
| 384 | 
            +
                  "cage": 516,
         | 
| 385 | 
            +
                  "farming": 1209,
         | 
| 386 | 
            +
                  "populations": 2314,
         | 
| 387 | 
            +
                  "faster": 1212,
         | 
| 388 | 
            +
                  "counterparts": 805,
         | 
| 389 | 
            +
                  "organochlorine": 2127,
         | 
| 390 | 
            +
                  "ocps": 2091,
         | 
| 391 | 
            +
                  "polychlorinated": 2306,
         | 
| 392 | 
            +
                  "biphenyls": 427,
         | 
| 393 | 
            +
                  "pcbs": 2206,
         | 
| 394 | 
            +
                  "polycyclic": 2307,
         | 
| 395 | 
            +
                  "aromatic": 293,
         | 
| 396 | 
            +
                  "hydrocarbons": 1526,
         | 
| 397 | 
            +
                  "pahs": 2165,
         | 
| 398 | 
            +
                  "myriad": 2007,
         | 
| 399 | 
            +
                  "metals": 1913,
         | 
| 400 | 
            +
                  "cadmium": 515,
         | 
| 401 | 
            +
                  "aluminium": 224,
         | 
| 402 | 
            +
                  "cheaper": 602,
         | 
| 403 | 
            +
                  "wise": 3315,
         | 
| 404 | 
            +
                  "reflective": 2524,
         | 
| 405 | 
            +
                  "reach": 2477,
         | 
| 406 | 
            +
                  "35": 62,
         | 
| 407 | 
            +
                  "global": 1370,
         | 
| 408 | 
            +
                  "craze": 818,
         | 
| 409 | 
            +
                  "acids": 127,
         | 
| 410 | 
            +
                  "richly": 2608,
         | 
| 411 | 
            +
                  "tissues": 3077,
         | 
| 412 | 
            +
                  "artificial": 305,
         | 
| 413 | 
            +
                  "ponds": 2308,
         | 
| 414 | 
            +
                  "cages": 518,
         | 
| 415 | 
            +
                  "placed": 2267,
         | 
| 416 | 
            +
                  "jam": 1682,
         | 
| 417 | 
            +
                  "packed": 2162,
         | 
| 418 | 
            +
                  "profit": 2380,
         | 
| 419 | 
            +
                  "rampant": 2458,
         | 
| 420 | 
            +
                  "lice": 1770,
         | 
| 421 | 
            +
                  "herpesvirus": 1482,
         | 
| 422 | 
            +
                  "sleeping": 2786,
         | 
| 423 | 
            +
                  "necrosis": 2021,
         | 
| 424 | 
            +
                  "ailments": 189,
         | 
| 425 | 
            +
                  "devastate": 940,
         | 
| 426 | 
            +
                  "super": 2947,
         | 
| 427 | 
            +
                  "staple": 2870,
         | 
| 428 | 
            +
                  "diets": 958,
         | 
| 429 | 
            +
                  "provides": 2410,
         | 
| 430 | 
            +
                  "approximately": 284,
         | 
| 431 | 
            +
                  "th": 3042,
         | 
| 432 | 
            +
                  "supply": 2952,
         | 
| 433 | 
            +
                  "nutrients": 2078,
         | 
| 434 | 
            +
                  "lean": 1750,
         | 
| 435 | 
            +
                  "relative": 2540,
         | 
| 436 | 
            +
                  "abundance": 111,
         | 
| 437 | 
            +
                  "sometimes": 2819,
         | 
| 438 | 
            +
                  "versus": 3236,
         | 
| 439 | 
            +
                  "favourite": 1216,
         | 
| 440 | 
            +
                  "historically": 1494,
         | 
| 441 | 
            +
                  "eaten": 1057,
         | 
| 442 | 
            +
                  "changing": 591,
         | 
| 443 | 
            +
                  "demand": 913,
         | 
| 444 | 
            +
                  "growing": 1417,
         | 
| 445 | 
            +
                  "roughly": 2628,
         | 
| 446 | 
            +
                  "46": 75,
         | 
| 447 | 
            +
                  "sold": 2809,
         | 
| 448 | 
            +
                  "eating": 1058,
         | 
| 449 | 
            +
                  "aquaculture": 285,
         | 
| 450 | 
            +
                  "explore": 1173,
         | 
| 451 | 
            +
                  "darkest": 872,
         | 
| 452 | 
            +
                  "depths": 926,
         | 
| 453 | 
            +
                  "hopefully": 1508,
         | 
| 454 | 
            +
                  "provide": 2409,
         | 
| 455 | 
            +
                  "insight": 1633,
         | 
| 456 | 
            +
                  "finally": 1246,
         | 
| 457 | 
            +
                  "blocking": 440,
         | 
| 458 | 
            +
                  "cellphone": 571,
         | 
| 459 | 
            +
                  "fibres": 1236,
         | 
| 460 | 
            +
                  "block": 439,
         | 
| 461 | 
            +
                  "rf": 2603,
         | 
| 462 | 
            +
                  "penetrate": 2212,
         | 
| 463 | 
            +
                  "conductive": 729,
         | 
| 464 | 
            +
                  "buying": 511,
         | 
| 465 | 
            +
                  "quality": 2438,
         | 
| 466 | 
            +
                  "unlikely": 3166,
         | 
| 467 | 
            +
                  "protection": 2404,
         | 
| 468 | 
            +
                  "escaping": 1117,
         | 
| 469 | 
            +
                  "forms": 1297,
         | 
| 470 | 
            +
                  "age": 176,
         | 
| 471 | 
            +
                  "limit": 1781,
         | 
| 472 | 
            +
                  "purchasing": 2425,
         | 
| 473 | 
            +
                  "minimizing": 1946,
         | 
| 474 | 
            +
                  "usage": 3192,
         | 
| 475 | 
            +
                  "computer": 710,
         | 
| 476 | 
            +
                  "freedom": 1308,
         | 
| 477 | 
            +
                  "anyways": 270,
         | 
| 478 | 
            +
                  "accessing": 115,
         | 
| 479 | 
            +
                  "telegram": 3017,
         | 
| 480 | 
            +
                  "trying": 3139,
         | 
| 481 | 
            +
                  "phone": 2245,
         | 
| 482 | 
            +
                  "sorry": 2824,
         | 
| 483 | 
            +
                  "delay": 909,
         | 
| 484 | 
            +
                  "article": 302,
         | 
| 485 | 
            +
                  "busy": 505,
         | 
| 486 | 
            +
                  "lately": 1733,
         | 
| 487 | 
            +
                  "crank": 815,
         | 
| 488 | 
            +
                  "articles": 303,
         | 
| 489 | 
            +
                  "hoped": 1507,
         | 
| 490 | 
            +
                  "working": 3330,
         | 
| 491 | 
            +
                  "pumping": 2420,
         | 
| 492 | 
            +
                  "voted": 3255,
         | 
| 493 | 
            +
                  "wbs": 3277,
         | 
| 494 | 
            +
                  "asleep": 315,
         | 
| 495 | 
            +
                  "keep": 1701,
         | 
| 496 | 
            +
                  "airplane": 192,
         | 
| 497 | 
            +
                  "mode": 1958,
         | 
| 498 | 
            +
                  "bed": 395,
         | 
| 499 | 
            +
                  "idea": 1547,
         | 
| 500 | 
            +
                  "wifi": 3310,
         | 
| 501 | 
            +
                  "router": 2630,
         | 
| 502 | 
            +
                  "unnecessary": 3169,
         | 
| 503 | 
            +
                  "notice": 2061,
         | 
| 504 | 
            +
                  "sleep": 2785,
         | 
| 505 | 
            +
                  "regardless": 2531,
         | 
| 506 | 
            +
                  "investing": 1658,
         | 
| 507 | 
            +
                  "belt": 407,
         | 
| 508 | 
            +
                  "clip": 650,
         | 
| 509 | 
            +
                  "keeping": 1702,
         | 
| 510 | 
            +
                  "bag": 366,
         | 
| 511 | 
            +
                  "pocket": 2293,
         | 
| 512 | 
            +
                  "consider": 745,
         | 
| 513 | 
            +
                  "meter": 1914,
         | 
| 514 | 
            +
                  "hf": 1485,
         | 
| 515 | 
            +
                  "35c": 64,
         | 
| 516 | 
            +
                  "frequency": 1313,
         | 
| 517 | 
            +
                  "analyzer": 238,
         | 
| 518 | 
            +
                  "devices": 948,
         | 
| 519 | 
            +
                  "tool": 3083,
         | 
| 520 | 
            +
                  "models": 1959,
         | 
| 521 | 
            +
                  "chinese": 621,
         | 
| 522 | 
            +
                  "brands": 473,
         | 
| 523 | 
            +
                  "least": 1752,
         | 
| 524 | 
            +
                  "indicated": 1589,
         | 
| 525 | 
            +
                  "adolescents": 161,
         | 
| 526 | 
            +
                  "penetrates": 2213,
         | 
| 527 | 
            +
                  "skull": 2780,
         | 
| 528 | 
            +
                  "adult": 164,
         | 
| 529 | 
            +
                  "kids": 1709,
         | 
| 530 | 
            +
                  "measures": 1882,
         | 
| 531 | 
            +
                  "things": 3054,
         | 
| 532 | 
            +
                  "text": 3041,
         | 
| 533 | 
            +
                  "instead": 1639,
         | 
| 534 | 
            +
                  "calling": 520,
         | 
| 535 | 
            +
                  "calls": 521,
         | 
| 536 | 
            +
                  "primary": 2364,
         | 
| 537 | 
            +
                  "headphones": 1457,
         | 
| 538 | 
            +
                  "hold": 1498,
         | 
| 539 | 
            +
                  "minimum": 1947,
         | 
| 540 | 
            +
                  "inch": 1576,
         | 
| 541 | 
            +
                  "head": 1453,
         | 
| 542 | 
            +
                  "invest": 1656,
         | 
| 543 | 
            +
                  "ferrite": 1230,
         | 
| 544 | 
            +
                  "bead": 387,
         | 
| 545 | 
            +
                  "stops": 2889,
         | 
| 546 | 
            +
                  "traveling": 3116,
         | 
| 547 | 
            +
                  "cord": 787,
         | 
| 548 | 
            +
                  "relatively": 2541,
         | 
| 549 | 
            +
                  "inexpensive": 1599,
         | 
| 550 | 
            +
                  "correct": 795,
         | 
| 551 | 
            +
                  "follow": 1281,
         | 
| 552 | 
            +
                  "2018": 42,
         | 
| 553 | 
            +
                  "suppressed": 2956,
         | 
| 554 | 
            +
                  "several": 2712,
         | 
| 555 | 
            +
                  "components": 707,
         | 
| 556 | 
            +
                  "bodys": 446,
         | 
| 557 | 
            +
                  "defense": 896,
         | 
| 558 | 
            +
                  "concurrently": 723,
         | 
| 559 | 
            +
                  "promoting": 2391,
         | 
| 560 | 
            +
                  "colonization": 677,
         | 
| 561 | 
            +
                  "neck": 2020,
         | 
| 562 | 
            +
                  "tumour": 3143,
         | 
| 563 | 
            +
                  "scoff": 2677,
         | 
| 564 | 
            +
                  "interesting": 1645,
         | 
| 565 | 
            +
                  "conducted": 728,
         | 
| 566 | 
            +
                  "denmark": 915,
         | 
| 567 | 
            +
                  "2015": 41,
         | 
| 568 | 
            +
                  "longterm": 1813,
         | 
| 569 | 
            +
                  "slightly": 2790,
         | 
| 570 | 
            +
                  "cancers": 527,
         | 
| 571 | 
            +
                  "basal": 380,
         | 
| 572 | 
            +
                  "squamous": 2859,
         | 
| 573 | 
            +
                  "carcinoma": 538,
         | 
| 574 | 
            +
                  "melanoma": 1892,
         | 
| 575 | 
            +
                  "history": 1495,
         | 
| 576 | 
            +
                  "definately": 900,
         | 
| 577 | 
            +
                  "mobile": 1957,
         | 
| 578 | 
            +
                  "noting": 2064,
         | 
| 579 | 
            +
                  "phones": 2246,
         | 
| 580 | 
            +
                  "emit": 1079,
         | 
| 581 | 
            +
                  "frequencies": 1312,
         | 
| 582 | 
            +
                  "vary": 3219,
         | 
| 583 | 
            +
                  "national": 2014,
         | 
| 584 | 
            +
                  "institute": 1640,
         | 
| 585 | 
            +
                  "3g": 67,
         | 
| 586 | 
            +
                  "lte": 1822,
         | 
| 587 | 
            +
                  "4g": 77,
         | 
| 588 | 
            +
                  "range": 2463,
         | 
| 589 | 
            +
                  "ghz": 1360,
         | 
| 590 | 
            +
                  "5g": 83,
         | 
| 591 | 
            +
                  "anticipated": 254,
         | 
| 592 | 
            +
                  "roll": 2620,
         | 
| 593 | 
            +
                  "advise": 168,
         | 
| 594 | 
            +
                  "plague": 2271,
         | 
| 595 | 
            +
                  "international": 1650,
         | 
| 596 | 
            +
                  "agency": 179,
         | 
| 597 | 
            +
                  "iarc": 1544,
         | 
| 598 | 
            +
                  "classified": 644,
         | 
| 599 | 
            +
                  "spanish": 2834,
         | 
| 600 | 
            +
                  "scientists": 2676,
         | 
| 601 | 
            +
                  "concluded": 722,
         | 
| 602 | 
            +
                  "determine": 939,
         | 
| 603 | 
            +
                  "short": 2740,
         | 
| 604 | 
            +
                  "term": 3026,
         | 
| 605 | 
            +
                  "deemed": 892,
         | 
| 606 | 
            +
                  "specifically": 2840,
         | 
| 607 | 
            +
                  "concentrated": 712,
         | 
| 608 | 
            +
                  "spot": 2852,
         | 
| 609 | 
            +
                  "shown": 2745,
         | 
| 610 | 
            +
                  "positively": 2318,
         | 
| 611 | 
            +
                  "acoustic": 129,
         | 
| 612 | 
            +
                  "nueromas": 2070,
         | 
| 613 | 
            +
                  "salivary": 2652,
         | 
| 614 | 
            +
                  "gland": 1367,
         | 
| 615 | 
            +
                  "tumours": 3144,
         | 
| 616 | 
            +
                  "gonna": 1387,
         | 
| 617 | 
            +
                  "hours": 1516,
         | 
| 618 | 
            +
                  "everyday": 1138,
         | 
| 619 | 
            +
                  "allow": 208,
         | 
| 620 | 
            +
                  "cellphones": 572,
         | 
| 621 | 
            +
                  "radio": 2452,
         | 
| 622 | 
            +
                  "send": 2702,
         | 
| 623 | 
            +
                  "collect": 670,
         | 
| 624 | 
            +
                  "signals": 2751,
         | 
| 625 | 
            +
                  "whenever": 3296,
         | 
| 626 | 
            +
                  "device": 947,
         | 
| 627 | 
            +
                  "connected": 736,
         | 
| 628 | 
            +
                  "wi": 3304,
         | 
| 629 | 
            +
                  "fi": 1235,
         | 
| 630 | 
            +
                  "transmitting": 3114,
         | 
| 631 | 
            +
                  "rays": 2476,
         | 
| 632 | 
            +
                  "harmful": 1446,
         | 
| 633 | 
            +
                  "science": 2674,
         | 
| 634 | 
            +
                  "hesitant": 1484,
         | 
| 635 | 
            +
                  "declare": 889,
         | 
| 636 | 
            +
                  "noses": 2058,
         | 
| 637 | 
            +
                  "shekels": 2727,
         | 
| 638 | 
            +
                  "made": 1832,
         | 
| 639 | 
            +
                  "sunscreen": 2945,
         | 
| 640 | 
            +
                  "funcream": 1329,
         | 
| 641 | 
            +
                  "struggling": 2909,
         | 
| 642 | 
            +
                  "sun": 2939,
         | 
| 643 | 
            +
                  "burn": 501,
         | 
| 644 | 
            +
                  "based": 382,
         | 
| 645 | 
            +
                  "uv": 3204,
         | 
| 646 | 
            +
                  "rated": 2471,
         | 
| 647 | 
            +
                  "sunclothing": 2941,
         | 
| 648 | 
            +
                  "ensuring": 1103,
         | 
| 649 | 
            +
                  "wide": 3306,
         | 
| 650 | 
            +
                  "brimmed": 486,
         | 
| 651 | 
            +
                  "sunhat": 2943,
         | 
| 652 | 
            +
                  "cautious": 565,
         | 
| 653 | 
            +
                  "sunglasses": 2942,
         | 
| 654 | 
            +
                  "pineal": 2261,
         | 
| 655 | 
            +
                  "responsible": 2591,
         | 
| 656 | 
            +
                  "melatonin": 1893,
         | 
| 657 | 
            +
                  "truthfully": 3138,
         | 
| 658 | 
            +
                  "tan": 2999,
         | 
| 659 | 
            +
                  "around": 294,
         | 
| 660 | 
            +
                  "11am": 5,
         | 
| 661 | 
            +
                  "1pm": 32,
         | 
| 662 | 
            +
                  "rarely": 2467,
         | 
| 663 | 
            +
                  "sunscreens": 2946,
         | 
| 664 | 
            +
                  "regular": 2535,
         | 
| 665 | 
            +
                  "applications": 280,
         | 
| 666 | 
            +
                  "creams": 819,
         | 
| 667 | 
            +
                  "alcohol": 196,
         | 
| 668 | 
            +
                  "aloe": 211,
         | 
| 669 | 
            +
                  "products": 2378,
         | 
| 670 | 
            +
                  "hydrate": 1524,
         | 
| 671 | 
            +
                  "got": 1393,
         | 
| 672 | 
            +
                  "beautiful": 390,
         | 
| 673 | 
            +
                  "gift": 1361,
         | 
| 674 | 
            +
                  "white": 3299,
         | 
| 675 | 
            +
                  "boy": 465,
         | 
| 676 | 
            +
                  "summer": 2938,
         | 
| 677 | 
            +
                  "burns": 502,
         | 
| 678 | 
            +
                  "mineral": 1940,
         | 
| 679 | 
            +
                  "excellent": 1149,
         | 
| 680 | 
            +
                  "job": 1689,
         | 
| 681 | 
            +
                  "sunburns": 2940,
         | 
| 682 | 
            +
                  "hormore": 1512,
         | 
| 683 | 
            +
                  "disruption": 987,
         | 
| 684 | 
            +
                  "careful": 541,
         | 
| 685 | 
            +
                  "spf": 2844,
         | 
| 686 | 
            +
                  "titanium": 3078,
         | 
| 687 | 
            +
                  "dioxide": 966,
         | 
| 688 | 
            +
                  "debated": 882,
         | 
| 689 | 
            +
                  "potential": 2326,
         | 
| 690 | 
            +
                  "adverse": 166,
         | 
| 691 | 
            +
                  "carcinogenic": 536,
         | 
| 692 | 
            +
                  "genotoxicity": 1356,
         | 
| 693 | 
            +
                  "highly": 1491,
         | 
| 694 | 
            +
                  "whether": 3297,
         | 
| 695 | 
            +
                  "affect": 169,
         | 
| 696 | 
            +
                  "systemically": 2989,
         | 
| 697 | 
            +
                  "benzene": 411,
         | 
| 698 | 
            +
                  "analogs": 237,
         | 
| 699 | 
            +
                  "pull": 2416,
         | 
| 700 | 
            +
                  "essentially": 1120,
         | 
| 701 | 
            +
                  "analog": 236,
         | 
| 702 | 
            +
                  "uvb": 3206,
         | 
| 703 | 
            +
                  "little": 1803,
         | 
| 704 | 
            +
                  "uva": 3205,
         | 
| 705 | 
            +
                  "supressing": 2959,
         | 
| 706 | 
            +
                  "aging": 184,
         | 
| 707 | 
            +
                  "culprit": 840,
         | 
| 708 | 
            +
                  "susceptible": 2972,
         | 
| 709 | 
            +
                  "pale": 2169,
         | 
| 710 | 
            +
                  "absolute": 104,
         | 
| 711 | 
            +
                  "base": 381,
         | 
| 712 | 
            +
                  "truly": 3135,
         | 
| 713 | 
            +
                  "amazing": 227,
         | 
| 714 | 
            +
                  "adaptable": 139,
         | 
| 715 | 
            +
                  "harvard": 1449,
         | 
| 716 | 
            +
                  "admit": 160,
         | 
| 717 | 
            +
                  "smear": 2797,
         | 
| 718 | 
            +
                  "equivalent": 1114,
         | 
| 719 | 
            +
                  "wearing": 3282,
         | 
| 720 | 
            +
                  "height": 1468,
         | 
| 721 | 
            +
                  "northern": 2056,
         | 
| 722 | 
            +
                  "hemispherians": 1475,
         | 
| 723 | 
            +
                  "spending": 2842,
         | 
| 724 | 
            +
                  "outdoors": 2136,
         | 
| 725 | 
            +
                  "burnt": 503,
         | 
| 726 | 
            +
                  "hide": 1487,
         | 
| 727 | 
            +
                  "sprays": 2855,
         | 
| 728 | 
            +
                  "particularly": 2187,
         | 
| 729 | 
            +
                  "graph": 1406,
         | 
| 730 | 
            +
                  "connecticut": 737,
         | 
| 731 | 
            +
                  "tumor": 3142,
         | 
| 732 | 
            +
                  "registry": 2534,
         | 
| 733 | 
            +
                  "introduction": 1654,
         | 
| 734 | 
            +
                  "general": 1348,
         | 
| 735 | 
            +
                  "significantly": 2754,
         | 
| 736 | 
            +
                  "partially": 2185,
         | 
| 737 | 
            +
                  "explained": 1169,
         | 
| 738 | 
            +
                  "destruction": 935,
         | 
| 739 | 
            +
                  "ozone": 2156,
         | 
| 740 | 
            +
                  "layer": 1742,
         | 
| 741 | 
            +
                  "note": 2059,
         | 
| 742 | 
            +
                  "ingredients": 1620,
         | 
| 743 | 
            +
                  "brand": 472,
         | 
| 744 | 
            +
                  "parents": 2180,
         | 
| 745 | 
            +
                  "expecting": 1161,
         | 
| 746 | 
            +
                  "pray": 2340,
         | 
| 747 | 
            +
                  "granted": 1405,
         | 
| 748 | 
            +
                  "wisdom": 3314,
         | 
| 749 | 
            +
                  "whats": 3293,
         | 
| 750 | 
            +
                  "child": 617,
         | 
| 751 | 
            +
                  "bring": 487,
         | 
| 752 | 
            +
                  "joy": 1692,
         | 
| 753 | 
            +
                  "blessing": 437,
         | 
| 754 | 
            +
                  "duty": 1038,
         | 
| 755 | 
            +
                  "jewish": 1686,
         | 
| 756 | 
            +
                  "poison": 2295,
         | 
| 757 | 
            +
                  "every": 1137,
         | 
| 758 | 
            +
                  "opportunity": 2113,
         | 
| 759 | 
            +
                  "difficult": 960,
         | 
| 760 | 
            +
                  "raise": 2455,
         | 
| 761 | 
            +
                  "adjusted": 154,
         | 
| 762 | 
            +
                  "carry": 548,
         | 
| 763 | 
            +
                  "bloodline": 443,
         | 
| 764 | 
            +
                  "forward": 1303,
         | 
| 765 | 
            +
                  "terrific": 3030,
         | 
| 766 | 
            +
                  "parent": 2179,
         | 
| 767 | 
            +
                  "mean": 1877,
         | 
| 768 | 
            +
                  "perfect": 2220,
         | 
| 769 | 
            +
                  "mistakes": 1953,
         | 
| 770 | 
            +
                  "thats": 3045,
         | 
| 771 | 
            +
                  "right": 2609,
         | 
| 772 | 
            +
                  "decisions": 888,
         | 
| 773 | 
            +
                  "includes": 1580,
         | 
| 774 | 
            +
                  "choices": 627,
         | 
| 775 | 
            +
                  "choosing": 631,
         | 
| 776 | 
            +
                  "cloth": 654,
         | 
| 777 | 
            +
                  "diapers": 952,
         | 
| 778 | 
            +
                  "soon": 2822,
         | 
| 779 | 
            +
                  "contribute": 772,
         | 
| 780 | 
            +
                  "rebirth": 2492,
         | 
| 781 | 
            +
                  "race": 2448,
         | 
| 782 | 
            +
                  "life": 1773,
         | 
| 783 | 
            +
                  "wish": 3316,
         | 
| 784 | 
            +
                  "godspeed": 1384,
         | 
| 785 | 
            +
                  "troubling": 3131,
         | 
| 786 | 
            +
                  "tendency": 3025,
         | 
| 787 | 
            +
                  "disposable": 981,
         | 
| 788 | 
            +
                  "wick": 3305,
         | 
| 789 | 
            +
                  "moisture": 1966,
         | 
| 790 | 
            +
                  "chance": 588,
         | 
| 791 | 
            +
                  "utis": 3203,
         | 
| 792 | 
            +
                  "female": 1228,
         | 
| 793 | 
            +
                  "less": 1764,
         | 
| 794 | 
            +
                  "serious": 2706,
         | 
| 795 | 
            +
                  "physical": 2253,
         | 
| 796 | 
            +
                  "psychological": 2415,
         | 
| 797 | 
            +
                  "consideration": 746,
         | 
| 798 | 
            +
                  "absorption": 109,
         | 
| 799 | 
            +
                  "baby": 360,
         | 
| 800 | 
            +
                  "struggles": 2908,
         | 
| 801 | 
            +
                  "associate": 324,
         | 
| 802 | 
            +
                  "wetness": 3291,
         | 
| 803 | 
            +
                  "urination": 3188,
         | 
| 804 | 
            +
                  "prolongs": 2387,
         | 
| 805 | 
            +
                  "length": 1762,
         | 
| 806 | 
            +
                  "potty": 2328,
         | 
| 807 | 
            +
                  "training": 3105,
         | 
| 808 | 
            +
                  "increases": 1583,
         | 
| 809 | 
            +
                  "hardship": 1442,
         | 
| 810 | 
            +
                  "easier": 1053,
         | 
| 811 | 
            +
                  "considering": 749,
         | 
| 812 | 
            +
                  "alternative": 218,
         | 
| 813 | 
            +
                  "want": 3260,
         | 
| 814 | 
            +
                  "touch": 3092,
         | 
| 815 | 
            +
                  "upon": 3183,
         | 
| 816 | 
            +
                  "financial": 1248,
         | 
| 817 | 
            +
                  "save": 2666,
         | 
| 818 | 
            +
                  "significant": 2753,
         | 
| 819 | 
            +
                  "amount": 234,
         | 
| 820 | 
            +
                  "money": 1971,
         | 
| 821 | 
            +
                  "tradeoff": 3103,
         | 
| 822 | 
            +
                  "taking": 2997,
         | 
| 823 | 
            +
                  "upfront": 3181,
         | 
| 824 | 
            +
                  "priority": 2368,
         | 
| 825 | 
            +
                  "safest": 2645,
         | 
| 826 | 
            +
                  "option": 2117,
         | 
| 827 | 
            +
                  "prioritized": 2367,
         | 
| 828 | 
            +
                  "superabsorption": 2948,
         | 
| 829 | 
            +
                  "commonly": 694,
         | 
| 830 | 
            +
                  "sodium": 2803,
         | 
| 831 | 
            +
                  "polyacrylate": 2304,
         | 
| 832 | 
            +
                  "formerly": 1294,
         | 
| 833 | 
            +
                  "sanitary": 2660,
         | 
| 834 | 
            +
                  "shock": 2732,
         | 
| 835 | 
            +
                  "syndrome": 2986,
         | 
| 836 | 
            +
                  "scare": 2672,
         | 
| 837 | 
            +
                  "80s": 91,
         | 
| 838 | 
            +
                  "furthermore": 1336,
         | 
| 839 | 
            +
                  "irritation": 1674,
         | 
| 840 | 
            +
                  "staph": 2869,
         | 
| 841 | 
            +
                  "infections": 1605,
         | 
| 842 | 
            +
                  "tributyl": 3125,
         | 
| 843 | 
            +
                  "tin": 3072,
         | 
| 844 | 
            +
                  "additive": 147,
         | 
| 845 | 
            +
                  "diaper": 951,
         | 
| 846 | 
            +
                  "hydrophobic": 1531,
         | 
| 847 | 
            +
                  "properties": 2396,
         | 
| 848 | 
            +
                  "repels": 2560,
         | 
| 849 | 
            +
                  "useful": 3194,
         | 
| 850 | 
            +
                  "dryness": 1030,
         | 
| 851 | 
            +
                  "top": 3086,
         | 
| 852 | 
            +
                  "anti": 248,
         | 
| 853 | 
            +
                  "fouling": 1306,
         | 
| 854 | 
            +
                  "agent": 180,
         | 
| 855 | 
            +
                  "paint": 2167,
         | 
| 856 | 
            +
                  "whiles": 3298,
         | 
| 857 | 
            +
                  "endocrine": 1092,
         | 
| 858 | 
            +
                  "functions": 1332,
         | 
| 859 | 
            +
                  "dangers": 870,
         | 
| 860 | 
            +
                  "numerous": 2072,
         | 
| 861 | 
            +
                  "taken": 2996,
         | 
| 862 | 
            +
                  "lightly": 1778,
         | 
| 863 | 
            +
                  "developmental": 946,
         | 
| 864 | 
            +
                  "damage": 863,
         | 
| 865 | 
            +
                  "interfere": 1647,
         | 
| 866 | 
            +
                  "infants": 1601,
         | 
| 867 | 
            +
                  "genitals": 1354,
         | 
| 868 | 
            +
                  "constant": 752,
         | 
| 869 | 
            +
                  "contact": 758,
         | 
| 870 | 
            +
                  "disposables": 982,
         | 
| 871 | 
            +
                  "trace": 3098,
         | 
| 872 | 
            +
                  "acceptable": 114,
         | 
| 873 | 
            +
                  "incidences": 1577,
         | 
| 874 | 
            +
                  "chronic": 633,
         | 
| 875 | 
            +
                  "rash": 2468,
         | 
| 876 | 
            +
                  "respiratory": 2587,
         | 
| 877 | 
            +
                  "asthma": 329,
         | 
| 878 | 
            +
                  "infertility": 1606,
         | 
| 879 | 
            +
                  "testicular": 3035,
         | 
| 880 | 
            +
                  "liver": 1804,
         | 
| 881 | 
            +
                  "release": 2543,
         | 
| 882 | 
            +
                  "volatile": 3254,
         | 
| 883 | 
            +
                  "organic": 2124,
         | 
| 884 | 
            +
                  "vocs": 3253,
         | 
| 885 | 
            +
                  "ethylbenzene": 1130,
         | 
| 886 | 
            +
                  "phthalate": 2252,
         | 
| 887 | 
            +
                  "toluene": 3082,
         | 
| 888 | 
            +
                  "xylene": 3347,
         | 
| 889 | 
            +
                  "neurological": 2031,
         | 
| 890 | 
            +
                  "issues": 1679,
         | 
| 891 | 
            +
                  "plastics": 2280,
         | 
| 892 | 
            +
                  "microplastics": 1927,
         | 
| 893 | 
            +
                  "infant": 1600,
         | 
| 894 | 
            +
                  "expected": 1160,
         | 
| 895 | 
            +
                  "dangerously": 869,
         | 
| 896 | 
            +
                  "seemingly": 2690,
         | 
| 897 | 
            +
                  "simple": 2759,
         | 
| 898 | 
            +
                  "harmless": 1447,
         | 
| 899 | 
            +
                  "decision": 887,
         | 
| 900 | 
            +
                  "raising": 2457,
         | 
| 901 | 
            +
                  "puts": 2433,
         | 
| 902 | 
            +
                  "burden": 500,
         | 
| 903 | 
            +
                  "young": 3360,
         | 
| 904 | 
            +
                  "toward": 3094,
         | 
| 905 | 
            +
                  "healthier": 1459,
         | 
| 906 | 
            +
                  "alternatives": 220,
         | 
| 907 | 
            +
                  "vast": 3222,
         | 
| 908 | 
            +
                  "bleached": 434,
         | 
| 909 | 
            +
                  "chlorine": 625,
         | 
| 910 | 
            +
                  "unintended": 3159,
         | 
| 911 | 
            +
                  "consequence": 743,
         | 
| 912 | 
            +
                  "leaving": 1756,
         | 
| 913 | 
            +
                  "residual": 2576,
         | 
| 914 | 
            +
                  "manufacturers": 1855,
         | 
| 915 | 
            +
                  "claim": 640,
         | 
| 916 | 
            +
                  "unable": 3150,
         | 
| 917 | 
            +
                  "inadequate": 1575,
         | 
| 918 | 
            +
                  "testing": 3036,
         | 
| 919 | 
            +
                  "prove": 2406,
         | 
| 920 | 
            +
                  "companies": 697,
         | 
| 921 | 
            +
                  "manufacture": 1853,
         | 
| 922 | 
            +
                  "extremely": 1186,
         | 
| 923 | 
            +
                  "untrustworthy": 3177,
         | 
| 924 | 
            +
                  "poor": 2309,
         | 
| 925 | 
            +
                  "track": 3099,
         | 
| 926 | 
            +
                  "records": 2508,
         | 
| 927 | 
            +
                  "johnson": 1690,
         | 
| 928 | 
            +
                  "processing": 2373,
         | 
| 929 | 
            +
                  "eels": 1063,
         | 
| 930 | 
            +
                  "fit": 1258,
         | 
| 931 | 
            +
                  "readily": 2484,
         | 
| 932 | 
            +
                  "remain": 2546,
         | 
| 933 | 
            +
                  "concentrate": 711,
         | 
| 934 | 
            +
                  "dangerous": 868,
         | 
| 935 | 
            +
                  "patented": 2196,
         | 
| 936 | 
            +
                  "antioxidant": 261,
         | 
| 937 | 
            +
                  "monsanto": 1976,
         | 
| 938 | 
            +
                  "slow": 2792,
         | 
| 939 | 
            +
                  "industries": 1596,
         | 
| 940 | 
            +
                  "level": 1768,
         | 
| 941 | 
            +
                  "regulated": 2536,
         | 
| 942 | 
            +
                  "countries": 807,
         | 
| 943 | 
            +
                  "western": 3290,
         | 
| 944 | 
            +
                  "proven": 2408,
         | 
| 945 | 
            +
                  "dna": 1006,
         | 
| 946 | 
            +
                  "lymphatic": 1828,
         | 
| 947 | 
            +
                  "presence": 2347,
         | 
| 948 | 
            +
                  "frightening": 1319,
         | 
| 949 | 
            +
                  "ethoxyquins": 1129,
         | 
| 950 | 
            +
                  "cross": 833,
         | 
| 951 | 
            +
                  "blood": 441,
         | 
| 952 | 
            +
                  "barrier": 378,
         | 
| 953 | 
            +
                  "complete": 702,
         | 
| 954 | 
            +
                  "lack": 1722,
         | 
| 955 | 
            +
                  "causes": 564,
         | 
| 956 | 
            +
                  "produced": 2374,
         | 
| 957 | 
            +
                  "product": 2376,
         | 
| 958 | 
            +
                  "power": 2333,
         | 
| 959 | 
            +
                  "plants": 2277,
         | 
| 960 | 
            +
                  "degree": 904,
         | 
| 961 | 
            +
                  "toxin": 3097,
         | 
| 962 | 
            +
                  "soluble": 2813,
         | 
| 963 | 
            +
                  "form": 1290,
         | 
| 964 | 
            +
                  "methylmercury": 1921,
         | 
| 965 | 
            +
                  "kidneys": 1708,
         | 
| 966 | 
            +
                  "lungs": 1826,
         | 
| 967 | 
            +
                  "minamata": 1937,
         | 
| 968 | 
            +
                  "hunter": 1521,
         | 
| 969 | 
            +
                  "russell": 2638,
         | 
| 970 | 
            +
                  "main": 1834,
         | 
| 971 | 
            +
                  "contamination": 764,
         | 
| 972 | 
            +
                  "particular": 2186,
         | 
| 973 | 
            +
                  "making": 1840,
         | 
| 974 | 
            +
                  "posts": 2322,
         | 
| 975 | 
            +
                  "feel": 1224,
         | 
| 976 | 
            +
                  "provinces": 2412,
         | 
| 977 | 
            +
                  "africa": 175,
         | 
| 978 | 
            +
                  "chaos": 594,
         | 
| 979 | 
            +
                  "nogs": 2051,
         | 
| 980 | 
            +
                  "chimping": 619,
         | 
| 981 | 
            +
                  "harder": 1440,
         | 
| 982 | 
            +
                  "american": 230,
         | 
| 983 | 
            +
                  "floyd": 1273,
         | 
| 984 | 
            +
                  "police": 2297,
         | 
| 985 | 
            +
                  "army": 292,
         | 
| 986 | 
            +
                  "useless": 3195,
         | 
| 987 | 
            +
                  "shopping": 2739,
         | 
| 988 | 
            +
                  "districts": 1002,
         | 
| 989 | 
            +
                  "looted": 1816,
         | 
| 990 | 
            +
                  "heading": 1456,
         | 
| 991 | 
            +
                  "residential": 2575,
         | 
| 992 | 
            +
                  "areas": 289,
         | 
| 993 | 
            +
                  "seeing": 2689,
         | 
| 994 | 
            +
                  "hand": 1432,
         | 
| 995 | 
            +
                  "gander": 1341,
         | 
| 996 | 
            +
                  "group": 1414,
         | 
| 997 | 
            +
                  "members": 1895,
         | 
| 998 | 
            +
                  "tor": 3089,
         | 
| 999 | 
            +
                  "stuck": 2910,
         | 
| 1000 | 
            +
                  "durban": 1037,
         | 
| 1001 | 
            +
                  "hardest": 1441,
         | 
| 1002 | 
            +
                  "hit": 1496,
         | 
| 1003 | 
            +
                  "faces": 1189,
         | 
| 1004 | 
            +
                  "tough": 3093,
         | 
| 1005 | 
            +
                  "ahead": 188,
         | 
| 1006 | 
            +
                  "anyone": 267,
         | 
| 1007 | 
            +
                  "spare": 2835,
         | 
| 1008 | 
            +
                  "cash": 551,
         | 
| 1009 | 
            +
                  "chip": 622,
         | 
| 1010 | 
            +
                  "buy": 510,
         | 
| 1011 | 
            +
                  "ammo": 232,
         | 
| 1012 | 
            +
                  "coming": 688,
         | 
| 1013 | 
            +
                  "nognado": 2050,
         | 
| 1014 | 
            +
                  "headed": 1455,
         | 
| 1015 | 
            +
                  "think": 3055,
         | 
| 1016 | 
            +
                  "real": 2487,
         | 
| 1017 | 
            +
                  "cool": 786,
         | 
| 1018 | 
            +
                  "monero": 1970,
         | 
| 1019 | 
            +
                  "42cjt5ov252sqlj4mzfxcgkbzcu7kxunnbu4hamir8ns5ewwz1bhup2gc1whdbesdmwijm771ffdgca2xo7aldux63jdq87": 72,
         | 
| 1020 | 
            +
                  "paypal": 2204,
         | 
| 1021 | 
            +
                  "nordstrength": 2053,
         | 
| 1022 | 
            +
                  "gmail": 1380,
         | 
| 1023 | 
            +
                  "com": 682,
         | 
| 1024 | 
            +
                  "zuma": 3369,
         | 
| 1025 | 
            +
                  "please": 2287,
         | 
| 1026 | 
            +
                  "page": 2164,
         | 
| 1027 | 
            +
                  "happily": 1438,
         | 
| 1028 | 
            +
                  "post": 2320,
         | 
| 1029 | 
            +
                  "links": 1789,
         | 
| 1030 | 
            +
                  "bless": 436,
         | 
| 1031 | 
            +
                  "sulfates": 2937,
         | 
| 1032 | 
            +
                  "shampoos": 2721,
         | 
| 1033 | 
            +
                  "problem": 2369,
         | 
| 1034 | 
            +
                  "safety": 2646,
         | 
| 1035 | 
            +
                  "scalp": 2670,
         | 
| 1036 | 
            +
                  "wash": 3265,
         | 
| 1037 | 
            +
                  "hair": 1428,
         | 
| 1038 | 
            +
                  "experts": 1166,
         | 
| 1039 | 
            +
                  "believe": 405,
         | 
| 1040 | 
            +
                  "frequent": 1314,
         | 
| 1041 | 
            +
                  "maintaining": 1837,
         | 
| 1042 | 
            +
                  "washing": 3267,
         | 
| 1043 | 
            +
                  "week": 3283,
         | 
| 1044 | 
            +
                  "derived": 927,
         | 
| 1045 | 
            +
                  "coconut": 661,
         | 
| 1046 | 
            +
                  "palm": 2170,
         | 
| 1047 | 
            +
                  "oil": 2098,
         | 
| 1048 | 
            +
                  "stripping": 2902,
         | 
| 1049 | 
            +
                  "attached": 336,
         | 
| 1050 | 
            +
                  "charts": 598,
         | 
| 1051 | 
            +
                  "sulfate": 2936,
         | 
| 1052 | 
            +
                  "shampoo": 2720,
         | 
| 1053 | 
            +
                  "definitely": 902,
         | 
| 1054 | 
            +
                  "kill": 1712,
         | 
| 1055 | 
            +
                  "maintain": 1836,
         | 
| 1056 | 
            +
                  "weakened": 3280,
         | 
| 1057 | 
            +
                  "caused": 563,
         | 
| 1058 | 
            +
                  "1996": 29,
         | 
| 1059 | 
            +
                  "dermatitis": 928,
         | 
| 1060 | 
            +
                  "ceramides": 578,
         | 
| 1061 | 
            +
                  "waxy": 3275,
         | 
| 1062 | 
            +
                  "lipid": 1790,
         | 
| 1063 | 
            +
                  "surfacants": 2964,
         | 
| 1064 | 
            +
                  "leave": 1753,
         | 
| 1065 | 
            +
                  "dehydrated": 906,
         | 
| 1066 | 
            +
                  "dry": 1029,
         | 
| 1067 | 
            +
                  "factor": 1192,
         | 
| 1068 | 
            +
                  "eczema": 1061,
         | 
| 1069 | 
            +
                  "acne": 128,
         | 
| 1070 | 
            +
                  "irritate": 1673,
         | 
| 1071 | 
            +
                  "eyes": 1187,
         | 
| 1072 | 
            +
                  "painful": 2166,
         | 
| 1073 | 
            +
                  "connection": 738,
         | 
| 1074 | 
            +
                  "laureth": 1740,
         | 
| 1075 | 
            +
                  "contaminated": 762,
         | 
| 1076 | 
            +
                  "dioxane": 965,
         | 
| 1077 | 
            +
                  "rodents": 2617,
         | 
| 1078 | 
            +
                  "somewhere": 2821,
         | 
| 1079 | 
            +
                  "population": 2313,
         | 
| 1080 | 
            +
                  "allergy": 207,
         | 
| 1081 | 
            +
                  "suffer": 2925,
         | 
| 1082 | 
            +
                  "allergic": 205,
         | 
| 1083 | 
            +
                  "lauryl": 1741,
         | 
| 1084 | 
            +
                  "become": 392,
         | 
| 1085 | 
            +
                  "cleaning": 646,
         | 
| 1086 | 
            +
                  "laundry": 1739,
         | 
| 1087 | 
            +
                  "degenerate": 903,
         | 
| 1088 | 
            +
                  "dish": 977,
         | 
| 1089 | 
            +
                  "soaps": 2800,
         | 
| 1090 | 
            +
                  "collectively": 673,
         | 
| 1091 | 
            +
                  "simply": 2762,
         | 
| 1092 | 
            +
                  "thick": 3051,
         | 
| 1093 | 
            +
                  "foamy": 1278,
         | 
| 1094 | 
            +
                  "lather": 1735,
         | 
| 1095 | 
            +
                  "created": 821,
         | 
| 1096 | 
            +
                  "surfactants": 2966,
         | 
| 1097 | 
            +
                  "meaning": 1878,
         | 
| 1098 | 
            +
                  "amplify": 235,
         | 
| 1099 | 
            +
                  "achieve": 122,
         | 
| 1100 | 
            +
                  "considered": 748,
         | 
| 1101 | 
            +
                  "threshold": 3063,
         | 
| 1102 | 
            +
                  "proteins": 2405,
         | 
| 1103 | 
            +
                  "oils": 2099,
         | 
| 1104 | 
            +
                  "required": 2569,
         | 
| 1105 | 
            +
                  "90": 95,
         | 
| 1106 | 
            +
                  "mostly": 1984,
         | 
| 1107 | 
            +
                  "keratin": 1703,
         | 
| 1108 | 
            +
                  "effect": 1064,
         | 
| 1109 | 
            +
                  "split": 2850,
         | 
| 1110 | 
            +
                  "ends": 1095,
         | 
| 1111 | 
            +
                  "brittle": 490,
         | 
| 1112 | 
            +
                  "loss": 1818,
         | 
| 1113 | 
            +
                  "shilajit": 2730,
         | 
| 1114 | 
            +
                  "testosterone": 3037,
         | 
| 1115 | 
            +
                  "junkies": 1697,
         | 
| 1116 | 
            +
                  "miss": 1952,
         | 
| 1117 | 
            +
                  "sure": 2962,
         | 
| 1118 | 
            +
                  "check": 603,
         | 
| 1119 | 
            +
                  "give": 1364,
         | 
| 1120 | 
            +
                  "thoughts": 3061,
         | 
| 1121 | 
            +
                  "huge": 1519,
         | 
| 1122 | 
            +
                  "thanks": 3044,
         | 
| 1123 | 
            +
                  "lifts": 1775,
         | 
| 1124 | 
            +
                  "spirits": 2847,
         | 
| 1125 | 
            +
                  "waking": 3257,
         | 
| 1126 | 
            +
                  "poisons": 2296,
         | 
| 1127 | 
            +
                  "slip": 2791,
         | 
| 1128 | 
            +
                  "everything": 1139,
         | 
| 1129 | 
            +
                  "gotta": 1394,
         | 
| 1130 | 
            +
                  "next": 2045,
         | 
| 1131 | 
            +
                  "generation": 1350,
         | 
| 1132 | 
            +
                  "questions": 2443,
         | 
| 1133 | 
            +
                  "comments": 690,
         | 
| 1134 | 
            +
                  "join": 1691,
         | 
| 1135 | 
            +
                  "discussion": 976,
         | 
| 1136 | 
            +
                  "chatroom": 600,
         | 
| 1137 | 
            +
                  "leukemia": 1767,
         | 
| 1138 | 
            +
                  "hormone": 1510,
         | 
| 1139 | 
            +
                  "disruptor": 988,
         | 
| 1140 | 
            +
                  "hormonal": 1509,
         | 
| 1141 | 
            +
                  "imbalances": 1556,
         | 
| 1142 | 
            +
                  "hyperthyroidism": 1540,
         | 
| 1143 | 
            +
                  "thyroid": 3067,
         | 
| 1144 | 
            +
                  "aquatic": 287,
         | 
| 1145 | 
            +
                  "absorb": 106,
         | 
| 1146 | 
            +
                  "back": 361,
         | 
| 1147 | 
            +
                  "ingestion": 1618,
         | 
| 1148 | 
            +
                  "interestingly": 1646,
         | 
| 1149 | 
            +
                  "environmental": 1106,
         | 
| 1150 | 
            +
                  "ewg": 1143,
         | 
| 1151 | 
            +
                  "75": 90,
         | 
| 1152 | 
            +
                  "tested": 3034,
         | 
| 1153 | 
            +
                  "crap": 816,
         | 
| 1154 | 
            +
                  "benzyl": 414,
         | 
| 1155 | 
            +
                  "benzoate": 412,
         | 
| 1156 | 
            +
                  "oxybenzoate": 2154,
         | 
| 1157 | 
            +
                  "methoxydibenzoylmethane": 1918,
         | 
| 1158 | 
            +
                  "break": 476,
         | 
| 1159 | 
            +
                  "benzoic": 413,
         | 
| 1160 | 
            +
                  "acid": 124,
         | 
| 1161 | 
            +
                  "petroleum": 2234,
         | 
| 1162 | 
            +
                  "api": 271,
         | 
| 1163 | 
            +
                  "generally": 1349,
         | 
| 1164 | 
            +
                  "absolutely": 105,
         | 
| 1165 | 
            +
                  "concentration": 713,
         | 
| 1166 | 
            +
                  "zero": 3365,
         | 
| 1167 | 
            +
                  "fda": 1217,
         | 
| 1168 | 
            +
                  "2020": 44,
         | 
| 1169 | 
            +
                  "absorbed": 107,
         | 
| 1170 | 
            +
                  "linger": 1785,
         | 
| 1171 | 
            +
                  "weeks": 3284,
         | 
| 1172 | 
            +
                  "single": 2765,
         | 
| 1173 | 
            +
                  "application": 279,
         | 
| 1174 | 
            +
                  "slather": 2782,
         | 
| 1175 | 
            +
                  "end": 1089,
         | 
| 1176 | 
            +
                  "precautions": 2342,
         | 
| 1177 | 
            +
                  "lives": 1806,
         | 
| 1178 | 
            +
                  "matter": 1873,
         | 
| 1179 | 
            +
                  "network": 2028,
         | 
| 1180 | 
            +
                  "religion": 2545,
         | 
| 1181 | 
            +
                  "memes": 1896,
         | 
| 1182 | 
            +
                  "art": 298,
         | 
| 1183 | 
            +
                  "news": 2044,
         | 
| 1184 | 
            +
                  "homeschooling": 1503,
         | 
| 1185 | 
            +
                  "anthro": 247,
         | 
| 1186 | 
            +
                  "lingui": 1786,
         | 
| 1187 | 
            +
                  "depreciation": 923,
         | 
| 1188 | 
            +
                  "channels": 593,
         | 
| 1189 | 
            +
                  "niggers": 2047,
         | 
| 1190 | 
            +
                  "gooks": 1390,
         | 
| 1191 | 
            +
                  "pagans": 2163,
         | 
| 1192 | 
            +
                  "dark": 871,
         | 
| 1193 | 
            +
                  "side": 2748,
         | 
| 1194 | 
            +
                  "aluminum": 225,
         | 
| 1195 | 
            +
                  "small": 2795,
         | 
| 1196 | 
            +
                  "considerations": 747,
         | 
| 1197 | 
            +
                  "virtually": 3247,
         | 
| 1198 | 
            +
                  "react": 2479,
         | 
| 1199 | 
            +
                  "salts": 2657,
         | 
| 1200 | 
            +
                  "true": 3134,
         | 
| 1201 | 
            +
                  "clear": 647,
         | 
| 1202 | 
            +
                  "diet": 956,
         | 
| 1203 | 
            +
                  "achieved": 123,
         | 
| 1204 | 
            +
                  "toxicity": 3096,
         | 
| 1205 | 
            +
                  "criminal": 826,
         | 
| 1206 | 
            +
                  "merely": 1904,
         | 
| 1207 | 
            +
                  "neurotoxic": 2034,
         | 
| 1208 | 
            +
                  "completely": 703,
         | 
| 1209 | 
            +
                  "occurring": 2088,
         | 
| 1210 | 
            +
                  "earths": 1052,
         | 
| 1211 | 
            +
                  "crust": 835,
         | 
| 1212 | 
            +
                  "foods": 1284,
         | 
| 1213 | 
            +
                  "eliminate": 1075,
         | 
| 1214 | 
            +
                  "already": 214,
         | 
| 1215 | 
            +
                  "built": 498,
         | 
| 1216 | 
            +
                  "late": 1732,
         | 
| 1217 | 
            +
                  "add": 141,
         | 
| 1218 | 
            +
                  "exposed": 1175,
         | 
| 1219 | 
            +
                  "neurotoxin": 2035,
         | 
| 1220 | 
            +
                  "primarily": 2363,
         | 
| 1221 | 
            +
                  "wrecks": 3340,
         | 
| 1222 | 
            +
                  "havoc": 1452,
         | 
| 1223 | 
            +
                  "neurons": 2033,
         | 
| 1224 | 
            +
                  "occupation": 2086,
         | 
| 1225 | 
            +
                  "early": 1051,
         | 
| 1226 | 
            +
                  "onset": 2110,
         | 
| 1227 | 
            +
                  "alzheimers": 226,
         | 
| 1228 | 
            +
                  "oxidative": 2153,
         | 
| 1229 | 
            +
                  "stress": 2900,
         | 
| 1230 | 
            +
                  "collects": 674,
         | 
| 1231 | 
            +
                  "competes": 701,
         | 
| 1232 | 
            +
                  "calcium": 519,
         | 
| 1233 | 
            +
                  "grave": 1408,
         | 
| 1234 | 
            +
                  "consequences": 744,
         | 
| 1235 | 
            +
                  "skeletal": 2776,
         | 
| 1236 | 
            +
                  "mineralization": 1941,
         | 
| 1237 | 
            +
                  "leading": 1746,
         | 
| 1238 | 
            +
                  "osteoporosis": 2133,
         | 
| 1239 | 
            +
                  "bone": 450,
         | 
| 1240 | 
            +
                  "disorders": 980,
         | 
| 1241 | 
            +
                  "though": 3060,
         | 
| 1242 | 
            +
                  "inflammation": 1607,
         | 
| 1243 | 
            +
                  "neurodegenerative": 2030,
         | 
| 1244 | 
            +
                  "als": 215,
         | 
| 1245 | 
            +
                  "parkinsons": 2182,
         | 
| 1246 | 
            +
                  "supposed": 2954,
         | 
| 1247 | 
            +
                  "antiperspirants": 264,
         | 
| 1248 | 
            +
                  "alum": 223,
         | 
| 1249 | 
            +
                  "usually": 3199,
         | 
| 1250 | 
            +
                  "either": 1072,
         | 
| 1251 | 
            +
                  "potassium": 2323,
         | 
| 1252 | 
            +
                  "ammonia": 233,
         | 
| 1253 | 
            +
                  "inhibiting": 1623,
         | 
| 1254 | 
            +
                  "bacterial": 364,
         | 
| 1255 | 
            +
                  "action": 135,
         | 
| 1256 | 
            +
                  "sweat": 2976,
         | 
| 1257 | 
            +
                  "glands": 1368,
         | 
| 1258 | 
            +
                  "foul": 1305,
         | 
| 1259 | 
            +
                  "odor": 2092,
         | 
| 1260 | 
            +
                  "perspiration": 2228,
         | 
| 1261 | 
            +
                  "theyre": 3049,
         | 
| 1262 | 
            +
                  "interferes": 1648,
         | 
| 1263 | 
            +
                  "expell": 1162,
         | 
| 1264 | 
            +
                  "cigarettes": 634,
         | 
| 1265 | 
            +
                  "bad": 365,
         | 
| 1266 | 
            +
                  "added": 142,
         | 
| 1267 | 
            +
                  "listed": 1795,
         | 
| 1268 | 
            +
                  "pronounced": 2393,
         | 
| 1269 | 
            +
                  "cooking": 784,
         | 
| 1270 | 
            +
                  "baking": 370,
         | 
| 1271 | 
            +
                  "foil": 1280,
         | 
| 1272 | 
            +
                  "antiperspirant": 263,
         | 
| 1273 | 
            +
                  "deodorant": 918,
         | 
| 1274 | 
            +
                  "following": 1282,
         | 
| 1275 | 
            +
                  "chlorohydrate": 626,
         | 
| 1276 | 
            +
                  "zirconium": 3366,
         | 
| 1277 | 
            +
                  "tetrachlorohydrex": 3040,
         | 
| 1278 | 
            +
                  "gly": 1376,
         | 
| 1279 | 
            +
                  "aztg": 358,
         | 
| 1280 | 
            +
                  "reacting": 2480,
         | 
| 1281 | 
            +
                  "physically": 2254,
         | 
| 1282 | 
            +
                  "prevents": 2358,
         | 
| 1283 | 
            +
                  "exposing": 1176,
         | 
| 1284 | 
            +
                  "radioactive": 2453,
         | 
| 1285 | 
            +
                  "irritant": 1672,
         | 
| 1286 | 
            +
                  "allergies": 206,
         | 
| 1287 | 
            +
                  "multiple": 1995,
         | 
| 1288 | 
            +
                  "depending": 921,
         | 
| 1289 | 
            +
                  "impart": 1562,
         | 
| 1290 | 
            +
                  "neutral": 2037,
         | 
| 1291 | 
            +
                  "flavor": 1262,
         | 
| 1292 | 
            +
                  "temperatures": 3020,
         | 
| 1293 | 
            +
                  "popular": 2311,
         | 
| 1294 | 
            +
                  "powders": 2332,
         | 
| 1295 | 
            +
                  "assist": 321,
         | 
| 1296 | 
            +
                  "leavening": 1754,
         | 
| 1297 | 
            +
                  "rising": 2610,
         | 
| 1298 | 
            +
                  "bread": 474,
         | 
| 1299 | 
            +
                  "soda": 2801,
         | 
| 1300 | 
            +
                  "co2": 658,
         | 
| 1301 | 
            +
                  "assists": 323,
         | 
| 1302 | 
            +
                  "processed": 2371,
         | 
| 1303 | 
            +
                  "cheese": 606,
         | 
| 1304 | 
            +
                  "soften": 2805,
         | 
| 1305 | 
            +
                  "reduce": 2514,
         | 
| 1306 | 
            +
                  "difficulty": 961,
         | 
| 1307 | 
            +
                  "slicing": 2789,
         | 
| 1308 | 
            +
                  "cheeses": 607,
         | 
| 1309 | 
            +
                  "mozzarella": 1991,
         | 
| 1310 | 
            +
                  "brie": 484,
         | 
| 1311 | 
            +
                  "non": 2052,
         | 
| 1312 | 
            +
                  "aged": 177,
         | 
| 1313 | 
            +
                  "cheddar": 605,
         | 
| 1314 | 
            +
                  "gorgonzola": 1391,
         | 
| 1315 | 
            +
                  "stainless": 2863,
         | 
| 1316 | 
            +
                  "steel": 2880,
         | 
| 1317 | 
            +
                  "cookware": 785,
         | 
| 1318 | 
            +
                  "boost": 453,
         | 
| 1319 | 
            +
                  "heat": 1463,
         | 
| 1320 | 
            +
                  "conductivity": 730,
         | 
| 1321 | 
            +
                  "days": 875,
         | 
| 1322 | 
            +
                  "danger": 867,
         | 
| 1323 | 
            +
                  "acidity": 126,
         | 
| 1324 | 
            +
                  "pasta": 2194,
         | 
| 1325 | 
            +
                  "sauce": 2665,
         | 
| 1326 | 
            +
                  "corrode": 797,
         | 
| 1327 | 
            +
                  "begin": 400,
         | 
| 1328 | 
            +
                  "leach": 1744,
         | 
| 1329 | 
            +
                  "favorite": 1215,
         | 
| 1330 | 
            +
                  "additives": 148,
         | 
| 1331 | 
            +
                  "ruling": 2634,
         | 
| 1332 | 
            +
                  "parasitic": 2178,
         | 
| 1333 | 
            +
                  "overclass": 2141,
         | 
| 1334 | 
            +
                  "exactly": 1145,
         | 
| 1335 | 
            +
                  "adding": 144,
         | 
| 1336 | 
            +
                  "start": 2872,
         | 
| 1337 | 
            +
                  "items": 1680,
         | 
| 1338 | 
            +
                  "pantry": 2173,
         | 
| 1339 | 
            +
                  "deodorants": 919,
         | 
| 1340 | 
            +
                  "suprise": 2960,
         | 
| 1341 | 
            +
                  "phosphate": 2247,
         | 
| 1342 | 
            +
                  "e541": 1048,
         | 
| 1343 | 
            +
                  "e521": 1047,
         | 
| 1344 | 
            +
                  "softer": 2806,
         | 
| 1345 | 
            +
                  "cereal": 579,
         | 
| 1346 | 
            +
                  "flours": 1272,
         | 
| 1347 | 
            +
                  "self": 2697,
         | 
| 1348 | 
            +
                  "preservative": 2350,
         | 
| 1349 | 
            +
                  "pop": 2310,
         | 
| 1350 | 
            +
                  "tarts": 3005,
         | 
| 1351 | 
            +
                  "cheez": 608,
         | 
| 1352 | 
            +
                  "hundreds": 1520,
         | 
| 1353 | 
            +
                  "harm": 1444,
         | 
| 1354 | 
            +
                  "report": 2564,
         | 
| 1355 | 
            +
                  "finds": 1251,
         | 
| 1356 | 
            +
                  "ingredient": 1619,
         | 
| 1357 | 
            +
                  "harms": 1448,
         | 
| 1358 | 
            +
                  "researchers": 2573,
         | 
| 1359 | 
            +
                  "say": 2667,
         | 
| 1360 | 
            +
                  "250": 52,
         | 
| 1361 | 
            +
                  "shelf": 2728,
         | 
| 1362 | 
            +
                  "extending": 1179,
         | 
| 1363 | 
            +
                  "tert": 3032,
         | 
| 1364 | 
            +
                  "butylhydroquinone": 509,
         | 
| 1365 | 
            +
                  "tbhq": 3011,
         | 
| 1366 | 
            +
                  "rice": 2606,
         | 
| 1367 | 
            +
                  "krispies": 1717,
         | 
| 1368 | 
            +
                  "treats": 3119,
         | 
| 1369 | 
            +
                  "countless": 806,
         | 
| 1370 | 
            +
                  "disrupts": 989,
         | 
| 1371 | 
            +
                  "animal": 243,
         | 
| 1372 | 
            +
                  "tests": 3038,
         | 
| 1373 | 
            +
                  "weaken": 3279,
         | 
| 1374 | 
            +
                  "effectiveness": 1066,
         | 
| 1375 | 
            +
                  "vaccines": 3213,
         | 
| 1376 | 
            +
                  "viruses": 3251,
         | 
| 1377 | 
            +
                  "covid": 812,
         | 
| 1378 | 
            +
                  "19": 19,
         | 
| 1379 | 
            +
                  "pandemic": 2171,
         | 
| 1380 | 
            +
                  "focused": 1279,
         | 
| 1381 | 
            +
                  "scientific": 2675,
         | 
| 1382 | 
            +
                  "attention": 342,
         | 
| 1383 | 
            +
                  "factors": 1195,
         | 
| 1384 | 
            +
                  "impact": 1561,
         | 
| 1385 | 
            +
                  "says": 2669,
         | 
| 1386 | 
            +
                  "olga": 2106,
         | 
| 1387 | 
            +
                  "naidenko": 2009,
         | 
| 1388 | 
            +
                  "ph": 2239,
         | 
| 1389 | 
            +
                  "author": 346,
         | 
| 1390 | 
            +
                  "vice": 3240,
         | 
| 1391 | 
            +
                  "president": 2353,
         | 
| 1392 | 
            +
                  "investigations": 1657,
         | 
| 1393 | 
            +
                  "media": 1885,
         | 
| 1394 | 
            +
                  "infection": 1604,
         | 
| 1395 | 
            +
                  "receive": 2495,
         | 
| 1396 | 
            +
                  "sufficient": 2928,
         | 
| 1397 | 
            +
                  "agencies": 178,
         | 
| 1398 | 
            +
                  "change": 589,
         | 
| 1399 | 
            +
                  "beliefs": 404,
         | 
| 1400 | 
            +
                  "alone": 212,
         | 
| 1401 | 
            +
                  "channel": 592,
         | 
| 1402 | 
            +
                  "remind": 2548,
         | 
| 1403 | 
            +
                  "movement": 1989,
         | 
| 1404 | 
            +
                  "dont": 1013,
         | 
| 1405 | 
            +
                  "brothers": 494,
         | 
| 1406 | 
            +
                  "becomes": 393,
         | 
| 1407 | 
            +
                  "bear": 389,
         | 
| 1408 | 
            +
                  "ever": 1136,
         | 
| 1409 | 
            +
                  "crisis": 828,
         | 
| 1410 | 
            +
                  "dm": 1005,
         | 
| 1411 | 
            +
                  "upmost": 3182,
         | 
| 1412 | 
            +
                  "reply": 2563,
         | 
| 1413 | 
            +
                  "wanna": 3259,
         | 
| 1414 | 
            +
                  "wn": 3322,
         | 
| 1415 | 
            +
                  "ns": 2067,
         | 
| 1416 | 
            +
                  "sisters": 2769,
         | 
| 1417 | 
            +
                  "suffering": 2927,
         | 
| 1418 | 
            +
                  "unnecessarily": 3168,
         | 
| 1419 | 
            +
                  "sent": 2705,
         | 
| 1420 | 
            +
                  "related": 2539,
         | 
| 1421 | 
            +
                  "mental": 1900,
         | 
| 1422 | 
            +
                  "fully": 1326,
         | 
| 1423 | 
            +
                  "confidential": 731,
         | 
| 1424 | 
            +
                  "concerned": 717,
         | 
| 1425 | 
            +
                  "encourage": 1088,
         | 
| 1426 | 
            +
                  "create": 820,
         | 
| 1427 | 
            +
                  "alt": 216,
         | 
| 1428 | 
            +
                  "account": 116,
         | 
| 1429 | 
            +
                  "silence": 2755,
         | 
| 1430 | 
            +
                  "solves": 2816,
         | 
| 1431 | 
            +
                  "advice": 167,
         | 
| 1432 | 
            +
                  "vent": 3234,
         | 
| 1433 | 
            +
                  "listen": 1796,
         | 
| 1434 | 
            +
                  "weak": 3278,
         | 
| 1435 | 
            +
                  "mighty": 1929,
         | 
| 1436 | 
            +
                  "updated": 3180,
         | 
| 1437 | 
            +
                  "quicklinks": 2445,
         | 
| 1438 | 
            +
                  "recent": 2497,
         | 
| 1439 | 
            +
                  "latest": 1734,
         | 
| 1440 | 
            +
                  "peice": 2209,
         | 
| 1441 | 
            +
                  "ashwagandha": 310,
         | 
| 1442 | 
            +
                  "vegetable": 3230,
         | 
| 1443 | 
            +
                  "induce": 1594,
         | 
| 1444 | 
            +
                  "neuron": 2032,
         | 
| 1445 | 
            +
                  "irreversible": 1670,
         | 
| 1446 | 
            +
                  "sorts": 2825,
         | 
| 1447 | 
            +
                  "injuries": 1627,
         | 
| 1448 | 
            +
                  "rotenone": 2625,
         | 
| 1449 | 
            +
                  "pesticide": 2230,
         | 
| 1450 | 
            +
                  "jicama": 1688,
         | 
| 1451 | 
            +
                  "asian": 312,
         | 
| 1452 | 
            +
                  "latino": 1736,
         | 
| 1453 | 
            +
                  "cuisine": 839,
         | 
| 1454 | 
            +
                  "mindful": 1938,
         | 
| 1455 | 
            +
                  "reccomend": 2493,
         | 
| 1456 | 
            +
                  "restaurants": 2593,
         | 
| 1457 | 
            +
                  "place": 2265,
         | 
| 1458 | 
            +
                  "never": 2040,
         | 
| 1459 | 
            +
                  "stop": 2887,
         | 
| 1460 | 
            +
                  "researching": 2574,
         | 
| 1461 | 
            +
                  "beneficial": 408,
         | 
| 1462 | 
            +
                  "familiar": 1203,
         | 
| 1463 | 
            +
                  "beginning": 401,
         | 
| 1464 | 
            +
                  "show": 2743,
         | 
| 1465 | 
            +
                  "supermarkets": 2949,
         | 
| 1466 | 
            +
                  "pachyrhisus": 2157,
         | 
| 1467 | 
            +
                  "erosus": 1116,
         | 
| 1468 | 
            +
                  "aka": 193,
         | 
| 1469 | 
            +
                  "yam": 3349,
         | 
| 1470 | 
            +
                  "bean": 388,
         | 
| 1471 | 
            +
                  "innocent": 1629,
         | 
| 1472 | 
            +
                  "horrible": 1513,
         | 
| 1473 | 
            +
                  "secret": 2686,
         | 
| 1474 | 
            +
                  "substance": 2920,
         | 
| 1475 | 
            +
                  "insecticide": 1630,
         | 
| 1476 | 
            +
                  "pisciside": 2263,
         | 
| 1477 | 
            +
                  "third": 3056,
         | 
| 1478 | 
            +
                  "world": 3332,
         | 
| 1479 | 
            +
                  "leaves": 1755,
         | 
| 1480 | 
            +
                  "seeds": 2688,
         | 
| 1481 | 
            +
                  "plant": 2276,
         | 
| 1482 | 
            +
                  "root": 2622,
         | 
| 1483 | 
            +
                  "crisp": 829,
         | 
| 1484 | 
            +
                  "refreshingly": 2526,
         | 
| 1485 | 
            +
                  "juicy": 1695,
         | 
| 1486 | 
            +
                  "ordinarily": 2123,
         | 
| 1487 | 
            +
                  "concern": 716,
         | 
| 1488 | 
            +
                  "balanced": 371,
         | 
| 1489 | 
            +
                  "bit": 429,
         | 
| 1490 | 
            +
                  "die": 954,
         | 
| 1491 | 
            +
                  "patterns": 2201,
         | 
| 1492 | 
            +
                  "parkinson": 2181,
         | 
| 1493 | 
            +
                  "sufferers": 2926,
         | 
| 1494 | 
            +
                  "cultured": 843,
         | 
| 1495 | 
            +
                  "rat": 2469,
         | 
| 1496 | 
            +
                  "olestra": 2104,
         | 
| 1497 | 
            +
                  "fortunately": 1302,
         | 
| 1498 | 
            +
                  "bond": 448,
         | 
| 1499 | 
            +
                  "vitamins": 3252,
         | 
| 1500 | 
            +
                  "improve": 1568,
         | 
| 1501 | 
            +
                  "substitute": 2922,
         | 
| 1502 | 
            +
                  "marketed": 1860,
         | 
| 1503 | 
            +
                  "calorie": 523,
         | 
| 1504 | 
            +
                  "sugar": 2929,
         | 
| 1505 | 
            +
                  "addict": 143,
         | 
| 1506 | 
            +
                  "smaller": 2796,
         | 
| 1507 | 
            +
                  "portions": 2316,
         | 
| 1508 | 
            +
                  "laced": 1721,
         | 
| 1509 | 
            +
                  "peddle": 2208,
         | 
| 1510 | 
            +
                  "thank": 3043,
         | 
| 1511 | 
            +
                  "reading": 2485,
         | 
| 1512 | 
            +
                  "come": 687,
         | 
| 1513 | 
            +
                  "despite": 933,
         | 
| 1514 | 
            +
                  "discoveries": 974,
         | 
| 1515 | 
            +
                  "bans": 377,
         | 
| 1516 | 
            +
                  "european": 1132,
         | 
| 1517 | 
            +
                  "union": 3160,
         | 
| 1518 | 
            +
                  "canada": 525,
         | 
| 1519 | 
            +
                  "shelves": 2729,
         | 
| 1520 | 
            +
                  "light": 1776,
         | 
| 1521 | 
            +
                  "chips": 623,
         | 
| 1522 | 
            +
                  "fritolays": 1320,
         | 
| 1523 | 
            +
                  "pringles": 2365,
         | 
| 1524 | 
            +
                  "caloric": 522,
         | 
| 1525 | 
            +
                  "snacks": 2799,
         | 
| 1526 | 
            +
                  "attempting": 340,
         | 
| 1527 | 
            +
                  "mimic": 1935,
         | 
| 1528 | 
            +
                  "original": 2129,
         | 
| 1529 | 
            +
                  "baked": 368,
         | 
| 1530 | 
            +
                  "olean": 2103,
         | 
| 1531 | 
            +
                  "labeled": 1719,
         | 
| 1532 | 
            +
                  "wow": 3337,
         | 
| 1533 | 
            +
                  "concerningly": 719,
         | 
| 1534 | 
            +
                  "discovery": 975,
         | 
| 1535 | 
            +
                  "olestras": 2105,
         | 
| 1536 | 
            +
                  "consumer": 755,
         | 
| 1537 | 
            +
                  "properly": 2395,
         | 
| 1538 | 
            +
                  "absorbing": 108,
         | 
| 1539 | 
            +
                  "gastrointestinal": 1343,
         | 
| 1540 | 
            +
                  "tract": 3101,
         | 
| 1541 | 
            +
                  "molecules": 1968,
         | 
| 1542 | 
            +
                  "excreted": 1154,
         | 
| 1543 | 
            +
                  "rats": 2474,
         | 
| 1544 | 
            +
                  "substitutes": 2923,
         | 
| 1545 | 
            +
                  "gain": 1339,
         | 
| 1546 | 
            +
                  "incorrect": 1582,
         | 
| 1547 | 
            +
                  "association": 325,
         | 
| 1548 | 
            +
                  "intake": 1642,
         | 
| 1549 | 
            +
                  "calories": 524,
         | 
| 1550 | 
            +
                  "tended": 3024,
         | 
| 1551 | 
            +
                  "appetites": 278,
         | 
| 1552 | 
            +
                  "conventional": 777,
         | 
| 1553 | 
            +
                  "adds": 149,
         | 
| 1554 | 
            +
                  "potato": 2324,
         | 
| 1555 | 
            +
                  "pre": 2341,
         | 
| 1556 | 
            +
                  "packaged": 2159,
         | 
| 1557 | 
            +
                  "meets": 1890,
         | 
| 1558 | 
            +
                  "standard": 2866,
         | 
| 1559 | 
            +
                  "reasonable": 2490,
         | 
| 1560 | 
            +
                  "certainty": 583,
         | 
| 1561 | 
            +
                  "truth": 3137,
         | 
| 1562 | 
            +
                  "1990s": 28,
         | 
| 1563 | 
            +
                  "began": 399,
         | 
| 1564 | 
            +
                  "lose": 1817,
         | 
| 1565 | 
            +
                  "popularity": 2312,
         | 
| 1566 | 
            +
                  "steatorrhea": 2879,
         | 
| 1567 | 
            +
                  "stool": 2886,
         | 
| 1568 | 
            +
                  "diarrhea": 953,
         | 
| 1569 | 
            +
                  "flatulence": 1261,
         | 
| 1570 | 
            +
                  "warning": 3264,
         | 
| 1571 | 
            +
                  "label": 1718,
         | 
| 1572 | 
            +
                  "removed": 2552,
         | 
| 1573 | 
            +
                  "2003": 36,
         | 
| 1574 | 
            +
                  "celebration": 568,
         | 
| 1575 | 
            +
                  "hitting": 1497,
         | 
| 1576 | 
            +
                  "1k": 31,
         | 
| 1577 | 
            +
                  "decided": 885,
         | 
| 1578 | 
            +
                  "continue": 767,
         | 
| 1579 | 
            +
                  "expose": 1174,
         | 
| 1580 | 
            +
                  "daily": 861,
         | 
| 1581 | 
            +
                  "solely": 2811,
         | 
| 1582 | 
            +
                  "providing": 2411,
         | 
| 1583 | 
            +
                  "tips": 3076,
         | 
| 1584 | 
            +
                  "living": 1807,
         | 
| 1585 | 
            +
                  "huuuge": 1523,
         | 
| 1586 | 
            +
                  "helping": 1473,
         | 
| 1587 | 
            +
                  "subs": 2919,
         | 
| 1588 | 
            +
                  "whitepilling": 3300,
         | 
| 1589 | 
            +
                  "likeminded": 1780,
         | 
| 1590 | 
            +
                  "care": 540,
         | 
| 1591 | 
            +
                  "wellbeing": 3286,
         | 
| 1592 | 
            +
                  "gives": 1365,
         | 
| 1593 | 
            +
                  "motivation": 1987,
         | 
| 1594 | 
            +
                  "reminder": 2549,
         | 
| 1595 | 
            +
                  "sister": 2768,
         | 
| 1596 | 
            +
                  "nutrawaffen": 2076,
         | 
| 1597 | 
            +
                  "current": 848,
         | 
| 1598 | 
            +
                  "vegemite": 3229,
         | 
| 1599 | 
            +
                  "fluoride": 1275,
         | 
| 1600 | 
            +
                  "facts": 1197,
         | 
| 1601 | 
            +
                  "propionates": 2398,
         | 
| 1602 | 
            +
                  "citrus": 637,
         | 
| 1603 | 
            +
                  "red": 2512,
         | 
| 1604 | 
            +
                  "hydrogenation": 1529,
         | 
| 1605 | 
            +
                  "trans": 3108,
         | 
| 1606 | 
            +
                  "fats": 1214,
         | 
| 1607 | 
            +
                  "soy": 2829,
         | 
| 1608 | 
            +
                  "artifical": 304,
         | 
| 1609 | 
            +
                  "sweeteners": 2980,
         | 
| 1610 | 
            +
                  "aspartame": 318,
         | 
| 1611 | 
            +
                  "breastfeeding": 479,
         | 
| 1612 | 
            +
                  "formula": 1298,
         | 
| 1613 | 
            +
                  "acrylamide": 133,
         | 
| 1614 | 
            +
                  "bha": 418,
         | 
| 1615 | 
            +
                  "bht": 419,
         | 
| 1616 | 
            +
                  "spirulina": 2848,
         | 
| 1617 | 
            +
                  "tumeric": 3141,
         | 
| 1618 | 
            +
                  "bpa": 467,
         | 
| 1619 | 
            +
                  "bps": 469,
         | 
| 1620 | 
            +
                  "bpf": 468,
         | 
| 1621 | 
            +
                  "ractopamine": 2450,
         | 
| 1622 | 
            +
                  "pet": 2232,
         | 
| 1623 | 
            +
                  "dough": 1018,
         | 
| 1624 | 
            +
                  "conditioners": 726,
         | 
| 1625 | 
            +
                  "iodine": 1660,
         | 
| 1626 | 
            +
                  "salt": 2656,
         | 
| 1627 | 
            +
                  "tapwater": 3002,
         | 
| 1628 | 
            +
                  "avocado": 354,
         | 
| 1629 | 
            +
                  "drop": 1027,
         | 
| 1630 | 
            +
                  "ask": 313,
         | 
| 1631 | 
            +
                  "quick": 2444,
         | 
| 1632 | 
            +
                  "recently": 2498,
         | 
| 1633 | 
            +
                  "goods": 1388,
         | 
| 1634 | 
            +
                  "manufactured": 1854,
         | 
| 1635 | 
            +
                  "china": 620,
         | 
| 1636 | 
            +
                  "marginal": 1858,
         | 
| 1637 | 
            +
                  "shocker": 2734,
         | 
| 1638 | 
            +
                  "commonplace": 695,
         | 
| 1639 | 
            +
                  "shoe": 2736,
         | 
| 1640 | 
            +
                  "inserts": 1631,
         | 
| 1641 | 
            +
                  "pens": 2215,
         | 
| 1642 | 
            +
                  "bracelets": 470,
         | 
| 1643 | 
            +
                  "guise": 1423,
         | 
| 1644 | 
            +
                  "healing": 1458,
         | 
| 1645 | 
            +
                  "negative": 2024,
         | 
| 1646 | 
            +
                  "ionization": 1662,
         | 
| 1647 | 
            +
                  "scrutiny": 2678,
         | 
| 1648 | 
            +
                  "gamma": 1340,
         | 
| 1649 | 
            +
                  "spectroscopy": 2841,
         | 
| 1650 | 
            +
                  "nature": 2016,
         | 
| 1651 | 
            +
                  "wellness": 3287,
         | 
| 1652 | 
            +
                  "revealed": 2600,
         | 
| 1653 | 
            +
                  "thorium": 3058,
         | 
| 1654 | 
            +
                  "emitting": 1080,
         | 
| 1655 | 
            +
                  "wave": 3271,
         | 
| 1656 | 
            +
                  "wavelength": 3272,
         | 
| 1657 | 
            +
                  "nuclear": 2069,
         | 
| 1658 | 
            +
                  "medicine": 1889,
         | 
| 1659 | 
            +
                  "destroys": 934,
         | 
| 1660 | 
            +
                  "inhibit": 1622,
         | 
| 1661 | 
            +
                  "marrow": 1864,
         | 
| 1662 | 
            +
                  "creating": 823,
         | 
| 1663 | 
            +
                  "rotting": 2627,
         | 
| 1664 | 
            +
                  "inside": 1632,
         | 
| 1665 | 
            +
                  "deadly": 878,
         | 
| 1666 | 
            +
                  "dose": 1015,
         | 
| 1667 | 
            +
                  "kai": 1700,
         | 
| 1668 | 
            +
                  "rothkamm": 2626,
         | 
| 1669 | 
            +
                  "markus": 1863,
         | 
| 1670 | 
            +
                  "lobrich": 1809,
         | 
| 1671 | 
            +
                  "breaks": 477,
         | 
| 1672 | 
            +
                  "repair": 2558,
         | 
| 1673 | 
            +
                  "damaged": 864,
         | 
| 1674 | 
            +
                  "material": 1871,
         | 
| 1675 | 
            +
                  "within": 3318,
         | 
| 1676 | 
            +
                  "limits": 1783,
         | 
| 1677 | 
            +
                  "process": 2370,
         | 
| 1678 | 
            +
                  "works": 3331,
         | 
| 1679 | 
            +
                  "slower": 2793,
         | 
| 1680 | 
            +
                  "rectify": 2509,
         | 
| 1681 | 
            +
                  "dealt": 879,
         | 
| 1682 | 
            +
                  "aforementioned": 174,
         | 
| 1683 | 
            +
                  "waves": 3273,
         | 
| 1684 | 
            +
                  "road": 2612,
         | 
| 1685 | 
            +
                  "crapshoot": 817,
         | 
| 1686 | 
            +
                  "byproduct": 513,
         | 
| 1687 | 
            +
                  "uranium": 3185,
         | 
| 1688 | 
            +
                  "production": 2377,
         | 
| 1689 | 
            +
                  "appears": 277,
         | 
| 1690 | 
            +
                  "design": 931,
         | 
| 1691 | 
            +
                  "steps": 2881,
         | 
| 1692 | 
            +
                  "order": 2122,
         | 
| 1693 | 
            +
                  "avoiding": 356,
         | 
| 1694 | 
            +
                  "outright": 2137,
         | 
| 1695 | 
            +
                  "purchase": 2423,
         | 
| 1696 | 
            +
                  "geiger": 1347,
         | 
| 1697 | 
            +
                  "counter": 803,
         | 
| 1698 | 
            +
                  "avaliable": 352,
         | 
| 1699 | 
            +
                  "walmart": 3258,
         | 
| 1700 | 
            +
                  "83": 93,
         | 
| 1701 | 
            +
                  "www": 3344,
         | 
| 1702 | 
            +
                  "ip": 1663,
         | 
| 1703 | 
            +
                  "gq": 1399,
         | 
| 1704 | 
            +
                  "gmc": 1381,
         | 
| 1705 | 
            +
                  "300e": 59,
         | 
| 1706 | 
            +
                  "plus": 2290,
         | 
| 1707 | 
            +
                  "detector": 938,
         | 
| 1708 | 
            +
                  "100061707": 1,
         | 
| 1709 | 
            +
                  "wmlspartner": 3321,
         | 
| 1710 | 
            +
                  "wlpa": 3320,
         | 
| 1711 | 
            +
                  "selectedsellerid": 2696,
         | 
| 1712 | 
            +
                  "1621": 15,
         | 
| 1713 | 
            +
                  "word": 3327,
         | 
| 1714 | 
            +
                  "fundamental": 1333,
         | 
| 1715 | 
            +
                  "makes": 1839,
         | 
| 1716 | 
            +
                  "70": 89,
         | 
| 1717 | 
            +
                  "mass": 1867,
         | 
| 1718 | 
            +
                  "seriously": 2707,
         | 
| 1719 | 
            +
                  "skip": 2779,
         | 
| 1720 | 
            +
                  "opinion": 2112,
         | 
| 1721 | 
            +
                  "bottled": 460,
         | 
| 1722 | 
            +
                  "reasons": 2491,
         | 
| 1723 | 
            +
                  "else": 1076,
         | 
| 1724 | 
            +
                  "easy": 1055,
         | 
| 1725 | 
            +
                  "affordable": 173,
         | 
| 1726 | 
            +
                  "fret": 1315,
         | 
| 1727 | 
            +
                  "drinking": 1025,
         | 
| 1728 | 
            +
                  "excuse": 1155,
         | 
| 1729 | 
            +
                  "proper": 2394,
         | 
| 1730 | 
            +
                  "filtration": 1244,
         | 
| 1731 | 
            +
                  "somewhat": 2820,
         | 
| 1732 | 
            +
                  "depth": 925,
         | 
| 1733 | 
            +
                  "regarding": 2530,
         | 
| 1734 | 
            +
                  "previous": 2359,
         | 
| 1735 | 
            +
                  "quickly": 2446,
         | 
| 1736 | 
            +
                  "reiterate": 2538,
         | 
| 1737 | 
            +
                  "homes": 1502,
         | 
| 1738 | 
            +
                  "rodi": 2618,
         | 
| 1739 | 
            +
                  "reverse": 2601,
         | 
| 1740 | 
            +
                  "osmosis": 2131,
         | 
| 1741 | 
            +
                  "home": 1500,
         | 
| 1742 | 
            +
                  "pricey": 2362,
         | 
| 1743 | 
            +
                  "putting": 2434,
         | 
| 1744 | 
            +
                  "promise": 2388,
         | 
| 1745 | 
            +
                  "renting": 2557,
         | 
| 1746 | 
            +
                  "expensive": 1164,
         | 
| 1747 | 
            +
                  "moment": 1969,
         | 
| 1748 | 
            +
                  "distiller": 998,
         | 
| 1749 | 
            +
                  "purchased": 2424,
         | 
| 1750 | 
            +
                  "ebay": 1059,
         | 
| 1751 | 
            +
                  "amazon": 228,
         | 
| 1752 | 
            +
                  "100": 0,
         | 
| 1753 | 
            +
                  "usd": 3193,
         | 
| 1754 | 
            +
                  "methods": 1917,
         | 
| 1755 | 
            +
                  "remove": 2551,
         | 
| 1756 | 
            +
                  "basically": 383,
         | 
| 1757 | 
            +
                  "refreshing": 2525,
         | 
| 1758 | 
            +
                  "h20": 1425,
         | 
| 1759 | 
            +
                  "im": 1554,
         | 
| 1760 | 
            +
                  "saying": 2668,
         | 
| 1761 | 
            +
                  "tiny": 3074,
         | 
| 1762 | 
            +
                  "hurt": 1522,
         | 
| 1763 | 
            +
                  "becoming": 394,
         | 
| 1764 | 
            +
                  "increasingly": 1585,
         | 
| 1765 | 
            +
                  "substances": 2921,
         | 
| 1766 | 
            +
                  "evidence": 1140,
         | 
| 1767 | 
            +
                  "suggests": 2932,
         | 
| 1768 | 
            +
                  "damaging": 866,
         | 
| 1769 | 
            +
                  "fertility": 1231,
         | 
| 1770 | 
            +
                  "development": 945,
         | 
| 1771 | 
            +
                  "autoimmune": 350,
         | 
| 1772 | 
            +
                  "assistant": 322,
         | 
| 1773 | 
            +
                  "administrator": 159,
         | 
| 1774 | 
            +
                  "benjamin": 410,
         | 
| 1775 | 
            +
                  "grumbles": 1420,
         | 
| 1776 | 
            +
                  "said": 2647,
         | 
| 1777 | 
            +
                  "recognize": 2503,
         | 
| 1778 | 
            +
                  "words": 3328,
         | 
| 1779 | 
            +
                  "actions": 136,
         | 
| 1780 | 
            +
                  "year": 3350,
         | 
| 1781 | 
            +
                  "medications": 1888,
         | 
| 1782 | 
            +
                  "increasing": 1584,
         | 
| 1783 | 
            +
                  "governments": 1397,
         | 
| 1784 | 
            +
                  "zog": 3367,
         | 
| 1785 | 
            +
                  "complicit": 706,
         | 
| 1786 | 
            +
                  "sit": 2770,
         | 
| 1787 | 
            +
                  "hands": 1433,
         | 
| 1788 | 
            +
                  "choose": 630,
         | 
| 1789 | 
            +
                  "flush": 1276,
         | 
| 1790 | 
            +
                  "toilet": 3080,
         | 
| 1791 | 
            +
                  "utilized": 3202,
         | 
| 1792 | 
            +
                  "urine": 3189,
         | 
| 1793 | 
            +
                  "feces": 1220,
         | 
| 1794 | 
            +
                  "pharma": 2240,
         | 
| 1795 | 
            +
                  "notorious": 2065,
         | 
| 1796 | 
            +
                  "dumping": 1036,
         | 
| 1797 | 
            +
                  "byproducts": 514,
         | 
| 1798 | 
            +
                  "systems": 2990,
         | 
| 1799 | 
            +
                  "paying": 2203,
         | 
| 1800 | 
            +
                  "disposal": 983,
         | 
| 1801 | 
            +
                  "reported": 2565,
         | 
| 1802 | 
            +
                  "mylan": 2005,
         | 
| 1803 | 
            +
                  "nv": 2080,
         | 
| 1804 | 
            +
                  "pennsylvania": 2214,
         | 
| 1805 | 
            +
                  "pfizer": 2238,
         | 
| 1806 | 
            +
                  "affiliate": 172,
         | 
| 1807 | 
            +
                  "india": 1586,
         | 
| 1808 | 
            +
                  "happening": 1436,
         | 
| 1809 | 
            +
                  "drugs": 1028,
         | 
| 1810 | 
            +
                  "shoddy": 2735,
         | 
| 1811 | 
            +
                  "practices": 2339,
         | 
| 1812 | 
            +
                  "agriculture": 187,
         | 
| 1813 | 
            +
                  "loves": 1820,
         | 
| 1814 | 
            +
                  "yields": 3357,
         | 
| 1815 | 
            +
                  "table": 2991,
         | 
| 1816 | 
            +
                  "run": 2635,
         | 
| 1817 | 
            +
                  "microscopic": 1928,
         | 
| 1818 | 
            +
                  "measured": 1881,
         | 
| 1819 | 
            +
                  "ppm": 2336,
         | 
| 1820 | 
            +
                  "ppb": 2335,
         | 
| 1821 | 
            +
                  "severe": 2713,
         | 
| 1822 | 
            +
                  "affects": 171,
         | 
| 1823 | 
            +
                  "across": 132,
         | 
| 1824 | 
            +
                  "estrogen": 1125,
         | 
| 1825 | 
            +
                  "reduced": 2515,
         | 
| 1826 | 
            +
                  "sperm": 2843,
         | 
| 1827 | 
            +
                  "counts": 808,
         | 
| 1828 | 
            +
                  "hermaphroditic": 1481,
         | 
| 1829 | 
            +
                  "biggest": 422,
         | 
| 1830 | 
            +
                  "concerns": 720,
         | 
| 1831 | 
            +
                  "obesity": 2082,
         | 
| 1832 | 
            +
                  "worryingly": 3336,
         | 
| 1833 | 
            +
                  "stew": 2883,
         | 
| 1834 | 
            +
                  "mixing": 1956,
         | 
| 1835 | 
            +
                  "forming": 1296,
         | 
| 1836 | 
            +
                  "read": 2483,
         | 
| 1837 | 
            +
                  "surrounding": 2968,
         | 
| 1838 | 
            +
                  "whatever": 3292,
         | 
| 1839 | 
            +
                  "reason": 2489,
         | 
| 1840 | 
            +
                  "convinced": 781,
         | 
| 1841 | 
            +
                  "tap": 3000,
         | 
| 1842 | 
            +
                  "fail": 1198,
         | 
| 1843 | 
            +
                  "filter": 1243,
         | 
| 1844 | 
            +
                  "2008": 37,
         | 
| 1845 | 
            +
                  "geological": 1357,
         | 
| 1846 | 
            +
                  "survey": 2969,
         | 
| 1847 | 
            +
                  "usgs": 3197,
         | 
| 1848 | 
            +
                  "states": 2874,
         | 
| 1849 | 
            +
                  "85": 94,
         | 
| 1850 | 
            +
                  "man": 1848,
         | 
| 1851 | 
            +
                  "included": 1579,
         | 
| 1852 | 
            +
                  "biotics": 425,
         | 
| 1853 | 
            +
                  "anticonvulsants": 258,
         | 
| 1854 | 
            +
                  "carbemazepine": 532,
         | 
| 1855 | 
            +
                  "mood": 1979,
         | 
| 1856 | 
            +
                  "stabilizers": 2861,
         | 
| 1857 | 
            +
                  "lithium": 1801,
         | 
| 1858 | 
            +
                  "cocaine": 660,
         | 
| 1859 | 
            +
                  "synthetic": 2988,
         | 
| 1860 | 
            +
                  "oral": 2119,
         | 
| 1861 | 
            +
                  "contraceptives": 770,
         | 
| 1862 | 
            +
                  "replacement": 2561,
         | 
| 1863 | 
            +
                  "therapy": 3046,
         | 
| 1864 | 
            +
                  "needs": 2023,
         | 
| 1865 | 
            +
                  "quantities": 2439,
         | 
| 1866 | 
            +
                  "cases": 550,
         | 
| 1867 | 
            +
                  "deficiency": 898,
         | 
| 1868 | 
            +
                  "inland": 1628,
         | 
| 1869 | 
            +
                  "soils": 2808,
         | 
| 1870 | 
            +
                  "seafood": 2682,
         | 
| 1871 | 
            +
                  "exceptionally": 1150,
         | 
| 1872 | 
            +
                  "rare": 2466,
         | 
| 1873 | 
            +
                  "whole": 3301,
         | 
| 1874 | 
            +
                  "accounted": 117,
         | 
| 1875 | 
            +
                  "iodized": 1661,
         | 
| 1876 | 
            +
                  "funny": 1334,
         | 
| 1877 | 
            +
                  "happened": 1435,
         | 
| 1878 | 
            +
                  "pakistan": 2168,
         | 
| 1879 | 
            +
                  "anticipating": 256,
         | 
| 1880 | 
            +
                  "transport": 3115,
         | 
| 1881 | 
            +
                  "hot": 1515,
         | 
| 1882 | 
            +
                  "trucks": 3133,
         | 
| 1883 | 
            +
                  "distances": 994,
         | 
| 1884 | 
            +
                  "doubling": 1017,
         | 
| 1885 | 
            +
                  "quadrupling": 2437,
         | 
| 1886 | 
            +
                  "reccomended": 2494,
         | 
| 1887 | 
            +
                  "batches": 385,
         | 
| 1888 | 
            +
                  "overdose": 2142,
         | 
| 1889 | 
            +
                  "conspiracy": 751,
         | 
| 1890 | 
            +
                  "reality": 2488,
         | 
| 1891 | 
            +
                  "negligent": 2025,
         | 
| 1892 | 
            +
                  "program": 2383,
         | 
| 1893 | 
            +
                  "friends": 1317,
         | 
| 1894 | 
            +
                  "sparingly": 2836,
         | 
| 1895 | 
            +
                  "worried": 3334,
         | 
| 1896 | 
            +
                  "anyway": 269,
         | 
| 1897 | 
            +
                  "goitre": 1386,
         | 
| 1898 | 
            +
                  "prevalence": 2357,
         | 
| 1899 | 
            +
                  "condition": 725,
         | 
| 1900 | 
            +
                  "enlargement": 1102,
         | 
| 1901 | 
            +
                  "metabolism": 1910,
         | 
| 1902 | 
            +
                  "growth": 1419,
         | 
| 1903 | 
            +
                  "synthesis": 2987,
         | 
| 1904 | 
            +
                  "structures": 2907,
         | 
| 1905 | 
            +
                  "attempt": 339,
         | 
| 1906 | 
            +
                  "gather": 1344,
         | 
| 1907 | 
            +
                  "ditch": 1003,
         | 
| 1908 | 
            +
                  "effort": 1069,
         | 
| 1909 | 
            +
                  "expands": 1158,
         | 
| 1910 | 
            +
                  "area": 288,
         | 
| 1911 | 
            +
                  "unsightly": 3173,
         | 
| 1912 | 
            +
                  "tip": 3075,
         | 
| 1913 | 
            +
                  "iceberg": 1545,
         | 
| 1914 | 
            +
                  "retardation": 2599,
         | 
| 1915 | 
            +
                  "metabolic": 1909,
         | 
| 1916 | 
            +
                  "maladies": 1841,
         | 
| 1917 | 
            +
                  "massive": 1869,
         | 
| 1918 | 
            +
                  "drain": 1021,
         | 
| 1919 | 
            +
                  "economy": 1060,
         | 
| 1920 | 
            +
                  "impoverished": 1566,
         | 
| 1921 | 
            +
                  "fall": 1201,
         | 
| 1922 | 
            +
                  "ill": 1552,
         | 
| 1923 | 
            +
                  "renders": 2555,
         | 
| 1924 | 
            +
                  "mention": 1901,
         | 
| 1925 | 
            +
                  "profitable": 2381,
         | 
| 1926 | 
            +
                  "jews": 1687,
         | 
| 1927 | 
            +
                  "sustain": 2974,
         | 
| 1928 | 
            +
                  "illness": 1553,
         | 
| 1929 | 
            +
                  "cure": 847,
         | 
| 1930 | 
            +
                  "old": 2102,
         | 
| 1931 | 
            +
                  "controversy": 775,
         | 
| 1932 | 
            +
                  "feeling": 1225,
         | 
| 1933 | 
            +
                  "salty": 2658,
         | 
| 1934 | 
            +
                  "labels": 1720,
         | 
| 1935 | 
            +
                  "atomic": 334,
         | 
| 1936 | 
            +
                  "53": 81,
         | 
| 1937 | 
            +
                  "heaviest": 1465,
         | 
| 1938 | 
            +
                  "element": 1073,
         | 
| 1939 | 
            +
                  "heavy": 1467,
         | 
| 1940 | 
            +
                  "exist": 1157,
         | 
| 1941 | 
            +
                  "lighter": 1777,
         | 
| 1942 | 
            +
                  "elements": 1074,
         | 
| 1943 | 
            +
                  "carbon": 533,
         | 
| 1944 | 
            +
                  "oxygen": 2155,
         | 
| 1945 | 
            +
                  "iron": 1666,
         | 
| 1946 | 
            +
                  "decades": 883,
         | 
| 1947 | 
            +
                  "urging": 3187,
         | 
| 1948 | 
            +
                  "sell": 2698,
         | 
| 1949 | 
            +
                  "consumers": 756,
         | 
| 1950 | 
            +
                  "quantity": 2440,
         | 
| 1951 | 
            +
                  "iodide": 1659,
         | 
| 1952 | 
            +
                  "batch": 384,
         | 
| 1953 | 
            +
                  "chloride": 624,
         | 
| 1954 | 
            +
                  "parts": 2188,
         | 
| 1955 | 
            +
                  "per": 2218,
         | 
| 1956 | 
            +
                  "million": 1933,
         | 
| 1957 | 
            +
                  "tricks": 3126,
         | 
| 1958 | 
            +
                  "ploys": 2288,
         | 
| 1959 | 
            +
                  "nose": 2057,
         | 
| 1960 | 
            +
                  "fellows": 1227,
         | 
| 1961 | 
            +
                  "play": 2285,
         | 
| 1962 | 
            +
                  "therefore": 3047,
         | 
| 1963 | 
            +
                  "fair": 1199,
         | 
| 1964 | 
            +
                  "assume": 326,
         | 
| 1965 | 
            +
                  "bromate": 492,
         | 
| 1966 | 
            +
                  "azodicarbonamide": 357,
         | 
| 1967 | 
            +
                  "residually": 2577,
         | 
| 1968 | 
            +
                  "frens": 1311,
         | 
| 1969 | 
            +
                  "fast": 1211,
         | 
| 1970 | 
            +
                  "places": 2270,
         | 
| 1971 | 
            +
                  "unnaturally": 3167,
         | 
| 1972 | 
            +
                  "rye": 2640,
         | 
| 1973 | 
            +
                  "datem": 874,
         | 
| 1974 | 
            +
                  "chewier": 612,
         | 
| 1975 | 
            +
                  "malleable": 1845,
         | 
| 1976 | 
            +
                  "shop": 2738,
         | 
| 1977 | 
            +
                  "stock": 2885,
         | 
| 1978 | 
            +
                  "wholefoods": 3302,
         | 
| 1979 | 
            +
                  "grains": 1402,
         | 
| 1980 | 
            +
                  "excessively": 1152,
         | 
| 1981 | 
            +
                  "lots": 1819,
         | 
| 1982 | 
            +
                  "veggies": 3233,
         | 
| 1983 | 
            +
                  "fruit": 1322,
         | 
| 1984 | 
            +
                  "dairy": 862,
         | 
| 1985 | 
            +
                  "minimal": 1943,
         | 
| 1986 | 
            +
                  "grain": 1401,
         | 
| 1987 | 
            +
                  "strong": 2903,
         | 
| 1988 | 
            +
                  "apparently": 275,
         | 
| 1989 | 
            +
                  "proving": 2413,
         | 
| 1990 | 
            +
                  "otherwise": 2135,
         | 
| 1991 | 
            +
                  "date": 873,
         | 
| 1992 | 
            +
                  "claimed": 641,
         | 
| 1993 | 
            +
                  "withstand": 3319,
         | 
| 1994 | 
            +
                  "google": 1389,
         | 
| 1995 | 
            +
                  "ideal": 1548,
         | 
| 1996 | 
            +
                  "internal": 1649,
         | 
| 1997 | 
            +
                  "temperature": 3019,
         | 
| 1998 | 
            +
                  "180": 18,
         | 
| 1999 | 
            +
                  "200": 34,
         | 
| 2000 | 
            +
                  "93": 96,
         | 
| 2001 | 
            +
                  "oven": 2139,
         | 
| 2002 | 
            +
                  "set": 2711,
         | 
| 2003 | 
            +
                  "428f": 71,
         | 
| 2004 | 
            +
                  "220c": 48,
         | 
| 2005 | 
            +
                  "melting": 1894,
         | 
| 2006 | 
            +
                  "points": 2294,
         | 
| 2007 | 
            +
                  "437f": 73,
         | 
| 2008 | 
            +
                  "225c": 49,
         | 
| 2009 | 
            +
                  "662f": 87,
         | 
| 2010 | 
            +
                  "350c": 63,
         | 
| 2011 | 
            +
                  "cook": 782,
         | 
| 2012 | 
            +
                  "2b": 58,
         | 
| 2013 | 
            +
                  "banned": 375,
         | 
| 2014 | 
            +
                  "korea": 1716,
         | 
| 2015 | 
            +
                  "eu": 1131,
         | 
| 2016 | 
            +
                  "elsewhere": 1077,
         | 
| 2017 | 
            +
                  "legal": 1758,
         | 
| 2018 | 
            +
                  "usa": 3190,
         | 
| 2019 | 
            +
                  "referred": 2522,
         | 
| 2020 | 
            +
                  "yoga": 3358,
         | 
| 2021 | 
            +
                  "mat": 1870,
         | 
| 2022 | 
            +
                  "widespread": 3309,
         | 
| 2023 | 
            +
                  "foamed": 1277,
         | 
| 2024 | 
            +
                  "semicarbazide": 2701,
         | 
| 2025 | 
            +
                  "weakly": 3281,
         | 
| 2026 | 
            +
                  "genotoxic": 1355,
         | 
| 2027 | 
            +
                  "ironically": 1667,
         | 
| 2028 | 
            +
                  "celiac": 570,
         | 
| 2029 | 
            +
                  "gluten": 1375,
         | 
| 2030 | 
            +
                  "intolerance": 1653,
         | 
| 2031 | 
            +
                  "heart": 1462,
         | 
| 2032 | 
            +
                  "fibrosis": 1237,
         | 
| 2033 | 
            +
                  "adrenal": 162,
         | 
| 2034 | 
            +
                  "overgrowth": 2144,
         | 
| 2035 | 
            +
                  "endometrial": 1093,
         | 
| 2036 | 
            +
                  "hyperplasia": 1538,
         | 
| 2037 | 
            +
                  "thickening": 3052,
         | 
| 2038 | 
            +
                  "uterus": 3200,
         | 
| 2039 | 
            +
                  "leaky": 1749,
         | 
| 2040 | 
            +
                  "gut": 1424,
         | 
| 2041 | 
            +
                  "three": 3062,
         | 
| 2042 | 
            +
                  "e924": 1049,
         | 
| 2043 | 
            +
                  "e927": 1050,
         | 
| 2044 | 
            +
                  "oxidation": 2152,
         | 
| 2045 | 
            +
                  "agents": 181,
         | 
| 2046 | 
            +
                  "enhancers": 1099,
         | 
| 2047 | 
            +
                  "commercially": 691,
         | 
| 2048 | 
            +
                  "breads": 475,
         | 
| 2049 | 
            +
                  "strengthen": 2898,
         | 
| 2050 | 
            +
                  "bleach": 433,
         | 
| 2051 | 
            +
                  "diacetyl": 949,
         | 
| 2052 | 
            +
                  "tartatic": 3004,
         | 
| 2053 | 
            +
                  "ester": 1123,
         | 
| 2054 | 
            +
                  "monoglycerides": 1974,
         | 
| 2055 | 
            +
                  "diglycerides": 964,
         | 
| 2056 | 
            +
                  "e472e": 1046,
         | 
| 2057 | 
            +
                  "emulsifier": 1084,
         | 
| 2058 | 
            +
                  "strengthens": 2899,
         | 
| 2059 | 
            +
                  "crusted": 836,
         | 
| 2060 | 
            +
                  "chewy": 613,
         | 
| 2061 | 
            +
                  "sinister": 2766,
         | 
| 2062 | 
            +
                  "furry": 1335,
         | 
| 2063 | 
            +
                  "information": 1613,
         | 
| 2064 | 
            +
                  "thoroughly": 3059,
         | 
| 2065 | 
            +
                  "pets": 2235,
         | 
| 2066 | 
            +
                  "lists": 1798,
         | 
| 2067 | 
            +
                  "preservatives": 2351,
         | 
| 2068 | 
            +
                  "front": 1321,
         | 
| 2069 | 
            +
                  "package": 2158,
         | 
| 2070 | 
            +
                  "kike": 1710,
         | 
| 2071 | 
            +
                  "filled": 1241,
         | 
| 2072 | 
            +
                  "nasties": 2013,
         | 
| 2073 | 
            +
                  "course": 810,
         | 
| 2074 | 
            +
                  "sorbitol": 2823,
         | 
| 2075 | 
            +
                  "xylitol": 3348,
         | 
| 2076 | 
            +
                  "sweeten": 2978,
         | 
| 2077 | 
            +
                  "stabilize": 2860,
         | 
| 2078 | 
            +
                  "alcohols": 197,
         | 
| 2079 | 
            +
                  "extracted": 1184,
         | 
| 2080 | 
            +
                  "corn": 788,
         | 
| 2081 | 
            +
                  "hyperactivity": 1537,
         | 
| 2082 | 
            +
                  "dog": 1010,
         | 
| 2083 | 
            +
                  "cat": 553,
         | 
| 2084 | 
            +
                  "overly": 2145,
         | 
| 2085 | 
            +
                  "hyper": 1536,
         | 
| 2086 | 
            +
                  "checking": 604,
         | 
| 2087 | 
            +
                  "colours": 681,
         | 
| 2088 | 
            +
                  "dye": 1039,
         | 
| 2089 | 
            +
                  "40": 69,
         | 
| 2090 | 
            +
                  "fillers": 1242,
         | 
| 2091 | 
            +
                  "meal": 1876,
         | 
| 2092 | 
            +
                  "rancidifaction": 2459,
         | 
| 2093 | 
            +
                  "function": 1330,
         | 
| 2094 | 
            +
                  "livers": 1805,
         | 
| 2095 | 
            +
                  "carrageenan": 546,
         | 
| 2096 | 
            +
                  "ulceration": 3149,
         | 
| 2097 | 
            +
                  "final": 1245,
         | 
| 2098 | 
            +
                  "propylene": 2400,
         | 
| 2099 | 
            +
                  "glycol": 1378,
         | 
| 2100 | 
            +
                  "antifreeze": 259,
         | 
| 2101 | 
            +
                  "kidney": 1707,
         | 
| 2102 | 
            +
                  "kind": 1713,
         | 
| 2103 | 
            +
                  "sick": 2746,
         | 
| 2104 | 
            +
                  "dying": 1041,
         | 
| 2105 | 
            +
                  "zoo": 3368,
         | 
| 2106 | 
            +
                  "animals": 244,
         | 
| 2107 | 
            +
                  "roadkill": 2613,
         | 
| 2108 | 
            +
                  "euthanized": 1134,
         | 
| 2109 | 
            +
                  "phenobarbital": 2242,
         | 
| 2110 | 
            +
                  "euthanasia": 1133,
         | 
| 2111 | 
            +
                  "dogs": 1011,
         | 
| 2112 | 
            +
                  "cats": 559,
         | 
| 2113 | 
            +
                  "carnivores": 544,
         | 
| 2114 | 
            +
                  "wheat": 3295,
         | 
| 2115 | 
            +
                  "bulk": 499,
         | 
| 2116 | 
            +
                  "digested": 962,
         | 
| 2117 | 
            +
                  "purpose": 2429,
         | 
| 2118 | 
            +
                  "genetically": 1351,
         | 
| 2119 | 
            +
                  "modified": 1964,
         | 
| 2120 | 
            +
                  "roundup": 2629,
         | 
| 2121 | 
            +
                  "lymphoma": 1829,
         | 
| 2122 | 
            +
                  "wanted": 3261,
         | 
| 2123 | 
            +
                  "write": 3341,
         | 
| 2124 | 
            +
                  "special": 2837,
         | 
| 2125 | 
            +
                  "view": 3242,
         | 
| 2126 | 
            +
                  "families": 1204,
         | 
| 2127 | 
            +
                  "regards": 2532,
         | 
| 2128 | 
            +
                  "cuts": 852,
         | 
| 2129 | 
            +
                  "suitable": 2934,
         | 
| 2130 | 
            +
                  "chicken": 614,
         | 
| 2131 | 
            +
                  "indication": 1591,
         | 
| 2132 | 
            +
                  "meats": 1884,
         | 
| 2133 | 
            +
                  "racquet": 2449,
         | 
| 2134 | 
            +
                  "goes": 1385,
         | 
| 2135 | 
            +
                  "powerful": 2334,
         | 
| 2136 | 
            +
                  "lobby": 1808,
         | 
| 2137 | 
            +
                  "force": 1285,
         | 
| 2138 | 
            +
                  "throats": 3064,
         | 
| 2139 | 
            +
                  "faithful": 1200,
         | 
| 2140 | 
            +
                  "pretend": 2355,
         | 
| 2141 | 
            +
                  "seems": 2691,
         | 
| 2142 | 
            +
                  "especially": 1118,
         | 
| 2143 | 
            +
                  "grass": 1407,
         | 
| 2144 | 
            +
                  "entirely": 1105,
         | 
| 2145 | 
            +
                  "farmer": 1208,
         | 
| 2146 | 
            +
                  "raised": 2456,
         | 
| 2147 | 
            +
                  "cow": 813,
         | 
| 2148 | 
            +
                  "id": 1546,
         | 
| 2149 | 
            +
                  "markets": 1862,
         | 
| 2150 | 
            +
                  "reactivity": 2482,
         | 
| 2151 | 
            +
                  "beta": 416,
         | 
| 2152 | 
            +
                  "adrenoreceptors": 163,
         | 
| 2153 | 
            +
                  "throughout": 3066,
         | 
| 2154 | 
            +
                  "muscle": 1998,
         | 
| 2155 | 
            +
                  "contraction": 771,
         | 
| 2156 | 
            +
                  "bronchiole": 493,
         | 
| 2157 | 
            +
                  "smoothe": 2798,
         | 
| 2158 | 
            +
                  "relaxation": 2542,
         | 
| 2159 | 
            +
                  "glyocogenolysis": 1379,
         | 
| 2160 | 
            +
                  "glycogen": 1377,
         | 
| 2161 | 
            +
                  "glucose": 1371,
         | 
| 2162 | 
            +
                  "six": 2774,
         | 
| 2163 | 
            +
                  "approved": 283,
         | 
| 2164 | 
            +
                  "27": 56,
         | 
| 2165 | 
            +
                  "controversial": 774,
         | 
| 2166 | 
            +
                  "backed": 362,
         | 
| 2167 | 
            +
                  "trade": 3102,
         | 
| 2168 | 
            +
                  "organization": 2126,
         | 
| 2169 | 
            +
                  "116": 4,
         | 
| 2170 | 
            +
                  "yearly": 3351,
         | 
| 2171 | 
            +
                  "tarrifs": 3003,
         | 
| 2172 | 
            +
                  "alleged": 203,
         | 
| 2173 | 
            +
                  "violation": 3244,
         | 
| 2174 | 
            +
                  "wto": 3343,
         | 
| 2175 | 
            +
                  "sps": 2858,
         | 
| 2176 | 
            +
                  "agreement": 186,
         | 
| 2177 | 
            +
                  "banning": 376,
         | 
| 2178 | 
            +
                  "importation": 1564,
         | 
| 2179 | 
            +
                  "2009": 38,
         | 
| 2180 | 
            +
                  "reached": 2478,
         | 
| 2181 | 
            +
                  "imports": 1565,
         | 
| 2182 | 
            +
                  "select": 2695,
         | 
| 2183 | 
            +
                  "distributors": 1001,
         | 
| 2184 | 
            +
                  "ending": 1091,
         | 
| 2185 | 
            +
                  "retaliatory": 2598,
         | 
| 2186 | 
            +
                  "noted": 2060,
         | 
| 2187 | 
            +
                  "forcibly": 1287,
         | 
| 2188 | 
            +
                  "withdraw": 3317,
         | 
| 2189 | 
            +
                  "test": 3033,
         | 
| 2190 | 
            +
                  "subjects": 2916,
         | 
| 2191 | 
            +
                  "dosage": 1014,
         | 
| 2192 | 
            +
                  "25mg": 53,
         | 
| 2193 | 
            +
                  "cardiovascular": 539,
         | 
| 2194 | 
            +
                  "event": 1135,
         | 
| 2195 | 
            +
                  "pigs": 2260,
         | 
| 2196 | 
            +
                  "finishing": 1253,
         | 
| 2197 | 
            +
                  "noticeable": 2062,
         | 
| 2198 | 
            +
                  "coli": 669,
         | 
| 2199 | 
            +
                  "detected": 937,
         | 
| 2200 | 
            +
                  "fecal": 1219,
         | 
| 2201 | 
            +
                  "shedding": 2725,
         | 
| 2202 | 
            +
                  "chickens": 615,
         | 
| 2203 | 
            +
                  "rate": 2470,
         | 
| 2204 | 
            +
                  "salmonella": 2655,
         | 
| 2205 | 
            +
                  "choleraesius": 628,
         | 
| 2206 | 
            +
                  "intestines": 1652,
         | 
| 2207 | 
            +
                  "showing": 2744,
         | 
| 2208 | 
            +
                  "influences": 1610,
         | 
| 2209 | 
            +
                  "flora": 1267,
         | 
| 2210 | 
            +
                  "microbes": 1925,
         | 
| 2211 | 
            +
                  "cows": 814,
         | 
| 2212 | 
            +
                  "turkies": 3146,
         | 
| 2213 | 
            +
                  "prior": 2366,
         | 
| 2214 | 
            +
                  "slaughter": 2783,
         | 
| 2215 | 
            +
                  "promote": 2390,
         | 
| 2216 | 
            +
                  "efficiency": 1068,
         | 
| 2217 | 
            +
                  "160": 14,
         | 
| 2218 | 
            +
                  "russia": 2639,
         | 
| 2219 | 
            +
                  "australia": 345,
         | 
| 2220 | 
            +
                  "japan": 1684,
         | 
| 2221 | 
            +
                  "zealand": 3364,
         | 
| 2222 | 
            +
                  "authority": 347,
         | 
| 2223 | 
            +
                  "tachycardia": 2993,
         | 
| 2224 | 
            +
                  "tremors": 3122,
         | 
| 2225 | 
            +
                  "vasodilation": 3221,
         | 
| 2226 | 
            +
                  "coupled": 809,
         | 
| 2227 | 
            +
                  "attacks": 338,
         | 
| 2228 | 
            +
                  "prolonged": 2386,
         | 
| 2229 | 
            +
                  "bp": 466,
         | 
| 2230 | 
            +
                  "cut": 851,
         | 
| 2231 | 
            +
                  "story": 2894,
         | 
| 2232 | 
            +
                  "plan": 2273,
         | 
| 2233 | 
            +
                  "cousins": 811,
         | 
| 2234 | 
            +
                  "recycle": 2510,
         | 
| 2235 | 
            +
                  "code": 663,
         | 
| 2236 | 
            +
                  "pc": 2205,
         | 
| 2237 | 
            +
                  "codes": 664,
         | 
| 2238 | 
            +
                  "co": 657,
         | 
| 2239 | 
            +
                  "sought": 2826,
         | 
| 2240 | 
            +
                  "polycarbonate": 2305,
         | 
| 2241 | 
            +
                  "epoxy": 1111,
         | 
| 2242 | 
            +
                  "resin": 2578,
         | 
| 2243 | 
            +
                  "container": 760,
         | 
| 2244 | 
            +
                  "heating": 1464,
         | 
| 2245 | 
            +
                  "leakage": 1748,
         | 
| 2246 | 
            +
                  "youre": 3362,
         | 
| 2247 | 
            +
                  "plastic": 2279,
         | 
| 2248 | 
            +
                  "ceramics": 577,
         | 
| 2249 | 
            +
                  "glass": 1369,
         | 
| 2250 | 
            +
                  "silly": 2757,
         | 
| 2251 | 
            +
                  "structurally": 2905,
         | 
| 2252 | 
            +
                  "functionally": 1331,
         | 
| 2253 | 
            +
                  "mimics": 1936,
         | 
| 2254 | 
            +
                  "receptors": 2500,
         | 
| 2255 | 
            +
                  "influence": 1609,
         | 
| 2256 | 
            +
                  "energy": 1096,
         | 
| 2257 | 
            +
                  "count": 802,
         | 
| 2258 | 
            +
                  "fetal": 1232,
         | 
| 2259 | 
            +
                  "women": 3326,
         | 
| 2260 | 
            +
                  "repeat": 2559,
         | 
| 2261 | 
            +
                  "miscarriages": 1949,
         | 
| 2262 | 
            +
                  "4x": 78,
         | 
| 2263 | 
            +
                  "miscarry": 1950,
         | 
| 2264 | 
            +
                  "factory": 1196,
         | 
| 2265 | 
            +
                  "workers": 3329,
         | 
| 2266 | 
            +
                  "semen": 2700,
         | 
| 2267 | 
            +
                  "men": 1897,
         | 
| 2268 | 
            +
                  "utilize": 3201,
         | 
| 2269 | 
            +
                  "erectile": 1115,
         | 
| 2270 | 
            +
                  "dysfunction": 1042,
         | 
| 2271 | 
            +
                  "lining": 1787,
         | 
| 2272 | 
            +
                  "jurisdictions": 1698,
         | 
| 2273 | 
            +
                  "require": 2568,
         | 
| 2274 | 
            +
                  "packaging": 2161,
         | 
| 2275 | 
            +
                  "list": 1794,
         | 
| 2276 | 
            +
                  "leak": 1747,
         | 
| 2277 | 
            +
                  "contents": 766,
         | 
| 2278 | 
            +
                  "pretty": 2356,
         | 
| 2279 | 
            +
                  "implications": 1563,
         | 
| 2280 | 
            +
                  "deleterious": 910,
         | 
| 2281 | 
            +
                  "behavior": 403,
         | 
| 2282 | 
            +
                  "prostate": 2402,
         | 
| 2283 | 
            +
                  "males": 1843,
         | 
| 2284 | 
            +
                  "pass": 2190,
         | 
| 2285 | 
            +
                  "placenta": 2269,
         | 
| 2286 | 
            +
                  "mother": 1985,
         | 
| 2287 | 
            +
                  "fetus": 1233,
         | 
| 2288 | 
            +
                  "occur": 2087,
         | 
| 2289 | 
            +
                  "adults": 165,
         | 
| 2290 | 
            +
                  "pressure": 2354,
         | 
| 2291 | 
            +
                  "reproductive": 2567,
         | 
| 2292 | 
            +
                  "breast": 478,
         | 
| 2293 | 
            +
                  "biphenol": 426,
         | 
| 2294 | 
            +
                  "certain": 581,
         | 
| 2295 | 
            +
                  "resins": 2579,
         | 
| 2296 | 
            +
                  "line": 1784,
         | 
| 2297 | 
            +
                  "contaminating": 763,
         | 
| 2298 | 
            +
                  "coroding": 790,
         | 
| 2299 | 
            +
                  "store": 2890,
         | 
| 2300 | 
            +
                  "beverages": 417,
         | 
| 2301 | 
            +
                  "identified": 1549,
         | 
| 2302 | 
            +
                  "recycling": 2511,
         | 
| 2303 | 
            +
                  "tactic": 2994,
         | 
| 2304 | 
            +
                  "manufacters": 1852,
         | 
| 2305 | 
            +
                  "chemically": 609,
         | 
| 2306 | 
            +
                  "act": 134,
         | 
| 2307 | 
            +
                  "logo": 1811,
         | 
| 2308 | 
            +
                  "cucumin": 838,
         | 
| 2309 | 
            +
                  "arterial": 299,
         | 
| 2310 | 
            +
                  "plaque": 2278,
         | 
| 2311 | 
            +
                  "endothelium": 1094,
         | 
| 2312 | 
            +
                  "cellular": 573,
         | 
| 2313 | 
            +
                  "vessels": 3237,
         | 
| 2314 | 
            +
                  "reduction": 2519,
         | 
| 2315 | 
            +
                  "random": 2461,
         | 
| 2316 | 
            +
                  "121": 9,
         | 
| 2317 | 
            +
                  "patients": 2199,
         | 
| 2318 | 
            +
                  "undergoing": 3155,
         | 
| 2319 | 
            +
                  "corony": 793,
         | 
| 2320 | 
            +
                  "bypass": 512,
         | 
| 2321 | 
            +
                  "surgery": 2967,
         | 
| 2322 | 
            +
                  "65": 86,
         | 
| 2323 | 
            +
                  "attack": 337,
         | 
| 2324 | 
            +
                  "placebo": 2266,
         | 
| 2325 | 
            +
                  "antioxidants": 262,
         | 
| 2326 | 
            +
                  "helps": 1474,
         | 
| 2327 | 
            +
                  "activate": 137,
         | 
| 2328 | 
            +
                  "enzymes": 1109,
         | 
| 2329 | 
            +
                  "protecting": 2403,
         | 
| 2330 | 
            +
                  "radicals": 2451,
         | 
| 2331 | 
            +
                  "boosts": 456,
         | 
| 2332 | 
            +
                  "neurotrophic": 2036,
         | 
| 2333 | 
            +
                  "improves": 1570,
         | 
| 2334 | 
            +
                  "connectivity": 740,
         | 
| 2335 | 
            +
                  "depression": 924,
         | 
| 2336 | 
            +
                  "decreased": 890,
         | 
| 2337 | 
            +
                  "60": 85,
         | 
| 2338 | 
            +
                  "effective": 1065,
         | 
| 2339 | 
            +
                  "treating": 3118,
         | 
| 2340 | 
            +
                  "prozac": 2414,
         | 
| 2341 | 
            +
                  "promising": 2389,
         | 
| 2342 | 
            +
                  "44": 74,
         | 
| 2343 | 
            +
                  "colon": 675,
         | 
| 2344 | 
            +
                  "lesions": 1763,
         | 
| 2345 | 
            +
                  "enjoyed": 1101,
         | 
| 2346 | 
            +
                  "tea": 3013,
         | 
| 2347 | 
            +
                  "latte": 1737,
         | 
| 2348 | 
            +
                  "alternatively": 219,
         | 
| 2349 | 
            +
                  "spice": 2845,
         | 
| 2350 | 
            +
                  "method": 1916,
         | 
| 2351 | 
            +
                  "herb": 1480,
         | 
| 2352 | 
            +
                  "ginger": 1363,
         | 
| 2353 | 
            +
                  "indian": 1587,
         | 
| 2354 | 
            +
                  "subcontinent": 2913,
         | 
| 2355 | 
            +
                  "renowned": 2556,
         | 
| 2356 | 
            +
                  "giving": 1366,
         | 
| 2357 | 
            +
                  "curry": 849,
         | 
| 2358 | 
            +
                  "distinct": 1000,
         | 
| 2359 | 
            +
                  "yellow": 3353,
         | 
| 2360 | 
            +
                  "tint": 3073,
         | 
| 2361 | 
            +
                  "curcuminoids": 846,
         | 
| 2362 | 
            +
                  "offer": 2094,
         | 
| 2363 | 
            +
                  "array": 296,
         | 
| 2364 | 
            +
                  "positive": 2317,
         | 
| 2365 | 
            +
                  "benefits": 409,
         | 
| 2366 | 
            +
                  "inflammatory": 1608,
         | 
| 2367 | 
            +
                  "bloodstream": 444,
         | 
| 2368 | 
            +
                  "mix": 1954,
         | 
| 2369 | 
            +
                  "black": 431,
         | 
| 2370 | 
            +
                  "pepper": 2217,
         | 
| 2371 | 
            +
                  "peperine": 2216,
         | 
| 2372 | 
            +
                  "enhanced": 1097,
         | 
| 2373 | 
            +
                  "2000": 35,
         | 
| 2374 | 
            +
                  "comparable": 699,
         | 
| 2375 | 
            +
                  "nsaids": 2068,
         | 
| 2376 | 
            +
                  "tylenol": 3147,
         | 
| 2377 | 
            +
                  "cyanocobacteria": 854,
         | 
| 2378 | 
            +
                  "blue": 445,
         | 
| 2379 | 
            +
                  "green": 1411,
         | 
| 2380 | 
            +
                  "algae": 200,
         | 
| 2381 | 
            +
                  "powdered": 2331,
         | 
| 2382 | 
            +
                  "tablespoon": 2992,
         | 
| 2383 | 
            +
                  "1g": 30,
         | 
| 2384 | 
            +
                  "thiamine": 3050,
         | 
| 2385 | 
            +
                  "riboflavin": 2604,
         | 
| 2386 | 
            +
                  "niacin": 2046,
         | 
| 2387 | 
            +
                  "phosphorus": 2248,
         | 
| 2388 | 
            +
                  "magnesium": 1833,
         | 
| 2389 | 
            +
                  "manganese": 1850,
         | 
| 2390 | 
            +
                  "carb": 531,
         | 
| 2391 | 
            +
                  "20": 33,
         | 
| 2392 | 
            +
                  "carbs": 535,
         | 
| 2393 | 
            +
                  "tbsp": 3012,
         | 
| 2394 | 
            +
                  "supplement": 2950,
         | 
| 2395 | 
            +
                  "suited": 2935,
         | 
| 2396 | 
            +
                  "keto": 1704,
         | 
| 2397 | 
            +
                  "reducing": 2518,
         | 
| 2398 | 
            +
                  "athletes": 331,
         | 
| 2399 | 
            +
                  "cholesterol": 629,
         | 
| 2400 | 
            +
                  "linked": 1788,
         | 
| 2401 | 
            +
                  "bowel": 464,
         | 
| 2402 | 
            +
                  "symptoms": 2985,
         | 
| 2403 | 
            +
                  "digestive": 963,
         | 
| 2404 | 
            +
                  "happy": 1439,
         | 
| 2405 | 
            +
                  "edit": 1062,
         | 
| 2406 | 
            +
                  "deli": 911,
         | 
| 2407 | 
            +
                  "minimally": 1944,
         | 
| 2408 | 
            +
                  "nitrites": 2048,
         | 
| 2409 | 
            +
                  "fun": 1328,
         | 
| 2410 | 
            +
                  "stuff": 2911,
         | 
| 2411 | 
            +
                  "butter": 506,
         | 
| 2412 | 
            +
                  "cereals": 580,
         | 
| 2413 | 
            +
                  "preserved": 2352,
         | 
| 2414 | 
            +
                  "e320": 1044,
         | 
| 2415 | 
            +
                  "e321": 1045,
         | 
| 2416 | 
            +
                  "resonably": 2584,
         | 
| 2417 | 
            +
                  "anticipates": 255,
         | 
| 2418 | 
            +
                  "yet": 3355,
         | 
| 2419 | 
            +
                  "commission": 692,
         | 
| 2420 | 
            +
                  "mice": 1923,
         | 
| 2421 | 
            +
                  "carcinogenicity": 537,
         | 
| 2422 | 
            +
                  "doses": 1016,
         | 
| 2423 | 
            +
                  "affecting": 170,
         | 
| 2424 | 
            +
                  "lung": 1825,
         | 
| 2425 | 
            +
                  "coagulation": 659,
         | 
| 2426 | 
            +
                  "minimization": 1945,
         | 
| 2427 | 
            +
                  "practice": 2338,
         | 
| 2428 | 
            +
                  "butylated": 508,
         | 
| 2429 | 
            +
                  "hydroxyanisole": 1532,
         | 
| 2430 | 
            +
                  "hydroxytoluene": 1533,
         | 
| 2431 | 
            +
                  "isomeric": 1677,
         | 
| 2432 | 
            +
                  "numbers": 2071,
         | 
| 2433 | 
            +
                  "respectively": 2586,
         | 
| 2434 | 
            +
                  "lard": 1728,
         | 
| 2435 | 
            +
                  "instant": 1638,
         | 
| 2436 | 
            +
                  "mashed": 1866,
         | 
| 2437 | 
            +
                  "potatoes": 2325,
         | 
| 2438 | 
            +
                  "beer": 398,
         | 
| 2439 | 
            +
                  "packages": 2160,
         | 
| 2440 | 
            +
                  "sliced": 2788,
         | 
| 2441 | 
            +
                  "salami": 2650,
         | 
| 2442 | 
            +
                  "cosmetic": 798,
         | 
| 2443 | 
            +
                  "lipstick": 1791,
         | 
| 2444 | 
            +
                  "deep": 893,
         | 
| 2445 | 
            +
                  "frying": 1324,
         | 
| 2446 | 
            +
                  "evil": 1141,
         | 
| 2447 | 
            +
                  "monitor": 1972,
         | 
| 2448 | 
            +
                  "raw": 2475,
         | 
| 2449 | 
            +
                  "cooked": 783,
         | 
| 2450 | 
            +
                  "extra": 1182,
         | 
| 2451 | 
            +
                  "crispy": 830,
         | 
| 2452 | 
            +
                  "fries": 1318,
         | 
| 2453 | 
            +
                  "pic": 2256,
         | 
| 2454 | 
            +
                  "example": 1146,
         | 
| 2455 | 
            +
                  "roasted": 2614,
         | 
| 2456 | 
            +
                  "nuts": 2079,
         | 
| 2457 | 
            +
                  "delicious": 912,
         | 
| 2458 | 
            +
                  "siren": 2767,
         | 
| 2459 | 
            +
                  "lull": 1824,
         | 
| 2460 | 
            +
                  "towards": 3095,
         | 
| 2461 | 
            +
                  "inevitable": 1598,
         | 
| 2462 | 
            +
                  "demise": 914,
         | 
| 2463 | 
            +
                  "death": 880,
         | 
| 2464 | 
            +
                  "simmer": 2758,
         | 
| 2465 | 
            +
                  "holds": 1499,
         | 
| 2466 | 
            +
                  "unless": 3165,
         | 
| 2467 | 
            +
                  "additional": 146,
         | 
| 2468 | 
            +
                  "aspargine": 317,
         | 
| 2469 | 
            +
                  "oxaloacetate": 2151,
         | 
| 2470 | 
            +
                  "facilitating": 1190,
         | 
| 2471 | 
            +
                  "processes": 2372,
         | 
| 2472 | 
            +
                  "glutamine": 1374,
         | 
| 2473 | 
            +
                  "amino": 231,
         | 
| 2474 | 
            +
                  "suspected": 2973,
         | 
| 2475 | 
            +
                  "arise": 290,
         | 
| 2476 | 
            +
                  "condensation": 724,
         | 
| 2477 | 
            +
                  "catalyst": 554,
         | 
| 2478 | 
            +
                  "reaction": 2481,
         | 
| 2479 | 
            +
                  "roasting": 2615,
         | 
| 2480 | 
            +
                  "asparagus": 316,
         | 
| 2481 | 
            +
                  "breastmilk": 480,
         | 
| 2482 | 
            +
                  "develop": 942,
         | 
| 2483 | 
            +
                  "needed": 2022,
         | 
| 2484 | 
            +
                  "25x": 54,
         | 
| 2485 | 
            +
                  "instance": 1636,
         | 
| 2486 | 
            +
                  "pneumonia": 2291,
         | 
| 2487 | 
            +
                  "improved": 1569,
         | 
| 2488 | 
            +
                  "cognitive": 666,
         | 
| 2489 | 
            +
                  "malnutrition": 1846,
         | 
| 2490 | 
            +
                  "partum": 2189,
         | 
| 2491 | 
            +
                  "arthritis": 301,
         | 
| 2492 | 
            +
                  "babies": 359,
         | 
| 2493 | 
            +
                  "scandal": 2671,
         | 
| 2494 | 
            +
                  "powder": 2330,
         | 
| 2495 | 
            +
                  "carries": 547,
         | 
| 2496 | 
            +
                  "mixed": 1955,
         | 
| 2497 | 
            +
                  "ingesting": 1617,
         | 
| 2498 | 
            +
                  "boil": 447,
         | 
| 2499 | 
            +
                  "possibility": 2319,
         | 
| 2500 | 
            +
                  "cronobacter": 832,
         | 
| 2501 | 
            +
                  "sakazakii": 2648,
         | 
| 2502 | 
            +
                  "stored": 2891,
         | 
| 2503 | 
            +
                  "improperly": 1567,
         | 
| 2504 | 
            +
                  "mortality": 1983,
         | 
| 2505 | 
            +
                  "established": 1121,
         | 
| 2506 | 
            +
                  "immense": 1559,
         | 
| 2507 | 
            +
                  "corporations": 794,
         | 
| 2508 | 
            +
                  "financed": 1247,
         | 
| 2509 | 
            +
                  "dodgy": 1009,
         | 
| 2510 | 
            +
                  "corner": 789,
         | 
| 2511 | 
            +
                  "fear": 1218,
         | 
| 2512 | 
            +
                  "melamine": 1891,
         | 
| 2513 | 
            +
                  "congressional": 735,
         | 
| 2514 | 
            +
                  "formulas": 1299,
         | 
| 2515 | 
            +
                  "gerber": 1358,
         | 
| 2516 | 
            +
                  "beech": 396,
         | 
| 2517 | 
            +
                  "nut": 2075,
         | 
| 2518 | 
            +
                  "nurture": 2074,
         | 
| 2519 | 
            +
                  "hains": 1427,
         | 
| 2520 | 
            +
                  "celestial": 569,
         | 
| 2521 | 
            +
                  "four": 1307,
         | 
| 2522 | 
            +
                  "knowingly": 1715,
         | 
| 2523 | 
            +
                  "contained": 759,
         | 
| 2524 | 
            +
                  "177x": 16,
         | 
| 2525 | 
            +
                  "sale": 2651,
         | 
| 2526 | 
            +
                  "uproar": 3184,
         | 
| 2527 | 
            +
                  "congress": 734,
         | 
| 2528 | 
            +
                  "rushed": 2637,
         | 
| 2529 | 
            +
                  "legislation": 1760,
         | 
| 2530 | 
            +
                  "personally": 2226,
         | 
| 2531 | 
            +
                  "newborn": 2041,
         | 
| 2532 | 
            +
                  "fortified": 1301,
         | 
| 2533 | 
            +
                  "lactose": 1724,
         | 
| 2534 | 
            +
                  "supplemented": 2951,
         | 
| 2535 | 
            +
                  "topped": 3088,
         | 
| 2536 | 
            +
                  "minerals": 1942,
         | 
| 2537 | 
            +
                  "simulate": 2763,
         | 
| 2538 | 
            +
                  "newborns": 2042,
         | 
| 2539 | 
            +
                  "ages": 182,
         | 
| 2540 | 
            +
                  "months": 1978,
         | 
| 2541 | 
            +
                  "looked": 1814,
         | 
| 2542 | 
            +
                  "absurd": 110,
         | 
| 2543 | 
            +
                  "nutrient": 2077,
         | 
| 2544 | 
            +
                  "profile": 2379,
         | 
| 2545 | 
            +
                  "month": 1977,
         | 
| 2546 | 
            +
                  "continues": 769,
         | 
| 2547 | 
            +
                  "adjust": 153,
         | 
| 2548 | 
            +
                  "antibodies": 251,
         | 
| 2549 | 
            +
                  "literal": 1799,
         | 
| 2550 | 
            +
                  "shit": 2731,
         | 
| 2551 | 
            +
                  "false": 1202,
         | 
| 2552 | 
            +
                  "anticipate": 253,
         | 
| 2553 | 
            +
                  "insulin": 1641,
         | 
| 2554 | 
            +
                  "resistance": 2581,
         | 
| 2555 | 
            +
                  "ii": 1550,
         | 
| 2556 | 
            +
                  "detailed": 936,
         | 
| 2557 | 
            +
                  "explanation": 1172,
         | 
| 2558 | 
            +
                  "overweight": 2148,
         | 
| 2559 | 
            +
                  "stick": 2884,
         | 
| 2560 | 
            +
                  "sweet": 2977,
         | 
| 2561 | 
            +
                  "berries": 415,
         | 
| 2562 | 
            +
                  "honey": 1506,
         | 
| 2563 | 
            +
                  "fren": 1310,
         | 
| 2564 | 
            +
                  "ketogenics": 1705,
         | 
| 2565 | 
            +
                  "resources": 2585,
         | 
| 2566 | 
            +
                  "chat": 599,
         | 
| 2567 | 
            +
                  "strict": 2901,
         | 
| 2568 | 
            +
                  "necessary": 2018,
         | 
| 2569 | 
            +
                  "tried": 3127,
         | 
| 2570 | 
            +
                  "limiting": 1782,
         | 
| 2571 | 
            +
                  "exercising": 1156,
         | 
| 2572 | 
            +
                  "ways": 3276,
         | 
| 2573 | 
            +
                  "lifestyle": 1774,
         | 
| 2574 | 
            +
                  "rational": 2472,
         | 
| 2575 | 
            +
                  "portion": 2315,
         | 
| 2576 | 
            +
                  "distill": 995,
         | 
| 2577 | 
            +
                  "tossed": 3090,
         | 
| 2578 | 
            +
                  "laughing": 1738,
         | 
| 2579 | 
            +
                  "methanol": 1915,
         | 
| 2580 | 
            +
                  "headaches": 1454,
         | 
| 2581 | 
            +
                  "changes": 590,
         | 
| 2582 | 
            +
                  "seizures": 2693,
         | 
| 2583 | 
            +
                  "host": 1514,
         | 
| 2584 | 
            +
                  "ms": 1993,
         | 
| 2585 | 
            +
                  "hypothesized": 1541,
         | 
| 2586 | 
            +
                  "acidic": 125,
         | 
| 2587 | 
            +
                  "drinks": 1026,
         | 
| 2588 | 
            +
                  "bitter": 430,
         | 
| 2589 | 
            +
                  "taste": 3006,
         | 
| 2590 | 
            +
                  "sodas": 2802,
         | 
| 2591 | 
            +
                  "likelihood": 1779,
         | 
| 2592 | 
            +
                  "broken": 491,
         | 
| 2593 | 
            +
                  "gross": 1413,
         | 
| 2594 | 
            +
                  "remaining": 2547,
         | 
| 2595 | 
            +
                  "scary": 2673,
         | 
| 2596 | 
            +
                  "hydrolyze": 1530,
         | 
| 2597 | 
            +
                  "blindness": 438,
         | 
| 2598 | 
            +
                  "moonshine": 1980,
         | 
| 2599 | 
            +
                  "ethanol": 1127,
         | 
| 2600 | 
            +
                  "moonshiners": 1981,
         | 
| 2601 | 
            +
                  "refer": 2520,
         | 
| 2602 | 
            +
                  "distillation": 996,
         | 
| 2603 | 
            +
                  "10ml": 2,
         | 
| 2604 | 
            +
                  "pure": 2426,
         | 
| 2605 | 
            +
                  "permanent": 2222,
         | 
| 2606 | 
            +
                  "optic": 2115,
         | 
| 2607 | 
            +
                  "nerve": 2026,
         | 
| 2608 | 
            +
                  "result": 2594,
         | 
| 2609 | 
            +
                  "triple": 3129,
         | 
| 2610 | 
            +
                  "30ml": 60,
         | 
| 2611 | 
            +
                  "metabolized": 1912,
         | 
| 2612 | 
            +
                  "formaldehyde": 1291,
         | 
| 2613 | 
            +
                  "formic": 1295,
         | 
| 2614 | 
            +
                  "dehydrogenase": 907,
         | 
| 2615 | 
            +
                  "adh": 152,
         | 
| 2616 | 
            +
                  "sweetener": 2979,
         | 
| 2617 | 
            +
                  "200x": 39,
         | 
| 2618 | 
            +
                  "sweeter": 2981,
         | 
| 2619 | 
            +
                  "variety": 3217,
         | 
| 2620 | 
            +
                  "worldwide": 3333,
         | 
| 2621 | 
            +
                  "soft": 2804,
         | 
| 2622 | 
            +
                  "methyl": 1919,
         | 
| 2623 | 
            +
                  "aspartic": 320,
         | 
| 2624 | 
            +
                  "phenylalanine": 2244,
         | 
| 2625 | 
            +
                  "dipeptide": 969,
         | 
| 2626 | 
            +
                  "fumeric": 1327,
         | 
| 2627 | 
            +
                  "e297": 1043,
         | 
| 2628 | 
            +
                  "catalyzed": 555,
         | 
| 2629 | 
            +
                  "aspartate": 319,
         | 
| 2630 | 
            +
                  "lyase": 1827,
         | 
| 2631 | 
            +
                  "vats": 3223,
         | 
| 2632 | 
            +
                  "combined": 685,
         | 
| 2633 | 
            +
                  "methylized": 1920,
         | 
| 2634 | 
            +
                  "ch3": 586,
         | 
| 2635 | 
            +
                  "warm": 3263,
         | 
| 2636 | 
            +
                  "blooded": 442,
         | 
| 2637 | 
            +
                  "role": 2619,
         | 
| 2638 | 
            +
                  "pathogenic": 2197,
         | 
| 2639 | 
            +
                  "pathogens": 2198,
         | 
| 2640 | 
            +
                  "establishing": 1122,
         | 
| 2641 | 
            +
                  "colonies": 676,
         | 
| 2642 | 
            +
                  "k2": 1699,
         | 
| 2643 | 
            +
                  "expelled": 1163,
         | 
| 2644 | 
            +
                  "stevia": 2882,
         | 
| 2645 | 
            +
                  "tied": 3068,
         | 
| 2646 | 
            +
                  "friend": 1316,
         | 
| 2647 | 
            +
                  "stumbled": 2912,
         | 
| 2648 | 
            +
                  "birth": 428,
         | 
| 2649 | 
            +
                  "abortion": 103,
         | 
| 2650 | 
            +
                  "sense": 2704,
         | 
| 2651 | 
            +
                  "america": 229,
         | 
| 2652 | 
            +
                  "continued": 768,
         | 
| 2653 | 
            +
                  "forwarded": 1304,
         | 
| 2654 | 
            +
                  "extracts": 1185,
         | 
| 2655 | 
            +
                  "belong": 406,
         | 
| 2656 | 
            +
                  "obese": 2081,
         | 
| 2657 | 
            +
                  "worry": 3335,
         | 
| 2658 | 
            +
                  "told": 3081,
         | 
| 2659 | 
            +
                  "tremendous": 3121,
         | 
| 2660 | 
            +
                  "simplification": 2760,
         | 
| 2661 | 
            +
                  "tasting": 3008,
         | 
| 2662 | 
            +
                  "anticipation": 257,
         | 
| 2663 | 
            +
                  "sugars": 2930,
         | 
| 2664 | 
            +
                  "sends": 2703,
         | 
| 2665 | 
            +
                  "arriving": 297,
         | 
| 2666 | 
            +
                  "messages": 1908,
         | 
| 2667 | 
            +
                  "listening": 1797,
         | 
| 2668 | 
            +
                  "potentially": 2327,
         | 
| 2669 | 
            +
                  "bringing": 488,
         | 
| 2670 | 
            +
                  "cried": 824,
         | 
| 2671 | 
            +
                  "wolf": 3323,
         | 
| 2672 | 
            +
                  "lied": 1772,
         | 
| 2673 | 
            +
                  "mute": 2004,
         | 
| 2674 | 
            +
                  "notification": 2063,
         | 
| 2675 | 
            +
                  "oh": 2097,
         | 
| 2676 | 
            +
                  "drink": 1024,
         | 
| 2677 | 
            +
                  "fine": 1252,
         | 
| 2678 | 
            +
                  "grab": 1400,
         | 
| 2679 | 
            +
                  "ten": 3022,
         | 
| 2680 | 
            +
                  "shocked": 2733,
         | 
| 2681 | 
            +
                  "examples": 1147,
         | 
| 2682 | 
            +
                  "expect": 1159,
         | 
| 2683 | 
            +
                  "peanut": 2207,
         | 
| 2684 | 
            +
                  "butters": 507,
         | 
| 2685 | 
            +
                  "spreads": 2857,
         | 
| 2686 | 
            +
                  "curse": 850,
         | 
| 2687 | 
            +
                  "soyboy": 2832,
         | 
| 2688 | 
            +
                  "phytoestrogens": 2255,
         | 
| 2689 | 
            +
                  "estradiol": 1124,
         | 
| 2690 | 
            +
                  "breasts": 481,
         | 
| 2691 | 
            +
                  "surely": 2963,
         | 
| 2692 | 
            +
                  "woman": 3324,
         | 
| 2693 | 
            +
                  "disrupt": 985,
         | 
| 2694 | 
            +
                  "cycles": 855,
         | 
| 2695 | 
            +
                  "2014": 40,
         | 
| 2696 | 
            +
                  "82": 92,
         | 
| 2697 | 
            +
                  "total": 3091,
         | 
| 2698 | 
            +
                  "cultivation": 841,
         | 
| 2699 | 
            +
                  "gmo": 1382,
         | 
| 2700 | 
            +
                  "soybeans": 2831,
         | 
| 2701 | 
            +
                  "developed": 943,
         | 
| 2702 | 
            +
                  "imagine": 1555,
         | 
| 2703 | 
            +
                  "gotten": 1395,
         | 
| 2704 | 
            +
                  "honest": 1504,
         | 
| 2705 | 
            +
                  "entire": 1104,
         | 
| 2706 | 
            +
                  "dedicated": 891,
         | 
| 2707 | 
            +
                  "gmos": 1383,
         | 
| 2708 | 
            +
                  "future": 1337,
         | 
| 2709 | 
            +
                  "deserves": 930,
         | 
| 2710 | 
            +
                  "terrifying": 3031,
         | 
| 2711 | 
            +
                  "onto": 2111,
         | 
| 2712 | 
            +
                  "nowadays": 2066,
         | 
| 2713 | 
            +
                  "isoflavones": 1676,
         | 
| 2714 | 
            +
                  "1970": 26,
         | 
| 2715 | 
            +
                  "1990": 27,
         | 
| 2716 | 
            +
                  "skyrocketed": 2781,
         | 
| 2717 | 
            +
                  "coincidence": 668,
         | 
| 2718 | 
            +
                  "youngest": 3361,
         | 
| 2719 | 
            +
                  "defenseless": 897,
         | 
| 2720 | 
            +
                  "face": 1188,
         | 
| 2721 | 
            +
                  "mine": 1939,
         | 
| 2722 | 
            +
                  "honestly": 1505,
         | 
| 2723 | 
            +
                  "book": 452,
         | 
| 2724 | 
            +
                  "suprised": 2961,
         | 
| 2725 | 
            +
                  "soybean": 2830,
         | 
| 2726 | 
            +
                  "genistin": 1352,
         | 
| 2727 | 
            +
                  "daidzin": 860,
         | 
| 2728 | 
            +
                  "isoflavone": 1675,
         | 
| 2729 | 
            +
                  "glucosides": 1372,
         | 
| 2730 | 
            +
                  "xeno": 3345,
         | 
| 2731 | 
            +
                  "estrogens": 1126,
         | 
| 2732 | 
            +
                  "converted": 778,
         | 
| 2733 | 
            +
                  "bacteria": 363,
         | 
| 2734 | 
            +
                  "disrupting": 986,
         | 
| 2735 | 
            +
                  "pump": 2418,
         | 
| 2736 | 
            +
                  "hype": 1535,
         | 
| 2737 | 
            +
                  "reducer": 2516,
         | 
| 2738 | 
            +
                  "asain": 307,
         | 
| 2739 | 
            +
                  "cultures": 844,
         | 
| 2740 | 
            +
                  "although": 222,
         | 
| 2741 | 
            +
                  "disputed": 984,
         | 
| 2742 | 
            +
                  "essential": 1119,
         | 
| 2743 | 
            +
                  "vegetarians": 3232,
         | 
| 2744 | 
            +
                  "vegans": 3228,
         | 
| 2745 | 
            +
                  "obtain": 2083,
         | 
| 2746 | 
            +
                  "confromational": 732,
         | 
| 2747 | 
            +
                  "structure": 2906,
         | 
| 2748 | 
            +
                  "secondary": 2684,
         | 
| 2749 | 
            +
                  "sexual": 2716,
         | 
| 2750 | 
            +
                  "characteristics": 596,
         | 
| 2751 | 
            +
                  "widened": 3308,
         | 
| 2752 | 
            +
                  "hips": 1493,
         | 
| 2753 | 
            +
                  "patterned": 2200,
         | 
| 2754 | 
            +
                  "placement": 2268,
         | 
| 2755 | 
            +
                  "abilities": 101,
         | 
| 2756 | 
            +
                  "personalized": 2225,
         | 
| 2757 | 
            +
                  "plans": 2275,
         | 
| 2758 | 
            +
                  "macro": 1831,
         | 
| 2759 | 
            +
                  "arizona": 291,
         | 
| 2760 | 
            +
                  "state": 2873,
         | 
| 2761 | 
            +
                  "university": 3163,
         | 
| 2762 | 
            +
                  "2021": 45,
         | 
| 2763 | 
            +
                  "unborn": 3152,
         | 
| 2764 | 
            +
                  "fetuses": 1234,
         | 
| 2765 | 
            +
                  "indicates": 1590,
         | 
| 2766 | 
            +
                  "born": 457,
         | 
| 2767 | 
            +
                  "microplastic": 1926,
         | 
| 2768 | 
            +
                  "accumulation": 119,
         | 
| 2769 | 
            +
                  "cytotoxicity": 857,
         | 
| 2770 | 
            +
                  "hypersensitivity": 1539,
         | 
| 2771 | 
            +
                  "malfunctioning": 1844,
         | 
| 2772 | 
            +
                  "responses": 2590,
         | 
| 2773 | 
            +
                  "acute": 138,
         | 
| 2774 | 
            +
                  "hemolysis": 1476,
         | 
| 2775 | 
            +
                  "mothers": 1986,
         | 
| 2776 | 
            +
                  "genital": 1353,
         | 
| 2777 | 
            +
                  "dehp": 905,
         | 
| 2778 | 
            +
                  "metabolites": 1911,
         | 
| 2779 | 
            +
                  "organs": 2128,
         | 
| 2780 | 
            +
                  "individuals": 1592,
         | 
| 2781 | 
            +
                  "soluable": 2812,
         | 
| 2782 | 
            +
                  "surface": 2965,
         | 
| 2783 | 
            +
                  "heightening": 1469,
         | 
| 2784 | 
            +
                  "sadly": 2643,
         | 
| 2785 | 
            +
                  "cups": 845,
         | 
| 2786 | 
            +
                  "containers": 761,
         | 
| 2787 | 
            +
                  "plates": 2284,
         | 
| 2788 | 
            +
                  "sealable": 2683,
         | 
| 2789 | 
            +
                  "bottle": 459,
         | 
| 2790 | 
            +
                  "fill": 1240,
         | 
| 2791 | 
            +
                  "distilled": 997,
         | 
| 2792 | 
            +
                  "purified": 2427,
         | 
| 2793 | 
            +
                  "necessity": 2019,
         | 
| 2794 | 
            +
                  "incorporating": 1581,
         | 
| 2795 | 
            +
                  "collected": 671,
         | 
| 2796 | 
            +
                  "ocean": 2090,
         | 
| 2797 | 
            +
                  "unfortunately": 3158,
         | 
| 2798 | 
            +
                  "tasty": 3009,
         | 
| 2799 | 
            +
                  "rock": 2616,
         | 
| 2800 | 
            +
                  "tl": 3079,
         | 
| 2801 | 
            +
                  "liquids": 1793,
         | 
| 2802 | 
            +
                  "atmospheric": 333,
         | 
| 2803 | 
            +
                  "dissolve": 992,
         | 
| 2804 | 
            +
                  "liquid": 1792,
         | 
| 2805 | 
            +
                  "uses": 3196,
         | 
| 2806 | 
            +
                  "average": 353,
         | 
| 2807 | 
            +
                  "325": 61,
         | 
| 2808 | 
            +
                  "peices": 2210,
         | 
| 2809 | 
            +
                  "litre": 1802,
         | 
| 2810 | 
            +
                  "nestle": 2027,
         | 
| 2811 | 
            +
                  "microbeads": 1924,
         | 
| 2812 | 
            +
                  "toothpaste": 3084,
         | 
| 2813 | 
            +
                  "beauty": 391,
         | 
| 2814 | 
            +
                  "guess": 1422,
         | 
| 2815 | 
            +
                  "defined": 901,
         | 
| 2816 | 
            +
                  "5mm": 84,
         | 
| 2817 | 
            +
                  "diameter": 950,
         | 
| 2818 | 
            +
                  "noaa": 2049,
         | 
| 2819 | 
            +
                  "environments": 1107,
         | 
| 2820 | 
            +
                  "air": 191,
         | 
| 2821 | 
            +
                  "soil": 2807,
         | 
| 2822 | 
            +
                  "organisms": 2125,
         | 
| 2823 | 
            +
                  "lesser": 1765,
         | 
| 2824 | 
            +
                  "extent": 1181,
         | 
| 2825 | 
            +
                  "grazing": 1409,
         | 
| 2826 | 
            +
                  "land": 1726,
         | 
| 2827 | 
            +
                  "ingest": 1616,
         | 
| 2828 | 
            +
                  "unknowingly": 3164,
         | 
| 2829 | 
            +
                  "accumulate": 118,
         | 
| 2830 | 
            +
                  "vaccenic": 3207,
         | 
| 2831 | 
            +
                  "occurs": 2089,
         | 
| 2832 | 
            +
                  "rest": 2592,
         | 
| 2833 | 
            +
                  "arteries": 300,
         | 
| 2834 | 
            +
                  "atrocious": 335,
         | 
| 2835 | 
            +
                  "medical": 1886,
         | 
| 2836 | 
            +
                  "legally": 1759,
         | 
| 2837 | 
            +
                  "grams": 1404,
         | 
| 2838 | 
            +
                  "half": 1429,
         | 
| 2839 | 
            +
                  "gram": 1403,
         | 
| 2840 | 
            +
                  "serving": 2710,
         | 
| 2841 | 
            +
                  "gimmick": 1362,
         | 
| 2842 | 
            +
                  "emphasize": 1081,
         | 
| 2843 | 
            +
                  "hydrogenated": 1528,
         | 
| 2844 | 
            +
                  "sound": 2827,
         | 
| 2845 | 
            +
                  "opposite": 2114,
         | 
| 2846 | 
            +
                  "btw": 496,
         | 
| 2847 | 
            +
                  "slaughterhouses": 2784,
         | 
| 2848 | 
            +
                  "render": 2554,
         | 
| 2849 | 
            +
                  "support": 2953,
         | 
| 2850 | 
            +
                  "business": 504,
         | 
| 2851 | 
            +
                  "owner": 2150,
         | 
| 2852 | 
            +
                  "saturated": 2663,
         | 
| 2853 | 
            +
                  "enjoyable": 1100,
         | 
| 2854 | 
            +
                  "brings": 489,
         | 
| 2855 | 
            +
                  "closer": 653,
         | 
| 2856 | 
            +
                  "saturation": 2664,
         | 
| 2857 | 
            +
                  "molecule": 1967,
         | 
| 2858 | 
            +
                  "accept": 113,
         | 
| 2859 | 
            +
                  "hydrogen": 1527,
         | 
| 2860 | 
            +
                  "behaves": 402,
         | 
| 2861 | 
            +
                  "partial": 2184,
         | 
| 2862 | 
            +
                  "empty": 1083,
         | 
| 2863 | 
            +
                  "spaces": 2833,
         | 
| 2864 | 
            +
                  "slurry": 2794,
         | 
| 2865 | 
            +
                  "unsaturated": 3172,
         | 
| 2866 | 
            +
                  "angle": 242,
         | 
| 2867 | 
            +
                  "cis": 635,
         | 
| 2868 | 
            +
                  "trannies": 3107,
         | 
| 2869 | 
            +
                  "ready": 2486,
         | 
| 2870 | 
            +
                  "hence": 1477,
         | 
| 2871 | 
            +
                  "expire": 1167,
         | 
| 2872 | 
            +
                  "seen": 2692,
         | 
| 2873 | 
            +
                  "phrases": 2251,
         | 
| 2874 | 
            +
                  "terribly": 3029,
         | 
| 2875 | 
            +
                  "refers": 2523,
         | 
| 2876 | 
            +
                  "corresponding": 796,
         | 
| 2877 | 
            +
                  "counterpart": 804,
         | 
| 2878 | 
            +
                  "room": 2621,
         | 
| 2879 | 
            +
                  "olive": 2107,
         | 
| 2880 | 
            +
                  "convenient": 776,
         | 
| 2881 | 
            +
                  "slice": 2787,
         | 
| 2882 | 
            +
                  "composed": 708,
         | 
| 2883 | 
            +
                  "transform": 3110,
         | 
| 2884 | 
            +
                  "vegetables": 3231,
         | 
| 2885 | 
            +
                  "pictured": 2259,
         | 
| 2886 | 
            +
                  "simplified": 2761,
         | 
| 2887 | 
            +
                  "version": 3235,
         | 
| 2888 | 
            +
                  "oranges": 2121,
         | 
| 2889 | 
            +
                  "tree": 3120,
         | 
| 2890 | 
            +
                  "looks": 1815,
         | 
| 2891 | 
            +
                  "artificially": 306,
         | 
| 2892 | 
            +
                  "dyed": 1040,
         | 
| 2893 | 
            +
                  "1950s": 22,
         | 
| 2894 | 
            +
                  "certian": 584,
         | 
| 2895 | 
            +
                  "regions": 2533,
         | 
| 2896 | 
            +
                  "normally": 2055,
         | 
| 2897 | 
            +
                  "shade": 2718,
         | 
| 2898 | 
            +
                  "bath": 386,
         | 
| 2899 | 
            +
                  "solvent": 2815,
         | 
| 2900 | 
            +
                  "gaudy": 1345,
         | 
| 2901 | 
            +
                  "color": 678,
         | 
| 2902 | 
            +
                  "promptly": 2392,
         | 
| 2903 | 
            +
                  "waxed": 3274,
         | 
| 2904 | 
            +
                  "extend": 1178,
         | 
| 2905 | 
            +
                  "washed": 3266,
         | 
| 2906 | 
            +
                  "insoluble": 1634,
         | 
| 2907 | 
            +
                  "spotted": 2853,
         | 
| 2908 | 
            +
                  "blemishes": 435,
         | 
| 2909 | 
            +
                  "kinda": 1714,
         | 
| 2910 | 
            +
                  "ugly": 3148,
         | 
| 2911 | 
            +
                  "colored": 679,
         | 
| 2912 | 
            +
                  "shady": 2719,
         | 
| 2913 | 
            +
                  "bakery": 369,
         | 
| 2914 | 
            +
                  "sounding": 2828,
         | 
| 2915 | 
            +
                  "encountered": 1087,
         | 
| 2916 | 
            +
                  "propionate": 2397,
         | 
| 2917 | 
            +
                  "communication": 696,
         | 
| 2918 | 
            +
                  "exasperate": 1148,
         | 
| 2919 | 
            +
                  "autistic": 349,
         | 
| 2920 | 
            +
                  "traits": 3106,
         | 
| 2921 | 
            +
                  "discovered": 973,
         | 
| 2922 | 
            +
                  "halted": 1431,
         | 
| 2923 | 
            +
                  "spoilage": 2851,
         | 
| 2924 | 
            +
                  "rope": 2623,
         | 
| 2925 | 
            +
                  "extensive": 1180,
         | 
| 2926 | 
            +
                  "liberally": 1769,
         | 
| 2927 | 
            +
                  "moist": 1965,
         | 
| 2928 | 
            +
                  "flour": 1270,
         | 
| 2929 | 
            +
                  "temporary": 3021,
         | 
| 2930 | 
            +
                  "developing": 944,
         | 
| 2931 | 
            +
                  "teen": 3015,
         | 
| 2932 | 
            +
                  "mainstream": 1835,
         | 
| 2933 | 
            +
                  "dental": 916,
         | 
| 2934 | 
            +
                  "mouthwash": 1988,
         | 
| 2935 | 
            +
                  "floss": 1268,
         | 
| 2936 | 
            +
                  "viable": 3239,
         | 
| 2937 | 
            +
                  "bicarbonate": 420,
         | 
| 2938 | 
            +
                  "toothpastes": 3085,
         | 
| 2939 | 
            +
                  "carbonate": 534,
         | 
| 2940 | 
            +
                  "hydrated": 1525,
         | 
| 2941 | 
            +
                  "silica": 2756,
         | 
| 2942 | 
            +
                  "citrate": 636,
         | 
| 2943 | 
            +
                  "approach": 282,
         | 
| 2944 | 
            +
                  "paste": 2195,
         | 
| 2945 | 
            +
                  "applied": 281,
         | 
| 2946 | 
            +
                  "teeth": 3016,
         | 
| 2947 | 
            +
                  "normal": 2054,
         | 
| 2948 | 
            +
                  "gargled": 1342,
         | 
| 2949 | 
            +
                  "bought": 462,
         | 
| 2950 | 
            +
                  "aquaflosser": 286,
         | 
| 2951 | 
            +
                  "steam": 2878,
         | 
| 2952 | 
            +
                  "bones": 451,
         | 
| 2953 | 
            +
                  "recommend": 2506,
         | 
| 2954 | 
            +
                  "removing": 2553,
         | 
| 2955 | 
            +
                  "immediately": 1558,
         | 
| 2956 | 
            +
                  "flouride": 1271,
         | 
| 2957 | 
            +
                  "pros": 2401,
         | 
| 2958 | 
            +
                  "distillers": 999,
         | 
| 2959 | 
            +
                  "cons": 741,
         | 
| 2960 | 
            +
                  "produces": 2375,
         | 
| 2961 | 
            +
                  "yield": 3356,
         | 
| 2962 | 
            +
                  "requirement": 2570,
         | 
| 2963 | 
            +
                  "letting": 1766,
         | 
| 2964 | 
            +
                  "24": 50,
         | 
| 2965 | 
            +
                  "hrs": 1518,
         | 
| 2966 | 
            +
                  "cl": 639,
         | 
| 2967 | 
            +
                  "dissipate": 991,
         | 
| 2968 | 
            +
                  "tastes": 3007,
         | 
| 2969 | 
            +
                  "stale": 2865,
         | 
| 2970 | 
            +
                  "formed": 1292,
         | 
| 2971 | 
            +
                  "deionized": 908,
         | 
| 2972 | 
            +
                  "purify": 2428,
         | 
| 2973 | 
            +
                  "literally": 1800,
         | 
| 2974 | 
            +
                  "quack": 2435,
         | 
| 2975 | 
            +
                  "dentists": 917,
         | 
| 2976 | 
            +
                  "irreversibly": 1671,
         | 
| 2977 | 
            +
                  "skeleton": 2777,
         | 
| 2978 | 
            +
                  "permanently": 2223,
         | 
| 2979 | 
            +
                  "alters": 221,
         | 
| 2980 | 
            +
                  "damages": 865,
         | 
| 2981 | 
            +
                  "drastically": 1022,
         | 
| 2982 | 
            +
                  "lowered": 1821,
         | 
| 2983 | 
            +
                  "iq": 1664,
         | 
| 2984 | 
            +
                  "allegedly": 204,
         | 
| 2985 | 
            +
                  "moderately": 1960,
         | 
| 2986 | 
            +
                  "constantly": 753,
         | 
| 2987 | 
            +
                  "subjecting": 2915,
         | 
| 2988 | 
            +
                  "anymore": 266,
         | 
| 2989 | 
            +
                  "wrath": 3338,
         | 
| 2990 | 
            +
                  "treat": 3117,
         | 
| 2991 | 
            +
                  "unda": 3154,
         | 
| 2992 | 
            +
                  "yeast": 3352,
         | 
| 2993 | 
            +
                  "extract": 1183,
         | 
| 2994 | 
            +
                  "glutamic": 1373,
         | 
| 2995 | 
            +
                  "exact": 1144,
         | 
| 2996 | 
            +
                  "recipe": 2501,
         | 
| 2997 | 
            +
                  "closely": 652,
         | 
| 2998 | 
            +
                  "guarded": 1421,
         | 
| 2999 | 
            +
                  "percentage": 2219,
         | 
| 3000 | 
            +
                  "monosodium": 1975,
         | 
| 3001 | 
            +
                  "msg": 1994,
         | 
| 3002 | 
            +
                  "casually": 552,
         | 
| 3003 | 
            +
                  "150c": 12,
         | 
| 3004 | 
            +
                  "iii": 1551,
         | 
| 3005 | 
            +
                  "caramel": 530,
         | 
| 3006 | 
            +
                  "picture": 2258,
         | 
| 3007 | 
            +
                  "508": 80,
         | 
| 3008 | 
            +
                  "modest": 1963,
         | 
| 3009 | 
            +
                  "conclude": 721,
         | 
| 3010 | 
            +
                  "sake": 2649,
         | 
| 3011 | 
            +
                  "aims": 190,
         | 
| 3012 | 
            +
                  "government": 1396,
         | 
| 3013 | 
            +
                  "assured": 328,
         | 
| 3014 | 
            +
                  "trail": 3104,
         | 
| 3015 | 
            +
                  "carnage": 543,
         | 
| 3016 | 
            +
                  "wake": 3256,
         | 
| 3017 | 
            +
                  "deceit": 884,
         | 
| 3018 | 
            +
                  "staking": 2864,
         | 
| 3019 | 
            +
                  "grocery": 1412,
         | 
| 3020 | 
            +
                  "claims": 642,
         | 
| 3021 | 
            +
                  "intense": 1644,
         | 
| 3022 | 
            +
                  "submissions": 2917,
         | 
| 3023 | 
            +
                  "suggestions": 2931,
         | 
| 3024 | 
            +
                  "message": 1907,
         | 
| 3025 | 
            +
                  "intend": 1643,
         | 
| 3026 | 
            +
                  "posting": 2321,
         | 
| 3027 | 
            +
                  "luck": 1823,
         | 
| 3028 | 
            +
                  "fellow": 1226,
         | 
| 3029 | 
            +
                  "goyim": 1398,
         | 
| 3030 | 
            +
                  "ok": 2100,
         | 
| 3031 | 
            +
                  "lads": 1725,
         | 
| 3032 | 
            +
                  "photos": 2250,
         | 
| 3033 | 
            +
                  "star": 2871,
         | 
| 3034 | 
            +
                  "juice": 1693,
         | 
| 3035 | 
            +
                  "aldi": 198,
         | 
| 3036 | 
            +
                  "terms": 3027,
         | 
| 3037 | 
            +
                  "fucked": 1325,
         | 
| 3038 | 
            +
                  "wombo": 3325,
         | 
| 3039 | 
            +
                  "combo": 686,
         | 
| 3040 | 
            +
                  "combination": 684,
         | 
| 3041 | 
            +
                  "211": 47,
         | 
| 3042 | 
            +
                  "pickling": 2257,
         | 
| 3043 | 
            +
                  "quacks": 2436,
         | 
| 3044 | 
            +
                  "mislead": 1951,
         | 
| 3045 | 
            +
                  "rationale": 2473,
         | 
| 3046 | 
            +
                  "clarify": 643,
         | 
| 3047 | 
            +
                  "ascorbic": 308,
         | 
| 3048 | 
            +
                  "pay": 2202,
         | 
| 3049 | 
            +
                  "close": 651,
         | 
| 3050 | 
            +
                  "explains": 1171,
         | 
| 3051 | 
            +
                  "refuses": 2528,
         | 
| 3052 | 
            +
                  "hate": 1450,
         | 
| 3053 | 
            +
                  "dead": 877,
         | 
| 3054 | 
            +
                  "signed": 2752,
         | 
| 3055 | 
            +
                  "millions": 1934,
         | 
| 3056 | 
            +
                  "taxpayer": 3010,
         | 
| 3057 | 
            +
                  "collecting": 672,
         | 
| 3058 | 
            +
                  "cheques": 610,
         | 
| 3059 | 
            +
                  "greed": 1410,
         | 
| 3060 | 
            +
                  "refusing": 2529,
         | 
| 3061 | 
            +
                  "band": 373,
         | 
| 3062 | 
            +
                  "brethren": 482,
         | 
| 3063 | 
            +
                  "resist": 2580,
         | 
| 3064 | 
            +
                  "vaccine": 3212,
         | 
| 3065 | 
            +
                  "financially": 1249,
         | 
| 3066 | 
            +
                  "mum": 1996,
         | 
| 3067 | 
            +
                  "dad": 859,
         | 
| 3068 | 
            +
                  "alive": 202,
         | 
| 3069 | 
            +
                  "win": 3312,
         | 
| 3070 | 
            +
                  "stronger": 2904,
         | 
| 3071 | 
            +
                  "prepared": 2346,
         | 
| 3072 | 
            +
                  "irl": 1665,
         | 
| 3073 | 
            +
                  "networking": 2029,
         | 
| 3074 | 
            +
                  "urge": 3186,
         | 
| 3075 | 
            +
                  "disclaimer": 972,
         | 
| 3076 | 
            +
                  "apologies": 272,
         | 
| 3077 | 
            +
                  "released": 2544,
         | 
| 3078 | 
            +
                  "sincerely": 2764,
         | 
| 3079 | 
            +
                  "merry": 1905,
         | 
| 3080 | 
            +
                  "christmas": 632,
         | 
| 3081 | 
            +
                  "14": 11,
         | 
| 3082 | 
            +
                  "asking": 314,
         | 
| 3083 | 
            +
                  "sickos": 2747,
         | 
| 3084 | 
            +
                  "leadership": 1745,
         | 
| 3085 | 
            +
                  "vile": 3243,
         | 
| 3086 | 
            +
                  "connections": 739,
         | 
| 3087 | 
            +
                  "ceo": 575,
         | 
| 3088 | 
            +
                  "albert": 195,
         | 
| 3089 | 
            +
                  "bourla": 463,
         | 
| 3090 | 
            +
                  "chief": 616,
         | 
| 3091 | 
            +
                  "officer": 2095,
         | 
| 3092 | 
            +
                  "moderna": 1962,
         | 
| 3093 | 
            +
                  "tal": 2998,
         | 
| 3094 | 
            +
                  "zaks": 3363,
         | 
| 3095 | 
            +
                  "cmo": 656,
         | 
| 3096 | 
            +
                  "former": 1293,
         | 
| 3097 | 
            +
                  "astrazeneca": 330,
         | 
| 3098 | 
            +
                  "mikael": 1930,
         | 
| 3099 | 
            +
                  "dolsten": 1012,
         | 
| 3100 | 
            +
                  "alex": 199,
         | 
| 3101 | 
            +
                  "gorsky": 1392,
         | 
| 3102 | 
            +
                  "cohencidence": 667,
         | 
| 3103 | 
            +
                  "overwhelming": 2149,
         | 
| 3104 | 
            +
                  "proportion": 2399,
         | 
| 3105 | 
            +
                  "hats": 1451,
         | 
| 3106 | 
            +
                  "cdc": 566,
         | 
| 3107 | 
            +
                  "overrepresentation": 2147,
         | 
| 3108 | 
            +
                  "banking": 374,
         | 
| 3109 | 
            +
                  "blackrock": 432,
         | 
| 3110 | 
            +
                  "vanguard": 3215,
         | 
| 3111 | 
            +
                  "largest": 1731,
         | 
| 3112 | 
            +
                  "shareholders": 2723,
         | 
| 3113 | 
            +
                  "unique": 3161,
         | 
| 3114 | 
            +
                  "fields": 1238,
         | 
| 3115 | 
            +
                  "understand": 3156,
         | 
| 3116 | 
            +
                  "pushed": 2431,
         | 
| 3117 | 
            +
                  "tape": 3001,
         | 
| 3118 | 
            +
                  "13": 10,
         | 
| 3119 | 
            +
                  "chapter": 595,
         | 
| 3120 | 
            +
                  "iv": 1681,
         | 
| 3121 | 
            +
                  "past": 2193,
         | 
| 3122 | 
            +
                  "hypothetical": 1542,
         | 
| 3123 | 
            +
                  "futures": 1338,
         | 
| 3124 | 
            +
                  "section": 2687,
         | 
| 3125 | 
            +
                  "marketing": 1861,
         | 
| 3126 | 
            +
                  "sells": 2699,
         | 
| 3127 | 
            +
                  "bribe": 483,
         | 
| 3128 | 
            +
                  "coerce": 665,
         | 
| 3129 | 
            +
                  "hear": 1460,
         | 
| 3130 | 
            +
                  "certainly": 582,
         | 
| 3131 | 
            +
                  "punishments": 2422,
         | 
| 3132 | 
            +
                  "refused": 2527,
         | 
| 3133 | 
            +
                  "plain": 2272,
         | 
| 3134 | 
            +
                  "cattle": 560,
         | 
| 3135 | 
            +
                  "stopped": 2888,
         | 
| 3136 | 
            +
                  "firmly": 1255,
         | 
| 3137 | 
            +
                  "tracks": 3100,
         | 
| 3138 | 
            +
                  "12": 7,
         | 
| 3139 | 
            +
                  "drawn": 1023,
         | 
| 3140 | 
            +
                  "vaers": 3214,
         | 
| 3141 | 
            +
                  "deaths": 881,
         | 
| 3142 | 
            +
                  "indicate": 1588,
         | 
| 3143 | 
            +
                  "depopulation": 922,
         | 
| 3144 | 
            +
                  "planet": 2274,
         | 
| 3145 | 
            +
                  "boosters": 455,
         | 
| 3146 | 
            +
                  "math": 1872,
         | 
| 3147 | 
            +
                  "vaccinated": 3209,
         | 
| 3148 | 
            +
                  "initial": 1624,
         | 
| 3149 | 
            +
                  "95": 98,
         | 
| 3150 | 
            +
                  "left": 1757,
         | 
| 3151 | 
            +
                  "25": 51,
         | 
| 3152 | 
            +
                  "booster": 454,
         | 
| 3153 | 
            +
                  "desire": 932,
         | 
| 3154 | 
            +
                  "hypotheticals": 1543,
         | 
| 3155 | 
            +
                  "meant": 1879,
         | 
| 3156 | 
            +
                  "alarm": 194,
         | 
| 3157 | 
            +
                  "convince": 780,
         | 
| 3158 | 
            +
                  "situations": 2773,
         | 
| 3159 | 
            +
                  "forth": 1300,
         | 
| 3160 | 
            +
                  "prepare": 2345,
         | 
| 3161 | 
            +
                  "virulent": 3249,
         | 
| 3162 | 
            +
                  "mareks": 1857,
         | 
| 3163 | 
            +
                  "11": 3,
         | 
| 3164 | 
            +
                  "newly": 2043,
         | 
| 3165 | 
            +
                  "mutated": 2001,
         | 
| 3166 | 
            +
                  "virus": 3250,
         | 
| 3167 | 
            +
                  "flu": 1274,
         | 
| 3168 | 
            +
                  "shot": 2741,
         | 
| 3169 | 
            +
                  "transmission": 3112,
         | 
| 3170 | 
            +
                  "marek": 1856,
         | 
| 3171 | 
            +
                  "gets": 1359,
         | 
| 3172 | 
            +
                  "along": 213,
         | 
| 3173 | 
            +
                  "timely": 3071,
         | 
| 3174 | 
            +
                  "manner": 1851,
         | 
| 3175 | 
            +
                  "mutation": 2003,
         | 
| 3176 | 
            +
                  "shots": 2742,
         | 
| 3177 | 
            +
                  "progression": 2384,
         | 
| 3178 | 
            +
                  "virulence": 3248,
         | 
| 3179 | 
            +
                  "supresses": 2958,
         | 
| 3180 | 
            +
                  "recipients": 2502,
         | 
| 3181 | 
            +
                  "passing": 2192,
         | 
| 3182 | 
            +
                  "originally": 2130,
         | 
| 3183 | 
            +
                  "bothersome": 458,
         | 
| 3184 | 
            +
                  "infect": 1602,
         | 
| 3185 | 
            +
                  "flocks": 1266,
         | 
| 3186 | 
            +
                  "tight": 3069,
         | 
| 3187 | 
            +
                  "quarters": 2441,
         | 
| 3188 | 
            +
                  "profits": 2382,
         | 
| 3189 | 
            +
                  "allowed": 209,
         | 
| 3190 | 
            +
                  "unvaccinated": 3178,
         | 
| 3191 | 
            +
                  "flock": 1265,
         | 
| 3192 | 
            +
                  "infected": 1603,
         | 
| 3193 | 
            +
                  "vaccinate": 3208,
         | 
| 3194 | 
            +
                  "ineffective": 1597,
         | 
| 3195 | 
            +
                  "mutate": 2000,
         | 
| 3196 | 
            +
                  "ade": 150,
         | 
| 3197 | 
            +
                  "spike": 2846,
         | 
| 3198 | 
            +
                  "coronavirus": 791,
         | 
| 3199 | 
            +
                  "strain": 2895,
         | 
| 3200 | 
            +
                  "mutates": 2002,
         | 
| 3201 | 
            +
                  "longer": 1812,
         | 
| 3202 | 
            +
                  "neutralizing": 2039,
         | 
| 3203 | 
            +
                  "neutralize": 2038,
         | 
| 3204 | 
            +
                  "response": 2589,
         | 
| 3205 | 
            +
                  "kicking": 1706,
         | 
| 3206 | 
            +
                  "creates": 822,
         | 
| 3207 | 
            +
                  "cytokine": 856,
         | 
| 3208 | 
            +
                  "storm": 2893,
         | 
| 3209 | 
            +
                  "presenting": 2349,
         | 
| 3210 | 
            +
                  "trouble": 3130,
         | 
| 3211 | 
            +
                  "strains": 2896,
         | 
| 3212 | 
            +
                  "milder": 1932,
         | 
| 3213 | 
            +
                  "overreaction": 2146,
         | 
| 3214 | 
            +
                  "clearly": 648,
         | 
| 3215 | 
            +
                  "cry": 837,
         | 
| 3216 | 
            +
                  "parroting": 2183,
         | 
| 3217 | 
            +
                  "factoring": 1194,
         | 
| 3218 | 
            +
                  "various": 3218,
         | 
| 3219 | 
            +
                  "dishonest": 978,
         | 
| 3220 | 
            +
                  "employed": 1082,
         | 
| 3221 | 
            +
                  "trials": 3124,
         | 
| 3222 | 
            +
                  "uneven": 3157,
         | 
| 3223 | 
            +
                  "sample": 2659,
         | 
| 3224 | 
            +
                  "sizes": 2775,
         | 
| 3225 | 
            +
                  "informing": 1615,
         | 
| 3226 | 
            +
                  "completion": 704,
         | 
| 3227 | 
            +
                  "criminally": 827,
         | 
| 3228 | 
            +
                  "ceasing": 567,
         | 
| 3229 | 
            +
                  "died": 955,
         | 
| 3230 | 
            +
                  "hiding": 1488,
         | 
| 3231 | 
            +
                  "moving": 1990,
         | 
| 3232 | 
            +
                  "attempts": 341,
         | 
| 3233 | 
            +
                  "coronaviruses": 792,
         | 
| 3234 | 
            +
                  "sars": 2662,
         | 
| 3235 | 
            +
                  "mers": 1906,
         | 
| 3236 | 
            +
                  "played": 2286,
         | 
| 3237 | 
            +
                  "dishonestly": 979,
         | 
| 3238 | 
            +
                  "abandoned": 100,
         | 
| 3239 | 
            +
                  "rapidly": 2465,
         | 
| 3240 | 
            +
                  "evolving": 1142,
         | 
| 3241 | 
            +
                  "antibody": 252,
         | 
| 3242 | 
            +
                  "dependent": 920,
         | 
| 3243 | 
            +
                  "enhancement": 1098,
         | 
| 3244 | 
            +
                  "pharmaceutical": 2241,
         | 
| 3245 | 
            +
                  "flawed": 1263,
         | 
| 3246 | 
            +
                  "carefully": 542,
         | 
| 3247 | 
            +
                  "arr": 295,
         | 
| 3248 | 
            +
                  "reduces": 2517,
         | 
| 3249 | 
            +
                  "presented": 2348,
         | 
| 3250 | 
            +
                  "rrr": 2631,
         | 
| 3251 | 
            +
                  "someone": 2817,
         | 
| 3252 | 
            +
                  "masses": 1868,
         | 
| 3253 | 
            +
                  "94": 97,
         | 
| 3254 | 
            +
                  "clots": 655,
         | 
| 3255 | 
            +
                  "medically": 1887,
         | 
| 3256 | 
            +
                  "thrombosis": 3065,
         | 
| 3257 | 
            +
                  "aggregation": 183,
         | 
| 3258 | 
            +
                  "platelets": 2283,
         | 
| 3259 | 
            +
                  "bind": 423,
         | 
| 3260 | 
            +
                  "platelet": 2282,
         | 
| 3261 | 
            +
                  "pf4": 2237,
         | 
| 3262 | 
            +
                  "recognized": 2504,
         | 
| 3263 | 
            +
                  "defence": 895,
         | 
| 3264 | 
            +
                  "pf": 2236,
         | 
| 3265 | 
            +
                  "expression": 1177,
         | 
| 3266 | 
            +
                  "ace": 121,
         | 
| 3267 | 
            +
                  "angiotensin": 240,
         | 
| 3268 | 
            +
                  "converting": 779,
         | 
| 3269 | 
            +
                  "enzyme": 1108,
         | 
| 3270 | 
            +
                  "preferential": 2344,
         | 
| 3271 | 
            +
                  "binding": 424,
         | 
| 3272 | 
            +
                  "site": 2771,
         | 
| 3273 | 
            +
                  "stray": 2897,
         | 
| 3274 | 
            +
                  "freely": 1309,
         | 
| 3275 | 
            +
                  "floating": 1264,
         | 
| 3276 | 
            +
                  "shape": 2722,
         | 
| 3277 | 
            +
                  "mrna": 1992,
         | 
| 3278 | 
            +
                  "highlight": 1490,
         | 
| 3279 | 
            +
                  "translate": 3111,
         | 
| 3280 | 
            +
                  "previously": 2360,
         | 
| 3281 | 
            +
                  "thomas": 3057,
         | 
| 3282 | 
            +
                  "jefferson": 1685,
         | 
| 3283 | 
            +
                  "proved": 2407,
         | 
| 3284 | 
            +
                  "fact": 1191,
         | 
| 3285 | 
            +
                  "alter": 217,
         | 
| 3286 | 
            +
                  "vector": 3226,
         | 
| 3287 | 
            +
                  "splicing": 2849,
         | 
| 3288 | 
            +
                  "viral": 3245,
         | 
| 3289 | 
            +
                  "injected": 1625,
         | 
| 3290 | 
            +
                  "outside": 2138,
         | 
| 3291 | 
            +
                  "hijacking": 1492,
         | 
| 3292 | 
            +
                  "foreign": 1288,
         | 
| 3293 | 
            +
                  "antigens": 260,
         | 
| 3294 | 
            +
                  "lysosome": 1830,
         | 
| 3295 | 
            +
                  "centre": 574,
         | 
| 3296 | 
            +
                  "apoptosis": 274,
         | 
| 3297 | 
            +
                  "suicide": 2933,
         | 
| 3298 | 
            +
                  "replicate": 2562,
         | 
| 3299 | 
            +
                  "myocarditis": 2006,
         | 
| 3300 | 
            +
                  "pericarditis": 2221,
         | 
| 3301 | 
            +
                  "disseminated": 990,
         | 
| 3302 | 
            +
                  "vectors": 3227,
         | 
| 3303 | 
            +
                  "signal": 2750,
         | 
| 3304 | 
            +
                  "immediate": 1557,
         | 
| 3305 | 
            +
                  "inherent": 1621,
         | 
| 3306 | 
            +
                  "recommended": 2507,
         | 
| 3307 | 
            +
                  "injecting": 1626,
         | 
| 3308 | 
            +
                  "nanoparticle": 2012,
         | 
| 3309 | 
            +
                  "ribosomes": 2605,
         | 
| 3310 | 
            +
                  "responds": 2588,
         | 
| 3311 | 
            +
                  "instability": 1635,
         | 
| 3312 | 
            +
                  "widely": 3307,
         | 
| 3313 | 
            +
                  "victims": 3241,
         | 
| 3314 | 
            +
                  "unavoidable": 3151,
         | 
| 3315 | 
            +
                  "push": 2430,
         | 
| 3316 | 
            +
                  "capitulated": 529,
         | 
| 3317 | 
            +
                  "standing": 2868,
         | 
| 3318 | 
            +
                  "firm": 1254,
         | 
| 3319 | 
            +
                  "available": 351,
         | 
| 3320 | 
            +
                  "apologize": 273,
         | 
| 3321 | 
            +
                  "explaining": 1170,
         | 
| 3322 | 
            +
                  "concepts": 715,
         | 
| 3323 | 
            +
                  "language": 1727,
         | 
| 3324 | 
            +
                  "explain": 1168,
         | 
| 3325 | 
            +
                  "confused": 733,
         | 
| 3326 | 
            +
                  "comment": 689,
         | 
| 3327 | 
            +
                  "trust": 3136,
         | 
| 3328 | 
            +
                  "overabundance": 2140,
         | 
| 3329 | 
            +
                  "solution": 2814,
         | 
| 3330 | 
            +
                  "anxious": 265,
         | 
| 3331 | 
            +
                  "fight": 1239,
         | 
| 3332 | 
            +
                  "acquire": 130,
         | 
| 3333 | 
            +
                  "staying": 2876,
         | 
| 3334 | 
            +
                  "serum": 2708,
         | 
| 3335 | 
            +
                  "optimal": 2116,
         | 
| 3336 | 
            +
                  "suboptimal": 2918,
         | 
| 3337 | 
            +
                  "deficient": 899,
         | 
| 3338 | 
            +
                  "bonds": 449,
         | 
| 3339 | 
            +
                  "adequate": 151,
         | 
| 3340 | 
            +
                  "winter": 3313,
         | 
| 3341 | 
            +
                  "critical": 831,
         | 
| 3342 | 
            +
                  "dietary": 957,
         | 
| 3343 | 
            +
                  "seldom": 2694,
         | 
| 3344 | 
            +
                  "preexisting": 2343,
         | 
| 3345 | 
            +
                  "agree": 185,
         | 
| 3346 | 
            +
                  "marked": 1859,
         | 
| 3347 | 
            +
                  "angiotensins": 241,
         | 
| 3348 | 
            +
                  "vascular": 3220,
         | 
| 3349 | 
            +
                  "cleave": 649,
         | 
| 3350 | 
            +
                  "usable": 3191,
         | 
| 3351 | 
            +
                  "homeostasis": 1501,
         | 
| 3352 | 
            +
                  "finding": 1250,
         | 
| 3353 | 
            +
                  "egg": 1070,
         | 
| 3354 | 
            +
                  "yolks": 3359,
         | 
| 3355 | 
            +
                  "mushrooms": 1999,
         | 
| 3356 | 
            +
                  "juices": 1694,
         | 
| 3357 | 
            +
                  "transcription": 3109,
         | 
| 3358 | 
            +
                  "receptor": 2499,
         | 
| 3359 | 
            +
                  "vdr": 3224,
         | 
| 3360 | 
            +
                  "ds": 1031,
         | 
| 3361 | 
            +
                  "osteoclast": 2132,
         | 
| 3362 | 
            +
                  "vdrs": 3225,
         | 
| 3363 | 
            +
                  "adaptive": 140,
         | 
| 3364 | 
            +
                  "antibacterial": 249,
         | 
| 3365 | 
            +
                  "pun": 2421,
         | 
| 3366 | 
            +
                  "intestinal": 1651,
         | 
| 3367 | 
            +
                  "sunlight": 2944,
         | 
| 3368 | 
            +
                  "technically": 3014,
         | 
| 3369 | 
            +
                  "inactive": 1574,
         | 
| 3370 | 
            +
                  "accurately": 120,
         | 
| 3371 | 
            +
                  "described": 929,
         | 
| 3372 | 
            +
                  "d3": 858,
         | 
| 3373 | 
            +
                  "layers": 1743,
         | 
| 3374 | 
            +
                  "epidermis": 1110,
         | 
| 3375 | 
            +
                  "administered": 157,
         | 
| 3376 | 
            +
                  "rabies": 2447,
         | 
| 3377 | 
            +
                  "anthrax": 246,
         | 
| 3378 | 
            +
                  "yes": 3354,
         | 
| 3379 | 
            +
                  "adjuvents": 156,
         | 
| 3380 | 
            +
                  "watching": 3269,
         | 
| 3381 | 
            +
                  "referenced": 2521,
         | 
| 3382 | 
            +
                  "11th": 6,
         | 
| 3383 | 
            +
                  "polio": 2298,
         | 
| 3384 | 
            +
                  "sites": 2772,
         | 
| 3385 | 
            +
                  "vaccinating": 3210,
         | 
| 3386 | 
            +
                  "whatsoever": 3294,
         | 
| 3387 | 
            +
                  "spreading": 2856,
         | 
| 3388 | 
            +
                  "went": 3288,
         | 
| 3389 | 
            +
                  "hygiene": 1534,
         | 
| 3390 | 
            +
                  "clean": 645,
         | 
| 3391 | 
            +
                  "indoor": 1593,
         | 
| 3392 | 
            +
                  "plumbing": 2289,
         | 
| 3393 | 
            +
                  "helped": 1472,
         | 
| 3394 | 
            +
                  "1958": 25,
         | 
| 3395 | 
            +
                  "paralytic": 2176,
         | 
| 3396 | 
            +
                  "poliomyelitis": 2299,
         | 
| 3397 | 
            +
                  "redefined": 2513,
         | 
| 3398 | 
            +
                  "aseptic": 309,
         | 
| 3399 | 
            +
                  "meningitis": 1898,
         | 
| 3400 | 
            +
                  "decimating": 886,
         | 
| 3401 | 
            +
                  "fatal": 1213,
         | 
| 3402 | 
            +
                  "26": 55,
         | 
| 3403 | 
            +
                  "paralyzed": 2177,
         | 
| 3404 | 
            +
                  "brought": 495,
         | 
| 3405 | 
            +
                  "ddt": 876,
         | 
| 3406 | 
            +
                  "happens": 1437,
         | 
| 3407 | 
            +
                  "rich": 2607,
         | 
| 3408 | 
            +
                  "immumosupportive": 1560,
         | 
| 3409 | 
            +
                  "measles": 1880,
         | 
| 3410 | 
            +
                  "complications": 705,
         | 
| 3411 | 
            +
                  "resolved": 2583,
         | 
| 3412 | 
            +
                  "administering": 158,
         | 
| 3413 | 
            +
                  "salk": 2653,
         | 
| 3414 | 
            +
                  "inactivate": 1572,
         | 
| 3415 | 
            +
                  "appearing": 276,
         | 
| 3416 | 
            +
                  "cutter": 853,
         | 
| 3417 | 
            +
                  "company": 698,
         | 
| 3418 | 
            +
                  "license": 1771,
         | 
| 3419 | 
            +
                  "famous": 1205,
         | 
| 3420 | 
            +
                  "incident": 1578,
         | 
| 3421 | 
            +
                  "120k": 8,
         | 
| 3422 | 
            +
                  "poliovirus": 2300,
         | 
| 3423 | 
            +
                  "40k": 70,
         | 
| 3424 | 
            +
                  "56": 82,
         | 
| 3425 | 
            +
                  "severely": 2714,
         | 
| 3426 | 
            +
                  "photo": 2249,
         | 
| 3427 | 
            +
                  "acquired": 131,
         | 
| 3428 | 
            +
                  "paralysis": 2175,
         | 
| 3429 | 
            +
                  "legs": 1761,
         | 
| 3430 | 
            +
                  "switched": 2984,
         | 
| 3431 | 
            +
                  "sabin": 2641,
         | 
| 3432 | 
            +
                  "unsuspecting": 3176,
         | 
| 3433 | 
            +
                  "persons": 2227,
         | 
| 3434 | 
            +
                  "remote": 2550,
         | 
| 3435 | 
            +
                  "reintroduce": 2537,
         | 
| 3436 | 
            +
                  "unsurprisingly": 3175,
         | 
| 3437 | 
            +
                  "directly": 971,
         | 
| 3438 | 
            +
                  "autism": 348,
         | 
| 3439 | 
            +
                  "inability": 1571,
         | 
| 3440 | 
            +
                  "rapid": 2464,
         | 
| 3441 | 
            +
                  "wreck": 3339,
         | 
| 3442 | 
            +
                  "specific": 2839,
         | 
| 3443 | 
            +
                  "harmed": 1445,
         | 
| 3444 | 
            +
                  "marvel": 1865,
         | 
| 3445 | 
            +
                  "stats": 2875,
         | 
| 3446 | 
            +
                  "mild": 1931,
         | 
| 3447 | 
            +
                  "resolve": 2582,
         | 
| 3448 | 
            +
                  "resulted": 2595,
         | 
| 3449 | 
            +
                  "50": 79,
         | 
| 3450 | 
            +
                  "united": 3162,
         | 
| 3451 | 
            +
                  "20k": 46,
         | 
| 3452 | 
            +
                  "annual": 245,
         | 
| 3453 | 
            +
                  "35k": 65,
         | 
| 3454 | 
            +
                  "1954": 24,
         | 
| 3455 | 
            +
                  "mandatory": 1849,
         | 
| 3456 | 
            +
                  "charge": 597,
         | 
| 3457 | 
            +
                  "childhood": 618,
         | 
| 3458 | 
            +
                  "2019": 43,
         | 
| 3459 | 
            +
                  "trillion": 3128,
         | 
| 3460 | 
            +
                  "99": 99,
         | 
| 3461 | 
            +
                  "ceos": 576,
         | 
| 3462 | 
            +
                  "theres": 3048,
         | 
| 3463 | 
            +
                  "randomized": 2462,
         | 
| 3464 | 
            +
                  "trial": 3123,
         | 
| 3465 | 
            +
                  "pittsburgh": 2264,
         | 
| 3466 | 
            +
                  "pulled": 2417,
         | 
| 3467 | 
            +
                  "monkeys": 1973,
         | 
| 3468 | 
            +
                  "kikes": 1711,
         | 
| 3469 | 
            +
                  "efficacy": 1067,
         | 
| 3470 | 
            +
                  "groups": 1415,
         | 
| 3471 | 
            +
                  "assumption": 327,
         | 
| 3472 | 
            +
                  "thimerosal": 3053,
         | 
| 3473 | 
            +
                  "obvious": 2084,
         | 
| 3474 | 
            +
                  "1905": 20,
         | 
| 3475 | 
            +
                  "irradication": 1668,
         | 
| 3476 | 
            +
                  "attributed": 344,
         | 
| 3477 | 
            +
                  "invention": 1655,
         | 
| 3478 | 
            +
                  "consistent": 750,
         | 
| 3479 | 
            +
                  "ended": 1090,
         | 
| 3480 | 
            +
                  "sudden": 2924,
         | 
| 3481 | 
            +
                  "sids": 2749,
         | 
| 3482 | 
            +
                  "1950": 21,
         | 
| 3483 | 
            +
                  "uncommon": 3153,
         | 
| 3484 | 
            +
                  "survive": 2971,
         | 
| 3485 | 
            +
                  "virions": 3246,
         | 
| 3486 | 
            +
                  "aborted": 102,
         | 
| 3487 | 
            +
                  "caucasian": 561,
         | 
| 3488 | 
            +
                  "38": 66,
         | 
| 3489 | 
            +
                  "hek": 1470,
         | 
| 3490 | 
            +
                  "293": 57,
         | 
| 3491 | 
            +
                  "mcr": 1875,
         | 
| 3492 | 
            +
                  "hela": 1471,
         | 
| 3493 | 
            +
                  "cancerous": 526,
         | 
| 3494 | 
            +
                  "cervical": 585,
         | 
| 3495 | 
            +
                  "named": 2010,
         | 
| 3496 | 
            +
                  "henrietta": 1478,
         | 
| 3497 | 
            +
                  "lacks": 1723,
         | 
| 3498 | 
            +
                  "1951": 23,
         | 
| 3499 | 
            +
                  "morally": 1982,
         | 
| 3500 | 
            +
                  "reprehensible": 2566,
         | 
| 3501 | 
            +
                  "suppress": 2955,
         | 
| 3502 | 
            +
                  "tsh": 3140,
         | 
| 3503 | 
            +
                  "culture": 842,
         | 
| 3504 | 
            +
                  "nagalese": 2008,
         | 
| 3505 | 
            +
                  "alike": 201,
         | 
| 3506 | 
            +
                  "prolong": 2385,
         | 
| 3507 | 
            +
                  "survival": 2970,
         | 
| 3508 | 
            +
                  "suppressing": 2957,
         | 
| 3509 | 
            +
                  "gcmaf": 1346,
         | 
| 3510 | 
            +
                  "researcher": 2572,
         | 
| 3511 | 
            +
                  "question": 2442,
         | 
| 3512 | 
            +
                  "dr": 1020,
         | 
| 3513 | 
            +
                  "james": 1683,
         | 
| 3514 | 
            +
                  "bradstreet": 471,
         | 
| 3515 | 
            +
                  "committed": 693,
         | 
| 3516 | 
            +
                  "shooting": 2737,
         | 
| 3517 | 
            +
                  "chest": 611,
         | 
| 3518 | 
            +
                  "jumping": 1696,
         | 
| 3519 | 
            +
                  "river": 2611,
         | 
| 3520 | 
            +
                  "mere": 1903,
         | 
| 3521 | 
            +
                  "house": 1517,
         | 
| 3522 | 
            +
                  "raided": 2454,
         | 
| 3523 | 
            +
                  "inactivated": 1573,
         | 
| 3524 | 
            +
                  "embalming": 1078,
         | 
| 3525 | 
            +
                  "adjuvants": 155,
         | 
| 3526 | 
            +
                  "recognizes": 2505,
         | 
| 3527 | 
            +
                  "rush": 2636,
         | 
| 3528 | 
            +
                  "wrong": 3342,
         | 
| 3529 | 
            +
                  "categories": 557,
         | 
| 3530 | 
            +
                  "attenuated": 343,
         | 
| 3531 | 
            +
                  "revert": 2602,
         | 
| 3532 | 
            +
                  "phenomenon": 2243,
         | 
| 3533 | 
            +
                  "sheds": 2726,
         | 
| 3534 | 
            +
                  "49": 76,
         | 
| 3535 | 
            +
                  "69": 88,
         | 
| 3536 | 
            +
                  "16": 13,
         | 
| 3537 | 
            +
                  "18": 17,
         | 
| 3538 | 
            +
                  "hepatitis": 1479,
         | 
| 3539 | 
            +
                  "sexually": 2717,
         | 
| 3540 | 
            +
                  "transmitted": 3113,
         | 
| 3541 | 
            +
                  "rotavirus": 2624,
         | 
| 3542 | 
            +
                  "dtap": 1032,
         | 
| 3543 | 
            +
                  "dtp": 1033,
         | 
| 3544 | 
            +
                  "diphtheria": 970,
         | 
| 3545 | 
            +
                  "croup": 834,
         | 
| 3546 | 
            +
                  "pertussis": 2229,
         | 
| 3547 | 
            +
                  "whooping": 3303,
         | 
| 3548 | 
            +
                  "cough": 801,
         | 
| 3549 | 
            +
                  "tetanus": 3039,
         | 
| 3550 | 
            +
                  "lockjaw": 1810,
         | 
| 3551 | 
            +
                  "hib": 1486,
         | 
| 3552 | 
            +
                  "haemophilis": 1426,
         | 
| 3553 | 
            +
                  "influenzae": 1612,
         | 
| 3554 | 
            +
                  "dozens": 1019,
         | 
| 3555 | 
            +
                  "varicella": 3216,
         | 
| 3556 | 
            +
                  "mumps": 1997,
         | 
| 3557 | 
            +
                  "rubella": 2632,
         | 
| 3558 | 
            +
                  "pnuemococcal": 2292,
         | 
| 3559 | 
            +
                  "meningococcal": 1899,
         | 
| 3560 | 
            +
                  "influenza": 1611,
         | 
| 3561 | 
            +
                  "topic": 3087,
         | 
| 3562 | 
            +
                  "unsure": 3174,
         | 
| 3563 | 
            +
                  "unsafe": 3171,
         | 
| 3564 | 
            +
                  "received": 2496,
         | 
| 3565 | 
            +
                  "nuremberg": 2073,
         | 
| 3566 | 
            +
                  "requires": 2571,
         | 
| 3567 | 
            +
                  "informed": 1614,
         | 
| 3568 | 
            +
                  "consent": 742,
         | 
| 3569 | 
            +
                  "conduct": 727,
         | 
| 3570 | 
            +
                  "experiment": 1165,
         | 
| 3571 | 
            +
                  "forced": 1286,
         | 
| 3572 | 
            +
                  "vaccination": 3211,
         | 
| 3573 | 
            +
                  "war": 3262,
         | 
| 3574 | 
            +
                  "crime": 825,
         | 
| 3575 | 
            +
                  "irreparable": 1669,
         | 
| 3576 | 
            +
                  "unprecedented": 3170,
         | 
| 3577 | 
            +
                  "anytime": 268
         | 
| 3578 | 
            +
                }
         | 
| 3579 | 
            +
              }
         | 
| 3580 | 
            +
            }
         | 
    	
        topic_embeddings.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:6c21fb0f458d52f0f2008bba02109c6d9ab97d9a059348f89886bfde5c33bdeb
         | 
| 3 | 
            +
            size 12376
         | 
    	
        topics.json
    ADDED
    
    | @@ -0,0 +1,252 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "topic_representations": {
         | 
| 3 | 
            +
                "-1": [
         | 
| 4 | 
            +
                  [
         | 
| 5 | 
            +
                    "catfish",
         | 
| 6 | 
            +
                    0.5530429482460022
         | 
| 7 | 
            +
                  ],
         | 
| 8 | 
            +
                  [
         | 
| 9 | 
            +
                    "sunscreens",
         | 
| 10 | 
            +
                    0.45678985118865967
         | 
| 11 | 
            +
                  ],
         | 
| 12 | 
            +
                  [
         | 
| 13 | 
            +
                    "omega",
         | 
| 14 | 
            +
                    0.43958580493927
         | 
| 15 | 
            +
                  ],
         | 
| 16 | 
            +
                  [
         | 
| 17 | 
            +
                    "carotenoids",
         | 
| 18 | 
            +
                    0.4331844449043274
         | 
| 19 | 
            +
                  ],
         | 
| 20 | 
            +
                  [
         | 
| 21 | 
            +
                    "dioxin",
         | 
| 22 | 
            +
                    0.424792617559433
         | 
| 23 | 
            +
                  ]
         | 
| 24 | 
            +
                ],
         | 
| 25 | 
            +
                "0": [
         | 
| 26 | 
            +
                  [
         | 
| 27 | 
            +
                    "microplastics",
         | 
| 28 | 
            +
                    0.5272732377052307
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  [
         | 
| 31 | 
            +
                    "fluoride",
         | 
| 32 | 
            +
                    0.5192574262619019
         | 
| 33 | 
            +
                  ],
         | 
| 34 | 
            +
                  [
         | 
| 35 | 
            +
                    "aspartame",
         | 
| 36 | 
            +
                    0.5192424058914185
         | 
| 37 | 
            +
                  ],
         | 
| 38 | 
            +
                  [
         | 
| 39 | 
            +
                    "sodium",
         | 
| 40 | 
            +
                    0.5122720003128052
         | 
| 41 | 
            +
                  ],
         | 
| 42 | 
            +
                  [
         | 
| 43 | 
            +
                    "hydrogenated",
         | 
| 44 | 
            +
                    0.5094856023788452
         | 
| 45 | 
            +
                  ]
         | 
| 46 | 
            +
                ],
         | 
| 47 | 
            +
                "1": [
         | 
| 48 | 
            +
                  [
         | 
| 49 | 
            +
                    "vaccine",
         | 
| 50 | 
            +
                    0.6211169362068176
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  [
         | 
| 53 | 
            +
                    "adjuvents",
         | 
| 54 | 
            +
                    0.474486768245697
         | 
| 55 | 
            +
                  ],
         | 
| 56 | 
            +
                  [
         | 
| 57 | 
            +
                    "injected",
         | 
| 58 | 
            +
                    0.4731345772743225
         | 
| 59 | 
            +
                  ],
         | 
| 60 | 
            +
                  [
         | 
| 61 | 
            +
                    "platelet",
         | 
| 62 | 
            +
                    0.4268433451652527
         | 
| 63 | 
            +
                  ],
         | 
| 64 | 
            +
                  [
         | 
| 65 | 
            +
                    "inactivated",
         | 
| 66 | 
            +
                    0.4223451316356659
         | 
| 67 | 
            +
                  ]
         | 
| 68 | 
            +
                ]
         | 
| 69 | 
            +
              },
         | 
| 70 | 
            +
              "topics": [
         | 
| 71 | 
            +
                0,
         | 
| 72 | 
            +
                0,
         | 
| 73 | 
            +
                0,
         | 
| 74 | 
            +
                0,
         | 
| 75 | 
            +
                0,
         | 
| 76 | 
            +
                1,
         | 
| 77 | 
            +
                1,
         | 
| 78 | 
            +
                1,
         | 
| 79 | 
            +
                1,
         | 
| 80 | 
            +
                1,
         | 
| 81 | 
            +
                1,
         | 
| 82 | 
            +
                1,
         | 
| 83 | 
            +
                1,
         | 
| 84 | 
            +
                1,
         | 
| 85 | 
            +
                1,
         | 
| 86 | 
            +
                1,
         | 
| 87 | 
            +
                1,
         | 
| 88 | 
            +
                1,
         | 
| 89 | 
            +
                1,
         | 
| 90 | 
            +
                -1,
         | 
| 91 | 
            +
                -1,
         | 
| 92 | 
            +
                -1,
         | 
| 93 | 
            +
                -1,
         | 
| 94 | 
            +
                0,
         | 
| 95 | 
            +
                0,
         | 
| 96 | 
            +
                -1,
         | 
| 97 | 
            +
                -1,
         | 
| 98 | 
            +
                -1,
         | 
| 99 | 
            +
                -1,
         | 
| 100 | 
            +
                -1,
         | 
| 101 | 
            +
                -1,
         | 
| 102 | 
            +
                -1,
         | 
| 103 | 
            +
                -1,
         | 
| 104 | 
            +
                -1,
         | 
| 105 | 
            +
                -1,
         | 
| 106 | 
            +
                0,
         | 
| 107 | 
            +
                0,
         | 
| 108 | 
            +
                0,
         | 
| 109 | 
            +
                0,
         | 
| 110 | 
            +
                0,
         | 
| 111 | 
            +
                0,
         | 
| 112 | 
            +
                -1,
         | 
| 113 | 
            +
                -1,
         | 
| 114 | 
            +
                -1,
         | 
| 115 | 
            +
                0,
         | 
| 116 | 
            +
                0,
         | 
| 117 | 
            +
                -1,
         | 
| 118 | 
            +
                0,
         | 
| 119 | 
            +
                0,
         | 
| 120 | 
            +
                0,
         | 
| 121 | 
            +
                0,
         | 
| 122 | 
            +
                0,
         | 
| 123 | 
            +
                0,
         | 
| 124 | 
            +
                0,
         | 
| 125 | 
            +
                0,
         | 
| 126 | 
            +
                0,
         | 
| 127 | 
            +
                0,
         | 
| 128 | 
            +
                0,
         | 
| 129 | 
            +
                0,
         | 
| 130 | 
            +
                0,
         | 
| 131 | 
            +
                0,
         | 
| 132 | 
            +
                0,
         | 
| 133 | 
            +
                0,
         | 
| 134 | 
            +
                0,
         | 
| 135 | 
            +
                1,
         | 
| 136 | 
            +
                1,
         | 
| 137 | 
            +
                1,
         | 
| 138 | 
            +
                1,
         | 
| 139 | 
            +
                1,
         | 
| 140 | 
            +
                0,
         | 
| 141 | 
            +
                1,
         | 
| 142 | 
            +
                1,
         | 
| 143 | 
            +
                1,
         | 
| 144 | 
            +
                1,
         | 
| 145 | 
            +
                1,
         | 
| 146 | 
            +
                1,
         | 
| 147 | 
            +
                1,
         | 
| 148 | 
            +
                1,
         | 
| 149 | 
            +
                1,
         | 
| 150 | 
            +
                1,
         | 
| 151 | 
            +
                1,
         | 
| 152 | 
            +
                1,
         | 
| 153 | 
            +
                1,
         | 
| 154 | 
            +
                0,
         | 
| 155 | 
            +
                0,
         | 
| 156 | 
            +
                0,
         | 
| 157 | 
            +
                0,
         | 
| 158 | 
            +
                0,
         | 
| 159 | 
            +
                0,
         | 
| 160 | 
            +
                0,
         | 
| 161 | 
            +
                0,
         | 
| 162 | 
            +
                0,
         | 
| 163 | 
            +
                0,
         | 
| 164 | 
            +
                0,
         | 
| 165 | 
            +
                0,
         | 
| 166 | 
            +
                0,
         | 
| 167 | 
            +
                0,
         | 
| 168 | 
            +
                0,
         | 
| 169 | 
            +
                0,
         | 
| 170 | 
            +
                0,
         | 
| 171 | 
            +
                0,
         | 
| 172 | 
            +
                0,
         | 
| 173 | 
            +
                0,
         | 
| 174 | 
            +
                0,
         | 
| 175 | 
            +
                0,
         | 
| 176 | 
            +
                0,
         | 
| 177 | 
            +
                0,
         | 
| 178 | 
            +
                0,
         | 
| 179 | 
            +
                0,
         | 
| 180 | 
            +
                0,
         | 
| 181 | 
            +
                0,
         | 
| 182 | 
            +
                0,
         | 
| 183 | 
            +
                0,
         | 
| 184 | 
            +
                0,
         | 
| 185 | 
            +
                0,
         | 
| 186 | 
            +
                0,
         | 
| 187 | 
            +
                0,
         | 
| 188 | 
            +
                0,
         | 
| 189 | 
            +
                0,
         | 
| 190 | 
            +
                0,
         | 
| 191 | 
            +
                0,
         | 
| 192 | 
            +
                0,
         | 
| 193 | 
            +
                0,
         | 
| 194 | 
            +
                0,
         | 
| 195 | 
            +
                0,
         | 
| 196 | 
            +
                0,
         | 
| 197 | 
            +
                0,
         | 
| 198 | 
            +
                0,
         | 
| 199 | 
            +
                0,
         | 
| 200 | 
            +
                0,
         | 
| 201 | 
            +
                0,
         | 
| 202 | 
            +
                0,
         | 
| 203 | 
            +
                0,
         | 
| 204 | 
            +
                0,
         | 
| 205 | 
            +
                0,
         | 
| 206 | 
            +
                0,
         | 
| 207 | 
            +
                0,
         | 
| 208 | 
            +
                0,
         | 
| 209 | 
            +
                0,
         | 
| 210 | 
            +
                0,
         | 
| 211 | 
            +
                0,
         | 
| 212 | 
            +
                0,
         | 
| 213 | 
            +
                0,
         | 
| 214 | 
            +
                0,
         | 
| 215 | 
            +
                0,
         | 
| 216 | 
            +
                0,
         | 
| 217 | 
            +
                0,
         | 
| 218 | 
            +
                0,
         | 
| 219 | 
            +
                0,
         | 
| 220 | 
            +
                0
         | 
| 221 | 
            +
              ],
         | 
| 222 | 
            +
              "topic_sizes": {
         | 
| 223 | 
            +
                "0": 100,
         | 
| 224 | 
            +
                "1": 32,
         | 
| 225 | 
            +
                "-1": 18
         | 
| 226 | 
            +
              },
         | 
| 227 | 
            +
              "topic_mapper": [
         | 
| 228 | 
            +
                [
         | 
| 229 | 
            +
                  -1,
         | 
| 230 | 
            +
                  -1,
         | 
| 231 | 
            +
                  -1
         | 
| 232 | 
            +
                ],
         | 
| 233 | 
            +
                [
         | 
| 234 | 
            +
                  0,
         | 
| 235 | 
            +
                  0,
         | 
| 236 | 
            +
                  1
         | 
| 237 | 
            +
                ],
         | 
| 238 | 
            +
                [
         | 
| 239 | 
            +
                  1,
         | 
| 240 | 
            +
                  1,
         | 
| 241 | 
            +
                  0
         | 
| 242 | 
            +
                ]
         | 
| 243 | 
            +
              ],
         | 
| 244 | 
            +
              "topic_labels": {
         | 
| 245 | 
            +
                "-1": "-1_catfish_sunscreens_omega_carotenoids",
         | 
| 246 | 
            +
                "0": "0_microplastics_fluoride_aspartame_sodium",
         | 
| 247 | 
            +
                "1": "1_vaccine_adjuvents_injected_platelet"
         | 
| 248 | 
            +
              },
         | 
| 249 | 
            +
              "custom_labels": null,
         | 
| 250 | 
            +
              "_outliers": 1,
         | 
| 251 | 
            +
              "topic_aspects": {}
         | 
| 252 | 
            +
            }
         | 

