YousraBerrachedi commited on
Commit
5c6354d
·
1 Parent(s): 1da23d4

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ fr_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - fr
7
+ model-index:
8
+ - name: fr_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.5434782609
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.5154639175
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.5291005291
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `fr_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.4.4,<3.5.0` |
29
+ | **Default Pipeline** | `tok2vec`, `ner` |
30
+ | **Components** | `tok2vec`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (6 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `APPROX`, `CITY`, `COUNTRY`, `HASHTAG`, `PROVINCE`, `SUGGESTION` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 52.91 |
53
+ | `ENTS_P` | 54.35 |
54
+ | `ENTS_R` | 51.55 |
55
+ | `TOK2VEC_LOSS` | 16256.06 |
56
+ | `NER_LOSS` | 26385.38 |
config.cfg ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./train.spacy"
3
+ dev = "./test.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = null
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "fr"
13
+ pipeline = ["tok2vec","ner"]
14
+ batch_size = 1000
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [components.ner]
24
+ factory = "ner"
25
+ incorrect_spans_key = null
26
+ moves = null
27
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
28
+ update_with_oracle_cut_size = 100
29
+
30
+ [components.ner.model]
31
+ @architectures = "spacy.TransitionBasedParser.v2"
32
+ state_type = "ner"
33
+ extra_state_tokens = false
34
+ hidden_width = 64
35
+ maxout_pieces = 2
36
+ use_upper = true
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy.Tok2VecListener.v1"
41
+ width = ${components.tok2vec.model.encode.width}
42
+ upstream = "*"
43
+
44
+ [components.tok2vec]
45
+ factory = "tok2vec"
46
+
47
+ [components.tok2vec.model]
48
+ @architectures = "spacy.Tok2Vec.v2"
49
+
50
+ [components.tok2vec.model.embed]
51
+ @architectures = "spacy.MultiHashEmbed.v2"
52
+ width = ${components.tok2vec.model.encode.width}
53
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
54
+ rows = [5000,1000,2500,2500]
55
+ include_static_vectors = false
56
+
57
+ [components.tok2vec.model.encode]
58
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
59
+ width = 96
60
+ depth = 4
61
+ window_size = 1
62
+ maxout_pieces = 3
63
+
64
+ [corpora]
65
+
66
+ [corpora.dev]
67
+ @readers = "spacy.Corpus.v1"
68
+ path = ${paths.dev}
69
+ max_length = 0
70
+ gold_preproc = false
71
+ limit = 0
72
+ augmenter = null
73
+
74
+ [corpora.train]
75
+ @readers = "spacy.Corpus.v1"
76
+ path = ${paths.train}
77
+ max_length = 0
78
+ gold_preproc = false
79
+ limit = 0
80
+ augmenter = null
81
+
82
+ [training]
83
+ dev_corpus = "corpora.dev"
84
+ train_corpus = "corpora.train"
85
+ seed = ${system.seed}
86
+ gpu_allocator = ${system.gpu_allocator}
87
+ dropout = 0.1
88
+ accumulate_gradient = 1
89
+ patience = 1600
90
+ max_epochs = 0
91
+ max_steps = 20000
92
+ eval_frequency = 200
93
+ frozen_components = []
94
+ annotating_components = []
95
+ before_to_disk = null
96
+
97
+ [training.batcher]
98
+ @batchers = "spacy.batch_by_words.v1"
99
+ discard_oversize = false
100
+ tolerance = 0.2
101
+ get_length = null
102
+
103
+ [training.batcher.size]
104
+ @schedules = "compounding.v1"
105
+ start = 100
106
+ stop = 1000
107
+ compound = 1.001
108
+ t = 0.0
109
+
110
+ [training.logger]
111
+ @loggers = "spacy.ConsoleLogger.v1"
112
+ progress_bar = false
113
+
114
+ [training.optimizer]
115
+ @optimizers = "Adam.v1"
116
+ beta1 = 0.9
117
+ beta2 = 0.999
118
+ L2_is_weight_decay = true
119
+ L2 = 0.01
120
+ grad_clip = 1.0
121
+ use_averages = false
122
+ eps = 0.00000001
123
+ learn_rate = 0.001
124
+
125
+ [training.score_weights]
126
+ ents_f = 1.0
127
+ ents_p = 0.0
128
+ ents_r = 0.0
129
+ ents_per_type = null
130
+
131
+ [pretraining]
132
+
133
+ [initialize]
134
+ vectors = ${paths.vectors}
135
+ init_tok2vec = ${paths.init_tok2vec}
136
+ vocab_data = null
137
+ lookups = null
138
+ before_init = null
139
+ after_init = null
140
+
141
+ [initialize.components]
142
+
143
+ [initialize.tokenizer]
fr_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04be93529cd3ac3e11161bb7f5b38948f55b88fe953b25a77abbfade9b8c22a7
3
+ size 5691971
meta.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"fr",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.4.4,<3.5.0",
11
+ "spacy_git_version":"77833bfef",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "ner":[
23
+ "APPROX",
24
+ "CITY",
25
+ "COUNTRY",
26
+ "HASHTAG",
27
+ "PROVINCE",
28
+ "SUGGESTION"
29
+ ]
30
+ },
31
+ "pipeline":[
32
+ "tok2vec",
33
+ "ner"
34
+ ],
35
+ "components":[
36
+ "tok2vec",
37
+ "ner"
38
+ ],
39
+ "disabled":[
40
+
41
+ ],
42
+ "performance":{
43
+ "ents_f":0.5291005291,
44
+ "ents_p":0.5434782609,
45
+ "ents_r":0.5154639175,
46
+ "ents_per_type":{
47
+ "CITY":{
48
+ "p":0.2857142857,
49
+ "r":0.1666666667,
50
+ "f":0.2105263158
51
+ },
52
+ "PROVINCE":{
53
+ "p":0.3125,
54
+ "r":0.625,
55
+ "f":0.4166666667
56
+ },
57
+ "HASHTAG":{
58
+ "p":0.8571428571,
59
+ "r":0.8333333333,
60
+ "f":0.8450704225
61
+ },
62
+ "COUNTRY":{
63
+ "p":0.5625,
64
+ "r":0.5,
65
+ "f":0.5294117647
66
+ },
67
+ "SUGGESTION":{
68
+ "p":0.25,
69
+ "r":0.2,
70
+ "f":0.2222222222
71
+ },
72
+ "APPROX":{
73
+ "p":0.0,
74
+ "r":0.0,
75
+ "f":0.0
76
+ }
77
+ },
78
+ "tok2vec_loss":162.5606077493,
79
+ "ner_loss":263.8537632159
80
+ },
81
+ "requirements":[
82
+
83
+ ]
84
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (133 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"COUNTRY":136,"CITY":135,"PROVINCE":132,"HASHTAG":129,"APPROX":125,"SUGGESTION":113},"2":{"COUNTRY":136,"CITY":135,"PROVINCE":132,"HASHTAG":129,"APPROX":125,"SUGGESTION":113},"3":{"COUNTRY":136,"CITY":135,"PROVINCE":132,"HASHTAG":129,"APPROX":125,"SUGGESTION":113},"4":{"COUNTRY":136,"CITY":135,"PROVINCE":132,"HASHTAG":129,"APPROX":125,"SUGGESTION":113,"":1},"5":{"":1}}�cfg��neg_key�
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:534e9c68b219e5dd0d93016716bcecda3fc801c1edd552fc25dfd5f3ca325510
3
+ size 6009091
tokenizer ADDED
The diff for this file is too large to render. See raw diff
 
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,4453 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\r",
5
+ " ",
6
+ " ",
7
+ "\"",
8
+ "#",
9
+ "%",
10
+ "'",
11
+ "''",
12
+ "'-(",
13
+ "'-)",
14
+ "(",
15
+ "(((",
16
+ "(*>",
17
+ "(*_*)",
18
+ "(-8",
19
+ "(-:",
20
+ "(-;",
21
+ "(-_-)",
22
+ "(-d",
23
+ "(._.)",
24
+ "(:",
25
+ "(;",
26
+ "(=",
27
+ "(>_<)",
28
+ "(^_^)",
29
+ "(o:",
30
+ "(x:",
31
+ "(x_x)",
32
+ "(\u00ac_\u00ac)",
33
+ "(\u0ca0_\u0ca0)",
34
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
35
+ ")",
36
+ ")))",
37
+ ")-:",
38
+ ")/\u00af",
39
+ "):",
40
+ "*",
41
+ ",",
42
+ ",86",
43
+ ",97",
44
+ "-",
45
+ "-((",
46
+ "-))",
47
+ "-/",
48
+ "-0",
49
+ "-19",
50
+ "-3",
51
+ "-8",
52
+ "-C.",
53
+ "-D",
54
+ "-IL",
55
+ "-O",
56
+ "-P",
57
+ "-X",
58
+ "-X.",
59
+ "-XX",
60
+ "-_-",
61
+ "-__-",
62
+ "-bas",
63
+ "-c.",
64
+ "-ce",
65
+ "-ci",
66
+ "-d",
67
+ "-elle",
68
+ "-il",
69
+ "-l\u00e0",
70
+ "-o",
71
+ "-on",
72
+ "-p",
73
+ "-t",
74
+ "-vous",
75
+ "-x",
76
+ "-xx",
77
+ "-xxx",
78
+ "-xxxx",
79
+ "-|",
80
+ ".",
81
+ "...",
82
+ ".91",
83
+ ".C.",
84
+ "._.",
85
+ ".c.",
86
+ "/",
87
+ "/3",
88
+ "/d",
89
+ "0",
90
+ "0.0",
91
+ "0.o",
92
+ "000",
93
+ "006",
94
+ "008",
95
+ "009",
96
+ "010",
97
+ "011",
98
+ "012",
99
+ "098",
100
+ "0_0",
101
+ "0_o",
102
+ "1",
103
+ "1,5",
104
+ "10",
105
+ "100",
106
+ "103",
107
+ "11",
108
+ "1103",
109
+ "12",
110
+ "120",
111
+ "13",
112
+ "14",
113
+ "15",
114
+ "150",
115
+ "156",
116
+ "16",
117
+ "160",
118
+ "1619",
119
+ "1623",
120
+ "17",
121
+ "1775",
122
+ "1866",
123
+ "1916",
124
+ "1939",
125
+ "1940",
126
+ "1945",
127
+ "1964",
128
+ "1966",
129
+ "1992",
130
+ "2",
131
+ "20",
132
+ "200",
133
+ "2000",
134
+ "2006",
135
+ "2008",
136
+ "2009",
137
+ "2010",
138
+ "2011",
139
+ "2012",
140
+ "21",
141
+ "234",
142
+ "25",
143
+ "250",
144
+ "26",
145
+ "293",
146
+ "2nd",
147
+ "3",
148
+ "30",
149
+ "316",
150
+ "32",
151
+ "3234",
152
+ "33",
153
+ "333",
154
+ "336",
155
+ "375",
156
+ "39",
157
+ "4",
158
+ "40",
159
+ "410",
160
+ "5",
161
+ "5,86",
162
+ "50",
163
+ "50,97",
164
+ "500",
165
+ "52nd",
166
+ "5juillet",
167
+ "6",
168
+ "6,4",
169
+ "60",
170
+ "619",
171
+ "623",
172
+ "7",
173
+ "70",
174
+ "720",
175
+ "720ainnaadja",
176
+ "76",
177
+ "77",
178
+ "775",
179
+ "8",
180
+ "8)",
181
+ "8-",
182
+ "8-)",
183
+ "8-D",
184
+ "8-d",
185
+ "80",
186
+ "865",
187
+ "866",
188
+ "8D",
189
+ "8d",
190
+ "9",
191
+ "916",
192
+ "939",
193
+ "940",
194
+ "945",
195
+ "96",
196
+ "964",
197
+ "966",
198
+ "992",
199
+ "9e",
200
+ ":",
201
+ ":'(",
202
+ ":')",
203
+ ":'-(",
204
+ ":'-)",
205
+ ":(",
206
+ ":((",
207
+ ":(((",
208
+ ":()",
209
+ ":)",
210
+ ":))",
211
+ ":)))",
212
+ ":*",
213
+ ":-(",
214
+ ":-((",
215
+ ":-(((",
216
+ ":-)",
217
+ ":-))",
218
+ ":-)))",
219
+ ":-*",
220
+ ":-/",
221
+ ":-0",
222
+ ":-3",
223
+ ":->",
224
+ ":-D",
225
+ ":-O",
226
+ ":-P",
227
+ ":-X",
228
+ ":-]",
229
+ ":-d",
230
+ ":-o",
231
+ ":-p",
232
+ ":-x",
233
+ ":-|",
234
+ ":-}",
235
+ ":/",
236
+ ":0",
237
+ ":1",
238
+ ":3",
239
+ ":>",
240
+ ":D",
241
+ ":O",
242
+ ":P",
243
+ ":X",
244
+ ":]",
245
+ ":d",
246
+ ":o",
247
+ ":o)",
248
+ ":p",
249
+ ":x",
250
+ ":x)",
251
+ ":|",
252
+ ":}",
253
+ ":\u2019(",
254
+ ":\u2019)",
255
+ ":\u2019-(",
256
+ ":\u2019-)",
257
+ ";",
258
+ ";)",
259
+ ";-)",
260
+ ";-D",
261
+ ";-X",
262
+ ";-d",
263
+ ";D",
264
+ ";X",
265
+ ";_;",
266
+ ";d",
267
+ "<",
268
+ "<.<",
269
+ "</3",
270
+ "</d",
271
+ "<3",
272
+ "<33",
273
+ "<333",
274
+ "<d",
275
+ "<dd",
276
+ "<ddd",
277
+ "<space>",
278
+ "<xxxx>",
279
+ "=",
280
+ "=(",
281
+ "=)",
282
+ "=/",
283
+ "=3",
284
+ "=D",
285
+ "=X",
286
+ "=[",
287
+ "=]",
288
+ "=d",
289
+ "=|",
290
+ ">",
291
+ ">.<",
292
+ ">.>",
293
+ ">:(",
294
+ ">:o",
295
+ ">:x",
296
+ "><(((*>",
297
+ "?",
298
+ "@",
299
+ "@_@",
300
+ "A",
301
+ "A-t-elle",
302
+ "A-t-il",
303
+ "A-t-on",
304
+ "ACR",
305
+ "ANCIENNES",
306
+ "ANDALOUSE",
307
+ "APPROX",
308
+ "AS",
309
+ "ASACR",
310
+ "AWI",
311
+ "Abdallah",
312
+ "AbriChats",
313
+ "Abruzzes",
314
+ "Acad\u00e9mie",
315
+ "Aden",
316
+ "Adolf",
317
+ "Afar",
318
+ "Afghanistan",
319
+ "Afia",
320
+ "Afrique",
321
+ "Aigle",
322
+ "Ailleurs",
323
+ "Ain",
324
+ "AinNaadja",
325
+ "Ainsi",
326
+ "Akmatbayev",
327
+ "Aknoun",
328
+ "Al",
329
+ "Alabang",
330
+ "Albatross",
331
+ "Alberta",
332
+ "Alexander",
333
+ "Alger",
334
+ "Alger1",
335
+ "Algercentre",
336
+ "Alg\u00e9rie",
337
+ "Alg\u00e9riePoste",
338
+ "Allemagne",
339
+ "Allemand",
340
+ "Allons",
341
+ "Alors",
342
+ "Am\u00e9riques",
343
+ "Anbar",
344
+ "Andaman",
345
+ "Andrew",
346
+ "Angeles",
347
+ "Angleterre",
348
+ "Annaba",
349
+ "Antalia",
350
+ "Anthony",
351
+ "Arabie",
352
+ "Arcades",
353
+ "Argentine",
354
+ "Ariel",
355
+ "Arizona",
356
+ "Arm\u00e9nie",
357
+ "Asie",
358
+ "Association",
359
+ "Ath\u00e8nes",
360
+ "Au",
361
+ "Audin",
362
+ "Aujourd'",
363
+ "Aujourd'hui",
364
+ "Aujourd\u2019",
365
+ "Aujourd\u2019hui",
366
+ "Australie",
367
+ "Aviv",
368
+ "Ayala",
369
+ "Azur",
370
+ "A\u00e9roport",
371
+ "A\u00e9roportinternational",
372
+ "B",
373
+ "BABEZZOUAR",
374
+ "BDA",
375
+ "BENAKNOUN",
376
+ "Bab",
377
+ "BabEzzouar",
378
+ "Baba",
379
+ "Babel",
380
+ "Bachdjarah",
381
+ "Badalamenti",
382
+ "Badr",
383
+ "Badran",
384
+ "Bagdad",
385
+ "Baghlan",
386
+ "Banque",
387
+ "Barack",
388
+ "Barka",
389
+ "Barri\u00e8re",
390
+ "Bas",
391
+ "Bass",
392
+ "Bas\u00e9",
393
+ "Batna",
394
+ "Bay",
395
+ "Bayelsa",
396
+ "Beacon",
397
+ "Beerburrum",
398
+ "Bekasi",
399
+ "Belgique",
400
+ "Ben",
401
+ "BenAknoun",
402
+ "Benghazi",
403
+ "Berger",
404
+ "Berlin",
405
+ "Beyrouth",
406
+ "Biak",
407
+ "Bichkek",
408
+ "Bien",
409
+ "Bilfinger",
410
+ "Birkhadem",
411
+ "Birmingham",
412
+ "Bishkek",
413
+ "Blair",
414
+ "Blakehurst",
415
+ "Board",
416
+ "Boh\u00eame",
417
+ "Bolivie",
418
+ "Bouali",
419
+ "Bouchaoui",
420
+ "Boudiaf",
421
+ "Boumediene",
422
+ "Boumedi\u00e8ne",
423
+ "Brighton",
424
+ "Bromsgrove",
425
+ "Burkina",
426
+ "Bushehr",
427
+ "Byfield",
428
+ "B\u00e9nin",
429
+ "C",
430
+ "C++",
431
+ "C.",
432
+ "CEI",
433
+ "CITY",
434
+ "COUNTRY",
435
+ "COVID-19",
436
+ "Caire",
437
+ "Canada",
438
+ "Cape",
439
+ "Caravage",
440
+ "Carnaval",
441
+ "Carrefour",
442
+ "Carriles",
443
+ "Catharina",
444
+ "Ce",
445
+ "Cedar",
446
+ "Cela",
447
+ "Center",
448
+ "Centre",
449
+ "Ces",
450
+ "Cet",
451
+ "Cette",
452
+ "Charles",
453
+ "Chevalier",
454
+ "Chine",
455
+ "Chitashvili",
456
+ "Christopher",
457
+ "Ch\u00e9raga",
458
+ "Cisjordanie",
459
+ "City",
460
+ "Classic",
461
+ "Clinton",
462
+ "Coimbra",
463
+ "College",
464
+ "Colombia",
465
+ "Columbia",
466
+ "Commissariat",
467
+ "Comt\u00e9",
468
+ "Concerts",
469
+ "Conseil",
470
+ "Constantine",
471
+ "Contactez",
472
+ "Copiapo",
473
+ "Corail",
474
+ "Coronavirus",
475
+ "Cor\u00e9e",
476
+ "Costa",
477
+ "Coupee",
478
+ "Covid-19",
479
+ "Cruz",
480
+ "Cumple",
481
+ "Cyrville",
482
+ "D",
483
+ "D.C.",
484
+ "DE",
485
+ "DES",
486
+ "DH.91",
487
+ "Danemark",
488
+ "Dans",
489
+ "Darfour",
490
+ "Davao",
491
+ "Dawei",
492
+ "Daylam",
493
+ "De",
494
+ "Deep",
495
+ "Defla",
496
+ "Delhi",
497
+ "Delta",
498
+ "Des",
499
+ "Detection",
500
+ "Detremmerie",
501
+ "Deux",
502
+ "Disney",
503
+ "Dix",
504
+ "Dominies",
505
+ "Donbass",
506
+ "Donc",
507
+ "Doubs",
508
+ "Douera",
509
+ "Dr",
510
+ "Dr.",
511
+ "Dream",
512
+ "Duke",
513
+ "Durban",
514
+ "Dutch",
515
+ "Duterte",
516
+ "D\u00e9j\u00e0",
517
+ "D\u00e9sertAlg\u00e9rie",
518
+ "D\u00e9sign\u00e9",
519
+ "E",
520
+ "EFG",
521
+ "ESI",
522
+ "EST",
523
+ "EST-IL",
524
+ "ET",
525
+ "East",
526
+ "Ekaterine",
527
+ "El",
528
+ "ElHarrach",
529
+ "Elat",
530
+ "Elizabeth",
531
+ "Elle",
532
+ "Elliott",
533
+ "Empire",
534
+ "En",
535
+ "Equipment-2",
536
+ "Esk",
537
+ "Espagne",
538
+ "Esperanza",
539
+ "Est",
540
+ "Est-ce",
541
+ "Est-t-elle",
542
+ "Est-t-il",
543
+ "Est-t-on",
544
+ "Etats-Unis",
545
+ "Ethiopie",
546
+ "Ettadhamen",
547
+ "Eurobank",
548
+ "Europe",
549
+ "Expositions",
550
+ "Ezzouar",
551
+ "F",
552
+ "F.",
553
+ "FAF",
554
+ "FESTIVAL",
555
+ "FIBDA",
556
+ "Faso",
557
+ "Fielding",
558
+ "Flinders",
559
+ "Force",
560
+ "Formation",
561
+ "Forssberg",
562
+ "Fort",
563
+ "France",
564
+ "Franche",
565
+ "Fraser",
566
+ "Fredrik",
567
+ "Fredrika",
568
+ "Front",
569
+ "Frontier",
570
+ "Fujimori",
571
+ "Furneaux",
572
+ "G",
573
+ "GNAWI",
574
+ "Galam",
575
+ "Galles",
576
+ "GareTrain",
577
+ "Gates",
578
+ "Gaulle",
579
+ "Geographical",
580
+ "Ghana",
581
+ "Grande",
582
+ "Grande-Bretagne",
583
+ "Great",
584
+ "Gr\u00e8ce",
585
+ "Guin\u00e9e",
586
+ "Gulian",
587
+ "Guyane",
588
+ "G\u00e9orgie",
589
+ "G\u00f6ring",
590
+ "H",
591
+ "HASHTAG",
592
+ "Haas",
593
+ "Habitat",
594
+ "Hacen",
595
+ "Had",
596
+ "Haiti",
597
+ "Halesowen",
598
+ "Hanoi",
599
+ "Harare",
600
+ "Harrach",
601
+ "Harraoua",
602
+ "Hassi",
603
+ "HassiR\u2019",
604
+ "Hassiba",
605
+ "Havilland",
606
+ "Hay",
607
+ "Ha\u00efti",
608
+ "Herat",
609
+ "Hermann",
610
+ "Hermosa",
611
+ "Hill",
612
+ "Hitler",
613
+ "Hollywood",
614
+ "Honduras",
615
+ "Hong",
616
+ "Horbach",
617
+ "Houari",
618
+ "Hraoua",
619
+ "Huerta",
620
+ "Huit",
621
+ "Human",
622
+ "Huygens",
623
+ "H\u00e4rn\u00f6sand",
624
+ "H\u2019",
625
+ "I",
626
+ "IDA",
627
+ "INTERNATIONAL",
628
+ "ION",
629
+ "ITY",
630
+ "Ier",
631
+ "Il",
632
+ "Ils",
633
+ "Inde",
634
+ "India",
635
+ "Indien",
636
+ "Indique",
637
+ "Indique-t-elle",
638
+ "Indique-t-il",
639
+ "Indique-t-on",
640
+ "Institu\u00e9",
641
+ "International",
642
+ "Irak",
643
+ "Iraniens",
644
+ "Irlande",
645
+ "Islande",
646
+ "Ismail",
647
+ "Isra\u00e9liens",
648
+ "Italie",
649
+ "J",
650
+ "J'",
651
+ "J.",
652
+ "Jakarta",
653
+ "James",
654
+ "Japon",
655
+ "Je",
656
+ "Jeffrey",
657
+ "Jeux",
658
+ "Jilali",
659
+ "JilaliElYabes",
660
+ "Jimna",
661
+ "Jolie",
662
+ "Jos\u00e9",
663
+ "Justice",
664
+ "J\u00e9nine",
665
+ "J\u2019",
666
+ "K",
667
+ "K.",
668
+ "Kaboul",
669
+ "Kairouan",
670
+ "Karachi",
671
+ "Katrina",
672
+ "Katy",
673
+ "Kenya",
674
+ "Kenyan",
675
+ "Khan",
676
+ "Khost",
677
+ "Khraissia",
678
+ "King",
679
+ "Kirghizstan",
680
+ "Kong",
681
+ "Kooyong",
682
+ "Kouba",
683
+ "Kowe\u00eft",
684
+ "Krzyzewski",
685
+ "Kurdes",
686
+ "Kurram",
687
+ "L",
688
+ "L'",
689
+ "LNWR",
690
+ "La",
691
+ "LaCroix",
692
+ "Labado",
693
+ "Lake",
694
+ "Lane",
695
+ "Lapal",
696
+ "Lattaqui",
697
+ "Le",
698
+ "Leonella",
699
+ "Les",
700
+ "Liban",
701
+ "Libye",
702
+ "Life",
703
+ "Lille",
704
+ "London",
705
+ "Londres",
706
+ "Longevelle-sur-Doubs",
707
+ "Lors",
708
+ "Los",
709
+ "Louisiane",
710
+ "Lumsden",
711
+ "Lundi",
712
+ "L\u2019",
713
+ "M",
714
+ "M'",
715
+ "M.",
716
+ "MM",
717
+ "MM.",
718
+ "MUSIQUE",
719
+ "MUSIQUES",
720
+ "Ma",
721
+ "Madagascar",
722
+ "Magazine",
723
+ "Mais",
724
+ "Mali",
725
+ "Manhattan",
726
+ "Manille",
727
+ "Marash",
728
+ "Margareta",
729
+ "Martin",
730
+ "Martyr",
731
+ "Mary",
732
+ "Massachusetts",
733
+ "MaximuM",
734
+ "Maxwell",
735
+ "McCrea",
736
+ "McMurray",
737
+ "Medina",
738
+ "Melbourne",
739
+ "Mexique",
740
+ "Mike",
741
+ "Mila",
742
+ "Militaire",
743
+ "Mindoro",
744
+ "MiniDisc",
745
+ "Mlle",
746
+ "Mlle.",
747
+ "Mme",
748
+ "Mme.",
749
+ "Mogadiscio",
750
+ "Mohamed",
751
+ "Mohammad",
752
+ "Mohammadia",
753
+ "Moldavie",
754
+ "Mon",
755
+ "Montr",
756
+ "Monument",
757
+ "Moque",
758
+ "Moque-t-elle",
759
+ "Moque-t-il",
760
+ "Moque-t-on",
761
+ "Mora",
762
+ "Moravie",
763
+ "Mosque",
764
+ "Mouscron",
765
+ "Moussa",
766
+ "Mozambique",
767
+ "Mr",
768
+ "Mr.",
769
+ "Mugabe",
770
+ "Mustafa",
771
+ "Muzaffargarh",
772
+ "Mwanawasa",
773
+ "M\u00e9morial",
774
+ "M\u00e9morialduMartyr",
775
+ "M\u00e9troAlger",
776
+ "N",
777
+ "N'",
778
+ "N'est-ce",
779
+ "NAL",
780
+ "NCE",
781
+ "NCSML",
782
+ "NES",
783
+ "NWR",
784
+ "NY",
785
+ "Naadja",
786
+ "Nairobi",
787
+ "National",
788
+ "Nations",
789
+ "New",
790
+ "Newton",
791
+ "Nicaragua",
792
+ "Nicobar",
793
+ "Niger",
794
+ "Nigeria",
795
+ "No",
796
+ "No.",
797
+ "Nombreux",
798
+ "Nord",
799
+ "Normalement",
800
+ "North",
801
+ "Nous",
802
+ "Nouveau",
803
+ "NouveauLyc\u00e9e",
804
+ "Nouvelle",
805
+ "N\u00e9",
806
+ "N\u00e9pal",
807
+ "N\u2019",
808
+ "N\u2019est-ce",
809
+ "O",
810
+ "O.O",
811
+ "O.o",
812
+ "ONU",
813
+ "OUN",
814
+ "O_O",
815
+ "O_o",
816
+ "Obama",
817
+ "Observatoire",
818
+ "Occupy",
819
+ "Olof",
820
+ "Omar",
821
+ "Ontario",
822
+ "Ootacamund",
823
+ "Op\u00e9ra",
824
+ "Op\u00e9rad\u2019",
825
+ "Organisation",
826
+ "Orlando",
827
+ "Osaka",
828
+ "Osman",
829
+ "Ottawa",
830
+ "Oued",
831
+ "OuedSmar",
832
+ "Ouest",
833
+ "Ouganda",
834
+ "P",
835
+ "PME",
836
+ "PROVINCE",
837
+ "Pakistan",
838
+ "Pangandaran",
839
+ "Papouasie",
840
+ "Par",
841
+ "Parc",
842
+ "Paris",
843
+ "Parish",
844
+ "Park",
845
+ "Pas",
846
+ "Passchendaele",
847
+ "Passe",
848
+ "Passe-t-elle",
849
+ "Passe-t-il",
850
+ "Passe-t-on",
851
+ "Patton",
852
+ "Pays",
853
+ "Pechey",
854
+ "Pendant",
855
+ "Petite",
856
+ "Peu",
857
+ "Peyton",
858
+ "Philippines",
859
+ "Piscine",
860
+ "Plus",
861
+ "Plusieurs",
862
+ "Pointe",
863
+ "Polytechnique",
864
+ "Port",
865
+ "Port-Soudan",
866
+ "Port-au-Prince",
867
+ "Posada",
868
+ "Post",
869
+ "Pour",
870
+ "Pourquoi",
871
+ "Prague",
872
+ "Premier",
873
+ "Printemps",
874
+ "P\u00e9rou",
875
+ "Q",
876
+ "QUE",
877
+ "Qaida",
878
+ "Qu",
879
+ "Qu'",
880
+ "Qu'est-ce",
881
+ "Quand",
882
+ "Queensland",
883
+ "Qu\u2019",
884
+ "Qu\u2019est-ce",
885
+ "R",
886
+ "R'mel",
887
+ "RAF",
888
+ "ROOT",
889
+ "ROX",
890
+ "RSD",
891
+ "Rahma",
892
+ "Railway",
893
+ "Ramadi",
894
+ "Ramon",
895
+ "Raqim",
896
+ "Renaissance",
897
+ "Reykjav\u00edk",
898
+ "Rica",
899
+ "Richard",
900
+ "Richards",
901
+ "Rights",
902
+ "Ritchie",
903
+ "Riyad",
904
+ "Robert",
905
+ "Rodrigo",
906
+ "Rome",
907
+ "Rouge",
908
+ "Route",
909
+ "Royal",
910
+ "Royaume",
911
+ "Ruisseau",
912
+ "Russie",
913
+ "Rwanda",
914
+ "R\u00e9publique",
915
+ "S",
916
+ "S'",
917
+ "S'EST-IL",
918
+ "SBU",
919
+ "SML",
920
+ "SUGGESTION",
921
+ "SVP",
922
+ "Sa",
923
+ "Sa7raElDjazair",
924
+ "Sabi",
925
+ "Sadr",
926
+ "Sahafi",
927
+ "Sahara",
928
+ "Saidoun",
929
+ "Saint-Amand-les-Eaux",
930
+ "Saldanha",
931
+ "Salim",
932
+ "Samedi",
933
+ "San",
934
+ "Saoudite",
935
+ "Sarjeant",
936
+ "Schoof",
937
+ "School",
938
+ "Sea",
939
+ "Selon",
940
+ "Semble",
941
+ "Semble-t-elle",
942
+ "Semble-t-il",
943
+ "Semble-t-on",
944
+ "Sept",
945
+ "Serbie",
946
+ "Service",
947
+ "Sgorbati",
948
+ "Shanghai",
949
+ "Shell",
950
+ "Sher",
951
+ "Si",
952
+ "Sidi",
953
+ "Sikhs",
954
+ "Sina\u00ef",
955
+ "Singapour",
956
+ "Six",
957
+ "Snowzilla",
958
+ "Soho",
959
+ "Somalie",
960
+ "Somaliens",
961
+ "Sony",
962
+ "Souk",
963
+ "Sous",
964
+ "St",
965
+ "St.",
966
+ "Staoueli",
967
+ "State",
968
+ "Ste",
969
+ "Ste.",
970
+ "Sud",
971
+ "Sud-Africains",
972
+ "Suffolk",
973
+ "Sunday",
974
+ "Su\u00e8de",
975
+ "Svedbom",
976
+ "Swat",
977
+ "Syrie",
978
+ "S\u00e9curit\u00e9",
979
+ "S\u00e9n\u00e9gal",
980
+ "S\u00e9tif",
981
+ "S\u0153ur",
982
+ "S\u2019",
983
+ "S\u2019EST-IL",
984
+ "T",
985
+ "T.",
986
+ "TBI",
987
+ "THB",
988
+ "TRY",
989
+ "Tal",
990
+ "Tamanrasset",
991
+ "Tangerang",
992
+ "Tanzanie",
993
+ "Tasmanie",
994
+ "Technique",
995
+ "Tel",
996
+ "Texas",
997
+ "Thomas",
998
+ "Th\u00e9atre",
999
+ "Th\u00e9\u00e2tre",
1000
+ "Th\u00e9\u00e2tredeverdue",
1001
+ "Ticona",
1002
+ "Tim",
1003
+ "Times",
1004
+ "Tipaza",
1005
+ "Tokar",
1006
+ "Tokyo",
1007
+ "Tombstone",
1008
+ "Tommy",
1009
+ "Tony",
1010
+ "Top",
1011
+ "Toutes",
1012
+ "Town",
1013
+ "Train",
1014
+ "Tsunami",
1015
+ "Tunis",
1016
+ "Tunisie",
1017
+ "Tynychbek",
1018
+ "U",
1019
+ "UAR",
1020
+ "UES",
1021
+ "USE",
1022
+ "USTHB",
1023
+ "Un",
1024
+ "Une",
1025
+ "Uni",
1026
+ "Union",
1027
+ "University",
1028
+ "Universit\u00e9",
1029
+ "Universit\u00e9Colombia",
1030
+ "Uruguay",
1031
+ "V",
1032
+ "V.V",
1033
+ "VAL",
1034
+ "VOE",
1035
+ "V_V",
1036
+ "Valley",
1037
+ "Vendredi",
1038
+ "Victoria",
1039
+ "Virginie",
1040
+ "Vista",
1041
+ "Vol",
1042
+ "Vol.",
1043
+ "Voyageant",
1044
+ "Vue",
1045
+ "V\u00e4sternorrland",
1046
+ "W",
1047
+ "Wallace",
1048
+ "Warner",
1049
+ "Washington",
1050
+ "Watch",
1051
+ "Western",
1052
+ "Wick",
1053
+ "Wide",
1054
+ "William",
1055
+ "Williams",
1056
+ "Wolverhampton",
1057
+ "Woolworths",
1058
+ "World",
1059
+ "Wrentham",
1060
+ "X'",
1061
+ "X'XXX-XX",
1062
+ "X'xxx",
1063
+ "X'xxx-xx",
1064
+ "X++",
1065
+ "X-x-xx",
1066
+ "X-x-xxxx",
1067
+ "X.",
1068
+ "X.X",
1069
+ "X.X.",
1070
+ "X.x",
1071
+ "XD",
1072
+ "XDD",
1073
+ "XX",
1074
+ "XX.",
1075
+ "XX.dd",
1076
+ "XXX",
1077
+ "XXX-XX",
1078
+ "XXXX",
1079
+ "XXXX-dd",
1080
+ "X_X",
1081
+ "X_x",
1082
+ "Xan",
1083
+ "Xx",
1084
+ "Xx'",
1085
+ "Xx'xxx-xx",
1086
+ "Xx.",
1087
+ "XxXxxx",
1088
+ "XxXxxxx",
1089
+ "XxdxxXxXxxxx",
1090
+ "Xxx",
1091
+ "Xxx-Xxxxx",
1092
+ "Xxx-x-xx",
1093
+ "Xxx-x-xxxx",
1094
+ "Xxx-xx",
1095
+ "Xxx.",
1096
+ "XxxXxxxx",
1097
+ "Xxxx",
1098
+ "Xxxx-Xxxxx",
1099
+ "Xxxx-xx-Xxxxx",
1100
+ "Xxxx.",
1101
+ "XxxxXxxx",
1102
+ "XxxxXxxxx",
1103
+ "Xxxxx",
1104
+ "Xxxxx'",
1105
+ "Xxxxx'xxx",
1106
+ "Xxxxx-Xxxx",
1107
+ "Xxxxx-Xxxxx",
1108
+ "Xxxxx-Xxxxx-xxx-Xxxx",
1109
+ "Xxxxx-d",
1110
+ "Xxxxx-dd",
1111
+ "Xxxxx-x-xx",
1112
+ "Xxxxx-x-xxxx",
1113
+ "Xxxxx-xxx-Xxxxx",
1114
+ "XxxxxX",
1115
+ "XxxxxXxXxxxx",
1116
+ "XxxxxXxxx",
1117
+ "XxxxxXxxxx",
1118
+ "XxxxxX\u2019",
1119
+ "Xxxxxd",
1120
+ "Xxxxx\u2019",
1121
+ "Xxxxx\u2019xxx",
1122
+ "Xx\u2019",
1123
+ "Xx\u2019xxx-xx",
1124
+ "X\u2019",
1125
+ "X\u2019XXX-XX",
1126
+ "X\u2019xxx-xx",
1127
+ "Y",
1128
+ "Yabes",
1129
+ "Yarraman",
1130
+ "York",
1131
+ "Younis",
1132
+ "Youssef",
1133
+ "Y\u00e9men",
1134
+ "Z",
1135
+ "Zambie",
1136
+ "Zemirli",
1137
+ "Zimbabwe",
1138
+ "ZiradaTown",
1139
+ "Ziralda",
1140
+ "ZiraldaVille",
1141
+ "Zrhouni",
1142
+ "[",
1143
+ "[-:",
1144
+ "[:",
1145
+ "[=",
1146
+ "\\",
1147
+ "\\\")",
1148
+ "\\n",
1149
+ "\\t",
1150
+ "\\x",
1151
+ "]",
1152
+ "]=",
1153
+ "^",
1154
+ "^_^",
1155
+ "^__^",
1156
+ "^___^",
1157
+ "_*)",
1158
+ "_-)",
1159
+ "_.)",
1160
+ "_<)",
1161
+ "_^)",
1162
+ "__-",
1163
+ "__^",
1164
+ "_\u00ac)",
1165
+ "_\u0ca0)",
1166
+ "a",
1167
+ "a-t-elle",
1168
+ "a-t-il",
1169
+ "a-t-on",
1170
+ "a.",
1171
+ "aas",
1172
+ "aba",
1173
+ "abandonn\u00e9",
1174
+ "abat",
1175
+ "abattre",
1176
+ "abattu",
1177
+ "abdallah",
1178
+ "abe",
1179
+ "abi",
1180
+ "abord",
1181
+ "abri",
1182
+ "abrichats",
1183
+ "abruzzes",
1184
+ "absence",
1185
+ "absolument",
1186
+ "acad\u00e9mie",
1187
+ "acceptaient",
1188
+ "acceptant",
1189
+ "accessible",
1190
+ "acceullir",
1191
+ "accident",
1192
+ "accompagner",
1193
+ "accompagn\u00e9e",
1194
+ "accord",
1195
+ "accordera",
1196
+ "accueil",
1197
+ "accueilli",
1198
+ "accueillir",
1199
+ "accus\u00e9",
1200
+ "acc\u00e8s",
1201
+ "ace",
1202
+ "ach",
1203
+ "acheter",
1204
+ "ack",
1205
+ "acquis",
1206
+ "acr",
1207
+ "acres",
1208
+ "actions",
1209
+ "activit\u00e9",
1210
+ "activit\u00e9s",
1211
+ "actuellement",
1212
+ "ac\u00e9",
1213
+ "ada",
1214
+ "ade",
1215
+ "aden",
1216
+ "adi",
1217
+ "administration",
1218
+ "ado",
1219
+ "adolescents",
1220
+ "adolf",
1221
+ "adr",
1222
+ "adultes",
1223
+ "ad\u00e9",
1224
+ "ad\u2019",
1225
+ "afa",
1226
+ "afar",
1227
+ "affaibli",
1228
+ "affaires",
1229
+ "affili\u00e9s",
1230
+ "affirme",
1231
+ "affrontement",
1232
+ "affront\u00e9s",
1233
+ "afghane",
1234
+ "afghanistan",
1235
+ "afi",
1236
+ "afia",
1237
+ "afin",
1238
+ "africaine",
1239
+ "africains",
1240
+ "afrique",
1241
+ "aga",
1242
+ "age",
1243
+ "agence",
1244
+ "agresseurs",
1245
+ "ag\u00e9",
1246
+ "ai",
1247
+ "aid",
1248
+ "aider",
1249
+ "aigle",
1250
+ "ail",
1251
+ "ailleurs",
1252
+ "aim",
1253
+ "ain",
1254
+ "aindefla",
1255
+ "ainnaadja",
1256
+ "ainsi",
1257
+ "air",
1258
+ "aire",
1259
+ "ais",
1260
+ "ait",
1261
+ "aka",
1262
+ "ake",
1263
+ "akmatbayev",
1264
+ "aknoun",
1265
+ "al",
1266
+ "ala",
1267
+ "alabang",
1268
+ "albatross",
1269
+ "alberta",
1270
+ "ale",
1271
+ "alentours",
1272
+ "alerte",
1273
+ "alexander",
1274
+ "alger",
1275
+ "alger1",
1276
+ "algercentre",
1277
+ "alg\u00e9rie",
1278
+ "alg\u00e9riens",
1279
+ "alg\u00e9rieposte",
1280
+ "ali",
1281
+ "all",
1282
+ "allemagne",
1283
+ "allemand",
1284
+ "allemande",
1285
+ "aller",
1286
+ "allons",
1287
+ "all\u00e8gement",
1288
+ "alors",
1289
+ "als",
1290
+ "ama",
1291
+ "ambassade",
1292
+ "ambitions",
1293
+ "amendes",
1294
+ "ami",
1295
+ "amicales",
1296
+ "amicaux",
1297
+ "amie",
1298
+ "ammonium",
1299
+ "amp",
1300
+ "ams",
1301
+ "am\u00e9liorer",
1302
+ "am\u00e9ricain",
1303
+ "am\u00e9ricaines",
1304
+ "am\u00e9ricains",
1305
+ "am\u00e9riques",
1306
+ "an",
1307
+ "ana",
1308
+ "anbar",
1309
+ "anc",
1310
+ "ancien",
1311
+ "anciennes",
1312
+ "and",
1313
+ "andalouse",
1314
+ "andaman",
1315
+ "andrew",
1316
+ "ane",
1317
+ "ang",
1318
+ "angeles",
1319
+ "angleterre",
1320
+ "animaux",
1321
+ "ank",
1322
+ "ann",
1323
+ "annaba",
1324
+ "annabaville",
1325
+ "annoncer",
1326
+ "annonc\u00e9",
1327
+ "annuel",
1328
+ "annuelle",
1329
+ "annul\u00e9s",
1330
+ "ann\u00e9e",
1331
+ "ann\u00e9es",
1332
+ "ans",
1333
+ "ant",
1334
+ "antalia",
1335
+ "anthony",
1336
+ "anti-danois",
1337
+ "antijaponaises",
1338
+ "anv",
1339
+ "ao",
1340
+ "apaiser",
1341
+ "ape",
1342
+ "apo",
1343
+ "app",
1344
+ "apparemment",
1345
+ "apparentes",
1346
+ "appartenant",
1347
+ "appel\u00e9",
1348
+ "apprennent",
1349
+ "appris",
1350
+ "approvisionner",
1351
+ "approx",
1352
+ "apr",
1353
+ "apr.",
1354
+ "apr\u00e8s",
1355
+ "apr\u00e8s-midi",
1356
+ "aquarium",
1357
+ "ara",
1358
+ "arabie",
1359
+ "arbres",
1360
+ "arc",
1361
+ "arcades",
1362
+ "ard",
1363
+ "are",
1364
+ "argentine",
1365
+ "arh",
1366
+ "ari",
1367
+ "ariel",
1368
+ "arizona",
1369
+ "ark",
1370
+ "arm",
1371
+ "arme",
1372
+ "arm\u00e9e",
1373
+ "arm\u00e9nie",
1374
+ "arm\u00e9s",
1375
+ "arriver",
1376
+ "arr\u00eat",
1377
+ "arr\u00eate",
1378
+ "arr\u00eat\u00e9",
1379
+ "ars",
1380
+ "art",
1381
+ "article",
1382
+ "articles",
1383
+ "artistes",
1384
+ "artistiques",
1385
+ "ary",
1386
+ "ar\u00e9",
1387
+ "as",
1388
+ "asa",
1389
+ "asacr",
1390
+ "ase",
1391
+ "ash",
1392
+ "asi",
1393
+ "asie",
1394
+ "aso",
1395
+ "ass",
1396
+ "assaut",
1397
+ "assez",
1398
+ "assister",
1399
+ "association",
1400
+ "assurant",
1401
+ "ast",
1402
+ "as\u00e9",
1403
+ "ate",
1404
+ "ateliers",
1405
+ "ath\u00e8nes",
1406
+ "ati",
1407
+ "ato",
1408
+ "atrocit\u00e9s",
1409
+ "ats",
1410
+ "attaque",
1411
+ "attaques",
1412
+ "attaqu\u00e9",
1413
+ "attendaient",
1414
+ "attentat",
1415
+ "attentats",
1416
+ "attente",
1417
+ "atterri",
1418
+ "attirera",
1419
+ "aty",
1420
+ "at\u00e9",
1421
+ "au",
1422
+ "au-del\u00e0",
1423
+ "au-dessus",
1424
+ "aucun",
1425
+ "aucune",
1426
+ "audin",
1427
+ "audition",
1428
+ "audit\u00e9s",
1429
+ "augment\u00e9",
1430
+ "aujourd'",
1431
+ "aujourd'hui",
1432
+ "aujourd\u2019",
1433
+ "aujourd\u2019hui",
1434
+ "auraient",
1435
+ "aurait",
1436
+ "auront",
1437
+ "aus",
1438
+ "aussi",
1439
+ "australe",
1440
+ "australie",
1441
+ "aut",
1442
+ "auteurs",
1443
+ "automne",
1444
+ "autoris\u00e9e",
1445
+ "autorit\u00e9s",
1446
+ "autoroute",
1447
+ "autre",
1448
+ "autres",
1449
+ "av",
1450
+ "av.",
1451
+ "avaient",
1452
+ "avait",
1453
+ "avanc",
1454
+ "avanc\u00e9e",
1455
+ "avant",
1456
+ "avec",
1457
+ "avertis",
1458
+ "aviaire",
1459
+ "avion",
1460
+ "avions",
1461
+ "aviv",
1462
+ "avoir",
1463
+ "avr",
1464
+ "avr.",
1465
+ "avril",
1466
+ "awa",
1467
+ "awi",
1468
+ "axes",
1469
+ "axi",
1470
+ "aya",
1471
+ "ayala",
1472
+ "ays",
1473
+ "ay\u00e9",
1474
+ "aza",
1475
+ "aze",
1476
+ "azi",
1477
+ "azur",
1478
+ "a\u00e9rien",
1479
+ "a\u00e9rienne",
1480
+ "a\u00e9riennes",
1481
+ "a\u00e9roport",
1482
+ "a\u00e9roportHouariBoumedi\u00e8ne",
1483
+ "a\u00e9roporthouariboumedi\u00e8ne",
1484
+ "a\u00e9roportinternational",
1485
+ "b",
1486
+ "b.",
1487
+ "bab",
1488
+ "baba",
1489
+ "babel",
1490
+ "babezzouar",
1491
+ "bachdjarah",
1492
+ "badalamenti",
1493
+ "badr",
1494
+ "badran",
1495
+ "bagarre",
1496
+ "bagdad",
1497
+ "baghlan",
1498
+ "balay\u00e9",
1499
+ "ball",
1500
+ "balle",
1501
+ "baln\u00e9aire",
1502
+ "ban",
1503
+ "bananiers",
1504
+ "banlieue",
1505
+ "banque",
1506
+ "banques",
1507
+ "baptis\u00e9",
1508
+ "bar",
1509
+ "barack",
1510
+ "barka",
1511
+ "barri\u00e8re",
1512
+ "bas",
1513
+ "base",
1514
+ "basent",
1515
+ "basket",
1516
+ "bass",
1517
+ "bastion",
1518
+ "bas\u00e9",
1519
+ "bas\u00e9es",
1520
+ "bat",
1521
+ "bateau",
1522
+ "batiment",
1523
+ "batimentsblancs",
1524
+ "batna",
1525
+ "battue",
1526
+ "bay",
1527
+ "bayelsa",
1528
+ "bazar",
1529
+ "bda",
1530
+ "beacon",
1531
+ "beau",
1532
+ "beaucoup",
1533
+ "bec",
1534
+ "beerburrum",
1535
+ "bek",
1536
+ "bekasi",
1537
+ "bel",
1538
+ "belgique",
1539
+ "belle",
1540
+ "ben",
1541
+ "benaknoun",
1542
+ "benghazi",
1543
+ "berger",
1544
+ "berlin",
1545
+ "bes",
1546
+ "besoin",
1547
+ "beyrouth",
1548
+ "bia",
1549
+ "biak",
1550
+ "biblioth\u00e8que",
1551
+ "bichkek",
1552
+ "bie",
1553
+ "bien",
1554
+ "bilat\u00e9rale",
1555
+ "bilfinger",
1556
+ "birkhadem",
1557
+ "birmingham",
1558
+ "bishkek",
1559
+ "bitumineux",
1560
+ "blair",
1561
+ "blakehurst",
1562
+ "blancs",
1563
+ "ble",
1564
+ "bless",
1565
+ "blessant",
1566
+ "bless\u00e9",
1567
+ "bli",
1568
+ "blizzard",
1569
+ "blocus",
1570
+ "board",
1571
+ "boh\u00eame",
1572
+ "bois",
1573
+ "boisdesArcades",
1574
+ "boisdesarcades",
1575
+ "bolivie",
1576
+ "bom",
1577
+ "bombardement",
1578
+ "bombardements",
1579
+ "bombarder",
1580
+ "bon",
1581
+ "bonne",
1582
+ "bord",
1583
+ "bor\u00e9ale",
1584
+ "bouali",
1585
+ "bouchaoui",
1586
+ "boudiaf",
1587
+ "boumediene",
1588
+ "boumedi\u00e8ne",
1589
+ "bout",
1590
+ "bou\u00e9es",
1591
+ "bo\u00eete",
1592
+ "bra",
1593
+ "bre",
1594
+ "bri",
1595
+ "brighton",
1596
+ "britanniques",
1597
+ "bromsgrove",
1598
+ "br\u00fblant",
1599
+ "br\u00fbl\u00e9",
1600
+ "br\u00fbl\u00e9e",
1601
+ "bureaux",
1602
+ "burkina",
1603
+ "bus",
1604
+ "bushehr",
1605
+ "but",
1606
+ "bwe",
1607
+ "bye",
1608
+ "byfield",
1609
+ "b\u00e2timent",
1610
+ "b\u00e2timents",
1611
+ "b\u00e9nin",
1612
+ "b\u0153uf",
1613
+ "c",
1614
+ "c'",
1615
+ "c++",
1616
+ "c.",
1617
+ "cache",
1618
+ "cachette",
1619
+ "cachettes",
1620
+ "cadre",
1621
+ "caire",
1622
+ "cal",
1623
+ "camion",
1624
+ "camp",
1625
+ "campagne",
1626
+ "campus",
1627
+ "campusNCSML",
1628
+ "campusncsml",
1629
+ "canada",
1630
+ "canaux",
1631
+ "candidat",
1632
+ "candidature",
1633
+ "cape",
1634
+ "capital",
1635
+ "capitale",
1636
+ "capteurs",
1637
+ "captur\u00e9",
1638
+ "car",
1639
+ "caract\u00e9ristiques",
1640
+ "caravage",
1641
+ "carnaval",
1642
+ "carrefour",
1643
+ "carriles",
1644
+ "carri\u00e8re",
1645
+ "cas",
1646
+ "catastrophe",
1647
+ "catharina",
1648
+ "catholique",
1649
+ "caus",
1650
+ "causa",
1651
+ "causant",
1652
+ "cause",
1653
+ "causes",
1654
+ "ce",
1655
+ "ce>",
1656
+ "cedar",
1657
+ "cei",
1658
+ "cela",
1659
+ "celle",
1660
+ "celle-ci",
1661
+ "celles",
1662
+ "celles-ci",
1663
+ "cellule",
1664
+ "celui",
1665
+ "celui-ci",
1666
+ "cen",
1667
+ "centaines",
1668
+ "center",
1669
+ "centre",
1670
+ "centrecommercial",
1671
+ "centreville",
1672
+ "cependant",
1673
+ "cer",
1674
+ "certain",
1675
+ "ces",
1676
+ "cessent",
1677
+ "cesser",
1678
+ "cessez-le-feu",
1679
+ "cet",
1680
+ "cette",
1681
+ "ceux",
1682
+ "cf",
1683
+ "cf.",
1684
+ "chambre",
1685
+ "champ",
1686
+ "champion",
1687
+ "changements",
1688
+ "chaque",
1689
+ "charles",
1690
+ "charme",
1691
+ "chats",
1692
+ "che",
1693
+ "chef",
1694
+ "chefs",
1695
+ "chemin",
1696
+ "chemindefer",
1697
+ "chercher",
1698
+ "chevalier",
1699
+ "chez",
1700
+ "chi",
1701
+ "chic",
1702
+ "chiites",
1703
+ "chimique",
1704
+ "chine",
1705
+ "chitashvili",
1706
+ "choisissent",
1707
+ "christopher",
1708
+ "chs",
1709
+ "ch\u00e9",
1710
+ "ch\u00e9raga",
1711
+ "ci",
1712
+ "ci-dessous",
1713
+ "cible",
1714
+ "cie",
1715
+ "cin",
1716
+ "cin\u00e9ma",
1717
+ "cin\u00e9matographique",
1718
+ "cio",
1719
+ "circulation",
1720
+ "cisjordanie",
1721
+ "citoyens",
1722
+ "city",
1723
+ "cit\u00e9",
1724
+ "cit\u00e9720",
1725
+ "cit\u00e9JilaliElYabes",
1726
+ "cit\u00e9benaknoun",
1727
+ "cit\u00e9jilalielyabes",
1728
+ "cit\u00e9militaire",
1729
+ "cit\u00e9s",
1730
+ "cit\u00e9universitaire",
1731
+ "civile",
1732
+ "civils",
1733
+ "clar",
1734
+ "class",
1735
+ "classic",
1736
+ "cle",
1737
+ "climatiques",
1738
+ "clinton",
1739
+ "coimbra",
1740
+ "cole",
1741
+ "collecte",
1742
+ "collections",
1743
+ "college",
1744
+ "colombia",
1745
+ "columbia",
1746
+ "combat",
1747
+ "combattu",
1748
+ "comme",
1749
+ "commence",
1750
+ "commencer",
1751
+ "commenc\u00e9",
1752
+ "comment",
1753
+ "commercial",
1754
+ "commer\u00e7ant",
1755
+ "commissariat",
1756
+ "commissariatgendarmerie",
1757
+ "communaut\u00e9",
1758
+ "communaut\u00e9s",
1759
+ "commune",
1760
+ "communes",
1761
+ "compagnie",
1762
+ "compagnies",
1763
+ "compl\u00e8te",
1764
+ "comprenaient",
1765
+ "comprennent",
1766
+ "compte",
1767
+ "comptent",
1768
+ "comt\u00e9",
1769
+ "con",
1770
+ "concentr\u00e9e",
1771
+ "concept",
1772
+ "concernant",
1773
+ "concert",
1774
+ "concerts",
1775
+ "concevoir",
1776
+ "concours",
1777
+ "condamnation",
1778
+ "conditions",
1779
+ "conducteurs",
1780
+ "conduit",
1781
+ "confiance",
1782
+ "conflit",
1783
+ "confondu",
1784
+ "conf\u00e9rence",
1785
+ "conf\u00e9rences",
1786
+ "congr\u00e8s",
1787
+ "connexion",
1788
+ "connu",
1789
+ "connue",
1790
+ "consacr\u00e9es",
1791
+ "conseil",
1792
+ "consid\u00e9rablement",
1793
+ "consid\u00e9r\u00e9",
1794
+ "consid\u00e9r\u00e9e",
1795
+ "consiste",
1796
+ "constantine",
1797
+ "constat\u00e9",
1798
+ "constitu\u00e9e",
1799
+ "construction",
1800
+ "construire",
1801
+ "consulat",
1802
+ "consult\u00e9",
1803
+ "cons\u00e9quent",
1804
+ "contactez",
1805
+ "contacts",
1806
+ "conteneur",
1807
+ "continentale",
1808
+ "continuent",
1809
+ "contraint",
1810
+ "contraints",
1811
+ "contrairement",
1812
+ "contrat",
1813
+ "contre",
1814
+ "contribuera",
1815
+ "contr\u00f4le",
1816
+ "contr\u00f4l\u00e9",
1817
+ "converger",
1818
+ "coop\u00e9ration",
1819
+ "coop\u00e9rative",
1820
+ "copiapo",
1821
+ "corail",
1822
+ "coronavirus",
1823
+ "corps",
1824
+ "corruption",
1825
+ "cor\u00e9e",
1826
+ "costa",
1827
+ "country",
1828
+ "coup",
1829
+ "coupee",
1830
+ "cours",
1831
+ "courses",
1832
+ "couvrait",
1833
+ "covid-19",
1834
+ "co\u00fbt",
1835
+ "co\u00fbteuse",
1836
+ "craint",
1837
+ "criant",
1838
+ "crise",
1839
+ "critique",
1840
+ "croiser",
1841
+ "croix",
1842
+ "cruz",
1843
+ "cr\u00e8che",
1844
+ "cr\u00e9er",
1845
+ "ct.",
1846
+ "cte",
1847
+ "cts",
1848
+ "cuisine",
1849
+ "cultures",
1850
+ "cumple",
1851
+ "cun",
1852
+ "curit",
1853
+ "curitaires",
1854
+ "cus",
1855
+ "cyrville",
1856
+ "c\u00e8s",
1857
+ "c\u00e9e",
1858
+ "c\u00e9l\u00e8bre",
1859
+ "c\u00e9r\u00e9brale",
1860
+ "c\u00f4te",
1861
+ "c\u00f4tes",
1862
+ "c\u00f4ti\u00e8re",
1863
+ "c\u00f4ti\u00e8res",
1864
+ "c\u2019",
1865
+ "d",
1866
+ "d'",
1867
+ "d)",
1868
+ "d,d",
1869
+ "d,dd",
1870
+ "d-",
1871
+ "d-)",
1872
+ "d-X",
1873
+ "d.",
1874
+ "d.c.",
1875
+ "d.d",
1876
+ "d.x",
1877
+ "dX",
1878
+ "d_d",
1879
+ "d_x",
1880
+ "dad",
1881
+ "dan",
1882
+ "danemark",
1883
+ "dangereux",
1884
+ "danois",
1885
+ "dans",
1886
+ "dar",
1887
+ "darfour",
1888
+ "dat",
1889
+ "davantage",
1890
+ "davao",
1891
+ "dawei",
1892
+ "day",
1893
+ "daylam",
1894
+ "dd",
1895
+ "dd,dd",
1896
+ "ddd",
1897
+ "dddd",
1898
+ "dddxxxx",
1899
+ "ddxx",
1900
+ "de",
1901
+ "decin",
1902
+ "decine",
1903
+ "dedans",
1904
+ "deep",
1905
+ "defla",
1906
+ "dehors",
1907
+ "delhi",
1908
+ "delta",
1909
+ "del\u00e0",
1910
+ "dem",
1911
+ "demain",
1912
+ "demande",
1913
+ "demandent",
1914
+ "demander",
1915
+ "demandes",
1916
+ "den",
1917
+ "depuis",
1918
+ "der",
1919
+ "dermato",
1920
+ "dernier",
1921
+ "derniers",
1922
+ "derni\u00e8re",
1923
+ "derni\u00e8res",
1924
+ "des",
1925
+ "descendues",
1926
+ "desertAlg\u00e9rien",
1927
+ "desertalg\u00e9rien",
1928
+ "dessous",
1929
+ "dessus",
1930
+ "destination",
1931
+ "destructeurs",
1932
+ "detection",
1933
+ "detremmerie",
1934
+ "dette",
1935
+ "deux",
1936
+ "devais",
1937
+ "devait",
1938
+ "devant",
1939
+ "devenu",
1940
+ "devienne",
1941
+ "devient",
1942
+ "devraient",
1943
+ "dez",
1944
+ "dh.91",
1945
+ "dia",
1946
+ "diaspora",
1947
+ "die",
1948
+ "diff\u00e9rentes",
1949
+ "dimanche",
1950
+ "din",
1951
+ "dipl\u00f4mes",
1952
+ "directeur",
1953
+ "direction",
1954
+ "dirig\u00e9",
1955
+ "discours",
1956
+ "discussions",
1957
+ "discuter",
1958
+ "disent",
1959
+ "disney",
1960
+ "disperser",
1961
+ "disponible",
1962
+ "disposer",
1963
+ "distance",
1964
+ "distribuant",
1965
+ "district",
1966
+ "dit",
1967
+ "diversifier",
1968
+ "divis\u00e9",
1969
+ "dix",
1970
+ "dizaines",
1971
+ "di\u00e9",
1972
+ "dja",
1973
+ "djenane",
1974
+ "document",
1975
+ "dois",
1976
+ "doivent",
1977
+ "dollars",
1978
+ "domicile",
1979
+ "dominies",
1980
+ "domin\u00e9",
1981
+ "dommage",
1982
+ "don",
1983
+ "donbass",
1984
+ "donc",
1985
+ "donne",
1986
+ "donner",
1987
+ "donn\u00e9",
1988
+ "dont",
1989
+ "doubs",
1990
+ "douera",
1991
+ "dr",
1992
+ "dr.",
1993
+ "dra",
1994
+ "drainage",
1995
+ "dramatique",
1996
+ "drapeaux",
1997
+ "dre",
1998
+ "dream",
1999
+ "droit",
2000
+ "droits",
2001
+ "du",
2002
+ "due",
2003
+ "duke",
2004
+ "durban",
2005
+ "dus",
2006
+ "dutch",
2007
+ "duterte",
2008
+ "dx",
2009
+ "dxxxx",
2010
+ "d\u00b0",
2011
+ "d\u00e8s",
2012
+ "d\u00e9but",
2013
+ "d\u00e9c",
2014
+ "d\u00e9c.",
2015
+ "d\u00e9cembre",
2016
+ "d\u00e9cide",
2017
+ "d\u00e9cid\u00e9",
2018
+ "d\u00e9clare",
2019
+ "d\u00e9clar\u00e9",
2020
+ "d\u00e9clar\u00e9e",
2021
+ "d\u00e9coll\u00e9",
2022
+ "d\u00e9crivant",
2023
+ "d\u00e9c\u00e9d\u00e9",
2024
+ "d\u00e9dicaces",
2025
+ "d\u00e9di\u00e9",
2026
+ "d\u00e9di\u00e9es",
2027
+ "d\u00e9e",
2028
+ "d\u00e9fense",
2029
+ "d\u00e9fil\u00e9",
2030
+ "d\u00e9fouler",
2031
+ "d\u00e9gager",
2032
+ "d\u00e9g\u00e2ts",
2033
+ "d\u00e9j\u00e0",
2034
+ "d\u00e9m\u00e9nag\u00e9",
2035
+ "d\u00e9part",
2036
+ "d\u00e9partement",
2037
+ "d\u00e9pend",
2038
+ "d\u00e9penses",
2039
+ "d\u00e9place",
2040
+ "d\u00e9placer",
2041
+ "d\u00e9pla\u00e7ant",
2042
+ "d\u00e9ploiement",
2043
+ "d\u00e9poser",
2044
+ "d\u00e9put\u00e9",
2045
+ "d\u00e9roule",
2046
+ "d\u00e9senclaver",
2047
+ "d\u00e9sengorger",
2048
+ "d\u00e9sertalg\u00e9rie",
2049
+ "d\u00e9sign\u00e9",
2050
+ "d\u00e9sormais",
2051
+ "d\u00e9tach\u00e9",
2052
+ "d\u00e9tenus",
2053
+ "d\u00e9terminer",
2054
+ "d\u00e9troit",
2055
+ "d\u00e9vastatrice",
2056
+ "d\u00e9vastatrices",
2057
+ "d\u00e9vast\u00e9",
2058
+ "d\u00fb",
2059
+ "d\u2019",
2060
+ "e",
2061
+ "e.",
2062
+ "eam",
2063
+ "east",
2064
+ "eat",
2065
+ "eau",
2066
+ "edi",
2067
+ "eds",
2068
+ "eek",
2069
+ "eep",
2070
+ "effet",
2071
+ "efg",
2072
+ "efs",
2073
+ "ege",
2074
+ "ehr",
2075
+ "eil",
2076
+ "ein",
2077
+ "ekaterine",
2078
+ "el",
2079
+ "ela",
2080
+ "elat",
2081
+ "eld",
2082
+ "ele",
2083
+ "elharrach",
2084
+ "eli",
2085
+ "elizabeth",
2086
+ "ell",
2087
+ "elle",
2088
+ "elle-m\u00eame",
2089
+ "elles",
2090
+ "elliott",
2091
+ "els",
2092
+ "el\u00e0",
2093
+ "el\u00e9",
2094
+ "embard\u00e9e",
2095
+ "empire",
2096
+ "emploi",
2097
+ "employ\u00e9s",
2098
+ "emprunteur",
2099
+ "emp\u00eacher",
2100
+ "en",
2101
+ "en-dessous",
2102
+ "encercl\u00e9e",
2103
+ "encombrement",
2104
+ "encombrer",
2105
+ "encore",
2106
+ "encourager",
2107
+ "end",
2108
+ "endommageant",
2109
+ "endommag\u00e9es",
2110
+ "endroit",
2111
+ "ene",
2112
+ "enfances",
2113
+ "enfants",
2114
+ "engageantes",
2115
+ "engagement",
2116
+ "engag\u00e9e",
2117
+ "englouti",
2118
+ "enlev\u00e9s",
2119
+ "enqu\u00eate",
2120
+ "enqu\u00eatent",
2121
+ "enregistr\u00e9e",
2122
+ "ens",
2123
+ "ensembles",
2124
+ "ent",
2125
+ "entier",
2126
+ "entour\u00e9",
2127
+ "entra\u00eeneur",
2128
+ "entre",
2129
+ "entrep",
2130
+ "entreprises",
2131
+ "entrer",
2132
+ "entr\u00e9",
2133
+ "enu",
2134
+ "envie",
2135
+ "environ",
2136
+ "environnantes",
2137
+ "environs",
2138
+ "ept",
2139
+ "equipment-2",
2140
+ "er1",
2141
+ "era",
2142
+ "erg",
2143
+ "ern",
2144
+ "ers",
2145
+ "ert",
2146
+ "es",
2147
+ "escadron",
2148
+ "escale",
2149
+ "escroquerie",
2150
+ "esi",
2151
+ "esk",
2152
+ "espace",
2153
+ "espagne",
2154
+ "espagnol",
2155
+ "esperanza",
2156
+ "espoir",
2157
+ "ess",
2158
+ "essay\u00e9",
2159
+ "essence",
2160
+ "essentiel",
2161
+ "est",
2162
+ "est-ce",
2163
+ "est-il",
2164
+ "est-t-elle",
2165
+ "est-t-il",
2166
+ "est-t-on",
2167
+ "esth\u00e9tique",
2168
+ "et",
2169
+ "eta",
2170
+ "etats-unis",
2171
+ "etc",
2172
+ "etc.",
2173
+ "eth",
2174
+ "ethiopie",
2175
+ "ets",
2176
+ "ettadhamen",
2177
+ "eu",
2178
+ "eue",
2179
+ "eul",
2180
+ "eur",
2181
+ "eurobank",
2182
+ "europe",
2183
+ "eut",
2184
+ "eux",
2185
+ "ev\u00e9",
2186
+ "exactement",
2187
+ "examiner",
2188
+ "exception",
2189
+ "exemplaires",
2190
+ "exiger",
2191
+ "existant",
2192
+ "existe",
2193
+ "existent",
2194
+ "exploitation",
2195
+ "exploiter",
2196
+ "exploit\u00e9",
2197
+ "explos",
2198
+ "exploser",
2199
+ "explosion",
2200
+ "explosions",
2201
+ "explos\u00e9",
2202
+ "exportation",
2203
+ "expositions",
2204
+ "expos\u00e9",
2205
+ "extrad\u00e9",
2206
+ "ext\u00e9rieur",
2207
+ "ezzouar",
2208
+ "e\u00eft",
2209
+ "f",
2210
+ "f.",
2211
+ "fabrication",
2212
+ "face",
2213
+ "facilement",
2214
+ "facult\u00e9s",
2215
+ "fado",
2216
+ "faf",
2217
+ "faibles",
2218
+ "faim",
2219
+ "faire",
2220
+ "faisant",
2221
+ "fait",
2222
+ "faites",
2223
+ "faits",
2224
+ "famille",
2225
+ "fan",
2226
+ "far",
2227
+ "faso",
2228
+ "fast",
2229
+ "faut",
2230
+ "femme",
2231
+ "fer",
2232
+ "ferme",
2233
+ "fermeture",
2234
+ "festival",
2235
+ "festivals",
2236
+ "fet",
2237
+ "feu",
2238
+ "fia",
2239
+ "fiables",
2240
+ "fibda",
2241
+ "fic",
2242
+ "fielding",
2243
+ "figurera",
2244
+ "fille",
2245
+ "films",
2246
+ "fils",
2247
+ "fin",
2248
+ "finance",
2249
+ "financier",
2250
+ "financiers",
2251
+ "fi\u00e9",
2252
+ "fla",
2253
+ "flinders",
2254
+ "flux",
2255
+ "fois",
2256
+ "fond",
2257
+ "fonder",
2258
+ "fonds",
2259
+ "font",
2260
+ "fontaine",
2261
+ "foods",
2262
+ "football",
2263
+ "force",
2264
+ "forces",
2265
+ "foresti\u00e8res",
2266
+ "formation",
2267
+ "forment",
2268
+ "formidable",
2269
+ "formulaire",
2270
+ "forssberg",
2271
+ "fort",
2272
+ "forte",
2273
+ "fortement",
2274
+ "for\u00eat",
2275
+ "foule",
2276
+ "fr",
2277
+ "fragiles",
2278
+ "france",
2279
+ "franche",
2280
+ "francophone",
2281
+ "fran\u00e7aise",
2282
+ "frapp",
2283
+ "frappe",
2284
+ "frapper",
2285
+ "frappes",
2286
+ "fraser",
2287
+ "fre",
2288
+ "fredrik",
2289
+ "fredrika",
2290
+ "froid",
2291
+ "front",
2292
+ "frontali\u00e8re",
2293
+ "frontier",
2294
+ "fronti\u00e8re",
2295
+ "fronti\u00e8res",
2296
+ "fr\u00e8re",
2297
+ "fr\u00e9quemment",
2298
+ "fr\u00e9quence",
2299
+ "fr\u00e9quenter",
2300
+ "fui",
2301
+ "fujimori",
2302
+ "furneaux",
2303
+ "fut",
2304
+ "futur",
2305
+ "futureman\u00e8ge",
2306
+ "f\u00e9d\u00e9ral",
2307
+ "f\u00e9vr",
2308
+ "f\u00e9vr.",
2309
+ "f\u00eates",
2310
+ "g",
2311
+ "g.",
2312
+ "gal",
2313
+ "galam",
2314
+ "galles",
2315
+ "garde",
2316
+ "garderie",
2317
+ "gare",
2318
+ "garedetrain",
2319
+ "garetrain",
2320
+ "gar\u00e7on",
2321
+ "gates",
2322
+ "gaulle",
2323
+ "gaz",
2324
+ "gendarmerie",
2325
+ "gens",
2326
+ "geographical",
2327
+ "ger",
2328
+ "ges",
2329
+ "ghana",
2330
+ "gie",
2331
+ "gion",
2332
+ "gir",
2333
+ "gle",
2334
+ "glissement",
2335
+ "gnawi",
2336
+ "gne",
2337
+ "gn\u00e9",
2338
+ "golfe",
2339
+ "gouvernement",
2340
+ "gouvernementales",
2341
+ "grand",
2342
+ "grande",
2343
+ "grande-bretagne",
2344
+ "grandes",
2345
+ "grandi",
2346
+ "grands",
2347
+ "granitique",
2348
+ "gratuite",
2349
+ "gravement",
2350
+ "gravit\u00e9",
2351
+ "great",
2352
+ "grenade",
2353
+ "grimp\u00e9",
2354
+ "grippe",
2355
+ "gros",
2356
+ "groupe",
2357
+ "groupes",
2358
+ "gr\u00e8ce",
2359
+ "gr\u00e9",
2360
+ "gua",
2361
+ "gue",
2362
+ "guerre",
2363
+ "guin\u00e9e",
2364
+ "gulian",
2365
+ "guyane",
2366
+ "g\u00e9ant",
2367
+ "g\u00e9e",
2368
+ "g\u00e9nial",
2369
+ "g\u00e9n\u00e9ral",
2370
+ "g\u00e9n\u00e9rale",
2371
+ "g\u00e9n\u00e9ralement",
2372
+ "g\u00e9orgie",
2373
+ "g\u00e9s",
2374
+ "g\u00f6ring",
2375
+ "h",
2376
+ "h.",
2377
+ "haas",
2378
+ "habitants",
2379
+ "habitat",
2380
+ "habite",
2381
+ "habitent",
2382
+ "hacen",
2383
+ "had",
2384
+ "hai",
2385
+ "haiti",
2386
+ "halesowen",
2387
+ "ham",
2388
+ "han",
2389
+ "handicap\u00e9es",
2390
+ "hanoi",
2391
+ "harare",
2392
+ "harrach",
2393
+ "harraoua",
2394
+ "hashtag",
2395
+ "hassi",
2396
+ "hassiba",
2397
+ "hassir\u2019",
2398
+ "havilland",
2399
+ "hay",
2400
+ "hayelbadr",
2401
+ "ha\u00efti",
2402
+ "hebdomadaires",
2403
+ "hec",
2404
+ "hectares",
2405
+ "hef",
2406
+ "her",
2407
+ "herat",
2408
+ "hermann",
2409
+ "hermosa",
2410
+ "hes",
2411
+ "heure",
2412
+ "heures",
2413
+ "heureux",
2414
+ "hey",
2415
+ "hez",
2416
+ "hic",
2417
+ "hie",
2418
+ "hier",
2419
+ "hill",
2420
+ "hindous",
2421
+ "historique",
2422
+ "hitler",
2423
+ "hiver",
2424
+ "hma",
2425
+ "hollywood",
2426
+ "hommages",
2427
+ "homme",
2428
+ "hommes",
2429
+ "hon",
2430
+ "honduras",
2431
+ "hong",
2432
+ "hopital",
2433
+ "horbach",
2434
+ "hors",
2435
+ "houari",
2436
+ "hraoua",
2437
+ "hts",
2438
+ "https://t.co/bInCA9Vp8P",
2439
+ "https://t.co/binca9vp8p",
2440
+ "huerta",
2441
+ "hui",
2442
+ "huit",
2443
+ "human",
2444
+ "huygens",
2445
+ "hypoth\u00e9caires",
2446
+ "h\u00e4rn\u00f6sand",
2447
+ "h\u00e9licopt\u00e8re",
2448
+ "h\u00e9licopt\u00e8res",
2449
+ "h\u00f4pital",
2450
+ "h\u00f4tel",
2451
+ "h\u00f4tes",
2452
+ "h\u2019",
2453
+ "i",
2454
+ "i.",
2455
+ "iR\u2019",
2456
+ "iaf",
2457
+ "iak",
2458
+ "ial",
2459
+ "iam",
2460
+ "ian",
2461
+ "iat",
2462
+ "iba",
2463
+ "ib\u00e9ro",
2464
+ "ica",
2465
+ "ice",
2466
+ "ich",
2467
+ "ichnotaxons",
2468
+ "ici",
2469
+ "ick",
2470
+ "ict",
2471
+ "ida",
2472
+ "ide",
2473
+ "identifi",
2474
+ "identifi\u00e9",
2475
+ "idi",
2476
+ "id\u00e9",
2477
+ "ied",
2478
+ "iel",
2479
+ "ien",
2480
+ "ier",
2481
+ "ies",
2482
+ "ieu",
2483
+ "ife",
2484
+ "ifi",
2485
+ "ifs",
2486
+ "igo",
2487
+ "ig\u00e9",
2488
+ "ika",
2489
+ "ike",
2490
+ "iko",
2491
+ "il",
2492
+ "ila",
2493
+ "ile",
2494
+ "ili",
2495
+ "ill",
2496
+ "ill\u00e9galement",
2497
+ "ill\u00e9gales",
2498
+ "ils",
2499
+ "il\u00e9",
2500
+ "images",
2501
+ "imagine",
2502
+ "ime",
2503
+ "immigr\u00e9",
2504
+ "implications",
2505
+ "impliqu",
2506
+ "impliqu\u00e9e",
2507
+ "important",
2508
+ "importante",
2509
+ "importantes",
2510
+ "importation",
2511
+ "impression",
2512
+ "impr\u00e9visibles",
2513
+ "ina",
2514
+ "incendie",
2515
+ "incendies",
2516
+ "incident",
2517
+ "incorporation",
2518
+ "inde",
2519
+ "india",
2520
+ "indien",
2521
+ "indienne",
2522
+ "indiens",
2523
+ "indique",
2524
+ "indique-t-elle",
2525
+ "indique-t-il",
2526
+ "indique-t-on",
2527
+ "indiquent",
2528
+ "indiqu\u00e9",
2529
+ "indispensable",
2530
+ "individuels",
2531
+ "indon\u00e9siennes",
2532
+ "industrie",
2533
+ "ind\u00e9pendance",
2534
+ "ine",
2535
+ "influence",
2536
+ "infocomm",
2537
+ "inform",
2538
+ "information",
2539
+ "informations",
2540
+ "informatique",
2541
+ "infrastructure",
2542
+ "infrastructures",
2543
+ "ing",
2544
+ "initial",
2545
+ "inondation",
2546
+ "inondations",
2547
+ "inond\u00e9",
2548
+ "inond\u00e9es",
2549
+ "ins",
2550
+ "inspecter",
2551
+ "install",
2552
+ "install\u00e9",
2553
+ "instant",
2554
+ "institutions",
2555
+ "institu\u00e9",
2556
+ "insurg\u00e9s",
2557
+ "int",
2558
+ "intense",
2559
+ "interdit",
2560
+ "international",
2561
+ "internationaux",
2562
+ "interrompus",
2563
+ "intervenue",
2564
+ "int\u00e9rieurs",
2565
+ "invasion",
2566
+ "invit\u00e9s",
2567
+ "in\u00e9",
2568
+ "ion",
2569
+ "ipe",
2570
+ "iqu",
2571
+ "irak",
2572
+ "irakien",
2573
+ "irakiens",
2574
+ "iranienne",
2575
+ "iraniens",
2576
+ "ire",
2577
+ "irlande",
2578
+ "ir\u00e9",
2579
+ "ir\u2019",
2580
+ "isc",
2581
+ "ise",
2582
+ "ish",
2583
+ "islamistes",
2584
+ "islande",
2585
+ "ismail",
2586
+ "isol\u00e9e",
2587
+ "isra\u00e9liennes",
2588
+ "isra\u00e9liens",
2589
+ "isra\u00e9lo",
2590
+ "is\u00e9",
2591
+ "italie",
2592
+ "italienne",
2593
+ "ite",
2594
+ "iti",
2595
+ "its",
2596
+ "ity",
2597
+ "it\u00e9",
2598
+ "ium",
2599
+ "ive",
2600
+ "ize",
2601
+ "i\u00e9s",
2602
+ "j",
2603
+ "j'",
2604
+ "j.",
2605
+ "jakarta",
2606
+ "jamais",
2607
+ "james",
2608
+ "janv",
2609
+ "janv.",
2610
+ "janvier",
2611
+ "japon",
2612
+ "jardin",
2613
+ "je",
2614
+ "jeffrey",
2615
+ "jeter",
2616
+ "jeudi",
2617
+ "jeune",
2618
+ "jeunes",
2619
+ "jeux",
2620
+ "jilali",
2621
+ "jilalielyabes",
2622
+ "jimna",
2623
+ "jolie",
2624
+ "jor",
2625
+ "jos\u00e9",
2626
+ "jouer",
2627
+ "jouet",
2628
+ "jour",
2629
+ "journalistes",
2630
+ "journ\u00e9e",
2631
+ "jours",
2632
+ "jug\u00e9",
2633
+ "juill",
2634
+ "juill.",
2635
+ "juillet",
2636
+ "jumelle",
2637
+ "jusqu'",
2638
+ "jusque",
2639
+ "jusque-l\u00e0",
2640
+ "juste",
2641
+ "justice",
2642
+ "j\u00e9nine",
2643
+ "j\u2019",
2644
+ "k",
2645
+ "k.",
2646
+ "kaboul",
2647
+ "kairouan",
2648
+ "kamikaze",
2649
+ "kar",
2650
+ "karachi",
2651
+ "katrina",
2652
+ "katy",
2653
+ "kek",
2654
+ "kenya",
2655
+ "kenyan",
2656
+ "ket",
2657
+ "khan",
2658
+ "khost",
2659
+ "khraissia",
2660
+ "khs",
2661
+ "kilom\u00e8tres",
2662
+ "king",
2663
+ "kirghize",
2664
+ "kirghizstan",
2665
+ "km",
2666
+ "kong",
2667
+ "kooyong",
2668
+ "kouba",
2669
+ "kowe\u00eft",
2670
+ "kowe\u00eftiennes",
2671
+ "krzyzewski",
2672
+ "kurdes",
2673
+ "kurram",
2674
+ "kyo",
2675
+ "l",
2676
+ "l'",
2677
+ "l.",
2678
+ "la",
2679
+ "labado",
2680
+ "lacroix",
2681
+ "lah",
2682
+ "laisser",
2683
+ "lait",
2684
+ "laitiers",
2685
+ "lake",
2686
+ "lam",
2687
+ "lan",
2688
+ "lancement",
2689
+ "lane",
2690
+ "langue",
2691
+ "lapal",
2692
+ "laprovale",
2693
+ "lar",
2694
+ "large",
2695
+ "lat",
2696
+ "lattaqui",
2697
+ "lda",
2698
+ "le",
2699
+ "le.",
2700
+ "lektor",
2701
+ "leonella",
2702
+ "lequel",
2703
+ "ler",
2704
+ "les",
2705
+ "lesbananiers",
2706
+ "let",
2707
+ "leur",
2708
+ "leurs",
2709
+ "lev\u00e9",
2710
+ "ley",
2711
+ "lfe",
2712
+ "lhi",
2713
+ "lia",
2714
+ "liban",
2715
+ "libye",
2716
+ "lic",
2717
+ "lie",
2718
+ "lieu",
2719
+ "lieux",
2720
+ "life",
2721
+ "ligne",
2722
+ "lille",
2723
+ "lim",
2724
+ "lin",
2725
+ "lir",
2726
+ "lit",
2727
+ "litres",
2728
+ "li\u00e9",
2729
+ "ll.",
2730
+ "lla",
2731
+ "lle",
2732
+ "lli",
2733
+ "ll\u00e9",
2734
+ "lms",
2735
+ "lnwr",
2736
+ "local",
2737
+ "lof",
2738
+ "loi",
2739
+ "loin",
2740
+ "lois",
2741
+ "loisir",
2742
+ "lon",
2743
+ "london",
2744
+ "londoniens",
2745
+ "londres",
2746
+ "long",
2747
+ "longevelle-sur-doubs",
2748
+ "longs",
2749
+ "lors",
2750
+ "lorsqu'",
2751
+ "lorsque",
2752
+ "los",
2753
+ "louisiane",
2754
+ "lq1",
2755
+ "lsa",
2756
+ "lta",
2757
+ "lt\u00e9",
2758
+ "lui",
2759
+ "lui-m\u00eame",
2760
+ "lumsden",
2761
+ "lundi",
2762
+ "lune",
2763
+ "lus",
2764
+ "lux",
2765
+ "luxe",
2766
+ "lyc\u00e9e",
2767
+ "lyc\u00e9ekouba",
2768
+ "l\u00e0",
2769
+ "l\u00e9e",
2770
+ "l\u00e9s",
2771
+ "l\u00e9sion",
2772
+ "l\u2019",
2773
+ "m",
2774
+ "m'",
2775
+ "m.",
2776
+ "ma",
2777
+ "mad",
2778
+ "madagascar",
2779
+ "magasinage",
2780
+ "magazine",
2781
+ "maghr\u00e9bins",
2782
+ "magnifique",
2783
+ "magnitude",
2784
+ "mai",
2785
+ "maintenant",
2786
+ "maintien",
2787
+ "maire",
2788
+ "mairie",
2789
+ "mais",
2790
+ "maison",
2791
+ "maisons",
2792
+ "majeure",
2793
+ "major",
2794
+ "majorit\u00e9",
2795
+ "mal",
2796
+ "malades",
2797
+ "mali",
2798
+ "malveillants",
2799
+ "mammif\u00e8res",
2800
+ "man",
2801
+ "mandat",
2802
+ "manger",
2803
+ "manhattan",
2804
+ "manifestants",
2805
+ "manifestation",
2806
+ "manille",
2807
+ "manque",
2808
+ "man\u00e8ge",
2809
+ "mar",
2810
+ "marash",
2811
+ "marche",
2812
+ "marcher",
2813
+ "march\u00e9",
2814
+ "mardi",
2815
+ "margareta",
2816
+ "marge",
2817
+ "mari",
2818
+ "mariage",
2819
+ "marine",
2820
+ "marque",
2821
+ "mars",
2822
+ "martin",
2823
+ "martyr",
2824
+ "mary",
2825
+ "mas",
2826
+ "masculine",
2827
+ "massachusetts",
2828
+ "massif",
2829
+ "massive",
2830
+ "master",
2831
+ "match",
2832
+ "matchs",
2833
+ "matin",
2834
+ "mauvais",
2835
+ "mauvaise",
2836
+ "mauvaises",
2837
+ "maximum",
2838
+ "maxwell",
2839
+ "mccrea",
2840
+ "mcmurray",
2841
+ "me",
2842
+ "me.",
2843
+ "med",
2844
+ "medina",
2845
+ "mel",
2846
+ "melbourne",
2847
+ "membre",
2848
+ "membres",
2849
+ "men",
2850
+ "menac\u00e9",
2851
+ "menti",
2852
+ "mer",
2853
+ "mercredi",
2854
+ "mes",
2855
+ "met",
2856
+ "mettant",
2857
+ "mettent",
2858
+ "mettez",
2859
+ "mettre",
2860
+ "meurent",
2861
+ "mexique",
2862
+ "midi",
2863
+ "mie",
2864
+ "mieux",
2865
+ "mignons",
2866
+ "migrants",
2867
+ "mike",
2868
+ "mila",
2869
+ "milices",
2870
+ "milieu",
2871
+ "militaire",
2872
+ "militaires",
2873
+ "militant",
2874
+ "militants",
2875
+ "milliers",
2876
+ "million",
2877
+ "millions",
2878
+ "min",
2879
+ "mindoro",
2880
+ "mine",
2881
+ "minidisc",
2882
+ "minimisation",
2883
+ "ministre",
2884
+ "minist\u00e8re",
2885
+ "minoritaires",
2886
+ "minuit",
2887
+ "minutes",
2888
+ "mis",
2889
+ "mixte",
2890
+ "mlle",
2891
+ "mlle.",
2892
+ "mm",
2893
+ "mm.",
2894
+ "mme",
2895
+ "mme.",
2896
+ "mmy",
2897
+ "mm\u00e9",
2898
+ "mna",
2899
+ "mne",
2900
+ "mogadiscio",
2901
+ "mohamed",
2902
+ "mohammad",
2903
+ "mohammadia",
2904
+ "moi",
2905
+ "moins",
2906
+ "mois",
2907
+ "moldaves",
2908
+ "moldavie",
2909
+ "moment",
2910
+ "mon",
2911
+ "monde",
2912
+ "mondiale",
2913
+ "montagnes",
2914
+ "montait",
2915
+ "montr",
2916
+ "montrent",
2917
+ "montr\u00e9",
2918
+ "monument",
2919
+ "mon\u00e9taires",
2920
+ "moque",
2921
+ "moque-t-elle",
2922
+ "moque-t-il",
2923
+ "moque-t-on",
2924
+ "mora",
2925
+ "moravie",
2926
+ "mort",
2927
+ "morte",
2928
+ "mortel",
2929
+ "morts",
2930
+ "mosque",
2931
+ "mosqu\u00e9e",
2932
+ "mouscron",
2933
+ "moussa",
2934
+ "mouvement",
2935
+ "moyen",
2936
+ "moyennes",
2937
+ "mozambique",
2938
+ "mpe",
2939
+ "mps",
2940
+ "mp\u00e9",
2941
+ "mr",
2942
+ "mr.",
2943
+ "mt\u00e9",
2944
+ "muM",
2945
+ "mugabe",
2946
+ "multipli\u00e9es",
2947
+ "mum",
2948
+ "municipalit\u00e9",
2949
+ "munitions",
2950
+ "musicales",
2951
+ "musicaux",
2952
+ "musique",
2953
+ "musiques",
2954
+ "mustafa",
2955
+ "mus\u00e9e",
2956
+ "muzaffargarh",
2957
+ "mwanawasa",
2958
+ "m\u00e9decine",
2959
+ "m\u00e9e",
2960
+ "m\u00e9moire",
2961
+ "m\u00e9morial",
2962
+ "m\u00e9morialdumartyr",
2963
+ "m\u00e9s",
2964
+ "m\u00e9tro",
2965
+ "m\u00e9troalger",
2966
+ "m\u00e9t\u00e9o",
2967
+ "m\u00eame",
2968
+ "n",
2969
+ "n'",
2970
+ "n'est-ce",
2971
+ "n.",
2972
+ "naadja",
2973
+ "nairobi",
2974
+ "naissance",
2975
+ "nal",
2976
+ "natale",
2977
+ "national",
2978
+ "nationale",
2979
+ "nations",
2980
+ "nature",
2981
+ "naturelle",
2982
+ "naviguait",
2983
+ "na\u00ef",
2984
+ "nce",
2985
+ "ncs",
2986
+ "ncsml",
2987
+ "nc\u00e9",
2988
+ "nda",
2989
+ "nde",
2990
+ "ndi",
2991
+ "ndo",
2992
+ "nds",
2993
+ "ndu",
2994
+ "nd\u00e9",
2995
+ "ne",
2996
+ "nel",
2997
+ "ner",
2998
+ "nes",
2999
+ "nets",
3000
+ "new",
3001
+ "newton",
3002
+ "ney",
3003
+ "nez",
3004
+ "ngs",
3005
+ "ngt",
3006
+ "ng\u00e9",
3007
+ "nha",
3008
+ "nicaragua",
3009
+ "nicobar",
3010
+ "nie",
3011
+ "niger",
3012
+ "nigeria",
3013
+ "nin",
3014
+ "nir",
3015
+ "nis",
3016
+ "nitrate",
3017
+ "niveau",
3018
+ "niveaux",
3019
+ "nne",
3020
+ "nnu",
3021
+ "nn\u00e9",
3022
+ "no",
3023
+ "no.",
3024
+ "nocturne",
3025
+ "noi",
3026
+ "nol",
3027
+ "nombre",
3028
+ "nombreux",
3029
+ "nomm\u00e9",
3030
+ "non",
3031
+ "nord",
3032
+ "nord-ouest",
3033
+ "normalement",
3034
+ "north",
3035
+ "nos",
3036
+ "notamment",
3037
+ "notre",
3038
+ "nourriture",
3039
+ "nous",
3040
+ "nouveau",
3041
+ "nouveaua\u00e9roport",
3042
+ "nouveaucin\u00e9ma",
3043
+ "nouveaulyc\u00e9e",
3044
+ "nouveaux",
3045
+ "nouvel",
3046
+ "nouvelle",
3047
+ "nov",
3048
+ "nov.",
3049
+ "novembre",
3050
+ "noy\u00e9s",
3051
+ "nse",
3052
+ "nsi",
3053
+ "nte",
3054
+ "nti",
3055
+ "ntr",
3056
+ "nts",
3057
+ "nt\u00e9",
3058
+ "nucl\u00e9aires",
3059
+ "nue",
3060
+ "nui",
3061
+ "nuire",
3062
+ "nuit",
3063
+ "nus",
3064
+ "nv.",
3065
+ "nwr",
3066
+ "ny",
3067
+ "nya",
3068
+ "nza",
3069
+ "n\u00b0",
3070
+ "n\u00e9",
3071
+ "n\u00e9e",
3072
+ "n\u00e9erlandophone",
3073
+ "n\u00e9gociations",
3074
+ "n\u00e9gocier",
3075
+ "n\u00e9pal",
3076
+ "n\u2019",
3077
+ "n\u2019est-ce",
3078
+ "o",
3079
+ "o.",
3080
+ "o.0",
3081
+ "o.O",
3082
+ "o.o",
3083
+ "o_0",
3084
+ "o_O",
3085
+ "o_o",
3086
+ "obama",
3087
+ "obi",
3088
+ "oblig\u00e9s",
3089
+ "observateur",
3090
+ "observation",
3091
+ "observatoire",
3092
+ "occasions",
3093
+ "occidentale",
3094
+ "occupy",
3095
+ "occup\u00e9e",
3096
+ "occup\u00e9es",
3097
+ "ock",
3098
+ "oct",
3099
+ "oct.",
3100
+ "octobre",
3101
+ "oc\u00e9an",
3102
+ "ode",
3103
+ "ods",
3104
+ "officiellement",
3105
+ "offshore",
3106
+ "ofs",
3107
+ "oho",
3108
+ "oid",
3109
+ "oin",
3110
+ "oir",
3111
+ "ois",
3112
+ "oiseaux",
3113
+ "oit",
3114
+ "oix",
3115
+ "ok",
3116
+ "ol.",
3117
+ "ole",
3118
+ "olf",
3119
+ "olk",
3120
+ "olof",
3121
+ "ols",
3122
+ "olympiques",
3123
+ "omar",
3124
+ "ome",
3125
+ "omm",
3126
+ "on",
3127
+ "ona",
3128
+ "onc",
3129
+ "ond",
3130
+ "one",
3131
+ "ong",
3132
+ "ons",
3133
+ "ont",
3134
+ "ontario",
3135
+ "onu",
3136
+ "ony",
3137
+ "ood",
3138
+ "oof",
3139
+ "ool",
3140
+ "ootacamund",
3141
+ "op",
3142
+ "ope",
3143
+ "opposition",
3144
+ "op\u00e9ra",
3145
+ "op\u00e9rad\u2019",
3146
+ "op\u00e9rationnelle",
3147
+ "op\u00e9rations",
3148
+ "op\u00e9r\u00e9",
3149
+ "ora",
3150
+ "ord",
3151
+ "ordre",
3152
+ "ore",
3153
+ "organisant",
3154
+ "organisation",
3155
+ "organis\u00e9",
3156
+ "ori",
3157
+ "orientale",
3158
+ "originaire",
3159
+ "origine",
3160
+ "ork",
3161
+ "orlando",
3162
+ "orm",
3163
+ "oro",
3164
+ "ors",
3165
+ "ort",
3166
+ "osa",
3167
+ "osaka",
3168
+ "ose",
3169
+ "osman",
3170
+ "oss",
3171
+ "ost",
3172
+ "os\u00e9",
3173
+ "otage",
3174
+ "ott",
3175
+ "ottawa",
3176
+ "ottoman",
3177
+ "ou",
3178
+ "oua",
3179
+ "oued",
3180
+ "ouedsmar",
3181
+ "ouest",
3182
+ "ouganda",
3183
+ "oui",
3184
+ "ouk",
3185
+ "oul",
3186
+ "oun",
3187
+ "oup",
3188
+ "our",
3189
+ "ous",
3190
+ "out",
3191
+ "ouv",
3192
+ "ouvert",
3193
+ "ouverte",
3194
+ "ouverture",
3195
+ "ouvrir",
3196
+ "ov.",
3197
+ "ove",
3198
+ "own",
3199
+ "o\u00f9",
3200
+ "o\u00fbt",
3201
+ "p",
3202
+ "p.",
3203
+ "p8P",
3204
+ "p8p",
3205
+ "pacifiques",
3206
+ "pakistan",
3207
+ "pal",
3208
+ "palestiniennes",
3209
+ "pangandaran",
3210
+ "panne",
3211
+ "papouasie",
3212
+ "par",
3213
+ "paralysant",
3214
+ "parc",
3215
+ "parczoo",
3216
+ "parczoologique",
3217
+ "parents",
3218
+ "parent\u00e8le",
3219
+ "parfois",
3220
+ "paris",
3221
+ "parish",
3222
+ "park",
3223
+ "parking",
3224
+ "parlant",
3225
+ "parlement",
3226
+ "paroisse",
3227
+ "partag\u00e9e",
3228
+ "parti",
3229
+ "participait",
3230
+ "participantes",
3231
+ "participation",
3232
+ "particuli\u00e8rement",
3233
+ "partie",
3234
+ "parties",
3235
+ "partir",
3236
+ "partis",
3237
+ "partisans",
3238
+ "partout",
3239
+ "pas",
3240
+ "passagers",
3241
+ "passant",
3242
+ "passchendaele",
3243
+ "passe",
3244
+ "passe-t-elle",
3245
+ "passe-t-il",
3246
+ "passe-t-on",
3247
+ "passer",
3248
+ "passerelle",
3249
+ "passeurs",
3250
+ "pass\u00e9es",
3251
+ "patients",
3252
+ "patrouille",
3253
+ "patton",
3254
+ "pays",
3255
+ "pechey",
3256
+ "pee",
3257
+ "pendant",
3258
+ "pense",
3259
+ "per",
3260
+ "perdre",
3261
+ "perdus",
3262
+ "permanent",
3263
+ "permet",
3264
+ "permettre",
3265
+ "persane",
3266
+ "personne",
3267
+ "personnel",
3268
+ "personnes",
3269
+ "pes",
3270
+ "petit",
3271
+ "petite",
3272
+ "petites",
3273
+ "petits",
3274
+ "peu",
3275
+ "peupl\u00e9e",
3276
+ "peut",
3277
+ "peut-\u00eatre",
3278
+ "peuvent",
3279
+ "peyton",
3280
+ "phe",
3281
+ "philippines",
3282
+ "photographies",
3283
+ "pie",
3284
+ "pied",
3285
+ "pieds",
3286
+ "piraterie",
3287
+ "piscine",
3288
+ "pistolet",
3289
+ "pistolets",
3290
+ "pital",
3291
+ "pitaux",
3292
+ "pi\u00e8ces",
3293
+ "pi\u00e9g\u00e9e",
3294
+ "place",
3295
+ "places",
3296
+ "plac\u00e9",
3297
+ "plage",
3298
+ "plageTipaza",
3299
+ "plagetipaza",
3300
+ "planifier",
3301
+ "plans",
3302
+ "plantation",
3303
+ "plantations",
3304
+ "planter",
3305
+ "ple",
3306
+ "pleut",
3307
+ "plong\u00e9",
3308
+ "plupart",
3309
+ "plus",
3310
+ "plusieurs",
3311
+ "plut\u00f4t",
3312
+ "pme",
3313
+ "point",
3314
+ "pointe",
3315
+ "points",
3316
+ "police",
3317
+ "policier",
3318
+ "policiers",
3319
+ "policlinique",
3320
+ "politique",
3321
+ "politiques",
3322
+ "polyclinique",
3323
+ "polytechnique",
3324
+ "pompe",
3325
+ "pompe\u00e0essence",
3326
+ "pon",
3327
+ "populaires",
3328
+ "population",
3329
+ "populations",
3330
+ "port",
3331
+ "port-au-prince",
3332
+ "port-soudan",
3333
+ "porte-parole",
3334
+ "ports",
3335
+ "portuaire",
3336
+ "port\u00e9e",
3337
+ "posada",
3338
+ "positionner",
3339
+ "positionn\u00e9",
3340
+ "positions",
3341
+ "possibles",
3342
+ "post",
3343
+ "poste",
3344
+ "potentiel",
3345
+ "pouds",
3346
+ "pour",
3347
+ "pourparlers",
3348
+ "pourquoi",
3349
+ "pourraient",
3350
+ "pourrait",
3351
+ "poursuit",
3352
+ "poursuivent",
3353
+ "pousse",
3354
+ "poussi\u00e8re",
3355
+ "pouvaient",
3356
+ "pouvant",
3357
+ "pouvoir",
3358
+ "pp",
3359
+ "pp.",
3360
+ "ppe",
3361
+ "pr",
3362
+ "pr.",
3363
+ "prague",
3364
+ "pre",
3365
+ "premier",
3366
+ "premi\u00e8re",
3367
+ "prend",
3368
+ "prendra",
3369
+ "prendre",
3370
+ "prenez",
3371
+ "prennent",
3372
+ "pression",
3373
+ "prier",
3374
+ "primaire",
3375
+ "primaireJilaliElYabes",
3376
+ "primairejilalielyabes",
3377
+ "primairekouba",
3378
+ "prince",
3379
+ "principale",
3380
+ "printemps",
3381
+ "pris",
3382
+ "prise",
3383
+ "prises",
3384
+ "prison",
3385
+ "priver",
3386
+ "priv\u00e9e",
3387
+ "prix",
3388
+ "probl\u00e8me",
3389
+ "processus",
3390
+ "prochain",
3391
+ "proche",
3392
+ "proches",
3393
+ "producteurs",
3394
+ "production",
3395
+ "productrice",
3396
+ "produire",
3397
+ "produisant",
3398
+ "produit",
3399
+ "produite",
3400
+ "produits",
3401
+ "professeurs",
3402
+ "professionnelle",
3403
+ "profond\u00e9ment",
3404
+ "profs",
3405
+ "programme",
3406
+ "progresser",
3407
+ "projets",
3408
+ "pronon\u00e7ait",
3409
+ "propagation",
3410
+ "propose",
3411
+ "proposition",
3412
+ "propos\u00e9",
3413
+ "propos\u00e9e",
3414
+ "propre",
3415
+ "propres",
3416
+ "prosp\u00e9rit\u00e9",
3417
+ "protection",
3418
+ "protestations",
3419
+ "protester",
3420
+ "provale",
3421
+ "provenant",
3422
+ "province",
3423
+ "provoqu\u00e9",
3424
+ "pr\u00e8s",
3425
+ "pr\u00e9alable",
3426
+ "pr\u00e9cipitations",
3427
+ "pr\u00e9f\u00e8re",
3428
+ "pr\u00e9f\u00e9rable",
3429
+ "pr\u00e9f\u00e9rence",
3430
+ "pr\u00e9paratifs",
3431
+ "pr\u00e9parer",
3432
+ "pr\u00e9par\u00e9",
3433
+ "pr\u00e9sent",
3434
+ "pr\u00e9senter",
3435
+ "pr\u00e9sent\u00e9",
3436
+ "pr\u00e9sident",
3437
+ "pr\u00e9sum\u00e9e",
3438
+ "pr\u00e9sum\u00e9es",
3439
+ "pr\u00e9sum\u00e9s",
3440
+ "pr\u00eat",
3441
+ "pr\u00eateurs",
3442
+ "pt.",
3443
+ "pte",
3444
+ "public",
3445
+ "publique",
3446
+ "publi\u00e9",
3447
+ "puis",
3448
+ "puissance",
3449
+ "puissent",
3450
+ "pus",
3451
+ "p\u00e8re",
3452
+ "p\u00e9e",
3453
+ "p\u00e9riode",
3454
+ "p\u00e9rou",
3455
+ "p\u00e9trole",
3456
+ "p\u00e9trolier",
3457
+ "p\u00e9troli\u00e8re",
3458
+ "q",
3459
+ "q.",
3460
+ "qaida",
3461
+ "qim",
3462
+ "qlq1",
3463
+ "qu",
3464
+ "qu'",
3465
+ "qu'est-ce",
3466
+ "qualit\u00e9",
3467
+ "quand",
3468
+ "quantit",
3469
+ "quarantaine",
3470
+ "quarante",
3471
+ "quartier",
3472
+ "quartiers",
3473
+ "quatre",
3474
+ "quatri\u00e8me",
3475
+ "que",
3476
+ "queensland",
3477
+ "quel",
3478
+ "quelques",
3479
+ "quelques-uns",
3480
+ "question",
3481
+ "questions",
3482
+ "queue",
3483
+ "qui",
3484
+ "qu\u00e9",
3485
+ "qu\u2019",
3486
+ "qu\u2019est-ce",
3487
+ "r",
3488
+ "r'mel",
3489
+ "r.",
3490
+ "races",
3491
+ "raf",
3492
+ "rah",
3493
+ "rahma",
3494
+ "raid",
3495
+ "railway",
3496
+ "raisons",
3497
+ "rak",
3498
+ "ral",
3499
+ "ram",
3500
+ "ramadi",
3501
+ "ramon",
3502
+ "ran",
3503
+ "raoua",
3504
+ "rapidement",
3505
+ "rapport",
3506
+ "rapporte",
3507
+ "rapports",
3508
+ "raqim",
3509
+ "ras",
3510
+ "rassembl\u00e9s",
3511
+ "rat",
3512
+ "rations",
3513
+ "rat\u00e9s",
3514
+ "ravag\u00e9",
3515
+ "ravitaillement",
3516
+ "ray",
3517
+ "rce",
3518
+ "rd'",
3519
+ "rde",
3520
+ "rdi",
3521
+ "rds",
3522
+ "rd\u2019",
3523
+ "rea",
3524
+ "rebelles",
3525
+ "reb\u00e9tiko",
3526
+ "recherches",
3527
+ "recouvert",
3528
+ "regard\u00e9e",
3529
+ "relier",
3530
+ "religieuse",
3531
+ "remise",
3532
+ "remises",
3533
+ "renaissance",
3534
+ "rencontre",
3535
+ "rendez",
3536
+ "rendez-vous",
3537
+ "rendre",
3538
+ "rendus",
3539
+ "rentrait",
3540
+ "rentrer",
3541
+ "rentr\u00e9",
3542
+ "rentr\u00e9e",
3543
+ "rep",
3544
+ "repartir",
3545
+ "repas",
3546
+ "reprise",
3547
+ "rer",
3548
+ "res",
3549
+ "responsable",
3550
+ "responsables",
3551
+ "ressemble",
3552
+ "restaurant",
3553
+ "reste",
3554
+ "rester",
3555
+ "retireraient",
3556
+ "retourn",
3557
+ "retrait",
3558
+ "retrouv\u00e9",
3559
+ "revenir",
3560
+ "revenus",
3561
+ "revivre",
3562
+ "rew",
3563
+ "rey",
3564
+ "reykjav\u00edk",
3565
+ "rez",
3566
+ "re\u00e7oit",
3567
+ "rge",
3568
+ "ria",
3569
+ "rica",
3570
+ "richard",
3571
+ "richards",
3572
+ "rie",
3573
+ "rien",
3574
+ "riennes",
3575
+ "rights",
3576
+ "rik",
3577
+ "ril",
3578
+ "rio",
3579
+ "rir",
3580
+ "ris",
3581
+ "risque",
3582
+ "rit",
3583
+ "ritchie",
3584
+ "rivage",
3585
+ "rivi\u00e8re",
3586
+ "rix",
3587
+ "riyad",
3588
+ "rka",
3589
+ "rld",
3590
+ "rli",
3591
+ "rme",
3592
+ "rne",
3593
+ "robert",
3594
+ "rodrigo",
3595
+ "roi",
3596
+ "rome",
3597
+ "ron",
3598
+ "rop",
3599
+ "roquette",
3600
+ "ros",
3601
+ "rou",
3602
+ "rouge",
3603
+ "route",
3604
+ "routes",
3605
+ "routier",
3606
+ "routiers",
3607
+ "royal",
3608
+ "royaume",
3609
+ "rps",
3610
+ "rre",
3611
+ "rri",
3612
+ "rsd",
3613
+ "rst",
3614
+ "rs\u00e9",
3615
+ "rta",
3616
+ "rte",
3617
+ "rth",
3618
+ "rti",
3619
+ "rts",
3620
+ "rue",
3621
+ "rues",
3622
+ "ruines",
3623
+ "ruisseau",
3624
+ "rum",
3625
+ "rus",
3626
+ "russes",
3627
+ "russie",
3628
+ "ruz",
3629
+ "rvi",
3630
+ "rv\u00e9",
3631
+ "rwanda",
3632
+ "r\u00e8s",
3633
+ "r\u00e9alisatrices",
3634
+ "r\u00e9cemment",
3635
+ "r\u00e9cente",
3636
+ "r\u00e9centes",
3637
+ "r\u00e9dacteurs",
3638
+ "r\u00e9duire",
3639
+ "r\u00e9duit",
3640
+ "r\u00e9e",
3641
+ "r\u00e9elle",
3642
+ "r\u00e9flexions",
3643
+ "r\u00e9formes",
3644
+ "r\u00e9fugi\u00e9s",
3645
+ "r\u00e9gion",
3646
+ "r\u00e9gionale",
3647
+ "r\u00e9gionales",
3648
+ "r\u00e9gulier",
3649
+ "r\u00e9partition",
3650
+ "r\u00e9pression",
3651
+ "r\u00e9publique",
3652
+ "r\u00e9seau",
3653
+ "r\u00e9serv\u00e9",
3654
+ "r\u00e9sidants",
3655
+ "r\u00e9sidentiel",
3656
+ "r\u00e9soudre",
3657
+ "r\u00e9union",
3658
+ "r\u00e9unis",
3659
+ "r\u00e9unissant",
3660
+ "r\u00e9v\u00e9rend",
3661
+ "r\u00eat",
3662
+ "s",
3663
+ "s'",
3664
+ "s'est-il",
3665
+ "s.",
3666
+ "sa",
3667
+ "sa7raeldjazair",
3668
+ "sabi",
3669
+ "sable",
3670
+ "sables",
3671
+ "sablette",
3672
+ "sadr",
3673
+ "safari",
3674
+ "sahafi",
3675
+ "sahara",
3676
+ "saharienne",
3677
+ "saidoun",
3678
+ "saint-amand-les-eaux",
3679
+ "saisons",
3680
+ "salafiste",
3681
+ "saldanha",
3682
+ "salim",
3683
+ "salle",
3684
+ "salledesf\u00eates",
3685
+ "salledesport",
3686
+ "samedi",
3687
+ "san",
3688
+ "sandwich",
3689
+ "sans",
3690
+ "sant",
3691
+ "sant\u00e9",
3692
+ "saoudite",
3693
+ "sarjeant",
3694
+ "sauv\u00e9",
3695
+ "savent",
3696
+ "savoir",
3697
+ "sbu",
3698
+ "schoof",
3699
+ "school",
3700
+ "sciences",
3701
+ "scolaire",
3702
+ "sculpture",
3703
+ "se",
3704
+ "sea",
3705
+ "secondaires",
3706
+ "secours",
3707
+ "sef",
3708
+ "sein",
3709
+ "selon",
3710
+ "semaine",
3711
+ "semaines",
3712
+ "semble",
3713
+ "semble-t-elle",
3714
+ "semble-t-il",
3715
+ "semble-t-on",
3716
+ "sentir",
3717
+ "sept",
3718
+ "sept.",
3719
+ "septembre",
3720
+ "ser",
3721
+ "sera",
3722
+ "seraient",
3723
+ "serait",
3724
+ "serbie",
3725
+ "sergent",
3726
+ "sert",
3727
+ "servaient",
3728
+ "servent",
3729
+ "servi",
3730
+ "service",
3731
+ "services",
3732
+ "servis",
3733
+ "ses",
3734
+ "set",
3735
+ "seul",
3736
+ "seules",
3737
+ "sez",
3738
+ "sgorbati",
3739
+ "shanghai",
3740
+ "shell",
3741
+ "sher",
3742
+ "si",
3743
+ "sia",
3744
+ "sic",
3745
+ "sident",
3746
+ "sidi",
3747
+ "sie",
3748
+ "sif",
3749
+ "signature",
3750
+ "signer",
3751
+ "sign\u00e9",
3752
+ "sikhs",
3753
+ "sila",
3754
+ "simples",
3755
+ "simplicit\u00e9",
3756
+ "sin",
3757
+ "sina\u00ef",
3758
+ "singapour",
3759
+ "single",
3760
+ "sir",
3761
+ "sit",
3762
+ "sites",
3763
+ "situ\u00e9",
3764
+ "situ\u00e9e",
3765
+ "six",
3766
+ "sixi\u00e8me",
3767
+ "si\u00e8ge",
3768
+ "ski",
3769
+ "slogans",
3770
+ "smar",
3771
+ "sme",
3772
+ "sml",
3773
+ "sniper",
3774
+ "snowzilla",
3775
+ "soci\u00e9t\u00e9",
3776
+ "soci\u00e9t\u00e9s",
3777
+ "soho",
3778
+ "soir",
3779
+ "soit",
3780
+ "sol",
3781
+ "soldats",
3782
+ "solliciterait",
3783
+ "somalie",
3784
+ "somaliens",
3785
+ "sommet",
3786
+ "somm\u00e9",
3787
+ "somptueuse",
3788
+ "son",
3789
+ "sonde",
3790
+ "sont",
3791
+ "sony",
3792
+ "sorte",
3793
+ "sortie",
3794
+ "sortir",
3795
+ "soudanais",
3796
+ "soudanaises",
3797
+ "souffl\u00e9e",
3798
+ "souffre",
3799
+ "souffrent",
3800
+ "souffrir",
3801
+ "souk",
3802
+ "soup\u00e7onn\u00e9es",
3803
+ "sources",
3804
+ "sous",
3805
+ "soutenant",
3806
+ "soutenus",
3807
+ "soutien",
3808
+ "soutienscolaire",
3809
+ "souvent",
3810
+ "space",
3811
+ "spatial",
3812
+ "spatiale",
3813
+ "sport",
3814
+ "sportifs",
3815
+ "sp\u00e9ciaux",
3816
+ "ssa",
3817
+ "sse",
3818
+ "ssi",
3819
+ "ss\u00e9",
3820
+ "st",
3821
+ "st.",
3822
+ "sta",
3823
+ "stabilit\u00e9",
3824
+ "stade",
3825
+ "stade5juillet",
3826
+ "stage",
3827
+ "standardis\u00e9",
3828
+ "staoueli",
3829
+ "star",
3830
+ "state",
3831
+ "station",
3832
+ "stationM\u00e9tro",
3833
+ "stationm\u00e9tro",
3834
+ "ste",
3835
+ "ste.",
3836
+ "stock",
3837
+ "stresse",
3838
+ "structures",
3839
+ "st\u00e9",
3840
+ "subi",
3841
+ "sud",
3842
+ "sud-africains",
3843
+ "sud-asiatique",
3844
+ "sud-est",
3845
+ "sud-ouest",
3846
+ "suffolk",
3847
+ "suggestion",
3848
+ "sugg\u00e8re",
3849
+ "suis",
3850
+ "suisse",
3851
+ "suite",
3852
+ "sujets",
3853
+ "sunday",
3854
+ "super",
3855
+ "superficie",
3856
+ "supermarch\u00e9",
3857
+ "suppose",
3858
+ "sup\u00e9rieure",
3859
+ "sur",
3860
+ "surement",
3861
+ "surtout",
3862
+ "survenu",
3863
+ "sus",
3864
+ "su\u00e8de",
3865
+ "svedbom",
3866
+ "svp",
3867
+ "swat",
3868
+ "syrie",
3869
+ "syrien",
3870
+ "syrienne",
3871
+ "syst\u00e8me",
3872
+ "s\u00e9curit\u00e9",
3873
+ "s\u00e9e",
3874
+ "s\u00e9isme",
3875
+ "s\u00e9natoriale",
3876
+ "s\u00e9n\u00e9gal",
3877
+ "s\u00e9tif",
3878
+ "s\u0153ur",
3879
+ "s\u2019",
3880
+ "s\u2019est-il",
3881
+ "t",
3882
+ "t-2",
3883
+ "t.",
3884
+ "tabli",
3885
+ "taille",
3886
+ "tait",
3887
+ "tal",
3888
+ "talentueuses",
3889
+ "talentueux",
3890
+ "talibans",
3891
+ "tamanrasset",
3892
+ "tan",
3893
+ "tangerang",
3894
+ "tant",
3895
+ "tanzanie",
3896
+ "tar",
3897
+ "tard",
3898
+ "tasmanie",
3899
+ "tat",
3900
+ "taux",
3901
+ "taxi",
3902
+ "tbi",
3903
+ "tc.",
3904
+ "tch",
3905
+ "te.",
3906
+ "technique",
3907
+ "technologie",
3908
+ "technologies",
3909
+ "tel",
3910
+ "tellement",
3911
+ "tels",
3912
+ "temps",
3913
+ "temp\u00eate",
3914
+ "tendument",
3915
+ "tenir",
3916
+ "tentatives",
3917
+ "tente",
3918
+ "tentent",
3919
+ "tenter",
3920
+ "ter",
3921
+ "termin\u00e9",
3922
+ "terrain",
3923
+ "terre",
3924
+ "terroristes",
3925
+ "tes",
3926
+ "texas",
3927
+ "textile",
3928
+ "tez",
3929
+ "tha\u00eflandaise",
3930
+ "thb",
3931
+ "thomas",
3932
+ "ths",
3933
+ "th\u00e9atre",
3934
+ "th\u00e9\u00e2trales",
3935
+ "th\u00e9\u00e2tre",
3936
+ "th\u00e9\u00e2tredeverdue",
3937
+ "ticona",
3938
+ "tie",
3939
+ "tif",
3940
+ "tim",
3941
+ "times",
3942
+ "tin",
3943
+ "tipaza",
3944
+ "tir",
3945
+ "tir\u00e9",
3946
+ "tis",
3947
+ "tit",
3948
+ "titres",
3949
+ "tna",
3950
+ "toilette",
3951
+ "tokar",
3952
+ "tokyo",
3953
+ "tombstone",
3954
+ "tommy",
3955
+ "ton",
3956
+ "tony",
3957
+ "top",
3958
+ "tor",
3959
+ "total",
3960
+ "totaux",
3961
+ "touch\u00e9es",
3962
+ "toujours",
3963
+ "tour",
3964
+ "tourisme",
3965
+ "touristique",
3966
+ "tous",
3967
+ "tout",
3968
+ "toute",
3969
+ "toutes",
3970
+ "town",
3971
+ "tr",
3972
+ "traditionnellement",
3973
+ "trafic",
3974
+ "train",
3975
+ "traitement",
3976
+ "traiter",
3977
+ "trajets",
3978
+ "tramway",
3979
+ "transf\u00e9r\u00e9",
3980
+ "transitent",
3981
+ "transport",
3982
+ "transportant",
3983
+ "transports",
3984
+ "traumatique",
3985
+ "travail",
3986
+ "travaillait",
3987
+ "travailliste",
3988
+ "travaux",
3989
+ "travers",
3990
+ "traversant",
3991
+ "traverser",
3992
+ "travers\u00e9",
3993
+ "travers\u00e9e",
3994
+ "tra\u00een\u00e9",
3995
+ "tre",
3996
+ "tremblement",
3997
+ "tribunal",
3998
+ "tribunaux",
3999
+ "triple",
4000
+ "tro",
4001
+ "trois",
4002
+ "trop",
4003
+ "troupes",
4004
+ "trouv",
4005
+ "trouvaient",
4006
+ "trouve",
4007
+ "trouvent",
4008
+ "trouver",
4009
+ "tr\u00e8s",
4010
+ "tr\u00e9",
4011
+ "tsunami",
4012
+ "tte",
4013
+ "tts",
4014
+ "ttu",
4015
+ "tuant",
4016
+ "tudiants",
4017
+ "tudier",
4018
+ "tue",
4019
+ "tuer",
4020
+ "tunis",
4021
+ "tunisie",
4022
+ "tunisoise",
4023
+ "tur",
4024
+ "turque",
4025
+ "turques",
4026
+ "tu\u00e9",
4027
+ "tu\u00e9es",
4028
+ "tu\u00e9s",
4029
+ "tynychbek",
4030
+ "type",
4031
+ "typhon",
4032
+ "tyr",
4033
+ "t\u00e9e",
4034
+ "t\u00e9l\u00e9command\u00e9es",
4035
+ "t\u00e9l\u00e9vision",
4036
+ "t\u00e9moins",
4037
+ "t\u00e9o",
4038
+ "t\u00e9s",
4039
+ "t\u00eate",
4040
+ "t\u00f4t",
4041
+ "u",
4042
+ "u.",
4043
+ "uan",
4044
+ "uar",
4045
+ "uay",
4046
+ "uba",
4047
+ "ubi",
4048
+ "ubs",
4049
+ "ude",
4050
+ "udi",
4051
+ "uds",
4052
+ "ued",
4053
+ "uel",
4054
+ "uer",
4055
+ "ues",
4056
+ "uet",
4057
+ "uge",
4058
+ "ug\u00e9",
4059
+ "uis",
4060
+ "uit",
4061
+ "uke",
4062
+ "ukrainien",
4063
+ "ule",
4064
+ "ul\u00e9",
4065
+ "ume",
4066
+ "un",
4067
+ "und",
4068
+ "une",
4069
+ "uni",
4070
+ "unies",
4071
+ "uniforme",
4072
+ "union",
4073
+ "unique",
4074
+ "universit",
4075
+ "universitaire",
4076
+ "university",
4077
+ "universit\u00e9",
4078
+ "universit\u00e9Alger1",
4079
+ "universit\u00e9alger1",
4080
+ "universit\u00e9colombia",
4081
+ "universit\u00e9s",
4082
+ "uns",
4083
+ "uoi",
4084
+ "upe",
4085
+ "upy",
4086
+ "ure",
4087
+ "urgence",
4088
+ "urn",
4089
+ "urs",
4090
+ "uruguay",
4091
+ "ur\u00e9",
4092
+ "usa",
4093
+ "use",
4094
+ "usthb",
4095
+ "us\u00e9",
4096
+ "ute",
4097
+ "uth",
4098
+ "uti",
4099
+ "utilisant",
4100
+ "utilis\u00e9",
4101
+ "ut\u00e9",
4102
+ "uve",
4103
+ "uv\u00e9",
4104
+ "uxe",
4105
+ "u\u00e9e",
4106
+ "u\u00e9s",
4107
+ "v",
4108
+ "v.",
4109
+ "v.v",
4110
+ "v_v",
4111
+ "va",
4112
+ "vague",
4113
+ "vais",
4114
+ "val",
4115
+ "valider",
4116
+ "valley",
4117
+ "vall\u00e9e",
4118
+ "vao",
4119
+ "vaste",
4120
+ "vec",
4121
+ "veille",
4122
+ "vel",
4123
+ "vendeur",
4124
+ "vendra",
4125
+ "vendredi",
4126
+ "vendu",
4127
+ "vente",
4128
+ "ventes",
4129
+ "vents",
4130
+ "ver",
4131
+ "verdure",
4132
+ "vers",
4133
+ "vert",
4134
+ "ves",
4135
+ "veut",
4136
+ "veux",
4137
+ "victime",
4138
+ "victoria",
4139
+ "vie",
4140
+ "viendrez",
4141
+ "viennent",
4142
+ "village",
4143
+ "ville",
4144
+ "villes",
4145
+ "vingt",
4146
+ "violence",
4147
+ "violente",
4148
+ "virginie",
4149
+ "virus",
4150
+ "vis",
4151
+ "visant",
4152
+ "visibilit\u00e9",
4153
+ "visite",
4154
+ "visitent",
4155
+ "visiter",
4156
+ "visiteurs",
4157
+ "vista",
4158
+ "viv",
4159
+ "vivant",
4160
+ "vivre",
4161
+ "voe",
4162
+ "voir",
4163
+ "vois",
4164
+ "voisin",
4165
+ "voisinage",
4166
+ "voiture",
4167
+ "voitures",
4168
+ "vol",
4169
+ "vol.",
4170
+ "volailles",
4171
+ "volant",
4172
+ "volontaires",
4173
+ "vols",
4174
+ "votre",
4175
+ "vous",
4176
+ "voyage",
4177
+ "voyageait",
4178
+ "voyageant",
4179
+ "voyageurs",
4180
+ "vr.",
4181
+ "vraiment",
4182
+ "vre",
4183
+ "vu",
4184
+ "vue",
4185
+ "v\u00e4sternorrland",
4186
+ "v\u00e9e",
4187
+ "v\u00e9hicule",
4188
+ "v\u00e9hicules",
4189
+ "v\u00e9hicul\u00e9",
4190
+ "v\u00e9rification",
4191
+ "v\u00e9s",
4192
+ "v\u00edk",
4193
+ "w",
4194
+ "w.",
4195
+ "wallace",
4196
+ "warner",
4197
+ "washington",
4198
+ "wat",
4199
+ "watch",
4200
+ "way",
4201
+ "week",
4202
+ "wei",
4203
+ "wen",
4204
+ "western",
4205
+ "wick",
4206
+ "wide",
4207
+ "wilaya",
4208
+ "william",
4209
+ "williams",
4210
+ "wolverhampton",
4211
+ "woolworths",
4212
+ "world",
4213
+ "wrentham",
4214
+ "x",
4215
+ "x'",
4216
+ "x'xxx",
4217
+ "x'xxx-xx",
4218
+ "x-x-xx",
4219
+ "x-x-xxxx",
4220
+ "x.",
4221
+ "x.X",
4222
+ "x.d",
4223
+ "x.x",
4224
+ "x.x.",
4225
+ "xD",
4226
+ "xDD",
4227
+ "xX",
4228
+ "xXX",
4229
+ "x_X",
4230
+ "x_d",
4231
+ "x_x",
4232
+ "xan",
4233
+ "xas",
4234
+ "xd",
4235
+ "xdd",
4236
+ "xes",
4237
+ "xte",
4238
+ "xx",
4239
+ "xx'",
4240
+ "xx'xxx-xx",
4241
+ "xx-xxxx",
4242
+ "xx.",
4243
+ "xx.dd",
4244
+ "xxdxxxx",
4245
+ "xxx",
4246
+ "xxx-x-xx",
4247
+ "xxx-x-xxxx",
4248
+ "xxx-xx",
4249
+ "xxx-xxx",
4250
+ "xxx-xxxx",
4251
+ "xxx.",
4252
+ "xxxd",
4253
+ "xxxx",
4254
+ "xxxx'",
4255
+ "xxxx'xxx",
4256
+ "xxxx-d",
4257
+ "xxxx-dd",
4258
+ "xxxx-x-xx",
4259
+ "xxxx-x-xxxx",
4260
+ "xxxx-xx",
4261
+ "xxxx-xx-xxx",
4262
+ "xxxx-xx-xxxx",
4263
+ "xxxx-xxx",
4264
+ "xxxx-xxx-xxxx",
4265
+ "xxxx-xxxx",
4266
+ "xxxx-xxxx-xxx-xxxx",
4267
+ "xxxx.",
4268
+ "xxxx://x.xx/xXxXXdXxdX",
4269
+ "xxxx://x.xx/xxxxdxxdx",
4270
+ "xxxxXXXX",
4271
+ "xxxxXxxxx",
4272
+ "xxxxXxxxxXxXxxxx",
4273
+ "xxxxXxxxxXxxxx",
4274
+ "xxxxXxxxxd",
4275
+ "xxxxd",
4276
+ "xxxxddd",
4277
+ "xxxxdxxxx",
4278
+ "xxxx\u2019",
4279
+ "xxxx\u2019xxx",
4280
+ "xx\u2019",
4281
+ "xx\u2019xxx-xx",
4282
+ "x\u00b0",
4283
+ "x\u2019",
4284
+ "x\u2019xxx-xx",
4285
+ "x\ufe35x",
4286
+ "y",
4287
+ "y.",
4288
+ "ya",
4289
+ "yabes",
4290
+ "yad",
4291
+ "yal",
4292
+ "yan",
4293
+ "yarraman",
4294
+ "yen",
4295
+ "yev",
4296
+ "york",
4297
+ "younis",
4298
+ "youssef",
4299
+ "ype",
4300
+ "y\u00e9men",
4301
+ "y\u00e9s",
4302
+ "z",
4303
+ "z.",
4304
+ "zambie",
4305
+ "zar",
4306
+ "zemirli",
4307
+ "zes",
4308
+ "zimbabwe",
4309
+ "zimbabw\u00e9en",
4310
+ "ziradatown",
4311
+ "ziralda",
4312
+ "ziraldaville",
4313
+ "zone",
4314
+ "zones",
4315
+ "zoo",
4316
+ "zoologique",
4317
+ "zrhouni",
4318
+ "zur",
4319
+ "|",
4320
+ "}",
4321
+ "\u00a0",
4322
+ "\u00ac",
4323
+ "\u00ac_\u00ac",
4324
+ "\u00af",
4325
+ "\u00af\\(x)/\u00af",
4326
+ "\u00af\\(\u30c4)/\u00af",
4327
+ "\u00b0",
4328
+ "\u00b0C.",
4329
+ "\u00b0F.",
4330
+ "\u00b0K.",
4331
+ "\u00b0X.",
4332
+ "\u00b0c.",
4333
+ "\u00b0f.",
4334
+ "\u00b0k.",
4335
+ "\u00b0x.",
4336
+ "\u00c0",
4337
+ "\u00c7",
4338
+ "\u00c7a",
4339
+ "\u00c9",
4340
+ "\u00c9cole",
4341
+ "\u00c9tat",
4342
+ "\u00c9tats",
4343
+ "\u00c9tats-Unis",
4344
+ "\u00e0",
4345
+ "\u00e2",
4346
+ "\u00e2ge",
4347
+ "\u00e2g\u00e9",
4348
+ "\u00e2g\u00e9es",
4349
+ "\u00e2ts",
4350
+ "\u00e4",
4351
+ "\u00e4.",
4352
+ "\u00e7",
4353
+ "\u00e7a",
4354
+ "\u00e7on",
4355
+ "\u00e8ce",
4356
+ "\u00e8de",
4357
+ "\u00e8ge",
4358
+ "\u00e8le",
4359
+ "\u00e8me",
4360
+ "\u00e8ne",
4361
+ "\u00e8re",
4362
+ "\u00e8te",
4363
+ "\u00e9",
4364
+ "\u00e9an",
4365
+ "\u00e9c.",
4366
+ "\u00e9chapper",
4367
+ "\u00e9chec",
4368
+ "\u00e9cole",
4369
+ "\u00e9coledelangue",
4370
+ "\u00e9colelangue",
4371
+ "\u00e9cossaises",
4372
+ "\u00e9cosyst\u00e8mes",
4373
+ "\u00e9cras\u00e9",
4374
+ "\u00e9ducation",
4375
+ "\u00e9d\u00e9",
4376
+ "\u00e9en",
4377
+ "\u00e9er",
4378
+ "\u00e9es",
4379
+ "\u00e9galement",
4380
+ "\u00e9j\u00e0",
4381
+ "\u00e9largir",
4382
+ "\u00e9lections",
4383
+ "\u00e9lev\u00e9",
4384
+ "\u00e9ligibles",
4385
+ "\u00e9lo",
4386
+ "\u00e9loign\u00e9es",
4387
+ "\u00e9ma",
4388
+ "\u00e9meute",
4389
+ "\u00e9mission",
4390
+ "\u00e9pid\u00e9mie",
4391
+ "\u00e9pique",
4392
+ "\u00e9quipe",
4393
+ "\u00e9quipes",
4394
+ "\u00e9ra",
4395
+ "\u00e9ro",
4396
+ "\u00e9r\u00e9",
4397
+ "\u00e9taient",
4398
+ "\u00e9tait",
4399
+ "\u00e9tat",
4400
+ "\u00e9tats",
4401
+ "\u00e9tats-unis",
4402
+ "\u00e9tend",
4403
+ "\u00e9tendant",
4404
+ "\u00e9thiopiennes",
4405
+ "\u00e9trangers",
4406
+ "\u00e9trang\u00e8res",
4407
+ "\u00e9tudes",
4408
+ "\u00e9tudiants",
4409
+ "\u00e9t\u00e9",
4410
+ "\u00e9vacuation",
4411
+ "\u00e9vacuer",
4412
+ "\u00e9vacu\u00e9e",
4413
+ "\u00e9viter",
4414
+ "\u00e9vr",
4415
+ "\u00e9v\u00e9nements",
4416
+ "\u00ea",
4417
+ "\u00eame",
4418
+ "\u00eate",
4419
+ "\u00eatre",
4420
+ "\u00eat\u00e9",
4421
+ "\u00ee",
4422
+ "\u00eele",
4423
+ "\u00eeles",
4424
+ "\u00een\u00e9",
4425
+ "\u00eete",
4426
+ "\u00efti",
4427
+ "\u00f4le",
4428
+ "\u00f4l\u00e9",
4429
+ "\u00f4te",
4430
+ "\u00f6",
4431
+ "\u00f6.",
4432
+ "\u00fbl\u00e9",
4433
+ "\u00fc",
4434
+ "\u00fc.",
4435
+ "\u0153uf",
4436
+ "\u0153ur",
4437
+ "\u0ca0",
4438
+ "\u0ca0_\u0ca0",
4439
+ "\u0ca0\ufe35\u0ca0",
4440
+ "\u2014",
4441
+ "\u2019",
4442
+ "\u2019-(",
4443
+ "\u2019-)",
4444
+ "\u2019\u2019",
4445
+ "\u2501",
4446
+ "\u253b",
4447
+ "\u253b\u2501\u253b",
4448
+ "\u256f",
4449
+ "\u25a1",
4450
+ "\ufe35",
4451
+ "\uff09",
4452
+ "\ufffd"
4453
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }