Comment: | merge trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | gcerw |
Files: | files | file ages | folders |
SHA3-256: |
607a6d50af487547a7598dd1cf32aff4 |
User & Date: | olr on 2020-05-09 17:21:39 |
Other Links: | branch diff | manifest | tags |
2020-06-23
| ||
15:11 | merge trunk check-in: c528ff0075 user: olr tags: gcerw | |
2020-05-09
| ||
17:21 | merge trunk check-in: 607a6d50af user: olr tags: gcerw | |
15:21 | [fr] remaniements des pronoms associés, +ajustements et faux positifs [core] remove legacy code check-in: fe3d698598 user: olr tags: trunk, fr, core | |
2020-04-18
| ||
16:16 | merge trunk check-in: 9178b9116a user: olr tags: gcerw | |
Modified compile_rules.py from [cec64f3971] to [2eab7cde58].
︙ | ︙ | |||
135 136 137 138 139 140 141 | return 0 def createRule (s, nIdLine, sLang, bParagraph, dOptPriority): "returns rule as list [option name, regex, bCaseInsensitive, identifier, list of actions]" global dJSREGEXES | | | | | | | | | | | | | | | | | | | | | 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | return 0 def createRule (s, nIdLine, sLang, bParagraph, dOptPriority): "returns rule as list [option name, regex, bCaseInsensitive, identifier, list of actions]" global dJSREGEXES sLineId = f"#{nIdLine}" + ("p" if bParagraph else "s") sRuleId = sLineId #### GRAPH CALL if s.startswith("@@@@"): if bParagraph: print("Error. Graph call can be made only after the first pass (sentence by sentence)") exit() return ["@@@@", s[4:], sLineId] #### OPTIONS sOption = "" # empty string or [a-z0-9]+ name nPriority = 4 # Default is 4, value must be between 0 and 9 tGroups = None # code for groups positioning (only useful for JavaScript) cCaseMode = 'i' # i: case insensitive, s: case sensitive, u: uppercasing allowed cWordLimitLeft = '[' # [: word limit, <: no specific limit cWordLimitRight = ']' # ]: word limit, >: no specific limit m = re.match("^__(?P<borders_and_case>[\\[<]\\w[\\]>])(?P<option>/[a-zA-Z0-9]+|)(?P<ruleid>\\(\\w+\\))(?P<priority>![0-9]|)__ *", s) if m: cWordLimitLeft = m.group('borders_and_case')[0] cCaseMode = m.group('borders_and_case')[1] cWordLimitRight = m.group('borders_and_case')[2] sOption = m.group('option')[1:] if m.group('option') else "" sRuleId = m.group('ruleid')[1:-1] if sRuleId in aRULESET: print(f"# Error. Several rules have the same id: {sRuleId}") exit() aRULESET.add(sRuleId) nPriority = dOptPriority.get(sOption, 4) if m.group('priority'): nPriority = int(m.group('priority')[1:]) s = s[m.end(0):] else: print(f"# Warning. Rule wrongly shaped at line: {sLineId}") exit() #### REGEX TRIGGER i = s.find(" <<-") if i == -1: print(f"# Error: no condition at line {sLineId}") return None sRegex = s[:i].strip() s = s[i+4:] # JS groups positioning codes m = re.search("@@\\S+", sRegex) if m: tGroups = jsconv.groupsPositioningCodeToList(sRegex[m.start()+2:]) sRegex = sRegex[:m.start()].strip() # JS regex m = re.search("<js>.+</js>i?", sRegex) if m: dJSREGEXES[sLineId] = m.group(0) sRegex = sRegex[:m.start()].strip() if "<js>" in sRegex or "</js>" in sRegex: print(f"# Error: JavaScript regex not delimited at line {sLineId}") return None # quotes ? if sRegex.startswith('"') and sRegex.endswith('"'): sRegex = sRegex[1:-1] ## definitions for sDef, sRepl in dDEFINITIONS.items(): sRegex = sRegex.replace(sDef, sRepl) ## count number of groups (must be done before modifying the regex) nGroup = countGroupInRegex(sRegex) if nGroup > 0: if not tGroups: print(f"# Warning: groups positioning code for JavaScript should be defined at line {sLineId}") else: if nGroup != len(tGroups): print(f"# Error: groups positioning code irrelevant at line {sLineId}") ## word limit if cWordLimitLeft == '[' and not sRegex.startswith(("^", '’', "'", ",")): sRegex = sWORDLIMITLEFT + sRegex if cWordLimitRight == ']' and not sRegex.endswith(("$", '’', "'", ",")): sRegex = sRegex + sWORDLIMITRIGHT ## casing mode if cCaseMode == "i": bCaseInsensitive = True if not sRegex.startswith("(?i)"): sRegex = "(?i)" + sRegex elif cCaseMode == "s": bCaseInsensitive = False sRegex = sRegex.replace("(?i)", "") elif cCaseMode == "u": bCaseInsensitive = False sRegex = sRegex.replace("(?i)", "") sRegex = uppercase(sRegex, sLang) else: print(f"# Unknown case mode [{cCaseMode}] at line {sLineId}") ## check regex try: re.compile(sRegex) except re.error: print(f"# Regex error at line {sLineId}") print(sRegex) return None ## groups in non grouping parenthesis for _ in re.finditer(r"\(\?:[^)]*\([\[\w -]", sRegex): print(f"# Warning: groups inside non grouping parenthesis in regex at line {sLineId}") #### PARSE ACTIONS lActions = [] nAction = 1 for sAction in s.split(" <<- "): t = createAction(sRuleId + "_" + str(nAction), sAction, nGroup) nAction += 1 if t: lActions.append(t) if not lActions: return None return [sOption, sRegex, bCaseInsensitive, sLineId, sRuleId, nPriority, lActions, tGroups] def checkReferenceNumbers (sText, sActionId, nToken): "check if token references in <sText> greater than <nToken> (debugging)" for x in re.finditer(r"\\(\d+)", sText): if int(x.group(1)) > nToken: print(f"# Error in token index at line {sActionId} ({nToken} tokens only)") print(sText) def checkIfThereIsCode (sText, sActionId): "check if there is code in <sText> (debugging)" if re.search("[.]\\w+[(]|sugg\\w+[(]|\\([0-9]|\\[[0-9]", sText): print(f"# Warning at line {sActionId}: This message looks like code. Line should probably begin with =") print(sText) def createAction (sIdAction, sAction, nGroup): "returns an action to perform as a tuple (condition, action type, action[, iGroup [, message, URL ]])" m = re.search(r"([-~=>])(\d*|)>>", sAction) if not m: print(f"# No action at line {sIdAction}") return None #### CONDITION sCondition = sAction[:m.start()].strip() if sCondition: sCondition = prepareFunction(sCondition) lFUNCTIONS.append(("_c_"+sIdAction, sCondition)) checkReferenceNumbers(sCondition, sIdAction, nGroup) if ".match" in sCondition: print("# Error. JS compatibility. Don't use .match() in condition, use .search()") sCondition = "_c_"+sIdAction else: sCondition = None #### iGroup / positioning iGroup = int(m.group(2)) if m.group(2) else 0 if iGroup > nGroup: print(f"# Selected group > group number in regex at line {sIdAction}") #### ACTION sAction = sAction[m.end():].strip() cAction = m.group(1) if cAction == "-": ## error iMsg = sAction.find(" && ") if iMsg == -1: sMsg = "# Error. Error message not found." sURL = "" print(f"# No message. Action id: {sIdAction}") else: sMsg = sAction[iMsg+4:].strip() sAction = sAction[:iMsg].strip() sURL = "" mURL = re.search("[|] *(https?://.*)", sMsg) if mURL: sURL = mURL.group(1).strip() sMsg = sMsg[:mURL.start(0)].strip() checkReferenceNumbers(sMsg, sIdAction, nGroup) |
︙ | ︙ | |||
333 334 335 336 337 338 339 | checkIfThereIsCode(sAction, sIdAction) if cAction == ">": ## no action, break loop if condition is False return [sCondition, cAction, ""] if not sAction: | | | | | | | | > > > > > > > > > > > > | 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | checkIfThereIsCode(sAction, sIdAction) if cAction == ">": ## no action, break loop if condition is False return [sCondition, cAction, ""] if not sAction: print(f"# Error in action at line {sIdAction}: This action is empty.") return None if cAction == "-": ## error detected --> suggestion if sAction[0:1] == "=": lFUNCTIONS.append(("_s_"+sIdAction, sAction[1:])) sAction = "=_s_"+sIdAction elif sAction.startswith('"') and sAction.endswith('"'): sAction = sAction[1:-1] if not sMsg: print(f"# Error in action at line {sIdAction}: the message is empty.") return [sCondition, cAction, sAction, iGroup, sMsg, sURL] if cAction == "~": ## text processor if sAction[0:1] == "=": lFUNCTIONS.append(("_p_"+sIdAction, sAction[1:])) sAction = "=_p_"+sIdAction elif sAction.startswith('"') and sAction.endswith('"'): sAction = sAction[1:-1] return [sCondition, cAction, sAction, iGroup] if cAction == "=": ## disambiguator if sAction[0:1] == "=": sAction = sAction[1:] if "define" in sAction and not re.search(r"define\(dTokenPos, *m\.start.*, \[.*\] *\)", sAction): print(f"# Error in action at line {sIdAction}: second argument for define must be a list of strings") print(sAction) lFUNCTIONS.append(("_d_"+sIdAction, sAction)) sAction = "_d_"+sIdAction return [sCondition, cAction, sAction] print(f"# Unknown action at line {sIdAction}") return None def _calcRulesStats (lRules): "count rules and actions" d = {'=':0, '~': 0, '-': 0, '>': 0} for aRule in lRules: if aRule[0] != "@@@@": for aAction in aRule[6]: d[aAction[1]] = d[aAction[1]] + 1 return (d, len(lRules)) def displayStats (lParagraphRules, lSentenceRules): "display rules numbers" print(" {:>18} {:>18} {:>18} {:>18}".format("DISAMBIGUATOR", "TEXT PROCESSOR", "GRAMMAR CHECKING", "REGEX")) d, nRule = _calcRulesStats(lParagraphRules) print(" paragraph: {:>10} actions {:>10} actions {:>10} actions in {:>8} rules".format(d['='], d['~'], d['-'], nRule)) d, nRule = _calcRulesStats(lSentenceRules) print(" sentence: {:>10} actions {:>10} actions {:>10} actions in {:>8} rules".format(d['='], d['~'], d['-'], nRule)) def mergeRulesByOption (lRules): "returns a list of tuples [option, list of rules] keeping the rules order" lFinal = [] lTemp = [] sOption = None for aRule in lRules: if aRule[0] != sOption: if sOption is not None: lFinal.append([sOption, lTemp]) # new tuple sOption = aRule[0] lTemp = [] lTemp.append(aRule[1:]) lFinal.append([sOption, lTemp]) return lFinal def createRulesAsString (lRules): "create rules as a string of arrays (to be bundled in a JSON string)" sArray = "[\n" for sOption, aRuleGroup in lRules: sArray += f' ["{sOption}", [\n' for aRule in aRuleGroup: sArray += f' {aRule},\n' sArray += " ]],\n" sArray += "]" return sArray def prepareOptions (lOptionLines): "returns a dictionary with data about options" sLang = "" sDefaultUILang = "" lStructOpt = [] lOpt = [] |
︙ | ︙ | |||
464 465 466 467 468 469 470 | def printBookmark (nLevel, sComment, nLine): "print bookmark within the rules file" print(" {:>6}: {}".format(nLine, " " * nLevel + sComment)) | | | | > | > | | | 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 | def printBookmark (nLevel, sComment, nLine): "print bookmark within the rules file" print(" {:>6}: {}".format(nLine, " " * nLevel + sComment)) def make (spLang, sLang, bUseCache=None): "compile rules, returns a dictionary of values" # for clarity purpose, don’t create any file here (except cache) dCacheVars = None if os.path.isfile("_build/data_cache.json"): print("> data cache found") sJSON = open("_build/data_cache.json", "r", encoding="utf-8").read() dCacheVars = json.loads(sJSON) sBuildDate = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(dCacheVars.get("fBuildTime", 0))) if bUseCache: print("> use cache (no rebuild asked)") print(" build made at: " + sBuildDate) return dCacheVars print("> read rules file...") try: sFileContent = open(spLang + "/rules.grx", 'r', encoding="utf-8").read() except OSError: print(f"# Error. Rules file in project <{sLang}> not found.") exit() # calculate hash of loaded file xHasher = hashlib.new("sha3_512") xHasher.update(sFileContent.encode("utf-8")) sFileHash = xHasher.hexdigest() if dCacheVars and bUseCache != False and sFileHash == dCacheVars.get("sFileHash", ""): # if <bUseCache> is None or True, we can use the cache print("> cache hash identical to file hash, use cache") print(" build made at: " + sBuildDate) return dCacheVars # removing comments, zeroing empty lines, creating definitions, storing tests, merging rule lines print(" parsing rules...") fBuildTime = time.time() lRuleLine = [] lTest = [] lOpt = [] bGraph = False lGraphRule = [] for i, sLine in enumerate(sFileContent.split("\n"), 1): if sLine.startswith('#END'): # arbitrary end printBookmark(0, "BREAK BY #END", i) break elif sLine.startswith(("#", " ##")): # comment pass elif sLine.startswith("DEF:"): # definition m = re.match("DEF: +([a-zA-Z_][a-zA-Z_0-9]*) +(.+)$", sLine.strip()) if m: dDEFINITIONS["{"+m.group(1)+"}"] = m.group(2) else: print("# Error in definition: ", end="") print(sLine.strip()) elif sLine.startswith("DECL:"): # declensions m = re.match(r"DECL: +(\+\w+) (.+)$", sLine.strip()) if m: dDECLENSIONS[m.group(1)] = m.group(2).strip().split() else: |
︙ | ︙ | |||
624 625 626 627 628 629 630 | elif sFuncName.startswith("_s_"): # suggestion sParams = "sSentence, m" elif sFuncName.startswith("_p_"): # preprocessor sParams = "sSentence, m" elif sFuncName.startswith("_d_"): # disambiguator sParams = "sSentence, m, dTokenPos" else: | | | | | | | | 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 | elif sFuncName.startswith("_s_"): # suggestion sParams = "sSentence, m" elif sFuncName.startswith("_p_"): # preprocessor sParams = "sSentence, m" elif sFuncName.startswith("_d_"): # disambiguator sParams = "sSentence, m, dTokenPos" else: print(f"# Unknown function type in <{sFuncName}>") continue # Python sPyCallables += f"def {sFuncName} ({sParams}):\n" sPyCallables += f" return {sReturn}\n" # JavaScript sJSCallables += f" {sFuncName}: function ({sParams}) {{\n" sJSCallables += " return " + jsconv.py2js(sReturn) + ";\n" sJSCallables += " },\n" displayStats(lParagraphRules, lSentenceRules) dVars = { "fBuildTime": fBuildTime, "sFileHash": sFileHash, "callables": sPyCallables, "callablesJS": sJSCallables, "gctests": sGCTests, "gctestsJS": sGCTestsJS, "paragraph_rules": createRulesAsString(mergeRulesByOption(lParagraphRules)), "sentence_rules": createRulesAsString(mergeRulesByOption(lSentenceRules)), "paragraph_rules_JS": jsconv.writeRulesToJSArray(mergeRulesByOption(lParagraphRulesJS)), "sentence_rules_JS": jsconv.writeRulesToJSArray(mergeRulesByOption(lSentenceRulesJS)) } dVars.update(dOptions) # compile graph rules dVars2 = crg.make(lGraphRule, sLang, dDEFINITIONS, dDECLENSIONS, dOptPriority) dVars.update(dVars2) with open("_build/data_cache.json", "w", encoding="utf-8") as hDst: hDst.write(json.dumps(dVars, ensure_ascii=False)) return dVars |
Modified compile_rules_graph.py from [07d8ba5d53] to [a158723aa9].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """ Grammalecte: compile rules Create a Direct Acyclic Rule Graphs (DARGs) """ import re import os import time import concurrent.futures import darg import compile_rules_js_convert as jsconv #### PROCESS POOL EXECUTOR #### xProcessPoolExecutor = None def initProcessPoolExecutor (nMultiCPU=None): "process pool executor initialisation" | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | """ Grammalecte: compile rules Create a Direct Acyclic Rule Graphs (DARGs) """ import re import os import time import concurrent.futures import darg import compile_rules_js_convert as jsconv import helpers #### PROCESS POOL EXECUTOR #### xProcessPoolExecutor = None def initProcessPoolExecutor (nMultiCPU=None): "process pool executor initialisation" |
︙ | ︙ | |||
52 53 54 55 56 57 58 59 60 61 62 63 64 65 | sCode = re.sub(r"\b(morph|analyse|tag|value)\(<(\d+)", 'g_\\1(g_token(lToken, nTokenOffset+1-\\2)', sCode) # previous token sCode = re.sub(r"\bspell *[(]", '_oSpellChecker.isValid(', sCode) sCode = re.sub(r"\bbefore\(\s*", 'look(sSentence[:lToken[1+nTokenOffset]["nStart"]], ', sCode) # before(sCode) sCode = re.sub(r"\bafter\(\s*", 'look(sSentence[lToken[nLastToken]["nEnd"]:], ', sCode) # after(sCode) sCode = re.sub(r"\bbefore0\(\s*", 'look(sSentence0[:lToken[1+nTokenOffset]["nStart"]], ', sCode) # before0(sCode) sCode = re.sub(r"\bafter0\(\s*", 'look(sSentence[lToken[nLastToken]["nEnd"]:], ', sCode) # after0(sCode) sCode = re.sub(r"\banalyseWord[(]", 'analyse(', sCode) sCode = re.sub(r"[\\](\d+)", 'lToken[nTokenOffset+\\1]["sValue"]', sCode) sCode = re.sub(r"[\\]-(\d+)", 'lToken[nLastToken-\\1+1]["sValue"]', sCode) sCode = re.sub(r">1", 'lToken[nLastToken+1]["sValue"]', sCode) sCode = re.sub(r"<1", 'lToken[nTokenOffset]["sValue"]', sCode) return sCode | > | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | sCode = re.sub(r"\b(morph|analyse|tag|value)\(<(\d+)", 'g_\\1(g_token(lToken, nTokenOffset+1-\\2)', sCode) # previous token sCode = re.sub(r"\bspell *[(]", '_oSpellChecker.isValid(', sCode) sCode = re.sub(r"\bbefore\(\s*", 'look(sSentence[:lToken[1+nTokenOffset]["nStart"]], ', sCode) # before(sCode) sCode = re.sub(r"\bafter\(\s*", 'look(sSentence[lToken[nLastToken]["nEnd"]:], ', sCode) # after(sCode) sCode = re.sub(r"\bbefore0\(\s*", 'look(sSentence0[:lToken[1+nTokenOffset]["nStart"]], ', sCode) # before0(sCode) sCode = re.sub(r"\bafter0\(\s*", 'look(sSentence[lToken[nLastToken]["nEnd"]:], ', sCode) # after0(sCode) sCode = re.sub(r"\banalyseWord[(]", 'analyse(', sCode) sCode = re.sub(r"\bcheckAgreement[(]\\(\d+), *\\(\d+)", 'g_checkAgreement(lToken[nTokenOffset+\\1], lToken[nTokenOffset+\\2]', sCode) sCode = re.sub(r"[\\](\d+)", 'lToken[nTokenOffset+\\1]["sValue"]', sCode) sCode = re.sub(r"[\\]-(\d+)", 'lToken[nLastToken-\\1+1]["sValue"]', sCode) sCode = re.sub(r">1", 'lToken[nLastToken+1]["sValue"]', sCode) sCode = re.sub(r"<1", 'lToken[nTokenOffset]["sValue"]', sCode) return sCode |
︙ | ︙ | |||
178 179 180 181 182 183 184 | else: lToken.append(sToken) return lToken def createGraphAndActions (self, lRuleLine): "create a graph as a dictionary with <lRuleLine>" fStartTimer = time.time() | | | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | else: lToken.append(sToken) return lToken def createGraphAndActions (self, lRuleLine): "create a graph as a dictionary with <lRuleLine>" fStartTimer = time.time() print("{:>8,} rules in {:<30} ".format(len(lRuleLine), f"<{self.sGraphName}|{self.sGraphCode}>"), end="") lPreparedRule = [] for i, sRuleName, sTokenLine, iActionBlock, lActions, nPriority in lRuleLine: for aRule in self.createRule(i, sRuleName, sTokenLine, iActionBlock, lActions, nPriority): lPreparedRule.append(aRule) # Debugging if False: print("\nRULES:") |
︙ | ︙ | |||
233 234 235 236 237 238 239 | iGroup += 1 dPos[iGroup] = i + 1 # we add 1, for we count tokens from 1 to n (not from 0) # Parse actions for iAction, (iActionLine, sAction) in enumerate(lActions, 1): sAction = sAction.strip() if sAction: | | | > > > > | | | 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | iGroup += 1 dPos[iGroup] = i + 1 # we add 1, for we count tokens from 1 to n (not from 0) # Parse actions for iAction, (iActionLine, sAction) in enumerate(lActions, 1): sAction = sAction.strip() if sAction: sActionId = f"{self.sGraphCode}__{sRuleName}__b{iActionBlock}_a{iAction}" aAction = self.createAction(sActionId, sAction, nPriority, len(lToken), dPos, iActionLine) if aAction: sActionName = self.storeAction(sActionId, aAction) lResult = list(lToken) lResult.extend(["##"+str(iLine), sActionName]) #if iLine == 13341: # print(" ".join(lToken)) # print(sActionId, aAction) yield lResult else: print("# Error on action at line:", iLine) print(sTokenLine, "\n", lActions) exit() else: print("No action found for ", iActionLine) exit() def createAction (self, sActionId, sAction, nPriority, nToken, dPos, iActionLine): "create action rule as a list" sLineId = "#" + str(iActionLine) # Option sOption = False m = re.match("/(\\w+)/", sAction) if m: sOption = m.group(1) sAction = sAction[m.end():].strip() if nPriority == -1: nPriority = self.dOptPriority.get(sOption, 4) # valid action? m = re.search(r"(?P<action>[-=~/!>])(?P<start>-?\d+\.?|)(?P<end>:\.?-?\d+|)(?P<casing>:|)>>", sAction) if not m: print("\n# Error. No action found at: ", sLineId, sActionId) exit() # Condition sCondition = sAction[:m.start()].strip() if sCondition: sCondition = changeReferenceToken(sCondition, dPos) sCondition = self.createFunction("cond", sCondition) else: |
︙ | ︙ | |||
289 290 291 292 293 294 295 | cStartLimit = "<" cEndLimit = ">" if not m.group("start"): iStartAction = 1 iEndAction = 0 else: if cAction != "-" and (m.group("start").endswith(".") or m.group("end").startswith(":.")): | | | 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | cStartLimit = "<" cEndLimit = ">" if not m.group("start"): iStartAction = 1 iEndAction = 0 else: if cAction != "-" and (m.group("start").endswith(".") or m.group("end").startswith(":.")): print("\n# Error. Wrong selection on tokens at: ", sLineId ,sActionId) return None if m.group("start").endswith("."): cStartLimit = ">" iStartAction = int(m.group("start").rstrip(".")) if not m.group("end"): iEndAction = iStartAction else: |
︙ | ︙ | |||
311 312 313 314 315 316 317 | if iStartAction < 0: iStartAction += 1 if iEndAction < 0: iEndAction += 1 if cAction == "-": ## error | | | > | < < | > | > | | | > | | 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | if iStartAction < 0: iStartAction += 1 if iEndAction < 0: iEndAction += 1 if cAction == "-": ## error iMsg = sAction.find(" && ") if iMsg == -1: sMsg = "# Error. Error message not found." sURL = "" print("\n# Error. No message at: ", sLineId, sActionId) exit() else: sMsg = sAction[iMsg+4:].strip() sAction = sAction[:iMsg].strip() sURL = "" mURL = re.search("[|] *(https?://.*)", sMsg) if mURL: sURL = mURL.group(1).strip() sMsg = sMsg[:mURL.start(0)].strip() checkTokenNumbers(sMsg, sActionId, nToken) if sMsg[0:1] == "=": sMsg = self.createFunction("msg", sMsg, True) else: checkIfThereIsCode(sMsg, sActionId) # checking consistancy checkTokenNumbers(sAction, sActionId, nToken) if cAction == ">": ## no action, break loop if condition is False return [sLineId, sOption, sCondition, cAction, ""] if not sAction and cAction != "!": print(f"\n# Error in action at line <{sLineId}/{sActionId}>: This action is empty.") exit() if sAction[0:1] != "=" and cAction != "=": checkIfThereIsCode(sAction, sActionId) if cAction == "-": ## error detected --> suggestion if sAction[0:1] == "=": sAction = self.createFunction("sugg", sAction, True) elif sAction.startswith('"') and sAction.endswith('"'): sAction = sAction[1:-1] if not sMsg: print(f"\n# Error in action at line <{sLineId}/{sActionId}>: The message is empty.") exit() return [sLineId, sOption, sCondition, cAction, sAction, iStartAction, iEndAction, cStartLimit, cEndLimit, bCaseSensitivity, nPriority, sMsg, sURL] if cAction == "~": ## text processor if sAction[0:1] == "=": sAction = self.createFunction("tp", sAction, True) elif sAction.startswith('"') and sAction.endswith('"'): sAction = sAction[1:-1] elif sAction not in "␣*_": nToken = sAction.count("|") + 1 if iStartAction > 0 and iEndAction > 0: if (iEndAction - iStartAction + 1) != nToken: print(f"\n# Error in action at line <{sLineId}/{sActionId}>: numbers of modified tokens modified.") elif iStartAction < 0 or iEndAction < 0 and iStartAction != iEndAction: print(f"\n# Warning in action at line <{sLineId}/{sActionId}>: rewriting with possible token position modified.") return [sLineId, sOption, sCondition, cAction, sAction, iStartAction, iEndAction, bCaseSensitivity] if cAction in "!/": ## tags return [sLineId, sOption, sCondition, cAction, sAction, iStartAction, iEndAction] if cAction == "=": ## disambiguator if "define(" in sAction and not re.search(r"define\(\\-?\d+ *, *\[.*\] *\)", sAction): print(f"\n# Error in action at line <{sLineId}/{sActionId}>: second argument for <define> must be a list of strings") exit() sAction = self.createFunction("da", sAction) return [sLineId, sOption, sCondition, cAction, sAction] print("\n# Unknown action at ", sLineId, sActionId) return None def storeAction (self, sActionId, aAction): "store <aAction> in <self.dActions> avoiding duplicates and return action name" nVar = 1 while True: sActionName = sActionId + "_" + str(nVar) |
︙ | ︙ | |||
432 433 434 435 436 437 438 | sParams = "lToken, nTokenOffset, nLastToken" elif sFuncName.startswith("_g_da_"): # disambiguator sParams = "lToken, nTokenOffset, nLastToken" else: print("# Unknown function type in [" + sFuncName + "]") continue # Python | | | | | 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | sParams = "lToken, nTokenOffset, nLastToken" elif sFuncName.startswith("_g_da_"): # disambiguator sParams = "lToken, nTokenOffset, nLastToken" else: print("# Unknown function type in [" + sFuncName + "]") continue # Python sPyCallables += f"def {sFuncName} ({sParams}):\n" sPyCallables += f" return {sReturn}\n" # JavaScript sJSCallables += f" {sFuncName}: function ({sParams}) {{\n" sJSCallables += " return " + jsconv.py2js(sReturn) + ";\n" sJSCallables += " },\n" return sPyCallables, sJSCallables def processing (sGraphName, sGraphCode, sLang, lRuleLine, dDef, dDecl, dOptPriority): "to be run in a separate process" |
︙ | ︙ | |||
468 469 470 471 472 473 474 | iActionBlock = 0 aRuleName = set() for iLine, sLine in lRule: sLine = sLine.rstrip() if "\t" in sLine: # tabulation not allowed | | | | | | | | | | > | | 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 | iActionBlock = 0 aRuleName = set() for iLine, sLine in lRule: sLine = sLine.rstrip() if "\t" in sLine: # tabulation not allowed print("# Error. Tabulation at line: ", iLine) exit() elif sLine.startswith("@@@@GRAPH: "): # rules graph call m = re.match(r"@@@@GRAPH: *(\w+) *[|] *(\w+)", sLine.strip()) if m: sGraphName = m.group(1) sGraphCode = m.group(2) if sGraphName in dAllGraph or sGraphCode in dGraphCode: print(f"# Error at line {iLine}. Graph name <{sGraphName}> or graph code <{sGraphCode}> already exists.") exit() dAllGraph[sGraphName] = [] dGraphCode[sGraphName] = sGraphCode else: print("# Error. Graph name not found at line", iLine) exit() elif sLine.startswith("__") and sLine.endswith("__"): # new rule group m = re.match("__(\\w+)(!\\d|)__", sLine) if m: sRuleName = m.group(1) if sRuleName in aRuleName: print(f"# Error at line {iLine}. Rule name <{sRuleName}> already exists.") exit() aRuleName.add(sRuleName) iActionBlock = 1 nPriority = int(m.group(2)[1:]) if m.group(2) else -1 else: print("# Syntax error in rule group: ", sLine, " -- line:", iLine) exit() elif re.match(" \\S", sLine): # tokens line lTokenLine.append([iLine, sLine.strip()]) elif sLine.startswith(" ||"): # tokens line continuation iPrevLine, sPrevLine = lTokenLine[-1] lTokenLine[-1] = [iPrevLine, sPrevLine + " " + sLine.strip()[2:]] elif sLine.startswith(" <<- "): # actions lActions.append([iLine, sLine[12:].strip()]) if not re.search(r"[-=~/!>](?:-?\d\.?(?::\.?-?\d+|)|):?>>", sLine): bActionBlock = True elif sLine.startswith(" && "): # action message iPrevLine, sPrevLine = lActions[-1] lActions[-1] = [iPrevLine, sPrevLine + sLine] elif sLine.startswith(" ") and bActionBlock: # action line continuation iPrevLine, sPrevLine = lActions[-1] lActions[-1] = [iPrevLine, sPrevLine + " " + sLine.strip()] if re.search(r"[-=~/!>](?:-?\d\.?(?::\.?-?\d+|)|):?>>", sLine): bActionBlock = False elif re.match("[ ]*$", sLine): # empty line to end merging if not lTokenLine: continue if bActionBlock or not lActions: print("# Error. No action found at line:", iLine) print(bActionBlock, lActions) exit() if not sGraphName: print("# Error. All rules must belong to a named graph. Line: ", iLine) exit() for j, sTokenLine in lTokenLine: dAllGraph[sGraphName].append((j, sRuleName, sTokenLine, iActionBlock, list(lActions), nPriority)) lTokenLine.clear() lActions.clear() iActionBlock += 1 else: print("# Unknown line at:", iLine) print(sLine) exit() # processing rules print(" processing graph rules...") initProcessPoolExecutor(len(dAllGraph)) fStartTimer = time.time() # build graph lResult = [] nRule = 0 for sGraphName, lRuleLine in dAllGraph.items(): nRule += len(lRuleLine) try: |
︙ | ︙ | |||
567 568 569 570 571 572 573 574 575 576 577 578 | sJSCallables = "" for xFuture in lResult: sGraphName, dGraph, dActions, sPy, sJS = xFuture.result() dAllGraph[sGraphName] = dGraph dAllActions.update(dActions) sPyCallables += sPy sJSCallables += sJS print(" Total: ", nRule, "rules, ", len(dAllActions), "actions") print(" Build time: {:.2f} s".format(time.time() - fStartTimer)) return { # the graphs describe paths of tokens to actions which eventually execute callables | > > > > > > > > > > > > > > | > > < > | 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 | sJSCallables = "" for xFuture in lResult: sGraphName, dGraph, dActions, sPy, sJS = xFuture.result() dAllGraph[sGraphName] = dGraph dAllActions.update(dActions) sPyCallables += sPy sJSCallables += sJS # create a dictionary of URL dTempURL = { "": 0 } i = 1 for sKey, lValue in dAllActions.items(): if lValue[3] == "-": if lValue[-1]: if lValue[-1] not in dTempURL: dTempURL[lValue[-1]] = i i += 1 lValue[-1] = dTempURL[lValue[-1]] else: lValue[-1] = 0 dURL = { v: k for k, v in dTempURL.items() } # reversing key and values # end print(" Total: ", nRule, "rules, ", len(dAllActions), "actions") print(" Build time: {:.2f} s".format(time.time() - fStartTimer)) return { # the graphs describe paths of tokens to actions which eventually execute callables "rules_graphs": str(dAllGraph), # helpers.convertDictToString(dAllGraph) "rules_actions": helpers.convertDictToString(dAllActions), # str(dAllActions) "rules_graph_URL": helpers.convertDictToString(dURL), # str(dURL) "rules_graphsJS": str(dAllGraph), "rules_actionsJS": jsconv.pyActionsToString(dAllActions), "rules_graph_URLJS": str(dURL), "graph_callables": sPyCallables, "graph_callablesJS": sJSCallables } |
Modified compile_rules_js_convert.py from [f8702476c1] to [b4c7f14ca9].
︙ | ︙ | |||
132 133 134 135 136 137 138 139 | return lRuleJS def writeRulesToJSArray (lRules): "create rules as a string of arrays (to be bundled in a JSON string)" sArray = "[\n" for sOption, aRuleGroup in lRules: if sOption != "@@@@": | > < < | < < < | | | | < | | | | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | return lRuleJS def writeRulesToJSArray (lRules): "create rules as a string of arrays (to be bundled in a JSON string)" sArray = "[\n" for sOption, aRuleGroup in lRules: sArray += f' ["{sOption}", [\n' if sOption != "@@@@": for sRegex, bCaseInsensitive, sLineId, sRuleId, nPriority, lActions, aGroups, aNegLookBehindRegex in aRuleGroup: sCaseSensitive = "true" if bCaseInsensitive else "false" sActions = json.dumps(lActions, ensure_ascii=False) sGroups = json.dumps(aGroups, ensure_ascii=False) sNLBRegex = json.dumps(aNegLookBehindRegex, ensure_ascii=False) sArray += f' [{sRegex}, {sCaseSensitive}, "{sLineId}", "{sRuleId}", {nPriority}, {sActions}, {sGroups}, {sNLBRegex}],\n' else: for aRule in aRuleGroup: sArray += f' {aRule},\n' sArray += " ]],\n" sArray += "]" return sArray def groupsPositioningCodeToList (sGroupsPositioningCode): "convert <sGroupsPositioningCode> to a list of codes (numbers or strings)" if not sGroupsPositioningCode: |
︙ | ︙ |
Modified doc/API_web.md from [7922180e3c] to [052f581fdb].
1 2 3 4 | # API for the web ## Using the Grammalecte API for the web | | | 1 2 3 4 5 6 7 8 9 10 11 12 | # API for the web ## Using the Grammalecte API for the web **With Grammalecte 1.9+.** (beta stage) If Grammalecte is installed by the user on his browser (like Firefox or Chrome), you can call several methods for a better integration of grammar checking for your website. This is mostly usefull if you use non-standard textareas. You can: |
︙ | ︙ |
Modified doc/syntax.txt from [22d5e1895e] to [9d8b7e574a].
︙ | ︙ | |||
69 70 71 72 73 74 75 | On the second pass, you can write regex rules and token rules. All tokens rules must be written within a graph. ## REGEX RULE SYNTAX ## __LCR/option(rulename)!priority__ pattern | | | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | On the second pass, you can write regex rules and token rules. All tokens rules must be written within a graph. ## REGEX RULE SYNTAX ## __LCR/option(rulename)!priority__ pattern <<- condition ->> error_suggestions && message_error|URL <<- condition ~>> text_rewriting <<- condition =>> commands_for_disambiguation ... Patterns are written with the Python syntax for regular expressions: http://docs.python.org/library/re.html |
︙ | ︙ | |||
128 129 130 131 132 133 134 | Each rule name must be unique. Example. Recognize and suggest missing hyphen and rewrite internally the text with the hyphen: __[s](rulename)__ foo bar | | | | | | | | | | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | Each rule name must be unique. Example. Recognize and suggest missing hyphen and rewrite internally the text with the hyphen: __[s](rulename)__ foo bar <<- ->> foo-bar && Missing hyphen. <<- ~>> foo-bar ### Simple-line or multi-line rules Rules can be break to multiple lines by leading spaces. You should use 4 spaces. Examples: __<s>(rulename)__ pattern <<- condition ->> replacement && message __<s>(rulename)__ pattern <<- condition ->> replacement && message <<- condition ->> suggestion && message <<- condition ~>> text_rewriting <<- =>> disambiguation ### Whitespaces at the border of patterns or suggestions Example: Recognize double or more spaces and suggests a single space: __<s>(rulename)__ " +" <<- ->> " " && Remove extra space(s). Characters `"` protect spaces in the pattern and in the replacement text. ### Pattern groups and back references It is usually useful to retrieve parts of the matched pattern. We simply use parenthesis in pattern to get groups with back references. Example. Suggest a word with correct quotation marks: \"(\w+)\" <<- ->> “\1” && Correct quotation marks. Example. Suggest the missing space after the signs `!`, `?` or `.`: \b([?!.])([A-Z]+) <<- ->> \1 \2 && Missing space? Example. Back reference in messages. (fooo) bar <<- ->> foo && “\1” should be: ### Group positioning codes for JavaScript: There is no way in JavaScript to know where a captured group starts and ends. To avoid misplacement, regex rules may specify group positioning codes which indicate to the grammar checker where is the position of the captured groups. A group positioning code always begins by `@@`. If there is several codes, they are separated by a comma `,`. |
︙ | ︙ | |||
202 203 204 205 206 207 208 | " ([?!;])" @@1 ### Pattern matching Repeating pattern matching of a single rule continues after the previous matching, so instead of general multiword patterns, like | | | | 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | " ([?!;])" @@1 ### Pattern matching Repeating pattern matching of a single rule continues after the previous matching, so instead of general multiword patterns, like (\w+) (\w+) <<- some_check(\1, \2) ->> \1, \2 && foo use (\w+) <<- some_check(\1, word(1)) ->> \1, && foo ## TOKEN RULES ## Token rules must be defined within a graph. ### Token rules syntax |
︙ | ︙ | |||
289 290 291 292 293 294 295 | evaluated as boolean. You can use the usual Python syntax and libraries. With regex rules, you can call pattern subgroups via `\1`, `\2`… `\0` is the full pattern. Example: these (\w+) | | | | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | evaluated as boolean. You can use the usual Python syntax and libraries. With regex rules, you can call pattern subgroups via `\1`, `\2`… `\0` is the full pattern. Example: these (\w+) <<- \1 == "man" -1>> men && Man is a singular noun. You can also apply functions to subgroups like: `\1.startswith("a")` or `\3.islower()` or `re.search("pattern", \2)`. With token rules, you can also call each token with their reference, like `\1`, `\2`... or `\-1`, `\-2`... Example: foo [really|often|sometimes] bar <<- ->> \1 \-1 && We say “foo bar”. ### Functions for regex rules `word(n)` > Catches the nth next word after the pattern (separated only by white spaces). |
︙ | ︙ | |||
391 392 393 394 395 396 397 | ### Default variables `sCountry` > Contains the current country locale of the checked paragraph. | | | 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | ### Default variables `sCountry` > Contains the current country locale of the checked paragraph. colour <<- sCountry == "US" ->> color && Use American English spelling. `sContext` > The name of the application running (Python, Writer…) ## ACTIONS ## |
︙ | ︙ | |||
426 427 428 429 430 431 432 | effect of rules by specifying a back reference group of the pattern or token references. Instead of writing `->>`, write `-n>>` n being the number of a back reference group. Actually, `->>` is similar to `-0>>`. Example: | | | | | 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | effect of rules by specifying a back reference group of the pattern or token references. Instead of writing `->>`, write `-n>>` n being the number of a back reference group. Actually, `->>` is similar to `-0>>`. Example: (ying) and yang <<- -1>> yin && Did you mean: __[s]__ (Mr.) [A-Z]\w+ <<- ~1>> Mr **Comparison** Rule A: ying and yang <<- ->> yin and yang && Did you mean: Rule B: (ying) and yang <<- -1>> yin && Did you mean: With the rule A, the full pattern is underlined: ying and yang ^^^^^^^^^^^^^ With the rule B, only the first group is underlined: |
︙ | ︙ | |||
462 463 464 465 466 467 468 | #### Multiple suggestions Use `|` in the replacement text to add multiple suggestions: Example. Foo, FOO, Bar and BAR suggestions for the input word "foo". | | | | | | 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | #### Multiple suggestions Use `|` in the replacement text to add multiple suggestions: Example. Foo, FOO, Bar and BAR suggestions for the input word "foo". foo <<- ->> Foo|FOO|Bar|BAR && Did you mean: #### No suggestion You can display message without making suggestions. For this purpose, use a single character _ in the suggestion field. Example. No suggestion. foobar <<- ->> _ && Message #### Longer explanations with URLs Warning messages can contain optional URL for longer explanations. your’s <<- ->> yours && Possessive pronoun:|http://en.wikipedia.org/wiki/Possessive_pronoun #### Expressions in suggestion or replacement Suggestions started by an equal sign are Python string expressions extended with possible back references and named definitions: Example: <<- ->> ='"' + \1.upper() + '"' && With uppercase letters and quotation marks <<- ~>> =\1.upper() ### Text rewriting **WARNING**: The replacing text must be shorter than the replaced text or have the same length. Breaking this rule will misplace following error reports. You have to ensure yourself the rules comply with this constraint, the text processor won’t do it for you. |
︙ | ︙ | |||
568 569 570 571 572 573 574 | These cats are blacks. These cats are blacks. These grammar mistakes can be detected with one simple rule: these +(\w+) +are +(\w+s) <<- morph(\1, "noun") and morph(\2, "plural") | | | 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | These cats are blacks. These cats are blacks. These grammar mistakes can be detected with one simple rule: these +(\w+) +are +(\w+s) <<- morph(\1, "noun") and morph(\2, "plural") -2>> _ && Adjectives are invariable. Instead of replacing text with whitespaces, you can replace text with @. https?://\S+ <<- ~>> @ This is useful if at first pass you write rules to check successive whitespaces. @ are automatically removed at the second pass. |
︙ | ︙ | |||
669 670 671 672 673 674 675 | Example: DEF: word_3_letters \w\w\w+ DEF: uppercase_token ~^[A-Z]+$ DEF: month_token [January|February|March|April|May|June|July|August|September|October|November|december] | | | | 669 670 671 672 673 674 675 676 677 678 679 | Example: DEF: word_3_letters \w\w\w+ DEF: uppercase_token ~^[A-Z]+$ DEF: month_token [January|February|March|April|May|June|July|August|September|October|November|december] ({word_3_letters}) (\w+) <<- condition ->> suggestion && message|URL {uppercase_token} {month_token} <<- condition ->> message && message|URL |
Modified gc_core/js/lang_core/gc_engine.js from [c3e17d2693] to [a6fd69416c].
︙ | ︙ | |||
641 642 643 644 645 646 647 | let bCondMemo = null; for (let sRuleId of oGraph[nextNodeKey]) { try { if (bDebug) { console.log(" >TRY: " + sRuleId + " " + sLineId); } let [_, sOption, sFuncCond, cActionType, sWhat, ...eAct] = gc_rules_graph.dRule[sRuleId]; | | | | > | 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | let bCondMemo = null; for (let sRuleId of oGraph[nextNodeKey]) { try { if (bDebug) { console.log(" >TRY: " + sRuleId + " " + sLineId); } let [_, sOption, sFuncCond, cActionType, sWhat, ...eAct] = gc_rules_graph.dRule[sRuleId]; // Suggestion [ option, condition, "-", replacement/suggestion/action, iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, iURL ] // TextProcessor [ option, condition, "~", replacement/suggestion/action, iTokenStart, iTokenEnd, bCaseSvty ] // Disambiguator [ option, condition, "=", replacement/suggestion/action ] // Tag [ option, condition, "/", replacement/suggestion/action, iTokenStart, iTokenEnd ] // Immunity [ option, condition, "!", "", iTokenStart, iTokenEnd ] // Test [ option, condition, ">", "" ] if (!sOption || dOptions.gl_get(sOption, false)) { bCondMemo = !sFuncCond || gc_engine_func[sFuncCond](this.lToken, nTokenOffset, nLastToken, sCountry, bCondMemo, this.dTags, this.sSentence, this.sSentence0); if (bCondMemo) { if (cActionType == "-") { // grammar error let [iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, iURL] = eAct; let nTokenErrorStart = (iTokenStart > 0) ? nTokenOffset + iTokenStart : nLastToken + iTokenStart; if (!this.lToken[nTokenErrorStart].hasOwnProperty("bImmune")) { let nTokenErrorEnd = (iTokenEnd > 0) ? nTokenOffset + iTokenEnd : nLastToken + iTokenEnd; let nErrorStart = this.nOffsetWithinParagraph + ((cStartLimit == "<") ? this.lToken[nTokenErrorStart]["nStart"] : this.lToken[nTokenErrorStart]["nEnd"]); let nErrorEnd = this.nOffsetWithinParagraph + ((cEndLimit == ">") ? this.lToken[nTokenErrorEnd]["nEnd"] : this.lToken[nTokenErrorEnd]["nStart"]); if (!this.dError.has(nErrorStart) || nPriority > this.dErrorPriority.gl_get(nErrorStart, -1)) { this.dError.set(nErrorStart, this._createErrorFromTokens(sWhat, nTokenOffset, nLastToken, nTokenErrorStart, nErrorStart, nErrorEnd, sLineId, sRuleId, bCaseSvty, sMessage, gc_rules_graph.dURL[iURL], bShowRuleId, sOption, bContext)); this.dErrorPriority.set(nErrorStart, nPriority); this.dSentenceError.set(nErrorStart, this.dError.get(nErrorStart)); if (bDebug) { console.log(" NEW_ERROR: ", this.dError.get(nErrorStart)); } } } |
︙ | ︙ | |||
756 757 758 759 760 761 762 | console.error(e); } } } return bChange; } | | | | | 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 | console.error(e); } } } return bChange; } _createErrorFromRegex (sText, sText0, sSugg, nOffset, m, iGroup, sLineId, sRuleId, bCaseSvty, sMsg, sURL, bShowRuleId, sOption, bContext) { let nStart = nOffset + m.start[iGroup]; let nEnd = nOffset + m.end[iGroup]; // suggestions let lSugg = []; if (sSugg.startsWith("=")) { sSugg = gc_engine_func[sSugg.slice(1)](sText, m); lSugg = (sSugg) ? sSugg.split("|") : []; } else if (sSugg == "_") { lSugg = []; } else { lSugg = sSugg.gl_expand(m).split("|"); } if (bCaseSvty && lSugg.length > 0 && m[iGroup].slice(0,1).gl_isUpperCase()) { lSugg = (m[iGroup].gl_isUpperCase()) ? lSugg.map((s) => s.toUpperCase()) : capitalizeArray(lSugg); } // Message let sMessage = (sMsg.startsWith("=")) ? gc_engine_func[sMsg.slice(1)](sText, m) : sMsg.gl_expand(m); if (bShowRuleId) { sMessage += " #" + sLineId + " / " + sRuleId; } // |
︙ | ︙ | |||
793 794 795 796 797 798 799 | lSugg = (sSugg) ? sSugg.split("|") : []; } else if (sSugg == "_") { lSugg = []; } else { lSugg = this._expand(sSugg, nTokenOffset, nLastToken).split("|"); } if (bCaseSvty && lSugg.length > 0 && this.lToken[iFirstToken]["sValue"].slice(0,1).gl_isUpperCase()) { | | | 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 | lSugg = (sSugg) ? sSugg.split("|") : []; } else if (sSugg == "_") { lSugg = []; } else { lSugg = this._expand(sSugg, nTokenOffset, nLastToken).split("|"); } if (bCaseSvty && lSugg.length > 0 && this.lToken[iFirstToken]["sValue"].slice(0,1).gl_isUpperCase()) { lSugg = (this.lToken[iFirstToken]["sValue"].gl_isUpperCase()) ? lSugg.map((s) => s.toUpperCase()) : capitalizeArray(lSugg); } // Message let sMessage = (sMsg.startsWith("=")) ? gc_engine_func[sMsg.slice(1)](this.lToken, nTokenOffset, nLastToken) : this._expand(sMsg, nTokenOffset, nLastToken); if (bShowRuleId) { sMessage += " #" + sLineId + " / " + sRuleId; } // |
︙ | ︙ |
Modified gc_core/js/lang_core/gc_rules_graph.js from [3efb8afd5c] to [001ce9daa6].
︙ | ︙ | |||
8 9 10 11 12 13 14 | ${string} var gc_rules_graph = { dAllGraph: ${rules_graphsJS}, | | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ${string} var gc_rules_graph = { dAllGraph: ${rules_graphsJS}, dRule: ${rules_actionsJS}, dURL: ${rules_graph_URLJS} }; if (typeof(exports) !== 'undefined') { exports.dAllGraph = gc_rules_graph.dAllGraph; exports.dRule = gc_rules_graph.dRule; exports.dURL = gc_rules_graph.dURL; } |
Modified gc_core/py/lang_core/gc_engine.py from [10a61be11b] to [63164f7100].
︙ | ︙ | |||
573 574 575 576 577 578 579 | for sLineId, nextNodeKey in dNode.items(): bCondMemo = None for sRuleId in dGraph[nextNodeKey]: try: if bDebug: echo(" >TRY: " + sRuleId + " " + sLineId) _, sOption, sFuncCond, cActionType, sWhat, *eAct = _rules_graph.dRule[sRuleId] | | | | > | 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 | for sLineId, nextNodeKey in dNode.items(): bCondMemo = None for sRuleId in dGraph[nextNodeKey]: try: if bDebug: echo(" >TRY: " + sRuleId + " " + sLineId) _, sOption, sFuncCond, cActionType, sWhat, *eAct = _rules_graph.dRule[sRuleId] # Suggestion [ sActionLineId, option, condition, "-", replacement/suggestion/action, iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, iURL ] # TextProcessor [ sActionLineId, option, condition, "~", replacement/suggestion/action, iTokenStart, iTokenEnd, bCaseSvty ] # Disambiguator [ sActionLineId, option, condition, "=", replacement/suggestion/action ] # Tag [ sActionLineId, option, condition, "/", replacement/suggestion/action, iTokenStart, iTokenEnd ] # Immunity [ sActionLineId, option, condition, "!", "", iTokenStart, iTokenEnd ] # Test [ sActionLineId, option, condition, ">", "" ] if not sOption or dOptions.get(sOption, False): bCondMemo = not sFuncCond or getattr(gce_func, sFuncCond)(self.lToken, nTokenOffset, nLastToken, sCountry, bCondMemo, self.dTags, self.sSentence, self.sSentence0) if bCondMemo: if cActionType == "-": # grammar error iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, iURL = eAct nTokenErrorStart = nTokenOffset + iTokenStart if iTokenStart > 0 else nLastToken + iTokenStart if "bImmune" not in self.lToken[nTokenErrorStart]: nTokenErrorEnd = nTokenOffset + iTokenEnd if iTokenEnd > 0 else nLastToken + iTokenEnd nErrorStart = self.nOffsetWithinParagraph + (self.lToken[nTokenErrorStart]["nStart"] if cStartLimit == "<" else self.lToken[nTokenErrorStart]["nEnd"]) nErrorEnd = self.nOffsetWithinParagraph + (self.lToken[nTokenErrorEnd]["nEnd"] if cEndLimit == ">" else self.lToken[nTokenErrorEnd]["nStart"]) if nErrorStart not in self.dError or nPriority > self.dErrorPriority.get(nErrorStart, -1): self.dError[nErrorStart] = self._createErrorFromTokens(sWhat, nTokenOffset, nLastToken, nTokenErrorStart, nErrorStart, nErrorEnd, sLineId, sRuleId, bCaseSvty, \ sMessage, _rules_graph.dURL.get(iURL, ""), bShowRuleId, sOption, bContext) self.dErrorPriority[nErrorStart] = nPriority self.dSentenceError[nErrorStart] = self.dError[nErrorStart] if bDebug: echo(" NEW_ERROR: {}".format(self.dError[nErrorStart])) elif cActionType == "~": # text processor nTokenStart = nTokenOffset + eAct[0] if eAct[0] > 0 else nLastToken + eAct[0] |
︙ | ︙ | |||
657 658 659 660 661 662 663 | if bDebug: echo(" COND_BREAK") break except Exception as e: raise Exception(str(e), sLineId, sRuleId, self.sSentence) return bChange | | | | | | 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 | if bDebug: echo(" COND_BREAK") break except Exception as e: raise Exception(str(e), sLineId, sRuleId, self.sSentence) return bChange def _createErrorFromRegex (self, sText, sText0, sRepl, nOffset, m, iGroup, sLineId, sRuleId, bCaseSvty, sMsg, sURL, bShowRuleId, sOption, bContext): nStart = nOffset + m.start(iGroup) nEnd = nOffset + m.end(iGroup) # suggestions if sRepl[0:1] == "=": sSugg = getattr(gce_func, sRepl[1:])(sText, m) lSugg = sSugg.split("|") if sSugg else [] elif sRepl == "_": lSugg = [] else: lSugg = m.expand(sRepl).split("|") if bCaseSvty and lSugg and m.group(iGroup)[0:1].isupper(): lSugg = list(map(lambda s: s.upper(), lSugg)) if m.group(iGroup).isupper() else list(map(lambda s: s[0:1].upper()+s[1:], lSugg)) # Message sMessage = getattr(gce_func, sMsg[1:])(sText, m) if sMsg[0:1] == "=" else m.expand(sMsg) if bShowRuleId: sMessage += " #" + sLineId + " / " + sRuleId # if _bWriterError: return self._createErrorForWriter(nStart, nEnd - nStart, sRuleId, sOption, sMessage, lSugg, sURL) return self._createErrorAsDict(nStart, nEnd, sLineId, sRuleId, sOption, sMessage, lSugg, sURL, bContext) def _createErrorFromTokens (self, sSugg, nTokenOffset, nLastToken, iFirstToken, nStart, nEnd, sLineId, sRuleId, bCaseSvty, sMsg, sURL, bShowRuleId, sOption, bContext): # suggestions if sSugg[0:1] == "=": sSugg = getattr(gce_func, sSugg[1:])(self.lToken, nTokenOffset, nLastToken) lSugg = sSugg.split("|") if sSugg else [] elif sSugg == "_": lSugg = [] else: lSugg = self._expand(sSugg, nTokenOffset, nLastToken).split("|") if bCaseSvty and lSugg and self.lToken[iFirstToken]["sValue"][0:1].isupper(): lSugg = list(map(lambda s: s.upper(), lSugg)) if self.lToken[iFirstToken]["sValue"].isupper() else list(map(lambda s: s[0:1].upper()+s[1:], lSugg)) # Message sMessage = getattr(gce_func, sMsg[1:])(self.lToken, nTokenOffset, nLastToken) if sMsg[0:1] == "=" else self._expand(sMsg, nTokenOffset, nLastToken) if bShowRuleId: sMessage += " #" + sLineId + " / " + sRuleId # if _bWriterError: return self._createErrorForWriter(nStart, nEnd - nStart, sRuleId, sOption, sMessage, lSugg, sURL) |
︙ | ︙ |
Modified gc_core/py/lang_core/gc_rules_graph.py from [373592f3fb] to [dd48c4d265].
1 2 3 4 5 6 7 8 9 | """ Grammar checker graph rules """ # generated code, do not edit dAllGraph = ${rules_graphs} dRule = ${rules_actions} | > > | 1 2 3 4 5 6 7 8 9 10 11 | """ Grammar checker graph rules """ # generated code, do not edit dAllGraph = ${rules_graphs} dRule = ${rules_actions} dURL = ${rules_graph_URL} |
Modified gc_lang/fr/French_language.txt from [a25818e11b] to [bdf10f847f].
1 2 | # NOTES SUR LA LANGUE FRANÇAISE | | | < | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | # NOTES SUR LA LANGUE FRANÇAISE ## CE QUI ENTOURE UN VERBE PRONOMS (avant) COD COI le / l’ la / l’ les en me / m’ me / m’ te / t’ te / t’ se / s’ lui nous nous vous nous se / s’ leur y ADVERBE DE NÉGATION PRÉVERBAL ne / n’ COMBINAISONS VALIDES ?[ne|n’]¿ [me|te|se] [le|la|l’|les] ?[ne|n’]¿ [m’|t’|s’] [le|la|l’|les|en|y] ?[ne|n’]¿ [le|la] [lui|leur] ?[ne|n’]¿ [l’|les] [lui|leur|en|y] ?[ne|n’]¿ [lui|leur] en ?[ne|n’]¿ [nous|vous] [le|la|l’|les|en|y] ?[ne|n’]¿ ?[le|la|l’|les|me|m’|te|t’|se|s’|nous|vous|lui|leur]¿ ?n’¿ [en|y] Toutes les combinaisons: ?[ne|n’]¿ ?[le|la|l’|les|en|me|m’|te|t’|se|s’|nous|vous|lui|leur|y]¿ ?[ne|n’]¿ [me|m’|te|t’|se|s’|nous|vous] [le|la|l’|les|en|y] ?[ne|n’]¿ [le|la|l’|les] [lui|leur|en|y] ?[ne|n’]¿ [lui|leur|y] en Détection des syntagmes verbaux: [ne|n’|me|m’|te|t’|se|s’] [le|la|l’|les|en|nous|vous|lui|leur|y] @:(?:[123][sp]|P) [nous|vous] [le|la|l’|les|en|y] @:(?:[123][sp]|P) [le|la|l’|les] [lui|leur|en|y] @:(?:[123][sp]|P) [lui|leur|y] en @:(?:[123][sp]|P) @:(?:[123][sp]|P) ADVERBE DE NÉGATION POST-VERBAL guère jamais pas plus point que / qu’ (restriction) rien PRONOMS À L’IMPÉRATIF APRÈS -moi -toi -lui |
︙ | ︙ | |||
89 90 91 92 93 94 95 | notre vos leur leurs quel / quelle quels / quelles quelque quelques tout / toute tous / toutes chaque aucun / aucune | | > | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | notre vos leur leurs quel / quelle quels / quelles quelque quelques tout / toute tous / toutes chaque aucun / aucune nul / nulle nuls / nulles (?) plusieurs certains / certaines divers / diverses maints / maintes DÉTERMINANT & PRÉPOSITION au / à la aux audit / à ladite auxdits / auxdites ## CONJONCTIONS |
︙ | ︙ | |||
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | ou dès lors que sauf que partant excepté que selon que puis lorsque si sinon lors que tandis que soit malgré que tant que parce que ## PRÉPOSITIONS VERBALES UNIQUEMENT afin de NOMINALES ET VERBALES à entre excepté outre par pour sans sauf PRÉPOSITIONS ET DÉTERMINANTS au aux audit auxdits auxdites NOMINALES | > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | | | | | | | < | | | | | | | | | | | | | | | | | > | | | > | | | > | | | | > | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | ou dès lors que sauf que partant excepté que selon que puis lorsque si sinon lors que tandis que soit malgré que tant que parce que ## PRONOMS RELATIFS auquel proint prorel mas sg auxquelles proint prorel fem pl auxquels proint prorel mas pl desquelles proint prorel fem pl desquels proint prorel mas pl dont prorel duquel proint prorel mas sg laquelle proint prorel fem sg lequel proint prorel mas sg lesquelles proint prorel fem pl lesquels proint prorel mas pl qué proint prorel qui proint prorel que proint prorel quid proint quoi proint prorel combien advint comment advint où advint prorel pourquoi advint ## PRÉPOSITIONS VERBALES UNIQUEMENT afin de NOMINALES ET VERBALES à de entre excepté outre par pour quant à/au/à la/aux sans sauf PRÉPOSITIONS ET DÉTERMINANTS au aux audit auxdits auxdites de NOMINALES à l’instar de devers par-dessus (adv) à mi-distance de dixit par-devant (adv) après (adv) durant par-devers attendu dès parmi au-dedans (adv) en passé au-dehors (adv) endéans pendant au-delà (adv) envers pour au-dessous (adv) ès au-dessus (adv) excepté revoici au-devant (adv) face à/au/aux revoilà autour de grâce à sans av hormis selon avant (adv) hors sous avec (adv) jusque suivant chez jusques sur concernant lez tandis (adv) contre lors de vers courant (+mois) lès versus dans malgré via depuis (adv) moins (adv) vis-à-vis derrière (adv) nonobstant (adv) voici dessous (adv) par-delà voilà dessus (adv) par-derrière (adv) vs devant (adv) par-dessous (adv) vu ## PRONOMS PRONOMS PERSONNELS SUJETS je moi-même mézigue tu toi-même tézigue il / elle lui / lui-même / elle-même césigue / sézigue iel iel-même on nous nous-même / nous-mêmes noszigues vous vous-même / vous-mêmes voszigues ils / elles eux / eux-mêmes / elles-mêmes leurszigues iels iel-mêmes PRONOMS PERSONNELS OBJETS moi moi-même mézigue toi toi-même tézigue lui / elle lui-même / elle-même césigue / sézigue iel iel-même soi soi-même nous nous-même / nous-mêmes noszigues vous vous-même / vous-mêmes voszigues eux / elles eux / eux-mêmes / elles-mêmes leurszigues iels iel-mêmes PRONOMS NÉGATIFS (SUJETS & OBJETS) aucun aucune dégun nul personne |
︙ | ︙ | |||
228 229 230 231 232 233 234 | celles-là prodem fem pl celui qui prodem mas sg celui-ci prodem mas sg celui-là prodem mas sg ceux qui prodem mas pl ceux-ci prodem mas pl ceux-là prodem mas pl | < | | | | | < < < < < < < < < < < < < < < < < < > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | celles-là prodem fem pl celui qui prodem mas sg celui-ci prodem mas sg celui-là prodem mas sg ceux qui prodem mas pl ceux-ci prodem mas pl ceux-là prodem mas pl icelle prodem fem sg icelles prodem fem pl icelui prodem mas sg iceux prodem mas pl PRONOMS DÉMONSTRATIFS (SUJETS) ce PRONOMS DÉMONSTRATIFS (OBJETS) ci (adv) PRONOMS INDÉFINIS autre proind autrui proind quiconque proind prorel certain proind mas sg certains proind mas pl certaine proind fem sg certaines proind fem pl chacun proind mas sg chacune proind fem sg d’aucuns proind mas pl grand-chose proind n’importe quoi proind n’importe qui proind plupart proind epi pl quelque proind quelques-unes proind fem pl quelques-uns proind mas pl quelqu’un proind mas sg quelqu’une proind fem sg tel proind telle proind tels proind telles proind ## ADVERBES AUTONOMES après-demain avant-hier demain dès lors hier loin maintenant sic toutefois COMBINABLES assez aussi autant beaucoup davantage lors mieux moult par-dehors peu peut-être pis presque tant trop PRÉCURSEURS même quelque très ## INTERJECTIONS POSITIVES oui ouais mouais moui certes d’accord d’ac ## INTERJECTIONS NÉGATIVES nenni non ## MOTS GRAMMATICAUX CONFUS a autour cela certain·e·s |
︙ | ︙ | |||
315 316 317 318 319 320 321 322 323 324 | ton tout tu un une vers y ## VERBES À TRAITER EN PARTICULIER | > | | < < | > | | < < | < < < < < < > | < < < | | < < < < < < < | | | 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | ton tout tu un une vers y ## VERBES À TRAITER EN PARTICULIER ### Auxiliaires être, avoir ### Verbes modaux ou quasi-modaux - devoir, avoir à, falloir, pouvoir, vouloir, souhaiter, désirer, faillir - aller, partir, venir, revenir, faire (faire), envoyer (faire), oser - adorer, aimer, détester, haïr - croire, espérer, imaginer, penser, savoir - autoriser (à), permettre (de), interdire (de), proscrire (de) - regarder, entendre, écouter, ouïr, voir ### Verbes d’état apparaître, avoir l’air, demeurer, devenir, paraître, redevenir, rester, sembler ## Verbes d’action usuels commencer donner finir prendre trouver voir ### Dialogues - aboyer, accepter, acclamer, accorder, accuser, achever, acquiescer, adhérer, adjurer, admettre, admonester, affirmer, affranchir, ajouter, alléguer, anathématiser, annoncer, annoter, apostropher, appeler, applaudir, apprendre, approuver, approuver, arguer, argumenter, arrêter, articuler, assener, assurer, attester, avancer, avertir, aviser, avouer, ânonner - babiller, badiner, bafouer, bafouiller, balbutier, baragouiner, bavarder, beugler, blaguer, blâmer, bougonner, bourdonner, bourrasser, brailler, bramer, bredouiller, bégayer, bénir - cafouiller, capituler, certifier, chanter, chantonner, choisir, chuchoter, clamer, combattre, commander, commenter, compatir, compléter, composer, conclure, concéder, confesser, confier, confirmer, congratuler, considérer, conspuer, conter, contester, contredire, converser, couiner, couper, cracher, crachoter, crier, critiquer, croire, crépiter, céder - déclamer, demander, deviner, deviser, dialoguer, dire, discourir, discréditer, discuter, disserter, dissimuler, distinguer, divulguer, douter, débiter, décider, déclamer, déclarer, décrire, dédouaner, déduire, défendre, dégoiser, démentir, démontrer, dénoncer, déplorer, détailler, dévoiler - emporter, encenser, enchérir, encourager, enflammer, enguirlander, enquérir, entamer, entonner, ergoter, essayer, estimer, exagérer, examiner, exhorter, exiger, expliquer, exploser, exposer, exprimer, exulter, éclater, égosiller, égrener, éjaculer, éluder, émettre, énoncer, énumérer, épeler, établir, éternuer, étonner - faire fanfaronner, faire miroiter, faire remarquer, finir, flatter, formuler, fustiger, féliciter - garantir, geindre, glisser, glorifier, gloser, glousser, gouailler, grincer, grognasser, grogner, grommeler, gronder, gueuler, gémir |
︙ | ︙ | |||
380 381 382 383 384 385 386 | - palabrer, papoter, parlementer, parler, penser, permettre, persifler, pester, philosopher, piaffer, pilorier, plaider, plaisanter, plastronner, pleurer, pleurnicher, polémiquer, pontifier, postillonner, pouffer, poursuivre, prier, proférer, prohiber, promettre, prophétiser, proposer, protester, prouver, préciser, préférer, présenter, prétendre, prôner, psalmodier, pérorer - questionner, quémander, quêter - rabâcher, raconter, radoter, railler, rajouter, rappeler, rapporter, rassurer, raviser, réciter, reconnaître, rectifier, redire, refuser, regretter, relater, remarquer, renauder, renchérir, renseigner, renâcler, repartir, reprendre, requérir, ressasser, revendiquer, ricaner, riposter, rire, risquer, ronchonner, ronronner, rouscailler, rouspéter, rugir, râler, réaliser, récapituler, réciter, réclamer, récuser, réfuter, répliquer, répliquer, répondre, répondre, réprimander, réprouver, répéter, résister, résumer, rétorquer, réviser, révéler - saluer, scruter, se gargariser, se moquer, se plaindre, se réjouir, se souvenir, seriner, sermonner, siffler, signaler, signifier, soliloquer, solliciter, sommer, souffler, souligner, soupçonner, sourire, souscrire, soutenir, stigmatiser, suggérer, supplier, supputer, susurrer, sélectionner, s’adresser, s’esclaffer, s’exclamer, s’excuser, s’impatienter, s’incliner, s’instruire, s’insurger, s’interloquer, s’intéresser, s’offusquer, s’émerveiller, s’étouffer, s’étrangler - taquiner, tempérer, tempêter, tenter, terminer, tonitruer, tonner, traduire - vanter, vanter, vilipender, vitupérer, vociférer, vomir, vérifier - zozoter, zézayer | < | 433 434 435 436 437 438 439 | - palabrer, papoter, parlementer, parler, penser, permettre, persifler, pester, philosopher, piaffer, pilorier, plaider, plaisanter, plastronner, pleurer, pleurnicher, polémiquer, pontifier, postillonner, pouffer, poursuivre, prier, proférer, prohiber, promettre, prophétiser, proposer, protester, prouver, préciser, préférer, présenter, prétendre, prôner, psalmodier, pérorer - questionner, quémander, quêter - rabâcher, raconter, radoter, railler, rajouter, rappeler, rapporter, rassurer, raviser, réciter, reconnaître, rectifier, redire, refuser, regretter, relater, remarquer, renauder, renchérir, renseigner, renâcler, repartir, reprendre, requérir, ressasser, revendiquer, ricaner, riposter, rire, risquer, ronchonner, ronronner, rouscailler, rouspéter, rugir, râler, réaliser, récapituler, réciter, réclamer, récuser, réfuter, répliquer, répliquer, répondre, répondre, réprimander, réprouver, répéter, résister, résumer, rétorquer, réviser, révéler - saluer, scruter, se gargariser, se moquer, se plaindre, se réjouir, se souvenir, seriner, sermonner, siffler, signaler, signifier, soliloquer, solliciter, sommer, souffler, souligner, soupçonner, sourire, souscrire, soutenir, stigmatiser, suggérer, supplier, supputer, susurrer, sélectionner, s’adresser, s’esclaffer, s’exclamer, s’excuser, s’impatienter, s’incliner, s’instruire, s’insurger, s’interloquer, s’intéresser, s’offusquer, s’émerveiller, s’étouffer, s’étrangler - taquiner, tempérer, tempêter, tenter, terminer, tonitruer, tonner, traduire - vanter, vanter, vilipender, vitupérer, vociférer, vomir, vérifier - zozoter, zézayer |
Modified gc_lang/fr/build_data.py from [c910fde1c7] to [6e865955c0].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import platform import graphspell.ibdawg as ibdawg from graphspell.echo import echo from graphspell.str_transform import defineSuffixCode import graphspell.tokenizer as tkz oDict = None class cd: """Context manager for changing the current working directory""" def __init__ (self, newPath): | > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import platform import graphspell.ibdawg as ibdawg from graphspell.echo import echo from graphspell.str_transform import defineSuffixCode import graphspell.tokenizer as tkz import gc_lang.fr.modules.conj as conj oDict = None class cd: """Context manager for changing the current working directory""" def __init__ (self, newPath): |
︙ | ︙ | |||
281 282 283 284 285 286 287 | open(sp+"/modules-js/mfsp_data.json", "w", encoding="utf-8", newline="\n").write(sCode) def makePhonetTable (sp, bJS=False): print("> Correspondances phonétiques ", end="") print("(Python et JavaScript)" if bJS else "(Python seulement)") | < < < | < | > > > > | | > > > > > > > | > > > > | | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | open(sp+"/modules-js/mfsp_data.json", "w", encoding="utf-8", newline="\n").write(sCode) def makePhonetTable (sp, bJS=False): print("> Correspondances phonétiques ", end="") print("(Python et JavaScript)" if bJS else "(Python seulement)") loadDictionary() # set of homophonic words lSet = [] for sLine in readFile(sp+"/data/phonet_simil.txt"): lWord = sLine.split() for sWord in lWord: if sWord.endswith("er") and conj.isVerb(sWord): lWord.extend(conj.getConjSimilInfiV1(sWord)) lSet.append(set(lWord)) # dictionary of words dWord = {} aMultiSetWord = set() lNewSet = [] nAppend = 0 for i, aSet in enumerate(lSet): for sWord in aSet: if oDict.lookup(sWord): if sWord not in dWord: dWord[sWord] = i else: # word in several set aMultiSetWord.add(sWord) iSet = dWord[sWord] lNewSet.append(lSet[iSet].union(aSet)) dWord[sWord] = len(lSet) + nAppend nAppend += 1 else: echo(f" Mot inconnu : <{sWord}>") lSet.extend(lNewSet) lSet = [ sorted(aSet) for aSet in lSet ] print(" Mots appartenant à plusieurs ensembles: ", ", ".join(aMultiSetWord)) # dictionary of morphologies dMorph = {} for sWord in dWord: dMorph[sWord] = oDict.getMorph(sWord) # write file for Python sCode = "# generated data built in build_data.py (do not edit)\n\n" + \ "dWord = " + str(dWord) + "\n\n" + \ "lSet = " + str(lSet) + "\n\n" + \ "dMorph = " + str(dMorph) + "\n" open(sp+"/modules/phonet_data.py", "w", encoding="utf-8", newline="\n").write(sCode) if bJS: ## write file for JavaScript |
︙ | ︙ | |||
363 364 365 366 367 368 369 | print("========== Build Hunspell dictionaries ==========") makeDictionaries(spLaunch, dVars['oxt_version']) def after (spLaunch, dVars, bJS=False): print("========== Build French data ==========") makeMfsp(spLaunch, bJS) | | | | 376 377 378 379 380 381 382 383 384 385 | print("========== Build Hunspell dictionaries ==========") makeDictionaries(spLaunch, dVars['oxt_version']) def after (spLaunch, dVars, bJS=False): print("========== Build French data ==========") makeMfsp(spLaunch, bJS) makePhonetTable(spLaunch, bJS) makeConj(spLaunch, bJS) makeLocutions(spLaunch, bJS) |
Modified gc_lang/fr/data/dictConj.txt from [be42395d2e] to [592e51c33b].
︙ | ︙ | |||
50801 50802 50803 50804 50805 50806 50807 50808 50809 50810 50811 50812 50813 50814 | _ iimp 3sg brumait _ ipsi 3sg bruma _ ifut 3sg brumera _ cond 3sg brumerait _ simp 3sg brumât _ ppas epi inv brumé $ bruncher 1_i_____a _ infi bruncher _ ppre brunchant _ ipre 1sg brunche _ ipre 3sg brunche _ spre 1sg brunche _ spre 3sg brunche | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 50801 50802 50803 50804 50805 50806 50807 50808 50809 50810 50811 50812 50813 50814 50815 50816 50817 50818 50819 50820 50821 50822 50823 50824 50825 50826 50827 50828 50829 50830 50831 50832 50833 50834 50835 50836 50837 50838 50839 50840 50841 50842 50843 50844 50845 50846 50847 50848 50849 50850 50851 50852 50853 50854 50855 50856 50857 50858 50859 50860 50861 50862 50863 50864 50865 50866 50867 50868 | _ iimp 3sg brumait _ ipsi 3sg bruma _ ifut 3sg brumera _ cond 3sg brumerait _ simp 3sg brumât _ ppas epi inv brumé $ brumiser 1_it____a _ infi brumiser _ ppre brumisant _ ipre 1sg brumise _ ipre 3sg brumise _ spre 1sg brumise _ spre 3sg brumise _ ipre 1isg brumisè _ ipre 2sg brumises _ spre 2sg brumises _ ipre 1pl brumisons _ ipre 2pl brumisez _ ipre 3pl brumisent _ spre 3pl brumisent _ iimp 1sg brumisais _ iimp 2sg brumisais _ iimp 3sg brumisait _ iimp 1pl brumisions _ spre 1pl brumisions _ iimp 2pl brumisiez _ spre 2pl brumisiez _ iimp 3pl brumisaient _ ipsi 1sg brumisai _ ipsi 2sg brumisas _ ipsi 3sg brumisa _ ipsi 1pl brumisâmes _ ipsi 2pl brumisâtes _ ipsi 3pl brumisèrent _ ifut 1sg brumiserai _ ifut 2sg brumiseras _ ifut 3sg brumisera _ ifut 1pl brumiserons _ ifut 2pl brumiserez _ ifut 3pl brumiseront _ cond 1sg brumiserais _ cond 2sg brumiserais _ cond 3sg brumiserait _ cond 1pl brumiserions _ cond 2pl brumiseriez _ cond 3pl brumiseraient _ simp 1sg brumisasse _ simp 2sg brumisasses _ simp 3sg brumisât _ simp 1pl brumisassions _ simp 2pl brumisassiez _ simp 3pl brumisassent _ impe 2sg brumise _ impe 1pl brumisons _ impe 2pl brumisez _ ppas mas sg brumisé _ ppas mas pl brumisés _ ppas fem sg brumisée _ ppas fem pl brumisées $ bruncher 1_i_____a _ infi bruncher _ ppre brunchant _ ipre 1sg brunche _ ipre 3sg brunche _ spre 1sg brunche _ spre 3sg brunche |
︙ | ︙ | |||
96979 96980 96981 96982 96983 96984 96985 | _ impe 1pl cryogénisons _ impe 2pl cryogénisez _ ppas mas sg cryogénisé _ ppas mas pl cryogénisés _ ppas fem sg cryogénisée _ ppas fem pl cryogénisées $ | | | 97033 97034 97035 97036 97037 97038 97039 97040 97041 97042 97043 97044 97045 97046 97047 | _ impe 1pl cryogénisons _ impe 2pl cryogénisez _ ppas mas sg cryogénisé _ ppas mas pl cryogénisés _ ppas fem sg cryogénisée _ ppas fem pl cryogénisées $ crypter 1_it____a _ infi crypter _ ppre cryptant _ ipre 1sg crypte _ ipre 3sg crypte _ spre 1sg crypte _ spre 3sg crypte _ ipre 1isg cryptè |
︙ | ︙ | |||
137510 137511 137512 137513 137514 137515 137516 137517 137518 137519 137520 137521 137522 137523 | _ impe 1pl désannexons _ impe 2pl désannexez _ ppas mas sg désannexé _ ppas mas pl désannexés _ ppas fem sg désannexée _ ppas fem pl désannexées $ désaper 1__t_q_zz _ infi désaper _ ppre désapant _ ipre 1sg désape _ ipre 3sg désape _ spre 1sg désape _ spre 3sg désape | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 137564 137565 137566 137567 137568 137569 137570 137571 137572 137573 137574 137575 137576 137577 137578 137579 137580 137581 137582 137583 137584 137585 137586 137587 137588 137589 137590 137591 137592 137593 137594 137595 137596 137597 137598 137599 137600 137601 137602 137603 137604 137605 137606 137607 137608 137609 137610 137611 137612 137613 137614 137615 137616 137617 137618 137619 137620 137621 137622 137623 137624 137625 137626 137627 137628 137629 137630 137631 | _ impe 1pl désannexons _ impe 2pl désannexez _ ppas mas sg désannexé _ ppas mas pl désannexés _ ppas fem sg désannexée _ ppas fem pl désannexées $ désanonymiser 1_it____a _ infi désanonymiser _ ppre désanonymisant _ ipre 1sg désanonymise _ ipre 3sg désanonymise _ spre 1sg désanonymise _ spre 3sg désanonymise _ ipre 1isg désanonymisè _ ipre 2sg désanonymises _ spre 2sg désanonymises _ ipre 1pl désanonymisons _ ipre 2pl désanonymisez _ ipre 3pl désanonymisent _ spre 3pl désanonymisent _ iimp 1sg désanonymisais _ iimp 2sg désanonymisais _ iimp 3sg désanonymisait _ iimp 1pl désanonymisions _ spre 1pl désanonymisions _ iimp 2pl désanonymisiez _ spre 2pl désanonymisiez _ iimp 3pl désanonymisaient _ ipsi 1sg désanonymisai _ ipsi 2sg désanonymisas _ ipsi 3sg désanonymisa _ ipsi 1pl désanonymisâmes _ ipsi 2pl désanonymisâtes _ ipsi 3pl désanonymisèrent _ ifut 1sg désanonymiserai _ ifut 2sg désanonymiseras _ ifut 3sg désanonymisera _ ifut 1pl désanonymiserons _ ifut 2pl désanonymiserez _ ifut 3pl désanonymiseront _ cond 1sg désanonymiserais _ cond 2sg désanonymiserais _ cond 3sg désanonymiserait _ cond 1pl désanonymiserions _ cond 2pl désanonymiseriez _ cond 3pl désanonymiseraient _ simp 1sg désanonymisasse _ simp 2sg désanonymisasses _ simp 3sg désanonymisât _ simp 1pl désanonymisassions _ simp 2pl désanonymisassiez _ simp 3pl désanonymisassent _ impe 2sg désanonymise _ impe 1pl désanonymisons _ impe 2pl désanonymisez _ ppas mas sg désanonymisé _ ppas mas pl désanonymisés _ ppas fem sg désanonymisée _ ppas fem pl désanonymisées $ désaper 1__t_q_zz _ infi désaper _ ppre désapant _ ipre 1sg désape _ ipre 3sg désape _ spre 1sg désape _ spre 3sg désape |
︙ | ︙ | |||
197088 197089 197090 197091 197092 197093 197094 | _ impe 1pl épeurons _ impe 2pl épeurez _ ppas mas sg épeuré _ ppas mas pl épeurés _ ppas fem sg épeurée _ ppas fem pl épeurées $ | | | 197196 197197 197198 197199 197200 197201 197202 197203 197204 197205 197206 197207 197208 197209 197210 | _ impe 1pl épeurons _ impe 2pl épeurez _ ppas mas sg épeuré _ ppas mas pl épeurés _ ppas fem sg épeurée _ ppas fem pl épeurées $ épicer 1_it____a _ infi épicer _ ppre épiçant _ ipre 1sg épice _ ipre 3sg épice _ spre 1sg épice _ spre 3sg épice _ ipre 1isg épicè |
︙ | ︙ | |||
197670 197671 197672 197673 197674 197675 197676 | _ impe 1pl épinglons _ impe 2pl épinglez _ ppas mas sg épinglé _ ppas mas pl épinglés _ ppas fem sg épinglée _ ppas fem pl épinglées $ | | | 197778 197779 197780 197781 197782 197783 197784 197785 197786 197787 197788 197789 197790 197791 197792 | _ impe 1pl épinglons _ impe 2pl épinglez _ ppas mas sg épinglé _ ppas mas pl épinglés _ ppas fem sg épinglée _ ppas fem pl épinglées $ épisser 1__t____a _ infi épisser _ ppre épissant _ ipre 1sg épisse _ ipre 3sg épisse _ spre 1sg épisse _ spre 3sg épisse _ ipre 1isg épissè |
︙ | ︙ | |||
345890 345891 345892 345893 345894 345895 345896 345897 345898 345899 345900 345901 345902 345903 | _ impe 1pl reconfigurons _ impe 2pl reconfigurez _ ppas mas sg reconfiguré _ ppas mas pl reconfigurés _ ppas fem sg reconfigurée _ ppas fem pl reconfigurées $ reconfirmer 1__t_q_zz _ infi reconfirmer _ ppre reconfirmant _ ipre 1sg reconfirme _ ipre 3sg reconfirme _ spre 1sg reconfirme _ spre 3sg reconfirme | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 345998 345999 346000 346001 346002 346003 346004 346005 346006 346007 346008 346009 346010 346011 346012 346013 346014 346015 346016 346017 346018 346019 346020 346021 346022 346023 346024 346025 346026 346027 346028 346029 346030 346031 346032 346033 346034 346035 346036 346037 346038 346039 346040 346041 346042 346043 346044 346045 346046 346047 346048 346049 346050 346051 346052 346053 346054 346055 346056 346057 346058 346059 346060 346061 346062 346063 346064 346065 | _ impe 1pl reconfigurons _ impe 2pl reconfigurez _ ppas mas sg reconfiguré _ ppas mas pl reconfigurés _ ppas fem sg reconfigurée _ ppas fem pl reconfigurées $ reconfiner 1_it_q__a _ infi reconfiner _ ppre reconfinant _ ipre 1sg reconfine _ ipre 3sg reconfine _ spre 1sg reconfine _ spre 3sg reconfine _ ipre 1isg reconfinè _ ipre 2sg reconfines _ spre 2sg reconfines _ ipre 1pl reconfinons _ ipre 2pl reconfinez _ ipre 3pl reconfinent _ spre 3pl reconfinent _ iimp 1sg reconfinais _ iimp 2sg reconfinais _ iimp 3sg reconfinait _ iimp 1pl reconfinions _ spre 1pl reconfinions _ iimp 2pl reconfiniez _ spre 2pl reconfiniez _ iimp 3pl reconfinaient _ ipsi 1sg reconfinai _ ipsi 2sg reconfinas _ ipsi 3sg reconfina _ ipsi 1pl reconfinâmes _ ipsi 2pl reconfinâtes _ ipsi 3pl reconfinèrent _ ifut 1sg reconfinerai _ ifut 2sg reconfineras _ ifut 3sg reconfinera _ ifut 1pl reconfinerons _ ifut 2pl reconfinerez _ ifut 3pl reconfineront _ cond 1sg reconfinerais _ cond 2sg reconfinerais _ cond 3sg reconfinerait _ cond 1pl reconfinerions _ cond 2pl reconfineriez _ cond 3pl reconfineraient _ simp 1sg reconfinasse _ simp 2sg reconfinasses _ simp 3sg reconfinât _ simp 1pl reconfinassions _ simp 2pl reconfinassiez _ simp 3pl reconfinassent _ impe 2sg reconfine _ impe 1pl reconfinons _ impe 2pl reconfinez _ ppas mas sg reconfiné _ ppas mas pl reconfinés _ ppas fem sg reconfinée _ ppas fem pl reconfinées $ reconfirmer 1__t_q_zz _ infi reconfirmer _ ppre reconfirmant _ ipre 1sg reconfirme _ ipre 3sg reconfirme _ spre 1sg reconfirme _ spre 3sg reconfirme |
︙ | ︙ | |||
350152 350153 350154 350155 350156 350157 350158 | _ impe 1pl rediscutons _ impe 2pl rediscutez _ ppas mas sg rediscuté _ ppas mas pl rediscutés _ ppas fem sg rediscutée _ ppas fem pl rediscutées $ | | | 350314 350315 350316 350317 350318 350319 350320 350321 350322 350323 350324 350325 350326 350327 350328 | _ impe 1pl rediscutons _ impe 2pl rediscutez _ ppas mas sg rediscuté _ ppas mas pl rediscutés _ ppas fem sg rediscutée _ ppas fem pl rediscutées $ redisposer 1__t____a _ infi redisposer _ ppre redisposant _ ipre 1sg redispose _ ipre 3sg redispose _ spre 1sg redispose _ spre 3sg redispose _ ipre 1isg redisposè |
︙ | ︙ | |||
377200 377201 377202 377203 377204 377205 377206 377207 377208 377209 377210 377211 377212 377213 | _ simp 1pl retranscrivissions _ simp 2pl retranscrivissiez _ simp 3pl retranscrivissent _ impe 2sg retranscris _ impe 1pl retranscrivons _ impe 2pl retranscrivez $ retransformer 1__t_q_zz _ infi retransformer _ ppre retransformant _ ipre 1sg retransforme _ ipre 3sg retransforme _ spre 1sg retransforme _ spre 3sg retransforme | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 377362 377363 377364 377365 377366 377367 377368 377369 377370 377371 377372 377373 377374 377375 377376 377377 377378 377379 377380 377381 377382 377383 377384 377385 377386 377387 377388 377389 377390 377391 377392 377393 377394 377395 377396 377397 377398 377399 377400 377401 377402 377403 377404 377405 377406 377407 377408 377409 377410 377411 377412 377413 377414 377415 377416 377417 377418 377419 377420 377421 377422 377423 377424 377425 377426 377427 377428 377429 377430 377431 377432 377433 377434 377435 377436 377437 377438 377439 377440 377441 | _ simp 1pl retranscrivissions _ simp 2pl retranscrivissiez _ simp 3pl retranscrivissent _ impe 2sg retranscris _ impe 1pl retranscrivons _ impe 2pl retranscrivez $ retransférer 1__t____a _ infi retransférer _ ppre retransférant _ ipre 1sg retransfère _ ipre 3sg retransfère _ spre 1sg retransfère _ spre 3sg retransfère _ ipre 1isg retransférè _ ipre 2sg retransfères _ spre 2sg retransfères _ ipre 1pl retransférons _ ipre 2pl retransférez _ ipre 3pl retransfèrent _ spre 3pl retransfèrent _ iimp 1sg retransférais _ iimp 2sg retransférais _ iimp 3sg retransférait _ iimp 1pl retransférions _ spre 1pl retransférions _ iimp 2pl retransfériez _ spre 2pl retransfériez _ iimp 3pl retransféraient _ ipsi 1sg retransférai _ ipsi 2sg retransféras _ ipsi 3sg retransféra _ ipsi 1pl retransférâmes _ ipsi 2pl retransférâtes _ ipsi 3pl retransférèrent _ ifut 1sg retransférerai _ ifut 1sg retransfèrerai _ ifut 2sg retransféreras _ ifut 2sg retransfèreras _ ifut 3sg retransférera _ ifut 3sg retransfèrera _ ifut 1pl retransférerons _ ifut 1pl retransfèrerons _ ifut 2pl retransférerez _ ifut 2pl retransfèrerez _ ifut 3pl retransféreront _ ifut 3pl retransfèreront _ cond 1sg retransférerais _ cond 2sg retransférerais _ cond 1sg retransfèrerais _ cond 2sg retransfèrerais _ cond 3sg retransférerait _ cond 3sg retransfèrerait _ cond 1pl retransférerions _ cond 1pl retransfèrerions _ cond 2pl retransféreriez _ cond 2pl retransfèreriez _ cond 3pl retransféreraient _ cond 3pl retransfèreraient _ simp 1sg retransférasse _ simp 2sg retransférasses _ simp 3sg retransférât _ simp 1pl retransférassions _ simp 2pl retransférassiez _ simp 3pl retransférassent _ impe 2sg retransfère _ impe 1pl retransférons _ impe 2pl retransférez _ ppas mas sg retransféré _ ppas mas pl retransférés _ ppas fem sg retransférée _ ppas fem pl retransférées $ retransformer 1__t_q_zz _ infi retransformer _ ppre retransformant _ ipre 1sg retransforme _ ipre 3sg retransforme _ spre 1sg retransforme _ spre 3sg retransforme |
︙ | ︙ | |||
439755 439756 439757 439758 439759 439760 439761 | _ simp 2pl voguassiez _ simp 3pl voguassent _ impe 2sg vogue _ impe 1pl voguons _ impe 2pl voguez _ ppas epi inv vogué $ | | | 439983 439984 439985 439986 439987 439988 439989 439990 439991 439992 439993 439994 439995 439996 439997 | _ simp 2pl voguassiez _ simp 3pl voguassent _ impe 2sg vogue _ impe 1pl voguons _ impe 2pl voguez _ ppas epi inv vogué $ voiler 1_it_q__a _ infi voiler _ ppre voilant _ ipre 1sg voile _ ipre 3sg voile _ spre 1sg voile _ spre 3sg voile _ ipre 1isg voilè |
︙ | ︙ |
Modified gc_lang/fr/data/dictDecl.txt from [f8dc093fcc] to [0d33f5fe5e].
︙ | ︙ | |||
6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 | _ nom fem sg alberge _ nom fem pl alberges $ albergier S*() _ nom mas sg albergier _ nom mas pl albergiers $ albigeois F*() _ nom adj mas inv albigeois _ nom adj fem sg albigeoise _ nom adj fem pl albigeoises $ albinisme S*() _ nom mas sg albinisme | > > > > > > | 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 | _ nom fem sg alberge _ nom fem pl alberges $ albergier S*() _ nom mas sg albergier _ nom mas pl albergiers $ albertain F*() _ nom adj mas sg albertain _ nom adj mas pl albertains _ nom adj fem sg albertaine _ nom adj fem pl albertaines $ albigeois F*() _ nom adj mas inv albigeois _ nom adj fem sg albigeoise _ nom adj fem pl albigeoises $ albinisme S*() _ nom mas sg albinisme |
︙ | ︙ | |||
10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 | _ nom mas sg analyseur _ nom mas pl analyseurs $ analyste S*() _ nom epi sg analyste _ nom epi pl analystes $ analyticité S*() _ nom fem sg analyticité _ nom fem pl analyticités $ analytique S*() _ adj epi sg analytique _ adj epi pl analytiques | > > > > | 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 | _ nom mas sg analyseur _ nom mas pl analyseurs $ analyste S*() _ nom epi sg analyste _ nom epi pl analystes $ analyte S*() _ nom mas sg analyte _ nom mas pl analytes $ analyticité S*() _ nom fem sg analyticité _ nom fem pl analyticités $ analytique S*() _ adj epi sg analytique _ adj epi pl analytiques |
︙ | ︙ | |||
64756 64757 64758 64759 64760 64761 64762 64763 64764 64765 64766 64767 64768 64769 | _ nom fem sg cyclogenèse _ nom fem pl cyclogenèses $ cyclohexane S.() _ nom mas sg cyclohexane _ nom mas pl cyclohexanes $ cyclohexanone S.() _ nom fem sg cyclohexanone _ nom fem pl cyclohexanones $ cycloïdal W.() _ adj mas sg cycloïdal _ adj mas pl cycloïdaux | > > > > | 64766 64767 64768 64769 64770 64771 64772 64773 64774 64775 64776 64777 64778 64779 64780 64781 64782 64783 | _ nom fem sg cyclogenèse _ nom fem pl cyclogenèses $ cyclohexane S.() _ nom mas sg cyclohexane _ nom mas pl cyclohexanes $ cyclohexanol S.() _ nom mas sg cyclohexanol _ nom mas pl cyclohexanols $ cyclohexanone S.() _ nom fem sg cyclohexanone _ nom fem pl cyclohexanones $ cycloïdal W.() _ adj mas sg cycloïdal _ adj mas pl cycloïdaux |
︙ | ︙ | |||
66352 66353 66354 66355 66356 66357 66358 66359 66360 66361 66362 66363 66364 66365 | _ nom mas sg débrumage _ nom mas pl débrumages $ débudgétisation S.() _ nom fem sg débudgétisation _ nom fem pl débudgétisations $ débureaucratisation S.() _ nom fem sg débureaucratisation _ nom fem pl débureaucratisations $ débusquement S.() _ nom mas sg débusquement _ nom mas pl débusquements | > > > > | 66366 66367 66368 66369 66370 66371 66372 66373 66374 66375 66376 66377 66378 66379 66380 66381 66382 66383 | _ nom mas sg débrumage _ nom mas pl débrumages $ débudgétisation S.() _ nom fem sg débudgétisation _ nom fem pl débudgétisations $ débugueur S.() _ nom mas sg débugueur _ nom mas pl débugueurs $ débureaucratisation S.() _ nom fem sg débureaucratisation _ nom fem pl débureaucratisations $ débusquement S.() _ nom mas sg débusquement _ nom mas pl débusquements |
︙ | ︙ | |||
66600 66601 66602 66603 66604 66605 66606 66607 66608 66609 66610 66611 66612 66613 | _ nom mas sg décapsuleur _ nom mas pl décapsuleurs $ décarbonatation S.() _ nom fem sg décarbonatation _ nom fem pl décarbonatations $ décarboxylase S.() _ nom fem sg décarboxylase _ nom fem pl décarboxylases $ décarboxylation S.() _ nom fem sg décarboxylation _ nom fem pl décarboxylations | > > > > | 66618 66619 66620 66621 66622 66623 66624 66625 66626 66627 66628 66629 66630 66631 66632 66633 66634 66635 | _ nom mas sg décapsuleur _ nom mas pl décapsuleurs $ décarbonatation S.() _ nom fem sg décarbonatation _ nom fem pl décarbonatations $ décarbonation S.() _ nom fem sg décarbonation _ nom fem pl décarbonations $ décarboxylase S.() _ nom fem sg décarboxylase _ nom fem pl décarboxylases $ décarboxylation S.() _ nom fem sg décarboxylation _ nom fem pl décarboxylations |
︙ | ︙ | |||
77199 77200 77201 77202 77203 77204 77205 77206 77207 77208 77209 77210 77211 77212 | _ adj fem sg distinctive _ adj fem pl distinctives $ distinction S.() _ nom fem sg distinction _ nom fem pl distinctions $ distinguable S.() _ adj epi sg distinguable _ adj epi pl distinguables $ distinguo S.() _ nom mas sg distinguo _ nom mas pl distinguos | > > > > | 77221 77222 77223 77224 77225 77226 77227 77228 77229 77230 77231 77232 77233 77234 77235 77236 77237 77238 | _ adj fem sg distinctive _ adj fem pl distinctives $ distinction S.() _ nom fem sg distinction _ nom fem pl distinctions $ distinctivité S.() _ nom fem sg distinctivité _ nom fem pl distinctivités $ distinguable S.() _ adj epi sg distinguable _ adj epi pl distinguables $ distinguo S.() _ nom mas sg distinguo _ nom mas pl distinguos |
︙ | ︙ | |||
81324 81325 81326 81327 81328 81329 81330 81331 81332 81333 81334 81335 81336 81337 | _ nom fem sg écloserie _ nom fem pl écloseries $ éclosion S*() _ nom fem sg éclosion _ nom fem pl éclosions $ éclusage S*() _ nom mas sg éclusage _ nom mas pl éclusages $ écluse S*() _ nom fem sg écluse _ nom fem pl écluses | > > > > | 81350 81351 81352 81353 81354 81355 81356 81357 81358 81359 81360 81361 81362 81363 81364 81365 81366 81367 | _ nom fem sg écloserie _ nom fem pl écloseries $ éclosion S*() _ nom fem sg éclosion _ nom fem pl éclosions $ éclosoir S*() _ nom mas sg éclosoir _ nom mas pl éclosoirs $ éclusage S*() _ nom mas sg éclusage _ nom mas pl éclusages $ écluse S*() _ nom fem sg écluse _ nom fem pl écluses |
︙ | ︙ | |||
84713 84714 84715 84716 84717 84718 84719 84720 84721 84722 84723 84724 84725 84726 | $ éminati F*() _ nom adj mas sg éminati _ nom adj mas pl éminatis _ nom adj fem sg éminatie _ nom adj fem pl éminaties $ éminence S*() _ nom fem sg éminence _ nom fem pl éminences $ éminent F*() _ adj mas sg éminent _ adj mas pl éminents | > > > > | 84743 84744 84745 84746 84747 84748 84749 84750 84751 84752 84753 84754 84755 84756 84757 84758 84759 84760 | $ éminati F*() _ nom adj mas sg éminati _ nom adj mas pl éminatis _ nom adj fem sg éminatie _ nom adj fem pl éminaties $ émincé S*() _ nom mas sg émincé _ nom mas pl émincés $ éminence S*() _ nom fem sg éminence _ nom fem pl éminences $ éminent F*() _ adj mas sg éminent _ adj mas pl éminents |
︙ | ︙ | |||
87608 87609 87610 87611 87612 87613 87614 87615 87616 87617 87618 87619 87620 87621 | _ nom fem sg entérocolite _ nom fem pl entérocolites $ entérocoque S*() _ nom mas sg entérocoque _ nom mas pl entérocoques $ entérokinase S*() _ nom fem sg entérokinase _ nom fem pl entérokinases $ entérologie S*() _ nom fem sg entérologie _ nom fem pl entérologies | > > > > | 87642 87643 87644 87645 87646 87647 87648 87649 87650 87651 87652 87653 87654 87655 87656 87657 87658 87659 | _ nom fem sg entérocolite _ nom fem pl entérocolites $ entérocoque S*() _ nom mas sg entérocoque _ nom mas pl entérocoques $ entérocyte S*() _ nom mas sg entérocyte _ nom mas pl entérocytes $ entérokinase S*() _ nom fem sg entérokinase _ nom fem pl entérokinases $ entérologie S*() _ nom fem sg entérologie _ nom fem pl entérologies |
︙ | ︙ | |||
103220 103221 103222 103223 103224 103225 103226 103227 103228 103229 103230 103231 103232 103233 | _ nom adj epi pl franco-monégasques $ franco-néerlandais F.() _ nom adj mas inv franco-néerlandais _ nom adj fem sg franco-néerlandaise _ nom adj fem pl franco-néerlandaises $ franco-norvégien F,() _ nom adj mas sg franco-norvégien _ nom adj mas pl franco-norvégiens _ nom adj fem sg franco-norvégienne _ nom adj fem pl franco-norvégiennes $ franco-pakistanais F.() | > > > > > > | 103258 103259 103260 103261 103262 103263 103264 103265 103266 103267 103268 103269 103270 103271 103272 103273 103274 103275 103276 103277 | _ nom adj epi pl franco-monégasques $ franco-néerlandais F.() _ nom adj mas inv franco-néerlandais _ nom adj fem sg franco-néerlandaise _ nom adj fem pl franco-néerlandaises $ franconien F+() _ nom adj mas sg franconien _ nom adj mas pl franconiens _ nom adj fem sg franconienne _ nom adj fem pl franconiennes $ franco-norvégien F,() _ nom adj mas sg franco-norvégien _ nom adj mas pl franco-norvégiens _ nom adj fem sg franco-norvégienne _ nom adj fem pl franco-norvégiennes $ franco-pakistanais F.() |
︙ | ︙ | |||
108295 108296 108297 108298 108299 108300 108301 108302 108303 108304 108305 108306 108307 108308 | _ nom fem sg géopolitique _ nom fem pl géopolitiques $ géopolitologue S.() _ nom epi sg géopolitologue _ nom epi pl géopolitologues $ géopotentiel F,() _ adj mas sg géopotentiel _ adj mas pl géopotentiels _ adj fem sg géopotentielle _ adj fem pl géopotentielles $ géoréférencement S.() | > > > > | 108339 108340 108341 108342 108343 108344 108345 108346 108347 108348 108349 108350 108351 108352 108353 108354 108355 108356 | _ nom fem sg géopolitique _ nom fem pl géopolitiques $ géopolitologue S.() _ nom epi sg géopolitologue _ nom epi pl géopolitologues $ géopositionnement S.() _ nom mas sg géopositionnement _ nom mas pl géopositionnements $ géopotentiel F,() _ adj mas sg géopotentiel _ adj mas pl géopotentiels _ adj fem sg géopotentielle _ adj fem pl géopotentielles $ géoréférencement S.() |
︙ | ︙ | |||
113089 113090 113091 113092 113093 113094 113095 113096 113097 113098 113099 113100 113101 113102 | _ nom mas sg grippement _ nom mas pl grippements $ grippe-sou S.() _ nom adj epi sg grippe-sou _ nom adj epi pl grippe-sous $ gris F.() _ nom adj mas inv gris _ nom adj fem sg grise _ nom adj fem pl grises $ grisaille S.() _ nom fem sg grisaille | > > > > | 113137 113138 113139 113140 113141 113142 113143 113144 113145 113146 113147 113148 113149 113150 113151 113152 113153 113154 | _ nom mas sg grippement _ nom mas pl grippements $ grippe-sou S.() _ nom adj epi sg grippe-sou _ nom adj epi pl grippe-sous $ grippette S.() _ nom fem sg grippette _ nom fem pl grippettes $ gris F.() _ nom adj mas inv gris _ nom adj fem sg grise _ nom adj fem pl grises $ grisaille S.() _ nom fem sg grisaille |
︙ | ︙ | |||
124226 124227 124228 124229 124230 124231 124232 124233 124234 124235 124236 124237 124238 124239 | _ nom epi sg immunologiste _ nom epi pl immunologistes $ immunologue S*() _ nom epi sg immunologue _ nom epi pl immunologues $ immunopathologie S*() _ nom fem sg immunopathologie _ nom fem pl immunopathologies $ immunopathologique S*() _ adj epi sg immunopathologique _ adj epi pl immunopathologiques | > > > > > > | 124278 124279 124280 124281 124282 124283 124284 124285 124286 124287 124288 124289 124290 124291 124292 124293 124294 124295 124296 124297 | _ nom epi sg immunologiste _ nom epi pl immunologistes $ immunologue S*() _ nom epi sg immunologue _ nom epi pl immunologues $ immunomodulateur Fi() _ adj mas sg immunomodulateur _ adj mas pl immunomodulateurs _ adj fem sg immunomodulatrice _ adj fem pl immunomodulatrices $ immunopathologie S*() _ nom fem sg immunopathologie _ nom fem pl immunopathologies $ immunopathologique S*() _ adj epi sg immunopathologique _ adj epi pl immunopathologiques |
︙ | ︙ | |||
132401 132402 132403 132404 132405 132406 132407 132408 132409 132410 132411 132412 132413 132414 | $ intracrânien F+() _ adj mas sg intracrânien _ adj mas pl intracrâniens _ adj fem sg intracrânienne _ adj fem pl intracrâniennes $ intradermique S*() _ adj epi sg intradermique _ adj epi pl intradermiques $ intradermoréaction S*() _ nom fem sg intradermoréaction _ nom fem pl intradermoréactions | > > > > | 132459 132460 132461 132462 132463 132464 132465 132466 132467 132468 132469 132470 132471 132472 132473 132474 132475 132476 | $ intracrânien F+() _ adj mas sg intracrânien _ adj mas pl intracrâniens _ adj fem sg intracrânienne _ adj fem pl intracrâniennes $ intracytoplasmique S*() _ adj epi sg intracytoplasmique _ adj epi pl intracytoplasmiques $ intradermique S*() _ adj epi sg intradermique _ adj epi pl intradermiques $ intradermoréaction S*() _ nom fem sg intradermoréaction _ nom fem pl intradermoréactions |
︙ | ︙ | |||
142453 142454 142455 142456 142457 142458 142459 142460 142461 142462 142463 142464 142465 142466 | _ nom mas sg linteau _ nom mas pl linteaux $ linter S.() _ nom mas sg linter _ nom mas pl linters $ lion F,() _ nom mas sg lion _ nom mas pl lions _ nom fem sg lionne _ nom fem pl lionnes $ lionceau X.() | > > > > > > | 142515 142516 142517 142518 142519 142520 142521 142522 142523 142524 142525 142526 142527 142528 142529 142530 142531 142532 142533 142534 | _ nom mas sg linteau _ nom mas pl linteaux $ linter S.() _ nom mas sg linter _ nom mas pl linters $ linuxien F+() _ nom mas sg linuxien _ nom mas pl linuxiens _ nom fem sg linuxienne _ nom fem pl linuxiennes $ lion F,() _ nom mas sg lion _ nom mas pl lions _ nom fem sg lionne _ nom fem pl lionnes $ lionceau X.() |
︙ | ︙ | |||
155069 155070 155071 155072 155073 155074 155075 155076 155077 155078 155079 155080 155081 155082 | _ adj epi sg microphysique _ adj epi pl microphysiques $ micropilule S.() _ nom fem sg micropilule _ nom fem pl micropilules $ microplaquette S.() _ nom fem sg microplaquette _ nom fem pl microplaquettes $ microplastique S.() _ nom mas sg microplastique _ nom mas pl microplastiques | > > > > | 155137 155138 155139 155140 155141 155142 155143 155144 155145 155146 155147 155148 155149 155150 155151 155152 155153 155154 | _ adj epi sg microphysique _ adj epi pl microphysiques $ micropilule S.() _ nom fem sg micropilule _ nom fem pl micropilules $ micropipette S.() _ nom fem sg micropipette _ nom fem pl micropipettes $ microplaquette S.() _ nom fem sg microplaquette _ nom fem pl microplaquettes $ microplastique S.() _ nom mas sg microplastique _ nom mas pl microplastiques |
︙ | ︙ | |||
155252 155253 155254 155255 155256 155257 155258 155259 155260 155261 155262 155263 155264 155265 | _ nom fem sg microtravailleuse _ nom fem pl microtravailleuses $ microtubule S.() _ nom mas sg microtubule _ nom mas pl microtubules $ microvillosité S.() _ nom fem sg microvillosité _ nom fem pl microvillosités $ microzoaire S.() _ nom mas sg microzoaire _ nom mas pl microzoaires | > > > > | 155324 155325 155326 155327 155328 155329 155330 155331 155332 155333 155334 155335 155336 155337 155338 155339 155340 155341 | _ nom fem sg microtravailleuse _ nom fem pl microtravailleuses $ microtubule S.() _ nom mas sg microtubule _ nom mas pl microtubules $ microvascularisation S.() _ nom fem sg microvascularisation _ nom fem pl microvascularisations $ microvillosité S.() _ nom fem sg microvillosité _ nom fem pl microvillosités $ microzoaire S.() _ nom mas sg microzoaire _ nom mas pl microzoaires |
︙ | ︙ | |||
155437 155438 155439 155440 155441 155442 155443 155444 155445 155446 155447 155448 155449 155450 | _ nom fem sg mijaurée _ nom fem pl mijaurées $ mijotage S.() _ nom mas sg mijotage _ nom mas pl mijotages $ mijoteuse S.() _ nom fem sg mijoteuse _ nom fem pl mijoteuses $ mikado S.() _ nom mas sg mikado _ nom mas pl mikados | > > > > | 155513 155514 155515 155516 155517 155518 155519 155520 155521 155522 155523 155524 155525 155526 155527 155528 155529 155530 | _ nom fem sg mijaurée _ nom fem pl mijaurées $ mijotage S.() _ nom mas sg mijotage _ nom mas pl mijotages $ mijoté S.() _ nom mas sg mijoté _ nom mas pl mijotés $ mijoteuse S.() _ nom fem sg mijoteuse _ nom fem pl mijoteuses $ mikado S.() _ nom mas sg mikado _ nom mas pl mikados |
︙ | ︙ | |||
174871 174872 174873 174874 174875 174876 174877 174878 174879 174880 174881 174882 174883 174884 | _ nom fem sg pallidectomie _ nom fem pl pallidectomies $ pallidum S.() _ nom mas sg pallidum _ nom mas pl pallidums $ pallikare S.() _ nom mas sg pallikare _ nom mas pl pallikares $ pallium S.() _ nom mas sg pallium _ nom mas pl palliums | > > > > | 174951 174952 174953 174954 174955 174956 174957 174958 174959 174960 174961 174962 174963 174964 174965 174966 174967 174968 | _ nom fem sg pallidectomie _ nom fem pl pallidectomies $ pallidum S.() _ nom mas sg pallidum _ nom mas pl pallidums $ pallière S.() _ nom fem sg pallière _ nom fem pl pallières $ pallikare S.() _ nom mas sg pallikare _ nom mas pl pallikares $ pallium S.() _ nom mas sg pallium _ nom mas pl palliums |
︙ | ︙ | |||
198014 198015 198016 198017 198018 198019 198020 198021 198022 198023 198024 198025 198026 198027 | _ nom mas sg prunellidé _ nom mas pl prunellidés $ prunellier S.() _ nom mas sg prunellier _ nom mas pl prunelliers $ prunier S.() _ nom mas sg prunier _ nom mas pl pruniers $ prurigineux W.() _ adj mas inv prurigineux _ adj fem sg prurigineuse | > > > > | 198098 198099 198100 198101 198102 198103 198104 198105 198106 198107 198108 198109 198110 198111 198112 198113 198114 198115 | _ nom mas sg prunellidé _ nom mas pl prunellidés $ prunellier S.() _ nom mas sg prunellier _ nom mas pl prunelliers $ pruniculture S.() _ nom fem sg pruniculture _ nom fem pl prunicultures $ prunier S.() _ nom mas sg prunier _ nom mas pl pruniers $ prurigineux W.() _ adj mas inv prurigineux _ adj fem sg prurigineuse |
︙ | ︙ | |||
205441 205442 205443 205444 205445 205446 205447 205448 205449 205450 205451 205452 205453 205454 | _ adj epi sg reconfigurable _ adj epi pl reconfigurables $ reconfiguration S.() _ nom fem sg reconfiguration _ nom fem pl reconfigurations $ réconfort S.() _ nom mas sg réconfort _ nom mas pl réconforts $ réconfortant F.() _ nom adj mas sg réconfortant _ nom adj mas pl réconfortants | > > > > | 205529 205530 205531 205532 205533 205534 205535 205536 205537 205538 205539 205540 205541 205542 205543 205544 205545 205546 | _ adj epi sg reconfigurable _ adj epi pl reconfigurables $ reconfiguration S.() _ nom fem sg reconfiguration _ nom fem pl reconfigurations $ reconfinement S.() _ nom mas sg reconfinement _ nom mas pl reconfinements $ réconfort S.() _ nom mas sg réconfort _ nom mas pl réconforts $ réconfortant F.() _ nom adj mas sg réconfortant _ nom adj mas pl réconfortants |
︙ | ︙ | |||
208934 208935 208936 208937 208938 208939 208940 208941 208942 208943 208944 208945 208946 208947 | _ nom mas sg replat _ nom mas pl replats $ replâtrage S.() _ nom mas sg replâtrage _ nom mas pl replâtrages $ replet F.() _ adj mas sg replet _ adj mas pl replets _ adj fem sg replète _ adj fem pl replètes $ réplétif F.() | > > > > | 209026 209027 209028 209029 209030 209031 209032 209033 209034 209035 209036 209037 209038 209039 209040 209041 209042 209043 | _ nom mas sg replat _ nom mas pl replats $ replâtrage S.() _ nom mas sg replâtrage _ nom mas pl replâtrages $ replay S.() _ nom mas sg replay _ nom mas pl replays $ replet F.() _ adj mas sg replet _ adj mas pl replets _ adj fem sg replète _ adj fem pl replètes $ réplétif F.() |
︙ | ︙ | |||
209475 209476 209477 209478 209479 209480 209481 209482 209483 209484 209485 209486 209487 209488 | _ nom mas sg réséda _ nom mas pl résédas $ réserpine S.() _ nom fem sg réserpine _ nom fem pl réserpines $ réservataire S.() _ nom adj epi sg réservataire _ nom adj epi pl réservataires $ réservation S.() _ nom fem sg réservation _ nom fem pl réservations | > > > > | 209571 209572 209573 209574 209575 209576 209577 209578 209579 209580 209581 209582 209583 209584 209585 209586 209587 209588 | _ nom mas sg réséda _ nom mas pl résédas $ réserpine S.() _ nom fem sg réserpine _ nom fem pl réserpines $ réservable S.() _ adj epi sg réservable _ adj epi pl réservables $ réservataire S.() _ nom adj epi sg réservataire _ nom adj epi pl réservataires $ réservation S.() _ nom fem sg réservation _ nom fem pl réservations |
︙ | ︙ | |||
213523 213524 213525 213526 213527 213528 213529 213530 213531 213532 213533 213534 213535 213536 | _ adj fem sg rotacée _ adj fem pl rotacées $ rotamère S.() _ nom mas sg rotamère _ nom mas pl rotamères $ rotang S.() _ nom mas sg rotang _ nom mas pl rotangs $ rotarien S.() _ nom mas sg rotarien _ nom mas pl rotariens | > > > > | 213623 213624 213625 213626 213627 213628 213629 213630 213631 213632 213633 213634 213635 213636 213637 213638 213639 213640 | _ adj fem sg rotacée _ adj fem pl rotacées $ rotamère S.() _ nom mas sg rotamère _ nom mas pl rotamères $ rotamètre S.() _ nom mas sg rotamètre _ nom mas pl rotamètres $ rotang S.() _ nom mas sg rotang _ nom mas pl rotangs $ rotarien S.() _ nom mas sg rotarien _ nom mas pl rotariens |
︙ | ︙ | |||
236958 236959 236960 236961 236962 236963 236964 236965 236966 236967 236968 236969 236970 236971 | _ adj epi sg technobureaucratique _ adj epi pl technobureaucratiques $ techno-bureaucratique S.() _ adj epi sg techno-bureaucratique _ adj epi pl techno-bureaucratiques $ technocrate S.() _ nom epi sg technocrate _ nom epi pl technocrates $ technocratie S.() _ nom fem sg technocratie _ nom fem pl technocraties | > > > > | 237062 237063 237064 237065 237066 237067 237068 237069 237070 237071 237072 237073 237074 237075 237076 237077 237078 237079 | _ adj epi sg technobureaucratique _ adj epi pl technobureaucratiques $ techno-bureaucratique S.() _ adj epi sg techno-bureaucratique _ adj epi pl techno-bureaucratiques $ technocapitalisme S.() _ nom mas sg technocapitalisme _ nom mas pl technocapitalismes $ technocrate S.() _ nom epi sg technocrate _ nom epi pl technocrates $ technocratie S.() _ nom fem sg technocratie _ nom fem pl technocraties |
︙ | ︙ | |||
237313 237314 237315 237316 237317 237318 237319 237320 237321 237322 237323 237324 237325 237326 | _ nom fem sg télécommande _ nom fem pl télécommandes $ télécommunication S.() _ nom fem sg télécommunication _ nom fem pl télécommunications $ téléconduit F.() _ adj mas sg téléconduit _ adj mas pl téléconduits _ adj fem sg téléconduite _ adj fem pl téléconduites $ téléconduite S.() | > > > > | 237421 237422 237423 237424 237425 237426 237427 237428 237429 237430 237431 237432 237433 237434 237435 237436 237437 237438 | _ nom fem sg télécommande _ nom fem pl télécommandes $ télécommunication S.() _ nom fem sg télécommunication _ nom fem pl télécommunications $ téléconcert S.() _ nom mas sg téléconcert _ nom mas pl téléconcerts $ téléconduit F.() _ adj mas sg téléconduit _ adj mas pl téléconduits _ adj fem sg téléconduite _ adj fem pl téléconduites $ téléconduite S.() |
︙ | ︙ | |||
238978 238979 238980 238981 238982 238983 238984 238985 238986 238987 238988 238989 238990 238991 | _ nom mas sg tesseract _ nom mas pl tesseracts $ tessère S.() _ nom fem sg tessère _ nom fem pl tessères $ tessiture S.() _ nom fem sg tessiture _ nom fem pl tessitures $ tesson S.() _ nom mas sg tesson _ nom mas pl tessons | > > > > > | 239090 239091 239092 239093 239094 239095 239096 239097 239098 239099 239100 239101 239102 239103 239104 239105 239106 239107 239108 | _ nom mas sg tesseract _ nom mas pl tesseracts $ tessère S.() _ nom fem sg tessère _ nom fem pl tessères $ tessinois F.() _ nom adj mas inv tessinois _ nom adj fem sg tessinoise _ nom adj fem pl tessinoises $ tessiture S.() _ nom fem sg tessiture _ nom fem pl tessitures $ tesson S.() _ nom mas sg tesson _ nom mas pl tessons |
︙ | ︙ | |||
239956 239957 239958 239959 239960 239961 239962 239963 239964 239965 239966 239967 239968 239969 | _ nom mas sg thermoacidophile _ nom mas pl thermoacidophiles $ thermoacoustique S.() _ nom fem sg thermoacoustique _ nom fem pl thermoacoustiques $ thermocautère S.() _ nom mas sg thermocautère _ nom mas pl thermocautères $ thermochimie S.() _ nom fem sg thermochimie _ nom fem pl thermochimies | > > > > | 240073 240074 240075 240076 240077 240078 240079 240080 240081 240082 240083 240084 240085 240086 240087 240088 240089 240090 | _ nom mas sg thermoacidophile _ nom mas pl thermoacidophiles $ thermoacoustique S.() _ nom fem sg thermoacoustique _ nom fem pl thermoacoustiques $ thermobalance S.() _ nom fem sg thermobalance _ nom fem pl thermobalances $ thermocautère S.() _ nom mas sg thermocautère _ nom mas pl thermocautères $ thermochimie S.() _ nom fem sg thermochimie _ nom fem pl thermochimies |
︙ | ︙ | |||
240086 240087 240088 240089 240090 240091 240092 240093 240094 240095 240096 240097 240098 240099 | _ nom fem sg thermographie _ nom fem pl thermographies $ thermographique S.() _ adj epi sg thermographique _ adj epi pl thermographiques $ thermogravimétrie S.() _ nom fem sg thermogravimétrie _ nom fem pl thermogravimétries $ thermogravimétrique S.() _ adj epi sg thermogravimétrique _ adj epi pl thermogravimétriques | > > > > | 240207 240208 240209 240210 240211 240212 240213 240214 240215 240216 240217 240218 240219 240220 240221 240222 240223 240224 | _ nom fem sg thermographie _ nom fem pl thermographies $ thermographique S.() _ adj epi sg thermographique _ adj epi pl thermographiques $ thermogravimètre S.() _ nom mas sg thermogravimètre _ nom mas pl thermogravimètres $ thermogravimétrie S.() _ nom fem sg thermogravimétrie _ nom fem pl thermogravimétries $ thermogravimétrique S.() _ adj epi sg thermogravimétrique _ adj epi pl thermogravimétriques |
︙ | ︙ | |||
256754 256755 256756 256757 256758 256759 256760 256761 256762 256763 256764 256765 256766 256767 | _ nom mas pl winchs _ nom mas pl winches $ winchester S.() _ nom epi sg winchester _ nom epi pl winchesters $ windsurf S.() _ nom mas sg windsurf _ nom mas pl windsurfs $ winstub S.() _ nom fem sg winstub _ nom fem pl winstubs | > > > > > > | 256879 256880 256881 256882 256883 256884 256885 256886 256887 256888 256889 256890 256891 256892 256893 256894 256895 256896 256897 256898 | _ nom mas pl winchs _ nom mas pl winches $ winchester S.() _ nom epi sg winchester _ nom epi pl winchesters $ windowsien F+() _ nom mas sg windowsien _ nom mas pl windowsiens _ nom fem sg windowsienne _ nom fem pl windowsiennes $ windsurf S.() _ nom mas sg windsurf _ nom mas pl windsurfs $ winstub S.() _ nom fem sg winstub _ nom fem pl winstubs |
︙ | ︙ |
Modified gc_lang/fr/data/phonet_simil.txt from [a259a1667c] to [9eb124f2b6].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # V1: 1pl -> nom (aiguillon aiguillons) # V2: présent 3sg -> nom /ppas (abrutie abruties abrutis abrutit) a as à ha ah abaisse abaisses abaissent abbesse abbesses aboie aboies aboient abois abord abord abhorre abhorres abhorrent ace aces ès esse esses accès axer accent accents axant accueil accueils accueille accueilles accueillent accro accros accroc accrocs achat achats hacha hachas achète achètes achètent hachette hachettes | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # V1: 1pl -> nom (aiguillon aiguillons) # V2: présent 3sg -> nom /ppas (abrutie abruties abrutis abrutit) a as à ha ah abaisse abaisses abaissent abbesse abbesses aboie aboies aboient abois abord abord abhorre abhorres abhorrent absolu absolus absolue absolues absolut absolût abstrait abstraits abstrais abstraies abstraient ace aces ès esse esses accès axer accent accents axant accueil accueils accueille accueilles accueillent accro accros accroc accrocs achat achats hacha hachas achète achètes achètent hachette hachettes |
︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 | amande amandes amende amendes amendent amandaie amandaies amender amanderaie amanderaies amenderais amenderait amenderaient amen amène amènes amènent ampli amplis emplis emplit an ans en anchois échoient échoit échoie échoient échouas échoua antre antres entre entres entrent appas appât appâts happa happas appareil appareils appareille appareilles appareillent appel appels appelle appelles appellent | > | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | amande amandes amende amendes amendent amandaie amandaies amender amanderaie amanderaies amenderais amenderait amenderaient amen amène amènes amènent ampli amplis emplis emplit an ans en anchois échoient échoit échoie échoient échouas échoua ancrer encrer antre antres entre entres entrent appas appât appâts happa happas appareil appareils appareille appareilles appareillent appel appels appelle appelles appellent aperçu aperçue aperçues aperçus aperçut aperçût après apprêt apprêts appui appuis appuie appuies appuient acquis acquit acquits ares arrhes art arts archée archées archer archers archet archets arête arêtes arrête arrêtes arrêtent assassinat assassinats assassina assassinas assassinât |
︙ | ︙ | |||
78 79 80 81 82 83 84 85 86 87 88 89 90 91 | bas bât bâts bah bassinet bassinets bassiner basilic basilics basilique basiliques bâton bâtons battons beau beaux baux beauté beautés botter beignet beignets baigner bête bêtes bette bettes beur beurs beurre beurre beurrent bit bits bite bites bitent bitte bittes bittent bloc blocs bloque bloques bloquent blouse blouses blousent blues bluff bluffs bluffe bluffes bluffent bois boit | > | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | bas bât bâts bah bassinet bassinets bassiner basilic basilics basilique basiliques bâton bâtons battons beau beaux baux beauté beautés botter beignet beignets baigner béni bénis bénie bénies bénit bénît bénits bête bêtes bette bettes beur beurs beurre beurre beurrent bit bits bite bites bitent bitte bittes bittent bloc blocs bloque bloques bloquent blouse blouses blousent blues bluff bluffs bluffe bluffes bluffent bois boit |
︙ | ︙ | |||
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | car cars carre carres carrent quart quarts caret carets carré carrés carrais carrait carraient carrez carné carnée carnés carnées carnet carnets carte cartes cartent kart karts casher kasher cachèrent ce se céleri céleris sellerie selleries celle celles sel sels selle selles sellent cèle cèles cèlent scelle scelles scellent cendre cendres sandre sandres cène saine saines scène scènes senne sennes sen Seine censé censés censée censées sensé sensés sensée sensées centon centons santon santons sentons cep ceps cèpe cèpes cerf cerfs serre serres serrent sers sert serf serfs ces ses sais sait saie saies cessions session sessions cet cette sept set sets chaine chaines chainent chaîne chaînes chaînent chêne chênes chair chairs chaire chaires cher chers chère chères chant chants champ champs chaud chauds chaux show shows chaut chaume chaumes chôme chômes chôment chas chat chats chah chahs shah shahs schah schahs cheikh cheikhs chèque chèques chic chics chique chiques chiquent chlore chlores clore choc chocs choque choques choquent choix choie choies choient choral chorals chorale chorales corral corrals chut chute chutes chutent | > > | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | car cars carre carres carrent quart quarts caret carets carré carrés carrais carrait carraient carrez carné carnée carnés carnées carnet carnets carte cartes cartent kart karts casher kasher cachèrent ce se céleri céleris sellerie selleries celer sceller seller scellé scellés celle celles sel sels selle selles sellent cèle cèles cèlent scelle scelles scellent cendre cendres sandre sandres cène saine saines scène scènes senne sennes sen Seine censé censés censée censées sensé sensés sensée sensées centon centons santon santons sentons cep ceps cèpe cèpes cerf cerfs serre serres serrent sers sert serf serfs ces ses sais sait saie saies cessions session sessions cet cette sept set sets chaine chaines chainent chaîne chaînes chaînent chêne chênes chair chairs chaire chaires cher chers chère chères chant chants champ champs chaud chauds chaux show shows chaut chaume chaumes chôme chômes chôment chas chat chats chah chahs shah shahs schah schahs chateaubriand chateaubriands châteaubriant châteaubriants cheikh cheikhs chèque chèques chic chics chique chiques chiquent chlore chlores clore choc chocs choque choques choquent choix choie choies choient choral chorals chorale chorales corral corrals chut chute chutes chutent |
︙ | ︙ | |||
204 205 206 207 208 209 210 | coron corons corromps corrompt corset corsets corser corsé cota cotas quota quotas cote cotes cotent côte côtes cotte cottes côté côtés coter cou cous coût coûts cout couts coup coups coud couds coucher couchers | < | 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | coron corons corromps corrompt corset corsets corser corsé cota cotas quota quotas cote cotes cotent côte côtes cotte cottes côté côtés coter cou cous coût coûts cout couts coup coups coud couds coucher couchers coulomb coulombs coulons couplet couplets coupler cour cours court courts coure coures courent courre couvant couvent couvents crachat crachats cracha crachas crachât crack cracks craque craques craquent krak kraks crac krach krachs crâne crânes crane cranes cranent |
︙ | ︙ | |||
236 237 238 239 240 241 242 | dan damne damnes damnent dans dent dents danse danses dansent dense denses date dates datent datte dattes dé dés dès dais des deal deals deale deales dealent déblai déblais déblaie déblaies déblaient | | > > > > | > > > > > > > > > > | | > > > | > > | > | > > > | 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | dan damne damnes damnent dans dent dents danse danses dansent dense denses date dates datent datte dattes dé dés dès dais des deal deals deale deales dealent déblai déblais déblaie déblaies déblaient déchu déchue déchues déchus déchut déchût décolère décolères décolèrent décollèrent décor décors décore décores décorent décrie décries décrient décris décrit décrits décrierai décrierais décrierait décrierez décrieraient décrirai décrirais décrirait décrirez décriraient décriera décrieras décrira décriras décrierons décrieront décrirons décriront décrue décrues décrus décrut décrût dédie dédies dédient dédis dédit dédits dédît dédierai dédierais dédierait dédierez dédiraient dédirai dédirais dédirait dédirez dédiraient dédiera dédieras dédira dédiras dédierons dédieront dédirons dédiront défi défis défie défies défient défit défît dégel dégels dégèle dégèles dégèlent délai délais délaie délaies délaient délégant délégants déléguant délierai délierais délierait délierez délieraient délirer délit délits délie délies délient dément déments démens démente démentes démentent déni dénis dénie dénies dénient départ départs dépare dépares déparent dépens dépends dépend desceller déceler desseller désir désirs désire désires désirent desserre desserres desserrent dessers dessert desserts détail détails détaille détailles détaillent détoner détonner dévierai dévierais dévierait dévierez dévirer devin devins devint devînt diagnostic diagnostics diagnostique diagnostiques diagnostiquent différenciable différenciables différentiable différentiables différenciation différenciations différentiation différentiations différencier différentier différant différent différents différend différends diffuse diffuses diffusent digest digests digeste digestes dîne dînes dînent dyne dynes dis dit dît dix discours discourt discourent discoure discoures discussion discussions discutions disparu disparus disparue disparues disparut disparût dissolu dissolus dissolue dissolues dissolut dissolût divergeant divergent divergents dot dots dote dotes dotent doigt doigts dois doit don dons dont dore dores dorent dors dort doublet doublets doublé doublés doubler du dû dus due dues dut dût dur durs dure dures durent dialysat dialysats dialysa dialysas dialysât écho échos écot écots éclair éclairs éclaire éclaires éclairent écrie écries écrient écrit écrits écris écriera écrieras écrira écriras écrierai écrierais écrierait écrierez écrieraient écrirai écrirais écrirait écrirez écriraient écrierons écrieront écrirons écriront écrou écrous écroue écroues écrouent égal égale égales égalent égailler égayer égard égards égare égares égarent éjaculat éjaculats éjacula éjaculas éjaculât élan élans hélant élisais élisait élisaient élisez Élysée Élysées élu élus élue élues élut élût émir émirs émirent emploi emplois emploie emploies emploient empreinte empreintes emprunte empruntes empruntent ancrage ancrages encrage encrages en-cours encours encourt encoure encoures encourent enfer enfers enferre enferres enferrent ennui ennuis ennuie ennuies ennuient en-tête entête en-têtes entêtes entretien entretiens entretient entrée entrées entrer entrevoie entrevoies entrevois entrevoit entrevoient envie envies envi envient envierons envieront environ environs envoi envois envoie envoies envoient envol envols envole envoles envolent épais épée épées épi épis épie épies épient épicé épicés épicée épicées épicer épisser équivalant équivalent équivalents errâmes Éram essai essais essaie essaies essaient essaye essayes essayent essor essors essore essores essorent étagère étagères étagèrent étai étais était étaient été étés étaie étaies étain étains éteint éteins étal étals étale étales étalent étang étangs étant étends étend être êtres hêtre hêtres eu eus eue eues eut eût us eux euh eusse eusses eussent us éveil éveils éveille éveilles éveillent exaucer exhausser excédant excédants excédent excédents excellant excellent excellents exclu exclue exclues exclus exclut exclût excluent exempt exempts exempte exemptes exemptent exil exils exile exiles exilent expierai expierais expierait expierez expieraient expirer exprès express expresse expresses exsudat exsudats exsuda exsudas exsudât extrait extraits extrais extraient extraie extraies extravagant extravagants extravaguant fabricant fabricants fabriquant fan fans fane fanes fanent faon faons fend fends face faces fasse fasses fassent fasce fasces facilité facilités faciliter failli faillie faillis faillies faillit faillît faire fer fers ferre ferres ferrent faisan faisans faisant fait faits fée fées far fard fards phare phares fatigant fatigants fatiguant faufil faufils faufile faufiles faufilent fausse fausses faussent fosses fosses fausset faussets fossé fossés fausser faux faut faîte faîtes fait faits faite faites fête fêtes fêtent fèces fesse fesses fessent félicité félicités féliciter ferment ferments fermant fermants feu feux feus feue feues feuillet feuillets feuillée feuillées fi fie fies fient fis fit fît fiction fictions fixions fief fiefs fieffe fieffes fieffent fier fiers fière fières fièrent fil fils file files filent fille filles filet filets filer |
︙ | ︙ | |||
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | gène gènes gêne gênes gênent genet genets genêt genêts gêner gin gins jean jeans jinn jinns djinn djinns glaciaire glaciaires glacière glacières glacèrent golf golfs golfe golfes golfent gosse gosses gausse gausses gaussent gauss Gauss goulet goulets goulée goulées grâce grâces grasse grasses granit granits granite granites granitent gré grès grill grills gril grils grille grilles grillent guère guerre guerres hâle hâles halle halles hall halls handicap handicaps handicape handicapes handicapent harde hardes arde ardes ardent hausse hausses haussent os haute hautes hôte hôtes hotte hotte ôte ôtes ôtent héro héros héraut hérauts heur heure heures heurt heurts hochet hochets hocher homme hommes ohm ohms heaume heaumes Hun Huns un uns hune hunes une unes hunnique hunniques unique uniques hutte huttes ut hydrolysat hydrolysats hydrolysa hydrolysas hydrolysât hyène hyènes yen yens i y hie hies | > > > | 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | gène gènes gêne gênes gênent genet genets genêt genêts gêner gin gins jean jeans jinn jinns djinn djinns glaciaire glaciaires glacière glacières glacèrent golf golfs golfe golfes golfent gosse gosses gausse gausses gaussent gauss Gauss goulet goulets goulée goulées goûter goutter goûters goûte goûtes goûtent goute goutes goutent goutte gouttes gouttent grâce grâces grasse grasses granit granits granite granites granitent gré grès grill grills gril grils grille grilles grillent guère guerre guerres hâle hâles halle halles hall halls handicap handicaps handicape handicapes handicapent harde hardes arde ardes ardent hausse hausses haussent os haute hautes hôte hôtes hotte hotte ôte ôtes ôtent héro héros héraut hérauts heur heure heures heurt heurts hochet hochets hocher homme hommes ohm ohms heaume heaumes huis huit Hun Huns un uns hune hunes une unes hunnique hunniques unique uniques hutte huttes ut hydrolysat hydrolysats hydrolysa hydrolysas hydrolysât hyène hyènes yen yens i y hie hies |
︙ | ︙ | |||
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 | la là las labour labours laboure laboures labourent lac lacs laque laques laquent lacet lacets lacer lasser laïc laïcs laïque laïques laid laids lait laits laie laies lai les laîche laîches laiche laîches lèche lèches lèchent légat légats légua léguas legs lègue lègues lèguent lest lests leste lestes lestent leur leurs leurre leurres leurrent levée levées lever levers lieu lieux lieue lieues lice lices lisse lisses lissent lys lis lit lits lie lies lient lisser lissé lissée lissés lissées lycée lycées lire lires lyre lyres livret livrets livrer livrée livrée lob lobs lobe lobes loch lochs loque loques loi lois loua louas loir loirs Loir Loire loup loups loue loues louent louerai louerais louerait loueraient louerez lourer lourd lourds loure loures lourent luth luths luttes luttes luttent lut lute lutes lutent lux luxe luxes luxent lyophilisat lyophilisats lyophilisa lyophilisas lyophilisât ma mas mât mâts maçon maçons massons macro macros maquereau maquereaux magazine magazines magasine magasines magasinent mai mais mes met mets main mains maint maints maintien maintiens maintient maire maires mer mers mère mères maison maisons méson mésons maître maîtres mètre mètres mettre major majors majore majores majorent mal mâle mâles malle malles mante mantes mente mentes mentent menthe menthes manteau manteaux mentaux | > > > > | < > > > > | | 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | la là las labour labours laboure laboures labourent lac lacs laque laques laquent lacet lacets lacer lasser laïc laïcs laïque laïques laid laids lait laits laie laies lai les laîche laîches laiche laîches lèche lèches lèchent liais lier leader leaders lieder légat légats légua léguas legs lègue lègues lèguent lest lests leste lestes lestent leur leurs leurre leurres leurrent levée levées lever levers lieu lieux lieue lieues lice lices lisse lisses lissent lys lis lit lits lie lies lient lise lises lisent lyse lyses lysent Lise lisser lissé lissée lissés lissées lycée lycées lire lires lyre lyres livret livrets livrer livrée livrée lob lobs lobe lobes loch lochs loque loques loi lois loua louas loir loirs Loir Loire lote lotes lotte lottes Lot Loth loup loups loue loues louent louerai louerais louerait loueraient louerez lourer lourd lourds loure loures lourent luth luths luttes luttes luttent lut lute lutes lutent lux luxe luxes luxent lyophilisat lyophilisats lyophilisa lyophilisas lyophilisât ma mas mât mâts maçon maçons massons macro macros maquereau maquereaux magazine magazines magasine magasines magasinent mai mais mes met mets main mains maint maints maintien maintiens maintient maire maires mer mers mère mères maison maisons méson mésons maître maîtres mètre mètres mettre major majors majore majores majorent mal mâle mâles malle malles mante mantes mente mentes mentent menthe menthes manteau manteaux mentaux marais marée marées marrer marchand marchands marchant marché marchés marcher mare mares marre marres marrent marc marcs mari maris marie maries marient Marie marrie marries marri marris mark marks marque marques marquent marocain marocains maroquin maroquins maroquine maroquines maroquinent martel martèle martèles martèlent mate mates matent math maths mâte mâtes mâtent mat mats matinée matinées mâtiner mâture mâtures mature matures maturent mec mecs Mecque media média médias medium médium médiums mél mêle mêles mêlent ménager ménagers mess messe messes meurs meurt mœurs mi mie mies mis mit mît microfilm microfilms microfilme microfilmes microfilment miction mictions mixions mil mils mile miles mille milles mime mimes miment minet minets miner minerai minerais minerait mineraient minerez mir mirs mire mires mirent myrrhe myrrhes mission missions mite mites mythe mythes moka mokas moqua moquas mol mols mole moles molle molles môle môles mon mont monts monitorat monitorats monitora monitoras monitorât mort morts mors mords mord maure maures mot mots maux moi mois mou mous moult moût moûts mouds moud moue moues muais muait muaient muet muets muerai muerais muerait muerez mueraient murer muret murets muerons mueront murons mur murs mûr mûrs mûre mûres mure mures murent muera mueras mura muras mu mus mû mue mues muent nais nait nez né née navigant navigants naviguant nécessité nécessités nécessiter négligeant négligent négligents ni nid nids nie nies nient niais niait niaient niez |
︙ | ︙ | |||
535 536 537 538 539 540 541 | nui nuis nuit nuits octroi octrois octroie octroies octroient œil œils œille œilles œillent œillet œillets œiller oie oies ois oit oient on ont or ors hors | | > > > > | 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | nui nuis nuit nuits octroi octrois octroie octroies octroient œil œils œille œilles œillent œillet œillets œiller oie oies ois oit oient on ont or ors hors orc orcs orque orques ornais orner ou où houx houe houes hou ouate ouates watt watts oubli oublis oublie oublies oublient oui ouï ouïs ouïe ouïes ouïs ouït pagaie pagaies pagaient pagaïe pagaïes pagaye pagayes pagayent pagaille pagailles pain pains pin pins peins peint pair pairs paire paires père pères perds perd pers paix pet pets paie paies paient pal pals pale pales pâle pâles palier paliers pallier palière palières pallière pallières pallièrent pâli pâlis pâlie pâlies pâlit pâlît pallie pallies pallient pâlira pâliras palliera pallieras pâlirai pâlirais pâlirait pâlirez pâliraient pallierai pallierais pallierait pallierez pallieraient pan pans paon paons pend pends panse panses pansent pense penses pensent pensé pensée pensées penser panser par part parts par pare pares parent pars parais parait paraît parer parant parent parents parc parcs parque parques parquent Parque Parques |
︙ | ︙ | |||
575 576 577 578 579 580 581 582 583 584 585 586 587 588 | pèle pèles pèlent pelle pelles pellent pellet pellets peler peller pensionnat pensionnats pensionna pensionnas pensionnât perce perces percent perse perses percée percées percer Persée percheron percherons percheront percussion percussions percutions pet pets pète pètes pètent peu peux peut pi pis pies pic pics pique piques piquent pinson pinsons pinçons piquer piqué piqués piquée piquées piquet piquets pissat pissats pissa pissas pissât | > | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 | pèle pèles pèlent pelle pelles pellent pellet pellets peler peller pensionnat pensionnats pensionna pensionnas pensionnât perce perces percent perse perses percée percées percer Persée percheron percherons percheront percussion percussions percutions péri péris périe péries périt pérît pet pets pète pètes pètent peu peux peut pi pis pies pic pics pique piques piquent pinson pinsons pinçons piquer piqué piqués piquée piquées piquet piquets pissat pissats pissa pissas pissât |
︙ | ︙ | |||
602 603 604 605 606 607 608 | poêle poêles poil poils poignée poignées poignet poignets poignez poignais poignait poignaient poids pois poix pouah poins point points poing poings polissoir polissoirs polissoire polissoires pont ponts ponds pond porc porcs port ports pore pores | | < | | | | > > > > | > > > < < | < < < | 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 | poêle poêles poil poils poignée poignées poignet poignets poignez poignais poignait poignaient poids pois poix pouah poins point points poing poings polissoir polissoirs polissoire polissoires pont ponts ponds pond porc porcs port ports pore pores pool pools poule poules pull pulls post poste postes postent pou poux pouls pouf poufs pouffe pouffes pouffent pouce pouces pousse pousses poussent pourvoi pourvois pourvoit pourvoient pourvoie pourvoies pourvu pourvus pourvue pourvues pourvut pourvût précédant précédent précédents pressant pressants pressens pressent pressante pressantes pressente pressentes pressentent prêt prêts près pré prés primat primats prima primas primât prix pris prit prît prie pries prient profil profils profile profiles profilent pronostic pronostics pronostique pronostiques pronostiquent provoc provocs provoque provoques provoquent provocant provocants provoquant pu pue pues pus put pût puce puces pucent pusse pusses pussent puis puits quadrillion quadrillions quadrillons quadruplet quadruplets quadrupler quintuplet quintuplets quintupler rappel rappels rappelle rappelles rappellent racket rackets raquette raquettes rackette rackettes rackettent radie radies radient radis raffinat raffinats raffina raffinas raffinât rai rais raie raies raient raid raids raide raides rail rails raille railles raillent raye rayes rayent rainette rainettes reinette reinettes rallie rallies rallient rallye rallyes RAM rame rames rament rauque rauques roc rocs rock rocks roque roques roquent rayon rayons rayions recel recels recèle recèles recèlent recours recourt recourent recoure recoures récrie récries récrient récris récrit récrits récriera récrieras récrira récriras récrierai récrierais récrierait récrierez récriraient récrirai récrirais récrirait récrirez récriraient récrierons récrieront récrirons récriront recrue recrues recrus recrut recrût recueil recueils recueille recueilles recueillent reçu reçus reçue reçues reçut reçût recul reculs recule recules reculent refond refonds refont reforme reformes réforme réformes reflux reflue reflues refluent régal régals régale régale régalent reine reines renne rennes rêne rênes relai relais relaie relaies relaient relaye relayes relayent remblai remblais remblaie remblaies remblaient remord remords renvoi renvois renvoie renvoies renvoient repaire repaires repère repères repèrent reperds reperd repairer repérer repaierez repeigner repeignez repeigniez répercussion répercussions répercutions repli replis replie replies replient ressenti ressentis ressentit resserre resserres resserrent ressers ressert ressors ressort ressorts résidant résident résidents restaurant restaurants restaurent résultat résultats résulta résultât réveil réveils réveille réveilles réveillent revive revives revivent rhum rhums rhume rhumes rom roms ROM Rome ricochet ricochets ricocher ris rit rient rie ries riz rivet rivets river roder rôder romps rompt rond ronds rot rots rôt rôts roue roues rouent roux ru rus rue rues ruent sac sacs saque saques saquent sachet sachets sachez sacret sacrets sacré sacrer saillie saillies saillis saillit saillît salariat salariats salaria salarias salariât sale sales salent salles salles salut saluts salue salues saluent saoul saouls saoule saoules saoulent soûl soûls soûle soûles soûlent soul souls soule soules soulent santé santés sentais sentait sentaient sentez sang sangs sans cent cents sens sent cens saké sakés saquer satire satires satyre satyres satirique satiriques satyrique satyriques saurez saurer saut sauts sot sots sceau sceaux seau seaux saute sautes sautent sotte sottes savon savons scan scans scanne scannes scannent scier sied siéent seyait seyaient siée siéent scieur scieurs sieur sieurs script scripts scripte scriptes scriptent sèche sèches sèchent seiche seiches secours secourt secourent secoure secoures secouerai secouerais secouerait secouraient secouerez secourais secourait secouraient secourez secourrai secourrais secourrait secourraient secourrez secouerons secoueront secourons secourrons secourront sein seins saint saints sain sains ceins ceint ceints seing seings serein sereins serin serins serment serments serrement serrements sévice sévices sévisse sévisses shoot shoots shoote shootes shootent sifflet sifflets siffler signal signale signales signalent signet signets signer slam slams slame slames slament ski skis skie skies skient soi soie soies soit sois soient sol sols sole soles saule saules |
︙ | ︙ | |||
735 736 737 738 739 740 741 | souk souks souque souques souquent souris sourit sourient sourie souries sprint sprints sprinte sprintes sprintent statue statues statuent statut statuts status stock stocks stocke stockes stockent stop stops stoppe stoppes stoppent stress stresse stresses stressent | | > | 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 | souk souks souque souques souquent souris sourit sourient sourie souries sprint sprints sprinte sprintes sprintent statue statues statuent statut statuts status stock stocks stocke stockes stockent stop stops stoppe stoppes stoppent stress stresse stresses stressent su sus sue sues sut sût suent subis subit subits substitut substituts substitue substitues substituent suce suces sucent susse susses sussent sui suis suit suie suies suivi suivis suivit suffocant suffocants suffoquant sur surs sure sures sûr sûre sûrs sûres surent surf surfs surfe surfes surfent surfait surfaits surfer surgi surgie surgis surgies surgit surgît survie survies survis survit survol survols survole survoles survolent suspens suspends suspend syndic syndics syndique syndiques syndiquent syndicat syndicats syndiqua syndiquas ta tas tache taches tâche tâches tâchent |
︙ | ︙ | |||
767 768 769 770 771 772 773 774 775 776 777 778 779 780 | tapir tapirs tapirent tapis tapit tapît tare tares tard tarif tarifs tarife tarifes tarifent taule taules tôle tôles technopole technopoles technopôle technopôles teinte teintes teintent tinte tintes tintent tendron tendrons tendront terme termes thermes test tests teste testes testent tête têtes tète tètes tètent tic tics tique tiques tiquent tien tiens tient tir tirs tire tires tirent | > | 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 | tapir tapirs tapirent tapis tapit tapît tare tares tard tarif tarifs tarife tarifes tarifent taule taules tôle tôles technopole technopoles technopôle technopôles teinte teintes teintent tinte tintes tintent teinter tinter tendron tendrons tendront terme termes thermes test tests teste testes testent tête têtes tète tètes tètent tic tics tique tiques tiquent tien tiens tient tir tirs tire tires tirent |
︙ | ︙ | |||
803 804 805 806 807 808 809 | troc trocs troque troques troquent troquet troquets troquer troll trolls trolle trolles trollent troller trolley trolleys trollais trollait trollaient trollez trou trous troue troues trouent truc trucs truque truques truquent trust trusts truste trustes trustent | | | > > | 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 | troc trocs troque troques troquent troquet troquets troquer troll trolls trolle trolles trollent troller trolley trolleys trollais trollait trollaient trollez trou trous troue troues trouent truc trucs truque truques truquent trust trusts truste trustes trustent tu tus tue tues tuent tut tût tutorat tutorats tutora tutoras tutorât tweet tweets tweete tweetes tweetent usa usas USA usager usagers usagé usagée usagés usagées vacant vacants vaquant vais vé vés vain vains vin vins vint vingt vaincs vainc vaine vaines veine veines viennes vairon vairons verrons verront val vals valent valet valets valais valait valaient valez vallée vallées vallon vallons valons valu valus value values valut valût vanter venter vaux vaut vau veau veaux vos vent vents vend vends van vans vente ventes vante vantes vantent ver vers verre verres vert verts vair vernis vernit verrat verrats verra verras verset versets verser |
︙ | ︙ | |||
842 843 844 845 846 847 848 | vol vols vole voles volent volet volets voler volée volées vomi vomis vomit vous voue voues vouent zigzag zigzags zigzague zigzagues zigzaguent zigzagant zigzagants zigzaguant | < < < < < < < < < < < < < | 890 891 892 893 894 895 896 897 898 899 900 901 902 903 | vol vols vole voles volent volet volets voler volée volées vomi vomis vomit vous voue voues vouent zigzag zigzags zigzague zigzagues zigzaguent zigzagant zigzagants zigzaguant # confusion -aire -èrent alimentaire alimentaires alimentèrent arbitraire arbitraires arbitrèrent argumentaire argumentaires argumentèrent articulaire articulaires articulèrent bénéficiaire bénéficiaires bénéficièrent calcaire calcaires calquèrent |
︙ | ︙ | |||
963 964 965 966 967 968 969 | # Construire des liens avec les mots préfixés par une graphie élidée? # laide laides l’aide l’aides l’aident # l’ire lire lires lyre lyres # l’or lors # dard d’art d’arts | < | 998 999 1000 1001 1002 1003 1004 | # Construire des liens avec les mots préfixés par une graphie élidée? # laide laides l’aide l’aides l’aident # l’ire lire lires lyre lyres # l’or lors # dard d’art d’arts |
Modified gc_lang/fr/dictionnaire/genfrdic.py from [90f52ffd17] to [642a6504a5].
︙ | ︙ | |||
1188 1189 1190 1191 1192 1193 1194 | return "# :POS ;LEX ~SEM =FQ /DIC\n" def getGrammarCheckerRepr (self): return "{0.sFlexion}\t{0.oEntry.lemma}\t{1}\n".format(self, self._getSimpleTags()) _dTagReplacement = { # POS | | | | 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 | return "# :POS ;LEX ~SEM =FQ /DIC\n" def getGrammarCheckerRepr (self): return "{0.sFlexion}\t{0.oEntry.lemma}\t{1}\n".format(self, self._getSimpleTags()) _dTagReplacement = { # POS "nom": ":N", "adj": ":A", "adv": ":W", "negadv": ":X", "mg": ":G", "nb": ":B", "nbro": ":Br", "loc.nom": ":Ñ", "loc.adj": ":Â", "loc.adv": ":Ŵ", "loc.verb": ":Ṽ", "interj": ":J", "loc.interj": ":Ĵ", "titr": ":T", "mas": ":m", "fem": ":f", "epi": ":e", "sg": ":s", "pl": ":p", "inv": ":i", "infi": ":Y", "ppre": ":P", "ppas": ":Q", "ipre": ":Ip", "iimp": ":Iq", "ipsi": ":Is", "ifut": ":If", "spre": ":Sp", "simp": ":Sq", "cond": ":K", "impe": ":E", "1sg": ":1s", "1isg": ":1ś", "1jsg": ":1ŝ", "2sg": ":2s", "3sg": ":3s", "1pl": ":1p", "2pl": ":2p", "3pl": ":3p", "3pl!": ":3p!", "prepv": ":Rv", "prep": ":R", "loc.prep": ":Ŕ", "loc.prepv": "Ŕv", "detpos": ":Dp", "detdem": ":Dd", "detind": ":Di", "detneg": ":Dn", "detex": ":De", "det": ":D", "advint": ":U", "prodem": ":Od", "proind": ":Oi", "proint": ":Ot", "proneg": ":On", "prorel": ":Or", "proadv": ":Ow", "properobj": ":Oo", "propersuj": ":Os", "1pe": ":O1", "2pe": ":O2", "3pe": ":O3", "preverb": ":Ov", "cjco": ":Cc", "cjsub": ":Cs", "cj": ":C", "loc.cj": ":Ĉ", "loc.cjsub": ":Ĉs", "prn": ":M1", "patr": ":M2", "loc.patr": ":Ḿ2", "npr": ":MP", "nompr": ":NM", "pfx": ":Zp", "sfx": ":Zs", |
︙ | ︙ |
Modified gc_lang/fr/dictionnaire/lexique/french.tagset.txt from [0f449c19c5] to [419db57e1b].
︙ | ︙ | |||
29 30 31 32 33 34 35 | Suffixe :Zs Mot erroné :F // VERBES Verbe :V 0 e i t n p m e a (loc: Ṽ) | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | Suffixe :Zs Mot erroné :F // VERBES Verbe :V 0 e i t n p m e a (loc: Ṽ) (x = exceptionnellement) 1 a x x x q x x x 2 _ _ _ _ r _ _ _ 3 u v e x _ ^ ^ ^ ^ ^ ^ ^ ^ ^ |
︙ | ︙ |
Modified gc_lang/fr/dictionnaire/orthographe/FRANCAIS.dic from [2e10d93224] to [68227fdf49].
|
| | | 1 2 3 4 5 6 7 8 | 85908 × po:sign se:math di:* id:233045 Ω/U.||-- po:nom is:mas is:inv lx:symb se:élec di:* fq:0 id:201049 _ po:div di:* fq:0 id:231410 - po:ponc po:sign se:@ di:* id:233042 , po:ponc se:@ di:* id:233025 ; po:ponc se:@ di:* id:233027 : po:ponc se:@ di:* id:233028 |
︙ | ︙ | |||
624 625 626 627 628 629 630 631 632 633 634 635 636 637 | accompagner/a4p+() po:v1__t_x__a di:* fq:8 id:126299 accomplir/f4p+() po:v2_it_q__a di:* fq:8 id:126302 accomplissement/S*() po:nom is:mas di:* fq:7 id:126303 accon/S*() po:nom is:mas lx:dic se:marin di:C fq:4 id:210321 acconage/S*() po:nom is:mas lx:dic di:C fq:4 id:210322 acconier/F*() po:nom lx:dic di:C fq:5 id:210323 accoquiner/a4p+() po:v1__t_q_zz di:* fq:3 id:126304 accord/S*() po:nom is:mas di:* fq:8 id:126305 accordable/S*() po:adj is:epi di:* fq:4 id:126306 accordage/S*() po:nom is:mas di:* fq:4 id:202027 accordailles/D'Q' po:nom is:fem is:pl di:* fq:4 id:126307 accordé/F*() po:nom lx:vx di:* fq:7 id:126312 accordement/S*() po:nom is:mas di:* fq:4 id:126308 accordéon/S*() po:nom is:mas di:* fq:5 id:126313 | > | 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | accompagner/a4p+() po:v1__t_x__a di:* fq:8 id:126299 accomplir/f4p+() po:v2_it_q__a di:* fq:8 id:126302 accomplissement/S*() po:nom is:mas di:* fq:7 id:126303 accon/S*() po:nom is:mas lx:dic se:marin di:C fq:4 id:210321 acconage/S*() po:nom is:mas lx:dic di:C fq:4 id:210322 acconier/F*() po:nom lx:dic di:C fq:5 id:210323 accoquiner/a4p+() po:v1__t_q_zz di:* fq:3 id:126304 Accor/D'Q' po:npr is:fem is:inv se:soc di:* id:235249 accord/S*() po:nom is:mas di:* fq:8 id:126305 accordable/S*() po:adj is:epi di:* fq:4 id:126306 accordage/S*() po:nom is:mas di:* fq:4 id:202027 accordailles/D'Q' po:nom is:fem is:pl di:* fq:4 id:126307 accordé/F*() po:nom lx:vx di:* fq:7 id:126312 accordement/S*() po:nom is:mas di:* fq:4 id:126308 accordéon/S*() po:nom is:mas di:* fq:5 id:126313 |
︙ | ︙ | |||
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 | adialectique/S*() po:adj is:epi lx:rare se:philo di:* fq:3 id:217047 adiante/S*() po:nom is:mas di:* fq:4 id:203153 adiaphorèse/S*() po:nom is:fem lx:rare di:* fq:1 id:126654 adiaphorie/S*() po:nom is:fem lx:rare se:philo di:* fq:3 id:217048 Adidas/L'D'Q' po:npr is:epi is:inv se:soc se:sport di:* fq:5 id:229147 adieu/X*() po:nom is:mas di:* fq:7 id:126655 Adige/L'D' po:nom is:mas is:inv se:riv di:* fq:6 id:213383 adimensionnel/F+() po:adj se:sc di:* fq:4 id:226001 Adina/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:224306 adipeux/W*() po:nom po:adj di:* fq:6 id:126657 adipique/S*() po:adj is:epi se:chim di:* fq:4 id:126658 adipocyte/S*() po:nom is:mas se:bio di:* fq:4 id:221039 adipolyse/S*() po:nom is:fem di:* fq:0 id:126659 adipopexie/S*() po:nom is:fem di:* fq:0 id:126660 | > | 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 | adialectique/S*() po:adj is:epi lx:rare se:philo di:* fq:3 id:217047 adiante/S*() po:nom is:mas di:* fq:4 id:203153 adiaphorèse/S*() po:nom is:fem lx:rare di:* fq:1 id:126654 adiaphorie/S*() po:nom is:fem lx:rare se:philo di:* fq:3 id:217048 Adidas/L'D'Q' po:npr is:epi is:inv se:soc se:sport di:* fq:5 id:229147 adieu/X*() po:nom is:mas di:* fq:7 id:126655 Adige/L'D' po:nom is:mas is:inv se:riv di:* fq:6 id:213383 Adil/L'D'Q' po:prn is:mas is:inv di:* id:235215 adimensionnel/F+() po:adj se:sc di:* fq:4 id:226001 Adina/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:224306 adipeux/W*() po:nom po:adj di:* fq:6 id:126657 adipique/S*() po:adj is:epi se:chim di:* fq:4 id:126658 adipocyte/S*() po:nom is:mas se:bio di:* fq:4 id:221039 adipolyse/S*() po:nom is:fem di:* fq:0 id:126659 adipopexie/S*() po:nom is:fem di:* fq:0 id:126660 |
︙ | ︙ | |||
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 | Al₂BeO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:233257 Al₆BeO₁₀ po:nom is:mas is:inv lx:cc se:chim di:* id:233275 alberge/S*() po:nom is:fem di:* fq:4 id:127294 albergier/S*() po:nom is:mas di:* fq:2 id:127295 Albéric/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:223791 Albert/L'D'Q' po:prn is:mas is:inv di:* fq:7 id:123261 Alberta/L' po:nom is:fem is:inv se:rég di:* fq:6 id:205191 Alberte/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:201583 Albertine/L'D'Q' po:prn is:fem is:inv di:* fq:6 id:201184 Alberto/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:221999 Albertville/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:5 id:229758 Albi/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:6 id:123262 albigeois/F*() po:nom po:adj di:* fq:5 id:127296 Albin/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:219891 | > | 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 | Al₂BeO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:233257 Al₆BeO₁₀ po:nom is:mas is:inv lx:cc se:chim di:* id:233275 alberge/S*() po:nom is:fem di:* fq:4 id:127294 albergier/S*() po:nom is:mas di:* fq:2 id:127295 Albéric/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:223791 Albert/L'D'Q' po:prn is:mas is:inv di:* fq:7 id:123261 Alberta/L' po:nom is:fem is:inv se:rég di:* fq:6 id:205191 albertain/F*() po:nom po:adj se:gent di:* id:235209 Alberte/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:201583 Albertine/L'D'Q' po:prn is:fem is:inv di:* fq:6 id:201184 Alberto/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:221999 Albertville/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:5 id:229758 Albi/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:6 id:123262 albigeois/F*() po:nom po:adj di:* fq:5 id:127296 Albin/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:219891 |
︙ | ︙ | |||
3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 | analyser/a4p+() po:v1_it_q__a se:log di:* fq:7 id:127999 analyseur/S*() po:nom is:mas di:* fq:6 id:128000 analyste/S*() po:nom is:epi di:* fq:6 id:128001 analyste-programmeur/L'D'Q' po:nom is:mas is:sg se:info di:* fq:2 id:219010 analyste-programmeuse/L'D'Q' po:nom is:fem is:sg se:info di:* fq:0 id:219009 analystes-programmeurs/D'Q' po:nom is:mas is:pl st:analyste-programmeur se:info di:* fq:1 id:219011 analystes-programmeuses/D'Q' po:nom is:fem is:pl st:analyste-programmeuse lx:rare se:info di:* fq:0 id:219008 analyticité/S*() po:nom is:fem di:* fq:4 id:128003 analytique/S*() po:nom is:fem di:* fq:7 id:211748 analytique/S*() po:adj is:epi di:* fq:7 id:128004 analytiquement/D'Q' po:adv di:* fq:5 id:128005 anamnèse/S*() po:nom is:fem se:psycho se:chris et:grec di:* fq:5 id:128006 anamnestique/S*() po:adj is:epi se:méd se:psycho et:grec di:* fq:5 id:222162 anamorphe/S*() po:nom is:mas di:* fq:3 id:211749 | > | 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 | analyser/a4p+() po:v1_it_q__a se:log di:* fq:7 id:127999 analyseur/S*() po:nom is:mas di:* fq:6 id:128000 analyste/S*() po:nom is:epi di:* fq:6 id:128001 analyste-programmeur/L'D'Q' po:nom is:mas is:sg se:info di:* fq:2 id:219010 analyste-programmeuse/L'D'Q' po:nom is:fem is:sg se:info di:* fq:0 id:219009 analystes-programmeurs/D'Q' po:nom is:mas is:pl st:analyste-programmeur se:info di:* fq:1 id:219011 analystes-programmeuses/D'Q' po:nom is:fem is:pl st:analyste-programmeuse lx:rare se:info di:* fq:0 id:219008 analyte/S*() po:nom is:mas se:chim di:* id:235270 analyticité/S*() po:nom is:fem di:* fq:4 id:128003 analytique/S*() po:nom is:fem di:* fq:7 id:211748 analytique/S*() po:adj is:epi di:* fq:7 id:128004 analytiquement/D'Q' po:adv di:* fq:5 id:128005 anamnèse/S*() po:nom is:fem se:psycho se:chris et:grec di:* fq:5 id:128006 anamnestique/S*() po:adj is:epi se:méd se:psycho et:grec di:* fq:5 id:222162 anamorphe/S*() po:nom is:mas di:* fq:3 id:211749 |
︙ | ︙ | |||
4677 4678 4679 4680 4681 4682 4683 | aoûter/a2p+() po:v1__t___zz di:M fq:5 id:128548 aouteron/S*() po:nom is:mas se:agri di:R fq:0 id:128540 aoûteron/S*() po:nom is:mas di:M fq:3 id:128550 aoutien/F+() po:nom di:R fq:2 id:128541 aoûtien/F+() po:nom di:M fq:3 id:128551 apache/S*() po:nom po:adj is:epi di:* fq:5 id:128553 Apache-OFBiz/D'Q' po:npr is:mas is:inv se:prod se:info di:X fq:0 id:227710 | | | 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 | aoûter/a2p+() po:v1__t___zz di:M fq:5 id:128548 aouteron/S*() po:nom is:mas se:agri di:R fq:0 id:128540 aoûteron/S*() po:nom is:mas di:M fq:3 id:128550 aoutien/F+() po:nom di:R fq:2 id:128541 aoûtien/F+() po:nom di:M fq:3 id:128551 apache/S*() po:nom po:adj is:epi di:* fq:5 id:128553 Apache-OFBiz/D'Q' po:npr is:mas is:inv se:prod se:info di:X fq:0 id:227710 Apache Software Foundation po:npr is:fem is:sg se:soc se:info di:* fq:0 id:231958 apagogie/S*() po:nom is:fem se:log se:philo et:grec di:* fq:3 id:128554 apagogique/S*() po:adj is:epi se:log se:philo di:* fq:4 id:220859 apaisant/F*() po:adj di:* fq:5 id:128555 apaisement/S*() po:nom is:mas di:* fq:6 id:128556 apaiser/a4p+() po:v1__t_q_zz di:* fq:7 id:128557 apanage/S*() po:nom is:mas di:* fq:6 id:128559 apanager/a2p+() po:v1__t___zz di:* fq:5 id:128560 |
︙ | ︙ | |||
5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 | asile/S*() po:nom is:mas di:* fq:7 id:129403 asiminier/S*() po:nom is:mas se:bot di:* fq:2 id:229519 Asimov/L'D'Q' po:patr is:epi is:inv di:* fq:4 id:123394 asinien/F+() po:adj lx:rare di:* fq:4 id:129404 asismique/S*() po:adj is:epi se:géol di:* id:232992 ASL/L'D'Q' po:nom is:fem is:inv lx:sig di:X fq:4 id:227340 Asma/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:231866 Asmara/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:5 id:183450 As₂Mg₃ po:nom is:mas is:inv lx:cc se:chim di:* id:233303 Asnières/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:6 id:123395 Asnières-sur-Seine/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:4 id:123396 As₂O₃ po:nom is:mas is:inv lx:cc se:chim di:* id:233304 As₂O₅ po:nom is:mas is:inv lx:cc se:chim di:* id:233305 As₃O₄ po:nom is:mas is:inv lx:cc se:chim di:* id:233312 | > | 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 | asile/S*() po:nom is:mas di:* fq:7 id:129403 asiminier/S*() po:nom is:mas se:bot di:* fq:2 id:229519 Asimov/L'D'Q' po:patr is:epi is:inv di:* fq:4 id:123394 asinien/F+() po:adj lx:rare di:* fq:4 id:129404 asismique/S*() po:adj is:epi se:géol di:* id:232992 ASL/L'D'Q' po:nom is:fem is:inv lx:sig di:X fq:4 id:227340 Asma/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:231866 Asmaa/L'D'Q' po:prn is:fem is:inv di:* id:235222 Asmara/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:5 id:183450 As₂Mg₃ po:nom is:mas is:inv lx:cc se:chim di:* id:233303 Asnières/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:6 id:123395 Asnières-sur-Seine/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:4 id:123396 As₂O₃ po:nom is:mas is:inv lx:cc se:chim di:* id:233304 As₂O₅ po:nom is:mas is:inv lx:cc se:chim di:* id:233305 As₃O₄ po:nom is:mas is:inv lx:cc se:chim di:* id:233312 |
︙ | ︙ | |||
11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 | brumasser/a8p.() po:v1_i___mzz di:* fq:3 id:132857 brume/S.() po:nom is:fem di:* fq:6 id:132858 brumer/a8p.() po:v1_i___mzz di:* fq:6 id:132859 brumeusement po:adv se:@ di:* fq:2 id:220407 brumeux/W.() po:adj di:* fq:6 id:132860 brumisateur/S.() po:nom is:mas lx:dép di:* fq:3 id:132861 brumisation/S.() po:nom is:fem se:techni di:* fq:4 id:225999 brun/F.() po:nom po:adj di:* fq:7 id:132864 brunante/S.() po:nom is:fem lx:québ di:* fq:4 id:132862 brunâtre/S.() po:adj is:epi di:* fq:6 id:132874 brunch/A.() po:nom is:mas et:angl di:* fq:4 id:210636 bruncher/a0p.() po:v1_i_____a se:cuis et:angl di:* fq:3 id:230664 Brunehilde po:prn is:fem is:inv di:* fq:5 id:230298 Brunei po:nom is:mas is:inv se:pays di:* fq:5 id:123624 | > | 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 | brumasser/a8p.() po:v1_i___mzz di:* fq:3 id:132857 brume/S.() po:nom is:fem di:* fq:6 id:132858 brumer/a8p.() po:v1_i___mzz di:* fq:6 id:132859 brumeusement po:adv se:@ di:* fq:2 id:220407 brumeux/W.() po:adj di:* fq:6 id:132860 brumisateur/S.() po:nom is:mas lx:dép di:* fq:3 id:132861 brumisation/S.() po:nom is:fem se:techni di:* fq:4 id:225999 brumiser/a0p+() po:v1_it____a di:* id:235262 brun/F.() po:nom po:adj di:* fq:7 id:132864 brunante/S.() po:nom is:fem lx:québ di:* fq:4 id:132862 brunâtre/S.() po:adj is:epi di:* fq:6 id:132874 brunch/A.() po:nom is:mas et:angl di:* fq:4 id:210636 bruncher/a0p.() po:v1_i_____a se:cuis et:angl di:* fq:3 id:230664 Brunehilde po:prn is:fem is:inv di:* fq:5 id:230298 Brunei po:nom is:mas is:inv se:pays di:* fq:5 id:123624 |
︙ | ︙ | |||
11734 11735 11736 11737 11738 11739 11740 | budgétairement po:adv di:* fq:4 id:207145 budgéter/c0p+() po:v1__t___zz di:* fq:4 id:132950 budgétisation/S.() po:nom is:fem di:* fq:5 id:132951 budgétiser/a0p+() po:v1__t___zz di:* fq:4 id:132952 budgétivore/S.() po:adj is:epi di:* fq:4 id:132953 buée/S.() po:nom is:fem di:* fq:5 id:133065 Buenos po:npr is:epi is:inv se:cité di:* fq:6 id:183242 | | | 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 | budgétairement po:adv di:* fq:4 id:207145 budgéter/c0p+() po:v1__t___zz di:* fq:4 id:132950 budgétisation/S.() po:nom is:fem di:* fq:5 id:132951 budgétiser/a0p+() po:v1__t___zz di:* fq:4 id:132952 budgétivore/S.() po:adj is:epi di:* fq:4 id:132953 buée/S.() po:nom is:fem di:* fq:5 id:133065 Buenos po:npr is:epi is:inv se:cité di:* fq:6 id:183242 Buenos Aires po:npr is:epi is:inv se:cité di:* fq:0 id:231606 buffalo/S.() po:nom is:mas se:zool et:port di:* fq:4 id:228892 Buffalo po:npr is:epi is:inv se:cité di:* fq:5 id:123632 buffet/S.() po:nom is:mas di:* fq:6 id:132954 buffetier/F.() po:nom di:* fq:4 id:132955 buffle/F,() po:nom di:* fq:6 id:182685 buffleterie/S.() po:nom is:fem di:M fq:4 id:132957 bufflèterie/S.() po:nom is:fem di:R fq:1 id:132958 |
︙ | ︙ | |||
13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 | castillan/F.() po:nom po:adj di:* fq:6 id:134364 Castille po:nom is:fem is:inv se:rég se:pays se:hist di:* fq:6 id:123707 Castille-et-León po:nom is:fem is:inv se:rég di:* fq:5 id:224326 castillonnais/F.() po:nom po:adj di:* fq:3 id:225532 castine/S.() po:nom is:fem di:* fq:5 id:134365 casting/S.() po:nom is:mas et:angl di:* fq:5 id:134366 castor/S.() po:nom is:mas di:* fq:6 id:134367 castoréum/S.() po:nom is:mas di:* fq:4 id:134368 castral/W.() po:adj di:* fq:5 id:182642 castramétation/S.() po:nom is:fem se:hist et:lat di:* fq:4 id:217522 castrat/S.() po:nom is:mas di:* fq:5 id:134369 castrateur/Fc() po:nom po:adj di:* fq:5 id:134371 castration/S.() po:nom is:fem di:* fq:6 id:134370 castrer/a0p+() po:v1__t___zz di:* fq:6 id:134372 | > | 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 | castillan/F.() po:nom po:adj di:* fq:6 id:134364 Castille po:nom is:fem is:inv se:rég se:pays se:hist di:* fq:6 id:123707 Castille-et-León po:nom is:fem is:inv se:rég di:* fq:5 id:224326 castillonnais/F.() po:nom po:adj di:* fq:3 id:225532 castine/S.() po:nom is:fem di:* fq:5 id:134365 casting/S.() po:nom is:mas et:angl di:* fq:5 id:134366 castor/S.() po:nom is:mas di:* fq:6 id:134367 Castorama po:npr is:epi is:inv se:soc se:bât di:* id:235250 castoréum/S.() po:nom is:mas di:* fq:4 id:134368 castral/W.() po:adj di:* fq:5 id:182642 castramétation/S.() po:nom is:fem se:hist et:lat di:* fq:4 id:217522 castrat/S.() po:nom is:mas di:* fq:5 id:134369 castrateur/Fc() po:nom po:adj di:* fq:5 id:134371 castration/S.() po:nom is:fem di:* fq:6 id:134370 castrer/a0p+() po:v1__t___zz di:* fq:6 id:134372 |
︙ | ︙ | |||
14114 14115 14116 14117 14118 14119 14120 | centralien/F,() po:nom di:* fq:4 id:200887 centralisateur/Fc() po:adj di:* fq:6 id:134603 centralisation/S.() po:nom is:fem di:* fq:6 id:134602 centraliser/a0p+() po:v1__t___zz di:* fq:6 id:134604 centralisme/S.() po:nom is:mas di:* fq:6 id:134605 centraliste/S.() po:nom po:adj is:epi di:* fq:5 id:212890 centralité/S.() po:nom is:fem di:* fq:6 id:212889 | | | 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 | centralien/F,() po:nom di:* fq:4 id:200887 centralisateur/Fc() po:adj di:* fq:6 id:134603 centralisation/S.() po:nom is:fem di:* fq:6 id:134602 centraliser/a0p+() po:v1__t___zz di:* fq:6 id:134604 centralisme/S.() po:nom is:mas di:* fq:6 id:134605 centraliste/S.() po:nom po:adj is:epi di:* fq:5 id:212890 centralité/S.() po:nom is:fem di:* fq:6 id:212889 Central Park po:npr is:mas is:inv se:cité di:* fq:0 id:230487 centraméricain/F.() po:nom po:adj se:gent di:* fq:5 id:230775 centration/S.() po:nom is:fem di:* fq:5 id:228324 centre/S.() po:nom is:mas di:* fq:8 id:134607 Centre po:nom is:mas is:inv se:rég di:* fq:7 id:123720 centre-auto po:nom is:mas is:sg di:* fq:1 id:207040 centre-avant po:nom is:epi is:sg lx:belg di:* fq:1 id:207036 Centre-du-Québec po:nom is:mas is:inv se:rég di:* fq:4 id:200639 |
︙ | ︙ | |||
20205 20206 20207 20208 20209 20210 20211 | covecteur/S.() po:nom is:mas di:* fq:3 id:138387 covelline/S.() po:nom is:fem lx:alt se:minér di:* fq:4 id:220953 covellite/S.() po:nom is:fem se:minér di:* fq:4 id:220954 covenant/S.() po:nom is:mas di:* fq:5 id:222985 covendeur/Fs() po:nom di:* fq:4 id:138388 covergirl/S.() po:nom is:fem et:angl di:R fq:3 id:138390 cover-girl/S.() po:nom is:fem et:angl di:M fq:2 id:138389 | > | | 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 | covecteur/S.() po:nom is:mas di:* fq:3 id:138387 covelline/S.() po:nom is:fem lx:alt se:minér di:* fq:4 id:220953 covellite/S.() po:nom is:fem se:minér di:* fq:4 id:220954 covenant/S.() po:nom is:mas di:* fq:5 id:222985 covendeur/Fs() po:nom di:* fq:4 id:138388 covergirl/S.() po:nom is:fem et:angl di:R fq:3 id:138390 cover-girl/S.() po:nom is:fem et:angl di:M fq:2 id:138389 Covid po:nom is:epi is:inv lx:sig se:méd di:* id:235226 Covid-19 po:nom is:epi is:inv lx:sig se:méd di:* id:235144 covin/S.() po:nom is:mas di:X fq:1 id:232006 covoiturage/S.() po:nom is:mas di:* fq:4 id:138391 covoiturer/a0p+() po:v1__t___zz lx:néo di:* fq:2 id:221318 covoitureur/Fs() po:nom lx:néo di:* fq:1 id:231585 covolume/S.() po:nom is:mas di:* fq:4 id:138392 cowboy/S.() po:nom is:mas se:élev et:angl di:* fq:5 id:138394 cow-boy/S.() po:nom is:mas se:élev et:angl di:C fq:4 id:138393 |
︙ | ︙ | |||
20389 20390 20391 20392 20393 20394 20395 | créatif/F.() po:nom po:adj di:* fq:6 id:138757 créatine/S.() po:nom is:fem se:bioch et:grec di:* fq:5 id:138752 créatinine/S.() po:nom is:fem se:bioch di:* fq:5 id:138753 création/S.() po:nom is:fem di:* fq:8 id:138754 créationnisme/S.() po:nom is:mas se:philo di:* fq:4 id:138755 créationniste/S.() po:nom po:adj is:epi se:philo di:* fq:5 id:138756 créatique/S.() po:nom is:fem lx:néo di:* fq:4 id:222209 | | | 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 | créatif/F.() po:nom po:adj di:* fq:6 id:138757 créatine/S.() po:nom is:fem se:bioch et:grec di:* fq:5 id:138752 créatinine/S.() po:nom is:fem se:bioch di:* fq:5 id:138753 création/S.() po:nom is:fem di:* fq:8 id:138754 créationnisme/S.() po:nom is:mas se:philo di:* fq:4 id:138755 créationniste/S.() po:nom po:adj is:epi se:philo di:* fq:5 id:138756 créatique/S.() po:nom is:fem lx:néo di:* fq:4 id:222209 Creative Commons po:npr is:epi is:inv se:droit se:art di:* fq:0 id:231956 créativité/S.() po:nom is:fem di:* fq:6 id:138758 créature/S.() po:nom is:fem di:* fq:7 id:138760 crécelle/S.() po:nom is:fem di:* fq:5 id:138761 crécerelle/S.() po:nom is:fem se:zool di:M fq:4 id:138762 crècerelle/S.() po:nom is:fem se:zool di:R fq:1 id:138736 crèche/S.() po:nom is:fem di:* fq:6 id:138737 crécher/c0p.() po:v1_i____zz di:* fq:3 id:138763 |
︙ | ︙ | |||
20897 20898 20899 20900 20901 20902 20903 | cryovolcanisme/S.() po:nom is:mas se:géol di:* fq:2 id:224832 cryptage/S.() po:nom is:mas di:* fq:5 id:138714 cryptanalyse/S.() po:nom is:fem di:* fq:3 id:138715 cryptanalyste/S.() po:nom is:epi se:info se:sécu di:* fq:3 id:229346 cryptand/S.() po:nom is:mas se:chim di:* fq:3 id:226191 cryptate/S.() po:nom is:mas se:chim di:* fq:3 id:225184 crypte/S.() po:nom is:fem di:* fq:6 id:138716 | | | 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 | cryovolcanisme/S.() po:nom is:mas se:géol di:* fq:2 id:224832 cryptage/S.() po:nom is:mas di:* fq:5 id:138714 cryptanalyse/S.() po:nom is:fem di:* fq:3 id:138715 cryptanalyste/S.() po:nom is:epi se:info se:sécu di:* fq:3 id:229346 cryptand/S.() po:nom is:mas se:chim di:* fq:3 id:226191 cryptate/S.() po:nom is:mas se:chim di:* fq:3 id:225184 crypte/S.() po:nom is:fem di:* fq:6 id:138716 crypter/a0p+() po:v1_it____a se:info di:* fq:5 id:138717 cryptesthésie/S.() po:nom is:fem lx:rare di:* fq:4 id:230682 cryptique/S.() po:adj is:epi di:* fq:5 id:138718 cryptobiose/S.() po:nom is:fem se:bot se:zool di:* fq:2 id:215147 cryptobiotique/S.() po:adj is:epi lx:rare di:* fq:1 id:215285 cryptococcose/S.() po:nom is:fem di:* fq:4 id:215255 cryptocommuniste/S.() po:nom po:adj is:epi lx:vx di:* fq:4 id:215221 cryptodevise/S.() po:nom is:fem se:fin di:* fq:0 id:231869 |
︙ | ︙ | |||
21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 | cycloalcane/S.() po:nom is:mas di:* fq:3 id:206293 cycloalcène/S.() po:nom is:mas se:chim di:* fq:2 id:223864 cyclocross po:nom is:mas is:inv et:angl di:R fq:3 id:139059 cyclo-cross/A.() po:nom is:mas et:angl di:* fq:5 id:139056 cyclodextrine/S.() po:nom is:fem di:* fq:4 id:213141 cyclogenèse/S.() po:nom is:fem di:* fq:4 id:214717 cyclohexane/S.() po:nom is:mas di:* fq:5 id:213398 cyclohexanone/S.() po:nom is:fem se:chim di:* fq:4 id:222028 cycloïdal/W.() po:adj di:* fq:4 id:139077 cycloïde/S.() po:nom is:epi di:* fq:5 id:139078 cyclomatique/S.() po:adj is:epi se:info di:* fq:3 id:232597 cyclomoteur/S.() po:nom is:mas di:* fq:5 id:139060 cyclomotoriste/S.() po:nom is:epi di:* fq:4 id:139061 cyclonage/S.() po:nom is:mas di:* fq:3 id:216356 | > | 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 | cycloalcane/S.() po:nom is:mas di:* fq:3 id:206293 cycloalcène/S.() po:nom is:mas se:chim di:* fq:2 id:223864 cyclocross po:nom is:mas is:inv et:angl di:R fq:3 id:139059 cyclo-cross/A.() po:nom is:mas et:angl di:* fq:5 id:139056 cyclodextrine/S.() po:nom is:fem di:* fq:4 id:213141 cyclogenèse/S.() po:nom is:fem di:* fq:4 id:214717 cyclohexane/S.() po:nom is:mas di:* fq:5 id:213398 cyclohexanol/S.() po:nom is:mas se:chim di:* id:235268 cyclohexanone/S.() po:nom is:fem se:chim di:* fq:4 id:222028 cycloïdal/W.() po:adj di:* fq:4 id:139077 cycloïde/S.() po:nom is:epi di:* fq:5 id:139078 cyclomatique/S.() po:adj is:epi se:info di:* fq:3 id:232597 cyclomoteur/S.() po:nom is:mas di:* fq:5 id:139060 cyclomotoriste/S.() po:nom is:epi di:* fq:4 id:139061 cyclonage/S.() po:nom is:mas di:* fq:3 id:216356 |
︙ | ︙ | |||
22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 | débroussailler/a0p+() po:v1__t___zz di:* fq:5 id:141121 débroussailleur/Fs() po:nom di:* fq:4 id:201391 débrousser/a0p+() po:v1__t___zz lx:afr di:* fq:4 id:141123 débrumage/S.() po:nom is:mas lx:néo lx:rare se:astron di:* fq:0 id:217072 débucher/a0p+() po:v1_it___zz di:* fq:4 id:141125 débudgétisation/S.() po:nom is:fem di:* fq:4 id:210308 débudgétiser/a0p+() po:v1__t___zz di:* fq:4 id:141126 débuller/a0p+() po:v1__t___zz di:* fq:1 id:141128 débureaucratisation/S.() po:nom is:fem lx:néo se:admin di:* fq:4 id:216788 débureaucratiser/a0p+() po:v1__t___zz di:* fq:4 id:141129 débusquement/S.() po:nom is:mas di:* fq:3 id:141130 débusquer/a0p+() po:v1__t___zz di:* fq:6 id:141131 Debussy po:patr is:epi is:inv di:* fq:6 id:206854 début/S.() po:nom is:mas di:* fq:8 id:141133 | > | 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 | débroussailler/a0p+() po:v1__t___zz di:* fq:5 id:141121 débroussailleur/Fs() po:nom di:* fq:4 id:201391 débrousser/a0p+() po:v1__t___zz lx:afr di:* fq:4 id:141123 débrumage/S.() po:nom is:mas lx:néo lx:rare se:astron di:* fq:0 id:217072 débucher/a0p+() po:v1_it___zz di:* fq:4 id:141125 débudgétisation/S.() po:nom is:fem di:* fq:4 id:210308 débudgétiser/a0p+() po:v1__t___zz di:* fq:4 id:141126 débugueur/S.() po:nom is:mas se:info di:* id:235237 débuller/a0p+() po:v1__t___zz di:* fq:1 id:141128 débureaucratisation/S.() po:nom is:fem lx:néo se:admin di:* fq:4 id:216788 débureaucratiser/a0p+() po:v1__t___zz di:* fq:4 id:141129 débusquement/S.() po:nom is:mas di:* fq:3 id:141130 débusquer/a0p+() po:v1__t___zz di:* fq:6 id:141131 Debussy po:patr is:epi is:inv di:* fq:6 id:206854 début/S.() po:nom is:mas di:* fq:8 id:141133 |
︙ | ︙ | |||
22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 | décapsulage/S.() po:nom is:mas di:* fq:3 id:141205 décapsulation/S.() po:nom is:fem di:* fq:4 id:141206 décapsuler/a0p+() po:v1__t___zz di:* fq:4 id:141207 décapsuleur/S.() po:nom is:mas di:* fq:3 id:141208 décapuchonner/a0p+() po:v1__t___zz di:* fq:4 id:141210 décarbonatation/S.() po:nom is:fem se:chim di:* fq:4 id:219527 décarbonater/a0p+() po:v1__t___zz se:chim di:* fq:4 id:219526 décarboner/a0p+() po:v1_it_q__a lx:néo se:écolo di:* fq:3 id:228125 décarboxylase/S.() po:nom is:fem se:bio se:bioch di:* fq:4 id:221081 décarboxylation/S.() po:nom is:fem se:chim di:* fq:4 id:213210 décarburation/S.() po:nom is:fem di:* fq:5 id:141211 décarburer/a0p+() po:v1__t___zz di:* fq:4 id:141212 décarcasser/a0p+() po:v1__t_q_zz di:* fq:4 id:141213 décarottage/S.() po:nom is:mas lx:rare se:techni di:* fq:0 id:217380 | > | 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 | décapsulage/S.() po:nom is:mas di:* fq:3 id:141205 décapsulation/S.() po:nom is:fem di:* fq:4 id:141206 décapsuler/a0p+() po:v1__t___zz di:* fq:4 id:141207 décapsuleur/S.() po:nom is:mas di:* fq:3 id:141208 décapuchonner/a0p+() po:v1__t___zz di:* fq:4 id:141210 décarbonatation/S.() po:nom is:fem se:chim di:* fq:4 id:219527 décarbonater/a0p+() po:v1__t___zz se:chim di:* fq:4 id:219526 décarbonation/S.() po:nom is:fem se:écolo se:indus di:* id:235246 décarboner/a0p+() po:v1_it_q__a lx:néo se:écolo di:* fq:3 id:228125 décarboxylase/S.() po:nom is:fem se:bio se:bioch di:* fq:4 id:221081 décarboxylation/S.() po:nom is:fem se:chim di:* fq:4 id:213210 décarburation/S.() po:nom is:fem di:* fq:5 id:141211 décarburer/a0p+() po:v1__t___zz di:* fq:4 id:141212 décarcasser/a0p+() po:v1__t_q_zz di:* fq:4 id:141213 décarottage/S.() po:nom is:mas lx:rare se:techni di:* fq:0 id:217380 |
︙ | ︙ | |||
24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 | désamination/S.() po:nom is:fem se:bioch di:* fq:4 id:217579 désaminer/a0p+() po:v1__t___zz di:* fq:4 id:142778 désamorçage/S.() po:nom is:mas di:* fq:4 id:142781 désamorcer/a0p+() po:v1__t_q_zz di:* fq:5 id:142779 désamortissement/S.() po:nom is:mas di:* fq:4 id:231337 désamour/S.() po:nom is:mas di:* fq:4 id:142782 désannexer/a0p+() po:v1__t___zz di:* fq:4 id:142783 désaper/a0p+() po:v1__t_q_zz di:* fq:1 id:142784 désapparier/a0p+() po:v1__t___zz di:* fq:1 id:142785 désappointement/S.() po:nom is:mas di:* fq:6 id:142787 désappointer/a0p+() po:v1__t___zz di:* fq:5 id:142788 désapprendre/tF() po:v3_it____a di:* fq:5 id:142790 désapprentissage/S.() po:nom is:mas se:édu di:* fq:4 id:232898 désapprobateur/Fc() po:nom po:adj di:* fq:5 id:142793 | > | 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 | désamination/S.() po:nom is:fem se:bioch di:* fq:4 id:217579 désaminer/a0p+() po:v1__t___zz di:* fq:4 id:142778 désamorçage/S.() po:nom is:mas di:* fq:4 id:142781 désamorcer/a0p+() po:v1__t_q_zz di:* fq:5 id:142779 désamortissement/S.() po:nom is:mas di:* fq:4 id:231337 désamour/S.() po:nom is:mas di:* fq:4 id:142782 désannexer/a0p+() po:v1__t___zz di:* fq:4 id:142783 désanonymiser/a0p+() po:v1_it____a se:info di:* id:235256 désaper/a0p+() po:v1__t_q_zz di:* fq:1 id:142784 désapparier/a0p+() po:v1__t___zz di:* fq:1 id:142785 désappointement/S.() po:nom is:mas di:* fq:6 id:142787 désappointer/a0p+() po:v1__t___zz di:* fq:5 id:142788 désapprendre/tF() po:v3_it____a di:* fq:5 id:142790 désapprentissage/S.() po:nom is:mas se:édu di:* fq:4 id:232898 désapprobateur/Fc() po:nom po:adj di:* fq:5 id:142793 |
︙ | ︙ | |||
24769 24770 24771 24772 24773 24774 24775 | deutéré/F.() po:adj se:chim di:* fq:4 id:221978 deutérium/S.() po:nom is:mas di:* fq:5 id:139673 deutérocanonique/S.() po:adj is:epi di:* fq:4 id:139674 deutéron/S.() po:nom is:mas di:* fq:4 id:139675 Deutéronome po:nom is:mas is:sg di:* fq:5 id:201360 deutéronomique/S.() po:adj is:epi se:reli se:hist di:* fq:4 id:231342 deuton/S.() po:nom is:mas se:phys di:* fq:4 id:216722 | | | 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 | deutéré/F.() po:adj se:chim di:* fq:4 id:221978 deutérium/S.() po:nom is:mas di:* fq:5 id:139673 deutérocanonique/S.() po:adj is:epi di:* fq:4 id:139674 deutéron/S.() po:nom is:mas di:* fq:4 id:139675 Deutéronome po:nom is:mas is:sg di:* fq:5 id:201360 deutéronomique/S.() po:adj is:epi se:reli se:hist di:* fq:4 id:231342 deuton/S.() po:nom is:mas se:phys di:* fq:4 id:216722 Deutsche Bank po:nom is:fem is:inv se:soc se:fin di:* fq:0 id:230489 deutschemark/S.() po:nom is:mas et:all di:* fq:5 id:216041 deux po:nb is:epi is:pl se:@ di:* fq:9 id:139676 deux-deux po:nom is:mas is:inv di:* fq:1 id:139677 deux-huit po:nom is:mas is:inv di:* fq:1 id:200374 deuxième/S.() po:nom po:adj is:epi lx:ord di:* fq:8 id:139686 deuxièmement po:adv di:* fq:6 id:139687 deux-mâts po:nom is:mas is:inv di:* fq:2 id:139678 |
︙ | ︙ | |||
25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 | distillatoire/S.() po:adj is:epi di:* fq:5 id:209655 distiller/a0p+() po:v1_it___zz di:* fq:7 id:140286 distillerie/S.() po:nom is:fem di:* fq:6 id:140287 distinct/F.() po:adj di:* fq:7 id:140289 distinctement po:adv di:* fq:6 id:140290 distinctif/F.() po:adj di:* fq:6 id:140292 distinction/S.() po:nom is:fem di:* fq:7 id:140291 distinguable/S.() po:adj is:epi di:* fq:4 id:140293 distinguer/a0p+() po:v1_it_q_zz di:* fq:8 id:140294 distinguo/S.() po:nom is:mas et:lat di:* fq:5 id:140295 distique/S.() po:nom is:mas di:* fq:6 id:140297 distomatose/S.() po:nom is:fem se:méd di:* fq:4 id:220618 distome/S.() po:nom is:mas se:zool et:grec di:* fq:4 id:224822 distordre/tA() po:v3_it_q__a di:* fq:5 id:140298 | > | 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 | distillatoire/S.() po:adj is:epi di:* fq:5 id:209655 distiller/a0p+() po:v1_it___zz di:* fq:7 id:140286 distillerie/S.() po:nom is:fem di:* fq:6 id:140287 distinct/F.() po:adj di:* fq:7 id:140289 distinctement po:adv di:* fq:6 id:140290 distinctif/F.() po:adj di:* fq:6 id:140292 distinction/S.() po:nom is:fem di:* fq:7 id:140291 distinctivité/S.() po:nom is:fem di:* id:235227 distinguable/S.() po:adj is:epi di:* fq:4 id:140293 distinguer/a0p+() po:v1_it_q_zz di:* fq:8 id:140294 distinguo/S.() po:nom is:mas et:lat di:* fq:5 id:140295 distique/S.() po:nom is:mas di:* fq:6 id:140297 distomatose/S.() po:nom is:fem se:méd di:* fq:4 id:220618 distome/S.() po:nom is:mas se:zool et:grec di:* fq:4 id:224822 distordre/tA() po:v3_it_q__a di:* fq:5 id:140298 |
︙ | ︙ | |||
26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 | Donbass po:nom is:mas is:inv se:rég di:* fq:5 id:229111 donc po:mg po:cjco se:@ di:* fq:8 id:140535 dondaine/S.() po:nom is:fem di:* fq:4 id:140536 dondon/S.() po:nom is:fem di:* fq:4 id:140537 Donetsk po:npr is:epi is:inv se:cité di:* fq:4 id:123958 Dongguan po:npr is:epi is:inv se:cité di:* fq:3 id:224526 dongle/S.() po:nom is:mas se:info et:angl di:* fq:3 id:222664 donjon/S.() po:nom is:mas di:* fq:6 id:140538 donjonné/F.() po:adj di:* fq:4 id:206315 donjuan/S.() po:nom is:mas di:R fq:2 id:140539 donjuanesque/S.() po:adj is:epi di:* fq:4 id:140540 don-juanesque/S.() po:adj is:epi di:C fq:1 id:206604 donjuanisme/S.() po:nom is:mas di:* fq:4 id:140541 don-juanisme/S.() po:nom is:mas di:C fq:1 id:206603 | > | 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 | Donbass po:nom is:mas is:inv se:rég di:* fq:5 id:229111 donc po:mg po:cjco se:@ di:* fq:8 id:140535 dondaine/S.() po:nom is:fem di:* fq:4 id:140536 dondon/S.() po:nom is:fem di:* fq:4 id:140537 Donetsk po:npr is:epi is:inv se:cité di:* fq:4 id:123958 Dongguan po:npr is:epi is:inv se:cité di:* fq:3 id:224526 dongle/S.() po:nom is:mas se:info et:angl di:* fq:3 id:222664 Donia po:prn is:fem is:inv di:* id:235218 donjon/S.() po:nom is:mas di:* fq:6 id:140538 donjonné/F.() po:adj di:* fq:4 id:206315 donjuan/S.() po:nom is:mas di:R fq:2 id:140539 donjuanesque/S.() po:adj is:epi di:* fq:4 id:140540 don-juanesque/S.() po:adj is:epi di:C fq:1 id:206604 donjuanisme/S.() po:nom is:mas di:* fq:4 id:140541 don-juanisme/S.() po:nom is:mas di:C fq:1 id:206603 |
︙ | ︙ | |||
27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 | éclisser/a2p+() po:v1__t___zz di:* fq:4 id:180884 éclogite/S*() po:nom is:fem se:minér et:grec di:* fq:4 id:225276 éclopé/F*() po:nom po:adj di:* fq:5 id:180886 écloper/a2p+() po:v1__t___zz di:* fq:3 id:180885 éclore/rC() po:v3_i_____a di:* fq:6 id:180887 écloserie/S*() po:nom is:fem se:techni di:* fq:4 id:218361 éclosion/S*() po:nom is:fem di:* fq:6 id:180889 éclusage/S*() po:nom is:mas di:* fq:4 id:180890 écluse/S*() po:nom is:fem di:* fq:6 id:180891 éclusée/S*() po:nom is:fem di:* fq:4 id:180894 écluser/a2p+() po:v1__t___zz di:* fq:5 id:180892 éclusier/F*() po:nom po:adj di:* fq:5 id:180893 écobilan/S*() po:nom is:mas lx:néo di:* fq:3 id:217292 écoblanchiment/S*() po:nom is:mas lx:néo di:* fq:2 id:219222 | > | 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 | éclisser/a2p+() po:v1__t___zz di:* fq:4 id:180884 éclogite/S*() po:nom is:fem se:minér et:grec di:* fq:4 id:225276 éclopé/F*() po:nom po:adj di:* fq:5 id:180886 écloper/a2p+() po:v1__t___zz di:* fq:3 id:180885 éclore/rC() po:v3_i_____a di:* fq:6 id:180887 écloserie/S*() po:nom is:fem se:techni di:* fq:4 id:218361 éclosion/S*() po:nom is:fem di:* fq:6 id:180889 éclosoir/S*() po:nom is:mas se:élev di:* id:235255 éclusage/S*() po:nom is:mas di:* fq:4 id:180890 écluse/S*() po:nom is:fem di:* fq:6 id:180891 éclusée/S*() po:nom is:fem di:* fq:4 id:180894 écluser/a2p+() po:v1__t___zz di:* fq:5 id:180892 éclusier/F*() po:nom po:adj di:* fq:5 id:180893 écobilan/S*() po:nom is:mas lx:néo di:* fq:3 id:217292 écoblanchiment/S*() po:nom is:mas lx:néo di:* fq:2 id:219222 |
︙ | ︙ | |||
28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 | Émilie/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:180565 Émilien/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:182634 Émilienne/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:201932 Émilie-Romagne/L' po:nom is:fem is:inv se:rég di:* fq:4 id:220771 Emilio/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:221578 Emily/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:221255 éminati/F*() po:nom po:adj se:gent di:* fq:0 id:224674 émincer/a2p+() po:v1__t___zz di:* fq:5 id:181435 éminemment/D'Q' po:adv di:* fq:7 id:181437 éminence/S*() po:nom is:fem di:* fq:6 id:181438 éminent/F*() po:adj di:* fq:7 id:181439 éminentissime/S*() po:adj is:epi et:ita di:* fq:4 id:181440 émir/S*() po:nom is:mas di:* fq:6 id:181441 émirat/S*() po:nom is:mas di:* fq:5 id:181442 | > | 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 | Émilie/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:180565 Émilien/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:182634 Émilienne/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:201932 Émilie-Romagne/L' po:nom is:fem is:inv se:rég di:* fq:4 id:220771 Emilio/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:221578 Emily/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:221255 éminati/F*() po:nom po:adj se:gent di:* fq:0 id:224674 émincé/S*() po:nom is:mas se:cuis di:* id:235207 émincer/a2p+() po:v1__t___zz di:* fq:5 id:181435 éminemment/D'Q' po:adv di:* fq:7 id:181437 éminence/S*() po:nom is:fem di:* fq:6 id:181438 éminent/F*() po:adj di:* fq:7 id:181439 éminentissime/S*() po:adj is:epi et:ita di:* fq:4 id:181440 émir/S*() po:nom is:mas di:* fq:6 id:181441 émirat/S*() po:nom is:mas di:* fq:5 id:181442 |
︙ | ︙ | |||
29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 | entérinement/S*() po:nom is:mas di:* fq:5 id:144812 entériner/a2p+() po:v1__t___zz di:* fq:6 id:144813 entérique/S*() po:adj is:epi di:* fq:5 id:144815 entérite/S*() po:nom is:fem di:* fq:6 id:144816 entérobactérie/S*() po:nom is:fem se:bio di:* fq:4 id:231020 entérocolite/S*() po:nom is:fem di:* fq:4 id:144818 entérocoque/S*() po:nom is:mas di:* fq:5 id:144819 entérokinase/S*() po:nom is:fem di:* fq:4 id:144820 entérologie/S*() po:nom is:fem se:méd di:* fq:5 id:231524 entéropathie/S*() po:nom is:fem se:méd di:* fq:4 id:225335 entéropneuste/S*() po:nom is:mas di:* fq:3 id:209315 entérorénal/W*() po:adj se:anat di:R fq:3 id:144821 entéro-rénal/W*() po:adj se:anat di:M fq:1 id:144817 entérostomie/S*() po:nom is:fem se:chir di:* fq:5 id:230730 | > | 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 | entérinement/S*() po:nom is:mas di:* fq:5 id:144812 entériner/a2p+() po:v1__t___zz di:* fq:6 id:144813 entérique/S*() po:adj is:epi di:* fq:5 id:144815 entérite/S*() po:nom is:fem di:* fq:6 id:144816 entérobactérie/S*() po:nom is:fem se:bio di:* fq:4 id:231020 entérocolite/S*() po:nom is:fem di:* fq:4 id:144818 entérocoque/S*() po:nom is:mas di:* fq:5 id:144819 entérocyte/S*() po:nom is:mas se:bio et:grec di:* id:235271 entérokinase/S*() po:nom is:fem di:* fq:4 id:144820 entérologie/S*() po:nom is:fem se:méd di:* fq:5 id:231524 entéropathie/S*() po:nom is:fem se:méd di:* fq:4 id:225335 entéropneuste/S*() po:nom is:mas di:* fq:3 id:209315 entérorénal/W*() po:adj se:anat di:R fq:3 id:144821 entéro-rénal/W*() po:adj se:anat di:M fq:1 id:144817 entérostomie/S*() po:nom is:fem se:chir di:* fq:5 id:230730 |
︙ | ︙ | |||
29789 29790 29791 29792 29793 29794 29795 | épicarde/S*() po:nom is:mas se:anat di:* fq:4 id:225143 épicarpe/S*() po:nom is:mas lx:vx di:* fq:4 id:181659 épice/S*() po:nom is:fem di:* fq:6 id:181660 épicéa/S*() po:nom is:mas se:bot et:lat di:* fq:6 id:181674 épicène/S*() po:adj is:epi di:* fq:4 id:181673 épicentral/W*() po:adj di:* fq:4 id:214563 épicentre/S*() po:nom is:mas di:* fq:5 id:181661 | | | 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 | épicarde/S*() po:nom is:mas se:anat di:* fq:4 id:225143 épicarpe/S*() po:nom is:mas lx:vx di:* fq:4 id:181659 épice/S*() po:nom is:fem di:* fq:6 id:181660 épicéa/S*() po:nom is:mas se:bot et:lat di:* fq:6 id:181674 épicène/S*() po:adj is:epi di:* fq:4 id:181673 épicentral/W*() po:adj di:* fq:4 id:214563 épicentre/S*() po:nom is:mas di:* fq:5 id:181661 épicer/a2p+() po:v1_it____a se:cuis di:* fq:5 id:181662 épicerie/S*() po:nom is:fem di:* fq:6 id:181663 épichlorhydrine/S*() po:nom is:fem di:* fq:4 id:215998 épicier/F*() po:nom di:* fq:6 id:181664 épiclèse/S*() po:nom is:fem se:chris di:* fq:4 id:182632 épicondyle/S*() po:nom is:mas di:* fq:5 id:181665 épicondylite/S*() po:nom is:fem di:* fq:4 id:215611 épicontinental/W*() po:adj se:géogr di:* fq:4 id:225131 |
︙ | ︙ | |||
29943 29944 29945 29946 29947 29948 29949 | épiscope/S*() po:nom is:mas di:* fq:4 id:181754 épisiotomie/S*() po:nom is:fem se:chir di:* fq:4 id:218370 épisode/S*() po:nom is:mas di:* fq:7 id:181755 épisodique/S*() po:adj is:epi di:* fq:6 id:181756 épisodiquement/D'Q' po:adv di:* fq:5 id:181757 épisome/S*() po:nom is:mas di:* fq:4 id:212986 épissage/S*() po:nom is:mas di:* fq:4 id:212945 | | | 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 | épiscope/S*() po:nom is:mas di:* fq:4 id:181754 épisiotomie/S*() po:nom is:fem se:chir di:* fq:4 id:218370 épisode/S*() po:nom is:mas di:* fq:7 id:181755 épisodique/S*() po:adj is:epi di:* fq:6 id:181756 épisodiquement/D'Q' po:adv di:* fq:5 id:181757 épisome/S*() po:nom is:mas di:* fq:4 id:212986 épissage/S*() po:nom is:mas di:* fq:4 id:212945 épisser/a2p+() po:v1__t____a lx:fxa se:bio se:marin di:* fq:4 id:181758 épissoir/S*() po:nom is:mas se:marin di:* fq:3 id:181759 épissurage/S*() po:nom is:mas se:tech di:* fq:1 id:224643 épissure/S*() po:nom is:fem di:* fq:5 id:181760 épistasie/S*() po:nom is:fem se:bio et:grec di:* fq:4 id:181762 épistasique/S*() po:adj is:epi lx:rare se:méd et:grec di:* fq:0 id:226569 épistaxis/L'D'Q' po:nom is:fem is:inv di:* fq:5 id:181763 épistémè/S*() po:nom is:fem et:grec di:* fq:5 id:218501 |
︙ | ︙ | |||
32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 | faldistoire/S.() po:nom is:mas se:chris et:lat di:* fq:3 id:145988 falerne/S.() po:nom is:mas di:* fq:4 id:145989 Falkland po:npr is:epi is:inv se:île di:* fq:5 id:124040 fallacieusement po:adv di:* fq:4 id:145991 fallacieux/W.() po:adj di:* fq:6 id:145990 Fallières po:patr is:epi is:inv di:* fq:5 id:205074 falloir/qA() po:v3__tnqmea di:* fq:8 id:145992 Fallope po:patr is:epi is:inv di:* fq:5 id:212633 Fallouja po:npr is:epi is:inv se:cité di:* fq:4 id:229697 falot/F.() po:adj di:* fq:5 id:145993 falot/S.() po:nom is:mas di:* fq:5 id:219399 faloter po:v1_i____zz po:infi lx:rare di:* fq:0 id:145994 falourde/S.() po:nom is:fem lx:vx di:* fq:4 id:145995 falsetto/S.() po:nom is:mas se:mus et:ita di:* fq:3 id:219644 | > | 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 | faldistoire/S.() po:nom is:mas se:chris et:lat di:* fq:3 id:145988 falerne/S.() po:nom is:mas di:* fq:4 id:145989 Falkland po:npr is:epi is:inv se:île di:* fq:5 id:124040 fallacieusement po:adv di:* fq:4 id:145991 fallacieux/W.() po:adj di:* fq:6 id:145990 Fallières po:patr is:epi is:inv di:* fq:5 id:205074 falloir/qA() po:v3__tnqmea di:* fq:8 id:145992 Fallon po:prn is:fem is:inv di:* id:235253 Fallope po:patr is:epi is:inv di:* fq:5 id:212633 Fallouja po:npr is:epi is:inv se:cité di:* fq:4 id:229697 falot/F.() po:adj di:* fq:5 id:145993 falot/S.() po:nom is:mas di:* fq:5 id:219399 faloter po:v1_i____zz po:infi lx:rare di:* fq:0 id:145994 falourde/S.() po:nom is:fem lx:vx di:* fq:4 id:145995 falsetto/S.() po:nom is:mas se:mus et:ita di:* fq:3 id:219644 |
︙ | ︙ | |||
34390 34391 34392 34393 34394 34395 34396 34397 34398 34399 34400 34401 34402 34403 | franchisé/F.() po:nom di:* fq:5 id:147428 franchiser/a0p+() po:v1_it____a di:* fq:4 id:147425 franchiseur/Fs() po:nom po:adj di:* fq:5 id:211174 franchissable/S.() po:adj is:epi di:* fq:5 id:147426 franchissement/S.() po:nom is:mas di:* fq:6 id:147427 franchouillard/F.() po:nom po:adj lx:fam di:* fq:4 id:211330 franchouillardise/S.() po:nom is:fem lx:péj di:* id:235004 francien/F,() po:adj di:* fq:4 id:228352 francien/S.() po:nom is:mas di:* fq:4 id:147429 francilien/F,() po:nom po:adj di:* fq:5 id:147430 Francillon-sur-Roubion po:npr is:epi is:inv se:cité di:X fq:2 id:232034 Francine po:prn is:fem is:inv di:* fq:6 id:124088 francique/S.() po:nom is:mas di:* fq:5 id:147431 Francis po:prn is:mas is:inv di:* fq:7 id:124089 | > | 34408 34409 34410 34411 34412 34413 34414 34415 34416 34417 34418 34419 34420 34421 34422 | franchisé/F.() po:nom di:* fq:5 id:147428 franchiser/a0p+() po:v1_it____a di:* fq:4 id:147425 franchiseur/Fs() po:nom po:adj di:* fq:5 id:211174 franchissable/S.() po:adj is:epi di:* fq:5 id:147426 franchissement/S.() po:nom is:mas di:* fq:6 id:147427 franchouillard/F.() po:nom po:adj lx:fam di:* fq:4 id:211330 franchouillardise/S.() po:nom is:fem lx:péj di:* id:235004 Francie po:nom is:fem is:inv se:pays se:hist di:* id:235233 francien/F,() po:adj di:* fq:4 id:228352 francien/S.() po:nom is:mas di:* fq:4 id:147429 francilien/F,() po:nom po:adj di:* fq:5 id:147430 Francillon-sur-Roubion po:npr is:epi is:inv se:cité di:X fq:2 id:232034 Francine po:prn is:fem is:inv di:* fq:6 id:124088 francique/S.() po:nom is:mas di:* fq:5 id:147431 Francis po:prn is:mas is:inv di:* fq:7 id:124089 |
︙ | ︙ | |||
34462 34463 34464 34465 34466 34467 34468 34469 34470 34471 34472 34473 34474 34475 | francolin/S.() po:nom is:mas di:* fq:4 id:147441 franco-luxembourgeois/F.() po:nom po:adj di:* fq:2 id:202131 franco-macédonien/F,() po:nom po:adj di:* fq:1 id:222016 franco-marocain/F.() po:nom po:adj di:* fq:3 id:215647 franco-mexicain/F.() po:nom po:adj di:* fq:2 id:221894 franco-monégasque/S.() po:nom po:adj is:epi di:* fq:2 id:222007 franco-néerlandais/F.() po:nom po:adj di:* fq:2 id:222008 franco-norvégien/F,() po:nom po:adj di:* fq:2 id:225512 Franconville po:npr is:epi is:inv se:cité di:* fq:5 id:124091 franco-pakistanais/F.() po:nom po:adj di:* fq:1 id:221920 franco-panaméen/F,() po:nom po:adj di:* fq:0 id:221893 franco-paraguayen/F,() po:nom po:adj di:* fq:0 id:222496 franco-péruvien/F,() po:nom po:adj di:* fq:2 id:221890 francophile/S.() po:nom po:adj is:epi di:* fq:5 id:147442 | > > | 34481 34482 34483 34484 34485 34486 34487 34488 34489 34490 34491 34492 34493 34494 34495 34496 | francolin/S.() po:nom is:mas di:* fq:4 id:147441 franco-luxembourgeois/F.() po:nom po:adj di:* fq:2 id:202131 franco-macédonien/F,() po:nom po:adj di:* fq:1 id:222016 franco-marocain/F.() po:nom po:adj di:* fq:3 id:215647 franco-mexicain/F.() po:nom po:adj di:* fq:2 id:221894 franco-monégasque/S.() po:nom po:adj is:epi di:* fq:2 id:222007 franco-néerlandais/F.() po:nom po:adj di:* fq:2 id:222008 Franconie po:nom is:fem is:inv se:rég di:* id:235231 franconien/F+() po:nom po:adj se:gent di:* id:235235 franco-norvégien/F,() po:nom po:adj di:* fq:2 id:225512 Franconville po:npr is:epi is:inv se:cité di:* fq:5 id:124091 franco-pakistanais/F.() po:nom po:adj di:* fq:1 id:221920 franco-panaméen/F,() po:nom po:adj di:* fq:0 id:221893 franco-paraguayen/F,() po:nom po:adj di:* fq:0 id:222496 franco-péruvien/F,() po:nom po:adj di:* fq:2 id:221890 francophile/S.() po:nom po:adj is:epi di:* fq:5 id:147442 |
︙ | ︙ | |||
34575 34576 34577 34578 34579 34580 34581 34582 34583 34584 34585 34586 34587 34588 34589 34590 34591 34592 34593 34594 34595 34596 34597 34598 | Fréchet po:patr is:epi is:inv di:* fq:5 id:124106 Fred po:prn is:epi is:inv di:* fq:6 id:221194 fredaine/S.() po:nom is:fem di:* fq:5 id:147507 Freddy po:prn is:mas is:inv di:* fq:5 id:201554 Frédéric po:prn is:mas is:inv di:* fq:7 id:124107 Frederick po:prn is:mas is:inv di:* fq:6 id:224040 Fredericton po:npr is:epi is:inv se:cité di:* fq:5 id:205190 Frédérique po:prn is:epi is:inv di:* fq:5 id:124108 Fredholm po:patr is:epi is:inv di:* fq:4 id:124098 fredonnement/S.() po:nom is:mas di:* fq:4 id:147508 fredonner/a0p+() po:v1_it___zz di:* fq:5 id:147509 Free po:npr is:epi is:inv se:soc se:info et:angl di:* fq:6 id:224504 FreeBSD po:npr is:mas is:inv se:prod se:info di:X fq:4 id:227115 freejazz po:nom is:mas is:inv et:angl di:R fq:3 id:207100 free-jazz po:nom is:mas is:inv et:angl di:M fq:2 id:147510 freelance/S.() po:nom po:adj is:epi et:angl di:R fq:4 id:207101 free-lance po:adj is:epi is:inv et:angl di:M fq:2 id:207102 free-lance/S.() po:nom is:epi et:angl di:M fq:1 id:147511 freemartin/S.() po:nom is:mas lx:rare et:angl di:R fq:3 id:209704 free-martin/S.() po:nom is:mas lx:rare et:angl di:M fq:1 id:209703 freemium/S.() po:nom is:mas se:biz di:X fq:2 id:227731 freeshop/S.() po:nom is:mas et:angl di:R fq:0 id:209702 free-shop/S.() po:nom is:mas et:angl di:M fq:1 id:209701 freesia/S.() po:nom is:mas se:bot di:M fq:3 id:147512 | > | | 34596 34597 34598 34599 34600 34601 34602 34603 34604 34605 34606 34607 34608 34609 34610 34611 34612 34613 34614 34615 34616 34617 34618 34619 34620 34621 34622 34623 34624 34625 34626 34627 34628 | Fréchet po:patr is:epi is:inv di:* fq:5 id:124106 Fred po:prn is:epi is:inv di:* fq:6 id:221194 fredaine/S.() po:nom is:fem di:* fq:5 id:147507 Freddy po:prn is:mas is:inv di:* fq:5 id:201554 Frédéric po:prn is:mas is:inv di:* fq:7 id:124107 Frederick po:prn is:mas is:inv di:* fq:6 id:224040 Fredericton po:npr is:epi is:inv se:cité di:* fq:5 id:205190 Frederik po:prn is:mas is:inv di:* id:235264 Frédérique po:prn is:epi is:inv di:* fq:5 id:124108 Fredholm po:patr is:epi is:inv di:* fq:4 id:124098 fredonnement/S.() po:nom is:mas di:* fq:4 id:147508 fredonner/a0p+() po:v1_it___zz di:* fq:5 id:147509 Free po:npr is:epi is:inv se:soc se:info et:angl di:* fq:6 id:224504 FreeBSD po:npr is:mas is:inv se:prod se:info di:X fq:4 id:227115 freejazz po:nom is:mas is:inv et:angl di:R fq:3 id:207100 free-jazz po:nom is:mas is:inv et:angl di:M fq:2 id:147510 freelance/S.() po:nom po:adj is:epi et:angl di:R fq:4 id:207101 free-lance po:adj is:epi is:inv et:angl di:M fq:2 id:207102 free-lance/S.() po:nom is:epi et:angl di:M fq:1 id:147511 freemartin/S.() po:nom is:mas lx:rare et:angl di:R fq:3 id:209704 free-martin/S.() po:nom is:mas lx:rare et:angl di:M fq:1 id:209703 freemium/S.() po:nom is:mas se:biz di:X fq:2 id:227731 freeshop/S.() po:nom is:mas et:angl di:R fq:0 id:209702 free-shop/S.() po:nom is:mas et:angl di:M fq:1 id:209701 freesia/S.() po:nom is:mas se:bot di:M fq:3 id:147512 Free Software Foundation po:npr is:fem is:sg se:soc se:info se:polit di:* fq:0 id:231959 freestyle/S.() po:nom is:mas se:sport et:angl di:* fq:4 id:221052 free-style/S.() po:nom is:mas se:sport et:angl di:C fq:2 id:221053 Freetown po:npr is:epi is:inv se:cité di:* fq:5 id:124099 freezer/S.() po:nom is:mas et:angl di:M fq:4 id:147513 freezeur/S.() po:nom is:mas et:angl di:R fq:0 id:147514 frégate/S.() po:nom is:fem di:* fq:6 id:147727 frégater/a0p+() po:v1__t___zz di:* fq:2 id:147728 |
︙ | ︙ | |||
36186 36187 36188 36189 36190 36191 36192 36193 36194 36195 36196 36197 36198 36199 | géophysique/S.() po:adj is:epi di:* fq:5 id:150003 géophyte/S.() po:adj is:epi se:bot di:* id:235009 géopoliticien/F,() po:nom di:* fq:4 id:207147 géopolitique/S.() po:nom is:fem di:* fq:6 id:212042 géopolitique/S.() po:adj is:epi di:* fq:6 id:150004 géopolitiquement po:adv se:polit di:* fq:4 id:221484 géopolitologue/S.() po:nom is:epi di:* fq:3 id:206283 géopotentiel/F,() po:adj di:* fq:4 id:215780 géoréférencement/S.() po:nom is:mas di:X fq:3 id:232044 George po:prn is:mas is:inv di:* fq:7 id:124166 Georges po:prn is:mas is:inv di:* fq:7 id:124167 Georgetown po:npr is:epi is:inv se:cité di:* fq:5 id:124168 Georgette po:prn is:fem is:inv di:* fq:5 id:124169 Georgia po:prn is:fem is:inv di:* fq:5 id:222862 | > | 36208 36209 36210 36211 36212 36213 36214 36215 36216 36217 36218 36219 36220 36221 36222 | géophysique/S.() po:adj is:epi di:* fq:5 id:150003 géophyte/S.() po:adj is:epi se:bot di:* id:235009 géopoliticien/F,() po:nom di:* fq:4 id:207147 géopolitique/S.() po:nom is:fem di:* fq:6 id:212042 géopolitique/S.() po:adj is:epi di:* fq:6 id:150004 géopolitiquement po:adv se:polit di:* fq:4 id:221484 géopolitologue/S.() po:nom is:epi di:* fq:3 id:206283 géopositionnement/S.() po:nom is:mas se:géogr se:info di:* id:235245 géopotentiel/F,() po:adj di:* fq:4 id:215780 géoréférencement/S.() po:nom is:mas di:X fq:3 id:232044 George po:prn is:mas is:inv di:* fq:7 id:124166 Georges po:prn is:mas is:inv di:* fq:7 id:124167 Georgetown po:npr is:epi is:inv se:cité di:* fq:5 id:124168 Georgette po:prn is:fem is:inv di:* fq:5 id:124169 Georgia po:prn is:fem is:inv di:* fq:5 id:222862 |
︙ | ︙ | |||
37733 37734 37735 37736 37737 37738 37739 37740 37741 37742 37743 37744 37745 37746 | grip/S.() po:nom is:mas et:angl di:* fq:4 id:206792 grippage/S.() po:nom is:mas di:* fq:5 id:149532 grippal/W.() po:adj di:* fq:5 id:149533 grippe/S.() po:nom is:fem di:* fq:6 id:149534 grippement/S.() po:nom is:mas lx:alt se:techni di:* fq:4 id:220828 gripper/a0p+() po:v1_it_q_zz di:* fq:5 id:149536 grippe-sou/S.() po:nom po:adj is:epi di:* fq:2 id:149535 gris/F.() po:nom po:adj lx:col di:* fq:7 id:149545 grisaille/S.() po:nom is:fem di:* fq:5 id:149539 grisailler/a0p+() po:v1_it___zz di:* fq:4 id:149540 grisant/F.() po:adj di:* fq:5 id:149542 grisard/S.() po:nom is:mas se:bot se:zool di:* fq:4 id:149543 grisâtre/S.() po:adj is:epi di:* fq:6 id:149559 grisbi/S.() po:nom is:mas lx:fam di:* fq:4 id:149544 | > | 37756 37757 37758 37759 37760 37761 37762 37763 37764 37765 37766 37767 37768 37769 37770 | grip/S.() po:nom is:mas et:angl di:* fq:4 id:206792 grippage/S.() po:nom is:mas di:* fq:5 id:149532 grippal/W.() po:adj di:* fq:5 id:149533 grippe/S.() po:nom is:fem di:* fq:6 id:149534 grippement/S.() po:nom is:mas lx:alt se:techni di:* fq:4 id:220828 gripper/a0p+() po:v1_it_q_zz di:* fq:5 id:149536 grippe-sou/S.() po:nom po:adj is:epi di:* fq:2 id:149535 grippette/S.() po:nom is:fem se:méd di:* id:235205 gris/F.() po:nom po:adj lx:col di:* fq:7 id:149545 grisaille/S.() po:nom is:fem di:* fq:5 id:149539 grisailler/a0p+() po:v1_it___zz di:* fq:4 id:149540 grisant/F.() po:adj di:* fq:5 id:149542 grisard/S.() po:nom is:mas se:bot se:zool di:* fq:4 id:149543 grisâtre/S.() po:adj is:epi di:* fq:6 id:149559 grisbi/S.() po:nom is:mas lx:fam di:* fq:4 id:149544 |
︙ | ︙ | |||
38427 38428 38429 38430 38431 38432 38433 38434 38435 38436 38437 38438 38439 38440 | Hampshire po:nom is:mas is:inv se:rég di:* fq:5 id:183403 hamster/S.() po:nom is:mas lx:pel et:all di:* fq:5 id:150189 Ham-sur-Heure-Nalinnes/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:3 id:230876 Hamza/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:202157 han po:interj lx:onom se:@ di:* fq:6 id:150190 han/S.() po:nom po:adj is:epi di:* fq:5 id:229701 Han po:npr is:epi is:inv se:cité di:* fq:6 id:124270 hanafisme/S.() po:nom is:mas lx:pel se:islam se:droit et:ara di:* fq:3 id:226618 hanap/S.() po:nom is:mas lx:pel di:* fq:5 id:150191 hanbalisme/S.() po:nom is:mas lx:pel se:islam se:droit et:ara di:* fq:4 id:226619 hanche/S.() po:nom is:fem lx:pel di:* fq:6 id:150192 hanchement/S.() po:nom is:mas lx:pel di:* fq:4 id:150193 hancher/a0p+() po:v1_it___zz di:* fq:4 id:150194 handball/S.() po:nom is:mas lx:pel se:sport et:all di:* fq:6 id:150198 | > | 38451 38452 38453 38454 38455 38456 38457 38458 38459 38460 38461 38462 38463 38464 38465 | Hampshire po:nom is:mas is:inv se:rég di:* fq:5 id:183403 hamster/S.() po:nom is:mas lx:pel et:all di:* fq:5 id:150189 Ham-sur-Heure-Nalinnes/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:3 id:230876 Hamza/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:202157 han po:interj lx:onom se:@ di:* fq:6 id:150190 han/S.() po:nom po:adj is:epi di:* fq:5 id:229701 Han po:npr is:epi is:inv se:cité di:* fq:6 id:124270 Hana/L'D'Q' po:prn is:fem is:inv di:* id:235220 hanafisme/S.() po:nom is:mas lx:pel se:islam se:droit et:ara di:* fq:3 id:226618 hanap/S.() po:nom is:mas lx:pel di:* fq:5 id:150191 hanbalisme/S.() po:nom is:mas lx:pel se:islam se:droit et:ara di:* fq:4 id:226619 hanche/S.() po:nom is:fem lx:pel di:* fq:6 id:150192 hanchement/S.() po:nom is:mas lx:pel di:* fq:4 id:150193 hancher/a0p+() po:v1_it___zz di:* fq:4 id:150194 handball/S.() po:nom is:mas lx:pel se:sport et:all di:* fq:6 id:150198 |
︙ | ︙ | |||
40896 40897 40898 40899 40900 40901 40902 | hystéroscopique/S*() po:adj is:epi di:* fq:3 id:205786 hystérotomie/S*() po:nom is:fem se:méd se:chir di:* fq:4 id:218660 Hyundai po:npr is:epi is:inv se:soc di:* fq:5 id:222330 Hz/U.||-- po:nom is:mas is:inv lx:symb di:* fq:6 id:201026 i po:nom is:mas is:inv di:* fq:8 id:151540 iʳᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234899 iᵉʳ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234898 | | | 40921 40922 40923 40924 40925 40926 40927 40928 40929 40930 40931 40932 40933 40934 40935 | hystéroscopique/S*() po:adj is:epi di:* fq:3 id:205786 hystérotomie/S*() po:nom is:fem se:méd se:chir di:* fq:4 id:218660 Hyundai po:npr is:epi is:inv se:soc di:* fq:5 id:222330 Hz/U.||-- po:nom is:mas is:inv lx:symb di:* fq:6 id:201026 i po:nom is:mas is:inv di:* fq:8 id:151540 iʳᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234899 iᵉʳ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234898 I/-- po:nbro is:epi is:sg se:@ et:lat di:* fq:8 id:204053 I₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234329 Iʳᵉ/-- po:adj is:fem is:sg lx:ord et:lat di:* fq:0 id:225868 Iᵉʳ/-- po:adj is:mas is:sg lx:ord et:lat di:* fq:2 id:225865 IA/L'D'Q' po:nom is:fem is:inv lx:néo lx:sig se:info di:* fq:6 id:219386 Iain po:prn is:mas is:inv di:* fq:4 id:222758 iambe/S*() po:nom is:mas di:* fq:5 id:151542 ïambe/S*() po:nom is:mas lx:dic di:C fq:5 id:214766 |
︙ | ︙ | |||
41131 41132 41133 41134 41135 41136 41137 | iguane/S*() po:nom is:mas se:zool et:esp di:* fq:5 id:151684 iguanodon/S*() po:nom is:mas di:* fq:4 id:151685 igue/S*() po:nom is:fem lx:rég di:* fq:4 id:151686 IHM/L'D'Q' po:nom is:fem is:inv lx:sig se:ingé di:* fq:4 id:230297 iiᵈ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234900 iiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234902 iiᵈᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234901 | | | | 41156 41157 41158 41159 41160 41161 41162 41163 41164 41165 41166 41167 41168 41169 41170 41171 41172 41173 41174 41175 41176 41177 41178 41179 | iguane/S*() po:nom is:mas se:zool et:esp di:* fq:5 id:151684 iguanodon/S*() po:nom is:mas di:* fq:4 id:151685 igue/S*() po:nom is:fem lx:rég di:* fq:4 id:151686 IHM/L'D'Q' po:nom is:fem is:inv lx:sig se:ingé di:* fq:4 id:230297 iiᵈ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234900 iiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234902 iiᵈᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234901 II/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:8 id:204052 IIᵈ po:adj is:mas is:sg lx:ord et:lat di:* fq:0 id:232679 IIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225866 IIᵈᵉ/-- po:adj is:fem is:sg lx:ord et:lat di:* fq:0 id:232677 IIⁿᵈ/-- po:adj is:mas is:sg lx:ord et:lat di:* fq:0 id:232676 IId po:adj is:mas is:sg lx:ord et:lat di:* fq:3 id:232678 IIde/-- po:adj is:fem is:sg lx:ord et:lat di:* fq:3 id:204178 IIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:124376 iiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234903 III/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:8 id:204051 IIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225867 IIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:124375 IInd/-- po:adj is:mas is:sg lx:ord et:lat di:* fq:3 id:204177 ijtihad/S*() po:nom is:mas se:islam et:ara di:* fq:4 id:231602 Ikea/L'D'Q' po:npr is:epi is:inv se:soc se:biz di:* fq:4 id:231112 ikebana/S*() po:nom is:mas se:art et:jap di:* fq:3 id:219403 il/D'Q'Q*QjSi po:mg po:propersuj po:3pe is:mas is:sg se:@ et:lat di:* fq:9 id:151687 |
︙ | ︙ | |||
41275 41276 41277 41278 41279 41280 41281 41282 41283 41284 41285 41286 41287 41288 | imagisme/S*() po:nom is:mas lx:rare et:angl di:* fq:4 id:211486 imagiste/S*() po:nom po:adj is:epi et:angl di:* fq:4 id:211487 imago/S*() po:nom is:epi et:lat di:* fq:6 id:151751 imagoïque/S*() po:adj is:epi se:psycho se:bio di:* fq:4 id:226718 imam/S*() po:nom is:mas se:islam et:ara di:* fq:6 id:151753 imamat/S*() po:nom is:mas se:islam et:ara di:* fq:5 id:151754 imanat/S*() po:nom is:mas lx:alt et:ara di:A fq:4 id:151755 IMAP/L'D'Q' po:nom is:mas is:inv lx:sig di:X fq:4 id:227397 IMAPS/L'D'Q' po:nom is:mas is:inv lx:sig di:X fq:1 id:227398 imazamox/L'D'Q' po:nom is:fem is:inv di:X fq:1 id:227856 imbaisable/S*() po:adj is:epi lx:fam lx:péj se:sexe di:* fq:2 id:231157 imbattable/S*() po:adj is:epi di:* fq:5 id:151756 imbécile/S*() po:nom po:adj is:epi di:* fq:6 id:151773 imbécilement/D'Q' po:adv di:* fq:4 id:209784 | > | 41300 41301 41302 41303 41304 41305 41306 41307 41308 41309 41310 41311 41312 41313 41314 | imagisme/S*() po:nom is:mas lx:rare et:angl di:* fq:4 id:211486 imagiste/S*() po:nom po:adj is:epi et:angl di:* fq:4 id:211487 imago/S*() po:nom is:epi et:lat di:* fq:6 id:151751 imagoïque/S*() po:adj is:epi se:psycho se:bio di:* fq:4 id:226718 imam/S*() po:nom is:mas se:islam et:ara di:* fq:6 id:151753 imamat/S*() po:nom is:mas se:islam et:ara di:* fq:5 id:151754 imanat/S*() po:nom is:mas lx:alt et:ara di:A fq:4 id:151755 Imane/L'D'Q' po:prn is:fem is:inv di:* id:235224 IMAP/L'D'Q' po:nom is:mas is:inv lx:sig di:X fq:4 id:227397 IMAPS/L'D'Q' po:nom is:mas is:inv lx:sig di:X fq:1 id:227398 imazamox/L'D'Q' po:nom is:fem is:inv di:X fq:1 id:227856 imbaisable/S*() po:adj is:epi lx:fam lx:péj se:sexe di:* fq:2 id:231157 imbattable/S*() po:adj is:epi di:* fq:5 id:151756 imbécile/S*() po:nom po:adj is:epi di:* fq:6 id:151773 imbécilement/D'Q' po:adv di:* fq:4 id:209784 |
︙ | ︙ | |||
41430 41431 41432 41433 41434 41435 41436 41437 41438 41439 41440 41441 41442 41443 | immunoglobuline/S*() po:nom is:fem di:* fq:5 id:151863 immunohistochimie/S*() po:nom is:fem se:sc se:bio di:* fq:4 id:218444 immunologie/S*() po:nom is:fem di:* fq:5 id:151865 immunologique/S*() po:adj is:epi di:* fq:5 id:182624 immunologiquement/L'D'Q' po:adv se:méd di:* fq:4 id:231353 immunologiste/S*() po:nom is:epi di:* fq:4 id:202119 immunologue/S*() po:nom is:epi lx:alt di:* fq:3 id:202118 immunopathologie/S*() po:nom is:fem di:* fq:3 id:205341 immunopathologique/S*() po:adj is:epi lx:rare di:* fq:3 id:205789 immunostimulant/F*() po:adj se:méd se:bio di:* fq:4 id:223396 immunostimulant/S*() po:nom is:mas se:méd se:bio di:* fq:3 id:223397 immunosuppresseur/S*() po:nom po:adj is:mas di:* fq:4 id:151866 immunosuppressif/F*() po:adj se:méd di:* fq:4 id:219742 immunosuppression/S*() po:nom is:fem di:* fq:4 id:215636 | > | 41456 41457 41458 41459 41460 41461 41462 41463 41464 41465 41466 41467 41468 41469 41470 | immunoglobuline/S*() po:nom is:fem di:* fq:5 id:151863 immunohistochimie/S*() po:nom is:fem se:sc se:bio di:* fq:4 id:218444 immunologie/S*() po:nom is:fem di:* fq:5 id:151865 immunologique/S*() po:adj is:epi di:* fq:5 id:182624 immunologiquement/L'D'Q' po:adv se:méd di:* fq:4 id:231353 immunologiste/S*() po:nom is:epi di:* fq:4 id:202119 immunologue/S*() po:nom is:epi lx:alt di:* fq:3 id:202118 immunomodulateur/Fi() po:adj se:méd di:* id:235239 immunopathologie/S*() po:nom is:fem di:* fq:3 id:205341 immunopathologique/S*() po:adj is:epi lx:rare di:* fq:3 id:205789 immunostimulant/F*() po:adj se:méd se:bio di:* fq:4 id:223396 immunostimulant/S*() po:nom is:mas se:méd se:bio di:* fq:3 id:223397 immunosuppresseur/S*() po:nom po:adj is:mas di:* fq:4 id:151866 immunosuppressif/F*() po:adj se:méd di:* fq:4 id:219742 immunosuppression/S*() po:nom is:fem di:* fq:4 id:215636 |
︙ | ︙ | |||
43688 43689 43690 43691 43692 43693 43694 43695 43696 43697 43698 43699 43700 43701 | intracardiaque/S*() po:adj is:epi di:* fq:5 id:153480 intracellulaire/S*() po:adj is:epi di:* fq:5 id:153481 intracérébral/W*() po:adj se:anat di:* fq:5 id:217126 intrachromosomique/S*() po:adj is:epi di:* fq:3 id:216412 intracommunautaire/S*() po:adj is:epi di:* fq:5 id:153482 intracontinental/W*() po:adj di:* fq:4 id:200954 intracrânien/F+() po:adj di:* fq:5 id:153483 intradermique/S*() po:adj is:epi di:* fq:5 id:153484 intradermoréaction/S*() po:nom is:fem se:méd di:* fq:4 id:153486 intradermo-réaction/S*() po:nom is:fem se:méd di:C fq:1 id:153485 intradiégétique/S*() po:adj is:epi se:ciné se:litt di:* fq:4 id:217320 intrados/L'D'Q' po:nom is:mas is:inv di:* fq:5 id:153487 intraduisible/S*() po:adj is:epi di:* fq:5 id:153488 intraembryonnaire/S*() po:adj is:epi se:bio di:R fq:2 id:225360 | > | 43715 43716 43717 43718 43719 43720 43721 43722 43723 43724 43725 43726 43727 43728 43729 | intracardiaque/S*() po:adj is:epi di:* fq:5 id:153480 intracellulaire/S*() po:adj is:epi di:* fq:5 id:153481 intracérébral/W*() po:adj se:anat di:* fq:5 id:217126 intrachromosomique/S*() po:adj is:epi di:* fq:3 id:216412 intracommunautaire/S*() po:adj is:epi di:* fq:5 id:153482 intracontinental/W*() po:adj di:* fq:4 id:200954 intracrânien/F+() po:adj di:* fq:5 id:153483 intracytoplasmique/S*() po:adj is:epi se:bio di:* id:235238 intradermique/S*() po:adj is:epi di:* fq:5 id:153484 intradermoréaction/S*() po:nom is:fem se:méd di:* fq:4 id:153486 intradermo-réaction/S*() po:nom is:fem se:méd di:C fq:1 id:153485 intradiégétique/S*() po:adj is:epi se:ciné se:litt di:* fq:4 id:217320 intrados/L'D'Q' po:nom is:mas is:inv di:* fq:5 id:153487 intraduisible/S*() po:adj is:epi di:* fq:5 id:153488 intraembryonnaire/S*() po:adj is:epi se:bio di:R fq:2 id:225360 |
︙ | ︙ | |||
44390 44391 44392 44393 44394 44395 44396 | itinérant/F*() po:nom po:adj di:* fq:6 id:153945 Itô/L'D'Q' po:patr is:epi is:inv di:* fq:4 id:124424 itou po:adv di:* fq:4 id:153946 IUFM/L'D'Q' po:nom is:mas is:inv lx:sig lx:fra se:édu di:* fq:5 id:222618 iule/S*() po:nom is:mas se:zool se:bot di:* fq:5 id:153951 IUT/L'D'Q' po:nom is:mas is:inv lx:sig di:* fq:5 id:204294 ivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234904 | | | 44418 44419 44420 44421 44422 44423 44424 44425 44426 44427 44428 44429 44430 44431 44432 | itinérant/F*() po:nom po:adj di:* fq:6 id:153945 Itô/L'D'Q' po:patr is:epi is:inv di:* fq:4 id:124424 itou po:adv di:* fq:4 id:153946 IUFM/L'D'Q' po:nom is:mas is:inv lx:sig lx:fra se:édu di:* fq:5 id:222618 iule/S*() po:nom is:mas se:zool se:bot di:* fq:5 id:153951 IUT/L'D'Q' po:nom is:mas is:inv lx:sig di:* fq:5 id:204294 ivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234904 IV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:8 id:204050 IVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225869 Iva/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:222679 Ivan/L'D'Q' po:prn is:mas is:inv di:* fq:6 id:221592 Ivana/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:222004 Ivanhoé/L'D'Q' po:prn is:mas is:inv se:hist di:* fq:4 id:124425 Ivanna/L'D'Q' po:prn is:fem is:inv di:* fq:4 id:230572 Ivar/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:225104 |
︙ | ︙ | |||
44420 44421 44422 44423 44424 44425 44426 | ivrogne/F;() po:nom se:alcool di:* fq:6 id:153964 ivrognerie/S*() po:nom is:fem se:alcool di:* fq:6 id:153963 Ivry-sur-Seine/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:4 id:124426 Ivy/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:226660 iwan/S*() po:nom is:mas et:pers di:* fq:4 id:211543 Iwasawa/L'D'Q' po:patr is:epi is:inv di:* fq:3 id:124427 ixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234909 | | | 44448 44449 44450 44451 44452 44453 44454 44455 44456 44457 44458 44459 44460 44461 44462 | ivrogne/F;() po:nom se:alcool di:* fq:6 id:153964 ivrognerie/S*() po:nom is:fem se:alcool di:* fq:6 id:153963 Ivry-sur-Seine/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:4 id:124426 Ivy/L'D'Q' po:prn is:fem is:inv di:* fq:5 id:226660 iwan/S*() po:nom is:mas et:pers di:* fq:4 id:211543 Iwasawa/L'D'Q' po:patr is:epi is:inv di:* fq:3 id:124427 ixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234909 IX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204045 IXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225870 IXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:124378 Ixelles/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:5 id:200682 ixia/S*() po:nom is:fem et:lat di:* fq:3 id:153966 ixième/S*() po:nom po:adj is:epi lx:ord di:* fq:4 id:200768 Ixion/L'D'Q' po:prn is:mas is:inv di:* fq:5 id:124428 ixode/S*() po:nom is:mas se:zool et:grec di:* fq:4 id:153967 |
︙ | ︙ | |||
44552 44553 44554 44555 44556 44557 44558 44559 44560 44561 44562 44563 44564 44565 | jambonneau/X.() po:nom is:mas se:cuis di:* fq:4 id:154038 jambonner/a0p+() po:v1__t___zz di:* fq:3 id:154039 jambonnette/S.() po:nom is:fem se:cuis di:* fq:1 id:218678 jamboree/S.() po:nom is:mas di:M fq:4 id:154041 jamborée/S.() po:nom is:mas di:R fq:1 id:154042 jambose/S.() po:nom is:fem se:bot et:port di:* fq:1 id:154043 jambosier/S.() po:nom is:mas se:bot di:* fq:3 id:154044 jamerosier/S.() po:nom is:mas di:* fq:0 id:154046 James po:prn is:mas is:inv di:* fq:7 id:124439 Jamésie po:nom is:fem is:inv se:rég di:* fq:3 id:200663 Jamie po:prn is:fem is:inv di:* fq:5 id:221269 Jamil po:prn is:mas is:inv di:* fq:5 id:222560 Jamila po:prn is:fem is:inv di:* fq:4 id:222559 jam-session/S.() po:nom is:fem di:* fq:2 id:154029 | > | 44580 44581 44582 44583 44584 44585 44586 44587 44588 44589 44590 44591 44592 44593 44594 | jambonneau/X.() po:nom is:mas se:cuis di:* fq:4 id:154038 jambonner/a0p+() po:v1__t___zz di:* fq:3 id:154039 jambonnette/S.() po:nom is:fem se:cuis di:* fq:1 id:218678 jamboree/S.() po:nom is:mas di:M fq:4 id:154041 jamborée/S.() po:nom is:mas di:R fq:1 id:154042 jambose/S.() po:nom is:fem se:bot et:port di:* fq:1 id:154043 jambosier/S.() po:nom is:mas se:bot di:* fq:3 id:154044 Jamel po:prn is:mas is:inv di:* id:235213 jamerosier/S.() po:nom is:mas di:* fq:0 id:154046 James po:prn is:mas is:inv di:* fq:7 id:124439 Jamésie po:nom is:fem is:inv se:rég di:* fq:3 id:200663 Jamie po:prn is:fem is:inv di:* fq:5 id:221269 Jamil po:prn is:mas is:inv di:* fq:5 id:222560 Jamila po:prn is:fem is:inv di:* fq:4 id:222559 jam-session/S.() po:nom is:fem di:* fq:2 id:154029 |
︙ | ︙ | |||
44755 44756 44757 44758 44759 44760 44761 44762 44763 44764 44765 44766 44767 44768 | je-ne-sais-quoi po:nom is:mas is:inv di:* fq:2 id:154151 Jenkins po:npr is:mas is:inv se:prod se:info di:X fq:5 id:227539 Jenna po:prn is:fem is:inv di:* fq:4 id:221753 jennérien/F,() po:adj di:* fq:4 id:154162 Jennifer po:prn is:fem is:inv di:* fq:5 id:201727 jenny/S.() po:nom is:fem se:tex se:techni et:angl di:* fq:5 id:154161 Jenny po:prn is:fem is:inv di:* fq:6 id:221570 Jensen po:patr is:epi is:inv di:* fq:5 id:124455 jérémiade/S.() po:nom is:fem lx:fam di:* fq:5 id:154426 Jeremiah po:prn is:mas is:inv di:* fq:5 id:221809 Jérémie po:prn is:mas is:inv di:* fq:6 id:124491 Jeremy po:prn is:mas is:inv di:* fq:5 id:221215 Jérémy po:prn is:mas is:inv di:* fq:5 id:201733 jerez po:nom is:mas is:inv di:* fq:3 id:154163 | > | 44784 44785 44786 44787 44788 44789 44790 44791 44792 44793 44794 44795 44796 44797 44798 | je-ne-sais-quoi po:nom is:mas is:inv di:* fq:2 id:154151 Jenkins po:npr is:mas is:inv se:prod se:info di:X fq:5 id:227539 Jenna po:prn is:fem is:inv di:* fq:4 id:221753 jennérien/F,() po:adj di:* fq:4 id:154162 Jennifer po:prn is:fem is:inv di:* fq:5 id:201727 jenny/S.() po:nom is:fem se:tex se:techni et:angl di:* fq:5 id:154161 Jenny po:prn is:fem is:inv di:* fq:6 id:221570 Jens po:prn is:mas is:inv di:* id:235254 Jensen po:patr is:epi is:inv di:* fq:5 id:124455 jérémiade/S.() po:nom is:fem lx:fam di:* fq:5 id:154426 Jeremiah po:prn is:mas is:inv di:* fq:5 id:221809 Jérémie po:prn is:mas is:inv di:* fq:6 id:124491 Jeremy po:prn is:mas is:inv di:* fq:5 id:221215 Jérémy po:prn is:mas is:inv di:* fq:5 id:201733 jerez po:nom is:mas is:inv di:* fq:3 id:154163 |
︙ | ︙ | |||
44796 44797 44798 44799 44800 44801 44802 44803 44804 44805 44806 44807 44808 44809 | jetage/S.() po:nom is:mas di:* fq:5 id:154172 jeté/S.() po:nom is:mas se:@ di:* fq:7 id:218127 jetée/S.() po:nom is:fem se:urba se:marin di:* fq:6 id:232796 jeter/d0p+() po:v1_itnq__a di:* fq:8 id:154173 jeteur/Fs() po:nom di:* fq:5 id:154174 jeton/S.() po:nom is:mas di:* fq:6 id:154175 jetset/S.() po:nom is:epi et:angl di:R fq:3 id:209057 jet-set/S.() po:nom is:epi et:angl di:M fq:2 id:209056 jetsetteur/Fs() po:nom et:angl di:R fq:0 id:209059 jet-setteur/Fs() po:nom et:angl di:M fq:2 id:209058 jetski/S.() po:nom is:mas lx:dép et:angl di:R fq:2 id:209538 jet-ski/S.() po:nom is:mas lx:dép et:angl di:M fq:3 id:209537 jetsociety/S.() po:nom is:fem lx:alt et:angl di:R fq:1 id:209873 jet-society/A.() po:nom is:fem lx:alt et:angl di:* fq:1 id:209871 | > | 44826 44827 44828 44829 44830 44831 44832 44833 44834 44835 44836 44837 44838 44839 44840 | jetage/S.() po:nom is:mas di:* fq:5 id:154172 jeté/S.() po:nom is:mas se:@ di:* fq:7 id:218127 jetée/S.() po:nom is:fem se:urba se:marin di:* fq:6 id:232796 jeter/d0p+() po:v1_itnq__a di:* fq:8 id:154173 jeteur/Fs() po:nom di:* fq:5 id:154174 jeton/S.() po:nom is:mas di:* fq:6 id:154175 jetset/S.() po:nom is:epi et:angl di:R fq:3 id:209057 jet set po:nom is:fem is:inv se:socio et:angl di:* id:235210 jet-set/S.() po:nom is:epi et:angl di:M fq:2 id:209056 jetsetteur/Fs() po:nom et:angl di:R fq:0 id:209059 jet-setteur/Fs() po:nom et:angl di:M fq:2 id:209058 jetski/S.() po:nom is:mas lx:dép et:angl di:R fq:2 id:209538 jet-ski/S.() po:nom is:mas lx:dép et:angl di:M fq:3 id:209537 jetsociety/S.() po:nom is:fem lx:alt et:angl di:R fq:1 id:209873 jet-society/A.() po:nom is:fem lx:alt et:angl di:* fq:1 id:209871 |
︙ | ︙ | |||
46368 46369 46370 46371 46372 46373 46374 46375 46376 46377 46378 46379 46380 46381 | lanifère/S.() po:adj is:epi di:* fq:3 id:154926 lanigère/S.() po:adj is:epi di:* fq:5 id:154927 laniste/S.() po:nom is:mas se:hist et:lat di:* fq:3 id:216629 Lanka po:nom is:mas is:inv se:pays se:île di:* fq:6 id:124569 lanlaire po:adv lx:vx lx:fam di:* fq:3 id:154929 Lannion po:npr is:epi is:inv se:cité di:* fq:5 id:229921 lanoline/S.() po:nom is:fem di:* fq:5 id:154930 lansquenet/S.() po:nom is:mas di:* fq:5 id:154931 lansquine/S.() po:nom is:fem di:* fq:2 id:154932 lansquiner/a0p.() po:v1_i____zz di:* fq:2 id:154933 lantanier/S.() po:nom is:mas di:* fq:2 id:154934 lanterne/S.() po:nom is:fem di:* fq:6 id:154935 lanterneau/X.() po:nom is:mas di:* fq:5 id:154936 lanterner/a0p+() po:v1_it___zz di:* fq:5 id:154937 | > | 46399 46400 46401 46402 46403 46404 46405 46406 46407 46408 46409 46410 46411 46412 46413 | lanifère/S.() po:adj is:epi di:* fq:3 id:154926 lanigère/S.() po:adj is:epi di:* fq:5 id:154927 laniste/S.() po:nom is:mas se:hist et:lat di:* fq:3 id:216629 Lanka po:nom is:mas is:inv se:pays se:île di:* fq:6 id:124569 lanlaire po:adv lx:vx lx:fam di:* fq:3 id:154929 Lannion po:npr is:epi is:inv se:cité di:* fq:5 id:229921 lanoline/S.() po:nom is:fem di:* fq:5 id:154930 La Nouvelle-Orléans po:npr is:fem is:inv se:cité di:* id:235208 lansquenet/S.() po:nom is:mas di:* fq:5 id:154931 lansquine/S.() po:nom is:fem di:* fq:2 id:154932 lansquiner/a0p.() po:v1_i____zz di:* fq:2 id:154933 lantanier/S.() po:nom is:mas di:* fq:2 id:154934 lanterne/S.() po:nom is:fem di:* fq:6 id:154935 lanterneau/X.() po:nom is:mas di:* fq:5 id:154936 lanterner/a0p+() po:v1_it___zz di:* fq:5 id:154937 |
︙ | ︙ | |||
46455 46456 46457 46458 46459 46460 46461 46462 46463 46464 46465 46466 46467 46468 | larghetto/S.() po:nom is:mas se:mus et:ita di:* fq:0 id:154994 largo po:nom is:mas is:inv se:mus et:ita di:C fq:5 id:154996 largo po:adv se:mus et:ita di:* fq:5 id:209376 largo/S.() po:nom is:mas et:ita di:* fq:5 id:154995 larguer/a0p+() po:v1__t___zz di:* fq:6 id:154997 largueur/Fs() po:nom di:* fq:4 id:203615 larigot/S.() po:nom is:mas se:mus di:* fq:4 id:154999 Larissa po:prn is:fem is:inv di:* fq:5 id:124574 larme/S.() po:nom is:fem di:* fq:7 id:155000 larmier/S.() po:nom is:mas di:* fq:5 id:155001 larmoiement/S.() po:nom is:mas di:* fq:5 id:155002 larmoyant/F.() po:adj di:* fq:5 id:155003 larmoyer/a0p.() po:v1_i____zz di:* fq:5 id:155004 larmoyeur/Fs() po:nom di:* fq:3 id:216162 | > | | 46487 46488 46489 46490 46491 46492 46493 46494 46495 46496 46497 46498 46499 46500 46501 46502 46503 46504 46505 46506 46507 46508 46509 | larghetto/S.() po:nom is:mas se:mus et:ita di:* fq:0 id:154994 largo po:nom is:mas is:inv se:mus et:ita di:C fq:5 id:154996 largo po:adv se:mus et:ita di:* fq:5 id:209376 largo/S.() po:nom is:mas et:ita di:* fq:5 id:154995 larguer/a0p+() po:v1__t___zz di:* fq:6 id:154997 largueur/Fs() po:nom di:* fq:4 id:203615 larigot/S.() po:nom is:mas se:mus di:* fq:4 id:154999 Larisa po:prn is:fem is:inv di:* id:235240 Larissa po:prn is:fem is:inv di:* fq:5 id:124574 larme/S.() po:nom is:fem di:* fq:7 id:155000 larmier/S.() po:nom is:mas di:* fq:5 id:155001 larmoiement/S.() po:nom is:mas di:* fq:5 id:155002 larmoyant/F.() po:adj di:* fq:5 id:155003 larmoyer/a0p.() po:v1_i____zz di:* fq:5 id:155004 larmoyeur/Fs() po:nom di:* fq:3 id:216162 La Rochelle/L'D'Q' po:npr is:epi is:inv se:cité di:* fq:0 id:231665 Larousse po:patr is:epi is:inv di:* fq:6 id:124575 larron/S.() po:nom is:mas di:* fq:6 id:155005 larronnesse/S.() po:nom is:fem st:larron lx:vx di:* fq:3 id:221720 Larry po:prn is:mas is:inv di:* fq:5 id:221202 Lars po:prn is:mas is:inv di:* fq:5 id:222991 larsen/S.() po:nom is:mas di:* fq:3 id:215927 Larsen po:patr is:epi is:inv di:* fq:5 id:212795 |
︙ | ︙ | |||
46513 46514 46515 46516 46517 46518 46519 | lassis po:nom is:mas is:inv di:* fq:3 id:155031 lassitude/S.() po:nom is:fem se:affect di:* fq:6 id:155032 lasso/S.() po:nom is:mas di:* fq:5 id:155033 lastex po:nom is:mas is:inv lx:dép di:* fq:3 id:155035 lasting/S.() po:nom is:mas di:* fq:5 id:155036 lasure/S.() po:nom is:fem et:all di:* fq:3 id:206794 lasurer/a0p+() po:v1__t___zz lx:néo se:bât di:* fq:3 id:219548 | | | 46546 46547 46548 46549 46550 46551 46552 46553 46554 46555 46556 46557 46558 46559 46560 | lassis po:nom is:mas is:inv di:* fq:3 id:155031 lassitude/S.() po:nom is:fem se:affect di:* fq:6 id:155032 lasso/S.() po:nom is:mas di:* fq:5 id:155033 lastex po:nom is:mas is:inv lx:dép di:* fq:3 id:155035 lasting/S.() po:nom is:mas di:* fq:5 id:155036 lasure/S.() po:nom is:fem et:all di:* fq:3 id:206794 lasurer/a0p+() po:v1__t___zz lx:néo se:bât di:* fq:3 id:219548 Las Vegas po:npr is:epi is:inv se:cité di:* fq:0 id:230490 László po:prn is:mas is:inv di:* fq:4 id:224558 lat po:nom is:mas is:inv se:abty di:* fq:6 id:155037 latanier/S.() po:nom is:mas di:* fq:5 id:155038 latence/S.() po:nom is:fem di:* fq:6 id:155039 latent/F.() po:adj di:* fq:7 id:155040 latéral/W.() po:adj di:* fq:7 id:155068 latéralement po:adv di:* fq:6 id:155069 |
︙ | ︙ | |||
47319 47320 47321 47322 47323 47324 47325 47326 47327 47328 47329 47330 47331 47332 | LiHSO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234430 LiIO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234431 LiIO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234432 LiIO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234433 Likasi po:npr is:epi is:inv se:cité di:* fq:5 id:224119 like/S.() po:nom is:mas lx:néo se:affect et:angl di:* fq:6 id:230432 liker/a0p+() po:v1_it____a lx:néo se:affect et:angl di:* id:232947 lilas po:nom po:adj is:mas is:inv di:* fq:6 id:155428 Lilas po:nom is:mas is:pl se:cité di:* fq:5 id:124613 Lili po:prn is:fem is:inv di:* fq:5 id:222731 liliacé/F.() po:nom po:adj di:* fq:5 id:155429 lilial/W.() po:adj di:* fq:4 id:155430 Lilian po:prn is:mas is:inv di:* fq:5 id:201736 Liliana po:prn is:fem is:inv di:* id:235085 | > | 47352 47353 47354 47355 47356 47357 47358 47359 47360 47361 47362 47363 47364 47365 47366 | LiHSO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234430 LiIO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234431 LiIO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234432 LiIO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234433 Likasi po:npr is:epi is:inv se:cité di:* fq:5 id:224119 like/S.() po:nom is:mas lx:néo se:affect et:angl di:* fq:6 id:230432 liker/a0p+() po:v1_it____a lx:néo se:affect et:angl di:* id:232947 Lila po:prn is:fem is:inv di:* id:235223 lilas po:nom po:adj is:mas is:inv di:* fq:6 id:155428 Lilas po:nom is:mas is:pl se:cité di:* fq:5 id:124613 Lili po:prn is:fem is:inv di:* fq:5 id:222731 liliacé/F.() po:nom po:adj di:* fq:5 id:155429 lilial/W.() po:adj di:* fq:4 id:155430 Lilian po:prn is:mas is:inv di:* fq:5 id:201736 Liliana po:prn is:fem is:inv di:* id:235085 |
︙ | ︙ | |||
47495 47496 47497 47498 47499 47500 47501 47502 47503 47504 47505 47506 47507 47508 | linsoir/S.() po:nom is:mas lx:var lx:rare di:A fq:1 id:155527 linteau/X.() po:nom is:mas se:bât se:constr di:* fq:6 id:155528 linter/S.() po:nom is:mas et:angl di:* fq:4 id:155529 Linum po:nom is:mas is:inv se:bot et:lat di:X fq:5 id:228144 Linus po:prn is:mas is:inv di:* fq:5 id:224474 Linux po:npr is:mas is:inv se:prod se:info di:* fq:5 id:124620 LinuxFR po:npr is:epi is:inv se:soc se:info di:X fq:2 id:229507 Li₂O po:nom is:mas is:inv lx:cc se:chim di:* id:234400 Li₂O₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234401 lion/F,() po:nom se:zool di:* fq:7 id:155539 lionceau/X.() po:nom is:mas se:zool di:* fq:5 id:155538 Lionel po:prn is:mas is:inv di:* fq:6 id:124621 lionné/F.() po:adj di:* fq:4 id:206326 Lioploum po:prn is:mas is:inv di:X fq:0 id:232069 | > | 47529 47530 47531 47532 47533 47534 47535 47536 47537 47538 47539 47540 47541 47542 47543 | linsoir/S.() po:nom is:mas lx:var lx:rare di:A fq:1 id:155527 linteau/X.() po:nom is:mas se:bât se:constr di:* fq:6 id:155528 linter/S.() po:nom is:mas et:angl di:* fq:4 id:155529 Linum po:nom is:mas is:inv se:bot et:lat di:X fq:5 id:228144 Linus po:prn is:mas is:inv di:* fq:5 id:224474 Linux po:npr is:mas is:inv se:prod se:info di:* fq:5 id:124620 LinuxFR po:npr is:epi is:inv se:soc se:info di:X fq:2 id:229507 linuxien/F+() po:nom se:info di:* id:235228 Li₂O po:nom is:mas is:inv lx:cc se:chim di:* id:234400 Li₂O₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234401 lion/F,() po:nom se:zool di:* fq:7 id:155539 lionceau/X.() po:nom is:mas se:zool di:* fq:5 id:155538 Lionel po:prn is:mas is:inv di:* fq:6 id:124621 lionné/F.() po:adj di:* fq:4 id:206326 Lioploum po:prn is:mas is:inv di:X fq:0 id:232069 |
︙ | ︙ | |||
48062 48063 48064 48065 48066 48067 48068 | lors po:mg po:adv po:loc.adv po:loc.prep po:loc.cj se:@ et:lat di:* fq:8 id:155865 lorsqu/-- po:mg po:cjsub po:err se:@ di:* id:233076 lorsqu’/-- po:mg po:cjsub st:lorsque se:@ di:* fq:0 id:222035 lorsque po:mg po:cjsub se:@ di:* fq:8 id:155866 Los po:adj is:epi is:inv se:cité di:* fq:7 id:213236 losange/S.() po:nom is:mas di:* fq:6 id:155867 losangé/F.() po:adj di:* fq:5 id:155868 | | | 48097 48098 48099 48100 48101 48102 48103 48104 48105 48106 48107 48108 48109 48110 48111 | lors po:mg po:adv po:loc.adv po:loc.prep po:loc.cj se:@ et:lat di:* fq:8 id:155865 lorsqu/-- po:mg po:cjsub po:err se:@ di:* id:233076 lorsqu’/-- po:mg po:cjsub st:lorsque se:@ di:* fq:0 id:222035 lorsque po:mg po:cjsub se:@ di:* fq:8 id:155866 Los po:adj is:epi is:inv se:cité di:* fq:7 id:213236 losange/S.() po:nom is:mas di:* fq:6 id:155867 losangé/F.() po:adj di:* fq:5 id:155868 Los Angeles po:npr is:fem is:inv se:cité di:* fq:0 id:230485 losangique/S.() po:adj is:epi di:* fq:5 id:214456 loser/S.() po:nom is:epi lx:fam et:angl di:M fq:4 id:211564 loseur/Fs() po:nom lx:fam et:angl di:R fq:0 id:211565 lot/S.() po:nom is:mas di:* fq:7 id:155869 Lot po:nom is:mas is:inv se:riv se:rég di:* fq:6 id:124654 lote/S.() po:nom is:fem lx:dic di:R fq:4 id:155870 loterie/S.() po:nom is:fem di:* fq:6 id:155871 |
︙ | ︙ | |||
51794 51795 51796 51797 51798 51799 51800 51801 51802 51803 51804 51805 51806 51807 | microphage/S.() po:adj is:epi di:* fq:4 id:182534 microphagie/S.() po:nom is:fem lx:rare di:* fq:3 id:215632 microphone/S.() po:nom is:mas di:* fq:5 id:157710 microphonique/S.() po:adj is:epi di:* fq:5 id:157711 microphotographie/S.() po:nom is:fem di:* fq:5 id:157712 microphysique/S.() po:adj is:epi di:* fq:5 id:157713 micropilule/S.() po:nom is:fem lx:néo se:méd di:* fq:0 id:219590 microplaquette/S.() po:nom is:fem di:* fq:3 id:228285 microplastique/S.() po:nom is:mas se:écolo di:* id:233176 micropli/S.() po:nom is:mas se:géol di:* fq:4 id:222610 microplissement/S.() po:nom is:mas lx:rare di:* fq:4 id:213317 micropolluant/S.() po:nom is:mas se:écolo di:* fq:4 id:232736 microporeux/W.() po:adj se:chim se:techni di:* fq:4 id:225538 microprocesseur/S.() po:nom is:mas di:* fq:5 id:157714 | > | 51829 51830 51831 51832 51833 51834 51835 51836 51837 51838 51839 51840 51841 51842 51843 | microphage/S.() po:adj is:epi di:* fq:4 id:182534 microphagie/S.() po:nom is:fem lx:rare di:* fq:3 id:215632 microphone/S.() po:nom is:mas di:* fq:5 id:157710 microphonique/S.() po:adj is:epi di:* fq:5 id:157711 microphotographie/S.() po:nom is:fem di:* fq:5 id:157712 microphysique/S.() po:adj is:epi di:* fq:5 id:157713 micropilule/S.() po:nom is:fem lx:néo se:méd di:* fq:0 id:219590 micropipette/S.() po:nom is:fem se:sc di:* id:235269 microplaquette/S.() po:nom is:fem di:* fq:3 id:228285 microplastique/S.() po:nom is:mas se:écolo di:* id:233176 micropli/S.() po:nom is:mas se:géol di:* fq:4 id:222610 microplissement/S.() po:nom is:mas lx:rare di:* fq:4 id:213317 micropolluant/S.() po:nom is:mas se:écolo di:* fq:4 id:232736 microporeux/W.() po:adj se:chim se:techni di:* fq:4 id:225538 microprocesseur/S.() po:nom is:mas di:* fq:5 id:157714 |
︙ | ︙ | |||
51846 51847 51848 51849 51850 51851 51852 51853 51854 51855 51856 51857 51858 51859 | microtracteur/S.() po:nom is:mas se:techni se:agri di:* fq:3 id:219141 microtransaction/S.() po:nom is:fem se:fin se:biz di:* fq:1 id:231595 microtraumatisme/S.() po:nom is:mas se:méd di:* fq:4 id:224949 microtravail/X.() po:nom is:mas lx:néo di:* id:233119 microtravailleur/Fs() po:nom lx:néo di:* id:233120 micro-trottoir po:nom is:mas is:sg di:* fq:2 id:210331 microtubule/S.() po:nom is:mas se:bio di:* fq:5 id:157721 microvillosité/S.() po:nom is:fem di:* fq:4 id:205653 microzoaire/S.() po:nom is:mas di:* fq:4 id:182511 miction/S.() po:nom is:fem di:* fq:6 id:157725 mictionnel/F,() po:adj di:* fq:5 id:225464 mi-cuit/S.() po:nom is:mas se:cuis di:* fq:2 id:232568 Midas po:prn is:mas is:inv se:hist di:* fq:5 id:210566 Middelkerke po:npr is:epi is:inv se:cité di:* fq:4 id:230926 | > | 51882 51883 51884 51885 51886 51887 51888 51889 51890 51891 51892 51893 51894 51895 51896 | microtracteur/S.() po:nom is:mas se:techni se:agri di:* fq:3 id:219141 microtransaction/S.() po:nom is:fem se:fin se:biz di:* fq:1 id:231595 microtraumatisme/S.() po:nom is:mas se:méd di:* fq:4 id:224949 microtravail/X.() po:nom is:mas lx:néo di:* id:233119 microtravailleur/Fs() po:nom lx:néo di:* id:233120 micro-trottoir po:nom is:mas is:sg di:* fq:2 id:210331 microtubule/S.() po:nom is:mas se:bio di:* fq:5 id:157721 microvascularisation/S.() po:nom is:fem se:bio di:* id:235241 microvillosité/S.() po:nom is:fem di:* fq:4 id:205653 microzoaire/S.() po:nom is:mas di:* fq:4 id:182511 miction/S.() po:nom is:fem di:* fq:6 id:157725 mictionnel/F,() po:adj di:* fq:5 id:225464 mi-cuit/S.() po:nom is:mas se:cuis di:* fq:2 id:232568 Midas po:prn is:mas is:inv se:hist di:* fq:5 id:210566 Middelkerke po:npr is:epi is:inv se:cité di:* fq:4 id:230926 |
︙ | ︙ | |||
51911 51912 51913 51914 51915 51916 51917 51918 51919 51920 51921 51922 51923 51924 | Miguel po:prn is:mas is:inv di:* fq:6 id:202070 mihrab/S.() po:nom is:mas se:art se:reli et:ara di:* fq:5 id:219717 mi-jambe po:loc.adv di:* fq:3 id:157619 mi-janvier po:nom is:fem is:sg di:* fq:3 id:157620 mijaurée/S.() po:nom is:fem di:* fq:4 id:157757 mijoler/a0p.() po:v1_i____zz lx:belg di:* fq:1 id:157758 mijotage/S.() po:nom is:mas se:cuis di:* fq:3 id:224315 mijoter/a0p+() po:v1_it_q_zz di:* fq:5 id:157759 mijoteuse/S.() po:nom is:fem di:* fq:2 id:206774 mi-juillet po:nom is:fem is:sg di:* fq:3 id:157621 mi-juin po:nom is:fem is:sg di:* fq:3 id:157622 mikado/S.() po:nom is:mas et:jap di:* fq:5 id:157760 Mikael po:prn is:mas is:inv di:* fq:4 id:221751 Mikaël po:prn is:mas is:inv di:* fq:4 id:202042 | > | 51948 51949 51950 51951 51952 51953 51954 51955 51956 51957 51958 51959 51960 51961 51962 | Miguel po:prn is:mas is:inv di:* fq:6 id:202070 mihrab/S.() po:nom is:mas se:art se:reli et:ara di:* fq:5 id:219717 mi-jambe po:loc.adv di:* fq:3 id:157619 mi-janvier po:nom is:fem is:sg di:* fq:3 id:157620 mijaurée/S.() po:nom is:fem di:* fq:4 id:157757 mijoler/a0p.() po:v1_i____zz lx:belg di:* fq:1 id:157758 mijotage/S.() po:nom is:mas se:cuis di:* fq:3 id:224315 mijoté/S.() po:nom is:mas se:cuis di:* id:235206 mijoter/a0p+() po:v1_it_q_zz di:* fq:5 id:157759 mijoteuse/S.() po:nom is:fem di:* fq:2 id:206774 mi-juillet po:nom is:fem is:sg di:* fq:3 id:157621 mi-juin po:nom is:fem is:sg di:* fq:3 id:157622 mikado/S.() po:nom is:mas et:jap di:* fq:5 id:157760 Mikael po:prn is:mas is:inv di:* fq:4 id:221751 Mikaël po:prn is:mas is:inv di:* fq:4 id:202042 |
︙ | ︙ | |||
52529 52530 52531 52532 52533 52534 52535 52536 52537 52538 52539 52540 52541 52542 | mofette/S.() po:nom is:fem di:* fq:4 id:158156 mofler/a0p+() po:v1__t___zz lx:belg di:* fq:2 id:158157 Mogadiscio po:npr is:epi is:inv se:cité di:* fq:5 id:124845 moghol/F.() po:nom po:adj di:M fq:5 id:158158 mogol/F.() po:nom po:adj di:R fq:5 id:158159 mohair/S.() po:nom is:mas et:angl di:* fq:4 id:158160 Mohamed po:prn is:mas is:inv di:* fq:6 id:201615 Mohammed po:prn is:mas is:inv di:* fq:6 id:201712 mohawk/S.() po:nom po:adj is:epi se:gent di:* fq:4 id:225377 Mohenjo-daro po:npr is:epi is:inv se:cité se:hist di:* fq:2 id:224842 Mohs po:patr is:epi is:inv se:minér di:* fq:4 id:225380 moi po:mg po:properobj po:1pe is:epi is:sg se:@ di:* fq:8 id:158161 moie/S.() po:nom is:fem se:techni di:* fq:4 id:218481 moignon/S.() po:nom is:mas di:* fq:6 id:158163 | > | 52567 52568 52569 52570 52571 52572 52573 52574 52575 52576 52577 52578 52579 52580 52581 | mofette/S.() po:nom is:fem di:* fq:4 id:158156 mofler/a0p+() po:v1__t___zz lx:belg di:* fq:2 id:158157 Mogadiscio po:npr is:epi is:inv se:cité di:* fq:5 id:124845 moghol/F.() po:nom po:adj di:M fq:5 id:158158 mogol/F.() po:nom po:adj di:R fq:5 id:158159 mohair/S.() po:nom is:mas et:angl di:* fq:4 id:158160 Mohamed po:prn is:mas is:inv di:* fq:6 id:201615 Mohammad po:prn is:mas is:inv di:* id:235212 Mohammed po:prn is:mas is:inv di:* fq:6 id:201712 mohawk/S.() po:nom po:adj is:epi se:gent di:* fq:4 id:225377 Mohenjo-daro po:npr is:epi is:inv se:cité se:hist di:* fq:2 id:224842 Mohs po:patr is:epi is:inv se:minér di:* fq:4 id:225380 moi po:mg po:properobj po:1pe is:epi is:sg se:@ di:* fq:8 id:158161 moie/S.() po:nom is:fem se:techni di:* fq:4 id:218481 moignon/S.() po:nom is:mas di:* fq:6 id:158163 |
︙ | ︙ | |||
53523 53524 53525 53526 53527 53528 53529 53530 53531 53532 53533 53534 53535 53536 | moyen-âge po:nom is:mas is:sg di:* fq:4 id:158749 moyenâgeusement po:adv di:* fq:0 id:232468 moyenâgeux/W.() po:adj di:* fq:5 id:158756 moyen-courrier/S.() po:nom is:mas di:* fq:3 id:158748 moyennabilité/S.() po:nom is:fem di:* fq:1 id:158750 moyennable/S.() po:adj is:epi di:* fq:2 id:158751 moyennage/S.() po:nom is:mas se:math di:* fq:4 id:228253 moyennement po:adv di:* fq:6 id:158753 moyenner/a0p+() po:v1_it___zz di:* fq:7 id:158754 moyennisation/S.() po:nom is:fem di:* fq:4 id:158755 Moyen-Orient po:nom is:mas is:inv se:rég di:* fq:5 id:124894 moyen-oriental/W.() po:adj di:* fq:3 id:224014 moyette/S.() po:nom is:fem di:* fq:4 id:158757 moyeu/X.() po:nom is:mas di:* fq:6 id:158758 | > | 53562 53563 53564 53565 53566 53567 53568 53569 53570 53571 53572 53573 53574 53575 53576 | moyen-âge po:nom is:mas is:sg di:* fq:4 id:158749 moyenâgeusement po:adv di:* fq:0 id:232468 moyenâgeux/W.() po:adj di:* fq:5 id:158756 moyen-courrier/S.() po:nom is:mas di:* fq:3 id:158748 moyennabilité/S.() po:nom is:fem di:* fq:1 id:158750 moyennable/S.() po:adj is:epi di:* fq:2 id:158751 moyennage/S.() po:nom is:mas se:math di:* fq:4 id:228253 Moyenne-Franconie po:nom is:fem is:inv se:rég di:* id:235234 moyennement po:adv di:* fq:6 id:158753 moyenner/a0p+() po:v1_it___zz di:* fq:7 id:158754 moyennisation/S.() po:nom is:fem di:* fq:4 id:158755 Moyen-Orient po:nom is:mas is:inv se:rég di:* fq:5 id:124894 moyen-oriental/W.() po:adj di:* fq:3 id:224014 moyette/S.() po:nom is:fem di:* fq:4 id:158757 moyeu/X.() po:nom is:mas di:* fq:6 id:158758 |
︙ | ︙ | |||
54162 54163 54164 54165 54166 54167 54168 54169 54170 54171 54172 54173 54174 54175 | naan/S.() po:nom is:mas se:cuis et:hind di:* fq:4 id:216843 Na₃AsO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234514 NaAsO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234521 nabab/S.() po:nom is:mas et:étr di:* fq:5 id:159589 nabatéen/F,() po:nom po:adj se:gent di:* fq:5 id:231934 nabi/S.() po:nom is:mas et:héb di:* fq:5 id:215079 Nabil po:prn is:mas is:inv di:* fq:5 id:201702 nabisme/S.() po:nom is:mas lx:rare di:* fq:3 id:215241 nabla/S.() po:nom is:mas lx:rare et:grec di:* fq:4 id:216842 nable/S.() po:nom is:mas et:néer di:* fq:5 id:215080 nabot/F.() po:nom di:* fq:4 id:159590 NaBrO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234522 NaBrO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234523 NaBrO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234524 | > | 54202 54203 54204 54205 54206 54207 54208 54209 54210 54211 54212 54213 54214 54215 54216 | naan/S.() po:nom is:mas se:cuis et:hind di:* fq:4 id:216843 Na₃AsO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234514 NaAsO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234521 nabab/S.() po:nom is:mas et:étr di:* fq:5 id:159589 nabatéen/F,() po:nom po:adj se:gent di:* fq:5 id:231934 nabi/S.() po:nom is:mas et:héb di:* fq:5 id:215079 Nabil po:prn is:mas is:inv di:* fq:5 id:201702 Nabila po:prn is:fem is:inv di:* id:235219 nabisme/S.() po:nom is:mas lx:rare di:* fq:3 id:215241 nabla/S.() po:nom is:mas lx:rare et:grec di:* fq:4 id:216842 nable/S.() po:nom is:mas et:néer di:* fq:5 id:215080 nabot/F.() po:nom di:* fq:4 id:159590 NaBrO₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234522 NaBrO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234523 NaBrO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234524 |
︙ | ︙ | |||
54191 54192 54193 54194 54195 54196 54197 54198 54199 54200 54201 54202 54203 54204 | NaClO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234530 NaClO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234531 naco/S.() po:nom is:mas lx:afr lx:dép lx:rare se:bât di:* fq:3 id:231102 Na₂C₂O₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234489 Na₂CO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234491 nacre/S.() po:nom is:fem di:* fq:5 id:159593 nacrer/a0p+() po:v1__t_q_zz di:* fq:6 id:159594 Nadège po:prn is:fem is:inv di:* fq:4 id:124928 Nadia po:prn is:fem is:inv di:* fq:5 id:124926 Nadim po:prn is:mas is:inv di:* fq:4 id:229172 Nadine po:prn is:fem is:inv di:* fq:5 id:124927 nadir/S.() po:nom is:mas et:ara di:* fq:5 id:159596 Nadir po:prn is:mas is:inv di:* fq:5 id:223209 Nadja po:prn is:fem is:inv di:* fq:5 id:232443 | > | 54232 54233 54234 54235 54236 54237 54238 54239 54240 54241 54242 54243 54244 54245 54246 | NaClO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234530 NaClO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234531 naco/S.() po:nom is:mas lx:afr lx:dép lx:rare se:bât di:* fq:3 id:231102 Na₂C₂O₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234489 Na₂CO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234491 nacre/S.() po:nom is:fem di:* fq:5 id:159593 nacrer/a0p+() po:v1__t_q_zz di:* fq:6 id:159594 Nada po:prn is:fem is:inv di:* id:235221 Nadège po:prn is:fem is:inv di:* fq:4 id:124928 Nadia po:prn is:fem is:inv di:* fq:5 id:124926 Nadim po:prn is:mas is:inv di:* fq:4 id:229172 Nadine po:prn is:fem is:inv di:* fq:5 id:124927 nadir/S.() po:nom is:mas et:ara di:* fq:5 id:159596 Nadir po:prn is:mas is:inv di:* fq:5 id:223209 Nadja po:prn is:fem is:inv di:* fq:5 id:232443 |
︙ | ︙ | |||
54467 54468 54469 54470 54471 54472 54473 54474 54475 54476 54477 54478 54479 54480 | national-socialisme/S.() po:nom is:mas di:* fq:3 id:159698 national-socialiste po:nom is:epi is:sg di:* fq:4 id:159699 nationaux-socialistes po:nom is:epi is:pl di:* fq:3 id:159708 nativement po:adv di:* fq:4 id:159710 nativisme/S.() po:nom is:mas di:* fq:4 id:159711 nativiste/S.() po:nom po:adj is:epi di:* fq:4 id:159712 nativité/S.() po:nom is:fem di:* fq:5 id:159713 natoufien/F,() po:adj di:* fq:4 id:212730 natoufien/S.() po:nom is:mas di:* fq:3 id:206672 natrémie/S.() po:nom is:fem di:* fq:4 id:215997 natrium/S.() po:nom is:mas lx:vx di:* fq:4 id:216057 natrolite/S.() po:nom is:fem se:minér et:lat di:* fq:4 id:226377 natron/S.() po:nom is:mas di:* fq:5 id:159714 natrum/S.() po:nom is:mas di:* fq:4 id:159715 | > | 54509 54510 54511 54512 54513 54514 54515 54516 54517 54518 54519 54520 54521 54522 54523 | national-socialisme/S.() po:nom is:mas di:* fq:3 id:159698 national-socialiste po:nom is:epi is:sg di:* fq:4 id:159699 nationaux-socialistes po:nom is:epi is:pl di:* fq:3 id:159708 nativement po:adv di:* fq:4 id:159710 nativisme/S.() po:nom is:mas di:* fq:4 id:159711 nativiste/S.() po:nom po:adj is:epi di:* fq:4 id:159712 nativité/S.() po:nom is:fem di:* fq:5 id:159713 Natixis po:npr is:epi is:inv se:soc se:fin di:* id:235248 natoufien/F,() po:adj di:* fq:4 id:212730 natoufien/S.() po:nom is:mas di:* fq:3 id:206672 natrémie/S.() po:nom is:fem di:* fq:4 id:215997 natrium/S.() po:nom is:mas lx:vx di:* fq:4 id:216057 natrolite/S.() po:nom is:fem se:minér et:lat di:* fq:4 id:226377 natron/S.() po:nom is:mas di:* fq:5 id:159714 natrum/S.() po:nom is:mas di:* fq:4 id:159715 |
︙ | ︙ | |||
55167 55168 55169 55170 55171 55172 55173 | Newport po:npr is:epi is:inv se:cité di:* fq:5 id:231203 news po:nom is:fem is:inv se:comm et:angl di:* fq:6 id:159878 newsletter/S.() po:nom is:fem lx:néo et:angl di:* fq:4 id:228956 newsmagazine/S.() po:nom is:mas et:angl di:* fq:4 id:228246 newton/Um() po:nom is:mas se:phys di:* fq:4 id:183262 Newton po:patr is:epi is:inv di:* fq:6 id:124965 newtonien/F,() po:nom po:adj di:* fq:6 id:159880 | | | 55210 55211 55212 55213 55214 55215 55216 55217 55218 55219 55220 55221 55222 55223 55224 | Newport po:npr is:epi is:inv se:cité di:* fq:5 id:231203 news po:nom is:fem is:inv se:comm et:angl di:* fq:6 id:159878 newsletter/S.() po:nom is:fem lx:néo et:angl di:* fq:4 id:228956 newsmagazine/S.() po:nom is:mas et:angl di:* fq:4 id:228246 newton/Um() po:nom is:mas se:phys di:* fq:4 id:183262 Newton po:patr is:epi is:inv di:* fq:6 id:124965 newtonien/F,() po:nom po:adj di:* fq:6 id:159880 New York po:npr is:epi is:inv se:cité di:* fq:0 id:230484 new-yorkais/F.() po:nom po:adj di:* fq:4 id:159876 NextCloud po:npr is:epi is:inv se:prod se:info di:X fq:0 id:232212 nexus po:nom is:mas is:inv di:* fq:5 id:159881 nez po:nom is:mas is:inv di:* fq:7 id:159882 NF po:nom is:fem is:inv lx:sig di:* fq:6 id:226823 Nguyen po:patr is:epi is:inv di:X fq:6 id:226998 N₂H₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234482 |
︙ | ︙ | |||
55743 55744 55745 55746 55747 55748 55749 | normographe/S.() po:nom is:mas di:* fq:3 id:183432 Norne/S.() po:nom is:fem se:myth di:* fq:4 id:124992 norois po:nom is:mas is:inv lx:var di:* fq:4 id:160197 noroit/S.() po:nom is:mas di:R fq:3 id:160198 noroît/S.() po:nom is:mas di:M fq:4 id:160199 norovirus po:nom is:mas is:inv se:méd di:* fq:2 id:232629 norrois/F.() po:nom po:adj di:* fq:5 id:160200 | | | 55786 55787 55788 55789 55790 55791 55792 55793 55794 55795 55796 55797 55798 55799 55800 | normographe/S.() po:nom is:mas di:* fq:3 id:183432 Norne/S.() po:nom is:fem se:myth di:* fq:4 id:124992 norois po:nom is:mas is:inv lx:var di:* fq:4 id:160197 noroit/S.() po:nom is:mas di:R fq:3 id:160198 noroît/S.() po:nom is:mas di:M fq:4 id:160199 norovirus po:nom is:mas is:inv se:méd di:* fq:2 id:232629 norrois/F.() po:nom po:adj di:* fq:5 id:160200 northern blot po:nom is:mas is:inv se:bioch di:* fq:0 id:231955 Northumbrie po:nom is:fem is:inv se:pays se:hist di:* fq:4 id:218242 Norton po:patr is:epi is:inv di:* fq:6 id:220644 Norvège po:nom is:fem is:inv se:pays di:* fq:7 id:124993 norvégien/F,() po:nom po:adj di:* fq:6 id:160201 nos po:mg po:detpos is:epi is:pl se:@ et:lat di:* fq:8 id:160202 noséane/S.() po:nom is:fem lx:rare di:* fq:4 id:213315 nosocomial/W.() po:adj di:* fq:5 id:160203 |
︙ | ︙ | |||
58200 58201 58202 58203 58204 58205 58206 58207 58208 58209 58210 58211 58212 58213 | pallasite/S.() po:nom is:fem se:minér di:* fq:2 id:224872 palle/S.() po:nom is:fem lx:dic di:C fq:4 id:161904 palléal/W.() po:adj di:* fq:5 id:161910 palliatif/F.() po:adj di:* fq:6 id:161905 pallidectomie/S.() po:nom is:fem di:* fq:1 id:161906 pallidum/S.() po:nom is:mas di:* fq:5 id:161907 pallier/a0p+() po:v1__t___zz di:* fq:6 id:161908 pallikare/S.() po:nom is:mas et:étr di:M fq:4 id:211168 pallium/S.() po:nom is:mas di:* fq:5 id:161909 palmacée/S.() po:nom is:fem di:* fq:3 id:210067 palma-christi po:nom is:mas is:inv lx:vx et:lat di:* fq:1 id:161911 palmaire/S.() po:adj is:epi di:* fq:6 id:161912 palmarès po:nom is:mas is:inv di:* fq:6 id:161913 palmatifide/S.() po:adj is:epi se:bot di:* fq:3 id:219422 | > | 58243 58244 58245 58246 58247 58248 58249 58250 58251 58252 58253 58254 58255 58256 58257 | pallasite/S.() po:nom is:fem se:minér di:* fq:2 id:224872 palle/S.() po:nom is:fem lx:dic di:C fq:4 id:161904 palléal/W.() po:adj di:* fq:5 id:161910 palliatif/F.() po:adj di:* fq:6 id:161905 pallidectomie/S.() po:nom is:fem di:* fq:1 id:161906 pallidum/S.() po:nom is:mas di:* fq:5 id:161907 pallier/a0p+() po:v1__t___zz di:* fq:6 id:161908 pallière/S.() po:nom is:fem di:* id:235272 pallikare/S.() po:nom is:mas et:étr di:M fq:4 id:211168 pallium/S.() po:nom is:mas di:* fq:5 id:161909 palmacée/S.() po:nom is:fem di:* fq:3 id:210067 palma-christi po:nom is:mas is:inv lx:vx et:lat di:* fq:1 id:161911 palmaire/S.() po:adj is:epi di:* fq:6 id:161912 palmarès po:nom is:mas is:inv di:* fq:6 id:161913 palmatifide/S.() po:adj is:epi se:bot di:* fq:3 id:219422 |
︙ | ︙ | |||
60151 60152 60153 60154 60155 60156 60157 | performeur/Fs() po:nom lx:néo se:art se:sport di:* fq:4 id:219160 perfuser/a0p+() po:v1__t___zz di:* fq:5 id:163144 perfusion/S.() po:nom is:fem di:* fq:6 id:163145 Pergame po:npr is:epi is:inv se:cité di:* fq:5 id:125117 pergélisol/S.() po:nom is:mas di:* fq:5 id:163147 pergola/S.() po:nom is:fem et:ita di:* fq:5 id:163146 péri/F.() po:adj di:* fq:5 id:167082 | | | 60195 60196 60197 60198 60199 60200 60201 60202 60203 60204 60205 60206 60207 60208 60209 | performeur/Fs() po:nom lx:néo se:art se:sport di:* fq:4 id:219160 perfuser/a0p+() po:v1__t___zz di:* fq:5 id:163144 perfusion/S.() po:nom is:fem di:* fq:6 id:163145 Pergame po:npr is:epi is:inv se:cité di:* fq:5 id:125117 pergélisol/S.() po:nom is:mas di:* fq:5 id:163147 pergola/S.() po:nom is:fem et:ita di:* fq:5 id:163146 péri/F.() po:adj di:* fq:5 id:167082 péri/S.() po:nom is:fem et:pers di:* fq:6 id:167073 périanthe/S.() po:nom is:mas di:* fq:5 id:167074 périapical/W.() po:adj se:méd di:* fq:4 id:221544 périapse/S.() po:nom is:mas di:X fq:2 id:227489 périapside/S.() po:nom is:epi se:astron di:* id:234974 périartérite/S.() po:nom is:fem se:méd di:* fq:4 id:226076 périarthrite/S.() po:nom is:fem se:méd di:* fq:4 id:220285 périarticulaire/S.() po:adj is:epi se:anat di:* fq:5 id:216989 |
︙ | ︙ | |||
60972 60973 60974 60975 60976 60977 60978 60979 60980 60981 60982 60983 60984 60985 | phlogistique/S.() po:nom is:epi di:* fq:5 id:163495 phlogopite/S.() po:nom is:fem se:minér et:grec di:* fq:4 id:226349 phlox po:nom is:mas is:inv et:grec di:* fq:4 id:163496 phlyctène/S.() po:nom is:fem di:* fq:5 id:163497 phlycténulaire/S.() po:adj is:epi se:méd et:grec et:lat di:* fq:4 id:226137 pH-mètre/S.||() po:nom is:mas se:chim di:* fq:2 id:200340 Phnom po:npr is:epi is:inv se:cité di:* fq:6 id:183410 phobie/S.() po:nom is:fem di:* fq:6 id:163501 phobique/S.() po:adj is:epi di:* fq:5 id:163502 phobogène/S.() po:adj is:epi lx:néo se:psycho di:* fq:4 id:220739 Phobos po:prn is:mas is:inv se:astron se:myth di:* fq:4 id:201398 Phocean po:prn is:mas is:inv di:X fq:1 id:232109 phocéen/F,() po:nom po:adj di:* fq:5 id:163503 Phoebe po:prn is:fem is:inv di:* fq:4 id:221861 | > | 61016 61017 61018 61019 61020 61021 61022 61023 61024 61025 61026 61027 61028 61029 61030 | phlogistique/S.() po:nom is:epi di:* fq:5 id:163495 phlogopite/S.() po:nom is:fem se:minér et:grec di:* fq:4 id:226349 phlox po:nom is:mas is:inv et:grec di:* fq:4 id:163496 phlyctène/S.() po:nom is:fem di:* fq:5 id:163497 phlycténulaire/S.() po:adj is:epi se:méd et:grec et:lat di:* fq:4 id:226137 pH-mètre/S.||() po:nom is:mas se:chim di:* fq:2 id:200340 Phnom po:npr is:epi is:inv se:cité di:* fq:6 id:183410 Phnom Penh po:npr is:epi is:inv se:cité di:* id:235225 phobie/S.() po:nom is:fem di:* fq:6 id:163501 phobique/S.() po:adj is:epi di:* fq:5 id:163502 phobogène/S.() po:adj is:epi lx:néo se:psycho di:* fq:4 id:220739 Phobos po:prn is:mas is:inv se:astron se:myth di:* fq:4 id:201398 Phocean po:prn is:mas is:inv di:X fq:1 id:232109 phocéen/F,() po:nom po:adj di:* fq:5 id:163503 Phoebe po:prn is:fem is:inv di:* fq:4 id:221861 |
︙ | ︙ | |||
65313 65314 65315 65316 65317 65318 65319 65320 65321 65322 65323 65324 65325 65326 | prunelaie/S.() po:nom is:fem di:* fq:3 id:166104 prunelée/S.() po:nom is:fem di:* fq:0 id:166108 prunelier/S.() po:nom is:mas di:R fq:4 id:166105 prunelle/S.() po:nom is:fem di:* fq:6 id:166106 prunellidé/S.() po:nom is:mas lx:rare di:* fq:0 id:214926 prunellier/S.() po:nom is:mas di:M fq:4 id:166107 pruner po:v1__t___zz po:infi lx:rare di:* fq:2 id:166109 prunier/S.() po:nom is:mas di:* fq:6 id:166110 prunus po:nom is:mas is:inv di:* fq:4 id:166111 prurigineux/W.() po:adj di:* fq:5 id:166112 prurigo/S.() po:nom is:mas se:méd et:lat di:* fq:5 id:166113 prurit/S.() po:nom is:mas di:* fq:6 id:166114 Prusse po:nom is:fem is:inv se:rég se:pays se:hist di:* fq:7 id:125181 prussiate/S.() po:nom is:mas lx:vx di:* fq:5 id:166115 | > | 65358 65359 65360 65361 65362 65363 65364 65365 65366 65367 65368 65369 65370 65371 65372 | prunelaie/S.() po:nom is:fem di:* fq:3 id:166104 prunelée/S.() po:nom is:fem di:* fq:0 id:166108 prunelier/S.() po:nom is:mas di:R fq:4 id:166105 prunelle/S.() po:nom is:fem di:* fq:6 id:166106 prunellidé/S.() po:nom is:mas lx:rare di:* fq:0 id:214926 prunellier/S.() po:nom is:mas di:M fq:4 id:166107 pruner po:v1__t___zz po:infi lx:rare di:* fq:2 id:166109 pruniculture/S.() po:nom is:fem se:arbo di:* id:235230 prunier/S.() po:nom is:mas di:* fq:6 id:166110 prunus po:nom is:mas is:inv di:* fq:4 id:166111 prurigineux/W.() po:adj di:* fq:5 id:166112 prurigo/S.() po:nom is:mas se:méd et:lat di:* fq:5 id:166113 prurit/S.() po:nom is:mas di:* fq:6 id:166114 Prusse po:nom is:fem is:inv se:rég se:pays se:hist di:* fq:7 id:125181 prussiate/S.() po:nom is:mas lx:vx di:* fq:5 id:166115 |
︙ | ︙ | |||
66980 66981 66982 66983 66984 66985 66986 66987 66988 66989 66990 66991 66992 66993 | ramasser/a0p+() po:v1__t_q_zz di:* fq:7 id:167936 ramassette/S.() po:nom is:fem di:* fq:2 id:167937 ramasseur/Fs() po:nom di:* fq:5 id:167938 ramassis po:nom is:mas is:inv di:* fq:5 id:167939 ramassoire/S.() po:nom is:fem di:* fq:3 id:215640 ramastiquer/a0p+() po:v1__t___zz di:* fq:2 id:167941 Râmâyana po:nom is:mas is:sg di:* fq:4 id:125314 rambarde/S.() po:nom is:fem di:* fq:5 id:167942 rambiner/a0p.() po:v1_i____zz di:* fq:0 id:167943 Rambouillet po:npr is:epi is:inv se:cité di:* fq:6 id:125213 rambour/S.() po:nom is:mas di:* fq:3 id:167944 ramboutan/S.() po:nom is:mas se:bot et:étr di:* fq:3 id:228597 ramdam/S.() po:nom is:mas di:* fq:4 id:167945 rame/S.() po:nom is:fem di:* fq:6 id:167946 | > | 67026 67027 67028 67029 67030 67031 67032 67033 67034 67035 67036 67037 67038 67039 67040 | ramasser/a0p+() po:v1__t_q_zz di:* fq:7 id:167936 ramassette/S.() po:nom is:fem di:* fq:2 id:167937 ramasseur/Fs() po:nom di:* fq:5 id:167938 ramassis po:nom is:mas is:inv di:* fq:5 id:167939 ramassoire/S.() po:nom is:fem di:* fq:3 id:215640 ramastiquer/a0p+() po:v1__t___zz di:* fq:2 id:167941 Râmâyana po:nom is:mas is:sg di:* fq:4 id:125314 Ramazan po:prn is:mas is:inv di:* id:235214 rambarde/S.() po:nom is:fem di:* fq:5 id:167942 rambiner/a0p.() po:v1_i____zz di:* fq:0 id:167943 Rambouillet po:npr is:epi is:inv se:cité di:* fq:6 id:125213 rambour/S.() po:nom is:mas di:* fq:3 id:167944 ramboutan/S.() po:nom is:mas se:bot et:étr di:* fq:3 id:228597 ramdam/S.() po:nom is:mas di:* fq:4 id:167945 rame/S.() po:nom is:fem di:* fq:6 id:167946 |
︙ | ︙ | |||
67353 67354 67355 67356 67357 67358 67359 67360 67361 67362 67363 67364 67365 67366 | ravoirage/S.() po:nom is:mas se:constr di:* fq:1 id:219907 rawette/S.() po:nom is:fem lx:fam lx:belg di:* fq:1 id:214286 Ray po:prn is:mas is:inv di:* fq:6 id:221889 raya/S.() po:nom is:mas se:hist et:turc di:* fq:5 id:222623 rayable/S.() po:adj is:epi di:* fq:4 id:220206 rayage/S.() po:nom is:mas di:* fq:4 id:168237 Rayan po:prn is:mas is:inv di:* fq:4 id:202049 rayement/S.() po:nom is:mas lx:vx di:* fq:3 id:222251 rayer/a0p+() po:v1__t_q_zz di:* fq:7 id:168238 rayère/S.() po:nom is:fem di:* fq:3 id:168246 raygrass po:nom is:mas is:inv et:angl di:R fq:4 id:207123 ray-grass po:nom is:mas is:inv et:angl di:M fq:2 id:168236 Rayleigh po:patr is:epi is:inv di:* fq:5 id:214590 Raymond po:prn is:mas is:inv di:* fq:7 id:125222 | > | 67400 67401 67402 67403 67404 67405 67406 67407 67408 67409 67410 67411 67412 67413 67414 | ravoirage/S.() po:nom is:mas se:constr di:* fq:1 id:219907 rawette/S.() po:nom is:fem lx:fam lx:belg di:* fq:1 id:214286 Ray po:prn is:mas is:inv di:* fq:6 id:221889 raya/S.() po:nom is:mas se:hist et:turc di:* fq:5 id:222623 rayable/S.() po:adj is:epi di:* fq:4 id:220206 rayage/S.() po:nom is:mas di:* fq:4 id:168237 Rayan po:prn is:mas is:inv di:* fq:4 id:202049 Rayane po:prn is:mas is:inv di:* id:235217 rayement/S.() po:nom is:mas lx:vx di:* fq:3 id:222251 rayer/a0p+() po:v1__t_q_zz di:* fq:7 id:168238 rayère/S.() po:nom is:fem di:* fq:3 id:168246 raygrass po:nom is:mas is:inv et:angl di:R fq:4 id:207123 ray-grass po:nom is:mas is:inv et:angl di:M fq:2 id:168236 Rayleigh po:patr is:epi is:inv di:* fq:5 id:214590 Raymond po:prn is:mas is:inv di:* fq:7 id:125222 |
︙ | ︙ | |||
67401 67402 67403 67404 67405 67406 67407 67408 67409 67410 67411 67412 67413 67414 | Rb₂O₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234623 Rb₃PO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234627 Rb₃PO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234628 Rb₂S po:nom is:mas is:inv lx:cc se:chim di:* id:234624 Rb₂SO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234625 Rb₂SO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234626 RDA po:nom is:fem is:inv lx:sig se:pays se:hist di:* fq:6 id:205721 ré po:nom is:mas is:inv di:* fq:7 id:170295 réa/S.() po:nom is:epi se:méd se:techni di:* fq:5 id:225051 réabonnement/S.() po:nom is:mas di:* fq:5 id:170296 réabonner/a0p+() po:v1__t_q_zz di:* fq:4 id:170297 réabsorber/a0p+() po:v1__t___zz di:* fq:5 id:170299 réabsorption/S.() po:nom is:fem di:* fq:5 id:170300 réac/S.() po:nom po:adj is:epi lx:fam se:polit di:* fq:5 id:170301 | > | 67449 67450 67451 67452 67453 67454 67455 67456 67457 67458 67459 67460 67461 67462 67463 | Rb₂O₂ po:nom is:mas is:inv lx:cc se:chim di:* id:234623 Rb₃PO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234627 Rb₃PO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234628 Rb₂S po:nom is:mas is:inv lx:cc se:chim di:* id:234624 Rb₂SO₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234625 Rb₂SO₄ po:nom is:mas is:inv lx:cc se:chim di:* id:234626 RDA po:nom is:fem is:inv lx:sig se:pays se:hist di:* fq:6 id:205721 re po:pfx se:@ di:* id:235261 ré po:nom is:mas is:inv di:* fq:7 id:170295 réa/S.() po:nom is:epi se:méd se:techni di:* fq:5 id:225051 réabonnement/S.() po:nom is:mas di:* fq:5 id:170296 réabonner/a0p+() po:v1__t_q_zz di:* fq:4 id:170297 réabsorber/a0p+() po:v1__t___zz di:* fq:5 id:170299 réabsorption/S.() po:nom is:fem di:* fq:5 id:170300 réac/S.() po:nom po:adj is:epi lx:fam se:polit di:* fq:5 id:170301 |
︙ | ︙ | |||
67811 67812 67813 67814 67815 67816 67817 67818 67819 67820 67821 67822 67823 67824 | reconductible/S.() po:adj is:epi di:* fq:4 id:168393 reconduction/S.() po:nom is:fem di:* fq:6 id:168394 reconduire/yL() po:v3__t____a di:* fq:6 id:168395 reconduite/S.() po:nom is:fem di:* fq:5 id:213271 reconfigurable/S.() po:adj is:epi lx:néo se:info di:* fq:4 id:219373 reconfiguration/S.() po:nom is:fem di:* fq:5 id:211601 reconfigurer/a0p+() po:v1__t___zz di:* fq:5 id:168396 reconfirmer/a0p+() po:v1__t_q_zz di:* fq:4 id:216190 réconfort/S.() po:nom is:mas di:* fq:6 id:170444 réconfortant/F.() po:nom po:adj di:* fq:6 id:170445 réconforter/a0p+() po:v1__t_q_zz di:* fq:6 id:170446 recongélation/S.() po:nom is:fem di:* fq:3 id:203310 recongeler/b0p+() po:v1__t___zz di:* fq:3 id:168397 reconnaissable/S.() po:adj is:epi di:* fq:6 id:168399 | > > | 67860 67861 67862 67863 67864 67865 67866 67867 67868 67869 67870 67871 67872 67873 67874 67875 | reconductible/S.() po:adj is:epi di:* fq:4 id:168393 reconduction/S.() po:nom is:fem di:* fq:6 id:168394 reconduire/yL() po:v3__t____a di:* fq:6 id:168395 reconduite/S.() po:nom is:fem di:* fq:5 id:213271 reconfigurable/S.() po:adj is:epi lx:néo se:info di:* fq:4 id:219373 reconfiguration/S.() po:nom is:fem di:* fq:5 id:211601 reconfigurer/a0p+() po:v1__t___zz di:* fq:5 id:168396 reconfinement/S.() po:nom is:mas di:* id:235260 reconfiner/a0p+() po:v1_it_q__a di:* id:235259 reconfirmer/a0p+() po:v1__t_q_zz di:* fq:4 id:216190 réconfort/S.() po:nom is:mas di:* fq:6 id:170444 réconfortant/F.() po:nom po:adj di:* fq:6 id:170445 réconforter/a0p+() po:v1__t_q_zz di:* fq:6 id:170446 recongélation/S.() po:nom is:fem di:* fq:3 id:203310 recongeler/b0p+() po:v1__t___zz di:* fq:3 id:168397 reconnaissable/S.() po:adj is:epi di:* fq:6 id:168399 |
︙ | ︙ | |||
68049 68050 68051 68052 68053 68054 68055 | redingote/S.() po:nom is:fem di:* fq:6 id:168547 rédintégration/S.() po:nom is:fem di:* fq:4 id:170491 redire/yC() po:v3__tn___a di:* fq:6 id:168548 redirection/S.() po:nom is:fem di:* fq:6 id:168549 rediriger/a0p+() po:v1__t___zz di:* fq:6 id:168550 rediscutable/S.() po:adj is:epi di:* fq:1 id:224571 rediscuter/a0p+() po:v1__t___zz di:* fq:5 id:168551 | | | 68100 68101 68102 68103 68104 68105 68106 68107 68108 68109 68110 68111 68112 68113 68114 | redingote/S.() po:nom is:fem di:* fq:6 id:168547 rédintégration/S.() po:nom is:fem di:* fq:4 id:170491 redire/yC() po:v3__tn___a di:* fq:6 id:168548 redirection/S.() po:nom is:fem di:* fq:6 id:168549 rediriger/a0p+() po:v1__t___zz di:* fq:6 id:168550 rediscutable/S.() po:adj is:epi di:* fq:1 id:224571 rediscuter/a0p+() po:v1__t___zz di:* fq:5 id:168551 redisposer/a0p+() po:v1__t____a di:* fq:4 id:200626 redissoudre/xN() po:v3__t_q__a di:* fq:5 id:224966 redistribuer/a0p+() po:v1__t___zz di:* fq:6 id:168552 redistributeur/Fc() po:nom po:adj di:* fq:5 id:214269 redistributif/F.() po:adj di:* fq:5 id:214228 redistribution/S.() po:nom is:fem di:* fq:6 id:168553 redite/S.() po:nom is:fem di:* fq:5 id:168555 rediviniser/a0p+() po:v1_it_q__a se:reli di:* id:233158 |
︙ | ︙ | |||
68471 68472 68473 68474 68475 68476 68477 68478 68479 68480 68481 68482 68483 68484 | réhydratant/F.() po:adj di:* fq:3 id:209239 réhydratant/S.() po:nom is:mas di:* fq:3 id:209360 réhydratation/S.() po:nom is:fem di:* fq:5 id:209238 réhydrater/a0p+() po:v1__t___zz di:* fq:4 id:170673 Reich po:nom is:mas is:inv et:all di:* fq:7 id:206357 reichsmark/S.() po:nom is:mas et:all di:* fq:5 id:168673 Reichstag po:nom is:mas is:sg di:* fq:6 id:168674 Reidemeister po:patr is:epi is:inv di:* fq:3 id:125227 réification/S.() po:nom is:fem di:* fq:5 id:170675 réifier/a0p+() po:v1__t___zz di:* fq:5 id:170676 reiki/S.() po:nom is:mas se:méd et:jap di:* fq:3 id:232784 Reiko po:prn is:fem is:inv di:* fq:4 id:224308 réimperméabilisation/S.() po:nom is:fem lx:rare di:* fq:0 id:216348 réimperméabiliser/a0p+() po:v1__t___zz di:* fq:0 id:170678 | > | 68522 68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 | réhydratant/F.() po:adj di:* fq:3 id:209239 réhydratant/S.() po:nom is:mas di:* fq:3 id:209360 réhydratation/S.() po:nom is:fem di:* fq:5 id:209238 réhydrater/a0p+() po:v1__t___zz di:* fq:4 id:170673 Reich po:nom is:mas is:inv et:all di:* fq:7 id:206357 reichsmark/S.() po:nom is:mas et:all di:* fq:5 id:168673 Reichstag po:nom is:mas is:sg di:* fq:6 id:168674 Reichswehr po:nom is:fem is:inv se:milit se:hist et:all di:* id:235252 Reidemeister po:patr is:epi is:inv di:* fq:3 id:125227 réification/S.() po:nom is:fem di:* fq:5 id:170675 réifier/a0p+() po:v1__t___zz di:* fq:5 id:170676 reiki/S.() po:nom is:mas se:méd et:jap di:* fq:3 id:232784 Reiko po:prn is:fem is:inv di:* fq:4 id:224308 réimperméabilisation/S.() po:nom is:fem lx:rare di:* fq:0 id:216348 réimperméabiliser/a0p+() po:v1__t___zz di:* fq:0 id:170678 |
︙ | ︙ | |||
69152 69153 69154 69155 69156 69157 69158 69159 69160 69161 69162 69163 69164 69165 | replanissage/S.() po:nom is:mas lx:rare di:* fq:3 id:214499 replantage/S.() po:nom is:mas se:jard di:* fq:3 id:220723 replantation/S.() po:nom is:fem di:* fq:5 id:214500 replanter/a0p+() po:v1_it_q_zz di:* fq:5 id:169107 replat/S.() po:nom is:mas di:* fq:5 id:169109 replâtrage/S.() po:nom is:mas di:* fq:5 id:169120 replâtrer/a0p+() po:v1__t___zz di:* fq:5 id:169121 replet/F.() po:adj di:* fq:5 id:169123 réplétif/F.() po:adj di:* fq:3 id:170794 réplétion/S.() po:nom is:fem di:* fq:5 id:170793 repleuvoir/pZ() po:v3_i___m_a di:* fq:3 id:169110 repli/S.() po:nom is:mas di:* fq:6 id:169111 repliable/S.() po:adj is:epi di:* fq:4 id:169112 repliage/S.() po:nom is:mas di:* fq:4 id:217479 | > | 69204 69205 69206 69207 69208 69209 69210 69211 69212 69213 69214 69215 69216 69217 69218 | replanissage/S.() po:nom is:mas lx:rare di:* fq:3 id:214499 replantage/S.() po:nom is:mas se:jard di:* fq:3 id:220723 replantation/S.() po:nom is:fem di:* fq:5 id:214500 replanter/a0p+() po:v1_it_q_zz di:* fq:5 id:169107 replat/S.() po:nom is:mas di:* fq:5 id:169109 replâtrage/S.() po:nom is:mas di:* fq:5 id:169120 replâtrer/a0p+() po:v1__t___zz di:* fq:5 id:169121 replay/S.() po:nom is:mas et:angl di:* id:235244 replet/F.() po:adj di:* fq:5 id:169123 réplétif/F.() po:adj di:* fq:3 id:170794 réplétion/S.() po:nom is:fem di:* fq:5 id:170793 repleuvoir/pZ() po:v3_i___m_a di:* fq:3 id:169110 repli/S.() po:nom is:mas di:* fq:6 id:169111 repliable/S.() po:adj is:epi di:* fq:4 id:169112 repliage/S.() po:nom is:mas di:* fq:4 id:217479 |
︙ | ︙ | |||
69346 69347 69348 69349 69350 69351 69352 69353 69354 69355 69356 69357 69358 69359 | résection/S.() po:nom is:fem di:* fq:6 id:170845 réséda po:adj is:epi is:inv di:* fq:4 id:212755 réséda/S.() po:nom is:mas di:* fq:4 id:170913 resemer/b0p+() po:v1__t_q_zz di:* fq:4 id:169220 reséquencer/a0p+() po:v1_it____a se:bio di:* fq:0 id:229596 réséquer/c0p+() po:v1__t___zz di:* fq:5 id:170914 réserpine/S.() po:nom is:fem di:* fq:5 id:170846 réservataire/S.() po:nom po:adj is:epi di:* fq:5 id:170847 réservation/S.() po:nom is:fem di:* fq:6 id:170848 réserve/S.() po:nom is:fem di:* fq:7 id:170849 réserver/a0p+() po:v1__t_q_zz di:* fq:7 id:170850 réserviste/S.() po:nom is:epi di:* fq:6 id:170851 réservoir/S.() po:nom is:mas di:* fq:7 id:170852 résidanat/S.() po:nom is:mas di:* fq:3 id:215811 | > | 69399 69400 69401 69402 69403 69404 69405 69406 69407 69408 69409 69410 69411 69412 69413 | résection/S.() po:nom is:fem di:* fq:6 id:170845 réséda po:adj is:epi is:inv di:* fq:4 id:212755 réséda/S.() po:nom is:mas di:* fq:4 id:170913 resemer/b0p+() po:v1__t_q_zz di:* fq:4 id:169220 reséquencer/a0p+() po:v1_it____a se:bio di:* fq:0 id:229596 réséquer/c0p+() po:v1__t___zz di:* fq:5 id:170914 réserpine/S.() po:nom is:fem di:* fq:5 id:170846 réservable/S.() po:adj is:epi di:* id:235263 réservataire/S.() po:nom po:adj is:epi di:* fq:5 id:170847 réservation/S.() po:nom is:fem di:* fq:6 id:170848 réserve/S.() po:nom is:fem di:* fq:7 id:170849 réserver/a0p+() po:v1__t_q_zz di:* fq:7 id:170850 réserviste/S.() po:nom is:epi di:* fq:6 id:170851 réservoir/S.() po:nom is:mas di:* fq:7 id:170852 résidanat/S.() po:nom is:mas di:* fq:3 id:215811 |
︙ | ︙ | |||
69658 69659 69660 69661 69662 69663 69664 69665 69666 69667 69668 69669 69670 69671 | retraité/F.() po:nom po:adj di:* fq:6 id:169379 retraitement/S.() po:nom is:mas di:* fq:5 id:169377 retraiter/a0p+() po:v1__t___zz di:* fq:7 id:169378 retranchement/S.() po:nom is:mas di:* fq:6 id:169380 retrancher/a0p+() po:v1__t_q_zz di:* fq:7 id:169381 retranscription/S.() po:nom is:fem di:* fq:5 id:169383 retranscrire/y1() po:v3_it____a di:* fq:5 id:169384 retransformer/a0p+() po:v1__t_q_zz se:@ di:* fq:4 id:221991 retransmetteur/S.() po:nom is:mas di:* fq:3 id:169386 retransmettre/vA() po:v3_it____a di:* fq:5 id:169387 retransmission/S.() po:nom is:fem di:* fq:5 id:169389 retravailler/a0p+() po:v1_itn__zz di:* fq:5 id:169390 retraverser/a0p+() po:v1__t___zz di:* fq:5 id:169392 retrayant/F.() po:nom po:adj di:* fq:5 id:169393 | > | 69712 69713 69714 69715 69716 69717 69718 69719 69720 69721 69722 69723 69724 69725 69726 | retraité/F.() po:nom po:adj di:* fq:6 id:169379 retraitement/S.() po:nom is:mas di:* fq:5 id:169377 retraiter/a0p+() po:v1__t___zz di:* fq:7 id:169378 retranchement/S.() po:nom is:mas di:* fq:6 id:169380 retrancher/a0p+() po:v1__t_q_zz di:* fq:7 id:169381 retranscription/S.() po:nom is:fem di:* fq:5 id:169383 retranscrire/y1() po:v3_it____a di:* fq:5 id:169384 retransférer/c0p+() po:v1__t____a di:* id:235257 retransformer/a0p+() po:v1__t_q_zz se:@ di:* fq:4 id:221991 retransmetteur/S.() po:nom is:mas di:* fq:3 id:169386 retransmettre/vA() po:v3_it____a di:* fq:5 id:169387 retransmission/S.() po:nom is:fem di:* fq:5 id:169389 retravailler/a0p+() po:v1_itn__zz di:* fq:5 id:169390 retraverser/a0p+() po:v1__t___zz di:* fq:5 id:169392 retrayant/F.() po:nom po:adj di:* fq:5 id:169393 |
︙ | ︙ | |||
70047 70048 70049 70050 70051 70052 70053 | rhizotome/S.() po:nom is:mas lx:vx di:* fq:3 id:169513 rhizotomie/S.() po:nom is:fem se:chir di:* fq:3 id:218535 rho po:nom is:mas is:inv di:R fq:4 id:169516 rhô po:nom is:mas is:inv di:M fq:4 id:169572 rhodamine/S.() po:nom is:fem se:chim di:* fq:4 id:169517 rhodanien/F,() po:nom po:adj se:géogr di:* fq:5 id:169518 Rhode po:npr is:epi is:inv se:pays di:* fq:6 id:183475 | | | 70102 70103 70104 70105 70106 70107 70108 70109 70110 70111 70112 70113 70114 70115 70116 | rhizotome/S.() po:nom is:mas lx:vx di:* fq:3 id:169513 rhizotomie/S.() po:nom is:fem se:chir di:* fq:3 id:218535 rho po:nom is:mas is:inv di:R fq:4 id:169516 rhô po:nom is:mas is:inv di:M fq:4 id:169572 rhodamine/S.() po:nom is:fem se:chim di:* fq:4 id:169517 rhodanien/F,() po:nom po:adj se:géogr di:* fq:5 id:169518 Rhode po:npr is:epi is:inv se:pays di:* fq:6 id:183475 Rhode Island po:nom is:mas is:inv se:pays di:* fq:0 id:230486 Rhodes po:npr is:epi is:inv se:cité di:* fq:6 id:125239 Rhodes-Extérieures po:nom is:fem is:pl se:rég di:* fq:3 id:125240 Rhodésie po:nom is:fem is:inv se:pays di:* fq:6 id:206592 rhodésien/F,() po:nom po:adj se:gent di:* fq:5 id:231309 Rhodes-Intérieures po:nom is:fem is:pl se:rég di:* fq:3 id:125241 Rhodia po:prn is:fem is:inv di:* fq:4 id:125242 rhodiage/S.() po:nom is:mas se:métal se:techni di:* fq:1 id:217482 |
︙ | ︙ | |||
70752 70753 70754 70755 70756 70757 70758 70759 70760 70761 70762 70763 70764 70765 | rostral/W.() po:adj di:* fq:5 id:169976 rostre/S.() po:nom is:mas di:* fq:5 id:169977 Roswell po:npr is:epi is:inv se:cité se:sf di:* fq:4 id:222526 rot/S.() po:nom is:mas di:* fq:6 id:169982 rôt/S.() po:nom is:mas di:* fq:5 id:171099 rotacé/F.() po:adj di:* fq:4 id:169983 rotamère/S.() po:nom is:mas lx:rare se:chim di:* fq:2 id:217505 rotang/S.() po:nom is:mas di:* fq:4 id:169984 rotarien/S.() po:nom is:mas et:angl di:* fq:4 id:169985 rotary/S.() po:nom is:mas et:angl di:* fq:4 id:169986 rotateur/Fc() po:adj di:* fq:4 id:169990 rotateur/S.() po:nom is:mas di:* fq:5 id:206760 rotatif/F.() po:nom po:adj di:* fq:6 id:169988 rotation/S.() po:nom is:fem di:* fq:7 id:169987 | > | 70807 70808 70809 70810 70811 70812 70813 70814 70815 70816 70817 70818 70819 70820 70821 | rostral/W.() po:adj di:* fq:5 id:169976 rostre/S.() po:nom is:mas di:* fq:5 id:169977 Roswell po:npr is:epi is:inv se:cité se:sf di:* fq:4 id:222526 rot/S.() po:nom is:mas di:* fq:6 id:169982 rôt/S.() po:nom is:mas di:* fq:5 id:171099 rotacé/F.() po:adj di:* fq:4 id:169983 rotamère/S.() po:nom is:mas lx:rare se:chim di:* fq:2 id:217505 rotamètre/S.() po:nom is:mas se:sc di:* id:235211 rotang/S.() po:nom is:mas di:* fq:4 id:169984 rotarien/S.() po:nom is:mas et:angl di:* fq:4 id:169985 rotary/S.() po:nom is:mas et:angl di:* fq:4 id:169986 rotateur/Fc() po:adj di:* fq:4 id:169990 rotateur/S.() po:nom is:mas di:* fq:5 id:206760 rotatif/F.() po:nom po:adj di:* fq:6 id:169988 rotation/S.() po:nom is:fem di:* fq:7 id:169987 |
︙ | ︙ | |||
71159 71160 71161 71162 71163 71164 71165 71166 71167 71168 71169 71170 71171 71172 | rutilation/S.() po:nom is:fem di:* fq:3 id:170251 rutile/S.() po:nom is:mas se:minér se:chim et:lat di:* fq:5 id:225174 rutilement/S.() po:nom is:mas di:* fq:3 id:170252 rutiler/a0p.() po:v1_i____zz di:* fq:5 id:170253 Rutishauser po:patr is:epi is:inv di:* fq:4 id:125311 Rwanda po:nom is:mas is:inv se:pays di:* fq:6 id:125312 rwandais/F.() po:nom po:adj di:* fq:6 id:170255 Ryan po:prn is:mas is:inv di:* fq:6 id:201700 Ryanair po:npr is:epi is:inv se:soc se:biz se:aéron di:* fq:4 id:231769 rye/S.() po:nom is:mas se:alcool et:angl di:* fq:4 id:218942 rythme/S.() po:nom is:mas di:* fq:7 id:170256 rythmer/a0p+() po:v1__t___zz di:* fq:6 id:170257 rythmicien/F,() po:nom di:* fq:4 id:170258 rythmicité/S.() po:nom is:fem di:* fq:5 id:170259 | > | 71215 71216 71217 71218 71219 71220 71221 71222 71223 71224 71225 71226 71227 71228 71229 | rutilation/S.() po:nom is:fem di:* fq:3 id:170251 rutile/S.() po:nom is:mas se:minér se:chim et:lat di:* fq:5 id:225174 rutilement/S.() po:nom is:mas di:* fq:3 id:170252 rutiler/a0p.() po:v1_i____zz di:* fq:5 id:170253 Rutishauser po:patr is:epi is:inv di:* fq:4 id:125311 Rwanda po:nom is:mas is:inv se:pays di:* fq:6 id:125312 rwandais/F.() po:nom po:adj di:* fq:6 id:170255 Ryad po:prn is:mas is:inv di:* id:235216 Ryan po:prn is:mas is:inv di:* fq:6 id:201700 Ryanair po:npr is:epi is:inv se:soc se:biz se:aéron di:* fq:4 id:231769 rye/S.() po:nom is:mas se:alcool et:angl di:* fq:4 id:218942 rythme/S.() po:nom is:mas di:* fq:7 id:170256 rythmer/a0p+() po:v1__t___zz di:* fq:6 id:170257 rythmicien/F,() po:nom di:* fq:4 id:170258 rythmicité/S.() po:nom is:fem di:* fq:5 id:170259 |
︙ | ︙ | |||
71485 71486 71487 71488 71489 71490 71491 71492 71493 71494 71495 71496 71497 71498 | Saint-Genis-Laval po:npr is:epi is:inv se:cité di:* fq:3 id:230064 Saint-Georges po:npr is:epi is:inv se:cité di:* fq:5 id:200705 Saint-Germain-en-Laye po:npr is:epi is:inv se:cité di:* fq:4 id:125335 Saint-Ghislain po:npr is:epi is:inv se:cité di:* fq:3 id:200706 Saint-Gilles po:npr is:epi is:inv se:cité di:* fq:4 id:230101 Saint-Gilles-Waes po:npr is:epi is:inv se:cité di:* fq:2 id:230958 saint-glinglin po:loc.adv lx:fam di:* fq:1 id:171314 Saint-Gratien po:npr is:epi is:inv se:cité di:* fq:4 id:230063 Saint-Herblain po:npr is:epi is:inv se:cité di:* fq:4 id:125336 saint-honoré po:nom is:mas is:inv di:* fq:2 id:171315 Saint-Hyacinthe po:npr is:epi is:inv se:cité di:* fq:4 id:200707 saintier/S.() po:nom is:mas lx:vx di:* fq:3 id:214539 Saint-Jacques-de-Compostelle po:npr is:epi is:inv se:cité di:* fq:4 id:200287 Saint-Jean po:npr is:epi is:inv se:cité di:* fq:5 id:200691 | > | 71542 71543 71544 71545 71546 71547 71548 71549 71550 71551 71552 71553 71554 71555 71556 | Saint-Genis-Laval po:npr is:epi is:inv se:cité di:* fq:3 id:230064 Saint-Georges po:npr is:epi is:inv se:cité di:* fq:5 id:200705 Saint-Germain-en-Laye po:npr is:epi is:inv se:cité di:* fq:4 id:125335 Saint-Ghislain po:npr is:epi is:inv se:cité di:* fq:3 id:200706 Saint-Gilles po:npr is:epi is:inv se:cité di:* fq:4 id:230101 Saint-Gilles-Waes po:npr is:epi is:inv se:cité di:* fq:2 id:230958 saint-glinglin po:loc.adv lx:fam di:* fq:1 id:171314 Saint-Gobain po:npr is:epi is:inv se:soc se:indus di:* id:235247 Saint-Gratien po:npr is:epi is:inv se:cité di:* fq:4 id:230063 Saint-Herblain po:npr is:epi is:inv se:cité di:* fq:4 id:125336 saint-honoré po:nom is:mas is:inv di:* fq:2 id:171315 Saint-Hyacinthe po:npr is:epi is:inv se:cité di:* fq:4 id:200707 saintier/S.() po:nom is:mas lx:vx di:* fq:3 id:214539 Saint-Jacques-de-Compostelle po:npr is:epi is:inv se:cité di:* fq:4 id:200287 Saint-Jean po:npr is:epi is:inv se:cité di:* fq:5 id:200691 |
︙ | ︙ | |||
71848 71849 71850 71851 71852 71853 71854 | Sandra po:prn is:fem is:inv di:* fq:5 id:125378 sandre/S.() po:nom is:epi di:* fq:5 id:171498 Sandrine po:prn is:fem is:inv di:* fq:5 id:125379 sandwich/A.() po:nom is:mas et:angl di:* fq:6 id:171500 sandwicherie/S.() po:nom is:fem et:angl di:* fq:3 id:205553 Sandy po:prn is:epi is:inv di:* fq:5 id:215796 Sanem po:npr is:epi is:inv se:cité di:* fq:4 id:216258 | | | 71906 71907 71908 71909 71910 71911 71912 71913 71914 71915 71916 71917 71918 71919 71920 | Sandra po:prn is:fem is:inv di:* fq:5 id:125378 sandre/S.() po:nom is:epi di:* fq:5 id:171498 Sandrine po:prn is:fem is:inv di:* fq:5 id:125379 sandwich/A.() po:nom is:mas et:angl di:* fq:6 id:171500 sandwicherie/S.() po:nom is:fem et:angl di:* fq:3 id:205553 Sandy po:prn is:epi is:inv di:* fq:5 id:215796 Sanem po:npr is:epi is:inv se:cité di:* fq:4 id:216258 San Francisco po:npr is:epi is:inv se:cité di:* fq:0 id:230483 sang/S.() po:nom is:mas et:lat di:* fq:8 id:171503 sang-froid po:nom is:mas is:inv di:* fq:4 id:171504 sanglage/S.() po:nom is:mas di:* fq:3 id:221349 sanglant/F.() po:adj di:* fq:7 id:171506 sangle/S.() po:nom is:fem di:* fq:5 id:171507 sangler/a0p+() po:v1__t_q_zz di:* fq:5 id:171508 sanglier/S.() po:nom is:mas di:* fq:6 id:171509 |
︙ | ︙ | |||
73277 73278 73279 73280 73281 73282 73283 73284 73285 73286 73287 73288 73289 73290 | séparatif/F.() po:adj di:* fq:5 id:212934 séparation/S.() po:nom is:fem di:* fq:7 id:175376 séparatisme/S.() po:nom is:mas di:* fq:5 id:175377 séparatiste/S.() po:nom po:adj is:epi di:* fq:6 id:175378 séparativement po:adv di:* id:234878 séparément po:adv di:* fq:7 id:175382 séparer/a0p+() po:v1_it_q__a di:* fq:8 id:175380 sépia po:adj is:epi is:inv di:* fq:5 id:206584 sépia/S.() po:nom is:fem di:* fq:4 id:175383 sépiole/S.() po:nom is:fem se:zool et:lat di:* fq:3 id:226037 sépiolite/S.() po:nom is:fem se:minér di:* fq:4 id:218961 seppuku/S.() po:nom is:mas et:jap di:* fq:4 id:202185 sepsis po:nom is:mas is:inv se:méd et:grec di:* fq:5 id:217813 sept po:nb is:epi is:pl se:@ di:* fq:7 id:172322 | > | 73335 73336 73337 73338 73339 73340 73341 73342 73343 73344 73345 73346 73347 73348 73349 | séparatif/F.() po:adj di:* fq:5 id:212934 séparation/S.() po:nom is:fem di:* fq:7 id:175376 séparatisme/S.() po:nom is:mas di:* fq:5 id:175377 séparatiste/S.() po:nom po:adj is:epi di:* fq:6 id:175378 séparativement po:adv di:* id:234878 séparément po:adv di:* fq:7 id:175382 séparer/a0p+() po:v1_it_q__a di:* fq:8 id:175380 Séphora po:prn is:fem is:inv di:* id:235236 sépia po:adj is:epi is:inv di:* fq:5 id:206584 sépia/S.() po:nom is:fem di:* fq:4 id:175383 sépiole/S.() po:nom is:fem se:zool et:lat di:* fq:3 id:226037 sépiolite/S.() po:nom is:fem se:minér di:* fq:4 id:218961 seppuku/S.() po:nom is:mas et:jap di:* fq:4 id:202185 sepsis po:nom is:mas is:inv se:méd et:grec di:* fq:5 id:217813 sept po:nb is:epi is:pl se:@ di:* fq:7 id:172322 |
︙ | ︙ | |||
73947 73948 73949 73950 73951 73952 73953 | silicique/S.() po:adj is:epi di:* fq:5 id:172655 silicium/S.() po:nom is:mas di:* fq:6 id:172656 siliciure/S.() po:nom is:mas se:chim di:* fq:5 id:172657 silicomanganèse/S.() po:nom is:mas lx:rare di:* fq:3 id:211489 silicone/S.() po:nom is:epi di:* fq:5 id:172658 siliconer/a0p+() po:v1__t___zz di:* fq:4 id:172659 siliconose/S.() po:nom is:fem lx:rare se:méd di:* fq:1 id:232579 | | | 74006 74007 74008 74009 74010 74011 74012 74013 74014 74015 74016 74017 74018 74019 74020 | silicique/S.() po:adj is:epi di:* fq:5 id:172655 silicium/S.() po:nom is:mas di:* fq:6 id:172656 siliciure/S.() po:nom is:mas se:chim di:* fq:5 id:172657 silicomanganèse/S.() po:nom is:mas lx:rare di:* fq:3 id:211489 silicone/S.() po:nom is:epi di:* fq:5 id:172658 siliconer/a0p+() po:v1__t___zz di:* fq:4 id:172659 siliconose/S.() po:nom is:fem lx:rare se:méd di:* fq:1 id:232579 Silicon Valley po:nom is:fem is:inv se:rég se:hitech di:* fq:0 id:230482 silicose/S.() po:nom is:fem se:méd di:* fq:5 id:172661 silicotique/S.() po:nom po:adj is:epi se:méd di:* fq:4 id:223093 silicule/S.() po:nom is:fem di:* fq:4 id:172662 silionne/S.() po:nom is:fem lx:dép di:* fq:3 id:172663 silique/S.() po:nom is:fem se:bot et:lat di:* fq:5 id:172664 siliqueux/W.() po:adj se:bot di:* fq:4 id:221401 sill/S.() po:nom is:mas di:X fq:5 id:227677 |
︙ | ︙ | |||
75247 75248 75249 75250 75251 75252 75253 | soutènement/S.() po:nom is:mas di:* fq:6 id:173536 souteneur/S.() po:nom is:mas di:* fq:5 id:173522 soutenir/i0q+() po:v3_itnq__a di:* fq:8 id:173523 souterrain/F.() po:adj di:* fq:7 id:173526 souterrain/S.() po:nom is:mas di:* fq:6 id:173525 souterrainement po:adv di:* fq:5 id:173527 Southampton po:npr is:epi is:inv se:cité di:* fq:5 id:216382 | | | 75306 75307 75308 75309 75310 75311 75312 75313 75314 75315 75316 75317 75318 75319 75320 | soutènement/S.() po:nom is:mas di:* fq:6 id:173536 souteneur/S.() po:nom is:mas di:* fq:5 id:173522 soutenir/i0q+() po:v3_itnq__a di:* fq:8 id:173523 souterrain/F.() po:adj di:* fq:7 id:173526 souterrain/S.() po:nom is:mas di:* fq:6 id:173525 souterrainement po:adv di:* fq:5 id:173527 Southampton po:npr is:epi is:inv se:cité di:* fq:5 id:216382 southern blot po:nom is:mas is:inv se:bioch di:* fq:0 id:231954 soutien/S.() po:nom is:mas di:* fq:7 id:173528 soutien-gorge po:nom is:mas is:sg di:* fq:3 id:173529 soutiens-gorge po:nom is:mas is:pl di:* fq:2 id:173530 soutier/S.() po:nom is:mas di:* fq:5 id:173531 soutif/S.() po:nom is:mas lx:fam di:* fq:3 id:226717 soutirage/S.() po:nom is:mas di:* fq:5 id:173532 soutirer/a0p+() po:v1__t___zz di:* fq:6 id:173533 |
︙ | ︙ | |||
78415 78416 78417 78418 78419 78420 78421 78422 78423 78424 78425 78426 78427 78428 | techniquement po:adv di:* fq:6 id:175946 techniser/a0p+() po:v1__t___zz di:* fq:3 id:175947 techniverrier/F.() po:nom di:* fq:0 id:200311 techno/S.() po:adj is:epi se:mus et:angl di:* fq:5 id:205090 techno/S.() po:nom is:fem se:mus et:angl di:* fq:5 id:212479 technobureaucratique/S.() po:adj is:epi di:* fq:4 id:175950 techno-bureaucratique/S.() po:adj is:epi di:C fq:1 id:175948 technocrate/S.() po:nom is:epi di:* fq:6 id:175951 technocratie/S.() po:nom is:fem di:* fq:5 id:175952 technocratique/S.() po:adj is:epi di:* fq:6 id:175953 technocratiquement po:adv lx:rare di:* fq:3 id:214755 technocratisation/S.() po:nom is:fem di:* fq:4 id:175954 technocratiser/a0p+() po:v1__t_q_zz di:* fq:3 id:175955 technocratisme/S.() po:nom is:mas di:* fq:4 id:175956 | > | 78474 78475 78476 78477 78478 78479 78480 78481 78482 78483 78484 78485 78486 78487 78488 | techniquement po:adv di:* fq:6 id:175946 techniser/a0p+() po:v1__t___zz di:* fq:3 id:175947 techniverrier/F.() po:nom di:* fq:0 id:200311 techno/S.() po:adj is:epi se:mus et:angl di:* fq:5 id:205090 techno/S.() po:nom is:fem se:mus et:angl di:* fq:5 id:212479 technobureaucratique/S.() po:adj is:epi di:* fq:4 id:175950 techno-bureaucratique/S.() po:adj is:epi di:C fq:1 id:175948 technocapitalisme/S.() po:nom is:mas se:polit se:écono di:* id:235265 technocrate/S.() po:nom is:epi di:* fq:6 id:175951 technocratie/S.() po:nom is:fem di:* fq:5 id:175952 technocratique/S.() po:adj is:epi di:* fq:6 id:175953 technocratiquement po:adv lx:rare di:* fq:3 id:214755 technocratisation/S.() po:nom is:fem di:* fq:4 id:175954 technocratiser/a0p+() po:v1__t_q_zz di:* fq:3 id:175955 technocratisme/S.() po:nom is:mas di:* fq:4 id:175956 |
︙ | ︙ | |||
78523 78524 78525 78526 78527 78528 78529 78530 78531 78532 78533 78534 78535 78536 | téléchirurgie/S.() po:nom is:fem di:* fq:3 id:206023 télécinéma/S.() po:nom is:mas di:* fq:4 id:178290 télécommandable/S.() po:adj is:epi lx:néo se:techni di:* fq:3 id:219383 télécommande/S.() po:nom is:fem di:* fq:5 id:178291 télécommander/a0p+() po:v1__t___zz di:* fq:5 id:178292 télécommunication/S.() po:nom is:fem di:* fq:6 id:178294 télécoms po:nom is:fem is:pl lx:abr lx:fam di:* fq:5 id:211248 téléconduit/F.() po:adj di:* fq:0 id:182662 téléconduite/S.() po:nom is:fem di:* fq:3 id:182661 téléconférence/S.() po:nom is:fem di:* fq:4 id:178295 téléconseil/S.() po:nom is:mas di:* fq:1 id:205661 téléconseiller/F.() po:nom di:* fq:3 id:205510 téléconsultation/S.() po:nom is:fem lx:néo se:méd di:* fq:3 id:216918 télécontrôle/S.() po:nom is:mas di:* fq:4 id:205790 | > | 78583 78584 78585 78586 78587 78588 78589 78590 78591 78592 78593 78594 78595 78596 78597 | téléchirurgie/S.() po:nom is:fem di:* fq:3 id:206023 télécinéma/S.() po:nom is:mas di:* fq:4 id:178290 télécommandable/S.() po:adj is:epi lx:néo se:techni di:* fq:3 id:219383 télécommande/S.() po:nom is:fem di:* fq:5 id:178291 télécommander/a0p+() po:v1__t___zz di:* fq:5 id:178292 télécommunication/S.() po:nom is:fem di:* fq:6 id:178294 télécoms po:nom is:fem is:pl lx:abr lx:fam di:* fq:5 id:211248 téléconcert/S.() po:nom is:mas se:mus di:* id:235242 téléconduit/F.() po:adj di:* fq:0 id:182662 téléconduite/S.() po:nom is:fem di:* fq:3 id:182661 téléconférence/S.() po:nom is:fem di:* fq:4 id:178295 téléconseil/S.() po:nom is:mas di:* fq:1 id:205661 téléconseiller/F.() po:nom di:* fq:3 id:205510 téléconsultation/S.() po:nom is:fem lx:néo se:méd di:* fq:3 id:216918 télécontrôle/S.() po:nom is:mas di:* fq:4 id:205790 |
︙ | ︙ | |||
79040 79041 79042 79043 79044 79045 79046 79047 79048 79049 79050 79051 79052 79053 | tesselation/S.() po:nom is:fem lx:néo et:angl di:* fq:1 id:205452 tesselle/S.() po:nom is:fem di:* fq:5 id:206072 tessellé/F.() po:adj lx:rare di:* fq:3 id:211176 Tessenderlo po:npr is:epi is:inv se:cité di:* fq:4 id:230968 tesseract/S.() po:nom is:mas se:math et:grec di:* fq:3 id:226192 tessère/S.() po:nom is:fem se:hist et:lat di:* fq:5 id:223469 Tessin po:nom is:mas is:inv se:rég di:* fq:6 id:125588 tessiture/S.() po:nom is:fem di:* fq:5 id:176189 tesson/S.() po:nom is:mas di:* fq:6 id:176190 test/S.() po:nom is:mas di:* fq:7 id:176191 testabilité/S.() po:nom is:fem di:* fq:4 id:176192 testable/S.() po:adj is:epi di:* fq:5 id:176193 testacé/F.() po:adj di:* fq:5 id:176195 testacelle/S.() po:nom is:fem di:* fq:3 id:176194 | > | 79101 79102 79103 79104 79105 79106 79107 79108 79109 79110 79111 79112 79113 79114 79115 | tesselation/S.() po:nom is:fem lx:néo et:angl di:* fq:1 id:205452 tesselle/S.() po:nom is:fem di:* fq:5 id:206072 tessellé/F.() po:adj lx:rare di:* fq:3 id:211176 Tessenderlo po:npr is:epi is:inv se:cité di:* fq:4 id:230968 tesseract/S.() po:nom is:mas se:math et:grec di:* fq:3 id:226192 tessère/S.() po:nom is:fem se:hist et:lat di:* fq:5 id:223469 Tessin po:nom is:mas is:inv se:rég di:* fq:6 id:125588 tessinois/F.() po:nom po:adj se:gent di:* id:235243 tessiture/S.() po:nom is:fem di:* fq:5 id:176189 tesson/S.() po:nom is:mas di:* fq:6 id:176190 test/S.() po:nom is:mas di:* fq:7 id:176191 testabilité/S.() po:nom is:fem di:* fq:4 id:176192 testable/S.() po:adj is:epi di:* fq:5 id:176193 testacé/F.() po:adj di:* fq:5 id:176195 testacelle/S.() po:nom is:fem di:* fq:3 id:176194 |
︙ | ︙ | |||
79174 79175 79176 79177 79178 79179 79180 | teuf-teuf po:nom is:epi is:inv lx:fam di:M fq:1 id:176211 Teutatès po:prn is:mas is:inv se:myth di:* fq:4 id:232763 teuton/F,() po:nom po:adj di:* fq:5 id:176215 teutonique/S.() po:adj is:epi di:* fq:5 id:176214 tex/||-- po:nom is:mas is:inv lx:symb di:* fq:5 id:201746 texan/F.() po:nom po:adj di:* fq:5 id:176216 Texas po:nom is:mas is:inv se:pays di:* fq:6 id:125590 | | | 79236 79237 79238 79239 79240 79241 79242 79243 79244 79245 79246 79247 79248 79249 79250 | teuf-teuf po:nom is:epi is:inv lx:fam di:M fq:1 id:176211 Teutatès po:prn is:mas is:inv se:myth di:* fq:4 id:232763 teuton/F,() po:nom po:adj di:* fq:5 id:176215 teutonique/S.() po:adj is:epi di:* fq:5 id:176214 tex/||-- po:nom is:mas is:inv lx:symb di:* fq:5 id:201746 texan/F.() po:nom po:adj di:* fq:5 id:176216 Texas po:nom is:mas is:inv se:pays di:* fq:6 id:125590 Texas Instruments po:npr is:epi is:inv se:soc se:info di:* fq:0 id:231960 tex-mex po:adj is:epi is:inv lx:néo di:* fq:2 id:215006 texte/S.() po:nom is:mas di:* fq:8 id:176217 textile/S.() po:adj is:epi di:* fq:6 id:176218 textile/S.() po:nom is:mas di:* fq:6 id:212484 texto/S.() po:nom is:mas lx:néo se:comm di:* fq:5 id:176219 texto po:adv lx:abr lx:fam di:* fq:5 id:211408 textualiser/a0p+() po:v1__t___zz di:* fq:4 id:176220 |
︙ | ︙ | |||
79254 79255 79256 79257 79258 79259 79260 | thébaïde/S.() po:nom is:fem di:* fq:4 id:176358 thébain/F.() po:nom po:adj di:* fq:5 id:176357 thébaïne/S.() po:nom is:fem di:* fq:4 id:176359 thébaïque/S.() po:adj is:epi di:* fq:4 id:176360 thébaïsme/S.() po:nom is:mas di:* fq:1 id:176361 Thèbes po:npr is:epi is:inv se:cité di:* fq:6 id:125608 Thècle po:prn is:fem is:inv se:hist di:* fq:5 id:125609 | | | 79316 79317 79318 79319 79320 79321 79322 79323 79324 79325 79326 79327 79328 79329 79330 | thébaïde/S.() po:nom is:fem di:* fq:4 id:176358 thébain/F.() po:nom po:adj di:* fq:5 id:176357 thébaïne/S.() po:nom is:fem di:* fq:4 id:176359 thébaïque/S.() po:adj is:epi di:* fq:4 id:176360 thébaïsme/S.() po:nom is:mas di:* fq:1 id:176361 Thèbes po:npr is:epi is:inv se:cité di:* fq:6 id:125608 Thècle po:prn is:fem is:inv se:hist di:* fq:5 id:125609 The Document Foundation po:npr is:fem is:sg se:soc se:info di:* fq:0 id:231957 théier/F.() po:nom po:adj di:* fq:5 id:176365 théine/S.() po:nom is:fem di:* fq:4 id:176362 théisme/S.() po:nom is:mas di:* fq:5 id:176363 théiste/S.() po:nom is:epi di:* fq:5 id:176364 Thelma po:prn is:fem is:inv di:* fq:4 id:221259 thématique/S.() po:adj is:epi di:* fq:6 id:176366 thématique/S.() po:nom is:fem di:* fq:6 id:212486 |
︙ | ︙ | |||
79360 79361 79362 79363 79364 79365 79366 79367 79368 79369 79370 79371 79372 79373 | thermistance/S.() po:nom is:fem di:* fq:4 id:182596 thermisteur/S.() po:nom is:mas di:* fq:0 id:176252 thermistor/S.() po:nom is:mas di:* fq:4 id:176253 thermite/S.() po:nom is:fem di:* fq:4 id:176254 thermoacidophile/S.() po:nom is:mas se:bio di:* fq:1 id:224999 thermoacidophile/S.() po:adj is:epi se:bio di:* fq:1 id:225000 thermoacoustique/S.() po:nom is:fem se:phys di:* fq:3 id:224104 thermocautère/S.() po:nom is:mas di:* fq:5 id:176255 thermochimie/S.() po:nom is:fem di:* fq:5 id:176256 thermochimique/S.() po:adj is:epi di:* fq:5 id:176257 thermocinétique/S.() po:nom is:fem di:* fq:4 id:203428 thermocline/S.() po:nom is:fem di:* fq:5 id:214022 thermocollage/S.() po:nom is:mas se:techni di:* fq:3 id:223827 thermocollant/F.() po:adj lx:néo di:* fq:1 id:216431 | > | 79422 79423 79424 79425 79426 79427 79428 79429 79430 79431 79432 79433 79434 79435 79436 | thermistance/S.() po:nom is:fem di:* fq:4 id:182596 thermisteur/S.() po:nom is:mas di:* fq:0 id:176252 thermistor/S.() po:nom is:mas di:* fq:4 id:176253 thermite/S.() po:nom is:fem di:* fq:4 id:176254 thermoacidophile/S.() po:nom is:mas se:bio di:* fq:1 id:224999 thermoacidophile/S.() po:adj is:epi se:bio di:* fq:1 id:225000 thermoacoustique/S.() po:nom is:fem se:phys di:* fq:3 id:224104 thermobalance/S.() po:nom is:fem se:sc di:* id:235267 thermocautère/S.() po:nom is:mas di:* fq:5 id:176255 thermochimie/S.() po:nom is:fem di:* fq:5 id:176256 thermochimique/S.() po:adj is:epi di:* fq:5 id:176257 thermocinétique/S.() po:nom is:fem di:* fq:4 id:203428 thermocline/S.() po:nom is:fem di:* fq:5 id:214022 thermocollage/S.() po:nom is:mas se:techni di:* fq:3 id:223827 thermocollant/F.() po:adj lx:néo di:* fq:1 id:216431 |
︙ | ︙ | |||
79393 79394 79395 79396 79397 79398 79399 79400 79401 79402 79403 79404 79405 79406 | thermogenèse/S.() po:nom is:fem di:* fq:5 id:205401 thermogénie/S.() po:nom is:fem lx:rare di:* fq:2 id:216430 thermogénique/S.() po:adj is:epi di:* fq:3 id:216429 thermogramme/S.() po:nom is:mas se:phys di:* fq:4 id:226907 thermographe/S.() po:nom is:mas di:* fq:4 id:216424 thermographie/S.() po:nom is:fem di:* fq:4 id:176263 thermographique/S.() po:adj is:epi se:phys et:grec di:* fq:4 id:226422 thermogravimétrie/S.() po:nom is:fem di:* fq:4 id:176264 thermogravimétrique/S.() po:adj is:epi di:* fq:4 id:216428 thermohalin/F.() po:adj di:* fq:4 id:176266 thermohydraulique/S.() po:adj is:epi di:* fq:3 id:214740 thermohydraulique/S.() po:nom is:fem di:* fq:3 id:214739 thermo-ionique/S.() po:adj is:epi se:élec di:C fq:1 id:228893 thermoïonique/S.() po:adj is:epi se:élec di:* fq:3 id:213664 | > | 79456 79457 79458 79459 79460 79461 79462 79463 79464 79465 79466 79467 79468 79469 79470 | thermogenèse/S.() po:nom is:fem di:* fq:5 id:205401 thermogénie/S.() po:nom is:fem lx:rare di:* fq:2 id:216430 thermogénique/S.() po:adj is:epi di:* fq:3 id:216429 thermogramme/S.() po:nom is:mas se:phys di:* fq:4 id:226907 thermographe/S.() po:nom is:mas di:* fq:4 id:216424 thermographie/S.() po:nom is:fem di:* fq:4 id:176263 thermographique/S.() po:adj is:epi se:phys et:grec di:* fq:4 id:226422 thermogravimètre/S.() po:nom is:mas se:sc di:* id:235266 thermogravimétrie/S.() po:nom is:fem di:* fq:4 id:176264 thermogravimétrique/S.() po:adj is:epi di:* fq:4 id:216428 thermohalin/F.() po:adj di:* fq:4 id:176266 thermohydraulique/S.() po:adj is:epi di:* fq:3 id:214740 thermohydraulique/S.() po:nom is:fem di:* fq:3 id:214739 thermo-ionique/S.() po:adj is:epi se:élec di:C fq:1 id:228893 thermoïonique/S.() po:adj is:epi se:élec di:* fq:3 id:213664 |
︙ | ︙ | |||
82664 82665 82666 82667 82668 82669 82670 | uvule/S*() po:nom is:fem se:anat et:lat di:* fq:3 id:178793 Uwe/L'D'Q' po:prn is:mas is:inv di:* id:235073 uxoricide/S*() po:nom is:mas se:droit di:* fq:4 id:220012 uxorilocal/W*() po:adj di:* fq:4 id:178796 uzbek/S*() po:nom po:adj is:epi lx:dic di:C fq:4 id:178797 v po:nom is:mas is:inv di:* fq:7 id:178798 vᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234905 | | | 82728 82729 82730 82731 82732 82733 82734 82735 82736 82737 82738 82739 82740 82741 82742 | uvule/S*() po:nom is:fem se:anat et:lat di:* fq:3 id:178793 Uwe/L'D'Q' po:prn is:mas is:inv di:* id:235073 uxoricide/S*() po:nom is:mas se:droit di:* fq:4 id:220012 uxorilocal/W*() po:adj di:* fq:4 id:178796 uzbek/S*() po:nom po:adj is:epi lx:dic di:C fq:4 id:178797 v po:nom is:mas is:inv di:* fq:7 id:178798 vᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234905 V/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:8 id:204049 V/U.||-- po:nom is:mas is:inv lx:symb di:* fq:6 id:201043 Vᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225871 Vᵛᵉ po:titr is:fem is:sg lx:abty di:* fq:0 id:232301 Vᵛᵉˢ po:titr is:fem is:pl lx:abty di:* fq:0 id:232302 VA/U.||-- po:nom is:mas is:inv lx:symb lx:sig di:* fq:6 id:201044 vacance/S.() po:nom is:fem di:* fq:7 id:178804 vacancier/F.() po:nom po:adj di:* fq:5 id:178805 |
︙ | ︙ | |||
83018 83019 83020 83021 83022 83023 83024 83025 83026 83027 83028 83029 83030 83031 | vascularité/S.() po:nom is:fem se:anat di:* fq:5 id:231316 vasculeux/W.() po:adj lx:vx se:anat di:* fq:4 id:221424 vase/S.() po:nom is:epi di:* fq:7 id:179042 vasectomie/S.() po:nom is:fem di:* fq:4 id:179043 vaseline/S.() po:nom is:fem di:* fq:5 id:179044 vaseliner/a0p+() po:v1__t___zz di:* fq:4 id:179045 vaser/a8p.() po:v1_i___mzz di:* fq:5 id:179046 vaseux/W.() po:adj di:* fq:6 id:179047 vasière/S.() po:nom is:fem di:* fq:5 id:179049 Vasil po:prn is:mas is:inv di:* fq:4 id:230276 vasistas po:nom is:mas is:inv di:* fq:5 id:179048 vasoconstricteur/Fc() po:adj di:* fq:5 id:179051 vasoconstriction/S.() po:nom is:fem di:* fq:5 id:179050 vasodilatateur/Fc() po:adj di:* fq:5 id:179053 | > | 83082 83083 83084 83085 83086 83087 83088 83089 83090 83091 83092 83093 83094 83095 83096 | vascularité/S.() po:nom is:fem se:anat di:* fq:5 id:231316 vasculeux/W.() po:adj lx:vx se:anat di:* fq:4 id:221424 vase/S.() po:nom is:epi di:* fq:7 id:179042 vasectomie/S.() po:nom is:fem di:* fq:4 id:179043 vaseline/S.() po:nom is:fem di:* fq:5 id:179044 vaseliner/a0p+() po:v1__t___zz di:* fq:4 id:179045 vaser/a8p.() po:v1_i___mzz di:* fq:5 id:179046 vaseusement po:adv di:* id:235251 vaseux/W.() po:adj di:* fq:6 id:179047 vasière/S.() po:nom is:fem di:* fq:5 id:179049 Vasil po:prn is:mas is:inv di:* fq:4 id:230276 vasistas po:nom is:mas is:inv di:* fq:5 id:179048 vasoconstricteur/Fc() po:adj di:* fq:5 id:179051 vasoconstriction/S.() po:nom is:fem di:* fq:5 id:179050 vasodilatateur/Fc() po:adj di:* fq:5 id:179053 |
︙ | ︙ | |||
83649 83650 83651 83652 83653 83654 83655 | vexillologie/S.() po:nom is:fem di:* fq:3 id:210343 vexillologue/S.() po:nom is:epi lx:rare di:* fq:2 id:210344 Vexin po:nom is:mas is:inv se:rég di:* fq:5 id:125749 Veyrier po:npr is:epi is:inv se:cité di:* fq:5 id:232194 VF po:nom is:fem is:inv lx:sig di:* fq:6 id:211622 vg/||-- po:nom is:fem is:inv lx:symb lx:québ di:* fq:5 id:201238 viᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234906 | | | 83714 83715 83716 83717 83718 83719 83720 83721 83722 83723 83724 83725 83726 83727 83728 | vexillologie/S.() po:nom is:fem di:* fq:3 id:210343 vexillologue/S.() po:nom is:epi lx:rare di:* fq:2 id:210344 Vexin po:nom is:mas is:inv se:rég di:* fq:5 id:125749 Veyrier po:npr is:epi is:inv se:cité di:* fq:5 id:232194 VF po:nom is:fem is:inv lx:sig di:* fq:6 id:211622 vg/||-- po:nom is:fem is:inv lx:symb lx:québ di:* fq:5 id:201238 viᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234906 VI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204048 VIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225872 VI₃ po:nom is:mas is:inv lx:cc se:chim di:* id:234766 via po:mg po:prep se:@ et:lat di:* fq:7 id:179373 viabilisation/S.() po:nom is:fem di:* fq:4 id:179374 viabiliser/a0p+() po:v1__t___zz di:* fq:5 id:179375 viabilité/S.() po:nom is:fem di:* fq:6 id:179377 viable/S.() po:adj is:epi di:* fq:6 id:179378 |
︙ | ︙ | |||
83878 83879 83880 83881 83882 83883 83884 | vigoureux/W.() po:adj di:* fq:7 id:179520 vigousse/S.() po:adj is:epi lx:helv lx:fam di:* fq:2 id:222527 viguerie/S.() po:nom is:fem di:* fq:5 id:179522 vigueur/S.() po:nom is:fem di:* fq:7 id:179523 viguier/S.() po:nom is:mas di:* fq:5 id:179524 VIH po:nom is:mas is:inv lx:sig di:* fq:6 id:125698 viiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234907 | | | | 83943 83944 83945 83946 83947 83948 83949 83950 83951 83952 83953 83954 83955 83956 83957 83958 83959 83960 83961 | vigoureux/W.() po:adj di:* fq:7 id:179520 vigousse/S.() po:adj is:epi lx:helv lx:fam di:* fq:2 id:222527 viguerie/S.() po:nom is:fem di:* fq:5 id:179522 vigueur/S.() po:nom is:fem di:* fq:7 id:179523 viguier/S.() po:nom is:mas di:* fq:5 id:179524 VIH po:nom is:mas is:inv lx:sig di:* fq:6 id:125698 viiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234907 VII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204047 VIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225873 VIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125700 viiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234908 VIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204046 VIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225874 VIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125699 viking/S.() po:nom po:adj is:epi di:* fq:5 id:179525 Viktor po:prn is:mas is:inv di:* fq:5 id:224348 Viktoria po:prn is:fem is:inv di:* fq:4 id:224347 vil/F.() po:adj di:* fq:7 id:179528 vilain/F.() po:nom po:adj di:* fq:6 id:179526 |
︙ | ︙ | |||
84364 84365 84366 84367 84368 84369 84370 | voici po:mg po:prep se:@ di:* fq:7 id:179813 voie/S.() po:nom is:fem di:* fq:8 id:213727 voïévodie/S.() po:nom is:fem lx:alt di:* fq:4 id:206606 voilà po:mg po:prep se:@ di:* fq:7 id:179822 voilage/S.() po:nom is:mas di:* fq:4 id:179814 voile/S.() po:nom is:epi di:* fq:7 id:179815 voilement/S.() po:nom is:mas di:* fq:5 id:179816 | | | 84429 84430 84431 84432 84433 84434 84435 84436 84437 84438 84439 84440 84441 84442 84443 | voici po:mg po:prep se:@ di:* fq:7 id:179813 voie/S.() po:nom is:fem di:* fq:8 id:213727 voïévodie/S.() po:nom is:fem lx:alt di:* fq:4 id:206606 voilà po:mg po:prep se:@ di:* fq:7 id:179822 voilage/S.() po:nom is:mas di:* fq:4 id:179814 voile/S.() po:nom is:epi di:* fq:7 id:179815 voilement/S.() po:nom is:mas di:* fq:5 id:179816 voiler/a0p+() po:v1_it_q__a di:* fq:7 id:179817 voilerie/S.() po:nom is:fem di:* fq:4 id:179818 voilette/S.() po:nom is:fem di:* fq:5 id:179819 voilier/S.() po:nom is:mas se:marin di:* fq:6 id:179820 voilure/S.() po:nom is:fem se:marin di:* fq:6 id:179821 voir/pFpG() po:v3_itnq__a di:* fq:9 id:179824 voire po:adv se:@ di:* fq:7 id:179825 voirie/S.() po:nom is:fem di:* fq:6 id:179826 |
︙ | ︙ | |||
84707 84708 84709 84710 84711 84712 84713 | Wallas po:prn is:mas is:inv di:X fq:4 id:232201 wallingant/F.() po:nom po:adj di:* fq:4 id:180199 Wallis po:npr is:epi is:inv se:île di:* fq:6 id:125809 Wallis-et-Futuna po:nom is:fem is:pl se:rég se:île di:* fq:4 id:228313 wallon/F,() po:nom po:adj di:* fq:6 id:180201 Wallonie po:nom is:fem is:inv se:rég di:* fq:6 id:200520 wallonisme/S.() po:nom is:mas di:* fq:3 id:180200 | | | 84772 84773 84774 84775 84776 84777 84778 84779 84780 84781 84782 84783 84784 84785 84786 | Wallas po:prn is:mas is:inv di:X fq:4 id:232201 wallingant/F.() po:nom po:adj di:* fq:4 id:180199 Wallis po:npr is:epi is:inv se:île di:* fq:6 id:125809 Wallis-et-Futuna po:nom is:fem is:pl se:rég se:île di:* fq:4 id:228313 wallon/F,() po:nom po:adj di:* fq:6 id:180201 Wallonie po:nom is:fem is:inv se:rég di:* fq:6 id:200520 wallonisme/S.() po:nom is:mas di:* fq:3 id:180200 Wall Street po:npr is:epi is:inv se:fin et:angl di:* fq:0 id:230564 Wally po:prn is:mas is:inv di:* fq:4 id:222681 Walmart po:npr is:epi is:inv se:soc di:* fq:3 id:222323 Walras po:patr is:epi is:inv di:* fq:6 id:215381 Walt po:prn is:mas is:inv di:* fq:5 id:221904 Walter po:prn is:mas is:inv di:* fq:6 id:125810 Wanda po:prn is:fem is:inv di:* fq:5 id:230345 Wantzel po:patr is:epi is:inv di:* fq:4 id:214293 |
︙ | ︙ | |||
84909 84910 84911 84912 84913 84914 84915 84916 84917 84918 84919 84920 84921 84922 | Wilma po:prn is:fem is:inv di:* fq:4 id:222881 Wilson po:patr is:epi is:inv di:* fq:6 id:218250 Wimbledon po:npr is:epi is:inv se:sport di:* fq:5 id:232462 winch/A.() po:nom is:mas et:angl di:* fq:4 id:180251 winchester/S.() po:nom is:epi lx:dép di:* fq:4 id:180252 Windhoek po:npr is:epi is:inv se:cité di:* fq:5 id:183430 Windows po:npr is:mas is:inv se:prod se:info et:angl di:* fq:6 id:201672 windsurf/S.() po:nom is:mas lx:dép et:angl di:* fq:3 id:209921 Wingene po:npr is:epi is:inv se:cité di:* fq:4 id:230983 Winnie po:prn is:fem is:inv di:* fq:5 id:232743 Winnipeg po:npr is:epi is:inv se:cité di:* fq:5 id:125834 winstub/S.() po:nom is:fem lx:fran se:alcool et:all di:* fq:3 id:219707 wintergreen/S.() po:nom is:mas et:angl di:* fq:3 id:180253 Winterthur po:npr is:epi is:inv se:cité di:* fq:5 id:204128 | > | 84974 84975 84976 84977 84978 84979 84980 84981 84982 84983 84984 84985 84986 84987 84988 | Wilma po:prn is:fem is:inv di:* fq:4 id:222881 Wilson po:patr is:epi is:inv di:* fq:6 id:218250 Wimbledon po:npr is:epi is:inv se:sport di:* fq:5 id:232462 winch/A.() po:nom is:mas et:angl di:* fq:4 id:180251 winchester/S.() po:nom is:epi lx:dép di:* fq:4 id:180252 Windhoek po:npr is:epi is:inv se:cité di:* fq:5 id:183430 Windows po:npr is:mas is:inv se:prod se:info et:angl di:* fq:6 id:201672 windowsien/F+() po:nom se:info di:* id:235229 windsurf/S.() po:nom is:mas lx:dép et:angl di:* fq:3 id:209921 Wingene po:npr is:epi is:inv se:cité di:* fq:4 id:230983 Winnie po:prn is:fem is:inv di:* fq:5 id:232743 Winnipeg po:npr is:epi is:inv se:cité di:* fq:5 id:125834 winstub/S.() po:nom is:fem lx:fran se:alcool et:all di:* fq:3 id:219707 wintergreen/S.() po:nom is:mas et:angl di:* fq:3 id:180253 Winterthur po:npr is:epi is:inv se:cité di:* fq:5 id:204128 |
︙ | ︙ | |||
84968 84969 84970 84971 84972 84973 84974 84975 84976 84977 84978 84979 84980 84981 84982 84983 | Wuhan po:npr is:epi is:inv se:cité di:* fq:5 id:206225 wuhanais/F.() po:nom po:adj se:gent di:* id:235099 wulfénite/S.() po:nom is:fem se:minér di:* fq:3 id:229666 Wuppertal po:npr is:epi is:inv se:cité di:* fq:5 id:213790 würmien/F,() po:adj se:géol di:* fq:3 id:180264 Wurtemberg po:nom is:mas is:inv se:pays se:hist di:* fq:6 id:220412 wurtembergeois/F.() po:nom po:adj se:gent di:* fq:5 id:231488 wurtzite/S.() po:nom is:fem se:minér di:* fq:4 id:224975 wushu/S.() po:nom is:mas se:sport et:chin di:* fq:3 id:223346 Wuustwezel po:npr is:epi is:inv se:cité di:* fq:3 id:230985 www/||-- po:pfx se:@ di:* fq:7 id:221798 wyandotte/S.() po:adj is:epi se:zool et:angl di:* fq:2 id:180265 wyandotte/S.() po:nom is:fem se:zool et:angl di:* fq:2 id:212535 Wyoming po:nom is:mas is:inv se:pays di:* fq:5 id:125838 x po:nom is:mas is:inv di:* fq:7 id:180266 xᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234910 | > | | 85034 85035 85036 85037 85038 85039 85040 85041 85042 85043 85044 85045 85046 85047 85048 85049 85050 85051 85052 85053 85054 85055 85056 85057 85058 | Wuhan po:npr is:epi is:inv se:cité di:* fq:5 id:206225 wuhanais/F.() po:nom po:adj se:gent di:* id:235099 wulfénite/S.() po:nom is:fem se:minér di:* fq:3 id:229666 Wuppertal po:npr is:epi is:inv se:cité di:* fq:5 id:213790 würmien/F,() po:adj se:géol di:* fq:3 id:180264 Wurtemberg po:nom is:mas is:inv se:pays se:hist di:* fq:6 id:220412 wurtembergeois/F.() po:nom po:adj se:gent di:* fq:5 id:231488 Wurtzbourg po:npr is:fem is:inv se:cité di:* id:235232 wurtzite/S.() po:nom is:fem se:minér di:* fq:4 id:224975 wushu/S.() po:nom is:mas se:sport et:chin di:* fq:3 id:223346 Wuustwezel po:npr is:epi is:inv se:cité di:* fq:3 id:230985 www/||-- po:pfx se:@ di:* fq:7 id:221798 wyandotte/S.() po:adj is:epi se:zool et:angl di:* fq:2 id:180265 wyandotte/S.() po:nom is:fem se:zool et:angl di:* fq:2 id:212535 Wyoming po:nom is:mas is:inv se:pays di:* fq:5 id:125838 x po:nom is:mas is:inv di:* fq:7 id:180266 xᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234910 X/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204044 Xᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225875 XAF/-- po:nom is:mas is:inv lx:sig di:* fq:3 id:201680 Xander po:prn is:mas is:inv di:* fq:3 id:222880 xanthate/S.() po:nom is:mas di:* fq:4 id:210229 xanthélasma/S.() po:nom is:mas di:* fq:4 id:206423 xanthie/S.() po:nom is:fem di:* fq:2 id:180267 xanthine/S.() po:nom is:fem di:* fq:5 id:180268 |
︙ | ︙ | |||
85036 85037 85038 85039 85040 85041 85042 | xérostomie/S.() po:nom is:fem se:méd di:* fq:4 id:219978 xérus po:nom is:mas is:inv di:* fq:1 id:180298 Xerxès po:prn is:mas is:inv se:hist di:* fq:5 id:125852 xhosa/S.() po:nom po:adj is:epi di:* fq:4 id:216456 xi po:nom is:mas is:inv di:M fq:6 id:180272 xi/S.() po:nom is:mas di:R fq:4 id:180271 xiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234911 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 85103 85104 85105 85106 85107 85108 85109 85110 85111 85112 85113 85114 85115 85116 85117 85118 85119 85120 85121 85122 85123 85124 85125 85126 85127 85128 85129 85130 85131 85132 85133 85134 85135 85136 85137 85138 85139 85140 85141 85142 85143 85144 85145 85146 85147 85148 85149 85150 85151 85152 85153 85154 85155 85156 85157 85158 85159 85160 85161 85162 85163 85164 85165 85166 85167 85168 85169 85170 85171 85172 85173 85174 85175 85176 85177 85178 85179 85180 85181 85182 85183 85184 85185 85186 85187 85188 85189 85190 85191 85192 85193 85194 85195 85196 85197 85198 85199 85200 85201 85202 85203 85204 85205 85206 85207 85208 85209 85210 85211 85212 85213 85214 85215 85216 85217 85218 85219 85220 85221 85222 85223 85224 85225 85226 85227 85228 85229 85230 85231 85232 85233 85234 85235 85236 85237 85238 85239 85240 85241 85242 85243 85244 85245 85246 85247 85248 85249 85250 85251 85252 85253 85254 85255 85256 85257 85258 85259 85260 85261 85262 85263 85264 85265 85266 85267 85268 85269 85270 85271 85272 85273 85274 85275 85276 85277 85278 85279 85280 85281 85282 85283 85284 85285 85286 85287 85288 85289 85290 | xérostomie/S.() po:nom is:fem se:méd di:* fq:4 id:219978 xérus po:nom is:mas is:inv di:* fq:1 id:180298 Xerxès po:prn is:mas is:inv se:hist di:* fq:5 id:125852 xhosa/S.() po:nom po:adj is:epi di:* fq:4 id:216456 xi po:nom is:mas is:inv di:M fq:6 id:180272 xi/S.() po:nom is:mas di:R fq:4 id:180271 xiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234911 XI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204043 XIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225876 Xi’an po:npr is:epi is:inv se:cité di:* fq:0 id:229434 xiang/S.() po:nom is:mas di:* fq:4 id:211081 XIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125843 x-ième/S.() po:adj is:epi lx:var di:* fq:1 id:219701 xiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234912 XII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204042 XIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225877 XIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125840 xiiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234913 XIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204041 XIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225878 XIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125839 xiloïdine/S.() po:nom is:fem se:pharma di:* fq:0 id:221113 ximenia/S.() po:nom is:mas et:lat di:M fq:3 id:211045 ximénia/S.() po:nom is:mas et:lat di:R fq:1 id:211042 ximénie/S.() po:nom is:fem lx:alt lx:rare di:* fq:0 id:180273 xingyiquan/S.() po:nom is:mas di:X fq:1 id:227683 Xining po:npr is:epi is:inv se:cité di:* fq:4 id:229433 Xinjiang po:nom is:mas is:inv se:rég di:* fq:5 id:205410 xinyiliuhequan/S.() po:nom is:mas di:X fq:0 id:227684 xiphias po:nom is:mas is:inv di:* fq:4 id:200794 xipho/S.() po:nom is:mas lx:abr se:zool di:* fq:3 id:180274 xiphoïde/S.() po:adj is:epi di:* fq:5 id:180276 xiphoïdien/F,() po:adj se:anat di:* fq:4 id:180277 xiphophore/S.() po:nom is:mas se:zool et:lat di:* fq:1 id:180275 xiphosure/S.() po:nom is:mas se:zool di:* fq:3 id:226358 xivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234914 XIV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204040 XIVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225879 XIVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125841 xixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234919 XIX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204035 XIXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:1 id:225880 XIXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:7 id:125842 xlᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234940 XL/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204063 XLᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225881 XLe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203372 xliᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234941 XLI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204062 XLIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225882 XLIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203240 xliiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234942 XLII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204061 XLIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225883 XLIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203312 xliiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234943 XLIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204060 XLIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225884 XLIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:3 id:203321 xlivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234944 XLIV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204059 XLIVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225885 XLIVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203404 xlixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234949 XLIX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204054 XLIXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225886 XLIXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:3 id:203293 xlvᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234945 XLV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204058 XLVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225887 XLVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203270 xlviᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234946 XLVI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204057 XLVIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225888 XLVIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:3 id:203350 xlviiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234947 XLVII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:5 id:204056 XLVIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225889 XLVIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:3 id:203283 xlviiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234948 XLVIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204055 XLVIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225890 XLVIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:3 id:203152 XML po:nom is:mas is:inv lx:sig se:info et:angl di:* fq:5 id:211134 XOF/-- po:nom is:mas is:inv lx:sig di:* fq:4 id:201678 XPF/-- po:nom is:mas is:inv lx:sig di:* fq:4 id:201679 xvᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234915 XV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204039 XVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225891 XVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125847 xviᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234916 XVI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204038 XVIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225892 XVIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:7 id:125846 xviiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234917 XVII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204037 XVIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225893 XVIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:7 id:125845 xviiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234918 XVIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204036 XVIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225894 XVIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:7 id:125844 xxᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234920 XX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:7 id:204034 XXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225895 XXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:7 id:125850 xxiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234921 XXI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204082 XXIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225896 XXIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:6 id:125849 xxiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234922 XXII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204081 XXIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225897 XXIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:125848 xxiiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234923 XXIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204080 XXIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225898 XXIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203079 xxivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234924 XXIV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204079 XXIVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225899 XXIVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203363 xxixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234929 XXIX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204074 XXIXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225900 XXIXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203169 XXL po:adj is:epi is:inv lx:sig et:angl di:* fq:5 id:219981 xxvᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234925 XXV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204078 XXVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225901 XXVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203366 xxviᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234926 XXVI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204077 XXVIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225902 XXVIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203230 xxviiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234927 XXVII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204076 XXVIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225903 XXVIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203163 xxviiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234928 XXVIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204075 XXVIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225904 XXVIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203235 xxxᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234930 XXX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204073 XXXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225905 XXXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:5 id:203380 xxxiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234931 XXXI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204072 XXXIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225906 XXXIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203315 xxxiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234932 XXXII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204071 XXXIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225907 XXXIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203403 xxxiiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234933 XXXIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204070 XXXIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225908 XXXIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203338 xxxivᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234934 XXXIV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204069 XXXIVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225909 XXXIVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203165 xxxixᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234939 XXXIX/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204064 XXXIXᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225910 XXXIXe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203300 xxxvᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234935 XXXV/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204068 XXXVᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225911 XXXVe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203213 xxxviᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234936 XXXVI/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204067 XXXVIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225912 XXXVIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203358 xxxviiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234937 XXXVII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204066 XXXVIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225913 XXXVIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203223 xxxviiiᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* id:234938 XXXVIII/-- po:nbro is:epi is:pl se:@ et:lat di:* fq:6 id:204065 XXXVIIIᵉ/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:0 id:225914 XXXVIIIe/-- po:adj is:epi is:sg lx:ord et:lat di:* fq:4 id:203229 xylème/S.() po:nom is:mas se:bot di:* fq:5 id:206465 xylène/S.() po:nom is:mas se:chim di:* fq:5 id:180285 xylidine/S.() po:nom is:fem di:* fq:4 id:180278 xylitol/S.() po:nom is:mas se:bioch di:* fq:3 id:226050 xylocope/S.() po:nom is:mas di:* fq:3 id:180279 |
︙ | ︙ |
Modified gc_lang/fr/mailext/content/overlay.js from [4e5a5c3792] to [2bffe86e4e].
︙ | ︙ | |||
368 369 370 371 372 373 374 | let lCurSet = xNavBar.currentSet.split(","); if (lCurSet.indexOf(sButtonId) == -1) { let iPos = lCurSet.indexOf("spellingButton") + 1 || lCurSet.length; let aSet = lCurSet.slice(0, iPos).concat(sButtonId).concat(sButtonId2).concat(lCurSet.slice(iPos)); xNavBar.setAttribute("currentset", aSet.join(",")); //xNavBar.currentSet = aSet.join(","); Services.xulStore.persist(xNavBar, "currentset"); | | | 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | let lCurSet = xNavBar.currentSet.split(","); if (lCurSet.indexOf(sButtonId) == -1) { let iPos = lCurSet.indexOf("spellingButton") + 1 || lCurSet.length; let aSet = lCurSet.slice(0, iPos).concat(sButtonId).concat(sButtonId2).concat(lCurSet.slice(iPos)); xNavBar.setAttribute("currentset", aSet.join(",")); //xNavBar.currentSet = aSet.join(","); Services.xulStore.persist(xNavBar, "currentset"); //Ci.BrowserToolboxCustomizeDone(true); } }, clearPreview: function () { let xPreview = document.getElementById("grammalecte-errors"); while (xPreview.firstChild) { xPreview.removeChild(xPreview.firstChild); }; |
︙ | ︙ |
Modified gc_lang/fr/mailext/content/overlay.xul from [a2a481fd03] to [c9ae1732ec].
1 2 | <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="chrome://grammarchecker/content/overlay.css" type="text/css"?> | | | 1 2 3 4 5 6 7 8 9 10 | <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="chrome://grammarchecker/content/overlay.css" type="text/css"?> <!--<?xml-stylesheet type="text/css" href="chrome://messenger/skin/messenger.css"?>--> <!DOCTYPE overlay SYSTEM "chrome://grammarchecker/locale/overlay.dtd"> <overlay id="grammarchecker-overlay" xmlns:html="http://www.w3.org/1999/xhtml" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
︙ | ︙ |
Deleted gc_lang/fr/mg.odt version [21fb482d0e].
cannot compute difference between binary files
Modified gc_lang/fr/modules-js/conj_data.json from [e1188de5c5] to [cd80aa9f9a].
cannot compute difference between binary files
Modified gc_lang/fr/modules-js/gce_analyseur.js from [d1adb20722] to [1edcbef032].
︙ | ︙ | |||
12 13 14 15 16 17 18 | else if (oToken["sValue"].search(/-l(?:es?|a)-(?:[mt]oi|nous|leur)$|(?:[nv]ous|lui|leur)-en$/) != -1) { nEnd = oToken["sValue"].slice(0,nEnd).lastIndexOf("-"); } } return g_morph(oToken, sPattern, sNegPattern, 0, nEnd, false); } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < | < < | < < < < < < < < < < < < < | | | < < < | < < < < < < < < | < < | < < < < < < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | else if (oToken["sValue"].search(/-l(?:es?|a)-(?:[mt]oi|nous|leur)$|(?:[nv]ous|lui|leur)-en$/) != -1) { nEnd = oToken["sValue"].slice(0,nEnd).lastIndexOf("-"); } } return g_morph(oToken, sPattern, sNegPattern, 0, nEnd, false); } function apposition (sWord1, sWord2) { // returns true if nom + nom (no agreement required) return sWord2.length < 2 || (cregex.mbNomNotAdj(_oSpellChecker.getMorph(sWord2)) && cregex.mbPpasNomNotAdj(_oSpellChecker.getMorph(sWord1))); } function g_checkAgreement (oToken1, oToken2, bNotOnlyNames=true) { // check agreement between <oToken1> and <oToken2> let lMorph1 = oToken1.hasOwnProperty("lMorph") ? oToken1["lMorph"] : _oSpellChecker.getMorph(oToken1["sValue"]); if (lMorph1.length === 0) { return true; } let lMorph2 = oToken2.hasOwnProperty("lMorph") ? oToken2["lMorph"] : _oSpellChecker.getMorph(oToken2["sValue"]); if (lMorph2.length === 0) { return true; } if (bNotOnlyNames && !(cregex.mbAdj(lMorph2) || cregex.mbAdjNb(lMorph1))) { return false; } return cregex.checkAgreement(lMorph1, lMorph2); } function checkAgreement (sWord1, sWord2) { let lMorph2 = _oSpellChecker.getMorph(sWord2); if (lMorph2.length === 0) { return true; } |
︙ | ︙ | |||
131 132 133 134 135 136 137 | return true; } if (s.length > 1 && s.length < 16 && s.slice(0, 1).gl_isLowerCase() && (!s.slice(1).gl_isLowerCase() || /[0-9]/.test(s))) { return true; } return false; } | < < < < < < < < | 54 55 56 57 58 59 60 | return true; } if (s.length > 1 && s.length < 16 && s.slice(0, 1).gl_isLowerCase() && (!s.slice(1).gl_isLowerCase() || /[0-9]/.test(s))) { return true; } return false; } |
Modified gc_lang/fr/modules-js/gce_suggestions.js from [de44ba5567] to [54549da722].
︙ | ︙ | |||
253 254 255 256 257 258 259 | if (sFlex.endsWith("AL") && sFlex.length > 2 && _oSpellChecker.isValid(sFlex.slice(0,-1)+"UX")) { aSugg.add(sFlex.slice(0,-1)+"UX"); } if (sFlex.endsWith("AIL") && sFlex.length > 3 && _oSpellChecker.isValid(sFlex.slice(0,-2)+"UX")) { aSugg.add(sFlex.slice(0,-2)+"UX"); } } | > | | | | | > > > > > > > > | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | if (sFlex.endsWith("AL") && sFlex.length > 2 && _oSpellChecker.isValid(sFlex.slice(0,-1)+"UX")) { aSugg.add(sFlex.slice(0,-1)+"UX"); } if (sFlex.endsWith("AIL") && sFlex.length > 3 && _oSpellChecker.isValid(sFlex.slice(0,-2)+"UX")) { aSugg.add(sFlex.slice(0,-2)+"UX"); } } if (sFlex.slice(-1).gl_isLowerCase()) { if (_oSpellChecker.isValid(sFlex+"s")) { aSugg.add(sFlex+"s"); } if (_oSpellChecker.isValid(sFlex+"x")) { aSugg.add(sFlex+"x"); } } else { if (_oSpellChecker.isValid(sFlex+"S")) { aSugg.add(sFlex+"s"); } if (_oSpellChecker.isValid(sFlex+"X")) { aSugg.add(sFlex+"x"); } } if (mfsp.hasMiscPlural(sFlex)) { mfsp.getMiscPlural(sFlex).forEach(function(x) { aSugg.add(x); }); } if (aSugg.size == 0 && bSelfSugg && (sFlex.endsWith("s") || sFlex.endsWith("x") || sFlex.endsWith("S") || sFlex.endsWith("X"))) { aSugg.add(sFlex); } |
︙ | ︙ |
Modified gc_lang/fr/modules-js/mfsp_data.json from [af86f8b301] to [179d2e4c06].
cannot compute difference between binary files
Modified gc_lang/fr/modules-js/phonet_data.json from [164f0ecfd8] to [85f2fdc8fe].
cannot compute difference between binary files
Modified gc_lang/fr/modules/conj_data.py from [d066b48b00] to [d8e60b646e].
cannot compute difference between binary files
Modified gc_lang/fr/modules/gce_analyseur.py from [09993a8236] to [577ebd9866].
︙ | ︙ | |||
9 10 11 12 13 14 15 | if dToken["sValue"].count("-") > 1: if "-t-" in dToken["sValue"]: nEnd = nEnd - 2 elif re.search("-l(?:es?|a)-(?:[mt]oi|nous|leur)$|(?:[nv]ous|lui|leur)-en$", dToken["sValue"]): nEnd = dToken["sValue"][0:nEnd].rfind("-") return g_morph(dToken, sPattern, sNegPattern, 0, nEnd, False) | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | | < < | < < < < < < < < < | < < < < | | < < < < < < | < < | < < < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | if dToken["sValue"].count("-") > 1: if "-t-" in dToken["sValue"]: nEnd = nEnd - 2 elif re.search("-l(?:es?|a)-(?:[mt]oi|nous|leur)$|(?:[nv]ous|lui|leur)-en$", dToken["sValue"]): nEnd = dToken["sValue"][0:nEnd].rfind("-") return g_morph(dToken, sPattern, sNegPattern, 0, nEnd, False) def apposition (sWord1, sWord2): "returns True if nom + nom (no agreement required)" return len(sWord2) < 2 or (cr.mbNomNotAdj(_oSpellChecker.getMorph(sWord2)) and cr.mbPpasNomNotAdj(_oSpellChecker.getMorph(sWord1))) def g_checkAgreement (dToken1, dToken2, bNotOnlyNames=True): "check agreement between <dToken1> and <dToken2>" lMorph1 = dToken1["lMorph"] if "lMorph" in dToken1 else _oSpellChecker.getMorph(dToken1["sValue"]) if not lMorph1: return True lMorph2 = dToken2["lMorph"] if "lMorph" in dToken2 else _oSpellChecker.getMorph(dToken2["sValue"]) if not lMorph2: return True if bNotOnlyNames and not (cr.mbAdj(lMorph2) or cr.mbAdjNb(lMorph1)): return False return cr.checkAgreement(lMorph1, lMorph2) def checkAgreement (sWord1, sWord2): "check agreement between <sWord1> and <sWord1>" lMorph2 = _oSpellChecker.getMorph(sWord2) if not lMorph2: return True |
︙ | ︙ | |||
106 107 108 109 110 111 112 | def mbUnit (s): "returns True it can be a measurement unit" if _zUnitSpecial.search(s): return True if 1 < len(s) < 16 and s[0:1].islower() and (not s[1:].islower() or _zUnitNumbers.search(s)): return True return False | < < < < < < < < | 49 50 51 52 53 54 55 | def mbUnit (s): "returns True it can be a measurement unit" if _zUnitSpecial.search(s): return True if 1 < len(s) < 16 and s[0:1].islower() and (not s[1:].islower() or _zUnitNumbers.search(s)): return True return False |
Modified gc_lang/fr/modules/gce_suggestions.py from [74625aeb66] to [5701f141a0].
︙ | ︙ | |||
190 191 192 193 194 195 196 | if sFlex.endswith("ail") and len(sFlex) > 3 and _oSpellChecker.isValid(sFlex[:-2]+"ux"): aSugg.add(sFlex[:-2]+"ux") if sFlex.endswith("L"): if sFlex.endswith("AL") and len(sFlex) > 2 and _oSpellChecker.isValid(sFlex[:-1]+"UX"): aSugg.add(sFlex[:-1]+"UX") if sFlex.endswith("AIL") and len(sFlex) > 3 and _oSpellChecker.isValid(sFlex[:-2]+"UX"): aSugg.add(sFlex[:-2]+"UX") | > | | | | > > > > > | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | if sFlex.endswith("ail") and len(sFlex) > 3 and _oSpellChecker.isValid(sFlex[:-2]+"ux"): aSugg.add(sFlex[:-2]+"ux") if sFlex.endswith("L"): if sFlex.endswith("AL") and len(sFlex) > 2 and _oSpellChecker.isValid(sFlex[:-1]+"UX"): aSugg.add(sFlex[:-1]+"UX") if sFlex.endswith("AIL") and len(sFlex) > 3 and _oSpellChecker.isValid(sFlex[:-2]+"UX"): aSugg.add(sFlex[:-2]+"UX") if sFlex[-1:].islower(): if _oSpellChecker.isValid(sFlex+"s"): aSugg.add(sFlex+"s") if _oSpellChecker.isValid(sFlex+"x"): aSugg.add(sFlex+"x") else: if _oSpellChecker.isValid(sFlex+"S"): aSugg.add(sFlex+"s") if _oSpellChecker.isValid(sFlex+"X"): aSugg.add(sFlex+"x") if mfsp.hasMiscPlural(sFlex): aSugg.update(mfsp.getMiscPlural(sFlex)) if not aSugg and bSelfSugg and sFlex.endswith(("s", "x", "S", "X")): aSugg.add(sFlex) aSugg.discard("") if aSugg: return "|".join(aSugg) |
︙ | ︙ |
Modified gc_lang/fr/modules/mfsp_data.py from [0eb8563797] to [fcb914532d].
cannot compute difference between binary files
Modified gc_lang/fr/modules/phonet_data.py from [555a59c7c9] to [ecd72721de].
cannot compute difference between binary files
Modified gc_lang/fr/modules/tests.py from [34a3376ab5] to [81ffa17b4e].
︙ | ︙ | |||
104 105 106 107 108 109 110 | class TestPhonet (unittest.TestCase): "Tests des équivalences phonétiques" @classmethod def setUpClass (cls): cls.lSet = [ ["ce", "se"], | | < | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | class TestPhonet (unittest.TestCase): "Tests des équivalences phonétiques" @classmethod def setUpClass (cls): cls.lSet = [ ["ce", "se"], ["ces", "saie", "saies", "ses", "sais", "sait"], ["cet", "cette", "sept", "set", "sets"], ["dé", "dés", "dès", "dais", "des"], ["don", "dons", "dont"], ["été", "étaie", "étaies", "étais", "était", "étai", "étés", "étaient"], ["faire", "fer", "fers", "ferre", "ferres", "ferrent"], ["fois", "foi", "foie", "foies"], ["la", "là", "las"], ["mes", "mets", "met", "mai", "mais"], ["mon", "mont", "monts"], ["mot", "mots", "maux"], ["moi", "mois"], ["notre", "nôtre", "nôtres"], ["or", "ors", "hors"], ["hou", "houe", "houes", "ou", "où", "houx"], ["peu", "peux", "peut"], ["son", "sons", "sont"], ["tes", "tais", "tait", "taie", "taies", "thé", "thés"], ["toi", "toit", "toits"], ["ton", "tons", "thon", "thons", "tond", "tonds"], ["voir", "voire"] ] |
︙ | ︙ | |||
202 203 204 205 206 207 208 | "\n found: " + sFoundSuggs + \ "\n errors: \n" + sListErr) nError += 1 if nError: print("Unexpected errors:", nError) # untested rules i = 0 | < | > | | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | "\n found: " + sFoundSuggs + \ "\n errors: \n" + sListErr) nError += 1 if nError: print("Unexpected errors:", nError) # untested rules i = 0 for _, sOpt, sLineId, sRuleId in gc_engine.listRules(): if sOpt != "@@@@" and sRuleId not in self._aTestedRules and not re.search("^[0-9]+[sp]$|^[pd]_", sRuleId): echo(f"# untested rule: {sLineId}/{sRuleId}") i += 1 if i: echo(" [{} untested rules]".format(i)) def _splitTestLine (self, sLine): sText, sSugg = sLine.split("->>") return (sText.strip(), sSugg.strip()) def _getFoundErrors (self, sLine, sOption): if sOption: |
︙ | ︙ |
Modified gc_lang/fr/oxt/Conjugueur/Conjugueur.py from [19edfcebcd] to [0184f1d23e].
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import grammalecte.fr.conj as conj_fr import helpers from com.sun.star.task import XJobExecutor from com.sun.star.awt import XActionListener from com.sun.star.awt import XTopWindowListener class Conjugueur (unohelper.Base, XActionListener, XTopWindowListener, XJobExecutor): def __init__ (self, ctx): self.ctx = ctx self.xSvMgr = self.ctx.ServiceManager self.xContainer = None self.xDialog = None self.lDropDown = ["être", "avoir", "aller", "vouloir", "pouvoir", "devoir", "acquérir", "connaître", "dire", "faire", \ "mettre", "partir", "prendre", "répondre", "savoir", "sentir", "tenir", "vaincre", "venir", "voir", \ "appeler", "envoyer", "commencer", "manger", "trouver", "accomplir", "agir", "finir", "haïr", "réussir"] self.sWarning = "Verbe non vérifié.\nOptions “pronominal” et “temps composés” désactivées." def _addWidget (self, name, wtype, x, y, w, h, **kwargs): xWidget = self.xDialog.createInstance('com.sun.star.awt.UnoControl%sModel' % wtype) | > > > > > > > > > > > > > > > > > > > > > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | import grammalecte.fr.conj as conj_fr import helpers from com.sun.star.task import XJobExecutor from com.sun.star.awt import XActionListener from com.sun.star.awt import XTopWindowListener from com.sun.star.datatransfer import XTransferable class ClipBoardObject (unohelper.Base, XTransferable): def __init__ (self): self.sText = "" # XTransferable def getTransferData (self, xFlavor): if xFlavor.MimeType == "text/plain;charset=utf-16": return self.sText return def getTransferDataFlavors (self): xFlavor = uno.createUnoStruct("com.sun.star.datatransfer.DataFlavor") xFlavor.MimeType = "text/plain;charset=utf-16" xFlavor.HumanPresentableName = "Unicode-Text" return (xFlavor,) def isDataFlavorSupported (self, xFlavor): return xFlavor.MimeType == "text/plain;charset=utf-16" class Conjugueur (unohelper.Base, XActionListener, XTopWindowListener, XJobExecutor): def __init__ (self, ctx): self.ctx = ctx self.xSvMgr = self.ctx.ServiceManager self.xContainer = None self.xDialog = None self.xClipboard = None self.xClipboardObject = None self.lDropDown = ["être", "avoir", "aller", "vouloir", "pouvoir", "devoir", "acquérir", "connaître", "dire", "faire", \ "mettre", "partir", "prendre", "répondre", "savoir", "sentir", "tenir", "vaincre", "venir", "voir", \ "appeler", "envoyer", "commencer", "manger", "trouver", "accomplir", "agir", "finir", "haïr", "réussir"] self.sWarning = "Verbe non vérifié.\nOptions “pronominal” et “temps composés” désactivées." def _addWidget (self, name, wtype, x, y, w, h, **kwargs): xWidget = self.xDialog.createInstance('com.sun.star.awt.UnoControl%sModel' % wtype) |
︙ | ︙ | |||
201 202 203 204 205 206 207 208 209 210 211 212 213 214 | self.condb1 = self._addWidget('condb1', 'FixedText', nX2, nY7b+21, nWidth, nHeightCj, Label = "") self.condb2 = self._addWidget('condb2', 'FixedText', nX2, nY7b+28, nWidth, nHeightCj, Label = "") self.condb3 = self._addWidget('condb3', 'FixedText', nX2, nY7b+35, nWidth, nHeightCj, Label = "") self.condb4 = self._addWidget('condb4', 'FixedText', nX2, nY7b+42, nWidth, nHeightCj, Label = "") self.condb5 = self._addWidget('condb5', 'FixedText', nX2, nY7b+49, nWidth, nHeightCj, Label = "") self.condb6 = self._addWidget('condb6', 'FixedText', nX2, nY7b+56, nWidth, nHeightCj, Label = "") # dialog height self.xDialog.Height = 350 xWindowSize = helpers.getWindowSize() self.xDialog.PositionX = int((xWindowSize.Width / 2) - (self.xDialog.Width / 2)) self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) ## container | > > | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | self.condb1 = self._addWidget('condb1', 'FixedText', nX2, nY7b+21, nWidth, nHeightCj, Label = "") self.condb2 = self._addWidget('condb2', 'FixedText', nX2, nY7b+28, nWidth, nHeightCj, Label = "") self.condb3 = self._addWidget('condb3', 'FixedText', nX2, nY7b+35, nWidth, nHeightCj, Label = "") self.condb4 = self._addWidget('condb4', 'FixedText', nX2, nY7b+42, nWidth, nHeightCj, Label = "") self.condb5 = self._addWidget('condb5', 'FixedText', nX2, nY7b+49, nWidth, nHeightCj, Label = "") self.condb6 = self._addWidget('condb6', 'FixedText', nX2, nY7b+56, nWidth, nHeightCj, Label = "") self.copybutton = self._addWidget('copybutton', 'Button', nX1, nY7+68, 10, 10, Label = ">", TextColor = 0x000088, HelpText="Presse-papiers") # dialog height self.xDialog.Height = 350 xWindowSize = helpers.getWindowSize() self.xDialog.PositionX = int((xWindowSize.Width / 2) - (self.xDialog.Width / 2)) self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) ## container |
︙ | ︙ | |||
226 227 228 229 230 231 232 233 234 235 236 237 238 239 | self.xContainer.getControl('opro').setActionCommand('Change') self.xContainer.getControl('oint').addActionListener(self) self.xContainer.getControl('oint').setActionCommand('Change') self.xContainer.getControl('otco').addActionListener(self) self.xContainer.getControl('otco').setActionCommand('Change') self.xContainer.getControl('ofem').addActionListener(self) self.xContainer.getControl('ofem').setActionCommand('Change') self.xContainer.addTopWindowListener(self) # listener with XTopWindowListener methods #self.xContainer.execute() # Modal dialog ## set verb self.input.Text = sArgs if sArgs else "être" self._newVerb() | > > | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | self.xContainer.getControl('opro').setActionCommand('Change') self.xContainer.getControl('oint').addActionListener(self) self.xContainer.getControl('oint').setActionCommand('Change') self.xContainer.getControl('otco').addActionListener(self) self.xContainer.getControl('otco').setActionCommand('Change') self.xContainer.getControl('ofem').addActionListener(self) self.xContainer.getControl('ofem').setActionCommand('Change') self.xContainer.getControl('copybutton').addActionListener(self) self.xContainer.getControl('copybutton').setActionCommand('CopyData') self.xContainer.addTopWindowListener(self) # listener with XTopWindowListener methods #self.xContainer.execute() # Modal dialog ## set verb self.input.Text = sArgs if sArgs else "être" self._newVerb() |
︙ | ︙ | |||
248 249 250 251 252 253 254 255 256 257 258 259 260 261 | self.xContainer.dispose() # Non modal dialog #self.xContainer.endExecute() # Modal dialog elif xActionEvent.ActionCommand == 'New': self._newVerb() elif xActionEvent.ActionCommand == 'Change': if self.oVerb: self._displayResults() else: print(str(xActionEvent)) except: traceback.print_exc() # XTopWindowListener (useful for non modal dialog only) def windowOpened (self, xEvent): | > > | 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | self.xContainer.dispose() # Non modal dialog #self.xContainer.endExecute() # Modal dialog elif xActionEvent.ActionCommand == 'New': self._newVerb() elif xActionEvent.ActionCommand == 'Change': if self.oVerb: self._displayResults() elif xActionEvent.ActionCommand == 'CopyData': self.stringToClipboard(self.sTextForClipboard) else: print(str(xActionEvent)) except: traceback.print_exc() # XTopWindowListener (useful for non modal dialog only) def windowOpened (self, xEvent): |
︙ | ︙ | |||
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | def windowActivated (self, xEvent): return def windowDeactivated (self, xEvent): return # XJobExecutor def trigger (self, args): try: xDialog = Conjugueur(self.ctx) xDialog.run(args) except: traceback.print_exc() def _newVerb (self): self.oneg.State = False self.opro.State = False self.oint.State = False self.otco.State = False self.ofem.State = False | > > > > > > > > > > | 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | def windowActivated (self, xEvent): return def windowDeactivated (self, xEvent): return # Clipboard # see: https://forum.openoffice.org/en/forum/viewtopic.php?f=21&t=93562 def stringToClipboard (self, sText): if not self.xClipboard: self.xClipboard = self.xSvMgr.createInstance("com.sun.star.datatransfer.clipboard.SystemClipboard") self.xClipboardObject = ClipBoardObject() self.xClipboardObject.sText = sText self.xClipboard.setContents(self.xClipboardObject, None) # XJobExecutor def trigger (self, args): try: xDialog = Conjugueur(self.ctx) xDialog.run(args) except: traceback.print_exc() def _newVerb (self): self.oneg.State = False self.opro.State = False self.oint.State = False self.otco.State = False self.ofem.State = False |
︙ | ︙ | |||
415 416 417 418 419 420 421 422 423 424 425 426 | self.simp2.Label = dConjTable["simp2"] self.simp3.Label = dConjTable["simp3"] self.simp4.Label = dConjTable["simp4"] self.simp5.Label = dConjTable["simp5"] self.simp6.Label = dConjTable["simp6"] # refresh self.xContainer.setVisible(True) except: traceback.print_exc() # g_ImplementationHelper = unohelper.ImplementationHelper() # g_ImplementationHelper.addImplementation(Conjugueur, 'dicollecte.Conjugueur', ('com.sun.star.task.Job',)) | > | 455 456 457 458 459 460 461 462 463 464 465 466 467 | self.simp2.Label = dConjTable["simp2"] self.simp3.Label = dConjTable["simp3"] self.simp4.Label = dConjTable["simp4"] self.simp5.Label = dConjTable["simp5"] self.simp6.Label = dConjTable["simp6"] # refresh self.xContainer.setVisible(True) self.sTextForClipboard = "\n".join( [ s for s in dConjTable.values() ] ) except: traceback.print_exc() # g_ImplementationHelper = unohelper.ImplementationHelper() # g_ImplementationHelper.addImplementation(Conjugueur, 'dicollecte.Conjugueur', ('com.sun.star.task.Job',)) |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-classique.aff from [62f117a6ea] to [7ac83fc436].
1 2 3 4 5 6 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “CLASSIQUE” v7.1 # par Olivier R. -- licence MPL 2.0 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “CLASSIQUE” v7.1 # par Olivier R. -- licence MPL 2.0 # Généré le 29-04-2020 à 22:03 # Pour améliorer le dictionnaire, allez sur https://grammalecte.net/ SET UTF-8 WORDCHARS -’'1234567890. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-classique.dic from [3d3f641bed] to [e2f5dd9012].
|
| | | 1 2 3 4 5 6 7 8 | 83545 - 1er/-- 1ers/-- 1re/-- 1res/-- 1ʳᵉ/-- 1ʳᵉˢ/-- |
︙ | ︙ | |||
129 130 131 132 133 134 135 136 137 138 139 140 141 142 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' | > | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accor/D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' |
︙ | ︙ | |||
160 161 162 163 164 165 166 167 168 169 170 171 172 173 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' | > | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adil/L'D'Q' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' |
︙ | ︙ | |||
715 716 717 718 719 720 721 722 723 724 725 726 727 728 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' | > | 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmaa/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' |
︙ | ︙ | |||
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castres Castro Casuso Catalina Catane Catherine Cathy | > | 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castorama Castres Castro Casuso Catalina Catane Catherine Cathy |
︙ | ︙ | |||
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ | > | 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ |
︙ | ︙ | |||
3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen | > | 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donia Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen |
︙ | ︙ | |||
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallope Fallouja Fameck Famenne Fanny Fantine Faolan | > | 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallon Fallope Fallouja Fameck Famenne Fanny Fantine Faolan |
︙ | ︙ | |||
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud | > > > | 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francie Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconie Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frederik Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud |
︙ | ︙ | |||
4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' Hanoï/L'D'Q' | > | 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Hana/L'D'Q' Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' Hanoï/L'D'Q' |
︙ | ︙ | |||
4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ | > | 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Imane/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ |
︙ | ︙ | |||
5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique James Jamésie Jamie Jamil Jamila Jan Jana | > | 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique Jamel James Jamésie Jamie Jamil Jamila Jan Jana |
︙ | ︙ | |||
5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme | > | 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jens Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme |
︙ | ︙ | |||
5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larissa Larousse Larry Lars Larsen Larzac Las | > | 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larisa Larissa Larousse Larry Lars Larsen Larzac Las |
︙ | ︙ | |||
5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lilas Lili Lilian Liliana Liliane Lilith Lille | > | 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lila Lilas Lili Lilian Liliana Liliane Lilith Lille |
︙ | ︙ | |||
6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac | > | 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammad Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac |
︙ | ︙ | |||
6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- | > | 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Moyenne-Franconie Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- |
︙ | ︙ | |||
6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabuchodonosor Nacer Nacim Nacira Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki | > > | 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabila Nabuchodonosor Nacer Nacim Nacira Nada Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki |
︙ | ︙ | |||
7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca | > | 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Natixis Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca |
︙ | ︙ | |||
7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random | > | 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Ramazan Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random |
︙ | ︙ | |||
8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ | > | 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayane Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ |
︙ | ︙ | |||
8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 | Regina Reginald Régine Régis Régulus Reich Reichstag Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt | > | 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 | Regina Reginald Régine Régis Régulus Reich Reichstag Reichswehr Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt |
︙ | ︙ | |||
8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA | > | 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryad Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA |
︙ | ︙ | |||
8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye | > | 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gobain Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye |
︙ | ︙ | |||
8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie | > | 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Séphora Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie |
︙ | ︙ | |||
10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- | > | 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wurtzbourg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- |
︙ | ︙ | |||
12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* | > | 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albertain/F* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* |
︙ | ︙ | |||
13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* | > | 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyte/S* analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* |
︙ | ︙ | |||
20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, | > | 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brumiser/a0p+ brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, |
︙ | ︙ | |||
28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 | cyclo/S. cycloalcane/S. cycloalcène/S. cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. | > | 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 | cyclo/S. cycloalcane/S. cycloalcène/S. cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanol/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. |
︙ | ︙ | |||
28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. | > | 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débugueur/S. débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. |
︙ | ︙ | |||
28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. | > | 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarbonation/S. décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. |
︙ | ︙ | |||
30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc | > | 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désanonymiser/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc |
︙ | ︙ | |||
32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA | > | 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinctivité/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA |
︙ | ︙ | |||
33496 33497 33498 33499 33500 33501 33502 33503 33504 33505 33506 33507 33508 33509 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* | > | 33532 33533 33534 33535 33536 33537 33538 33539 33540 33541 33542 33543 33544 33545 33546 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclosoir/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* |
︙ | ︙ | |||
34480 34481 34482 34483 34484 34485 34486 34487 34488 34489 34490 34491 34492 34493 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* | > | 34517 34518 34519 34520 34521 34522 34523 34524 34525 34526 34527 34528 34529 34530 34531 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincé/S* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* |
︙ | ︙ | |||
35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 35497 35498 35499 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entéro-rénal/W* entérostomie/S* entérotoxine/S* | > | 35524 35525 35526 35527 35528 35529 35530 35531 35532 35533 35534 35535 35536 35537 35538 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérocyte/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entéro-rénal/W* entérostomie/S* entérotoxine/S* |
︙ | ︙ | |||
39888 39889 39890 39891 39892 39893 39894 39895 39896 39897 39898 39899 39900 39901 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. | > | 39927 39928 39929 39930 39931 39932 39933 39934 39935 39936 39937 39938 39939 39940 39941 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franconien/F+ franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. |
︙ | ︙ | |||
41276 41277 41278 41279 41280 41281 41282 41283 41284 41285 41286 41287 41288 41289 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. | > | 41316 41317 41318 41319 41320 41321 41322 41323 41324 41325 41326 41327 41328 41329 41330 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopositionnement/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. |
︙ | ︙ | |||
42597 42598 42599 42600 42601 42602 42603 42604 42605 42606 42607 42608 42609 42610 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. | > | 42638 42639 42640 42641 42642 42643 42644 42645 42646 42647 42648 42649 42650 42651 42652 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. grippette/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. |
︙ | ︙ | |||
45629 45630 45631 45632 45633 45634 45635 45636 45637 45638 45639 45640 45641 45642 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* | > | 45671 45672 45673 45674 45675 45676 45677 45678 45679 45680 45681 45682 45683 45684 45685 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunomodulateur/Fi immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* |
︙ | ︙ | |||
47815 47816 47817 47818 47819 47820 47821 47822 47823 47824 47825 47826 47827 47828 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intradermique/S* intradermoréaction/S* intradermo-réaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intra-embryonnaire/S* | > | 47858 47859 47860 47861 47862 47863 47864 47865 47866 47867 47868 47869 47870 47871 47872 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intracytoplasmique/S* intradermique/S* intradermoréaction/S* intradermo-réaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intra-embryonnaire/S* |
︙ | ︙ | |||
50606 50607 50608 50609 50610 50611 50612 50613 50614 50615 50616 50617 50618 50619 | linotte/S. linotype/S. linotypie/S. linotypiste/S. linsang/S. linteau/X. linter/S. lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. | > | 50650 50651 50652 50653 50654 50655 50656 50657 50658 50659 50660 50661 50662 50663 50664 | linotte/S. linotype/S. linotypie/S. linotypiste/S. linsang/S. linteau/X. linter/S. linuxien/F+ lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. |
︙ | ︙ | |||
54044 54045 54046 54047 54048 54049 54050 54051 54052 54053 54054 54055 54056 54057 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. | > | 54089 54090 54091 54092 54093 54094 54095 54096 54097 54098 54099 54100 54101 54102 54103 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. micropipette/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. |
︙ | ︙ | |||
54094 54095 54096 54097 54098 54099 54100 54101 54102 54103 54104 54105 54106 54107 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre | > | 54140 54141 54142 54143 54144 54145 54146 54147 54148 54149 54150 54151 54152 54153 54154 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvascularisation/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre |
︙ | ︙ | |||
54152 54153 54154 54155 54156 54157 54158 54159 54160 54161 54162 54163 54164 54165 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. | > | 54199 54200 54201 54202 54203 54204 54205 54206 54207 54208 54209 54210 54211 54212 54213 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoté/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. |
︙ | ︙ | |||
59475 59476 59477 59478 59479 59480 59481 59482 59483 59484 59485 59486 59487 59488 | pallasite/S. palle/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallikare/S. pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. | > | 59523 59524 59525 59526 59527 59528 59529 59530 59531 59532 59533 59534 59535 59536 59537 | pallasite/S. palle/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallière/S. pallikare/S. pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. |
︙ | ︙ | |||
65967 65968 65969 65970 65971 65972 65973 65974 65975 65976 65977 65978 65979 65980 | pruneau/X. prunelaie/S. prunelée/S. prunelle/S. prunellidé/S. prunellier/S. pruner prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, | > | 66016 66017 66018 66019 66020 66021 66022 66023 66024 66025 66026 66027 66028 66029 66030 | pruneau/X. prunelaie/S. prunelée/S. prunelle/S. prunellidé/S. prunellier/S. pruner pruniculture/S. prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, |
︙ | ︙ | |||
67852 67853 67854 67855 67856 67857 67858 67859 67860 67861 67862 67863 67864 67865 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. | > | 67902 67903 67904 67905 67906 67907 67908 67909 67910 67911 67912 67913 67914 67915 67916 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré re réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. |
︙ | ︙ | |||
68245 68246 68247 68248 68249 68250 68251 68252 68253 68254 68255 68256 68257 68258 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. | > > | 68296 68297 68298 68299 68300 68301 68302 68303 68304 68305 68306 68307 68308 68309 68310 68311 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfinement/S. reconfiner/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. |
︙ | ︙ | |||
69521 69522 69523 69524 69525 69526 69527 69528 69529 69530 69531 69532 69533 69534 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. | > | 69574 69575 69576 69577 69578 69579 69580 69581 69582 69583 69584 69585 69586 69587 69588 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replay/S. replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. |
︙ | ︙ | |||
69710 69711 69712 69713 69714 69715 69716 69717 69718 69719 69720 69721 69722 69723 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. | > | 69764 69765 69766 69767 69768 69769 69770 69771 69772 69773 69774 69775 69776 69777 69778 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservable/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. |
︙ | ︙ | |||
70014 70015 70016 70017 70018 70019 70020 70021 70022 70023 70024 70025 70026 70027 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. | > | 70069 70070 70071 70072 70073 70074 70075 70076 70077 70078 70079 70080 70081 70082 70083 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransférer/c0p+ retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. |
︙ | ︙ | |||
70904 70905 70906 70907 70908 70909 70910 70911 70912 70913 70914 70915 70916 70917 | rösti/S. rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. | > | 70960 70961 70962 70963 70964 70965 70966 70967 70968 70969 70970 70971 70972 70973 70974 | rösti/S. rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotamètre/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. |
︙ | ︙ | |||
77393 77394 77395 77396 77397 77398 77399 77400 77401 77402 77403 77404 77405 77406 | techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. techno-bureaucratique/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. | > | 77450 77451 77452 77453 77454 77455 77456 77457 77458 77459 77460 77461 77462 77463 77464 | techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. techno-bureaucratique/S. technocapitalisme/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. |
︙ | ︙ | |||
77486 77487 77488 77489 77490 77491 77492 77493 77494 77495 77496 77497 77498 77499 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. | > | 77544 77545 77546 77547 77548 77549 77550 77551 77552 77553 77554 77555 77556 77557 77558 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconcert/S. téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. |
︙ | ︙ | |||
77946 77947 77948 77949 77950 77951 77952 77953 77954 77955 77956 77957 77958 77959 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. | > | 78005 78006 78007 78008 78009 78010 78011 78012 78013 78014 78015 78016 78017 78018 78019 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessinois/F. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. |
︙ | ︙ | |||
78224 78225 78226 78227 78228 78229 78230 78231 78232 78233 78234 78235 78236 78237 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. | > | 78284 78285 78286 78287 78288 78289 78290 78291 78292 78293 78294 78295 78296 78297 78298 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermobalance/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. |
︙ | ︙ | |||
78257 78258 78259 78260 78261 78262 78263 78264 78265 78266 78267 78268 78269 78270 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermo-ionique/S. thermoïonique/S. | > | 78318 78319 78320 78321 78322 78323 78324 78325 78326 78327 78328 78329 78330 78331 78332 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimètre/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermo-ionique/S. thermoïonique/S. |
︙ | ︙ | |||
81406 81407 81408 81409 81410 81411 81412 81413 81414 81415 81416 81417 81418 81419 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. | > | 81468 81469 81470 81471 81472 81473 81474 81475 81476 81477 81478 81479 81480 81481 81482 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseusement vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. |
︙ | ︙ | |||
82908 82909 82910 82911 82912 82913 82914 82915 82916 82917 82918 82919 82920 82921 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windsurf/S. winstub/S. wintergreen/S. wishbone/S. wisigoth/F. wisigothique/S. witloof/S. | > | 82971 82972 82973 82974 82975 82976 82977 82978 82979 82980 82981 82982 82983 82984 82985 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windowsien/F+ windsurf/S. winstub/S. wintergreen/S. wishbone/S. wisigoth/F. wisigothique/S. witloof/S. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-reforme1990.aff from [08aa5cac68] to [6e3af50c91].
1 2 3 4 5 6 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “RÉFORME 1990” v7.1 # par Olivier R. -- licence MPL 2.0 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “RÉFORME 1990” v7.1 # par Olivier R. -- licence MPL 2.0 # Généré le 29-04-2020 à 22:03 # Pour améliorer le dictionnaire, allez sur https://grammalecte.net/ SET UTF-8 WORDCHARS -’'1234567890. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-reforme1990.dic from [5237389b2d] to [52194ae2c7].
|
| | | 1 2 3 4 5 6 7 8 | 82177 - 1er/-- 1ers/-- 1re/-- 1res/-- 1ʳᵉ/-- 1ʳᵉˢ/-- |
︙ | ︙ | |||
129 130 131 132 133 134 135 136 137 138 139 140 141 142 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' | > | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accor/D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' |
︙ | ︙ | |||
160 161 162 163 164 165 166 167 168 169 170 171 172 173 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' | > | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adil/L'D'Q' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' |
︙ | ︙ | |||
715 716 717 718 719 720 721 722 723 724 725 726 727 728 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' | > | 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmaa/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' |
︙ | ︙ | |||
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castres Castro Casuso Catalina Catane Catherine Cathy | > | 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castorama Castres Castro Casuso Catalina Catane Catherine Cathy |
︙ | ︙ | |||
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ | > | 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ |
︙ | ︙ | |||
3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen | > | 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donia Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen |
︙ | ︙ | |||
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallope Fallouja Fameck Famenne Fanny Fantine Faolan | > | 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallon Fallope Fallouja Fameck Famenne Fanny Fantine Faolan |
︙ | ︙ | |||
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud | > > > | 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francie Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconie Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frederik Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud |
︙ | ︙ | |||
4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' Hanoï/L'D'Q' | > | 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Hana/L'D'Q' Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' Hanoï/L'D'Q' |
︙ | ︙ | |||
4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ | > | 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Imane/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ |
︙ | ︙ | |||
5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique James Jamésie Jamie Jamil Jamila Jan Jana | > | 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique Jamel James Jamésie Jamie Jamil Jamila Jan Jana |
︙ | ︙ | |||
5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme | > | 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jens Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme |
︙ | ︙ | |||
5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larissa Larousse Larry Lars Larsen Larzac Las | > | 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larisa Larissa Larousse Larry Lars Larsen Larzac Las |
︙ | ︙ | |||
5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lilas Lili Lilian Liliana Liliane Lilith Lille | > | 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lila Lilas Lili Lilian Liliana Liliane Lilith Lille |
︙ | ︙ | |||
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac | > | 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammad Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac |
︙ | ︙ | |||
6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- | > | 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Moyenne-Franconie Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- |
︙ | ︙ | |||
6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabuchodonosor Nacer Nacim Nacira Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki | > > | 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabila Nabuchodonosor Nacer Nacim Nacira Nada Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki |
︙ | ︙ | |||
7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca | > | 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Natixis Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca |
︙ | ︙ | |||
7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random | > | 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Ramazan Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random |
︙ | ︙ | |||
8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ | > | 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayane Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ |
︙ | ︙ | |||
8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 | Regina Reginald Régine Régis Régulus Reich Reichstag Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt | > | 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 | Regina Reginald Régine Régis Régulus Reich Reichstag Reichswehr Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt |
︙ | ︙ | |||
8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA | > | 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryad Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA |
︙ | ︙ | |||
8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye | > | 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gobain Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye |
︙ | ︙ | |||
8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie | > | 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Séphora Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie |
︙ | ︙ | |||
10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- | > | 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wurtzbourg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- |
︙ | ︙ | |||
12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* | > | 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albertain/F* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* |
︙ | ︙ | |||
13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* | > | 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyte/S* analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* |
︙ | ︙ | |||
19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, | > | 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brumiser/a0p+ brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, |
︙ | ︙ | |||
27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 | cycloalcane/S. cycloalcène/S. cyclocross cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. | > | 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 | cycloalcane/S. cycloalcène/S. cyclocross cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanol/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. |
︙ | ︙ | |||
28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. | > | 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débugueur/S. débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. |
︙ | ︙ | |||
28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. | > | 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarbonation/S. décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. |
︙ | ︙ | |||
30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc | > | 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désanonymiser/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc |
︙ | ︙ | |||
31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA | > | 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinctivité/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA |
︙ | ︙ | |||
33156 33157 33158 33159 33160 33161 33162 33163 33164 33165 33166 33167 33168 33169 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* | > | 33192 33193 33194 33195 33196 33197 33198 33199 33200 33201 33202 33203 33204 33205 33206 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclosoir/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* |
︙ | ︙ | |||
34125 34126 34127 34128 34129 34130 34131 34132 34133 34134 34135 34136 34137 34138 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* | > | 34162 34163 34164 34165 34166 34167 34168 34169 34170 34171 34172 34173 34174 34175 34176 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincé/S* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* |
︙ | ︙ | |||
35126 35127 35128 35129 35130 35131 35132 35133 35134 35135 35136 35137 35138 35139 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entérorénal/W* entérostomie/S* entérotoxine/S* | > | 35164 35165 35166 35167 35168 35169 35170 35171 35172 35173 35174 35175 35176 35177 35178 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérocyte/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entérorénal/W* entérostomie/S* entérotoxine/S* |
︙ | ︙ | |||
39477 39478 39479 39480 39481 39482 39483 39484 39485 39486 39487 39488 39489 39490 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. | > | 39516 39517 39518 39519 39520 39521 39522 39523 39524 39525 39526 39527 39528 39529 39530 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franconien/F+ franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. |
︙ | ︙ | |||
40832 40833 40834 40835 40836 40837 40838 40839 40840 40841 40842 40843 40844 40845 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. | > | 40872 40873 40874 40875 40876 40877 40878 40879 40880 40881 40882 40883 40884 40885 40886 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopositionnement/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. |
︙ | ︙ | |||
42137 42138 42139 42140 42141 42142 42143 42144 42145 42146 42147 42148 42149 42150 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. | > | 42178 42179 42180 42181 42182 42183 42184 42185 42186 42187 42188 42189 42190 42191 42192 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. grippette/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. |
︙ | ︙ | |||
45100 45101 45102 45103 45104 45105 45106 45107 45108 45109 45110 45111 45112 45113 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* | > | 45142 45143 45144 45145 45146 45147 45148 45149 45150 45151 45152 45153 45154 45155 45156 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunomodulateur/Fi immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* |
︙ | ︙ | |||
47275 47276 47277 47278 47279 47280 47281 47282 47283 47284 47285 47286 47287 47288 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intradermique/S* intradermoréaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intraembryonnaire/S* intraépidermique/S* | > | 47318 47319 47320 47321 47322 47323 47324 47325 47326 47327 47328 47329 47330 47331 47332 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intracytoplasmique/S* intradermique/S* intradermoréaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intraembryonnaire/S* intraépidermique/S* |
︙ | ︙ | |||
49974 49975 49976 49977 49978 49979 49980 49981 49982 49983 49984 49985 49986 49987 | linotte/S. linotype/S. linotypie/S. linotypiste/S. linsang/S. linteau/X. linter/S. lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. | > | 50018 50019 50020 50021 50022 50023 50024 50025 50026 50027 50028 50029 50030 50031 50032 | linotte/S. linotype/S. linotypie/S. linotypiste/S. linsang/S. linteau/X. linter/S. linuxien/F+ lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. |
︙ | ︙ | |||
53344 53345 53346 53347 53348 53349 53350 53351 53352 53353 53354 53355 53356 53357 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. | > | 53389 53390 53391 53392 53393 53394 53395 53396 53397 53398 53399 53400 53401 53402 53403 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. micropipette/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. |
︙ | ︙ | |||
53393 53394 53395 53396 53397 53398 53399 53400 53401 53402 53403 53404 53405 53406 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre | > | 53439 53440 53441 53442 53443 53444 53445 53446 53447 53448 53449 53450 53451 53452 53453 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvascularisation/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre |
︙ | ︙ | |||
53451 53452 53453 53454 53455 53456 53457 53458 53459 53460 53461 53462 53463 53464 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. | > | 53498 53499 53500 53501 53502 53503 53504 53505 53506 53507 53508 53509 53510 53511 53512 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoté/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. |
︙ | ︙ | |||
58624 58625 58626 58627 58628 58629 58630 58631 58632 58633 58634 58635 58636 58637 | palladium/S. pallasite/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. palmatilobé/F. | > | 58672 58673 58674 58675 58676 58677 58678 58679 58680 58681 58682 58683 58684 58685 58686 | palladium/S. pallasite/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallière/S. pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. palmatilobé/F. |
︙ | ︙ | |||
64942 64943 64944 64945 64946 64947 64948 64949 64950 64951 64952 64953 64954 64955 | pruneau/X. prunelaie/S. prunelée/S. prunelier/S. prunelle/S. prunellidé/S. pruner prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, | > | 64991 64992 64993 64994 64995 64996 64997 64998 64999 65000 65001 65002 65003 65004 65005 | pruneau/X. prunelaie/S. prunelée/S. prunelier/S. prunelle/S. prunellidé/S. pruner pruniculture/S. prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, |
︙ | ︙ | |||
66787 66788 66789 66790 66791 66792 66793 66794 66795 66796 66797 66798 66799 66800 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. | > | 66837 66838 66839 66840 66841 66842 66843 66844 66845 66846 66847 66848 66849 66850 66851 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré re réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. |
︙ | ︙ | |||
67174 67175 67176 67177 67178 67179 67180 67181 67182 67183 67184 67185 67186 67187 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. | > > | 67225 67226 67227 67228 67229 67230 67231 67232 67233 67234 67235 67236 67237 67238 67239 67240 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfinement/S. reconfiner/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. |
︙ | ︙ | |||
68440 68441 68442 68443 68444 68445 68446 68447 68448 68449 68450 68451 68452 68453 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. | > | 68493 68494 68495 68496 68497 68498 68499 68500 68501 68502 68503 68504 68505 68506 68507 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replay/S. replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. |
︙ | ︙ | |||
68627 68628 68629 68630 68631 68632 68633 68634 68635 68636 68637 68638 68639 68640 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. | > | 68681 68682 68683 68684 68685 68686 68687 68688 68689 68690 68691 68692 68693 68694 68695 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservable/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. |
︙ | ︙ | |||
68934 68935 68936 68937 68938 68939 68940 68941 68942 68943 68944 68945 68946 68947 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. | > | 68989 68990 68991 68992 68993 68994 68995 68996 68997 68998 68999 69000 69001 69002 69003 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransférer/c0p+ retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. |
︙ | ︙ | |||
69794 69795 69796 69797 69798 69799 69800 69801 69802 69803 69804 69805 69806 69807 | rossolis rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. | > | 69850 69851 69852 69853 69854 69855 69856 69857 69858 69859 69860 69861 69862 69863 69864 | rossolis rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotamètre/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. |
︙ | ︙ | |||
76154 76155 76156 76157 76158 76159 76160 76161 76162 76163 76164 76165 76166 76167 | technique/S. techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. | > | 76211 76212 76213 76214 76215 76216 76217 76218 76219 76220 76221 76222 76223 76224 76225 | technique/S. techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. technocapitalisme/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. |
︙ | ︙ | |||
76240 76241 76242 76243 76244 76245 76246 76247 76248 76249 76250 76251 76252 76253 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. | > | 76298 76299 76300 76301 76302 76303 76304 76305 76306 76307 76308 76309 76310 76311 76312 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconcert/S. téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. |
︙ | ︙ | |||
76695 76696 76697 76698 76699 76700 76701 76702 76703 76704 76705 76706 76707 76708 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. | > | 76754 76755 76756 76757 76758 76759 76760 76761 76762 76763 76764 76765 76766 76767 76768 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessinois/F. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. |
︙ | ︙ | |||
76969 76970 76971 76972 76973 76974 76975 76976 76977 76978 76979 76980 76981 76982 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. | > | 77029 77030 77031 77032 77033 77034 77035 77036 77037 77038 77039 77040 77041 77042 77043 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermobalance/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. |
︙ | ︙ | |||
77000 77001 77002 77003 77004 77005 77006 77007 77008 77009 77010 77011 77012 77013 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermoïonique/S. thermolabile/S. | > | 77061 77062 77063 77064 77065 77066 77067 77068 77069 77070 77071 77072 77073 77074 77075 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimètre/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermoïonique/S. thermolabile/S. |
︙ | ︙ | |||
80070 80071 80072 80073 80074 80075 80076 80077 80078 80079 80080 80081 80082 80083 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. | > | 80132 80133 80134 80135 80136 80137 80138 80139 80140 80141 80142 80143 80144 80145 80146 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseusement vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. |
︙ | ︙ | |||
81558 81559 81560 81561 81562 81563 81564 81565 81566 81567 81568 81569 81570 81571 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windsurf/S. winstub/S. wintergreen/S. wishbone/S. witloof/S. wok/S. wolfram/S. | > | 81621 81622 81623 81624 81625 81626 81627 81628 81629 81630 81631 81632 81633 81634 81635 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windowsien/F+ windsurf/S. winstub/S. wintergreen/S. wishbone/S. witloof/S. wok/S. wolfram/S. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-toutesvariantes.aff from [e77357ec66] to [3dfd1ca622].
1 2 3 4 5 6 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “TOUTES VARIANTES” v7.1 # par Olivier R. -- licence MPL 2.0 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # AFFIXES DU DICTIONNAIRE ORTHOGRAPHIQUE FRANÇAIS “TOUTES VARIANTES” v7.1 # par Olivier R. -- licence MPL 2.0 # Généré le 29-04-2020 à 22:03 # Pour améliorer le dictionnaire, allez sur https://grammalecte.net/ SET UTF-8 WORDCHARS -’'1234567890. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Dictionnaires/dictionaries/fr-toutesvariantes.dic from [5a4c6488fa] to [ca1a4ce9a4].
|
| | | 1 2 3 4 5 6 7 8 | 85862 - 1er/-- 1ers/-- 1re/-- 1res/-- 1ʳᵉ/-- 1ʳᵉˢ/-- |
︙ | ︙ | |||
129 130 131 132 133 134 135 136 137 138 139 140 141 142 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' | > | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | Abuja/L'D'Q' AbulÉdu/L'D'Q' AbulÉdu-fr/L'D'Q' Abymes Abyssinie/L'D' Acadie/L'D' Acapulco/L'D'Q' Accor/D'Q' Accra/L'D'Q' Acer/L'D'Q' Achaïe/L'D' Achères/L'D'Q' Achernar/L'D'Q' Achéron/L'D'Q' Achgabat/L'D'Q' |
︙ | ︙ | |||
160 161 162 163 164 165 166 167 168 169 170 171 172 173 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' | > | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | Adèle/L'D'Q' Adélie/L'D'Q' Adelina/L'D'Q' Adeline/L'D'Q' Adenauer/L'D'Q' Adidas/L'D'Q' Adige/L'D' Adil/L'D'Q' Adina/L'D'Q' Adolf/L'D'Q' Adolfo/L'D'Q' Adolphe/L'D'Q' Adonaï/L'D'Q' Adonis/L'D'Q' Adour/L'D' |
︙ | ︙ | |||
715 716 717 718 719 720 721 722 723 724 725 726 727 728 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' | > | 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | Ascq/L'D'Q' Asgard/L'D'Q' Ashleigh/L'D'Q' Ashley/L'D'Q' Asie/L'D' Asimov/L'D'Q' Asma/L'D'Q' Asmaa/L'D'Q' Asmara/L'D'Q' Asnières/L'D'Q' Asnières-sur-Seine/L'D'Q' Asperger/D'Q' Assa/L'D'Q' Asse/L'D'Q' Assenede/L'D'Q' |
︙ | ︙ | |||
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castres Castro Casuso Catalina Catane Catherine Cathy | > | 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 | Castanet-Tolosan Castelnaudary Castelnau-le-Lez Castelsarrasin Casterman Castille Castille-et-León Castorama Castres Castro Casuso Catalina Catane Catherine Cathy |
︙ | ︙ | |||
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ | > | 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | Court-Saint-Étienne Courteline Courtney Courtrai Cousteau Couton Couvin Covid Covid-19 Coxyde Co₂B Co₂SO₄ Co₂SiO₄ Co₂SnO₄ Co₂S₃ |
︙ | ︙ | |||
3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen | > | 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 | Don Donald Donatella Donatien Donbass Donetsk Dongguan Donia Donna Donnie Donovan Doppler Dordogne Dordoigne Doreen |
︙ | ︙ | |||
3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallope Fallouja Fameck Famenne Fanny Fantine Faolan | > | 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 | FairPhone Fairbanks Faisalabad Faith Faïza Falkland Fallières Fallon Fallope Fallouja Fameck Famenne Fanny Fantine Faolan |
︙ | ︙ | |||
3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud | > > > | 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 | Francesca Francesco Francette Francfort Francfort-sur-le-Main Franche-Comté Francheville Francie Francillon-sur-Roubion Francine Francis Francisco Franck Franco François François-Xavier Françoise Franconie Franconville Francorchamps Frank Frankenstein Frankie Franklin Franquin Frantz Franz Frasnes-lez-Anvaing Frauenfeld Fréchet Fred Freddy Frédéric Frederick Fredericton Frederik Frédérique Fredholm Free FreeBSD Freetown Fréjus Frénaud |
︙ | ︙ | |||
4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Händel Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' | > | 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 | HammerFall Hammourabi Hamont-Achel/L'D'Q' Hampshire Ham-sur-Heure-Nalinnes/L'D'Q' Hamza/L'D'Q' Han Hana/L'D'Q' Händel Hangzhou/L'D'Q' Hank Hankel Hannah/L'D'Q' Hannibal/L'D'Q' Hannut/L'D'Q' |
︙ | ︙ | |||
4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ | > | 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 | Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/L'D'Q' Illyrie/L'D' Illzach/L'D'Q' Ilya/L'D'Q' Ilyas/L'D'Q' Imane/L'D'Q' Impress/L'D'Q' InBrI₂ InBr₂I InBr₃ InCl₂ InCl₃ InI₂ |
︙ | ︙ | |||
5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique James Jamésie Jamie Jamil Jamila Jan Jana | > | 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 | Jake Jalalabad Jalila Jamahiriya Jamaïque Jamal Jamblique Jamel James Jamésie Jamie Jamil Jamila Jan Jana |
︙ | ︙ | |||
5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme | > | 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 | Jemappes Jemeppe-sur-Sambre Jemima Jenkins Jenna Jennifer Jenny Jens Jensen Jeremiah Jérémie Jeremy Jérémy Jéricho Jérôme |
︙ | ︙ | |||
5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larissa Larousse Larry Lars Larsen Larzac Las | > | 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 | Lanvaux Lanzhou Laon Laos Laplace Laponie Lara Larisa Larissa Larousse Larry Lars Larsen Larzac Las |
︙ | ︙ | |||
5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lilas Lili Lilian Liliana Liliane Lilith Lille | > | 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 | Liénard Lierre Liévin Ligier Ligniroux Ligurie Likasi Lila Lilas Lili Lilian Liliana Liliane Lilith Lille |
︙ | ︙ | |||
6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac | > | 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 | Möbius Moby Modigliani Moebius Moët Mogadiscio Mohamed Mohammad Mohammed Mohenjo-daro Mohs Moira Moire/S. Moïse Moissac |
︙ | ︙ | |||
6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- | > | 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 | Mourre Mouscron Moussa Moussorgski Moustapha Mouvaux Moyen-Orient Moyenne-Franconie Mozambique Mozart Mozilla Mpc/||-- Mr Mrs Mt/||-- |
︙ | ︙ | |||
6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabuchodonosor Nacer Nacim Nacira Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki | > > | 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 | NaNO₂ NaNO₃ NaNbO₃ NaSeO₃ NaTaO₃ NaVO₃ Nabil Nabila Nabuchodonosor Nacer Nacim Nacira Nada Nadège Nadia Nadim Nadine Nadir Nadja Nagasaki |
︙ | ︙ | |||
7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca | > | 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 | Natasha Nate Nathalie Nathan Nathanaël Nathanaëlle Nathaniel Natixis Nauru Naussac Navarre Navier-Stokes Naypyidaw Nazareth Nazca |
︙ | ︙ | |||
7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random | > | 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 | Raismes Raïssa Rajasthan Ralph Ramallah Raman Râmâyana Ramazan Rambouillet Ramon Ramonville-Saint-Agne Ramsès Ramuz Randall Random |
︙ | ︙ | |||
8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ | > | 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 | Rauch Raul Ravachol Ravel Ravels Ray Rayan Rayane Rayleigh Raymond Raymonde RbBrO₂ RbBrO₃ RbBrO₄ RbClO₂ |
︙ | ︙ | |||
8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 | Regina Reginald Régine Régis Régulus Reich Reichstag Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt | > | 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 | Regina Reginald Régine Régis Régulus Reich Reichstag Reichswehr Reidemeister Reiko Reims Reiten Relecq-Kerhuon Rellich Rembrandt |
︙ | ︙ | |||
8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA | > | 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 | Russell Russie/S. Rust Ruth Rutherford Rutishauser Rwanda Ryad Ryan Ryanair Ryxeo R'lyeh R'n'B S/U.||-- SA |
︙ | ︙ | |||
8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye | > | 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 | Saint-Gaudens Saint-Genis-Laval Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Gilles Saint-Gilles-Waes Saint-Gobain Saint-Gratien Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-de-Braye |
︙ | ︙ | |||
8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie | > | 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 | Seneffe Sénégal Sénégambie Sénèque Senlis Sens Séoul Séphora Sept-Îles Septèmes-les-Vallons Seraing Séraphin Séraphine Sérapis Serbie |
︙ | ︙ | |||
10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- | > | 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 | Woody Woolf Writer Wroclaw Wuhan Wuppertal Wurtemberg Wurtzbourg Wuustwezel Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- |
︙ | ︙ | |||
12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* | > | 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 | albanais/F* albanophone/S* albâtre/S* albatros/L'D'Q' albédo/S* alberge/S* albergier/S* albertain/F* albigeois/F* albinisme/S* albinos/L'D'Q' albite/S* albuginé/F* albugo/S* album/S* |
︙ | ︙ | |||
13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* | > | 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 | analyser/a4p+ analyseur/S* analyste/S* analyste-programmeur/L'D'Q' analyste-programmeuse/L'D'Q' analystes-programmeurs/D'Q' analystes-programmeuses/D'Q' analyte/S* analyticité/S* analytique/S* analytique/S* analytiquement/D'Q' anamnèse/S* anamnestique/S* anamorphe/S* |
︙ | ︙ | |||
20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, | > | 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 | brumasser/a8p. brume/S. brumer/a8p. brumeusement brumeux/W. brumisateur/S. brumisation/S. brumiser/a0p+ brun/F. brunante/S. brunâtre/S. brunch/A. bruncher/a0p. brunéien/F, brunet/F, |
︙ | ︙ | |||
28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 | cycloalcane/S. cycloalcène/S. cyclocross cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. | > | 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 | cycloalcane/S. cycloalcène/S. cyclocross cyclo-cross/A. cyclodextrine/S. cyclogenèse/S. cyclohexane/S. cyclohexanol/S. cyclohexanone/S. cycloïdal/W. cycloïde/S. cyclomatique/S. cyclomoteur/S. cyclomotoriste/S. cyclonage/S. |
︙ | ︙ | |||
29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. | > | 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 | débroussailler/a0p+ débroussailleur/Fs débrousser/a0p+ débrumage/S. débucher/a0p+ débudgétisation/S. débudgétiser/a0p+ débugueur/S. débuller/a0p+ débureaucratisation/S. débureaucratiser/a0p+ débusquement/S. débusquer/a0p+ début/S. débutant/F. |
︙ | ︙ | |||
29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. | > | 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 | décapsulage/S. décapsulation/S. décapsuler/a0p+ décapsuleur/S. décapuchonner/a0p+ décarbonatation/S. décarbonater/a0p+ décarbonation/S. décarboner/a0p+ décarboxylase/S. décarboxylation/S. décarburation/S. décarburer/a0p+ décarcasser/a0p+ décarottage/S. |
︙ | ︙ | |||
31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc | > | 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 | désamination/S. désaminer/a0p+ désamorçage/S. désamorcer/a0p+ désamortissement/S. désamour/S. désannexer/a0p+ désanonymiser/a0p+ désaper/a0p+ désapparier/a0p+ désappointement/S. désappointer/a0p+ désapprendre/tF désapprentissage/S. désapprobateur/Fc |
︙ | ︙ | |||
33094 33095 33096 33097 33098 33099 33100 33101 33102 33103 33104 33105 33106 33107 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA | > | 33129 33130 33131 33132 33133 33134 33135 33136 33137 33138 33139 33140 33141 33142 33143 | distillatoire/S. distiller/a0p+ distillerie/S. distinct/F. distinctement distinctif/F. distinction/S. distinctivité/S. distinguable/S. distinguer/a0p+ distinguo/S. distique/S. distomatose/S. distome/S. distordre/tA |
︙ | ︙ | |||
34321 34322 34323 34324 34325 34326 34327 34328 34329 34330 34331 34332 34333 34334 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* | > | 34357 34358 34359 34360 34361 34362 34363 34364 34365 34366 34367 34368 34369 34370 34371 | éclisser/a2p+ éclogite/S* éclopé/F* écloper/a2p+ éclore/rC écloserie/S* éclosion/S* éclosoir/S* éclusage/S* écluse/S* éclusée/S* écluser/a2p+ éclusier/F* écobilan/S* écoblanchiment/S* |
︙ | ︙ | |||
35328 35329 35330 35331 35332 35333 35334 35335 35336 35337 35338 35339 35340 35341 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* | > | 35365 35366 35367 35368 35369 35370 35371 35372 35373 35374 35375 35376 35377 35378 35379 | émiettement/S* émietter/a4p+ émigrant/F* émigration/S* émigré/F* émigrer/a1p. éminati/F* émincé/S* émincer/a2p+ éminemment/D'Q' éminence/S* éminent/F* éminentissime/S* émir/S* émirat/S* |
︙ | ︙ | |||
36354 36355 36356 36357 36358 36359 36360 36361 36362 36363 36364 36365 36366 36367 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entérorénal/W* entéro-rénal/W* entérostomie/S* | > | 36392 36393 36394 36395 36396 36397 36398 36399 36400 36401 36402 36403 36404 36405 36406 | entérinement/S* entériner/a2p+ entérique/S* entérite/S* entérobactérie/S* entérocolite/S* entérocoque/S* entérocyte/S* entérokinase/S* entérologie/S* entéropathie/S* entéropneuste/S* entérorénal/W* entéro-rénal/W* entérostomie/S* |
︙ | ︙ | |||
40898 40899 40900 40901 40902 40903 40904 40905 40906 40907 40908 40909 40910 40911 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. | > | 40937 40938 40939 40940 40941 40942 40943 40944 40945 40946 40947 40948 40949 40950 40951 | francolin/S. franco-luxembourgeois/F. franco-macédonien/F, franco-marocain/F. franco-mexicain/F. franco-monégasque/S. franco-néerlandais/F. franconien/F+ franco-norvégien/F, franco-pakistanais/F. franco-panaméen/F, franco-paraguayen/F, franco-péruvien/F, francophile/S. francophilie/S. |
︙ | ︙ | |||
42357 42358 42359 42360 42361 42362 42363 42364 42365 42366 42367 42368 42369 42370 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. | > | 42397 42398 42399 42400 42401 42402 42403 42404 42405 42406 42407 42408 42409 42410 42411 | géophysique/S. géophyte/S. géopoliticien/F, géopolitique/S. géopolitique/S. géopolitiquement géopolitologue/S. géopositionnement/S. géopotentiel/F, géoréférencement/S. géorgien/F, géorgique/S. géoscience/S. géospatial/W. géosphère/S. |
︙ | ︙ | |||
43714 43715 43716 43717 43718 43719 43720 43721 43722 43723 43724 43725 43726 43727 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. | > | 43755 43756 43757 43758 43759 43760 43761 43762 43763 43764 43765 43766 43767 43768 43769 | grip/S. grippage/S. grippal/W. grippe/S. grippement/S. gripper/a0p+ grippe-sou/S. grippette/S. gris/F. grisaille/S. grisailler/a0p+ grisant/F. grisard/S. grisâtre/S. grisbi/S. |
︙ | ︙ | |||
46849 46850 46851 46852 46853 46854 46855 46856 46857 46858 46859 46860 46861 46862 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* | > | 46891 46892 46893 46894 46895 46896 46897 46898 46899 46900 46901 46902 46903 46904 46905 | immunoglobuline/S* immunohistochimie/S* immunologie/S* immunologique/S* immunologiquement/L'D'Q' immunologiste/S* immunologue/S* immunomodulateur/Fi immunopathologie/S* immunopathologique/S* immunostimulant/F* immunostimulant/S* immunosuppresseur/S* immunosuppressif/F* immunosuppression/S* |
︙ | ︙ | |||
49059 49060 49061 49062 49063 49064 49065 49066 49067 49068 49069 49070 49071 49072 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intradermique/S* intradermoréaction/S* intradermo-réaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intraembryonnaire/S* | > | 49102 49103 49104 49105 49106 49107 49108 49109 49110 49111 49112 49113 49114 49115 49116 | intracardiaque/S* intracellulaire/S* intracérébral/W* intrachromosomique/S* intracommunautaire/S* intracontinental/W* intracrânien/F+ intracytoplasmique/S* intradermique/S* intradermoréaction/S* intradermo-réaction/S* intradiégétique/S* intrados/L'D'Q' intraduisible/S* intraembryonnaire/S* |
︙ | ︙ | |||
51940 51941 51942 51943 51944 51945 51946 51947 51948 51949 51950 51951 51952 51953 | linotype/S. linotypie/S. linotypiste/S. linsang/S. linsoir/S. linteau/X. linter/S. lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. | > | 51984 51985 51986 51987 51988 51989 51990 51991 51992 51993 51994 51995 51996 51997 51998 | linotype/S. linotypie/S. linotypiste/S. linsang/S. linsoir/S. linteau/X. linter/S. linuxien/F+ lion/F, lionceau/X. lionné/F. liparis lipase/S. lipémie/S. lipide/S. |
︙ | ︙ | |||
55496 55497 55498 55499 55500 55501 55502 55503 55504 55505 55506 55507 55508 55509 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. | > | 55541 55542 55543 55544 55545 55546 55547 55548 55549 55550 55551 55552 55553 55554 55555 | microphage/S. microphagie/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. micropilule/S. micropipette/S. microplaquette/S. microplastique/S. micropli/S. microplissement/S. micropolluant/S. microporeux/W. microprocesseur/S. |
︙ | ︙ | |||
55546 55547 55548 55549 55550 55551 55552 55553 55554 55555 55556 55557 55558 55559 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre | > | 55592 55593 55594 55595 55596 55597 55598 55599 55600 55601 55602 55603 55604 55605 55606 | microtracteur/S. microtransaction/S. microtraumatisme/S. microtravail/X. microtravailleur/Fs micro-trottoir microtubule/S. microvascularisation/S. microvillosité/S. microzoaire/S. miction/S. mictionnel/F, mi-cuit/S. middleware/S. mi-décembre |
︙ | ︙ | |||
55604 55605 55606 55607 55608 55609 55610 55611 55612 55613 55614 55615 55616 55617 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. | > | 55651 55652 55653 55654 55655 55656 55657 55658 55659 55660 55661 55662 55663 55664 55665 | migrer/a0p+ mihrab/S. mi-jambe mi-janvier mijaurée/S. mijoler/a0p. mijotage/S. mijoté/S. mijoter/a0p+ mijoteuse/S. mi-juillet mi-juin mikado/S. mil mil/S. |
︙ | ︙ | |||
61040 61041 61042 61043 61044 61045 61046 61047 61048 61049 61050 61051 61052 61053 | pallasite/S. palle/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallikare/S. pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. | > | 61088 61089 61090 61091 61092 61093 61094 61095 61096 61097 61098 61099 61100 61101 61102 | pallasite/S. palle/S. palléal/W. palliatif/F. pallidectomie/S. pallidum/S. pallier/a0p+ pallière/S. pallikare/S. pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmatifide/S. |
︙ | ︙ | |||
67743 67744 67745 67746 67747 67748 67749 67750 67751 67752 67753 67754 67755 67756 | prunelaie/S. prunelée/S. prunelier/S. prunelle/S. prunellidé/S. prunellier/S. pruner prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, | > | 67792 67793 67794 67795 67796 67797 67798 67799 67800 67801 67802 67803 67804 67805 67806 | prunelaie/S. prunelée/S. prunelier/S. prunelle/S. prunellidé/S. prunellier/S. pruner pruniculture/S. prunier/S. prunus prurigineux/W. prurigo/S. prurit/S. prussiate/S. prussien/F, |
︙ | ︙ | |||
69684 69685 69686 69687 69688 69689 69690 69691 69692 69693 69694 69695 69696 69697 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. | > | 69734 69735 69736 69737 69738 69739 69740 69741 69742 69743 69744 69745 69746 69747 69748 | rayonnisme/S. rayure/S. raz raz-de-marée razzia/S. razzier/a0p+ ré re réa/S. réabonnement/S. réabonner/a0p+ réabsorber/a0p+ réabsorption/S. réac/S. réacclimatation/S. |
︙ | ︙ | |||
70086 70087 70088 70089 70090 70091 70092 70093 70094 70095 70096 70097 70098 70099 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. | > > | 70137 70138 70139 70140 70141 70142 70143 70144 70145 70146 70147 70148 70149 70150 70151 70152 | reconductible/S. reconduction/S. reconduire/yL reconduite/S. reconfigurable/S. reconfiguration/S. reconfigurer/a0p+ reconfinement/S. reconfiner/a0p+ reconfirmer/a0p+ réconfort/S. réconfortant/F. réconforter/a0p+ recongélation/S. recongeler/b0p+ reconnaissable/S. |
︙ | ︙ | |||
71391 71392 71393 71394 71395 71396 71397 71398 71399 71400 71401 71402 71403 71404 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. | > | 71444 71445 71446 71447 71448 71449 71450 71451 71452 71453 71454 71455 71456 71457 71458 | replanissage/S. replantage/S. replantation/S. replanter/a0p+ replat/S. replâtrage/S. replâtrer/a0p+ replay/S. replet/F. réplétif/F. réplétion/S. repleuvoir/pZ repli/S. repliable/S. repliage/S. |
︙ | ︙ | |||
71584 71585 71586 71587 71588 71589 71590 71591 71592 71593 71594 71595 71596 71597 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. | > | 71638 71639 71640 71641 71642 71643 71644 71645 71646 71647 71648 71649 71650 71651 71652 | résection/S. réséda réséda/S. resemer/b0p+ reséquencer/a0p+ réséquer/c0p+ réserpine/S. réservable/S. réservataire/S. réservation/S. réserve/S. réserver/a0p+ réserviste/S. réservoir/S. résidanat/S. |
︙ | ︙ | |||
71895 71896 71897 71898 71899 71900 71901 71902 71903 71904 71905 71906 71907 71908 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. | > | 71950 71951 71952 71953 71954 71955 71956 71957 71958 71959 71960 71961 71962 71963 71964 | retraité/F. retraitement/S. retraiter/a0p+ retranchement/S. retrancher/a0p+ retranscription/S. retranscrire/y1 retransférer/c0p+ retransformer/a0p+ retransmetteur/S. retransmettre/vA retransmission/S. retravailler/a0p+ retraverser/a0p+ retrayant/F. |
︙ | ︙ | |||
72809 72810 72811 72812 72813 72814 72815 72816 72817 72818 72819 72820 72821 72822 | rösti/S. rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. | > | 72865 72866 72867 72868 72869 72870 72871 72872 72873 72874 72875 72876 72877 72878 72879 | rösti/S. rostral/W. rostre/S. rot/S. rôt/S. rotacé/F. rotamère/S. rotamètre/S. rotang/S. rotarien/S. rotary/S. rotateur/Fc rotateur/S. rotatif/F. rotation/S. |
︙ | ︙ | |||
79533 79534 79535 79536 79537 79538 79539 79540 79541 79542 79543 79544 79545 79546 | techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. techno-bureaucratique/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. | > | 79590 79591 79592 79593 79594 79595 79596 79597 79598 79599 79600 79601 79602 79603 79604 | techniquement techniser/a0p+ techniverrier/F. techno/S. techno/S. technobureaucratique/S. techno-bureaucratique/S. technocapitalisme/S. technocrate/S. technocratie/S. technocratique/S. technocratiquement technocratisation/S. technocratiser/a0p+ technocratisme/S. |
︙ | ︙ | |||
79629 79630 79631 79632 79633 79634 79635 79636 79637 79638 79639 79640 79641 79642 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. | > | 79687 79688 79689 79690 79691 79692 79693 79694 79695 79696 79697 79698 79699 79700 79701 | téléchirurgie/S. télécinéma/S. télécommandable/S. télécommande/S. télécommander/a0p+ télécommunication/S. télécoms téléconcert/S. téléconduit/F. téléconduite/S. téléconférence/S. téléconseil/S. téléconseiller/F. téléconsultation/S. télécontrôle/S. |
︙ | ︙ | |||
80107 80108 80109 80110 80111 80112 80113 80114 80115 80116 80117 80118 80119 80120 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. | > | 80166 80167 80168 80169 80170 80171 80172 80173 80174 80175 80176 80177 80178 80179 80180 | teseter/d0p+ tesla/Um tesselation/S. tessellé/F. tesselle/S. tesseract/S. tessère/S. tessinois/F. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacé/F. testacelle/S. |
︙ | ︙ | |||
80388 80389 80390 80391 80392 80393 80394 80395 80396 80397 80398 80399 80400 80401 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. | > | 80448 80449 80450 80451 80452 80453 80454 80455 80456 80457 80458 80459 80460 80461 80462 | thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermoacidophile/S. thermoacidophile/S. thermoacoustique/S. thermobalance/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocline/S. thermocollage/S. thermocollant/F. |
︙ | ︙ | |||
80421 80422 80423 80424 80425 80426 80427 80428 80429 80430 80431 80432 80433 80434 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermo-ionique/S. thermoïonique/S. | > | 80482 80483 80484 80485 80486 80487 80488 80489 80490 80491 80492 80493 80494 80495 80496 | thermogenèse/S. thermogénie/S. thermogénique/S. thermogramme/S. thermographe/S. thermographie/S. thermographique/S. thermogravimètre/S. thermogravimétrie/S. thermogravimétrique/S. thermohalin/F. thermohydraulique/S. thermohydraulique/S. thermo-ionique/S. thermoïonique/S. |
︙ | ︙ | |||
83673 83674 83675 83676 83677 83678 83679 83680 83681 83682 83683 83684 83685 83686 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. | > | 83735 83736 83737 83738 83739 83740 83741 83742 83743 83744 83745 83746 83747 83748 83749 | vascularité/S. vasculeux/W. vase/S. vasectomie/S. vaseline/S. vaseliner/a0p+ vaser/a8p. vaseusement vaseux/W. vasière/S. vasistas vasoconstricteur/Fc vasoconstriction/S. vasodilatateur/Fc vasodilatation/S. |
︙ | ︙ | |||
85213 85214 85215 85216 85217 85218 85219 85220 85221 85222 85223 85224 85225 85226 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windsurf/S. winstub/S. wintergreen/S. wishbone/S. wisigoth/F. wisigothique/S. witloof/S. | > | 85276 85277 85278 85279 85280 85281 85282 85283 85284 85285 85286 85287 85288 85289 85290 | wiki/S. wilaya/S. willémite/S. williamine/S. williams winch/A. winchester/S. windowsien/F+ windsurf/S. winstub/S. wintergreen/S. wishbone/S. wisigoth/F. wisigothique/S. witloof/S. |
︙ | ︙ |
Modified gc_lang/fr/oxt/Lexicographer/Enumerator.py from [a41a391c7b] to [6f8637a9b7].
︙ | ︙ | |||
306 307 308 309 310 311 312 | i = 0 nTotOccur = 0 for sWord, nOccur in sorted(self.dWord.items(), key=lambda t: t[1], reverse=True): xGridDataModel.addRow(i, (sWord, nOccur)) self.xProgressBar.ProgressValue += 1 i += 1 nTotOccur += nOccur | > > > > > > | > | 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | i = 0 nTotOccur = 0 for sWord, nOccur in sorted(self.dWord.items(), key=lambda t: t[1], reverse=True): xGridDataModel.addRow(i, (sWord, nOccur)) self.xProgressBar.ProgressValue += 1 i += 1 nTotOccur += nOccur sWord = sWord.lower() if sWord.endswith(("-le-moi", "-le-toi", "-le-nous", "-le-vous", "le-lui", "-le-leur", \ "-la-moi", "-la-toi", "-la-nous", "-la-vous", "la-lui", "-la-leur", \ "-les-moi", "-les-toi", "-les-nous", "-les-vous", "les-lui", "-les-leur", \ "-m’en", "-t’en", "-lui-en", "-nous-en", "vous-en", "-leur-en")): nTotOccur += nOccur + nOccur elif sWord.endswith(("-je", "-tu", "-il", "-elle", "-on", "-nous", "-vous", "-ils", "-elles", "-iel", "-iels", "-le", \ "-la", "-les", "-moi", "-toi", "-leur", "-en", "-y")): nTotOccur += nOccur self.xProgressBar.ProgressValue = self.xProgressBar.ProgressValueMax self.xNumWord.Label = str(i) self.xTotWord.Label = nTotOccur def export (self): if not self.dWord: |
︙ | ︙ |
Modified gc_lang/fr/perf_memo.txt from [70dc62f0cc] to [9508c4062f].
︙ | ︙ | |||
24 25 26 27 28 29 30 | 0.5.16 2017.05.12 07:41 4.92201 1.19269 0.80639 0.239147 0.257518 0.266523 0.62111 0.33359 0.0634668 0.00757178 0.6.1 2018.02.12 09:58 5.25924 1.2649 0.878442 0.257465 0.280558 0.293903 0.686887 0.391275 0.0672474 0.00824723 0.6.2 2018.02.19 19:06 5.51302 1.29359 0.874157 0.260415 0.271596 0.290641 0.684754 0.376905 0.0815201 0.00919633 (spelling normalization) 1.0 2018.11.23 10:59 2.88577 0.702486 0.485648 0.139897 0.14079 0.148125 0.348751 0.201061 0.0360297 0.0043535 (x2, with new GC engine) 1.1 2019.05.16 09:42 1.50743 0.360923 0.261113 0.0749272 0.0763827 0.0771537 0.180504 0.102942 0.0182762 0.0021925 (×2, but new processor: AMD Ryzen 7 2700X) 1.2.1 2019.08.06 20:57 1.42886 0.358425 0.247356 0.0704405 0.0754886 0.0765604 0.177197 0.0988517 0.0188103 0.0020243 1.6.0 2020.01.03 20:22 1.38847 0.346214 0.240242 0.0709539 0.0737499 0.0748733 0.176477 0.0969171 0.0187857 0.0025143 (nouveau dictionnaire avec lemmes masculin) | > > | 24 25 26 27 28 29 30 31 32 | 0.5.16 2017.05.12 07:41 4.92201 1.19269 0.80639 0.239147 0.257518 0.266523 0.62111 0.33359 0.0634668 0.00757178 0.6.1 2018.02.12 09:58 5.25924 1.2649 0.878442 0.257465 0.280558 0.293903 0.686887 0.391275 0.0672474 0.00824723 0.6.2 2018.02.19 19:06 5.51302 1.29359 0.874157 0.260415 0.271596 0.290641 0.684754 0.376905 0.0815201 0.00919633 (spelling normalization) 1.0 2018.11.23 10:59 2.88577 0.702486 0.485648 0.139897 0.14079 0.148125 0.348751 0.201061 0.0360297 0.0043535 (x2, with new GC engine) 1.1 2019.05.16 09:42 1.50743 0.360923 0.261113 0.0749272 0.0763827 0.0771537 0.180504 0.102942 0.0182762 0.0021925 (×2, but new processor: AMD Ryzen 7 2700X) 1.2.1 2019.08.06 20:57 1.42886 0.358425 0.247356 0.0704405 0.0754886 0.0765604 0.177197 0.0988517 0.0188103 0.0020243 1.6.0 2020.01.03 20:22 1.38847 0.346214 0.240242 0.0709539 0.0737499 0.0748733 0.176477 0.0969171 0.0187857 0.0025143 (nouveau dictionnaire avec lemmes masculin) 1.9.0 2020.04.20 19:57 1.51183 0.369546 0.25681 0.0734314 0.0764396 0.0785668 0.183922 0.103674 0.0185812 0.002099 (NFC normalization) |
Modified gc_lang/fr/rules.grx from [8db209f637] to [0a8c74f5cd].
more than 10,000 changes
Modified gc_lang/fr/webext/content_scripts/menu.js from [60324e1838] to [0f0dc58ca4].
︙ | ︙ | |||
88 89 90 91 92 93 94 | this.xButton.style.left = `${oCoord.left}px`; } } insertIntoPage () { this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { | | | | | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | this.xButton.style.left = `${oCoord.left}px`; } } insertIntoPage () { this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { this.xShadowHost = oGrammalecte.createNode("div", { id: "grammalecte_menu_main_button_shadow_host", style: "width:0; height:0;" }); this.xShadowRoot = this.xShadowHost.attachShadow({ mode: "open" }); oGrammalecte.createStyle("content_scripts/menu.css", null, this.xShadowRoot); this.xShadowRoot.appendChild(this.xButton); document.body.appendChild(this.xShadowHost); } else { if (!document.getElementById("grammalecte_cssmenu")) { oGrammalecte.createStyle("content_scripts/menu.css", "grammalecte_cssmenu", document.head); } document.body.appendChild(this.xButton); } |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/message_box.js from [bb68749e64] to [8958174d47].
︙ | ︙ | |||
11 12 13 14 15 16 17 | class GrammalecteMessageBox { constructor (sId, sTitle) { this.sId = sId; this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { | | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | class GrammalecteMessageBox { constructor (sId, sTitle) { this.sId = sId; this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { this.xShadowHost = oGrammalecte.createNode("div", {id: this.sId+"_shadow", style: "width:0;height:0;"}); this.xShadowRoot = this.xShadowHost.attachShadow({mode: "open"}); this.xParent = this.xShadowRoot; } else { this.xParent = document; } this.xMessageBoxBar = oGrammalecte.createNode("div", {className: "grammalecte_message_box_bar"}); this.xMessageBoxContent = oGrammalecte.createNode("div", {className: "grammalecte_message_box_content"}); this.xMessageBox = this._createPanel(sTitle); |
︙ | ︙ | |||
61 62 63 64 65 66 67 | let xButton = oGrammalecte.createNode("div", {className: "grammalecte_panel_button grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = function () { this.hide(); }.bind(this); // better than writing “let that = this;” before the function? return xButton; } insertIntoPage () { if (this.bShadow){ | | | | | | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | let xButton = oGrammalecte.createNode("div", {className: "grammalecte_panel_button grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = function () { this.hide(); }.bind(this); // better than writing “let that = this;” before the function? return xButton; } insertIntoPage () { if (this.bShadow){ oGrammalecte.createStyle("content_scripts/panel.css", null, this.xShadowRoot); oGrammalecte.createStyle("content_scripts/message_box.css", null, this.xShadowRoot); this.xShadowRoot.appendChild(this.xMessageBox); document.body.appendChild(this.xShadowHost); } else { if (!document.getElementById("grammalecte_cssmsg")){ oGrammalecte.createStyle("content_scripts/panel.css", null, document.head); oGrammalecte.createStyle("content_scripts/message_box.css", "grammalecte_cssmsg", document.head); } document.body.appendChild(this.xMessageBox); } |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.js from [8de62f65f5] to [647c8a603c].
︙ | ︙ | |||
20 21 22 23 24 25 26 | this.nPositionX = 2; this.nPositionY = 2; this.bOpened = false; this.bWorking = false; this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { | | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | this.nPositionX = 2; this.nPositionY = 2; this.bOpened = false; this.bWorking = false; this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { this.xShadowHost = oGrammalecte.createNode("div", {id: this.sId+"_shadow_host", style: "width:0;height:0;"}); this.xShadowRoot = this.xShadowHost.attachShadow({mode: "open"}); this.xParent = this.xShadowRoot; } else { this.xParent = document; } this.xPanelBar = oGrammalecte.createNode("div", {className: "grammalecte_panel_bar"}); this.xPanelContent = oGrammalecte.createNode("div", {className: "grammalecte_panel_content"}); this.xWaitIcon = this._createWaitIcon(); |
︙ | ︙ | |||
120 121 122 123 124 125 126 | this.xPanelMessageActionButton = oGrammalecte.createNode("div", {id: "grammalecte_panel_message_action_button"}); this.xPanelMessageBlock.appendChild(this.xPanelMessage); this.xPanelMessageBlock.appendChild(this.xPanelMessageActionButton); } insertIntoPage () { if (this.bShadow) { | | | | | | | | | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | this.xPanelMessageActionButton = oGrammalecte.createNode("div", {id: "grammalecte_panel_message_action_button"}); this.xPanelMessageBlock.appendChild(this.xPanelMessage); this.xPanelMessageBlock.appendChild(this.xPanelMessageActionButton); } insertIntoPage () { if (this.bShadow) { oGrammalecte.createStyle("content_scripts/panel.css", null, this.xShadowRoot); oGrammalecte.createStyle("content_scripts/panel_gc.css", null, this.xShadowRoot); oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, this.xShadowRoot); oGrammalecte.createStyle("content_scripts/panel_conj.css", null, this.xShadowRoot); oGrammalecte.createStyle("content_scripts/panel_tf.css", null, this.xShadowRoot); this.xShadowRoot.appendChild(this.xPanel); document.body.appendChild(this.xShadowHost); } else { if (!document.getElementById("grammalecte_csspanel")) { oGrammalecte.createStyle("content_scripts/panel.css", "grammalecte_csspanel", document.head); oGrammalecte.createStyle("content_scripts/panel_gc.css", null, document.head); oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, document.head); oGrammalecte.createStyle("content_scripts/panel_conj.css", null, document.head); oGrammalecte.createStyle("content_scripts/panel_tf.css", null, document.head); |
︙ | ︙ |
Modified graphspell-js/char_player.js from [60a9fdaff6] to [3caadd8250].
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 | spellingNormalization: function (sWord) { let sNewWord = ""; for (let c of sWord) { sNewWord += this._xTransCharsForSpelling.gl_get(c, c); } return sNewWord.normalize("NFC"); }, _xTransCharsForSimplification: new Map([ | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | | | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | spellingNormalization: function (sWord) { let sNewWord = ""; for (let c of sWord) { sNewWord += this._xTransCharsForSpelling.gl_get(c, c); } return sNewWord.normalize("NFC"); }, oDistanceBetweenChars: { "a": {}, "e": {"é": 0.5}, "é": {"e": 0.5}, "i": {"y": 0.2}, "o": {}, "u": {}, "y": {"i": 0.3}, "b": {"d": 0.8, "h": 0.9}, "c": {"ç": 0.1, "k": 0.5, "q": 0.5, "s": 0.5, "x": 0.5, "z": 0.8}, "d": {"b": 0.8}, "f": {"v": 0.8}, "g": {"j": 0.5}, "h": {"b": 0.9}, "j": {"g": 0.5, "i": 0.9}, "k": {"c": 0.5, "q": 0.1, "x": 0.5}, "l": {"i": 0.9}, "m": {"n": 0.8}, "n": {"m": 0.8, "r": 0.9}, "p": {"q": 0.9}, "q": {"c": 0.5, "k": 0.1, "p": 0.9}, "r": {"n": 0.9, "j": 0.9}, "s": {"c": 0.5, "ç": 0.1, "x": 0.5, "z": 0.5}, "t": {"d": 0.9}, "v": {"f": 0.8, "w": 0.1}, "w": {"v": 0.1}, "x": {"c": 0.5, "k": 0.5, "q": 0.5, "s": 0.5}, "z": {"s": 0.5} }, distanceBetweenChars: function (c1, c2) { if (c1 == c2) { return 0; } if (this.oDistanceBetweenChars.hasOwnProperty(c1) && this.oDistanceBetweenChars[c1].hasOwnProperty(c2)) { return this.oDistanceBetweenChars[c1][c2]; } return 1; }, _xTransCharsForSimplification: new Map([ ['à', 'a'], ['é', 'é'], ['î', 'i'], ['ô', 'o'], ['û', 'u'], ['ÿ', 'y'], ['â', 'a'], ['è', 'é'], ['ï', 'i'], ['ö', 'o'], ['ù', 'u'], ['ŷ', 'y'], ['ä', 'a'], ['ê', 'é'], ['í', 'i'], ['ó', 'o'], ['ü', 'u'], ['ý', 'y'], ['á', 'a'], ['ë', 'é'], ['ì', 'i'], ['ò', 'o'], ['ú', 'u'], ['ỳ', 'y'], ['ā', 'a'], ['ē', 'é'], ['ī', 'i'], ['ō', 'o'], ['ū', 'u'], ['ȳ', 'y'], ['ç', 'c'], ['ñ', 'n'], ['œ', 'oe'], ['æ', 'ae'], ['ſ', 's'], ['ffi', 'ffi'], ['ffl', 'ffl'], ['ff', 'ff'], ['ſt', 'ft'], ['fi', 'fi'], ['fl', 'fl'], ['st', 'st'], ["⁰", "0"], ["¹", "1"], ["²", "2"], ["³", "3"], ["⁴", "4"], ["⁵", "5"], ["⁶", "6"], ["⁷", "7"], ["⁸", "8"], ["⁹", "9"], ["₀", "0"], ["₁", "1"], ["₂", "2"], ["₃", "3"], ["₄", "4"], ["₅", "5"], ["₆", "6"], ["₇", "7"], ["₈", "8"], ["₉", "9"] ]), simplifyWord: function (sWord) { // word simplication before calculating distance between words sWord = sWord.toLowerCase(); sWord = [...sWord].map(c => this._xTransCharsForSimplification.gl_get(c, c)).join(''); let sNewWord = ""; let i = 1; for (let c of sWord) { if (c == 'e' || c != sWord.slice(i, i+1)) { // exception for <e> to avoid confusion between crée / créai sNewWord += c; } i++; } return sNewWord.replace(/eau/g, "o").replace(/au/g, "o").replace(/ai/g, "é").replace(/ei/g, "é").replace(/ph/g, "f"); }, _xTransNumbersToExponent: new Map([ ["0", "⁰"], ["1", "¹"], ["2", "²"], ["3", "³"], ["4", "⁴"], ["5", "⁵"], ["6", "⁶"], ["7", "⁷"], ["8", "⁸"], ["9", "⁹"] ]), numbersToExponent: function (sWord) { |
︙ | ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 | aConsonant: new Set("bcçdfghjklmnñpqrstvwxzBCÇDFGHJKLMNÑPQRSTVWXZ"), aDouble: new Set("bcdfjklmnprstzBCDFJKLMNPRSTZ"), // letters that may be used twice successively // Similar chars d1to1: new Map([ ["1", "1₁liîLIÎ"], ["2", "2₂zZ"], ["3", "3₃eéèêEÉÈÊ"], ["4", "4₄aàâAÀÂ"], ["5", "5₅sgSG"], ["6", "6₆bdgBDG"], ["7", "7₇ltLT"], | > > > > > > > > > > > > > | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | aConsonant: new Set("bcçdfghjklmnñpqrstvwxzBCÇDFGHJKLMNÑPQRSTVWXZ"), aDouble: new Set("bcdfjklmnprstzBCDFJKLMNPRSTZ"), // letters that may be used twice successively // Similar chars d1to1: new Map([ ["'", "'’"], // U+0027: apostrophe droite ["’", "’"], // U+2019: apostrophe typographique (sera utilisée par défaut) ["ʼ", "ʼ’"], // U+02BC: Lettre modificative apostrophe ["‘", "‘’"], // U+2018: guillemet-apostrophe culbuté ["‛", "‛’"], // U+201B: guillemet-virgule supérieur culbuté ["´", "´’"], // U+00B4: accent aigu ["`", "`’"], // U+0060: accent grave ["′", "′’"], // U+2032: prime ["‵", "‵’"], // U+2035: prime réfléchi ["՚", "՚’"], // U+055A: apostrophe arménienne ["ꞌ", "ꞌ’"], // U+A78C: latin minuscule saltillo ["Ꞌ", "Ꞌ’"], // U+A78B: latin majuscule saltillo ["1", "1₁liîLIÎ"], ["2", "2₂zZ"], ["3", "3₃eéèêEÉÈÊ"], ["4", "4₄aàâAÀÂ"], ["5", "5₅sgSG"], ["6", "6₆bdgBDG"], ["7", "7₇ltLT"], |
︙ | ︙ |
Modified graphspell-js/str_transform.js from [d8c3ab3e0d] to [9baf96ac7b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // STRING TRANSFORMATION /* jshint esversion:6, -W097 */ /* jslint esversion:6 */ /* global exports, console */ "use strict"; // Note: 48 is the ASCII code for "0" var str_transform = { getNgrams: function (sWord, n=2) { let lNgrams = []; | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | // STRING TRANSFORMATION /* jshint esversion:6, -W097 */ /* jslint esversion:6 */ /* global exports, console */ "use strict"; if (typeof(process) !== 'undefined') { var char_player = require("./char_player.js"); } else if (typeof(require) !== 'undefined') { var char_player = require("resource://grammalecte/graphspell/char_player.js"); } // Note: 48 is the ASCII code for "0" var str_transform = { getNgrams: function (sWord, n=2) { let lNgrams = []; |
︙ | ︙ | |||
53 54 55 56 57 58 59 | table[i+1][j+1] = 0; } } } return longestCommonSubstring; }, | | | | | | | > | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | table[i+1][j+1] = 0; } } } return longestCommonSubstring; }, distanceDamerauLevenshtein: function (s1, s2) { // distance of Damerau-Levenshtein between <s1> and <s2> // https://fr.wikipedia.org/wiki/Distance_de_Damerau-Levenshtein try { let nLen1 = s1.length; let nLen2 = s2.length; let matrix = []; for (let i = 0; i <= nLen1+1; i++) { matrix[i] = new Array(nLen2 + 2); } for (let i = 0; i <= nLen1+1; i++) { matrix[i][0] = i; } for (let j = 0; j <= nLen2+1; j++) { matrix[0][j] = j; } for (let i = 1; i <= nLen1; i++) { for (let j = 1; j <= nLen2; j++) { //let nCost = (s1[i-1] === s2[j-1]) ? 0 : 1; let nCost = char_player.distanceBetweenChars(s1[i-1], s2[j-1]); matrix[i][j] = Math.min( matrix[i-1][j] + 1, // Deletion matrix[i][j-1] + 1, // Insertion matrix[i-1][j-1] + nCost // Substitution ); if (i > 1 && j > 1 && s1[i] == s2[j-1] && s1[i-1] == s2[j]) { matrix[i][j] = Math.min(matrix[i][j], matrix[i-2][j-2] + nCost); // Transposition } } } return Math.floor(matrix[nLen1][nLen2]); } catch (e) { console.error(e); } }, showDistance (s1, s2) { |
︙ | ︙ |
Modified graphspell-js/tokenizer.js from [16e7826100] to [0e7b889227].
︙ | ︙ | |||
35 36 37 38 39 40 41 | [/^[,.;:!?…«»“”‘’"(){}\[\]·–—¿¡]/, 'PUNC'], [/^[A-Z][.][A-Z][.](?:[A-Z][.])*/, 'WORD_ACRONYM'], [/^(?:https?:\/\/|www[.]|[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]+[@.][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]{2,}[@.])[a-zA-Z0-9][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_.\/?&!%=+*"'@$#-]+/, 'LINK'], [/^[#@][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]+/, 'TAG'], [/^<[a-zA-Z]+.*?>|^<\/[a-zA-Z]+ *>/, 'HTML'], [/^\[\/?[a-zA-Z]+\]/, 'PSEUDOHTML'], [/^&\w+;(?:\w+;|)/, 'HTMLENTITY'], | | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | [/^[,.;:!?…«»“”‘’"(){}\[\]·–—¿¡]/, 'PUNC'], [/^[A-Z][.][A-Z][.](?:[A-Z][.])*/, 'WORD_ACRONYM'], [/^(?:https?:\/\/|www[.]|[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]+[@.][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]{2,}[@.])[a-zA-Z0-9][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_.\/?&!%=+*"'@$#-]+/, 'LINK'], [/^[#@][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_-]+/, 'TAG'], [/^<[a-zA-Z]+.*?>|^<\/[a-zA-Z]+ *>/, 'HTML'], [/^\[\/?[a-zA-Z]+\]/, 'PSEUDOHTML'], [/^&\w+;(?:\w+;|)/, 'HTMLENTITY'], [/^(?:l|d|n|m|t|s|j|c|ç|lorsqu|puisqu|jusqu|quoiqu|qu|presqu|quelqu)['’ʼ‘‛´`′‵՚ꞌꞋ]/i, 'WORD_ELIDED'], [/^\d\d?[h:]\d\d(?:[m:]\d\ds?|)\b/, 'HOUR'], [/^\d+(?:ers?\b|res?\b|è[rm]es?\b|i[èe][mr]es?\b|de?s?\b|nde?s?\b|ès?\b|es?\b|ᵉʳˢ?|ʳᵉˢ?|ᵈᵉ?ˢ?|ⁿᵈᵉ?ˢ?|ᵉˢ?)/, 'WORD_ORDINAL'], [/^\d+(?:[.,]\d+|)/, 'NUM'], [/^[&%‰€$+±=*/<>⩾⩽#|×¥£§¢¬÷@-]/, 'SIGN'], [/^[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-stᴀ-ᶿ\u0300-\u036fᵉʳˢⁿᵈ_]+(?:[’'`-][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-stᴀ-ᶿ\u0300-\u036fᵉʳˢⁿᵈ_]+)*/, 'WORD'] ] }; class Tokenizer { constructor (sLang) { |
︙ | ︙ | |||
70 71 72 73 74 75 76 | while (sText) { let iCut = 1; for (let [zRegex, sType] of this.aRules) { if (sType !== "SPACE" || bWithSpaces) { try { if ((m = zRegex.exec(sText)) !== null) { iToken += 1; | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | while (sText) { let iCut = 1; for (let [zRegex, sType] of this.aRules) { if (sType !== "SPACE" || bWithSpaces) { try { if ((m = zRegex.exec(sText)) !== null) { iToken += 1; yield { "i": iToken, "sType": sType, "sValue": m[0], "nStart": iNext, "nEnd": iNext + m[0].length }; // m[0].normalize("NFC") not usefull at the moment iCut = m[0].length; break; } } catch (e) { console.error(e); } |
︙ | ︙ |
Modified graphspell/char_player.py from [d15991830e] to [fa338bf2f3].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 | 'ſ': 's', 'ffi': 'ffi', 'ffl': 'ffl', 'ff': 'ff', 'ſt': 'ft', 'fi': 'fi', 'fl': 'fl', 'st': 'st' }) def spellingNormalization (sWord): "nomalization NFC and removing ligatures" return unicodedata.normalize("NFC", sWord.translate(_xTransCharsForSpelling)) _xTransCharsForSimplification = str.maketrans({ | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | | | | > > > > > > > > > > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | 'ſ': 's', 'ffi': 'ffi', 'ffl': 'ffl', 'ff': 'ff', 'ſt': 'ft', 'fi': 'fi', 'fl': 'fl', 'st': 'st' }) def spellingNormalization (sWord): "nomalization NFC and removing ligatures" return unicodedata.normalize("NFC", sWord.translate(_xTransCharsForSpelling)) dDistanceBetweenChars = { "a": {}, "e": {"é": 0.5}, "é": {"e": 0.5}, "i": {"y": 0.2}, "o": {}, "u": {}, "y": {"i": 0.3}, "b": {"d": 0.8, "h": 0.9}, "c": {"ç": 0.1, "k": 0.5, "q": 0.5, "s": 0.5, "x": 0.5, "z": 0.8}, "d": {"b": 0.8}, "f": {"v": 0.8}, "g": {"j": 0.5}, "h": {"b": 0.9}, "j": {"g": 0.5, "i": 0.9}, "k": {"c": 0.5, "q": 0.1, "x": 0.5}, "l": {"i": 0.9}, "m": {"n": 0.8}, "n": {"m": 0.8, "r": 0.9}, "p": {"q": 0.9}, "q": {"c": 0.5, "k": 0.1, "p": 0.9}, "r": {"n": 0.9, "j": 0.9}, "s": {"c": 0.5, "ç": 0.1, "x": 0.5, "z": 0.5}, "t": {"d": 0.9}, "v": {"f": 0.8, "w": 0.1}, "w": {"v": 0.1}, "x": {"c": 0.5, "k": 0.5, "q": 0.5, "s": 0.5}, "z": {"s": 0.5} } def distanceBetweenChars (c1, c2): if c1 == c2: return 0 if c1 not in dDistanceBetweenChars: return 1 return dDistanceBetweenChars[c1].get(c2, 1) _xTransCharsForSimplification = str.maketrans({ 'à': 'a', 'é': 'é', 'î': 'i', 'ô': 'o', 'û': 'u', 'ÿ': 'y', 'â': 'a', 'è': 'é', 'ï': 'i', 'ö': 'o', 'ù': 'u', 'ŷ': 'y', 'ä': 'a', 'ê': 'é', 'í': 'i', 'ó': 'o', 'ü': 'u', 'ý': 'y', 'á': 'a', 'ë': 'é', 'ì': 'i', 'ò': 'o', 'ú': 'u', 'ỳ': 'y', 'ā': 'a', 'ē': 'é', 'ī': 'i', 'ō': 'o', 'ū': 'u', 'ȳ': 'y', 'ç': 'c', 'ñ': 'n', 'œ': 'oe', 'æ': 'ae', 'ſ': 's', 'ffi': 'ffi', 'ffl': 'ffl', 'ff': 'ff', 'ſt': 'ft', 'fi': 'fi', 'fl': 'fl', 'st': 'st', "⁰": "0", "¹": "1", "²": "2", "³": "3", "⁴": "4", "⁵": "5", "⁶": "6", "⁷": "7", "⁸": "8", "⁹": "9", "₀": "0", "₁": "1", "₂": "2", "₃": "3", "₄": "4", "₅": "5", "₆": "6", "₇": "7", "₈": "8", "₉": "9" }) def simplifyWord (sWord): "word simplication before calculating distance between words" sWord = sWord.lower().translate(_xTransCharsForSimplification) sNewWord = "" for i, c in enumerate(sWord, 1): if c == 'e' or c != sWord[i:i+1]: # exception for <e> to avoid confusion between crée / créai sNewWord += c return sNewWord.replace("eau", "o").replace("au", "o").replace("ai", "é").replace("ei", "é").replace("ph", "f") _xTransNumbersToExponent = str.maketrans({ "0": "⁰", "1": "¹", "2": "²", "3": "³", "4": "⁴", "5": "⁵", "6": "⁶", "7": "⁷", "8": "⁸", "9": "⁹" }) def numbersToExponent (sWord): "convert numeral chars to exponant chars" return sWord.translate(_xTransNumbersToExponent) aVowel = set("aáàâäāeéèêëēiíìîïīoóòôöōuúùûüūyýỳŷÿȳœæAÁÀÂÄĀEÉÈÊËĒIÍÌÎÏĪOÓÒÔÖŌUÚÙÛÜŪYÝỲŶŸȲŒÆ") aConsonant = set("bcçdfghjklmnñpqrstvwxzBCÇDFGHJKLMNÑPQRSTVWXZ") aDouble = set("bcdfjklmnprstzBCDFJKLMNPRSTZ") # letters that may be used twice successively # Similar chars d1to1 = { "'": "'’", # U+0027: apostrophe droite "’": "’", # U+2019: apostrophe typographique (sera utilisée par défaut) "ʼ": "ʼ’", # U+02BC: Lettre modificative apostrophe "‘": "‘’", # U+2018: guillemet-apostrophe culbuté "‛": "‛’", # U+201B: guillemet-virgule supérieur culbuté "´": "´’", # U+00B4: accent aigu "`": "`’", # U+0060: accent grave "′": "′’", # U+2032: prime "‵": "‵’", # U+2035: prime réfléchi "՚": "՚’", # U+055A: apostrophe arménienne "ꞌ": "ꞌ’", # U+A78C: latin minuscule saltillo "Ꞌ": "Ꞌ’", # U+A78B: latin majuscule saltillo "1": "1₁liîLIÎ", "2": "2₂zZ", "3": "3₃eéèêEÉÈÊ", "4": "4₄aàâAÀÂ", "5": "5₅sgSG", "6": "6₆bdgBDG", "7": "7₇ltLT", |
︙ | ︙ |
Modified graphspell/str_transform.py from [7dcad03ac9] to [452d0bdcef].
1 2 3 4 5 6 7 8 9 10 11 12 | """ Operations on strings: - calculate distance between two strings - transform strings with transformation codes """ #### Ngrams def getNgrams (sWord, n=2): "return a list of Ngrams strings" return [ sWord[i:i+n] for i in range(len(sWord)-n+1) ] | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """ Operations on strings: - calculate distance between two strings - transform strings with transformation codes """ from .char_player import distanceBetweenChars #### Ngrams def getNgrams (sWord, n=2): "return a list of Ngrams strings" return [ sWord[i:i+n] for i in range(len(sWord)-n+1) ] |
︙ | ︙ | |||
40 41 42 43 44 45 46 | nLen2 = len(s2) for i in range(-1, nLen1+1): d[i, -1] = i + 1 for j in range(-1, nLen2+1): d[-1, j] = j + 1 for i in range(nLen1): for j in range(nLen2): | | > | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | nLen2 = len(s2) for i in range(-1, nLen1+1): d[i, -1] = i + 1 for j in range(-1, nLen2+1): d[-1, j] = j + 1 for i in range(nLen1): for j in range(nLen2): #nCost = 0 if s1[i] == s2[j] else 1 nCost = distanceBetweenChars(s1[i], s2[j]) d[i, j] = min( d[i-1, j] + 1, # Deletion d[i, j-1] + 1, # Insertion d[i-1, j-1] + nCost, # Substitution ) if i and j and s1[i] == s2[j-1] and s1[i-1] == s2[j]: d[i, j] = min(d[i, j], d[i-2, j-2] + nCost) # Transposition return int(d[nLen1-1, nLen2-1]) def distanceSift4 (s1, s2, nMaxOffset=5): "implementation of general Sift4." # https://siderite.blogspot.com/2014/11/super-fast-and-accurate-string-distance.html if not s1: return len(s2) |
︙ | ︙ |
Modified graphspell/tokenizer.py from [a2c42f5f3e] to [b7228e1a86].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """ Very simple tokenizer using regular expressions """ import re _PATTERNS = { "default": ( r'(?P<FOLDERUNIX>/(?:bin|boot|dev|etc|home|lib|mnt|opt|root|sbin|tmp|usr|var|Bureau|Documents|Images|Musique|Public|Téléchargements|Vidéos)(?:/[\w.()-]+)*)', r'(?P<FOLDERWIN>[a-zA-Z]:\\(?:Program Files(?: [(]x86[)]|)|[\w.()]+)(?:\\[\w.()-]+)*)', r'(?P<PUNC>[][,.;:!?…«»“”‘’"(){}·–—¿¡])', r'(?P<WORD_ACRONYM>[A-Z][.][A-Z][.](?:[A-Z][.])*)', | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """ Very simple tokenizer using regular expressions """ import re from unicodedata import normalize _PATTERNS = { "default": ( r'(?P<FOLDERUNIX>/(?:bin|boot|dev|etc|home|lib|mnt|opt|root|sbin|tmp|usr|var|Bureau|Documents|Images|Musique|Public|Téléchargements|Vidéos)(?:/[\w.()-]+)*)', r'(?P<FOLDERWIN>[a-zA-Z]:\\(?:Program Files(?: [(]x86[)]|)|[\w.()]+)(?:\\[\w.()-]+)*)', r'(?P<PUNC>[][,.;:!?…«»“”‘’"(){}·–—¿¡])', r'(?P<WORD_ACRONYM>[A-Z][.][A-Z][.](?:[A-Z][.])*)', |
︙ | ︙ | |||
27 28 29 30 31 32 33 | r'(?P<FOLDERWIN>[a-zA-Z]:\\(?:Program Files(?: [(]x86[)]|)|[\w.()]+)(?:\\[\w.()-]+)*)', r'(?P<PUNC>[][,.;:!?…«»“”‘’"(){}·–—¿¡])', r'(?P<WORD_ACRONYM>[A-Z][.][A-Z][.](?:[A-Z][.])*)', r'(?P<LINK>(?:https?://|www[.]|\w+[@.]\w\w+[@.])\w[\w./?&!%=+*"\'@$#-]+)', r'(?P<HASHTAG>[#@][\w-]+)', r'(?P<HTML><\w+.*?>|</\w+ *>)', r'(?P<PSEUDOHTML>\[/?\w+\])', | | | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | r'(?P<FOLDERWIN>[a-zA-Z]:\\(?:Program Files(?: [(]x86[)]|)|[\w.()]+)(?:\\[\w.()-]+)*)', r'(?P<PUNC>[][,.;:!?…«»“”‘’"(){}·–—¿¡])', r'(?P<WORD_ACRONYM>[A-Z][.][A-Z][.](?:[A-Z][.])*)', r'(?P<LINK>(?:https?://|www[.]|\w+[@.]\w\w+[@.])\w[\w./?&!%=+*"\'@$#-]+)', r'(?P<HASHTAG>[#@][\w-]+)', r'(?P<HTML><\w+.*?>|</\w+ *>)', r'(?P<PSEUDOHTML>\[/?\w+\])', r"(?P<WORD_ELIDED>(?:l|d|n|m|t|s|j|c|ç|lorsqu|puisqu|jusqu|quoiqu|qu|presqu|quelqu)['’ʼ‘‛´`′‵՚ꞌꞋ])", r'(?P<WORD_ORDINAL>\d+(?:ers?|res?|è[rm]es?|i[èe][mr]es?|de?s?|nde?s?|ès?|es?|ᵉʳˢ?|ʳᵉˢ?|ᵈᵉ?ˢ?|ⁿᵈᵉ?ˢ?|ᵉˢ?)\b)', r'(?P<HOUR>\d\d?[h:]\d\d(?:[m:]\d\ds?|)\b)', r'(?P<NUM>\d+(?:[.,]\d+|))', r'(?P<SIGN>[&%‰€$+±=*/<>⩾⩽#|×¥£¢§¬÷@-])', r"(?P<WORD>[\w\u0300-\u036f]+(?:[’'`-][\w\u0300-\u036f]+)*)" ) } class Tokenizer: "Tokenizer: transforms a text in a list of tokens" def __init__ (self, sLang): self.sLang = sLang if sLang not in _PATTERNS: self.sLang = "default" self.zToken = re.compile( "(?i)" + '|'.join(sRegex for sRegex in _PATTERNS[sLang]) ) def genTokens (self, sText, bStartEndToken=False): "generator: tokenize <sText>" i = 0 if bStartEndToken: yield { "i": 0, "sType": "INFO", "sValue": "<start>", "nStart": 0, "nEnd": 0, "lMorph": ["<start>"] } for i, m in enumerate(self.zToken.finditer(sText), 1): yield { "i": i, "sType": m.lastgroup, "sValue": normalize("NFC", m.group()), "nStart": m.start(), "nEnd": m.end() } if bStartEndToken: iEnd = len(sText) yield { "i": i+1, "sType": "INFO", "sValue": "<end>", "nStart": iEnd, "nEnd": iEnd, "lMorph": ["<end>"] } def getTokenTypes (self): "returns list of token types as tuple (token name, regex)" return [ sRegex[4:-1].split(">") for sRegex in _PATTERNS[self.sLang] ] |
Modified helpers.py from [f66c7bb7d2] to [20b8bddd75].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """ Tools for handling files """ import os import shutil import errno import zipfile from string import Template class CD: "Context manager for changing the current working directory" def __init__ (self, newPath): self.newPath = os.path.expanduser(newPath) self.savedPath = "" | > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | """ Tools for handling files """ import os import shutil import errno import zipfile from string import Template def convertDictToString (dDict, nDepth=1, nIndent=2): "returns <dDict> as a indented string" sResult = "{\n" sIndent = " " * nIndent for key, val in dDict.items(): sKey = f"'{key}'" if type(key) is str else str(key) if nDepth > 0 and type(val) is dict: sVal = convertDictToString(val, nDepth-1, nIndent+nIndent) else: sVal = f"'{val}'" if type(val) is str else str(val) sResult += f'{sIndent}{sKey}: {sVal},\n' sResult = sResult + sIndent[:-2] + "}" return sResult class CD: "Context manager for changing the current working directory" def __init__ (self, newPath): self.newPath = os.path.expanduser(newPath) self.savedPath = "" |
︙ | ︙ |
Modified lexicons/French.lex from [72c4d25b15] to [0209ad9ded].
︙ | ︙ | |||
183 184 185 186 187 188 189 | quand quand :G:Cs/* souvent souvent :W/* chaque chaque :G:Di:e:s/* jamais jamais :G:X/* cela cela :G:Od:m:s/* plusieurs plusieurs :G:Di:e:p/* mon mon :G:Dp:e:s/* | | | 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | quand quand :G:Cs/* souvent souvent :W/* chaque chaque :G:Di:e:s/* jamais jamais :G:X/* cela cela :G:Od:m:s/* plusieurs plusieurs :G:Di:e:p/* mon mon :G:Dp:e:s/* I I :Br:e:s/* corps corps :N:m:i/* n n :N:m:i/* ordre ordre :N:m:s/* trop trop :G:W/* nom nom :N:m:s/* forme forme :N:f:s/* L L :N:m:i;S/* |
︙ | ︙ | |||
220 221 222 223 224 225 226 | même même :A:e:s/* mêmes même :A:e:p/* eu avoir :V0ait____a:Q:m:s/* siècle siècle :N:m:s/* article article :N:m:s/* histoire histoire :N:f:s/* esprit esprit :N:m:s/* | | | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | même même :A:e:s/* mêmes même :A:e:p/* eu avoir :V0ait____a:Q:m:s/* siècle siècle :N:m:s/* article article :N:m:s/* histoire histoire :N:f:s/* esprit esprit :N:m:s/* II II :Br:e:p/* Dieu Dieu :MP:m:i/* jours jour :N:m:p/* art art :N:m:s/* action action :N:f:s/* eau eau :N:f:s/* mois mois :N:m:i/* i i :N:m:i/* |
︙ | ︙ | |||
332 333 334 335 336 337 338 | loin loin :W/* milieu milieu :N:m:s/* mettre mettre :V3__tnq__a:Y/* caractère caractère :N:m:s/* étude étude :N:f:s/* mes mes :G:Dp:e:p/* principe principe :N:m:s/* | | | 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | loin loin :W/* milieu milieu :N:m:s/* mettre mettre :V3__tnq__a:Y/* caractère caractère :N:m:s/* étude étude :N:f:s/* mes mes :G:Dp:e:p/* principe principe :N:m:s/* V V :Br:e:p/* pouvait pouvoir :V3_it_xx_a:Iq:3s/* seront être :V0ei_____a:If:3p!/* Europe Europe :N:f:i/* petit petit :N:A:m:s/* lorsque lorsque :G:Cs/* heures heure :N:f:p/* production production :N:f:s/* |
︙ | ︙ | |||
454 455 456 457 458 459 460 | R R :N:m:i;S/* idées idée :N:f:p/* premiers premier :N:A:m:p/* faite faire :V3_it_q__a:Q:A:f:s/* petite petit :N:A:f:s/* ouvrage ouvrage :N:m:s/* langue langue :N:f:s/* | | | | 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | R R :N:m:i;S/* idées idée :N:f:p/* premiers premier :N:A:m:p/* faite faire :V3_it_q__a:Q:A:f:s/* petite petit :N:A:f:s/* ouvrage ouvrage :N:m:s/* langue langue :N:f:s/* afin afin :GŔv:Ĉ/* égard égard :N:m:s/* expérience expérience :N:f:s/* Angleterre Angleterre :N:f:i/* III III :Br:e:p/* tard tard :W/* activité activité :N:f:s/* octobre octobre :N:m:s/* âge âge :N:m:s/* usage usage :N:m:s/* fond fond :N:m:s/* heure heure :N:f:s/* |
︙ | ︙ | |||
681 682 683 684 685 686 687 | nécessité nécessité :N:f:s/* pp pp :N:e:i/* surface surface :N:f:s/* concerne concerner :V1__t____a:Ip:Sp:3s/* vos vos :G:Dp:e:p/* faisant faire :V3_it_q__a:P/* choix choix :N:m:i/* | | | 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 | nécessité nécessité :N:f:s/* pp pp :N:e:i/* surface surface :N:f:s/* concerne concerner :V1__t____a:Ip:Sp:3s/* vos vos :G:Dp:e:p/* faisant faire :V3_it_q__a:P/* choix choix :N:m:i/* IV IV :Br:e:p/* disposition disposition :N:f:s/* fonctions fonction :N:f:p/* duc duc :N:m:s/* articles article :N:m:p/* exécution exécution :N:f:s/* premières premier :N:A:f:p/* auteurs auteur :N:m:p/* |
︙ | ︙ | |||
1062 1063 1064 1065 1066 1067 1068 | noms nom :N:m:p/* zone zone :N:f:s/* conduit conduit :N:m:s/* vont aller :V1_i__e_e_:Ip:3p!/* militaires militaire :N:A:e:p/* sud sud :N:m:s/* voyage voyage :N:m:s/* | | | 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 | noms nom :N:m:p/* zone zone :N:f:s/* conduit conduit :N:m:s/* vont aller :V1_i__e_e_:Ip:3p!/* militaires militaire :N:A:e:p/* sud sud :N:m:s/* voyage voyage :N:m:s/* X X :Br:e:p/* sort sortir :V3_it_q_ea:Ip:3s/* ciel ciel :N:m:s/* division division :N:f:s/* pression pression :N:f:s/* naturel naturel :N:A:m:s/* plaisir plaisir :N:m:s/* défaut défaut :N:m:s/* |
︙ | ︙ | |||
1274 1275 1276 1277 1278 1279 1280 | tantôt tantôt :W/* formule formule :N:f:s/* proportion proportion :N:f:s/* exemples exemple :N:m:p/* difficulté difficulté :N:f:s/* impression impression :N:f:s/* vitesse vitesse :N:f:s/* | | | 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 | tantôt tantôt :W/* formule formule :N:f:s/* proportion proportion :N:f:s/* exemples exemple :N:m:p/* difficulté difficulté :N:f:s/* impression impression :N:f:s/* vitesse vitesse :N:f:s/* VI VI :Br:e:p/* autrement autrement :W/* méthodes méthode :N:f:p/* ajouter ajouter :V1_itnq__a:Y/* suivant suivant :N:A:m:s/* établissements établissement :N:m:p/* vivre vivre :V3_it____a:Y/* appartient appartenir :V3___nq__a:Ip:3s/* |
︙ | ︙ | |||
1675 1676 1677 1678 1679 1680 1681 | célèbre célèbre :A:e:s/* présente présenter :V1_itnq__a:Ip:Sp:1s:3s/* présente présenter :V1_itnq__a:E:2s/* catégorie catégorie :N:f:s/* principale principal :N:A:f:s/* connaissances connaissance :N:f:p/* composé composé :N:A:m:s/* | | | 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 | célèbre célèbre :A:e:s/* présente présenter :V1_itnq__a:Ip:Sp:1s:3s/* présente présenter :V1_itnq__a:E:2s/* catégorie catégorie :N:f:s/* principale principal :N:A:f:s/* connaissances connaissance :N:f:p/* composé composé :N:A:m:s/* VII VII :Br:e:p/* côte côte :N:f:s/* mauvaise mauvais :N:A:f:s/* propriétaires propriétaire :N:A:e:p/* canal canal :N:m:s/* sieur sieur :N:m:s/* spécial spécial :N:A:m:s/* identité identité :N:f:s/* |
︙ | ︙ | |||
1923 1924 1925 1926 1927 1928 1929 | réduire réduire :V3__t_q__a:Y/* fixé fixer :V1_it_q__a:Q:A:1ŝ:m:s/* habitude habitude :N:f:s/* rivière rivière :N:f:s/* connu connaître :V3__t_q__a:Q:A:m:s/M connu connu :N:m:s/* gouverneur gouverneur :N:m:s/* | | | 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 | réduire réduire :V3__t_q__a:Y/* fixé fixer :V1_it_q__a:Q:A:1ŝ:m:s/* habitude habitude :N:f:s/* rivière rivière :N:f:s/* connu connaître :V3__t_q__a:Q:A:m:s/M connu connu :N:m:s/* gouverneur gouverneur :N:m:s/* VIII VIII :Br:e:p/* carte carte :N:f:s/* intérieure intérieur :A:f:s/* russe russe :N:e:s/* Centre Centre :N:m:i/* revanche revanche :N:f:s/* créé créer :V1_it_q__a:Q:A:1ŝ:m:s/* lait lait :N:m:s/* |
︙ | ︙ | |||
2096 2097 2098 2099 2100 2101 2102 | amitié amitié :N:f:s/* pense penser :V1_itn___a:Ip:Sp:1s:3s/* pense penser :V1_itn___a:E:2s/* résoudre résoudre :V3__t_q__a:Y/* vaut valoir :V3_it_x__a:Ip:3s/* judiciaire judiciaire :A:e:s/* fondé fondé :N:m:s/* | | | 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 | amitié amitié :N:f:s/* pense penser :V1_itn___a:Ip:Sp:1s:3s/* pense penser :V1_itn___a:E:2s/* résoudre résoudre :V3__t_q__a:Y/* vaut valoir :V3_it_x__a:Ip:3s/* judiciaire judiciaire :A:e:s/* fondé fondé :N:m:s/* XIV XIV :Br:e:p/* cardinal cardinal :N:m:s/* kilomètres mètre :N:m:p/* Bordeaux Bordeaux :MP:e:i/* faites faire :V3_it_q__a:Q:A:f:p/* faites faire :V3_it_q__a:Ip:2p/* faites faire :V3_it_q__a:E:2p/* établit établir :V2__t_q__a:Ip:Is:3s/* |
︙ | ︙ | |||
2487 2488 2489 2490 2491 2492 2493 | envers envers :G:R/* envers envers :N:m:i/* foyer foyer :N:m:s/* facteur facteur :N:m:s/* naître naître :V3_i_n__e_:Y/M nourriture nourriture :N:f:s/* variable variable :A:e:s/* | | | 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 | envers envers :G:R/* envers envers :N:m:i/* foyer foyer :N:m:s/* facteur facteur :N:m:s/* naître naître :V3_i_n__e_:Y/M nourriture nourriture :N:f:s/* variable variable :A:e:s/* IX IX :Br:e:p/* satisfaire satisfaire :V3__tnq__a:Y/* site site :N:m:s/* relatifs relatif :N:A:m:p/* commence commencer :V1_itnx__a:Ip:Sp:1s:3s/* commence commencer :V1_itnx__a:E:2s/* tenant tenir :V3_itnq__a:P/* susceptible susceptible :A:e:s/* |
︙ | ︙ | |||
2970 2971 2972 2973 2974 2975 2976 | régiment régiment :N:m:s/* acier acier :N:m:s/* sauver sauver :V1_it_q_zz:Y/* socialistes socialiste :N:A:e:p/* alimentation alimentation :N:f:s/* Hongrie Hongrie :N:f:i/* synthèse synthèse :N:f:s/* | | | | | 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 | régiment régiment :N:m:s/* acier acier :N:m:s/* sauver sauver :V1_it_q_zz:Y/* socialistes socialiste :N:A:e:p/* alimentation alimentation :N:f:s/* Hongrie Hongrie :N:f:i/* synthèse synthèse :N:f:s/* XI XI :Br:e:p/* relever relever :V1_itnq__a:Y/* fausse faux :N:A:f:s/* débats débat :N:m:p/* voyageurs voyageur :N:m:p/* district district :N:m:s/* dangers danger :N:m:p/* jugé juger :V1_itn___a:Q:A:1ŝ:m:s/* réactions réaction :N:f:p/* savent savoir :V3_it_q__a:Ip:3p!/* adresser adresser :V1__tnq__a:Y/* session session :N:f:s/* attaché attaché :N:m:s/* formules formule :N:f:p/* européens européen :N:A:m:p/* abondance abondance :N:f:s/* marcher marcher :V1_i_____a:Y/* intervalle intervalle :N:m:s/* posé poser :V1_it_q_zz:Q:A:1ŝ:m:s/* immédiate immédiat :A:f:s/* XVI XVI :Br:e:p/* usages usage :N:m:p/* XII XII :Br:e:p/* Versailles Versailles :MP:e:i/* expansion expansion :N:f:s/* large large :A:e:s/* larges large :A:e:p/* invention invention :N:f:s/* obstacles obstacle :N:m:p/* origines origine :N:f:p/* |
︙ | ︙ | |||
3057 3058 3059 3060 3061 3062 3063 | dirigeants dirigeant :N:A:m:p/* David David :M1:m:i/* couvert couvert :N:m:s/* portrait portrait :N:m:s/* transmission transmission :N:f:s/* las las :A:m:i/* progressivement progressivement :W/* | | | 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 | dirigeants dirigeant :N:A:m:p/* David David :M1:m:i/* couvert couvert :N:m:s/* portrait portrait :N:m:s/* transmission transmission :N:f:s/* las las :A:m:i/* progressivement progressivement :W/* XIII XIII :Br:e:p/* déclarer déclarer :V1__tnq__a:Y/* assemblées assemblée :N:f:p/* cheveux cheveu :N:m:p/* retenir retenir :V3_it_q__a:Y/* refuser refuser :V1_itnq__a:Y/* horizon horizon :N:m:s/* cherché chercher :V1_it_q__a:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
3374 3375 3376 3377 3378 3379 3380 | séries série :N:f:p/* pères père :N:m:p/* financiers financier :N:A:m:p/* rente rente :N:f:s/* dépendance dépendance :N:f:s/* étape étape :N:f:s/* essayer essayer :V1_it_q__a:Y/* | | | 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 | séries série :N:f:p/* pères père :N:m:p/* financiers financier :N:A:m:p/* rente rente :N:f:s/* dépendance dépendance :N:f:s/* étape étape :N:f:s/* essayer essayer :V1_it_q__a:Y/* XV XV :Br:e:p/* races race :N:f:p/* voudrais vouloir :V3_itnq__a:K:1s:2s/* recueil recueil :N:m:s/* Madrid Madrid :MP:e:i/* Marc Marc :M1:m:i/* version version :N:f:s/* comparer comparer :V1__t_q_zz:Y/* |
︙ | ︙ | |||
3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 | drame drame :N:m:s/* automne automne :N:m:s/* exige exiger :V1_itn___a:Ip:Sp:1s:3s/* exige exiger :V1_itn___a:E:2s/* rire rire :V3_i__q__a:Y/* dessins dessin :N:m:p/* vœu vœu :N:m:s/* tracé tracé :N:m:s/* accroître accroître :V3__tnq__a:Y/M mystère mystère :N:m:s/* psychologique psychologique :A:e:s/* juridiques juridique :A:e:p/* voyages voyage :N:m:p/* décrit décrire :V3_itnq__a:Q:A:m:s/* | > | 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 | drame drame :N:m:s/* automne automne :N:m:s/* exige exiger :V1_itn___a:Ip:Sp:1s:3s/* exige exiger :V1_itn___a:E:2s/* rire rire :V3_i__q__a:Y/* dessins dessin :N:m:p/* vœu vœu :N:m:s/* re re :Zp/* tracé tracé :N:m:s/* accroître accroître :V3__tnq__a:Y/M mystère mystère :N:m:s/* psychologique psychologique :A:e:s/* juridiques juridique :A:e:p/* voyages voyage :N:m:p/* décrit décrire :V3_itnq__a:Q:A:m:s/* |
︙ | ︙ | |||
4433 4434 4435 4436 4437 4438 4439 | concernent concerner :V1__t____a:Ip:Sp:3p/* tige tige :N:f:s/* regarde regarder :V1_itnq__a:Ip:Sp:1s:3s/* regarde regarder :V1_itnq__a:E:2s/* inventaire inventaire :N:m:s/* Sénégal Sénégal :N:m:i/* magasins magasin :N:m:p/* | | | 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 | concernent concerner :V1__t____a:Ip:Sp:3p/* tige tige :N:f:s/* regarde regarder :V1_itnq__a:Ip:Sp:1s:3s/* regarde regarder :V1_itnq__a:E:2s/* inventaire inventaire :N:m:s/* Sénégal Sénégal :N:m:i/* magasins magasin :N:m:p/* XVIII XVIII :Br:e:p/* installations installation :N:f:p/* aveugle aveugle :N:A:e:s/* pitié pitié :N:f:s/* Vincent Vincent :M1:m:i/* adjoint adjoint :N:m:s/* moteurs moteur :N:A:m:p/* retenu retenir :V3_it_q__a:Q:A:m:s/* |
︙ | ︙ | |||
5723 5724 5725 5726 5727 5728 5729 | réalisées réaliser :V1__t_q_zz:Q:A:f:p/* individuels individuel :N:A:m:p/* satisfaisante satisfaisant :A:f:s/* vanité vanité :N:f:s/* serais être :V0ei_____a:K:1s:2s/* actualité actualité :N:f:s/* livraison livraison :N:f:s/* | | | 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 | réalisées réaliser :V1__t_q_zz:Q:A:f:p/* individuels individuel :N:A:m:p/* satisfaisante satisfaisant :A:f:s/* vanité vanité :N:f:s/* serais être :V0ei_____a:K:1s:2s/* actualité actualité :N:f:s/* livraison livraison :N:f:s/* XVII XVII :Br:e:p/* continué continuer :V1_itn___a:Q:A:1ŝ:m:s/* ajoutant ajouter :V1_itnq__a:P/* inscrire inscrire :V3__t_q__a:Y/* militants militant :N:A:m:p/* brun brun :N:A:m:s/* législatives législatif :A:f:p/* vieillard vieillard :N:m:s/* |
︙ | ︙ | |||
5997 5998 5999 6000 6001 6002 6003 | permettrait permettre :V3__tnq__a:K:3s/* forcée forcer :V1_it_q_zz:Q:A:f:s/* manteau manteau :N:m:s/* appliquées appliquer :V1_itnq__a:Q:A:f:p/* propagation propagation :N:f:s/* sacrée sacrer :V1_it___zz:Q:A:f:s/* culturels culturel :A:m:p/* | | | 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 | permettrait permettre :V3__tnq__a:K:3s/* forcée forcer :V1_it_q_zz:Q:A:f:s/* manteau manteau :N:m:s/* appliquées appliquer :V1_itnq__a:Q:A:f:p/* propagation propagation :N:f:s/* sacrée sacrer :V1_it___zz:Q:A:f:s/* culturels culturel :A:m:p/* XIX XIX :Br:e:p/* pasteur pasteur :N:m:s/* Roland Roland :M1:m:i/* Saxe Saxe :N:f:i/* invite invite :N:f:s/* quiconque quiconque :G:Oi:Or/* guérir guérir :V2_it_q__a:Y/* verbaux verbal :A:m:p/* |
︙ | ︙ | |||
6773 6774 6775 6776 6777 6778 6779 | comparé comparer :V1__t_q_zz:Q:A:1ŝ:m:s/* conservée conserver :V1__t_q_zz:Q:A:f:s/* recevait recevoir :V3_it_q__a:Iq:3s/* cordes corde :N:f:p/* autorisée autoriser :V1__tnq__a:Q:A:f:s/* apportées apporter :V1_itn___a:Q:A:f:p/* commander commander :V1_itnq__a:Y/* | | | 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 | comparé comparer :V1__t_q_zz:Q:A:1ŝ:m:s/* conservée conserver :V1__t_q_zz:Q:A:f:s/* recevait recevoir :V3_it_q__a:Iq:3s/* cordes corde :N:f:p/* autorisée autoriser :V1__tnq__a:Q:A:f:s/* apportées apporter :V1_itn___a:Q:A:f:p/* commander commander :V1_itnq__a:Y/* XX XX :Br:e:p/* expose exposer :V1__tnq__a:Ip:Sp:1s:3s/* expose exposer :V1__tnq__a:E:2s/* éther éther :N:m:s/* vaincu vaincu :N:m:s/* assis asseoir :V3__t_q__a:Q:A:m:i/M assis asseoir :V3__t_q__a:Is:1s:2s/M formaient former :V1_itnq__a:Iq:3p/* |
︙ | ︙ | |||
10059 10060 10061 10062 10063 10064 10065 | aboutissent aboutir :V2_i_n___a:Ip:Sp:Sq:3p/* lueur lueur :N:f:s/* meurent mourir :V3_i__q_e_:Ip:Sp:3p/* joyeux joyeux :A:m:i/* appropriée approprier :V1__t_q_zz:Q:A:f:s/* resteront rester :V1_i__xxe_:If:3p!/* levant lever :V1_it_q_zz:P/* | | | 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 | aboutissent aboutir :V2_i_n___a:Ip:Sp:Sq:3p/* lueur lueur :N:f:s/* meurent mourir :V3_i__q_e_:Ip:Sp:3p/* joyeux joyeux :A:m:i/* appropriée approprier :V1__t_q_zz:Q:A:f:s/* resteront rester :V1_i__xxe_:If:3p!/* levant lever :V1_it_q_zz:P/* XXII XXII :Br:e:p/* genou genou :N:m:s/* ému émouvoir :V3_it_q__a:Q:A:m:s/* retourna retourner :V1_it_q_zz:Is:3s/* Guizot Guizot :M2:e:i/* rejetée rejeter :V1__t_q_zz:Q:A:f:s/* déesse déesse :N:f:s/* apte apte :A:e:s/* |
︙ | ︙ | |||
10096 10097 10098 10099 10100 10101 10102 | urines urine :N:f:p/* accompagnées accompagner :V1__t_x__a:Q:A:f:p/* barres barre :N:f:p/* stériles stérile :A:e:p/* bouts bout :N:m:p/* évoluer évoluer :V1_i____zz:Y/* éruption éruption :N:f:s/* | | | 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 | urines urine :N:f:p/* accompagnées accompagner :V1__t_x__a:Q:A:f:p/* barres barre :N:f:p/* stériles stérile :A:e:p/* bouts bout :N:m:p/* évoluer évoluer :V1_i____zz:Y/* éruption éruption :N:f:s/* XXI XXI :Br:e:p/* combiner combiner :V1__t_q_zz:Y/* Christine Christine :M1:f:i/* rivalité rivalité :N:f:s/* ralentissement ralentissement :N:m:s/* requiert requérir :V3__t____a:Ip:3s/* orthographe orthographe :N:f:s/* convenance convenance :N:f:s/* |
︙ | ︙ | |||
10780 10781 10782 10783 10784 10785 10786 | propager propager :V1__t_q_zz:Y/* enfermer enfermer :V1__t_q_zz:Y/* nomma nommer :V1__t_q_zz:Is:3s/* prédilection prédilection :N:f:s/* prétendus prétendre :V3__tnq__a:Q:A:m:p/* équivalente équivalent :A:f:s/* chartes charte :N:f:p/* | | | 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 | propager propager :V1__t_q_zz:Y/* enfermer enfermer :V1__t_q_zz:Y/* nomma nommer :V1__t_q_zz:Is:3s/* prédilection prédilection :N:f:s/* prétendus prétendre :V3__tnq__a:Q:A:m:p/* équivalente équivalent :A:f:s/* chartes charte :N:f:p/* XXIII XXIII :Br:e:p/* maintenus maintenir :V3_it_q__a:Q:A:m:p/* mensuel mensuel :A:m:s/* souches souche :N:f:p/* diminuant diminuer :V1_it_q_zz:P/* percer percer :V1_it___zz:Y/* redevance redevance :N:f:s/* quais quai :N:m:p/* |
︙ | ︙ | |||
12380 12381 12382 12383 12384 12385 12386 | conséquemment conséquemment :W/* exempts exempt :A:m:p/* inspirations inspiration :N:f:p/* admises admis :N:f:p/* nomment nommer :V1__t_q_zz:Ip:Sp:3p/* bourgs bourg :N:m:p/* ruban ruban :N:m:s/* | | | 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 | conséquemment conséquemment :W/* exempts exempt :A:m:p/* inspirations inspiration :N:f:p/* admises admis :N:f:p/* nomment nommer :V1__t_q_zz:Ip:Sp:3p/* bourgs bourg :N:m:p/* ruban ruban :N:m:s/* XXIV XXIV :Br:e:p/* dort dormir :V3_i_____a:Ip:3s/* mixtes mixte :A:e:p/* mixtes mixte :N:m:p/* supportent supporter :V1__t_q_zz:Ip:Sp:3p/* révélateur révélateur :N:A:m:s/* Leroy Leroy :M2:e:i/* royaliste royaliste :N:e:s/* |
︙ | ︙ | |||
12871 12872 12873 12874 12875 12876 12877 | souscrire souscrire :V3_itn___a:Y/* attendu attendre :V3_itnq__a:Q:A:m:s/* résonance résonance :N:f:s/* compliquées compliquer :V1__t_q_zz:Q:A:f:p/* écarte écarter :V1_it_q_zz:Ip:Sp:1s:3s/* écarte écarter :V1_it_q_zz:E:2s/* pénitentiaire pénitentiaire :A:e:s/* | | | 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 | souscrire souscrire :V3_itn___a:Y/* attendu attendre :V3_itnq__a:Q:A:m:s/* résonance résonance :N:f:s/* compliquées compliquer :V1__t_q_zz:Q:A:f:p/* écarte écarter :V1_it_q_zz:Ip:Sp:1s:3s/* écarte écarter :V1_it_q_zz:E:2s/* pénitentiaire pénitentiaire :A:e:s/* XXX XXX :Br:e:p/* apanage apanage :N:m:s/* convenances convenance :N:f:p/* injustices injustice :N:f:p/* posa poser :V1_it_q_zz:Is:3s/* Hervé Hervé :M1:m:i/* typiques typique :A:e:p/* sus savoir :V3_it_q__a:Q:A:m:p/* |
︙ | ︙ | |||
13606 13607 13608 13609 13610 13611 13612 | oasis oasis :N:f:i/* Boileau Boileau :M2:e:i/* interprétée interpréter :V1__t_q_zz:Q:A:f:s/* merveilleusement merveilleusement :W/* détachées détacher :V1__t_q_zz:Q:A:f:p/* laissèrent laisser :V1__t_q_zz:Is:3p!/* artifices artifice :N:m:p/* | | | 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 | oasis oasis :N:f:i/* Boileau Boileau :M2:e:i/* interprétée interpréter :V1__t_q_zz:Q:A:f:s/* merveilleusement merveilleusement :W/* détachées détacher :V1__t_q_zz:Q:A:f:p/* laissèrent laisser :V1__t_q_zz:Is:3p!/* artifices artifice :N:m:p/* XXV XXV :Br:e:p/* protégée protégé :N:f:s/* incompétence incompétence :N:f:s/* locomotive locomotive :N:f:s/* rectifier rectifier :V1__t___zz:Y/* Tarn Tarn :N:m:i/* diaphragme diaphragme :N:m:s/* paramètre paramètre :N:m:s/* |
︙ | ︙ | |||
13701 13702 13703 13704 13705 13706 13707 | arranger arranger :V1__t_q__a:Y/* induire induire :V3__t____a:Y/* tranchant trancher :V1_it___zz:P/* dignement dignement :W/* persuadés persuader :V1__t_q_zz:Q:A:m:p/* routier routier :N:A:m:s/* politiciens politicien :N:A:m:p/* | | | 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 | arranger arranger :V1__t_q__a:Y/* induire induire :V3__t____a:Y/* tranchant trancher :V1_it___zz:P/* dignement dignement :W/* persuadés persuader :V1__t_q_zz:Q:A:m:p/* routier routier :N:A:m:s/* politiciens politicien :N:A:m:p/* XXVI XXVI :Br:e:p/* sphérique sphérique :A:e:s/* présidée présider :V1_itn___a:Q:A:f:s/* jure jurer :V1_it_q_zz:Ip:Sp:1s:3s/* jure jurer :V1_it_q_zz:E:2s/* lés lé :N:m:p/* cadet cadet :N:A:m:s/* confrérie confrérie :N:f:s/* |
︙ | ︙ | |||
14583 14584 14585 14586 14587 14588 14589 | volets volet :N:m:p/* connaissais connaître :V3__t_q__a:Iq:1s:2s/M encor encor :W/C laïcs laïc :N:A:m:p/* proclamée proclamer :V1__t_q_zz:Q:A:f:s/* mécontents mécontent :N:A:m:p/* inclure inclure :V3__t_q__a:Y/* | | | 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 | volets volet :N:m:p/* connaissais connaître :V3__t_q__a:Iq:1s:2s/M encor encor :W/C laïcs laïc :N:A:m:p/* proclamée proclamer :V1__t_q_zz:Q:A:f:s/* mécontents mécontent :N:A:m:p/* inclure inclure :V3__t_q__a:Y/* XXVII XXVII :Br:e:p/* pesé peser :V1_it_q_zz:Q:A:1ŝ:m:s/* superposition superposition :N:f:s/* gènes gène :N:m:p/* consultés consulter :V1_it_q_zz:Q:A:m:p/* dédié dédier :V1__t___zz:Q:A:1ŝ:m:s/* ante ante :N:f:s/* mépriser mépriser :V1__t_q_zz:Y/* |
︙ | ︙ | |||
15266 15267 15268 15269 15270 15271 15272 | méditerranéenne méditerranéen :N:A:f:s/* continuée continuer :V1_itn___a:Q:A:f:s/* fanatiques fanatique :N:A:e:p/* astronomiques astronomique :A:e:p/* déférence déférence :N:f:s/* pluralisme pluralisme :N:m:s/* offrandes offrande :N:f:p/* | | | 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 | méditerranéenne méditerranéen :N:A:f:s/* continuée continuer :V1_itn___a:Q:A:f:s/* fanatiques fanatique :N:A:e:p/* astronomiques astronomique :A:e:p/* déférence déférence :N:f:s/* pluralisme pluralisme :N:m:s/* offrandes offrande :N:f:p/* XXVIII XXVIII :Br:e:p/* concave concave :A:e:s/* plongée plongée :N:f:s/* Alençon Alençon :MP:e:i/* Amédée Amédée :M1:e:i/* vanter vanter :V1__t_q_zz:Y/* arrestations arrestation :N:f:p/* révoquer révoquer :V1__t___zz:Y/* |
︙ | ︙ | |||
16352 16353 16354 16355 16356 16357 16358 | sottise sottise :N:f:s/* admire admirer :V1_it_q__a:Ip:Sp:1s:3s/* admire admirer :V1_it_q__a:E:2s/* lira lire :V3_itnq__a:If:3s/* commandeur commandeur :N:m:s/* totaux total :N:A:m:p/* énergétiques énergétique :A:e:p/* | | | 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 | sottise sottise :N:f:s/* admire admirer :V1_it_q__a:Ip:Sp:1s:3s/* admire admirer :V1_it_q__a:E:2s/* lira lire :V3_itnq__a:If:3s/* commandeur commandeur :N:m:s/* totaux total :N:A:m:p/* énergétiques énergétique :A:e:p/* XXIX XXIX :Br:e:p/* coupures coupure :N:f:p/* hectolitre litre :N:m:s/* remettant remettre :V3__tnq__a:P/* cérébrales cérébral :N:A:f:p/* répondra répondre :V3_ixn___a:If:3s/* minoritaires minoritaire :N:A:e:p/* parvinrent parvenir :V3_i_n__e_:Is:3p!/* |
︙ | ︙ | |||
17320 17321 17322 17323 17324 17325 17326 | cigarettes cigarette :N:f:p/* articuler articuler :V1_it_q_zz:Y/* cassure cassure :N:f:s/* certitudes certitude :N:f:p/* pendu pendu :N:m:s/* accoutumée accoutumer :V1__t_q_zz:Q:A:f:s/* emprunteur emprunteur :N:m:s/* | | | 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 | cigarettes cigarette :N:f:p/* articuler articuler :V1_it_q_zz:Y/* cassure cassure :N:f:s/* certitudes certitude :N:f:p/* pendu pendu :N:m:s/* accoutumée accoutumer :V1__t_q_zz:Q:A:f:s/* emprunteur emprunteur :N:m:s/* XXXI XXXI :Br:e:p/* nids nid :N:m:p/* conjointe conjoint :N:f:s/* mécaniciens mécanicien :N:A:m:p/* marteau marteau :A:e:s/* marteau marteau :N:m:s/* ulcères ulcère :N:m:p/* mie mie :N:f:s/* |
︙ | ︙ | |||
18223 18224 18225 18226 18227 18228 18229 | prostituées prostitué :N:f:p/* lèvent lever :V1_it_q_zz:Ip:Sp:3p/* immobilières immobilier :A:f:p/* Fontenelle Fontenelle :M2:e:i/* vedette vedette :N:f:s/* emprisonné emprisonner :V1__t_q_zz:Q:A:1ŝ:m:s/* coûteuses coûteux :A:f:p/M | | | 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 | prostituées prostitué :N:f:p/* lèvent lever :V1_it_q_zz:Ip:Sp:3p/* immobilières immobilier :A:f:p/* Fontenelle Fontenelle :M2:e:i/* vedette vedette :N:f:s/* emprisonné emprisonner :V1__t_q_zz:Q:A:1ŝ:m:s/* coûteuses coûteux :A:f:p/M XL XL :Br:e:p/* nommant nommer :V1__t_q_zz:P/* sélective sélectif :A:f:s/* ambiante ambiant :A:f:s/* diagrammes diagramme :N:m:p/* véracité véracité :N:f:s/* réunissaient réunir :V2_it_q__a:Iq:3p/* installent installer :V1__t_q_zz:Ip:Sp:3p/* |
︙ | ︙ | |||
18484 18485 18486 18487 18488 18489 18490 | perdra perdre :V3_it_q__a:If:3s/* morphine morphine :N:f:s/* remettent remettre :V3__tnq__a:Ip:Sp:3p/* relient relier :V1__t___zz:Ip:Sp:3p/* byzantin byzantin :N:A:m:s/* climatique climatique :A:e:s/* discutés discuter :V1_it_q_zz:Q:A:m:p/* | | | 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 | perdra perdre :V3_it_q__a:If:3s/* morphine morphine :N:f:s/* remettent remettre :V3__tnq__a:Ip:Sp:3p/* relient relier :V1__t___zz:Ip:Sp:3p/* byzantin byzantin :N:A:m:s/* climatique climatique :A:e:s/* discutés discuter :V1_it_q_zz:Q:A:m:p/* XXXII XXXII :Br:e:p/* dissimulé dissimuler :V1_it_q__a:Q:A:1ŝ:m:s/* séditieux séditieux :A:m:i/* édictées édicter :V1__t___zz:Q:A:f:p/* étuve étuve :N:f:s/* immatriculation immatriculation :N:f:s/* haricots haricot :N:m:p/* consonnes consonne :N:f:p/* |
︙ | ︙ | |||
19232 19233 19234 19235 19236 19237 19238 | pat pat :A:e:i/* lances lance :N:f:p/* imaginée imaginer :V1__t_q_zz:Q:A:f:s/* pragmatique pragmatique :A:e:s/* pragmatique pragmatique :N:f:s/* brin brin :N:m:s/* expédiées expédier :V1__t___zz:Q:A:f:p/* | | | 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 | pat pat :A:e:i/* lances lance :N:f:p/* imaginée imaginer :V1__t_q_zz:Q:A:f:s/* pragmatique pragmatique :A:e:s/* pragmatique pragmatique :N:f:s/* brin brin :N:m:s/* expédiées expédier :V1__t___zz:Q:A:f:p/* XXXIII XXXIII :Br:e:p/* Dalmatie Dalmatie :N:f:i/* perfides perfide :N:A:e:p/* déposa déposer :V1_it_q_zz:Is:3s/* extensive extensif :A:f:s/* épi épi :N:m:s/* sceptiques sceptique :A:e:p/* clairvoyance clairvoyance :N:f:s/* |
︙ | ︙ | |||
20125 20126 20127 20128 20129 20130 20131 | descendus descendre :V3_it____a:Q:A:m:p/* compteur compteur :N:m:s/* barils baril :N:m:p/* diffusée diffuser :V1__t_q_zz:Q:A:f:s/* stabiliser stabiliser :V1__t_q_zz:Y/* modélisation modélisation :N:f:s/* circulatoire circulatoire :A:e:s/* | | | 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 | descendus descendre :V3_it____a:Q:A:m:p/* compteur compteur :N:m:s/* barils baril :N:m:p/* diffusée diffuser :V1__t_q_zz:Q:A:f:s/* stabiliser stabiliser :V1__t_q_zz:Y/* modélisation modélisation :N:f:s/* circulatoire circulatoire :A:e:s/* XXXIV XXXIV :Br:e:p/* traité traiter :V1_itxq__a:Q:A:1ŝ:m:s/* traités traiter :V1_itxq__a:Q:A:m:p/* concerné concerner :V1__t____a:Q:A:m:s/* concerné concerné :N:A:m:s/* fécule fécule :N:f:s/* cristallin cristallin :N:m:s/* berbère berbère :N:A:e:s/* |
︙ | ︙ | |||
20422 20423 20424 20425 20426 20427 20428 | glacée glacer :V1_it_q_zz:Q:A:f:s/* convertie convertir :V2_itnq__a:Q:A:f:s/* mandarins mandarin :N:A:m:p/* aristocratiques aristocratique :A:e:p/* analogique analogique :A:e:s/* laurier laurier :N:m:s/* insignifiantes insignifiant :A:f:p/* | | | 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 | glacée glacer :V1_it_q_zz:Q:A:f:s/* convertie convertir :V2_itnq__a:Q:A:f:s/* mandarins mandarin :N:A:m:p/* aristocratiques aristocratique :A:e:p/* analogique analogique :A:e:s/* laurier laurier :N:m:s/* insignifiantes insignifiant :A:f:p/* XXXV XXXV :Br:e:p/* short short :N:m:s/* touffes touffe :N:f:p/* alloués allouer :V1__t_q__a:Q:A:m:p/* prussiens prussien :N:A:m:p/* oubliés oublié :N:m:p/* munis munir :V2__t_q__a:Ip:Is:1s:2s/* munis munir :V2__t_q__a:E:2s/* |
︙ | ︙ | |||
20795 20796 20797 20798 20799 20800 20801 | hémisphères hémisphère :N:m:p/* irrémédiable irrémédiable :A:e:s/* nourrices nourrice :N:f:p/* fausser fausser :V1__t_q_zz:Y/* mutilés mutilé :N:m:p/* achevait achever :V1_it_q__a:Iq:3s/* attentions attention :N:f:p/* | | | 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 | hémisphères hémisphère :N:m:p/* irrémédiable irrémédiable :A:e:s/* nourrices nourrice :N:f:p/* fausser fausser :V1__t_q_zz:Y/* mutilés mutilé :N:m:p/* achevait achever :V1_it_q__a:Iq:3s/* attentions attention :N:f:p/* XXXVI XXXVI :Br:e:p/* consentent consentir :V3_itn___a:Ip:Sp:3p/* atrocités atrocité :N:f:p/* reconnaissable reconnaissable :A:e:s/* cantiques cantique :N:m:p/* maternelles maternel :N:A:f:p/* Corinthe Corinthe :MP:e:i/* sue savoir :V3_it_q__a:Q:A:f:s/* |
︙ | ︙ | |||
21403 21404 21405 21406 21407 21408 21409 | linéaires linéaire :N:m:p/* cobayes cobaye :N:m:p/* loue louer :V1_it_q__a:Ip:Sp:1s:3s/* loue louer :V1_it_q__a:E:2s/* déraisonnable déraisonnable :A:e:s/* servantes servant :N:A:f:p/* navigateur navigateur :N:m:s/* | | | 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 | linéaires linéaire :N:m:p/* cobayes cobaye :N:m:p/* loue louer :V1_it_q__a:Ip:Sp:1s:3s/* loue louer :V1_it_q__a:E:2s/* déraisonnable déraisonnable :A:e:s/* servantes servant :N:A:f:p/* navigateur navigateur :N:m:s/* voilée voiler :V1_it_q__a:Q:A:f:s/* perspicacité perspicacité :N:f:s/* aimons aimer :V1_it_q__a:Ip:1p/* aimons aimer :V1_it_q__a:E:1p/* acclimatation acclimatation :N:f:s/* autogestion autogestion :N:f:s/* accordera accorder :V1__tnq__a:If:3s/* trust trust :N:m:s/* |
︙ | ︙ | |||
21721 21722 21723 21724 21725 21726 21727 | différenciés différencier :V1__t_q_zz:Q:A:m:p/* assujettir assujettir :V2__tnq__a:Y/* inouï inouï :A:m:s/* signala signaler :V1__tnq__a:Is:3s/* grandioses grandiose :A:e:p/* crus cru :A:m:p/* crus cru :N:m:p/* | | | 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 | différenciés différencier :V1__t_q_zz:Q:A:m:p/* assujettir assujettir :V2__tnq__a:Y/* inouï inouï :A:m:s/* signala signaler :V1__tnq__a:Is:3s/* grandioses grandiose :A:e:p/* crus cru :A:m:p/* crus cru :N:m:p/* XXXVII XXXVII :Br:e:p/* contourner contourner :V1__t___zz:Y/* masqué masquer :V1_it_q_zz:Q:A:1ŝ:m:s/* subrogation subrogation :N:f:s/* comparution comparution :N:f:s/* mémorables mémorable :A:e:p/* professer professer :V1_it___zz:Y/* Esther Esther :M1:f:i/* |
︙ | ︙ | |||
22580 22581 22582 22583 22584 22585 22586 | falsification falsification :N:f:s/* pèlerin pèlerin :N:m:s/* boutures bouture :N:f:p/* convoitises convoitise :N:f:p/* breveté breveter :V1__t___zz:Q:A:1ŝ:m:s/* excitabilité excitabilité :N:f:s/* naïfs naïf :N:A:m:p/* | | | 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 | falsification falsification :N:f:s/* pèlerin pèlerin :N:m:s/* boutures bouture :N:f:p/* convoitises convoitise :N:f:p/* breveté breveter :V1__t___zz:Q:A:1ŝ:m:s/* excitabilité excitabilité :N:f:s/* naïfs naïf :N:A:m:p/* XXXVIII XXXVIII :Br:e:p/* cordialité cordialité :N:f:s/* récoltés récolter :V1__t_q_zz:Q:A:m:p/* parente parent :N:A:f:s/* dorées doré :N:f:p/* prescrivant prescrire :V3_it_q__a:P/* adjudications adjudication :N:f:p/* risqué risquer :V1__t_q_zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
23129 23130 23131 23132 23133 23134 23135 | emparée emparer :V1____p_e_:Q:A:f:s/* bracelets bracelet :N:m:p/* feutre feutre :N:m:s/* laide laid :N:A:f:s/* avisés aviser :V1_it_q_zz:Q:A:m:p/* Théodose Théodose :M1:m:i/* déficitaire déficitaire :A:e:s/* | | | 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 | emparée emparer :V1____p_e_:Q:A:f:s/* bracelets bracelet :N:m:p/* feutre feutre :N:m:s/* laide laid :N:A:f:s/* avisés aviser :V1_it_q_zz:Q:A:m:p/* Théodose Théodose :M1:m:i/* déficitaire déficitaire :A:e:s/* XXXIX XXXIX :Br:e:p/* alimente alimenter :V1__tnq__a:Ip:Sp:1s:3s/* alimente alimenter :V1__tnq__a:E:2s/* mitraille mitraille :N:f:s/* partage partager :V1_itnq__a:Ip:Sp:1s:3s/* partage partager :V1_itnq__a:E:2s/* émergent émerger :V1_i_____a:Ip:Sp:3p/* communiqua communiquer :V1_it_q_zz:Is:3s/* |
︙ | ︙ | |||
25604 25605 25606 25607 25608 25609 25610 | mue mue :N:f:s/* portier portier :N:A:m:s/* dénués dénuer :V1____p_e_:Q:A:m:p/* élancer élancer :V1_it_q_zz:Y/* muriate muriate :N:m:s/* imaginés imaginer :V1__t_q_zz:Q:A:m:p/* villageoises villageois :N:A:f:p/* | | | 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 | mue mue :N:f:s/* portier portier :N:A:m:s/* dénués dénuer :V1____p_e_:Q:A:m:p/* élancer élancer :V1_it_q_zz:Y/* muriate muriate :N:m:s/* imaginés imaginer :V1__t_q_zz:Q:A:m:p/* villageoises villageois :N:A:f:p/* voilé voiler :V1_it_q__a:Q:A:1ŝ:m:s/* victorieuses victorieux :A:f:p/* favorite favorite :A:e:s/* favorite favorite :N:f:s/* comptées compter :V1_it_q_zz:Q:A:f:p/* continuerait continuer :V1_itn___a:K:3s/* marabout marabout :N:m:s/* Peugeot Peugeot :M2:e:i/* |
︙ | ︙ | |||
27329 27330 27331 27332 27333 27334 27335 | sectorielles sectoriel :A:f:p/* ammoniacal ammoniacal :A:m:s/* medium medium :N:m:s/C avertis avertir :V2__t____a:Ip:Is:1s:2s/* avertis avertir :V2__t____a:E:2s/* avertis avertir :V2__t____a:Q:A:m:p/* porteraient porter :V1_itnq_zz:K:3p/* | | | 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 | sectorielles sectoriel :A:f:p/* ammoniacal ammoniacal :A:m:s/* medium medium :N:m:s/C avertis avertir :V2__t____a:Ip:Is:1s:2s/* avertis avertir :V2__t____a:E:2s/* avertis avertir :V2__t____a:Q:A:m:p/* porteraient porter :V1_itnq_zz:K:3p/* voiler voiler :V1_it_q__a:Y/* exhorter exhorter :V1__t_q_zz:Y/* avouent avouer :V1__t_q_zz:Ip:Sp:3p/* aérodrome aérodrome :N:m:s/* imprévisibles imprévisible :A:e:p/* laborieusement laborieusement :W/* terrier terrier :N:m:s/* enregistrent enregistrer :V1__t_q_zz:Ip:Sp:3p/* |
︙ | ︙ | |||
28468 28469 28470 28471 28472 28473 28474 | dégageait dégager :V1_it_q_zz:Iq:3s/* attendues attendre :V3_itnq__a:Q:A:f:p/* contention contention :N:f:s/* rayer rayer :V1__t_q_zz:Y/* mutilations mutilation :N:f:p/* déchus déchu :N:m:p/* multiforme multiforme :A:e:s/* | | | 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 | dégageait dégager :V1_it_q_zz:Iq:3s/* attendues attendre :V3_itnq__a:Q:A:f:p/* contention contention :N:f:s/* rayer rayer :V1__t_q_zz:Y/* mutilations mutilation :N:f:p/* déchus déchu :N:m:p/* multiforme multiforme :A:e:s/* XLI XLI :Br:e:p/* torpilles torpille :N:f:p/* vicié vicier :V1_it___zz:Q:A:1ŝ:m:s/* restitués restituer :V1__t___zz:Q:A:m:p/* standards standard :A:e:p/* standards standard :N:m:p/* Bangui Bangui :MP:e:i/* capitulaire capitulaire :N:A:e:s/* |
︙ | ︙ | |||
29761 29762 29763 29764 29765 29766 29767 | strié strier :V1__t___zz:Q:A:1ŝ:m:s/* promets promettre :V3_itnq__a:Ip:1s:2s/* promets promettre :V3_itnq__a:E:2s/* aggravent aggraver :V1__t_q_zz:Ip:Sp:3p/* échappèrent échapper :V1_itnq_zz:Is:3p!/* apostasie apostasie :N:f:s/* parcouraient parcourir :V3__t____a:Iq:3p/* | | | 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 | strié strier :V1__t___zz:Q:A:1ŝ:m:s/* promets promettre :V3_itnq__a:Ip:1s:2s/* promets promettre :V3_itnq__a:E:2s/* aggravent aggraver :V1__t_q_zz:Ip:Sp:3p/* échappèrent échapper :V1_itnq_zz:Is:3p!/* apostasie apostasie :N:f:s/* parcouraient parcourir :V3__t____a:Iq:3p/* XLII XLII :Br:e:p/* démarrer démarrer :V1_it___zz:Y/* Swift Swift :M2:e:i/* Pennsylvanie Pennsylvanie :N:f:i/* supplique supplique :N:f:s/* campé camper :V1_i__q_zz:Q:A:1ŝ:m:s/* courtoise courtois :A:f:s/* épîtres épître :N:f:p/M |
︙ | ︙ | |||
30848 30849 30850 30851 30852 30853 30854 | Boccace Boccace :M2:e:i/* immutabilité immutabilité :N:f:s/* putsch putsch :N:m:s/* pesantes pesant :A:f:p/* curative curatif :A:f:s/* étals étal :N:m:p/* épuré épurer :V1__t_q_zz:Q:A:1ŝ:m:s/* | | | 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 | Boccace Boccace :M2:e:i/* immutabilité immutabilité :N:f:s/* putsch putsch :N:m:s/* pesantes pesant :A:f:p/* curative curatif :A:f:s/* étals étal :N:m:p/* épuré épurer :V1__t_q_zz:Q:A:1ŝ:m:s/* XLIV XLIV :Br:e:p/* escales escale :N:f:p/* érable érable :N:m:s/* égare égarer :V1__t_q_zz:Ip:Sp:1s:3s/* égare égarer :V1__t_q_zz:E:2s/* establishment establishment :N:m:s/* monceaux monceau :N:m:p/* flotteur flotteur :N:m:s/* |
︙ | ︙ | |||
31393 31394 31395 31396 31397 31398 31399 | multicolores multicolore :A:e:p/* prosaïque prosaïque :A:e:s/* provoquera provoquer :V1__t_q_zz:If:3s/* conductrice conducteur :N:A:f:s/* promulguées promulguer :V1__t___zz:Q:A:f:p/* cessez cesser :V1_it____a:Ip:2p/* cessez cesser :V1_it____a:E:2p/* | | | 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 | multicolores multicolore :A:e:p/* prosaïque prosaïque :A:e:s/* provoquera provoquer :V1__t_q_zz:If:3s/* conductrice conducteur :N:A:f:s/* promulguées promulguer :V1__t___zz:Q:A:f:p/* cessez cesser :V1_it____a:Ip:2p/* cessez cesser :V1_it____a:E:2p/* XLIII XLIII :Br:e:p/* édifiés édifier :V1_it___zz:Q:A:m:p/* graphiquement graphiquement :W/* reportés reporter :V1__t_q_zz:Q:A:m:p/* sinistrés sinistré :N:A:m:p/* corset corset :N:m:s/* cruche cruche :N:f:s/* lisières lisière :N:f:p/* |
︙ | ︙ | |||
31555 31556 31557 31558 31559 31560 31561 | ajoutez ajouter :V1_itnq__a:E:2p/* prodigieuses prodigieux :A:f:p/* interpénétration interpénétration :N:f:s/* prosélytes prosélyte :N:e:p/* prêchent prêcher :V1_it___zz:Ip:Sp:3p/* voua vouer :V1__t_q_zz:Is:3s/* pg g :N:m:i;S/* | | | 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 | ajoutez ajouter :V1_itnq__a:E:2p/* prodigieuses prodigieux :A:f:p/* interpénétration interpénétration :N:f:s/* prosélytes prosélyte :N:e:p/* prêchent prêcher :V1_it___zz:Ip:Sp:3p/* voua vouer :V1__t_q_zz:Is:3s/* pg g :N:m:i;S/* XLV XLV :Br:e:p/* Dorothée Dorothée :M1:f:i/* subsista subsister :V1_i____zz:Is:3s/* abrogés abroger :V1_it____a:Q:A:m:p/* Aziz Aziz :M1:m:i/* réfrigération réfrigération :N:f:s/* mimétisme mimétisme :N:m:s/* appelez appeler :V1_itnq__a:Ip:2p/* |
︙ | ︙ | |||
32703 32704 32705 32706 32707 32708 32709 | croup croup :N:m:s/* combattirent combattre :V3_itn___a:Is:3p!/* athénienne athénien :N:A:f:s/* eschatologique eschatologique :A:e:s/* convalescents convalescent :N:A:m:p/* retrouvailles retrouvaille :N:f:p/* faïences faïence :N:f:p/* | | | 32704 32705 32706 32707 32708 32709 32710 32711 32712 32713 32714 32715 32716 32717 32718 | croup croup :N:m:s/* combattirent combattre :V3_itn___a:Is:3p!/* athénienne athénien :N:A:f:s/* eschatologique eschatologique :A:e:s/* convalescents convalescent :N:A:m:p/* retrouvailles retrouvaille :N:f:p/* faïences faïence :N:f:p/* voilées voiler :V1_it_q__a:Q:A:f:p/* MN N :N:m:i;S/* recevons recevoir :V3_it_q__a:Ip:1p/* recevons recevoir :V3_it_q__a:E:1p/* contrariétés contrariété :N:f:p/* jugeons juger :V1_itn___a:Ip:1p/* jugeons juger :V1_itn___a:E:1p/* fourbe fourbe :N:A:e:s/* |
︙ | ︙ | |||
33847 33848 33849 33850 33851 33852 33853 33854 33855 33856 33857 33858 33859 33860 | amulettes amulette :N:f:p/* voluptueuse voluptueux :N:A:f:s/* clientèles clientèle :N:f:p/* mitoyen mitoyen :A:m:s/* liesse liesse :N:f:s/* poudingue poudingue :N:m:s/* regrettera regretter :V1__t___zz:If:3s/* passez passer :V1_itnq__a:Ip:2p/* passez passer :V1_itnq__a:E:2p/* partons partir :V3_i____e_:Ip:1p/* partons partir :V3_i____e_:E:1p/* envahirent envahir :V2_it____a:Is:3p!/* mélangeant mélanger :V1_it_q__a:P/* corail corail :N:m:s/* | > | 33848 33849 33850 33851 33852 33853 33854 33855 33856 33857 33858 33859 33860 33861 33862 | amulettes amulette :N:f:p/* voluptueuse voluptueux :N:A:f:s/* clientèles clientèle :N:f:p/* mitoyen mitoyen :A:m:s/* liesse liesse :N:f:s/* poudingue poudingue :N:m:s/* regrettera regretter :V1__t___zz:If:3s/* Franconie Franconie :N:f:i/* passez passer :V1_itnq__a:Ip:2p/* passez passer :V1_itnq__a:E:2p/* partons partir :V3_i____e_:Ip:1p/* partons partir :V3_i____e_:E:1p/* envahirent envahir :V2_it____a:Is:3p!/* mélangeant mélanger :V1_it_q__a:P/* corail corail :N:m:s/* |
︙ | ︙ | |||
34538 34539 34540 34541 34542 34543 34544 | continuerons continuer :V1_itn___a:If:1p/* enrichies enrichir :V2__t_q__a:Q:A:f:p/* perturbateur perturbateur :N:A:m:s/* interprétatif interprétatif :A:m:s/* plaisanter plaisanter :V1_it___zz:Y/* inhibiteur inhibiteur :N:A:m:s/* bavaroise bavarois :N:A:f:s/* | | | 34540 34541 34542 34543 34544 34545 34546 34547 34548 34549 34550 34551 34552 34553 34554 | continuerons continuer :V1_itn___a:If:1p/* enrichies enrichir :V2__t_q__a:Q:A:f:p/* perturbateur perturbateur :N:A:m:s/* interprétatif interprétatif :A:m:s/* plaisanter plaisanter :V1_it___zz:Y/* inhibiteur inhibiteur :N:A:m:s/* bavaroise bavarois :N:A:f:s/* XLVI XLVI :Br:e:p/* diesel diesel :N:m:s/M évitées éviter :V1__tnq_zz:Q:A:f:p/* expérimentées expérimenter :V1_it___zz:Q:A:f:p/* chefferies chefferie :N:f:p/* philanthropes philanthrope :N:e:p/* philologiques philologique :A:e:p/* individualisé individualiser :V1__t_q_zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
34706 34707 34708 34709 34710 34711 34712 | redevint redevenir :V3_i____e_:Is:3s/* chevaline chevalin :A:f:s/* édiles édile :N:m:p/* finesses finesse :N:f:p/* fédérées fédérer :V1__t_q_zz:Q:A:f:p/* libations libation :N:f:p/* virtuels virtuel :A:m:p/* | | | 34708 34709 34710 34711 34712 34713 34714 34715 34716 34717 34718 34719 34720 34721 34722 | redevint redevenir :V3_i____e_:Is:3s/* chevaline chevalin :A:f:s/* édiles édile :N:m:p/* finesses finesse :N:f:p/* fédérées fédérer :V1__t_q_zz:Q:A:f:p/* libations libation :N:f:p/* virtuels virtuel :A:m:p/* XLIX XLIX :Br:e:p/* danoises danois :N:A:f:p/* suspendant suspendre :V3_it_q__a:P/* napoléonien napoléonien :N:A:m:s/* fléchisseurs fléchisseur :N:m:p/* congréganistes congréganiste :N:A:e:p/* lavis lavis :N:m:i/* enjoignant enjoindre :V3__tn___a:P/* |
︙ | ︙ | |||
35353 35354 35355 35356 35357 35358 35359 | polluants polluant :N:m:p/* oreillettes oreillette :N:f:p/* vivions vivre :V3_it____a:Iq:Sp:1p/* métabolique métabolique :A:e:s/* disséminée disséminer :V1__t_q_zz:Q:A:f:s/* péremptoires péremptoire :A:e:p/* maitres maitre :N:A:T:m:p/R | | | | 35355 35356 35357 35358 35359 35360 35361 35362 35363 35364 35365 35366 35367 35368 35369 35370 35371 35372 35373 35374 35375 35376 35377 35378 35379 35380 35381 35382 35383 35384 35385 35386 35387 35388 35389 35390 | polluants polluant :N:m:p/* oreillettes oreillette :N:f:p/* vivions vivre :V3_it____a:Iq:Sp:1p/* métabolique métabolique :A:e:s/* disséminée disséminer :V1__t_q_zz:Q:A:f:s/* péremptoires péremptoire :A:e:p/* maitres maitre :N:A:T:m:p/R XLVIII XLVIII :Br:e:p/* rassurantes rassurant :A:f:p/* lavant laver :V1__t_q_zz:P/* ohms ohm :N:m:p/* hésitants hésitant :N:A:m:p/* admira admirer :V1_it_q__a:Is:3s/* déblayer déblayer :V1__t___zz:Y/* levai lever :V1_it_q_zz:Is:1s/* indigner indigner :V1__t_q_zz:Y/* enterrements enterrement :N:m:p/* analphabètes analphabète :N:e:p/* mûres mûr :A:f:p/M mûres mûre :N:f:p/M boucheries boucherie :N:f:p/* sers servir :V3_itnq__a:Ip:1s:2s/* sers servir :V3_itnq__a:E:2s/* layer layer :V1__t___zz:Y/* inutilisables inutilisable :A:e:p/* insondable insondable :A:e:s/* belliqueuses belliqueux :A:f:p/* contestataires contestataire :N:e:p/* voila voiler :V1_it_q__a:Is:3s/* abstenus abstenir :V3____p_e_:Q:A:m:p/* Sharon Sharon :M1:f:i/* accouru accourir :V3_i_____a:Q:A:m:s/* déterminerait déterminer :V1__t_q_zz:K:3s/* prisonnières prisonnier :N:A:f:p/* adoucie adoucir :V2__t_q__a:Q:A:f:s/* hachures hachure :N:f:p/* |
︙ | ︙ | |||
35632 35633 35634 35635 35636 35637 35638 | agiles agile :A:e:p/* remboursée rembourser :V1_it_q__a:Q:A:f:s/* ers ers :N:m:i/* Puebla Puebla :MP:e:i/* Lisa Lisa :M1:f:i/* réfugie réfugier :V1____p_e_:Ip:Sp:1s:3s/* réfugie réfugier :V1____p_e_:E:2s/* | | | 35634 35635 35636 35637 35638 35639 35640 35641 35642 35643 35644 35645 35646 35647 35648 | agiles agile :A:e:p/* remboursée rembourser :V1_it_q__a:Q:A:f:s/* ers ers :N:m:i/* Puebla Puebla :MP:e:i/* Lisa Lisa :M1:f:i/* réfugie réfugier :V1____p_e_:Ip:Sp:1s:3s/* réfugie réfugier :V1____p_e_:E:2s/* XLVII XLVII :Br:e:p/* polémiste polémiste :N:e:s/* attachèrent attacher :V1_itnq__a:Is:3p!/* postés poster :V1__t_q_zz:Q:A:m:p/* sigles sigle :N:m:p/* avenu avenu :A:m:s/* toxicomanie toxicomanie :N:f:s/* robustesse robustesse :N:f:s/* |
︙ | ︙ | |||
39419 39420 39421 39422 39423 39424 39425 | bibelots bibelot :N:m:p/* jetai jeter :V1_itnq__a:Is:1s/* réglementées réglementer :V1__t___zz:Q:A:f:p/M laxisme laxisme :N:m:s/* théodicée théodicée :N:f:s/* épidémiologique épidémiologique :A:e:s/* intercommunale intercommunal :A:f:s/* | | | 39421 39422 39423 39424 39425 39426 39427 39428 39429 39430 39431 39432 39433 39434 39435 | bibelots bibelot :N:m:p/* jetai jeter :V1_itnq__a:Is:1s/* réglementées réglementer :V1__t___zz:Q:A:f:p/M laxisme laxisme :N:m:s/* théodicée théodicée :N:f:s/* épidémiologique épidémiologique :A:e:s/* intercommunale intercommunal :A:f:s/* voilés voiler :V1_it_q__a:Q:A:m:p/* socioéconomique socioéconomique :A:e:s/R pintes pinte :N:f:p/* déjeunes déjeuner :V1_i____zz:Ip:Sp:2s/* monachisme monachisme :N:m:s/* moire moire :N:f:s/* réprouvés réprouvé :N:m:p/* dotant doter :V1__t_q_zz:P/* |
︙ | ︙ | |||
44199 44200 44201 44202 44203 44204 44205 44206 44207 44208 44209 44210 44211 44212 | chercheraient chercher :V1_it_q__a:K:3p/* homosexuelle homosexuel :N:A:f:s/* UV UV :N:e:i/* flic flic :N:m:s/* trappes trappe :N:f:p/* manipulés manipuler :V1__t___zz:Q:A:m:p/* mamans maman :N:T:f:p/* houleuse houleux :A:f:s/* tisse tisser :V1__t___zz:Ip:Sp:1s:3s/* tisse tisser :V1__t___zz:E:2s/* krach krach :N:m:s/* défendons défendre :V3_itnq__a:Ip:1p/* défendons défendre :V3_itnq__a:E:1p/* dispendieuses dispendieux :A:f:p/* | > | 44201 44202 44203 44204 44205 44206 44207 44208 44209 44210 44211 44212 44213 44214 44215 | chercheraient chercher :V1_it_q__a:K:3p/* homosexuelle homosexuel :N:A:f:s/* UV UV :N:e:i/* flic flic :N:m:s/* trappes trappe :N:f:p/* manipulés manipuler :V1__t___zz:Q:A:m:p/* mamans maman :N:T:f:p/* Francie Francie :N:f:i/* houleuse houleux :A:f:s/* tisse tisser :V1__t___zz:Ip:Sp:1s:3s/* tisse tisser :V1__t___zz:E:2s/* krach krach :N:m:s/* défendons défendre :V3_itnq__a:Ip:1p/* défendons défendre :V3_itnq__a:E:1p/* dispendieuses dispendieux :A:f:p/* |
︙ | ︙ | |||
45062 45063 45064 45065 45066 45067 45068 45069 45070 45071 45072 45073 45074 45075 | abolis abolir :V2_it____a:Ip:Is:1s:2s/* abolis abolir :V2_it____a:E:2s/* abolis abolir :V2_it____a:Q:A:m:p/* arabisation arabisation :N:f:s/* Harald Harald :M1:m:i/* cocher cocher :N:A:m:s/* perfectionna perfectionner :V1__t_q_zz:Is:3s/* pointant pointer :V1_it_q_zz:P/* resto resto :N:m:s/* saignement saignement :N:m:s/* fréquenta fréquenter :V1_it_q_zz:Is:3s/* tonal tonal :A:m:s/* enfiler enfiler :V1__t_q_zz:Y/* intériorisé intérioriser :V1__t___zz:Q:A:1ŝ:m:s/* | > | 45065 45066 45067 45068 45069 45070 45071 45072 45073 45074 45075 45076 45077 45078 45079 | abolis abolir :V2_it____a:Ip:Is:1s:2s/* abolis abolir :V2_it____a:E:2s/* abolis abolir :V2_it____a:Q:A:m:p/* arabisation arabisation :N:f:s/* Harald Harald :M1:m:i/* cocher cocher :N:A:m:s/* perfectionna perfectionner :V1__t_q_zz:Is:3s/* Mohammad Mohammad :M1:m:i/* pointant pointer :V1_it_q_zz:P/* resto resto :N:m:s/* saignement saignement :N:m:s/* fréquenta fréquenter :V1_it_q_zz:Is:3s/* tonal tonal :A:m:s/* enfiler enfiler :V1__t_q_zz:Y/* intériorisé intérioriser :V1__t___zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
46261 46262 46263 46264 46265 46266 46267 46268 46269 46270 46271 46272 46273 46274 | étagées étager :V1__t_q_zz:Q:A:f:p/* possédais posséder :V1__t_q__a:Iq:1s:2s/* ignorances ignorance :N:f:p/* parkings parking :N:m:p/* pestes peste :N:f:p/* pillant piller :V1__t___zz:P/* amarré amarrer :V1__t_q_zz:Q:A:1ŝ:m:s/* questeurs questeur :N:m:p/* pariétales pariétal :N:A:f:p/* Barlow Barlow :M2:e:i/* épiphyse épiphyse :N:f:s/* englobait englober :V1__t___zz:Iq:3s/* vieillies vieillir :V2_it_q__a:Q:A:f:p/* futuristes futuriste :N:A:e:p/* | > | 46265 46266 46267 46268 46269 46270 46271 46272 46273 46274 46275 46276 46277 46278 46279 | étagées étager :V1__t_q_zz:Q:A:f:p/* possédais posséder :V1__t_q__a:Iq:1s:2s/* ignorances ignorance :N:f:p/* parkings parking :N:m:p/* pestes peste :N:f:p/* pillant piller :V1__t___zz:P/* amarré amarrer :V1__t_q_zz:Q:A:1ŝ:m:s/* Reichswehr Reichswehr :N:f:i/* questeurs questeur :N:m:p/* pariétales pariétal :N:A:f:p/* Barlow Barlow :M2:e:i/* épiphyse épiphyse :N:f:s/* englobait englober :V1__t___zz:Iq:3s/* vieillies vieillir :V2_it_q__a:Q:A:f:p/* futuristes futuriste :N:A:e:p/* |
︙ | ︙ | |||
49752 49753 49754 49755 49756 49757 49758 | indiciaire indiciaire :A:e:s/* trie trier :V1__t___zz:Ip:Sp:1s:3s/* trie trier :V1__t___zz:E:2s/* reculons reculons :Ŵ/* redressements redressement :N:m:p/* warrants warrant :N:m:p/* expectation expectation :N:f:s/* | | | 49757 49758 49759 49760 49761 49762 49763 49764 49765 49766 49767 49768 49769 49770 49771 | indiciaire indiciaire :A:e:s/* trie trier :V1__t___zz:Ip:Sp:1s:3s/* trie trier :V1__t___zz:E:2s/* reculons reculons :Ŵ/* redressements redressement :N:m:p/* warrants warrant :N:m:p/* expectation expectation :N:f:s/* voilent voiler :V1_it_q__a:Ip:Sp:3p/* plaignante plaignant :N:A:f:s/* entrevit entrevoir :V3__t_q__a:Is:3s/* kaki kaki :A:e:i/* plissés plisser :V1_it_q_zz:Q:A:m:p/* quêter quêter :V1_it___zz:Y/* expo expo :N:f:s/* moissonneuses moissonneur :N:f:p/* |
︙ | ︙ | |||
51308 51309 51310 51311 51312 51313 51314 51315 51316 51317 51318 51319 51320 51321 | Tyler Tyler :M1:m:i/* Roulers Roulers :MP:e:i/* alidade alidade :N:f:s/* pyjama pyjama :N:m:s/* accélérées accélérer :V1_it_q_zz:Q:A:f:p/* pressentant pressentir :V3__t____a:P/* enrobés enrober :V1__t_q_zz:Q:A:m:p/* affiche afficher :V1__t_q_zz:Ip:Sp:1s:3s/* affiche afficher :V1__t_q_zz:E:2s/* affiches afficher :V1__t_q_zz:Ip:Sp:2s/* agonisant agoniser :V1_i____zz:P/* collectionner collectionner :V1__t___zz:Y/* retiendrai retenir :V3_it_q__a:If:1s/* embrassements embrassement :N:m:p/* | > | 51313 51314 51315 51316 51317 51318 51319 51320 51321 51322 51323 51324 51325 51326 51327 | Tyler Tyler :M1:m:i/* Roulers Roulers :MP:e:i/* alidade alidade :N:f:s/* pyjama pyjama :N:m:s/* accélérées accélérer :V1_it_q_zz:Q:A:f:p/* pressentant pressentir :V3__t____a:P/* enrobés enrober :V1__t_q_zz:Q:A:m:p/* Wurtzbourg Wurtzbourg :MP:f:i/* affiche afficher :V1__t_q_zz:Ip:Sp:1s:3s/* affiche afficher :V1__t_q_zz:E:2s/* affiches afficher :V1__t_q_zz:Ip:Sp:2s/* agonisant agoniser :V1_i____zz:P/* collectionner collectionner :V1__t___zz:Y/* retiendrai retenir :V3_it_q__a:If:1s/* embrassements embrassement :N:m:p/* |
︙ | ︙ | |||
56860 56861 56862 56863 56864 56865 56866 | dévaluer dévaluer :V1__t_q_zz:Y/* entassait entasser :V1__t_q_zz:Iq:3s/* frôlement frôlement :N:m:s/* gonflant gonfler :V1_it_q_zz:P/* impertinences impertinence :N:f:p/* piémontaises piémontais :N:A:f:p/* départie départir :V3__t_q__a:Q:A:f:s/* | | | 56866 56867 56868 56869 56870 56871 56872 56873 56874 56875 56876 56877 56878 56879 56880 | dévaluer dévaluer :V1__t_q_zz:Y/* entassait entasser :V1__t_q_zz:Iq:3s/* frôlement frôlement :N:m:s/* gonflant gonfler :V1_it_q_zz:P/* impertinences impertinence :N:f:p/* piémontaises piémontais :N:A:f:p/* départie départir :V3__t_q__a:Q:A:f:s/* voilait voiler :V1_it_q__a:Iq:3s/* charmant charmer :V1_it____a:P/* condiment condiment :N:m:s/* sapé saper :V1__t_q_zz:Q:A:1ŝ:m:s/* bombarde bombarde :N:f:s/* bordages bordage :N:m:p/* arsénique arsénique :A:e:s/* vannage vannage :N:m:s/* |
︙ | ︙ | |||
58721 58722 58723 58724 58725 58726 58727 | cabalistiques cabalistique :A:e:p/* demeurons demeurer :V1_i_____a:Ip:1p/* demeurons demeurer :V1_i_____a:E:1p/* levez lever :V1_it_q_zz:Ip:2p/* levez lever :V1_it_q_zz:E:2p/* trials trial :N:m:p/* fatiguant fatiguer :V1_it_q_zz:P/* | | | 58727 58728 58729 58730 58731 58732 58733 58734 58735 58736 58737 58738 58739 58740 58741 | cabalistiques cabalistique :A:e:p/* demeurons demeurer :V1_i_____a:Ip:1p/* demeurons demeurer :V1_i_____a:E:1p/* levez lever :V1_it_q_zz:Ip:2p/* levez lever :V1_it_q_zz:E:2p/* trials trial :N:m:p/* fatiguant fatiguer :V1_it_q_zz:P/* voilant voiler :V1_it_q__a:P/* colorait colorer :V1__t_q_zz:Iq:3s/* joujoux joujou :N:m:p/* chromatophores chromatophore :N:m:p/* misa miser :V1_it___zz:Is:3s/* entacher entacher :V1__t___zz:Y/* jaillissant jaillir :V2_i_____a:P/* Enzo Enzo :M1:m:i/* |
︙ | ︙ | |||
60867 60868 60869 60870 60871 60872 60873 60874 60875 60876 60877 60878 60879 60880 | défigurées défigurer :V1__t_q_zz:Q:A:f:p/* polyarthrite polyarthrite :N:f:s/* hypocrisies hypocrisie :N:f:p/* éveillera éveiller :V1__t_q_zz:If:3s/* miroitement miroitement :N:m:s/* SMS SMS :N:m:i/* citrouille citrouille :N:f:s/* dégazage dégazage :N:m:s/* fondions fondre :V3_it_q__a:Iq:Sp:1p/* dilettantes dilettante :N:e:p/* Mombasa Mombasa :MP:e:i/* fucus fucus :N:m:i/* Finn Finn :M1:m:i/* supposerai supposer :V1_it____a:If:1s/* | > | 60873 60874 60875 60876 60877 60878 60879 60880 60881 60882 60883 60884 60885 60886 60887 | défigurées défigurer :V1__t_q_zz:Q:A:f:p/* polyarthrite polyarthrite :N:f:s/* hypocrisies hypocrisie :N:f:p/* éveillera éveiller :V1__t_q_zz:If:3s/* miroitement miroitement :N:m:s/* SMS SMS :N:m:i/* citrouille citrouille :N:f:s/* Frederik Frederik :M1:m:i/* dégazage dégazage :N:m:s/* fondions fondre :V3_it_q__a:Iq:Sp:1p/* dilettantes dilettante :N:e:p/* Mombasa Mombasa :MP:e:i/* fucus fucus :N:m:i/* Finn Finn :M1:m:i/* supposerai supposer :V1_it____a:If:1s/* |
︙ | ︙ | |||
62283 62284 62285 62286 62287 62288 62289 62290 62291 62292 62293 62294 62295 62296 | frissonnant frissonner :V1_i____zz:P/* compressif compressif :A:m:s/* engouffre engouffrer :V1__t_q_zz:Ip:Sp:1s:3s/* engouffre engouffrer :V1__t_q_zz:E:2s/* souriantes souriant :A:f:p/* appréhendant appréhender :V1__t____a:P/* succulentes succulent :A:f:p/* hypoxie hypoxie :N:f:s/* imbriquent imbriquer :V1__t_q_zz:Ip:Sp:3p/* relayant relayer :V1_it_q_zz:P/* surmonta surmonter :V1__t_q_zz:Is:3s/* ecce ecce :N:m:i/* comtat comtat :N:m:s/* démasqués démasquer :V1__t_q_zz:Q:A:m:p/* | > | 62290 62291 62292 62293 62294 62295 62296 62297 62298 62299 62300 62301 62302 62303 62304 | frissonnant frissonner :V1_i____zz:P/* compressif compressif :A:m:s/* engouffre engouffrer :V1__t_q_zz:Ip:Sp:1s:3s/* engouffre engouffrer :V1__t_q_zz:E:2s/* souriantes souriant :A:f:p/* appréhendant appréhender :V1__t____a:P/* succulentes succulent :A:f:p/* Jens Jens :M1:m:i/* hypoxie hypoxie :N:f:s/* imbriquent imbriquer :V1__t_q_zz:Ip:Sp:3p/* relayant relayer :V1_it_q_zz:P/* surmonta surmonter :V1__t_q_zz:Is:3s/* ecce ecce :N:m:i/* comtat comtat :N:m:s/* démasqués démasquer :V1__t_q_zz:Q:A:m:p/* |
︙ | ︙ | |||
64009 64010 64011 64012 64013 64014 64015 | mycéliens mycélien :A:m:p/* renonceraient renoncer :V1_itn___a:K:3p/* fatalistes fataliste :N:e:p/* pondéreux pondéreux :A:m:i/* similarités similarité :N:f:p/* chauffages chauffage :N:m:p/* djihad djihad :N:m:s/* | | | | | 64017 64018 64019 64020 64021 64022 64023 64024 64025 64026 64027 64028 64029 64030 64031 64032 64033 | mycéliens mycélien :A:m:p/* renonceraient renoncer :V1_itn___a:K:3p/* fatalistes fataliste :N:e:p/* pondéreux pondéreux :A:m:i/* similarités similarité :N:f:p/* chauffages chauffage :N:m:p/* djihad djihad :N:m:s/* voile voiler :V1_it_q__a:Ip:Sp:1s:3s/* voile voiler :V1_it_q__a:E:2s/* voiles voiler :V1_it_q__a:Ip:Sp:2s/* roof roof :N:m:s/C séropositifs séropositif :N:A:m:p/* renonçons renoncer :V1_itn___a:Ip:1p/* renonçons renoncer :V1_itn___a:E:1p/* jaunissement jaunissement :N:m:s/* indues indu :A:f:p/* pugilat pugilat :N:m:s/* |
︙ | ︙ | |||
65802 65803 65804 65805 65806 65807 65808 65809 65810 65811 65812 65813 65814 65815 | Dirichlet Dirichlet :M2:e:i/* organiseront organiser :V1__t_q_zz:If:3p!/* spécule spéculer :V1_i____zz:Ip:Sp:1s:3s/* spécule spéculer :V1_i____zz:E:2s/* inaccessibilité inaccessibilité :N:f:s/* froncés froncer :V1__t_q_zz:Q:A:m:p/* khalifat khalifat :N:m:s/C cabanon cabanon :N:m:s/* assouvie assouvir :V2__t_q__a:Q:A:f:s/* madeleine madeleine :N:f:s/* concordataires concordataire :A:e:p/* découleront découler :V1_i_n__zz:If:3p!/* déjeunait déjeuner :V1_i____zz:Iq:3s/* évaluative évaluatif :A:f:s/* | > | 65810 65811 65812 65813 65814 65815 65816 65817 65818 65819 65820 65821 65822 65823 65824 | Dirichlet Dirichlet :M2:e:i/* organiseront organiser :V1__t_q_zz:If:3p!/* spécule spéculer :V1_i____zz:Ip:Sp:1s:3s/* spécule spéculer :V1_i____zz:E:2s/* inaccessibilité inaccessibilité :N:f:s/* froncés froncer :V1__t_q_zz:Q:A:m:p/* khalifat khalifat :N:m:s/C Nada Nada :M1:f:i/* cabanon cabanon :N:m:s/* assouvie assouvir :V2__t_q__a:Q:A:f:s/* madeleine madeleine :N:f:s/* concordataires concordataire :A:e:p/* découleront découler :V1_i_n__zz:If:3p!/* déjeunait déjeuner :V1_i____zz:Iq:3s/* évaluative évaluatif :A:f:s/* |
︙ | ︙ | |||
70213 70214 70215 70216 70217 70218 70219 70220 70221 70222 70223 70224 70225 70226 | arboricoles arboricole :A:e:p/* documentations documentation :N:f:p/* réfléchissantes réfléchissant :A:f:p/* guichetiers guichetier :N:m:p/* mystifié mystifier :V1__t___zz:Q:A:1ŝ:m:s/* comprendrions comprendre :V3_it_q__a:K:1p/* édicta édicter :V1__t___zz:Is:3s/* regretterait regretter :V1__t___zz:K:3s/* embauchent embaucher :V1_it_q_zz:Ip:Sp:3p/* galas gala :N:m:p/* symbolisées symboliser :V1__t___zz:Q:A:f:p/* objectant objecter :V1__t___zz:P/* arriverais arriver :V1_i____e_:K:1s:2s/* fixai fixer :V1_it_q__a:Is:1s/* | > | 70222 70223 70224 70225 70226 70227 70228 70229 70230 70231 70232 70233 70234 70235 70236 | arboricoles arboricole :A:e:p/* documentations documentation :N:f:p/* réfléchissantes réfléchissant :A:f:p/* guichetiers guichetier :N:m:p/* mystifié mystifier :V1__t___zz:Q:A:1ŝ:m:s/* comprendrions comprendre :V3_it_q__a:K:1p/* édicta édicter :V1__t___zz:Is:3s/* Lila Lila :M1:f:i/* regretterait regretter :V1__t___zz:K:3s/* embauchent embaucher :V1_it_q_zz:Ip:Sp:3p/* galas gala :N:m:p/* symbolisées symboliser :V1__t___zz:Q:A:f:p/* objectant objecter :V1__t___zz:P/* arriverais arriver :V1_i____e_:K:1s:2s/* fixai fixer :V1_it_q__a:Is:1s/* |
︙ | ︙ | |||
71325 71326 71327 71328 71329 71330 71331 71332 71333 71334 71335 71336 71337 71338 | prescripteur prescripteur :N:m:s/* bidimensionnel bidimensionnel :A:m:s/* dentellière dentellier :N:A:f:s/M divulguées divulguer :V1__t_q_zz:Q:A:f:p/* souverainistes souverainiste :N:A:e:p/* micromètres mètre :N:m:p/* stathoudérat stathoudérat :N:m:s/* névropathiques névropathique :A:e:p/* hast hast :N:m:s/* phénotypique phénotypique :A:e:s/* chargeons charger :V1_it_q_zz:Ip:1p/* chargeons charger :V1_it_q_zz:E:1p/* édulcoré édulcorer :V1__t___zz:Q:A:1ŝ:m:s/* penne penne :N:f:s/* | > | 71335 71336 71337 71338 71339 71340 71341 71342 71343 71344 71345 71346 71347 71348 71349 | prescripteur prescripteur :N:m:s/* bidimensionnel bidimensionnel :A:m:s/* dentellière dentellier :N:A:f:s/M divulguées divulguer :V1__t_q_zz:Q:A:f:p/* souverainistes souverainiste :N:A:e:p/* micromètres mètre :N:m:p/* stathoudérat stathoudérat :N:m:s/* Fallon Fallon :M1:f:i/* névropathiques névropathique :A:e:p/* hast hast :N:m:s/* phénotypique phénotypique :A:e:s/* chargeons charger :V1_it_q_zz:Ip:1p/* chargeons charger :V1_it_q_zz:E:1p/* édulcoré édulcorer :V1__t___zz:Q:A:1ŝ:m:s/* penne penne :N:f:s/* |
︙ | ︙ | |||
73229 73230 73231 73232 73233 73234 73235 | Wilbur Wilbur :M1:m:i/* glycérides glycéride :N:m:p/* interventriculaire interventriculaire :A:e:s/* blasphémé blasphémer :V1_it___zz:Q:A:1ŝ:m:s/* comtoises comtois :N:A:f:p/* cotisés cotiser :V1_i__q_zz:Q:A:m:p/* impresario impresario :N:e:s/C | | | 73240 73241 73242 73243 73244 73245 73246 73247 73248 73249 73250 73251 73252 73253 73254 | Wilbur Wilbur :M1:m:i/* glycérides glycéride :N:m:p/* interventriculaire interventriculaire :A:e:s/* blasphémé blasphémer :V1_it___zz:Q:A:1ŝ:m:s/* comtoises comtois :N:A:f:p/* cotisés cotiser :V1_i__q_zz:Q:A:m:p/* impresario impresario :N:e:s/C voilaient voiler :V1_it_q__a:Iq:3p/* brave braver :V1__t___zz:Ip:Sp:1s:3s/* brave braver :V1__t___zz:E:2s/* braves braver :V1__t___zz:Ip:Sp:2s/* contrister contrister :V1__t___zz:Y/* lipoïdes lipoïde :A:e:p/* lipoïdes lipoïde :N:m:p/* redondants redondant :A:m:p/* |
︙ | ︙ | |||
75053 75054 75055 75056 75057 75058 75059 75060 75061 75062 75063 75064 75065 75066 | hypertensive hypertensif :A:f:s/* magyares magyar :N:A:f:p/* repentait repentir :V3____p_e_:Iq:3s/* Wattignies Wattignies :MP:e:i/* rotondité rotondité :N:f:s/* contestèrent contester :V1_it___zz:Is:3p!/* soldant solder :V1__t_q_zz:P/* quantifiées quantifier :V1__t___zz:Q:A:f:p/* subconscience subconscience :N:f:s/* douillette douillet :N:A:f:s/* sahraouie sahraoui :N:A:f:s/* empiètement empiètement :N:m:s/R cassage cassage :N:m:s/* novations novation :N:f:p/* | > | 75064 75065 75066 75067 75068 75069 75070 75071 75072 75073 75074 75075 75076 75077 75078 | hypertensive hypertensif :A:f:s/* magyares magyar :N:A:f:p/* repentait repentir :V3____p_e_:Iq:3s/* Wattignies Wattignies :MP:e:i/* rotondité rotondité :N:f:s/* contestèrent contester :V1_it___zz:Is:3p!/* soldant solder :V1__t_q_zz:P/* Hana Hana :M1:f:i/* quantifiées quantifier :V1__t___zz:Q:A:f:p/* subconscience subconscience :N:f:s/* douillette douillet :N:A:f:s/* sahraouie sahraoui :N:A:f:s/* empiètement empiètement :N:m:s/R cassage cassage :N:m:s/* novations novation :N:f:p/* |
︙ | ︙ | |||
75559 75560 75561 75562 75563 75564 75565 75566 75567 75568 75569 75570 75571 75572 | surnomma surnommer :V1__t___zz:Is:3s/* bleuets bleuet :N:m:p/* écarteraient écarter :V1_it_q_zz:K:3p/* relia relier :V1__t___zz:Is:3s/* narrée narrer :V1__t___zz:Q:A:f:s/* porosités porosité :N:f:p/* vanilline vanilline :N:f:s/* immortalisée immortaliser :V1__t_q_zz:Q:A:f:s/* informatifs informatif :A:m:p/* cessations cessation :N:f:p/* eudiomètre eudiomètre :N:m:s/* digest digest :N:m:s/* circulera circuler :V1_i_____a:If:3s/* coobligés coobligé :N:A:m:p/* | > | 75571 75572 75573 75574 75575 75576 75577 75578 75579 75580 75581 75582 75583 75584 75585 | surnomma surnommer :V1__t___zz:Is:3s/* bleuets bleuet :N:m:p/* écarteraient écarter :V1_it_q_zz:K:3p/* relia relier :V1__t___zz:Is:3s/* narrée narrer :V1__t___zz:Q:A:f:s/* porosités porosité :N:f:p/* vanilline vanilline :N:f:s/* Ryad Ryad :M1:m:i/* immortalisée immortaliser :V1__t_q_zz:Q:A:f:s/* informatifs informatif :A:m:p/* cessations cessation :N:f:p/* eudiomètre eudiomètre :N:m:s/* digest digest :N:m:s/* circulera circuler :V1_i_____a:If:3s/* coobligés coobligé :N:A:m:p/* |
︙ | ︙ | |||
79058 79059 79060 79061 79062 79063 79064 | refaites refaire :V3__t_q__a:Q:A:f:p/* refaites refaire :V3__t_q__a:Ip:2p/* refaites refaire :V3__t_q__a:E:2p/* tympanite tympanite :N:f:s/* homogénéisé homogénéiser :V1__t___zz:Q:A:1ŝ:m:s/* fusaient fuser :V1_i____zz:Iq:3p/* condescendances condescendance :N:f:p/* | | | 79071 79072 79073 79074 79075 79076 79077 79078 79079 79080 79081 79082 79083 79084 79085 | refaites refaire :V3__t_q__a:Q:A:f:p/* refaites refaire :V3__t_q__a:Ip:2p/* refaites refaire :V3__t_q__a:E:2p/* tympanite tympanite :N:f:s/* homogénéisé homogénéiser :V1__t___zz:Q:A:1ŝ:m:s/* fusaient fuser :V1_i____zz:Iq:3p/* condescendances condescendance :N:f:p/* épicés épicer :V1_it____a:Q:A:m:p/* étriquées étriquer :V1__t___zz:Q:A:f:p/* sauvageons sauvageon :N:A:m:p/* deviendras devenir :V3_i____e_:If:2s/* figea figer :V1_it_q_zz:Is:3s/* accommodants accommodant :N:A:m:p/* bouillait bouillir :V3_it____a:Iq:3s/* colonage colonage :N:m:s/* |
︙ | ︙ | |||
81312 81313 81314 81315 81316 81317 81318 81319 81320 81321 81322 81323 81324 81325 | paléontologue paléontologue :N:e:s/* saumures saumure :N:f:p/* hypochlorites hypochlorite :N:m:p/* Saillans Saillans :MP:e:i/X quitterais quitter :V1_it_x__a:K:1s:2s/* sédatives sédatif :A:f:p/* réclamât réclamer :V1_it_q_zz:Sq:3s/* conduisais conduire :V3_it_q__a:Iq:1s:2s/* inspireraient inspirer :V1_it_q_zz:K:3p/* isba isba :N:f:s/* Haley Haley :M1:e:i/* déçoivent décevoir :V3_it____a:Ip:Sp:3p/* profiteur profiteur :N:A:m:s/* histones histone :N:f:p/* | > | 81325 81326 81327 81328 81329 81330 81331 81332 81333 81334 81335 81336 81337 81338 81339 | paléontologue paléontologue :N:e:s/* saumures saumure :N:f:p/* hypochlorites hypochlorite :N:m:p/* Saillans Saillans :MP:e:i/X quitterais quitter :V1_it_x__a:K:1s:2s/* sédatives sédatif :A:f:p/* réclamât réclamer :V1_it_q_zz:Sq:3s/* tessinois tessinois :N:A:m:i/* conduisais conduire :V3_it_q__a:Iq:1s:2s/* inspireraient inspirer :V1_it_q_zz:K:3p/* isba isba :N:f:s/* Haley Haley :M1:e:i/* déçoivent décevoir :V3_it____a:Ip:Sp:3p/* profiteur profiteur :N:A:m:s/* histones histone :N:f:p/* |
︙ | ︙ | |||
83626 83627 83628 83629 83630 83631 83632 83633 83634 83635 83636 83637 83638 83639 | romanisme romanisme :N:m:s/* sinusites sinusite :N:f:p/* Thoutmosis Thoutmosis :M1:m:i/* malolactique malolactique :A:e:s/* mède mède :N:A:e:s/* fado fado :N:m:s/* psychomotrices psychomoteur :A:f:p/* Heidi Heidi :M1:f:i/* patronnes patron :N:f:p/* inatteignable inatteignable :A:e:s/* bronchoscopie bronchoscopie :N:f:s/* enivrants enivrant :A:m:p/* picaresques picaresque :A:e:p/* diastasiques diastasique :A:e:p/* | > | 83640 83641 83642 83643 83644 83645 83646 83647 83648 83649 83650 83651 83652 83653 83654 | romanisme romanisme :N:m:s/* sinusites sinusite :N:f:p/* Thoutmosis Thoutmosis :M1:m:i/* malolactique malolactique :A:e:s/* mède mède :N:A:e:s/* fado fado :N:m:s/* psychomotrices psychomoteur :A:f:p/* Adil Adil :M1:m:i/* Heidi Heidi :M1:f:i/* patronnes patron :N:f:p/* inatteignable inatteignable :A:e:s/* bronchoscopie bronchoscopie :N:f:s/* enivrants enivrant :A:m:p/* picaresques picaresque :A:e:p/* diastasiques diastasique :A:e:p/* |
︙ | ︙ | |||
83770 83771 83772 83773 83774 83775 83776 83777 83778 83779 83780 83781 83782 83783 | planes planer :V1_it___zz:Ip:Sp:2s/* contrapuntique contrapuntique :A:e:s/C méritons mériter :V1__t_x__a:Ip:1p/* méritons mériter :V1__t_x__a:E:1p/* augmentez augmenter :V1_it_q__a:Ip:2p/* augmentez augmenter :V1_it_q__a:E:2p/* indécomposables indécomposable :A:e:p/* espiègles espiègle :N:A:e:p/* zodiaques zodiaque :N:m:p/* affranchirent affranchir :V2_itnq__a:Is:3p!/* nettoyant nettoyant :N:m:s/* nettoyant nettoyer :V1__t___zz:P/* sinusal sinusal :A:m:s/* entamera entamer :V1__t___zz:If:3s/* | > | 83785 83786 83787 83788 83789 83790 83791 83792 83793 83794 83795 83796 83797 83798 83799 | planes planer :V1_it___zz:Ip:Sp:2s/* contrapuntique contrapuntique :A:e:s/C méritons mériter :V1__t_x__a:Ip:1p/* méritons mériter :V1__t_x__a:E:1p/* augmentez augmenter :V1_it_q__a:Ip:2p/* augmentez augmenter :V1_it_q__a:E:2p/* indécomposables indécomposable :A:e:p/* Accor Accor :MP:f:i/* espiègles espiègle :N:A:e:p/* zodiaques zodiaque :N:m:p/* affranchirent affranchir :V2_itnq__a:Is:3p!/* nettoyant nettoyant :N:m:s/* nettoyant nettoyer :V1__t___zz:P/* sinusal sinusal :A:m:s/* entamera entamer :V1__t___zz:If:3s/* |
︙ | ︙ | |||
86367 86368 86369 86370 86371 86372 86373 | truismes truisme :N:m:p/* fraiser fraiser :V1__t___zz:Y/* ratifièrent ratifier :V1__t___zz:Is:3p!/* asexué asexué :A:m:s/* démolirent démolir :V2_it____a:Is:3p!/* faons faon :N:m:p/* liguée liguer :V1__t_q_zz:Q:A:f:s/* | | | 86383 86384 86385 86386 86387 86388 86389 86390 86391 86392 86393 86394 86395 86396 86397 | truismes truisme :N:m:p/* fraiser fraiser :V1__t___zz:Y/* ratifièrent ratifier :V1__t___zz:Is:3p!/* asexué asexué :A:m:s/* démolirent démolir :V2_it____a:Is:3p!/* faons faon :N:m:p/* liguée liguer :V1__t_q_zz:Q:A:f:s/* épicé épicer :V1_it____a:Q:A:1ŝ:m:s/* confite confire :V3__t_q__a:Q:A:f:s/* indes inde :N:m:p/* intimident intimider :V1__t___zz:Ip:Sp:3p/* altermondialistes altermondialiste :N:A:e:p/* prescriront prescrire :V3_it_q__a:If:3p!/* blasphèment blasphémer :V1_it___zz:Ip:Sp:3p/* caponnière caponnière :N:f:s/* |
︙ | ︙ | |||
89363 89364 89365 89366 89367 89368 89369 89370 89371 89372 89373 89374 89375 89376 | mentez mentir :V3_i_nq__a:Ip:2p/* mentez mentir :V3_i_nq__a:E:2p/* ubac ubac :N:m:s/* Hazel Hazel :M1:f:i/* relisez relire :V3_it_q__a:Ip:2p/* relisez relire :V3_it_q__a:E:2p/* tromperaient tromper :V1_it_q__a:K:3p/* boutés bouter :V1__t___zz:Q:A:m:p/* guérissables guérissable :A:e:p/* polymérase polymérase :A:e:s/* polymérase polymérase :N:f:s/* arrogèrent arroger :V1____p_e_:Is:3p!/* évadé évader :V1____p_e_:Q:A:1ŝ:m:s/* évadés évader :V1____p_e_:Q:A:m:p/* | > | 89379 89380 89381 89382 89383 89384 89385 89386 89387 89388 89389 89390 89391 89392 89393 | mentez mentir :V3_i_nq__a:Ip:2p/* mentez mentir :V3_i_nq__a:E:2p/* ubac ubac :N:m:s/* Hazel Hazel :M1:f:i/* relisez relire :V3_it_q__a:Ip:2p/* relisez relire :V3_it_q__a:E:2p/* tromperaient tromper :V1_it_q__a:K:3p/* Jamel Jamel :M1:m:i/* boutés bouter :V1__t___zz:Q:A:m:p/* guérissables guérissable :A:e:p/* polymérase polymérase :A:e:s/* polymérase polymérase :N:f:s/* arrogèrent arroger :V1____p_e_:Is:3p!/* évadé évader :V1____p_e_:Q:A:1ŝ:m:s/* évadés évader :V1____p_e_:Q:A:m:p/* |
︙ | ︙ | |||
89503 89504 89505 89506 89507 89508 89509 | stockent stocker :V1__t___zz:Ip:Sp:3p/* découlèrent découler :V1_i_n__zz:Is:3p!/* martelait marteler :V1__t___zz:Iq:3s/* conspiratrice conspirateur :N:A:f:s/* longeons longer :V1__t___zz:Ip:1p/* longeons longer :V1__t___zz:E:1p/* rosiériste rosiériste :N:e:s/* | | | 89520 89521 89522 89523 89524 89525 89526 89527 89528 89529 89530 89531 89532 89533 89534 | stockent stocker :V1__t___zz:Ip:Sp:3p/* découlèrent découler :V1_i_n__zz:Is:3p!/* martelait marteler :V1__t___zz:Iq:3s/* conspiratrice conspirateur :N:A:f:s/* longeons longer :V1__t___zz:Ip:1p/* longeons longer :V1__t___zz:E:1p/* rosiériste rosiériste :N:e:s/* épicée épicer :V1_it____a:Q:A:f:s/* acquerrez acquérir :V3__t_q__a:If:2p/* fauchaison fauchaison :N:f:s/* jouirai jouir :V2_i_n___a:If:1s/* odalisque odalisque :N:f:s/* azurés azurer :V1__t___zz:Q:A:m:p/* déchargera décharger :V1_it_q_zz:If:3s/* réalimentation réalimentation :N:f:s/* |
︙ | ︙ | |||
94022 94023 94024 94025 94026 94027 94028 94029 94030 94031 94032 94033 94034 94035 | décalcifié décalcifier :V1__t_q_zz:Q:A:1ŝ:m:s/* mélangea mélanger :V1_it_q__a:Is:3s/* reconnaîtras reconnaître :V3__t_q__a:If:2s/M aérobiose aérobiose :N:f:s/* déniaient dénier :V1__t___zz:Iq:3p/* tyrannise tyranniser :V1__t___zz:Ip:Sp:1s:3s/* tyrannise tyranniser :V1__t___zz:E:2s/* exocrine exocrine :N:f:s/* imiterait imiter :V1__t___zz:K:3s/* renouvelleraient renouveler :V1_it_q_zz:K:3p/M trayons trayon :N:m:p/* écriraient écrire :V3_itnq__a:K:3p/* abattrait abattre :V3_it_q__a:K:3s/* coudoie coudoyer :V1__t___zz:Ip:Sp:1s:3s/* | > | 94039 94040 94041 94042 94043 94044 94045 94046 94047 94048 94049 94050 94051 94052 94053 | décalcifié décalcifier :V1__t_q_zz:Q:A:1ŝ:m:s/* mélangea mélanger :V1_it_q__a:Is:3s/* reconnaîtras reconnaître :V3__t_q__a:If:2s/M aérobiose aérobiose :N:f:s/* déniaient dénier :V1__t___zz:Iq:3p/* tyrannise tyranniser :V1__t___zz:Ip:Sp:1s:3s/* tyrannise tyranniser :V1__t___zz:E:2s/* Ramazan Ramazan :M1:m:i/* exocrine exocrine :N:f:s/* imiterait imiter :V1__t___zz:K:3s/* renouvelleraient renouveler :V1_it_q_zz:K:3p/M trayons trayon :N:m:p/* écriraient écrire :V3_itnq__a:K:3p/* abattrait abattre :V3_it_q__a:K:3s/* coudoie coudoyer :V1__t___zz:Ip:Sp:1s:3s/* |
︙ | ︙ | |||
94237 94238 94239 94240 94241 94242 94243 | scandait scander :V1__t___zz:Iq:3s/* tarins tarin :N:m:p/* bougez bouger :V1_it_q__a:Ip:2p/* bougez bouger :V1_it_q__a:E:2p/* lurons luron :N:m:p/* déifiés déifier :V1__t___zz:Q:A:m:p/* multicouches multicouche :A:e:p/* | | | 94255 94256 94257 94258 94259 94260 94261 94262 94263 94264 94265 94266 94267 94268 94269 | scandait scander :V1__t___zz:Iq:3s/* tarins tarin :N:m:p/* bougez bouger :V1_it_q__a:Ip:2p/* bougez bouger :V1_it_q__a:E:2p/* lurons luron :N:m:p/* déifiés déifier :V1__t___zz:Q:A:m:p/* multicouches multicouche :A:e:p/* cryptée crypter :V1_it____a:Q:A:f:s/* effondrant effondrer :V1__t_q_zz:P/* fouetta fouetter :V1_it___zz:Is:3s/* polarimétrique polarimétrique :A:e:s/* rendisse rendre :V3_itnq__a:Sq:1s/* amènes amener :V1__tnq__a:Ip:Sp:2s/* amènes amène :A:e:p/* annexent annexer :V1__t_q_zz:Ip:Sp:3p/* |
︙ | ︙ | |||
98156 98157 98158 98159 98160 98161 98162 98163 98164 98165 98166 98167 98168 98169 | jaspé jasper :V1__t___zz:Q:A:1ŝ:m:s/* soporifique soporifique :A:e:s/* soporifique soporifique :N:m:s/* escarmoucher escarmoucher :V1_i____zz:Y/* indécidables indécidable :A:e:p/* surpuissance surpuissance :N:f:s/* thyrses thyrse :N:m:p/* Mozilla Mozilla :MP:e:i/* estimâtes estimer :V1__t_q_zz:Is:2p/* eugénol eugénol :N:m:s/* chloroformé chloroformer :V1__t___zz:Q:A:1ŝ:m:s/* inefficient inefficient :A:m:s/* inhabituellement inhabituellement :W/* ronflent ronfler :V1_i____zz:Ip:Sp:3p/* | > | 98174 98175 98176 98177 98178 98179 98180 98181 98182 98183 98184 98185 98186 98187 98188 | jaspé jasper :V1__t___zz:Q:A:1ŝ:m:s/* soporifique soporifique :A:e:s/* soporifique soporifique :N:m:s/* escarmoucher escarmoucher :V1_i____zz:Y/* indécidables indécidable :A:e:p/* surpuissance surpuissance :N:f:s/* thyrses thyrse :N:m:p/* Larisa Larisa :M1:f:i/* Mozilla Mozilla :MP:e:i/* estimâtes estimer :V1__t_q_zz:Is:2p/* eugénol eugénol :N:m:s/* chloroformé chloroformer :V1__t___zz:Q:A:1ŝ:m:s/* inefficient inefficient :A:m:s/* inhabituellement inhabituellement :W/* ronflent ronfler :V1_i____zz:Ip:Sp:3p/* |
︙ | ︙ | |||
100763 100764 100765 100766 100767 100768 100769 | épia épier :V1_it_q_zz:Is:3s/* cabriole cabriole :N:f:s/* franchiraient franchir :V2__t____a:K:3p/* grêlé grêler :V1__t__mzz:Q:A:1ŝ:m:s/* narrait narrer :V1__t___zz:Iq:3s/* arabisé arabiser :V1__t_q_zz:Q:A:1ŝ:m:s/* charbonner charbonner :V1_it___zz:Y/* | | | 100782 100783 100784 100785 100786 100787 100788 100789 100790 100791 100792 100793 100794 100795 100796 | épia épier :V1_it_q_zz:Is:3s/* cabriole cabriole :N:f:s/* franchiraient franchir :V2__t____a:K:3p/* grêlé grêler :V1__t__mzz:Q:A:1ŝ:m:s/* narrait narrer :V1__t___zz:Iq:3s/* arabisé arabiser :V1__t_q_zz:Q:A:1ŝ:m:s/* charbonner charbonner :V1_it___zz:Y/* crypté crypter :V1_it____a:Q:A:1ŝ:m:s/* pacifiante pacifiant :A:f:s/* délocalisée délocaliser :V1__t_q_zz:Q:A:f:s/* ichor ichor :N:m:s/* ocreuses ocreux :A:f:p/* reconnaîtriez reconnaître :V3__t_q__a:K:2p/M repeuplée repeupler :V1__t_q_zz:Q:A:f:s/* désaccordé désaccorder :V1__t_q_zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
102179 102180 102181 102182 102183 102184 102185 | socialisations socialisation :N:f:p/* socratisme socratisme :N:m:s/* biplans biplan :N:m:p/* loubards loubard :N:m:p/* palléaux palléal :A:m:p/* baisseraient baisser :V1_it_q_zz:K:3p/* riemannienne riemannien :N:A:f:s/* | | | 102198 102199 102200 102201 102202 102203 102204 102205 102206 102207 102208 102209 102210 102211 102212 | socialisations socialisation :N:f:p/* socratisme socratisme :N:m:s/* biplans biplan :N:m:p/* loubards loubard :N:m:p/* palléaux palléal :A:m:p/* baisseraient baisser :V1_it_q_zz:K:3p/* riemannienne riemannien :N:A:f:s/* épicées épicer :V1_it____a:Q:A:f:p/* claquettes claqueter :V1_i____zz:Ip:Sp:2s/M effilant effiler :V1__t_q_zz:P/* familistère familistère :N:m:s/* phlegmasiques phlegmasique :A:e:p/M résigneront résigner :V1__t_q_zz:If:3p!/* zonés zoner :V1_it_q_zz:Q:A:m:p/* dépuratif dépuratif :A:m:s/* |
︙ | ︙ | |||
103297 103298 103299 103300 103301 103302 103303 103304 103305 103306 103307 103308 103309 103310 | Encelade Encelade :M1:m:i/* courrais courir :V3_it____a:K:1s:2s/* nourriraient nourrir :V2_itnq__a:K:3p/* postcoloniaux postcolonial :A:m:p/* démontrât démontrer :V1__t_q_zz:Sq:3s/* hurrahs hurrah :N:m:p/C abriterait abriter :V1__t_q_zz:K:3s/* pachaliks pachalik :N:m:p/* vautre vautrer :V1____p_e_:Ip:Sp:1s:3s/* vautre vautrer :V1____p_e_:E:2s/* afflua affluer :V1_i_____a:Is:3s/* jusnaturalisme jusnaturalisme :N:m:s/* muscadin muscadin :N:m:s/* supervisent superviser :V1__t___zz:Ip:Sp:3p/* | > | 103316 103317 103318 103319 103320 103321 103322 103323 103324 103325 103326 103327 103328 103329 103330 | Encelade Encelade :M1:m:i/* courrais courir :V3_it____a:K:1s:2s/* nourriraient nourrir :V2_itnq__a:K:3p/* postcoloniaux postcolonial :A:m:p/* démontrât démontrer :V1__t_q_zz:Sq:3s/* hurrahs hurrah :N:m:p/C abriterait abriter :V1__t_q_zz:K:3s/* tessinoise tessinois :N:A:f:s/* pachaliks pachalik :N:m:p/* vautre vautrer :V1____p_e_:Ip:Sp:1s:3s/* vautre vautrer :V1____p_e_:E:2s/* afflua affluer :V1_i_____a:Is:3s/* jusnaturalisme jusnaturalisme :N:m:s/* muscadin muscadin :N:m:s/* supervisent superviser :V1__t___zz:Ip:Sp:3p/* |
︙ | ︙ | |||
106999 107000 107001 107002 107003 107004 107005 | abélien abélien :A:m:s/* nuançait nuancer :V1__t___zz:Iq:3s/* roté roter :V1_i____zz:Q:1ŝ:e:i/* sarcoptes sarcopte :N:m:p/* trichant tricher :V1_i____zz:P/* damée damer :V1_it___zz:Q:A:f:s/* téléguidée téléguider :V1__t___zz:Q:A:f:s/* | | | 107019 107020 107021 107022 107023 107024 107025 107026 107027 107028 107029 107030 107031 107032 107033 | abélien abélien :A:m:s/* nuançait nuancer :V1__t___zz:Iq:3s/* roté roter :V1_i____zz:Q:1ŝ:e:i/* sarcoptes sarcopte :N:m:p/* trichant tricher :V1_i____zz:P/* damée damer :V1_it___zz:Q:A:f:s/* téléguidée téléguider :V1__t___zz:Q:A:f:s/* voilèrent voiler :V1_it_q__a:Is:3p!/* dérivables dérivable :A:e:p/* havresacs havresac :N:m:p/* sculpturaux sculptural :A:m:p/* flagellée flageller :V1__t_q_zz:Q:A:f:s/* uniformise uniformiser :V1__t___zz:Ip:Sp:1s:3s/* uniformise uniformiser :V1__t___zz:E:2s/* abruties abruti :N:f:p/* |
︙ | ︙ | |||
111997 111998 111999 112000 112001 112002 112003 112004 112005 112006 112007 112008 112009 112010 | dénonceraient dénoncer :V1_it_q__a:K:3p/* moustachus moustachu :N:A:m:p/* pédestrement pédestrement :W/* sauges sauge :N:f:p/* villeuses villeux :A:f:p/* épousés épouser :V1_it_q_zz:Q:A:m:p/* calotin calotin :N:m:s/* bocardage bocardage :N:m:s/* inoculables inoculable :A:e:p/* électroencéphalographie électroencéphalographie :N:f:s/* hygiéniquement hygiéniquement :W/* leucome leucome :N:m:s/* catéchisés catéchiser :V1__t___zz:Q:A:m:p/* endothéliaux endothélial :A:m:p/* | > | 112017 112018 112019 112020 112021 112022 112023 112024 112025 112026 112027 112028 112029 112030 112031 | dénonceraient dénoncer :V1_it_q__a:K:3p/* moustachus moustachu :N:A:m:p/* pédestrement pédestrement :W/* sauges sauge :N:f:p/* villeuses villeux :A:f:p/* épousés épouser :V1_it_q_zz:Q:A:m:p/* calotin calotin :N:m:s/* Séphora Séphora :M1:f:i/* bocardage bocardage :N:m:s/* inoculables inoculable :A:e:p/* électroencéphalographie électroencéphalographie :N:f:s/* hygiéniquement hygiéniquement :W/* leucome leucome :N:m:s/* catéchisés catéchiser :V1__t___zz:Q:A:m:p/* endothéliaux endothélial :A:m:p/* |
︙ | ︙ | |||
112135 112136 112137 112138 112139 112140 112141 112142 112143 112144 112145 112146 112147 112148 | présupposerait présupposer :V1__t___zz:K:3s/* affinitaire affinitaire :A:e:s/* campaniens campanien :N:A:m:p/* injonctive injonctif :A:f:s/* pines pine :N:f:p/* bila biler :V1____p_e_:Is:3s/* dressâmes dresser :V1__t_q_zz:Is:1p/* surprît surprendre :V3_it_q__a:Sq:3s/* tapotement tapotement :N:m:s/* Alioth Alioth :MP:e:i/* allant allant :N:A:m:s/* dérouiller dérouiller :V1_it_q_zz:Y/* néphron néphron :N:m:s/* succube succube :N:m:s/* | > | 112156 112157 112158 112159 112160 112161 112162 112163 112164 112165 112166 112167 112168 112169 112170 | présupposerait présupposer :V1__t___zz:K:3s/* affinitaire affinitaire :A:e:s/* campaniens campanien :N:A:m:p/* injonctive injonctif :A:f:s/* pines pine :N:f:p/* bila biler :V1____p_e_:Is:3s/* dressâmes dresser :V1__t_q_zz:Is:1p/* intracytoplasmiques intracytoplasmique :A:e:p/* surprît surprendre :V3_it_q__a:Sq:3s/* tapotement tapotement :N:m:s/* Alioth Alioth :MP:e:i/* allant allant :N:A:m:s/* dérouiller dérouiller :V1_it_q_zz:Y/* néphron néphron :N:m:s/* succube succube :N:m:s/* |
︙ | ︙ | |||
116204 116205 116206 116207 116208 116209 116210 116211 116212 116213 116214 116215 116216 116217 | cheminera cheminer :V1_i____zz:If:3s/* fendage fendage :N:m:s/* numérote numéroter :V1__t_q_zz:Ip:Sp:1s:3s/* numérote numéroter :V1__t_q_zz:E:2s/* ressusciterai ressusciter :V1_it___zz:If:1s/* schlichs schlich :N:m:p/* sermonné sermonner :V1__t___zz:Q:A:1ŝ:m:s/* shuntage shuntage :N:m:s/* conserverions conserver :V1__t_q_zz:K:1p/* construisis construire :V3_it_q__a:Is:1s:2s/* fusionnaient fusionner :V1_it___zz:Iq:3p/* juiveries juiverie :N:f:p/* lipolytique lipolytique :A:e:s/* prébendé prébendé :N:A:m:s/* | > | 116226 116227 116228 116229 116230 116231 116232 116233 116234 116235 116236 116237 116238 116239 116240 | cheminera cheminer :V1_i____zz:If:3s/* fendage fendage :N:m:s/* numérote numéroter :V1__t_q_zz:Ip:Sp:1s:3s/* numérote numéroter :V1__t_q_zz:E:2s/* ressusciterai ressusciter :V1_it___zz:If:1s/* schlichs schlich :N:m:p/* sermonné sermonner :V1__t___zz:Q:A:1ŝ:m:s/* Nabila Nabila :M1:f:i/* shuntage shuntage :N:m:s/* conserverions conserver :V1__t_q_zz:K:1p/* construisis construire :V3_it_q__a:Is:1s:2s/* fusionnaient fusionner :V1_it___zz:Iq:3p/* juiveries juiverie :N:f:p/* lipolytique lipolytique :A:e:s/* prébendé prébendé :N:A:m:s/* |
︙ | ︙ | |||
118105 118106 118107 118108 118109 118110 118111 | anxiolytique anxiolytique :N:m:s/* bisous bisou :N:m:p/* diazoïque diazoïque :A:e:s/* fluets fluet :N:A:m:p/* happées happer :V1_it___zz:Q:A:f:p/* instituons instituer :V1__t_q_zz:Ip:1p/* instituons instituer :V1__t_q_zz:E:1p/* | < | 118128 118129 118130 118131 118132 118133 118134 118135 118136 118137 118138 118139 118140 118141 | anxiolytique anxiolytique :N:m:s/* bisous bisou :N:m:p/* diazoïque diazoïque :A:e:s/* fluets fluet :N:A:m:p/* happées happer :V1_it___zz:Q:A:f:p/* instituons instituer :V1__t_q_zz:Ip:1p/* instituons instituer :V1__t_q_zz:E:1p/* targette targette :N:f:s/* aréquier aréquier :N:m:s/* biloculaires biloculaire :A:e:p/* incisai inciser :V1__t___zz:Is:1s/* kaolinisation kaolinisation :N:f:s/* khamsin khamsin :N:m:s/* affriquées affriquée :N:f:p/* |
︙ | ︙ | |||
119906 119907 119908 119909 119910 119911 119912 119913 119914 119915 119916 119917 119918 119919 | rattachable rattachable :A:e:s/* reprochiez reprocher :V1__t_q_zz:Iq:Sp:2p/* toussota toussoter :V1_i____zz:Is:3s/* trichomes trichome :N:m:p/* cartothèque cartothèque :N:f:s/* croiserait croiser :V1_it_q_zz:K:3s/* diathermanes diathermane :A:e:p/* outrepassés outrepasser :V1__t___zz:Q:A:m:p/* panent paner :V1__t___zz:Ip:Sp:3p/* desmosomes desmosome :N:m:p/* hydrolysant hydrolyser :V1__t___zz:P/* pavoises pavoiser :V1_it___zz:Ip:Sp:2s/* simulies simulie :N:f:p/* trin trin :A:m:s/* | > | 119928 119929 119930 119931 119932 119933 119934 119935 119936 119937 119938 119939 119940 119941 119942 | rattachable rattachable :A:e:s/* reprochiez reprocher :V1__t_q_zz:Iq:Sp:2p/* toussota toussoter :V1_i____zz:Is:3s/* trichomes trichome :N:m:p/* cartothèque cartothèque :N:f:s/* croiserait croiser :V1_it_q_zz:K:3s/* diathermanes diathermane :A:e:p/* franconien franconien :N:A:m:s/* outrepassés outrepasser :V1__t___zz:Q:A:m:p/* panent paner :V1__t___zz:Ip:Sp:3p/* desmosomes desmosome :N:m:p/* hydrolysant hydrolyser :V1__t___zz:P/* pavoises pavoiser :V1_it___zz:Ip:Sp:2s/* simulies simulie :N:f:p/* trin trin :A:m:s/* |
︙ | ︙ | |||
121627 121628 121629 121630 121631 121632 121633 121634 121635 121636 121637 121638 121639 121640 | préchauffé préchauffer :V1__t___zz:Q:A:1ŝ:m:s/* subventionna subventionner :V1__t___zz:Is:3s/* translates translater :V1__t___zz:Ip:Sp:2s/* alexithymie alexithymie :N:f:s/* ameutées ameuter :V1__t_q_zz:Q:A:f:p/* arquer arquer :V1_it_q_zz:Y/* consolât consoler :V1_it_q_zz:Sq:3s/* grondez gronder :V1_it___zz:Ip:2p/* grondez gronder :V1_it___zz:E:2p/* gélifié gélifier :V1__t_q_zz:Q:A:1ŝ:m:s/* malandrin malandrin :N:m:s/* nativiste nativiste :N:A:e:s/* prémaxillaires prémaxillaire :A:e:p/* reinettes reinette :N:f:p/* | > | 121650 121651 121652 121653 121654 121655 121656 121657 121658 121659 121660 121661 121662 121663 121664 | préchauffé préchauffer :V1__t___zz:Q:A:1ŝ:m:s/* subventionna subventionner :V1__t___zz:Is:3s/* translates translater :V1__t___zz:Ip:Sp:2s/* alexithymie alexithymie :N:f:s/* ameutées ameuter :V1__t_q_zz:Q:A:f:p/* arquer arquer :V1_it_q_zz:Y/* consolât consoler :V1_it_q_zz:Sq:3s/* franconienne franconien :N:A:f:s/* grondez gronder :V1_it___zz:Ip:2p/* grondez gronder :V1_it___zz:E:2p/* gélifié gélifier :V1__t_q_zz:Q:A:1ŝ:m:s/* malandrin malandrin :N:m:s/* nativiste nativiste :N:A:e:s/* prémaxillaires prémaxillaire :A:e:p/* reinettes reinette :N:f:p/* |
︙ | ︙ | |||
123743 123744 123745 123746 123747 123748 123749 123750 123751 123752 123753 123754 123755 123756 | grognons grognon :N:A:m:p/* hominien hominien :N:m:s/* incarnèrent incarner :V1__t_q_zz:Is:3p!/* murins murin :N:A:m:p/* soutrage soutrage :N:m:s/* craqueler craqueler :V1__t_q_zz:Y/* jaspée jasper :V1__t___zz:Q:A:f:s/* asservissaient asservir :V2_it_q__a:Iq:3p/* crocher crocher :V1_it___zz:Y/* goulée goulée :N:f:s/* lançâmes lancer :V1__t_q_zz:Is:1p/* persillé persiller :V1__t___zz:Q:A:1ŝ:m:s/* tâtonnants tâtonnant :A:m:p/* compactées compacter :V1__t___zz:Q:A:f:p/* | > | 123767 123768 123769 123770 123771 123772 123773 123774 123775 123776 123777 123778 123779 123780 123781 | grognons grognon :N:A:m:p/* hominien hominien :N:m:s/* incarnèrent incarner :V1__t_q_zz:Is:3p!/* murins murin :N:A:m:p/* soutrage soutrage :N:m:s/* craqueler craqueler :V1__t_q_zz:Y/* jaspée jasper :V1__t___zz:Q:A:f:s/* tessinoises tessinois :N:A:f:p/* asservissaient asservir :V2_it_q__a:Iq:3p/* crocher crocher :V1_it___zz:Y/* goulée goulée :N:f:s/* lançâmes lancer :V1__t_q_zz:Is:1p/* persillé persiller :V1__t___zz:Q:A:1ŝ:m:s/* tâtonnants tâtonnant :A:m:p/* compactées compacter :V1__t___zz:Q:A:f:p/* |
︙ | ︙ | |||
124309 124310 124311 124312 124313 124314 124315 | bloques bloquer :V1__t_q_zz:Ip:Sp:2s/* décrotteurs décrotteur :N:m:p/* partitionnement partitionnement :N:m:s/* écornées écorner :V1__t___zz:Q:A:f:p/* abdomens abdomen :N:m:p/* appliquerions appliquer :V1_itnq__a:K:1p/* cousinages cousinage :N:m:p/* | | | 124334 124335 124336 124337 124338 124339 124340 124341 124342 124343 124344 124345 124346 124347 124348 | bloques bloquer :V1__t_q_zz:Ip:Sp:2s/* décrotteurs décrotteur :N:m:p/* partitionnement partitionnement :N:m:s/* écornées écorner :V1__t___zz:Q:A:f:p/* abdomens abdomen :N:m:p/* appliquerions appliquer :V1_itnq__a:K:1p/* cousinages cousinage :N:m:p/* cryptés crypter :V1_it____a:Q:A:m:p/* garait garer :V1__t_q_zz:Iq:3s/* centilitre litre :N:m:s/* épiscopaliens épiscopalien :N:A:m:p/* giclées giclée :N:f:p/* intimidées intimider :V1__t___zz:Q:A:f:p/* intimidées intimidé :N:f:p/* pharmacocinétique pharmacocinétique :A:e:s/* |
︙ | ︙ | |||
124628 124629 124630 124631 124632 124633 124634 124635 124636 124637 124638 124639 124640 124641 | bloqueurs bloqueur :N:A:m:p/* lactones lactone :N:f:p/* poupine poupin :A:f:s/* réagencement réagencement :N:m:s/* voiturée voiturée :N:f:s/* vérifieraient vérifier :V1__t_q_zz:K:3p/* crevasser crevasser :V1__t_q_zz:Y/* départaient départir :V3__t_q__a:Iq:3p/* guaranis guarani :N:A:e:p/* héraultais héraultais :N:A:m:i/* psychodrames psychodrame :N:m:p/* clavetée claveter :V1__t___zz:Q:A:f:s/* colinéarité colinéarité :N:f:s/* entreposent entreposer :V1__t___zz:Ip:Sp:3p/* | > | 124653 124654 124655 124656 124657 124658 124659 124660 124661 124662 124663 124664 124665 124666 124667 | bloqueurs bloqueur :N:A:m:p/* lactones lactone :N:f:p/* poupine poupin :A:f:s/* réagencement réagencement :N:m:s/* voiturée voiturée :N:f:s/* vérifieraient vérifier :V1__t_q_zz:K:3p/* crevasser crevasser :V1__t_q_zz:Y/* cyclohexanol cyclohexanol :N:m:s/* départaient départir :V3__t_q__a:Iq:3p/* guaranis guarani :N:A:e:p/* héraultais héraultais :N:A:m:i/* psychodrames psychodrame :N:m:p/* clavetée claveter :V1__t___zz:Q:A:f:s/* colinéarité colinéarité :N:f:s/* entreposent entreposer :V1__t___zz:Ip:Sp:3p/* |
︙ | ︙ | |||
124965 124966 124967 124968 124969 124970 124971 124972 124973 124974 124975 124976 124977 124978 | tambourinait tambouriner :V1_it___zz:Iq:3s/* arole arole :N:m:s/R gélinotte gélinotte :N:f:s/* lymphographie lymphographie :N:f:s/* secoueront secouer :V1__t_q_zz:If:3p!/* suffoquaient suffoquer :V1_it___zz:Iq:3p/* titubent tituber :V1_i____zz:Ip:Sp:3p/* capitoline capitolin :A:f:s/* crierais crier :V1_it___zz:K:1s:2s/* devinsse devenir :V3_i____e_:Sq:1s/* griffues griffu :A:f:p/* interculturalisme interculturalisme :N:m:s/* rangions ranger :V1__t_q_zz:Iq:Sp:1p/* sanies sanie :N:f:p/* | > | 124991 124992 124993 124994 124995 124996 124997 124998 124999 125000 125001 125002 125003 125004 125005 | tambourinait tambouriner :V1_it___zz:Iq:3s/* arole arole :N:m:s/R gélinotte gélinotte :N:f:s/* lymphographie lymphographie :N:f:s/* secoueront secouer :V1__t_q_zz:If:3p!/* suffoquaient suffoquer :V1_it___zz:Iq:3p/* titubent tituber :V1_i____zz:Ip:Sp:3p/* analyte analyte :N:m:s/* capitoline capitolin :A:f:s/* crierais crier :V1_it___zz:K:1s:2s/* devinsse devenir :V3_i____e_:Sq:1s/* griffues griffu :A:f:p/* interculturalisme interculturalisme :N:m:s/* rangions ranger :V1__t_q_zz:Iq:Sp:1p/* sanies sanie :N:f:p/* |
︙ | ︙ | |||
125344 125345 125346 125347 125348 125349 125350 | macreuse macreuse :N:f:s/* mozabites mozabite :N:A:e:p/* rachetât racheter :V1__t_q_zz:Sq:3s/* rainé rainer :V1__t___zz:Q:A:1ŝ:m:s/* redirent redire :V3__tn___a:Is:3p!/* établirais établir :V2__t_q__a:K:1s:2s/* animalisées animaliser :V1__t___zz:Q:A:f:p/* | | | 125371 125372 125373 125374 125375 125376 125377 125378 125379 125380 125381 125382 125383 125384 125385 | macreuse macreuse :N:f:s/* mozabites mozabite :N:A:e:p/* rachetât racheter :V1__t_q_zz:Sq:3s/* rainé rainer :V1__t___zz:Q:A:1ŝ:m:s/* redirent redire :V3__tn___a:Is:3p!/* établirais établir :V2__t_q__a:K:1s:2s/* animalisées animaliser :V1__t___zz:Q:A:f:p/* cryptées crypter :V1_it____a:Q:A:f:p/* embossé embosser :V1__t_q_zz:Q:A:1ŝ:m:s/* ennuierais ennuyer :V1_it_q_zz:K:1s:2s/* monosaccharides monosaccharide :N:m:p/M mourre mourre :N:f:s/* quantifies quantifier :V1__t___zz:Ip:Sp:2s/* hvad vad :N:m:i;S/* ébéniers ébénier :N:m:p/* |
︙ | ︙ | |||
127287 127288 127289 127290 127291 127292 127293 127294 127295 127296 127297 127298 127299 127300 | antipaludéens antipaludéen :A:m:p/* bornerions borner :V1__t_q_zz:K:1p/* bousier bousier :N:m:s/* commanditent commanditer :V1__t___zz:Ip:Sp:3p/* maîtrisons maîtriser :V1__t_q_zz:Ip:1p/M maîtrisons maîtriser :V1__t_q_zz:E:1p/M meurtrissaient meurtrir :V2_it____a:Iq:3p/* ondoie ondoyer :V1_it___zz:Ip:Sp:1s:3s/* ondoie ondoyer :V1_it___zz:E:2s/* phalloïde phalloïde :A:e:s/* redouteront redouter :V1__t___zz:If:3p!/* violentait violenter :V1__t___zz:Iq:3s/* boutonnage boutonnage :N:m:s/* dument dument :W/R | > | 127314 127315 127316 127317 127318 127319 127320 127321 127322 127323 127324 127325 127326 127327 127328 | antipaludéens antipaludéen :A:m:p/* bornerions borner :V1__t_q_zz:K:1p/* bousier bousier :N:m:s/* commanditent commanditer :V1__t___zz:Ip:Sp:3p/* maîtrisons maîtriser :V1__t_q_zz:Ip:1p/M maîtrisons maîtriser :V1__t_q_zz:E:1p/M meurtrissaient meurtrir :V2_it____a:Iq:3p/* mijoté mijoté :N:m:s/* ondoie ondoyer :V1_it___zz:Ip:Sp:1s:3s/* ondoie ondoyer :V1_it___zz:E:2s/* phalloïde phalloïde :A:e:s/* redouteront redouter :V1__t___zz:If:3p!/* violentait violenter :V1__t___zz:Iq:3s/* boutonnage boutonnage :N:m:s/* dument dument :W/R |
︙ | ︙ | |||
128044 128045 128046 128047 128048 128049 128050 | mannequinat mannequinat :N:m:s/* morfondu morfondu :A:m:s/* péridots péridot :N:m:p/* réappropriations réappropriation :N:f:p/* sulfoné sulfoner :V1__t___zz:Q:A:1ŝ:m:s/* transistorisés transistoriser :V1__t___zz:Q:A:m:p/* triadiques triadique :A:e:p/* | < | 128072 128073 128074 128075 128076 128077 128078 128079 128080 128081 128082 128083 128084 128085 | mannequinat mannequinat :N:m:s/* morfondu morfondu :A:m:s/* péridots péridot :N:m:p/* réappropriations réappropriation :N:f:p/* sulfoné sulfoner :V1__t___zz:Q:A:1ŝ:m:s/* transistorisés transistoriser :V1__t___zz:Q:A:m:p/* triadiques triadique :A:e:p/* adjugeaient adjuger :V1__t_q_zz:Iq:3p/* alimentateur alimentateur :N:A:m:s/* benzodiazépine benzodiazépine :N:f:s/* bité biter :V1__t___zz:Q:A:1ŝ:m:s/* clôturaient clôturer :V1_it___zz:Iq:3p/* incarcéra incarcérer :V1__t___zz:Is:3s/* initialisée initialiser :V1__t___zz:Q:A:f:s/* |
︙ | ︙ | |||
129307 129308 129309 129310 129311 129312 129313 129314 129315 129316 129317 129318 129319 129320 | mauvis mauvis :N:m:i/* prostrées prostré :A:f:p/* puaient puer :V1_it___zz:Iq:3p/* réfuterai réfuter :V1__t___zz:If:1s/* spas spa :N:m:p/* traînez traîner :V1_it_q_zz:Ip:2p/M traînez traîner :V1_it_q_zz:E:2p/M attardai attarder :V1____p_e_:Is:1s/* cillement cillement :N:m:s/* frisquette frisquet :N:A:f:s/* robotisée robotiser :V1__t___zz:Q:A:f:s/* résumât résumer :V1__t_q_zz:Sq:3s/* acconiers acconier :N:m:p/C casoars casoar :N:m:p/* | > | 129334 129335 129336 129337 129338 129339 129340 129341 129342 129343 129344 129345 129346 129347 129348 | mauvis mauvis :N:m:i/* prostrées prostré :A:f:p/* puaient puer :V1_it___zz:Iq:3p/* réfuterai réfuter :V1__t___zz:If:1s/* spas spa :N:m:p/* traînez traîner :V1_it_q_zz:Ip:2p/M traînez traîner :V1_it_q_zz:E:2p/M émincé émincé :N:m:s/* attardai attarder :V1____p_e_:Is:1s/* cillement cillement :N:m:s/* frisquette frisquet :N:A:f:s/* robotisée robotiser :V1__t___zz:Q:A:f:s/* résumât résumer :V1__t_q_zz:Sq:3s/* acconiers acconier :N:m:p/C casoars casoar :N:m:p/* |
︙ | ︙ | |||
129786 129787 129788 129789 129790 129791 129792 | Schoten Schoten :MP:e:i/* alcarazas alcarazas :N:m:i/* chôma chômer :V1_it___zz:Is:3s/* digitalique digitalique :A:e:s/* digitalique digitalique :N:m:s/* radiotélévisé radiotélévisé :A:m:s/* raviront ravir :V2__tn___a:If:3p!/* | < | 129814 129815 129816 129817 129818 129819 129820 129821 129822 129823 129824 129825 129826 129827 | Schoten Schoten :MP:e:i/* alcarazas alcarazas :N:m:i/* chôma chômer :V1_it___zz:Is:3s/* digitalique digitalique :A:e:s/* digitalique digitalique :N:m:s/* radiotélévisé radiotélévisé :A:m:s/* raviront ravir :V2__tn___a:If:3p!/* asphaltés asphalter :V1__t___zz:Q:A:m:p/* complaisais complaire :V3___nq__a:Iq:1s:2s/* dirigeassent diriger :V1_it_q__a:Sq:3p/* hadji hadji :N:m:i/C hadji hadji :N:m:s/* oyats oyat :N:m:p/* radiodiffuser radiodiffuser :V1__t___zz:Y/* |
︙ | ︙ | |||
130100 130101 130102 130103 130104 130105 130106 130107 130108 130109 130110 130111 130112 130113 | long-métrage long-métrage :N:m:s/* éclairons éclairer :V1_it_q_zz:Ip:1p/* éclairons éclairer :V1_it_q_zz:E:1p/* crâner crâner :V1_i____zz:Y/* dépeça dépecer :V1__t___zz:Is:3s/* finalise finaliser :V1__t___zz:Ip:Sp:1s:3s/* finalise finaliser :V1__t___zz:E:2s/* replaçai replacer :V1__t_q_zz:Is:1s/* scrabble scrabble :N:m:s/* sismogrammes sismogramme :N:m:p/* animato animato :W/* découché découcher :V1_i____zz:Q:1ŝ:e:i/* extrajudiciairement extrajudiciairement :W/* frète fréter :V1__t___zz:Ip:Sp:1s:3s/* | > | 130127 130128 130129 130130 130131 130132 130133 130134 130135 130136 130137 130138 130139 130140 130141 | long-métrage long-métrage :N:m:s/* éclairons éclairer :V1_it_q_zz:Ip:1p/* éclairons éclairer :V1_it_q_zz:E:1p/* crâner crâner :V1_i____zz:Y/* dépeça dépecer :V1__t___zz:Is:3s/* finalise finaliser :V1__t___zz:Ip:Sp:1s:3s/* finalise finaliser :V1__t___zz:E:2s/* intracytoplasmique intracytoplasmique :A:e:s/* replaçai replacer :V1__t_q_zz:Is:1s/* scrabble scrabble :N:m:s/* sismogrammes sismogramme :N:m:p/* animato animato :W/* découché découcher :V1_i____zz:Q:1ŝ:e:i/* extrajudiciairement extrajudiciairement :W/* frète fréter :V1__t___zz:Ip:Sp:1s:3s/* |
︙ | ︙ | |||
130878 130879 130880 130881 130882 130883 130884 130885 130886 130887 130888 130889 130890 130891 | traquet traquet :N:m:s/* alcaliniser alcaliniser :V1__t___zz:Y/* débarrassez débarrasser :V1_it_q_zz:Ip:2p/* débarrassez débarrasser :V1_it_q_zz:E:2p/* décentrées décentrer :V1__t_q_zz:Q:A:f:p/* ferroutage ferroutage :N:m:s/* sabordés saborder :V1__t_q_zz:Q:A:m:p/* fuses fuser :V1_i____zz:Ip:Sp:2s/* mystificatrices mystificateur :N:A:f:p/* sollicitions solliciter :V1__t___zz:Iq:Sp:1p/* adoptais adopter :V1__t____a:Iq:1s:2s/* antipéristaltique antipéristaltique :A:e:s/* dunites dunite :N:f:p/* détachais détacher :V1__t_q_zz:Iq:1s:2s/* | > | 130906 130907 130908 130909 130910 130911 130912 130913 130914 130915 130916 130917 130918 130919 130920 | traquet traquet :N:m:s/* alcaliniser alcaliniser :V1__t___zz:Y/* débarrassez débarrasser :V1_it_q_zz:Ip:2p/* débarrassez débarrasser :V1_it_q_zz:E:2p/* décentrées décentrer :V1__t_q_zz:Q:A:f:p/* ferroutage ferroutage :N:m:s/* sabordés saborder :V1__t_q_zz:Q:A:m:p/* albertaine albertain :N:A:f:s/* fuses fuser :V1_i____zz:Ip:Sp:2s/* mystificatrices mystificateur :N:A:f:p/* sollicitions solliciter :V1__t___zz:Iq:Sp:1p/* adoptais adopter :V1__t____a:Iq:1s:2s/* antipéristaltique antipéristaltique :A:e:s/* dunites dunite :N:f:p/* détachais détacher :V1__t_q_zz:Iq:1s:2s/* |
︙ | ︙ | |||
130995 130996 130997 130998 130999 131000 131001 131002 131003 131004 131005 131006 131007 131008 | réclamassent réclamer :V1_it_q_zz:Sq:3p/* rétractera rétracter :V1__t_q_zz:If:3s/* venante venant :N:A:f:s/* dissyllabique dissyllabique :A:e:s/* fabulateur fabulateur :N:A:m:s/* podomètre podomètre :N:m:s/* séminome séminome :N:m:s/* cabiais cabiai :N:m:p/* conservâmes conserver :V1__t_q_zz:Is:1p/* cérémoniale cérémonial :A:f:s/* feignons feindre :V3_it____a:Ip:1p/* feignons feindre :V3_it____a:E:1p/* métasomatiques métasomatique :A:e:p/* nauséeuses nauséeux :A:f:p/* | > | 131024 131025 131026 131027 131028 131029 131030 131031 131032 131033 131034 131035 131036 131037 131038 | réclamassent réclamer :V1_it_q_zz:Sq:3p/* rétractera rétracter :V1__t_q_zz:If:3s/* venante venant :N:A:f:s/* dissyllabique dissyllabique :A:e:s/* fabulateur fabulateur :N:A:m:s/* podomètre podomètre :N:m:s/* séminome séminome :N:m:s/* émincés émincé :N:m:p/* cabiais cabiai :N:m:p/* conservâmes conserver :V1__t_q_zz:Is:1p/* cérémoniale cérémonial :A:f:s/* feignons feindre :V3_it____a:Ip:1p/* feignons feindre :V3_it____a:E:1p/* métasomatiques métasomatique :A:e:p/* nauséeuses nauséeux :A:f:p/* |
︙ | ︙ | |||
131383 131384 131385 131386 131387 131388 131389 131390 131391 131392 131393 131394 131395 131396 | chorographique chorographique :A:e:s/* codimension codimension :N:f:s/* commercialisait commercialiser :V1__t___zz:Iq:3s/* fractionna fractionner :V1__t_q_zz:Is:3s/* instrumentalise instrumentaliser :V1__t___zz:Ip:Sp:1s:3s/* instrumentalise instrumentaliser :V1__t___zz:E:2s/* calquait calquer :V1__t___zz:Iq:3s/* muance muance :N:f:s/* péroré pérorer :V1_i____zz:Q:1ŝ:e:i/* semencières semencier :N:A:f:p/* sirupeuses sirupeux :A:f:p/* absentera absenter :V1__t_q_zz:If:3s/* baraqué baraqué :N:A:m:s/* contaminantes contaminant :A:f:p/* | > | 131413 131414 131415 131416 131417 131418 131419 131420 131421 131422 131423 131424 131425 131426 131427 | chorographique chorographique :A:e:s/* codimension codimension :N:f:s/* commercialisait commercialiser :V1__t___zz:Iq:3s/* fractionna fractionner :V1__t_q_zz:Is:3s/* instrumentalise instrumentaliser :V1__t___zz:Ip:Sp:1s:3s/* instrumentalise instrumentaliser :V1__t___zz:E:2s/* calquait calquer :V1__t___zz:Iq:3s/* micropipette micropipette :N:f:s/* muance muance :N:f:s/* péroré pérorer :V1_i____zz:Q:1ŝ:e:i/* semencières semencier :N:A:f:p/* sirupeuses sirupeux :A:f:p/* absentera absenter :V1__t_q_zz:If:3s/* baraqué baraqué :N:A:m:s/* contaminantes contaminant :A:f:p/* |
︙ | ︙ | |||
131971 131972 131973 131974 131975 131976 131977 131978 131979 131980 131981 131982 131983 131984 | toxémies toxémie :N:f:p/* acidifiées acidifier :V1__t_q_zz:Q:A:f:p/* balancines balancine :N:f:p/* cellulites cellulite :N:f:p/* décourageons décourager :V1__t_q_zz:Ip:1p/* décourageons décourager :V1__t_q_zz:E:1p/* dépeçaient dépecer :V1__t___zz:Iq:3p/* omettais omettre :V3__t_q__a:Iq:1s:2s/* rassise rasseoir :V3_it_q__a:Q:A:f:s/M rassise rassis :A:f:s/* rassise rassoir :V3_it_q__a:Q:A:f:s/R XXXVIIIe XXXVIIIe :A:e:s/* atrophiante atrophiant :A:f:s/* cubé cuber :V1_it___zz:Q:A:1ŝ:m:s/* | > | 132002 132003 132004 132005 132006 132007 132008 132009 132010 132011 132012 132013 132014 132015 132016 | toxémies toxémie :N:f:p/* acidifiées acidifier :V1__t_q_zz:Q:A:f:p/* balancines balancine :N:f:p/* cellulites cellulite :N:f:p/* décourageons décourager :V1__t_q_zz:Ip:1p/* décourageons décourager :V1__t_q_zz:E:1p/* dépeçaient dépecer :V1__t___zz:Iq:3p/* entérocytes entérocyte :N:m:p/* omettais omettre :V3__t_q__a:Iq:1s:2s/* rassise rasseoir :V3_it_q__a:Q:A:f:s/M rassise rassis :A:f:s/* rassise rassoir :V3_it_q__a:Q:A:f:s/R XXXVIIIe XXXVIIIe :A:e:s/* atrophiante atrophiant :A:f:s/* cubé cuber :V1_it___zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
134126 134127 134128 134129 134130 134131 134132 | décollera décoller :V1_it_q_zz:If:3s/* déraisonnait déraisonner :V1_i____zz:Iq:3s/* détournerai détourner :V1__t_q_zz:If:1s/* hémangiome hémangiome :N:m:s/* papilleuses papilleux :A:f:p/* tocophérols tocophérol :N:m:p/X torah torah :N:f:s/* | | | 134158 134159 134160 134161 134162 134163 134164 134165 134166 134167 134168 134169 134170 134171 134172 | décollera décoller :V1_it_q_zz:If:3s/* déraisonnait déraisonner :V1_i____zz:Iq:3s/* détournerai détourner :V1__t_q_zz:If:1s/* hémangiome hémangiome :N:m:s/* papilleuses papilleux :A:f:p/* tocophérols tocophérol :N:m:p/X torah torah :N:f:s/* voilera voiler :V1_it_q__a:If:3s/* assoira asseoir :V3__t_q__a:If:3s/M désapprouvons désapprouver :V1_it___zz:Ip:1p/* désapprouvons désapprouver :V1_it___zz:E:1p/* estropiant estropier :V1__t_q_zz:P/* procurais procurer :V1__t_q_zz:Iq:1s:2s/* réorganisaient réorganiser :V1__t_q_zz:Iq:3p/* supervisa superviser :V1__t___zz:Is:3s/* |
︙ | ︙ | |||
134900 134901 134902 134903 134904 134905 134906 134907 134908 134909 134910 134911 134912 134913 | refluera refluer :V1_i____zz:If:3s/* trafiquèrent trafiquer :V1__tn__zz:Is:3p!/* transfusionnelles transfusionnel :A:f:p/* anatomiser anatomiser :V1__t___zz:Y/* beauf beauf :N:m:s/* colonisaient coloniser :V1__t___zz:Iq:3p/* damascène damascène :N:A:e:s/* eskimos eskimo :N:A:e:p/* logerai loger :V1_it_q_zz:If:1s/* retirage retirage :N:m:s/* stigmatisera stigmatiser :V1__t___zz:If:3s/* surdose surdose :N:f:s/* victuaille victuaille :N:f:s/* cigarières cigarier :N:f:p/* | > | 134932 134933 134934 134935 134936 134937 134938 134939 134940 134941 134942 134943 134944 134945 134946 | refluera refluer :V1_i____zz:If:3s/* trafiquèrent trafiquer :V1__tn__zz:Is:3p!/* transfusionnelles transfusionnel :A:f:p/* anatomiser anatomiser :V1__t___zz:Y/* beauf beauf :N:m:s/* colonisaient coloniser :V1__t___zz:Iq:3p/* damascène damascène :N:A:e:s/* distinctivité distinctivité :N:f:s/* eskimos eskimo :N:A:e:p/* logerai loger :V1_it_q_zz:If:1s/* retirage retirage :N:m:s/* stigmatisera stigmatiser :V1__t___zz:If:3s/* surdose surdose :N:f:s/* victuaille victuaille :N:f:s/* cigarières cigarier :N:f:p/* |
︙ | ︙ | |||
135226 135227 135228 135229 135230 135231 135232 | bakchichs bakchich :N:m:p/* chiffonnait chiffonner :V1_it_q_zz:Iq:3s/* collaboratives collaboratif :A:f:p/* gandouras gandoura :N:f:p/* préservatives préservatif :A:f:p/* résorba résorber :V1__t_q_zz:Is:3s/* saluât saluer :V1__t_q_zz:Sq:3s/* | | | 135259 135260 135261 135262 135263 135264 135265 135266 135267 135268 135269 135270 135271 135272 135273 | bakchichs bakchich :N:m:p/* chiffonnait chiffonner :V1_it_q_zz:Iq:3s/* collaboratives collaboratif :A:f:p/* gandouras gandoura :N:f:p/* préservatives préservatif :A:f:p/* résorba résorber :V1__t_q_zz:Is:3s/* saluât saluer :V1__t_q_zz:Sq:3s/* crypter crypter :V1_it____a:Y/* extravaser extravaser :V1__t_q_zz:Y/* mécontenterait mécontenter :V1__t___zz:K:3s/* soupirez soupirer :V1_it___zz:Ip:2p/* soupirez soupirer :V1_it___zz:E:2p/* bermuda bermuda :N:m:s/* concaténations concaténation :N:f:p/* cézannienne cézannien :A:f:s/* |
︙ | ︙ | |||
135755 135756 135757 135758 135759 135760 135761 135762 135763 135764 135765 135766 135767 135768 | dépasses dépasser :V1_it_q_zz:Ip:Sp:2s/* désespérera désespérer :V1_it_q_zz:If:3s/M frôlèrent frôler :V1__t_q_zz:Is:3p!/* giflait gifler :V1__t___zz:Iq:3s/* lobulées lobulé :A:f:p/* sablonnière sablonnière :N:f:s/* tapageusement tapageusement :W/* chebecs chebec :N:m:p/M crénothérapie crénothérapie :N:f:s/* fourragé fourrager :V1_it___zz:Q:A:1ŝ:m:s/* framboisée framboiser :V1__t___zz:Q:A:f:s/* électroacoustiques électroacoustique :A:e:p/* électroacoustiques électroacoustique :N:f:p/* éprouveras éprouver :V1__t____a:If:2s/* | > | 135788 135789 135790 135791 135792 135793 135794 135795 135796 135797 135798 135799 135800 135801 135802 | dépasses dépasser :V1_it_q_zz:Ip:Sp:2s/* désespérera désespérer :V1_it_q_zz:If:3s/M frôlèrent frôler :V1__t_q_zz:Is:3p!/* giflait gifler :V1__t___zz:Iq:3s/* lobulées lobulé :A:f:p/* sablonnière sablonnière :N:f:s/* tapageusement tapageusement :W/* thermobalance thermobalance :N:f:s/* chebecs chebec :N:m:p/M crénothérapie crénothérapie :N:f:s/* fourragé fourrager :V1_it___zz:Q:A:1ŝ:m:s/* framboisée framboiser :V1__t___zz:Q:A:f:s/* électroacoustiques électroacoustique :A:e:p/* électroacoustiques électroacoustique :N:f:p/* éprouveras éprouver :V1__t____a:If:2s/* |
︙ | ︙ | |||
137147 137148 137149 137150 137151 137152 137153 | implosif implosif :A:m:s/* médirai médire :V3_i_n___a:If:1s/* regimba regimber :V1_i__q_zz:Is:3s/* rimaye rimaye :N:f:s/* réséqua réséquer :V1__t___zz:Is:3s/* vagotoniques vagotonique :A:e:p/* arsénopyrite arsénopyrite :N:f:s/* | | | 137181 137182 137183 137184 137185 137186 137187 137188 137189 137190 137191 137192 137193 137194 137195 | implosif implosif :A:m:s/* médirai médire :V3_i_n___a:If:1s/* regimba regimber :V1_i__q_zz:Is:3s/* rimaye rimaye :N:f:s/* réséqua réséquer :V1__t___zz:Is:3s/* vagotoniques vagotonique :A:e:p/* arsénopyrite arsénopyrite :N:f:s/* crypta crypter :V1_it____a:Is:3s/* indécrottables indécrottable :A:e:p/* moyennage moyennage :N:m:s/* procuratrice procurateur :N:f:s/* guillemots guillemot :N:m:p/* infectivité infectivité :N:f:s/* surplombants surplombant :A:m:p/* survoltés survolter :V1__t___zz:Q:A:m:p/* |
︙ | ︙ | |||
138917 138918 138919 138920 138921 138922 138923 138924 138925 138926 138927 138928 138929 138930 | coffrés coffrer :V1__t___zz:Q:A:m:p/* distribuerons distribuer :V1__t_q_zz:If:1p/* fascinèrent fasciner :V1__t___zz:Is:3p!/* préclinique préclinique :A:e:s/* thrombopénique thrombopénique :A:e:s/* trognons trognon :A:e:p/* trognons trognon :N:m:p/* agénésies agénésie :N:f:p/* criailler criailler :V1_i____zz:Y/* encreurs encreur :N:m:p/* lallation lallation :N:f:s/* prégermination prégermination :N:f:s/* érigeront ériger :V1__t_q_zz:If:3p!/* briscards briscard :N:m:p/* | > | 138951 138952 138953 138954 138955 138956 138957 138958 138959 138960 138961 138962 138963 138964 138965 | coffrés coffrer :V1__t___zz:Q:A:m:p/* distribuerons distribuer :V1__t_q_zz:If:1p/* fascinèrent fasciner :V1__t___zz:Is:3p!/* préclinique préclinique :A:e:s/* thrombopénique thrombopénique :A:e:s/* trognons trognon :A:e:p/* trognons trognon :N:m:p/* Imane Imane :M1:f:i/* agénésies agénésie :N:f:p/* criailler criailler :V1_i____zz:Y/* encreurs encreur :N:m:p/* lallation lallation :N:f:s/* prégermination prégermination :N:f:s/* érigeront ériger :V1__t_q_zz:If:3p!/* briscards briscard :N:m:p/* |
︙ | ︙ | |||
139009 139010 139011 139012 139013 139014 139015 139016 139017 139018 139019 139020 139021 139022 | répugnèrent répugner :V1__tn__zz:Is:3p!/* spineurs spineur :N:m:p/* Jinan Jinan :MP:e:i/* aborderez aborder :V1_it_q_zz:If:2p/* cagette cagette :N:f:s/* dines diner :V1_i____zz:Ip:Sp:2s/R délecta délecter :V1__t_q_zz:Is:3s/* galéasse galéasse :N:f:s/* implosives implosif :A:f:p/* meunières meunier :N:A:f:p/* méconnaîtront méconnaître :V3__t_q__a:If:3p!/M plaisancier plaisancier :N:m:s/* prosternera prosterner :V1__t_q_zz:If:3s/* satisfissent satisfaire :V3__tnq__a:Sq:3p/* | > | 139044 139045 139046 139047 139048 139049 139050 139051 139052 139053 139054 139055 139056 139057 139058 | répugnèrent répugner :V1__tn__zz:Is:3p!/* spineurs spineur :N:m:p/* Jinan Jinan :MP:e:i/* aborderez aborder :V1_it_q_zz:If:2p/* cagette cagette :N:f:s/* dines diner :V1_i____zz:Ip:Sp:2s/R délecta délecter :V1__t_q_zz:Is:3s/* franconiens franconien :N:A:m:p/* galéasse galéasse :N:f:s/* implosives implosif :A:f:p/* meunières meunier :N:A:f:p/* méconnaîtront méconnaître :V3__t_q__a:If:3p!/M plaisancier plaisancier :N:m:s/* prosternera prosterner :V1__t_q_zz:If:3s/* satisfissent satisfaire :V3__tnq__a:Sq:3p/* |
︙ | ︙ | |||
140171 140172 140173 140174 140175 140176 140177 | mirbane mirbane :N:f:s/* nitrophiles nitrophile :A:e:p/* parvovirus parvovirus :N:m:i/* pourrirait pourrir :V2_it____a:K:3s/* saprophytisme saprophytisme :N:m:s/* scaroles scarole :N:f:p/* suffirai suffire :V3_i_nq__a:If:1s/* | | | 140207 140208 140209 140210 140211 140212 140213 140214 140215 140216 140217 140218 140219 140220 140221 | mirbane mirbane :N:f:s/* nitrophiles nitrophile :A:e:p/* parvovirus parvovirus :N:m:i/* pourrirait pourrir :V2_it____a:K:3s/* saprophytisme saprophytisme :N:m:s/* scaroles scarole :N:f:p/* suffirai suffire :V3_i_nq__a:If:1s/* voilerait voiler :V1_it_q__a:K:3s/* affriolante affriolant :A:f:s/* anticiperait anticiper :V1_it____a:K:3s/* dissecteur dissecteur :N:m:s/* délébile délébile :A:e:s/* gaudir gaudir :V2____p_e_:Y/* protéinémie protéinémie :N:f:s/* rembrunissait rembrunir :V2__t_q__a:Iq:3s/* |
︙ | ︙ | |||
141991 141992 141993 141994 141995 141996 141997 141998 141999 142000 142001 142002 142003 142004 | éburnéen éburnéen :A:m:s/* braillements braillement :N:m:p/* déifiait déifier :V1__t___zz:Iq:3s/* sous-cutané sous-cutané :A:m:s/* submergerait submerger :V1__t___zz:K:3s/* teflon teflon :N:m:s/C échinoderme échinoderme :N:m:s/* antioxydant antioxydant :A:m:s/* antioxydants antioxydant :A:m:p/* bactériocines bactériocine :N:f:p/* ballonnée ballonner :V1__t___zz:Q:A:f:s/* bondira bondir :V2_i_____a:If:3s/* conspuant conspuer :V1__t___zz:P/* consternants consternant :A:m:p/* | > | 142027 142028 142029 142030 142031 142032 142033 142034 142035 142036 142037 142038 142039 142040 142041 | éburnéen éburnéen :A:m:s/* braillements braillement :N:m:p/* déifiait déifier :V1__t___zz:Iq:3s/* sous-cutané sous-cutané :A:m:s/* submergerait submerger :V1__t___zz:K:3s/* teflon teflon :N:m:s/C échinoderme échinoderme :N:m:s/* Donia Donia :M1:f:i/* antioxydant antioxydant :A:m:s/* antioxydants antioxydant :A:m:p/* bactériocines bactériocine :N:f:p/* ballonnée ballonner :V1__t___zz:Q:A:f:s/* bondira bondir :V2_i_____a:If:3s/* conspuant conspuer :V1__t___zz:P/* consternants consternant :A:m:p/* |
︙ | ︙ | |||
142301 142302 142303 142304 142305 142306 142307 142308 142309 142310 142311 142312 142313 142314 | présidentialistes présidentialiste :N:A:e:p/* sabotaient saboter :V1_it___zz:Iq:3p/* scratch scratch :A:e:i/M scratch scratch :N:m:s/* scratch scratch :A:e:s/R soulèves soulever :V1__t_q_zz:Ip:Sp:2s/* vérifierez vérifier :V1__t_q_zz:If:2p/* apepsie apepsie :N:f:s/* haruspice haruspice :N:m:s/M lèchefrite lèchefrite :N:f:s/* réanime réanimer :V1__t___zz:Ip:Sp:1s:3s/* réanime réanimer :V1__t___zz:E:2s/* champi champi :A:e:s/* champi champi :N:m:s/* | > | 142338 142339 142340 142341 142342 142343 142344 142345 142346 142347 142348 142349 142350 142351 142352 | présidentialistes présidentialiste :N:A:e:p/* sabotaient saboter :V1_it___zz:Iq:3p/* scratch scratch :A:e:i/M scratch scratch :N:m:s/* scratch scratch :A:e:s/R soulèves soulever :V1__t_q_zz:Ip:Sp:2s/* vérifierez vérifier :V1__t_q_zz:If:2p/* albertain albertain :N:A:m:s/* apepsie apepsie :N:f:s/* haruspice haruspice :N:m:s/M lèchefrite lèchefrite :N:f:s/* réanime réanimer :V1__t___zz:Ip:Sp:1s:3s/* réanime réanimer :V1__t___zz:E:2s/* champi champi :A:e:s/* champi champi :N:m:s/* |
︙ | ︙ | |||
143888 143889 143890 143891 143892 143893 143894 | intersexuels intersexuel :A:m:p/* inéducables inéducable :A:e:p/* macramé macramé :N:m:s/* octroierait octroyer :V1__t_q_zz:K:3s/* quarres quarrer :V1__t___zz:Ip:Sp:2s/* sensationnaliste sensationnaliste :A:e:s/* valentinois valentinois :N:A:m:i/* | | | 143926 143927 143928 143929 143930 143931 143932 143933 143934 143935 143936 143937 143938 143939 143940 | intersexuels intersexuel :A:m:p/* inéducables inéducable :A:e:p/* macramé macramé :N:m:s/* octroierait octroyer :V1__t_q_zz:K:3s/* quarres quarrer :V1__t___zz:Ip:Sp:2s/* sensationnaliste sensationnaliste :A:e:s/* valentinois valentinois :N:A:m:i/* épicer épicer :V1_it____a:Y/* débatteurs débatteur :N:m:p/* déponents déponent :N:A:m:p/* dévalisèrent dévaliser :V1__t___zz:Is:3p!/* enfantinement enfantinement :W/* ennoblira ennoblir :V2__t_q__a:If:3s/* forciez forcer :V1_it_q_zz:Iq:Sp:2p/* machinateur machinateur :N:m:s/* |
︙ | ︙ | |||
149245 149246 149247 149248 149249 149250 149251 149252 149253 149254 149255 149256 149257 149258 | grignotages grignotage :N:m:p/* incongrûment incongrûment :W/M japhétiques japhétique :A:e:p/* kirch kirch :N:m:s/R paroli paroli :N:m:s/* raréfia raréfier :V1__t_q_zz:Is:3s/* tamiseur tamiseur :N:A:m:s/* accordables accordable :A:e:p/* cardiotoniques cardiotonique :A:e:p/* cardiotoniques cardiotonique :N:m:p/* cordialités cordialité :N:f:p/* entreverra entrevoir :V3__t_q__a:If:3s/* méthémoglobinémie méthémoglobinémie :N:f:s/* pourvoirez pourvoir :V3_itnq__a:If:2p/* | > | 149283 149284 149285 149286 149287 149288 149289 149290 149291 149292 149293 149294 149295 149296 149297 | grignotages grignotage :N:m:p/* incongrûment incongrûment :W/M japhétiques japhétique :A:e:p/* kirch kirch :N:m:s/R paroli paroli :N:m:s/* raréfia raréfier :V1__t_q_zz:Is:3s/* tamiseur tamiseur :N:A:m:s/* Castorama Castorama :MP:e:i/* accordables accordable :A:e:p/* cardiotoniques cardiotonique :A:e:p/* cardiotoniques cardiotonique :N:m:p/* cordialités cordialité :N:f:p/* entreverra entrevoir :V3__t_q__a:If:3s/* méthémoglobinémie méthémoglobinémie :N:f:s/* pourvoirez pourvoir :V3_itnq__a:If:2p/* |
︙ | ︙ | |||
151037 151038 151039 151040 151041 151042 151043 | pelons peler :V1_it_q_zz:E:1p/* délire délirer :V1_i____zz:Ip:Sp:1s:3s/* délire délirer :V1_i____zz:E:2s/* délires délirer :V1_i____zz:Ip:Sp:2s/* effronteries effronterie :N:f:p/* gesticulants gesticulant :A:m:p/* lapones lapon :N:A:f:p/* | < | 151076 151077 151078 151079 151080 151081 151082 151083 151084 151085 151086 151087 151088 151089 | pelons peler :V1_it_q_zz:E:1p/* délire délirer :V1_i____zz:Ip:Sp:1s:3s/* délire délirer :V1_i____zz:E:2s/* délires délirer :V1_i____zz:Ip:Sp:2s/* effronteries effronterie :N:f:p/* gesticulants gesticulant :A:m:p/* lapones lapon :N:A:f:p/* préstratégique préstratégique :A:e:s/* rajeunissante rajeunissant :A:f:s/* résonantes résonant :A:f:p/R vacuolisés vacuoliser :V1__t___zz:Q:A:m:p/* versifications versification :N:f:p/* digraphe digraphe :N:m:s/* démantelait démanteler :V1__t___zz:Iq:3s/* |
︙ | ︙ | |||
152192 152193 152194 152195 152196 152197 152198 152199 152200 152201 152202 152203 152204 152205 | exterminerai exterminer :V1__t___zz:If:1s/* meulons meulon :N:m:p/* monoclonales monoclonal :A:f:p/* notifiaient notifier :V1__t___zz:Iq:3p/* picoler picoler :V1_it___zz:Y/* reflètera refléter :V1__t_q_zz:If:3s/R regratter regratter :V1_it___zz:Y/* diffama diffamer :V1__t___zz:Is:3s/* déboise déboiser :V1__t___zz:Ip:Sp:1s:3s/* déboise déboiser :V1__t___zz:E:2s/* détenions détenir :V3__t____a:Iq:Sp:1p/* entrebâille entrebâiller :V1__t_q_zz:Ip:Sp:1s:3s/* entrebâille entrebâiller :V1__t_q_zz:E:2s/* monel monel :N:m:s/* | > | 152230 152231 152232 152233 152234 152235 152236 152237 152238 152239 152240 152241 152242 152243 152244 | exterminerai exterminer :V1__t___zz:If:1s/* meulons meulon :N:m:p/* monoclonales monoclonal :A:f:p/* notifiaient notifier :V1__t___zz:Iq:3p/* picoler picoler :V1_it___zz:Y/* reflètera refléter :V1__t_q_zz:If:3s/R regratter regratter :V1_it___zz:Y/* retransférer retransférer :V1__t____a:Y/* diffama diffamer :V1__t___zz:Is:3s/* déboise déboiser :V1__t___zz:Ip:Sp:1s:3s/* déboise déboiser :V1__t___zz:E:2s/* détenions détenir :V3__t____a:Iq:Sp:1p/* entrebâille entrebâiller :V1__t_q_zz:Ip:Sp:1s:3s/* entrebâille entrebâiller :V1__t_q_zz:E:2s/* monel monel :N:m:s/* |
︙ | ︙ | |||
153154 153155 153156 153157 153158 153159 153160 | impondérabilité impondérabilité :N:f:s/* inassignables inassignable :A:e:p/* marmiteux marmiteux :A:m:i/* planimètres planimètre :N:m:p/* retardons retarder :V1_it___zz:Ip:1p/* retardons retarder :V1_it___zz:E:1p/* tacots tacot :N:m:p/* | | | 153193 153194 153195 153196 153197 153198 153199 153200 153201 153202 153203 153204 153205 153206 153207 | impondérabilité impondérabilité :N:f:s/* inassignables inassignable :A:e:p/* marmiteux marmiteux :A:m:i/* planimètres planimètre :N:m:p/* retardons retarder :V1_it___zz:Ip:1p/* retardons retarder :V1_it___zz:E:1p/* tacots tacot :N:m:p/* voilai voiler :V1_it_q__a:Is:1s/* boraté boraté :A:m:s/* dévaluait dévaluer :V1__t_q_zz:Iq:3s/* endurez endurer :V1__t___zz:Ip:2p/* endurez endurer :V1__t___zz:E:2p/* historier historier :V1__t___zz:Y/* labbe labbe :N:m:s/* négatons négaton :N:m:p/* |
︙ | ︙ | |||
161012 161013 161014 161015 161016 161017 161018 161019 161020 161021 161022 161023 161024 161025 | flm lm :N:m:i;S/* matérialiseront matérialiser :V1__t_q_zz:If:3p!/* négligeâmes négliger :V1__t_q_zz:Is:1p/* perdurerait perdurer :V1_i____zz:K:3s/* pédipalpes pédipalpe :N:m:p/* quintuplés quintupler :V1_it___zz:Q:A:m:p/* quintuplés quintuplés :N:m:p/* retourneriez retourner :V1_it_q_zz:K:2p/* salification salification :N:f:s/* spationautes spationaute :N:e:p/* tordis tordre :V3_it_q__a:Is:1s:2s/* vireuse vireur :N:f:s/* vireuses vireur :N:f:p/* Hoenheim Hoenheim :MP:e:i/* | > | 161051 161052 161053 161054 161055 161056 161057 161058 161059 161060 161061 161062 161063 161064 161065 | flm lm :N:m:i;S/* matérialiseront matérialiser :V1__t_q_zz:If:3p!/* négligeâmes négliger :V1__t_q_zz:Is:1p/* perdurerait perdurer :V1_i____zz:K:3s/* pédipalpes pédipalpe :N:m:p/* quintuplés quintupler :V1_it___zz:Q:A:m:p/* quintuplés quintuplés :N:m:p/* replay replay :N:m:s/* retourneriez retourner :V1_it_q_zz:K:2p/* salification salification :N:f:s/* spationautes spationaute :N:e:p/* tordis tordre :V3_it_q__a:Is:1s:2s/* vireuse vireur :N:f:s/* vireuses vireur :N:f:p/* Hoenheim Hoenheim :MP:e:i/* |
︙ | ︙ | |||
161062 161063 161064 161065 161066 161067 161068 | memorandums memorandum :N:m:p/C mucite mucite :N:f:s/* raffolais raffoler :V1___n__zz:Iq:1s:2s/* sclérodermies sclérodermie :N:f:p/* subintrante subintrant :A:f:s/* transpirèrent transpirer :V1_it___zz:Is:3p!/* trucidé trucider :V1__t___zz:Q:A:1ŝ:m:s/* | | | 161102 161103 161104 161105 161106 161107 161108 161109 161110 161111 161112 161113 161114 161115 161116 | memorandums memorandum :N:m:p/C mucite mucite :N:f:s/* raffolais raffoler :V1___n__zz:Iq:1s:2s/* sclérodermies sclérodermie :N:f:p/* subintrante subintrant :A:f:s/* transpirèrent transpirer :V1_it___zz:Is:3p!/* trucidé trucider :V1__t___zz:Q:A:1ŝ:m:s/* voilât voiler :V1_it_q__a:Sq:3s/* égratignaient égratigner :V1__t_q_zz:Iq:3p/* énantiomère énantiomère :N:m:s/* châtiât châtier :V1__t_q_zz:Sq:3s/* effeuilla effeuiller :V1__t_q_zz:Is:3s/* emperlé emperler :V1__t___zz:Q:A:1ŝ:m:s/* enquiquiner enquiquiner :V1__t_q_zz:Y/* exemptez exempter :V1__t_q_zz:Ip:2p/* |
︙ | ︙ | |||
161318 161319 161320 161321 161322 161323 161324 161325 161326 161327 161328 161329 161330 161331 | cordât corder :V1__t___zz:Sq:3s/* criminalisée criminaliser :V1__t___zz:Q:A:f:s/* diaphasique diaphasique :A:e:s/X déclenchât déclencher :V1__t_q_zz:Sq:3s/* enfoncerons enfoncer :V1_it_q_zz:If:1p/* forez forer :V1__t___zz:Ip:2p/* forez forer :V1__t___zz:E:2p/* gargouillant gargouiller :V1_i____zz:P/* ichtyosaure ichtyosaure :N:m:s/* intermédiée intermédier :V1_it_q__a:Q:A:f:s/* parafée parafer :V1__t___zz:Q:A:f:s/R pipe piper :V1_it___zz:Ip:Sp:1s:3s/* pipe piper :V1_it___zz:E:2s/* pipes piper :V1_it___zz:Ip:Sp:2s/* | > | 161358 161359 161360 161361 161362 161363 161364 161365 161366 161367 161368 161369 161370 161371 161372 | cordât corder :V1__t___zz:Sq:3s/* criminalisée criminaliser :V1__t___zz:Q:A:f:s/* diaphasique diaphasique :A:e:s/X déclenchât déclencher :V1__t_q_zz:Sq:3s/* enfoncerons enfoncer :V1_it_q_zz:If:1p/* forez forer :V1__t___zz:Ip:2p/* forez forer :V1__t___zz:E:2p/* franconiennes franconien :N:A:f:p/* gargouillant gargouiller :V1_i____zz:P/* ichtyosaure ichtyosaure :N:m:s/* intermédiée intermédier :V1_it_q__a:Q:A:f:s/* parafée parafer :V1__t___zz:Q:A:f:s/R pipe piper :V1_it___zz:Ip:Sp:1s:3s/* pipe piper :V1_it___zz:E:2s/* pipes piper :V1_it___zz:Ip:Sp:2s/* |
︙ | ︙ | |||
162574 162575 162576 162577 162578 162579 162580 | malformées malformer :V1_it_q__a:Q:A:f:p/* raclions racler :V1__t_q_zz:Iq:Sp:1p/* réarmements réarmement :N:m:p/* surharmonique surharmonique :A:e:s/* surprotectrice surprotecteur :A:f:s/* télicité télicité :N:f:s/* vocalisent vocaliser :V1_it___zz:Ip:Sp:3p/* | | | | 162615 162616 162617 162618 162619 162620 162621 162622 162623 162624 162625 162626 162627 162628 162629 162630 | malformées malformer :V1_it_q__a:Q:A:f:p/* raclions racler :V1__t_q_zz:Iq:Sp:1p/* réarmements réarmement :N:m:p/* surharmonique surharmonique :A:e:s/* surprotectrice surprotecteur :A:f:s/* télicité télicité :N:f:s/* vocalisent vocaliser :V1_it___zz:Ip:Sp:3p/* voilons voiler :V1_it_q__a:Ip:1p/* voilons voiler :V1_it_q__a:E:1p/* Raspberry Raspberry :MP:m:i/X assommées assommer :V1__t_q_zz:Q:A:f:p/* assommées assommé :N:f:p/* assortissaient assortir :V2__t_q__a:Iq:3p/* couvriez couvrir :V3__t_q__a:Iq:Sp:2p/* entrejambes entrejambe :N:m:p/* maniât manier :V1__t_q_zz:Sq:3s/* |
︙ | ︙ | |||
162835 162836 162837 162838 162839 162840 162841 162842 162843 162844 162845 162846 162847 162848 | ordonnançait ordonnancer :V1__t___zz:Iq:3s/* polypores polypore :N:m:p/* réveillions réveiller :V1__t_q_zz:Iq:Sp:1p/* superordonnée superordonné :A:f:s/* synthétases synthétase :N:f:p/* tonèmes tonème :N:m:p/* violiers violier :N:m:p/* balancerons balancer :V1_it_q_zz:If:1p/* daguets daguet :N:m:p/* frasil frasil :N:m:s/* hydromécaniques hydromécanique :A:e:p/* kilotonne kilotonne :N:f:s/* repentiriez repentir :V3____p_e_:K:2p/* revaccinée revacciner :V1__t___zz:Q:A:f:s/* | > | 162876 162877 162878 162879 162880 162881 162882 162883 162884 162885 162886 162887 162888 162889 162890 | ordonnançait ordonnancer :V1__t___zz:Iq:3s/* polypores polypore :N:m:p/* réveillions réveiller :V1__t_q_zz:Iq:Sp:1p/* superordonnée superordonné :A:f:s/* synthétases synthétase :N:f:p/* tonèmes tonème :N:m:p/* violiers violier :N:m:p/* Saint-Gobain Saint-Gobain :MP:e:i/* balancerons balancer :V1_it_q_zz:If:1p/* daguets daguet :N:m:p/* frasil frasil :N:m:s/* hydromécaniques hydromécanique :A:e:p/* kilotonne kilotonne :N:f:s/* repentiriez repentir :V3____p_e_:K:2p/* revaccinée revacciner :V1__t___zz:Q:A:f:s/* |
︙ | ︙ | |||
164292 164293 164294 164295 164296 164297 164298 | principiels principiel :A:m:p/* priviez priver :V1__t_q_zz:Iq:Sp:2p/* recorde recorder :V1__t___zz:Ip:Sp:1s:3s/* recorde recorder :V1__t___zz:E:2s/* réexpédia réexpédier :V1__t___zz:Is:3s/* surhaussements surhaussement :N:m:p/* transpositeurs transpositeur :N:m:p/* | | | 164334 164335 164336 164337 164338 164339 164340 164341 164342 164343 164344 164345 164346 164347 164348 | principiels principiel :A:m:p/* priviez priver :V1__t_q_zz:Iq:Sp:2p/* recorde recorder :V1__t___zz:Ip:Sp:1s:3s/* recorde recorder :V1__t___zz:E:2s/* réexpédia réexpédier :V1__t___zz:Is:3s/* surhaussements surhaussement :N:m:p/* transpositeurs transpositeur :N:m:p/* voileront voiler :V1_it_q__a:If:3p!/* éparpilleraient éparpiller :V1__t_q_zz:K:3p/* Tefnout Tefnout :M1:f:i/* démodulateurs démodulateur :N:m:p/* dépouillerez dépouiller :V1__t_q_zz:If:2p/* enguirlande enguirlander :V1__t___zz:Ip:Sp:1s:3s/* enguirlande enguirlander :V1__t___zz:E:2s/* geek geek :N:e:s/* |
︙ | ︙ | |||
164409 164410 164411 164412 164413 164414 164415 | pansages pansage :N:m:p/* paraboliquement paraboliquement :W/* relaxent relaxer :V1__t_q_zz:Ip:Sp:3p/* reparaîtrai reparaître :V3_i_____a:If:1s/M sopranistes sopraniste :N:e:p/* stagnationnistes stagnationniste :N:A:e:p/* structuras structurer :V1__t_q_zz:Is:2s/* | | | | | 164451 164452 164453 164454 164455 164456 164457 164458 164459 164460 164461 164462 164463 164464 164465 164466 164467 | pansages pansage :N:m:p/* paraboliquement paraboliquement :W/* relaxent relaxer :V1__t_q_zz:Ip:Sp:3p/* reparaîtrai reparaître :V3_i_____a:If:1s/M sopranistes sopraniste :N:e:p/* stagnationnistes stagnationniste :N:A:e:p/* structuras structurer :V1__t_q_zz:Is:2s/* épice épicer :V1_it____a:Ip:Sp:1s:3s/* épice épicer :V1_it____a:E:2s/* épices épicer :V1_it____a:Ip:Sp:2s/* étiolera étioler :V1__t_q_zz:If:3s/* Lidl Lidl :MP:m:i/* alumineries aluminerie :N:f:p/* arsouille arsouille :N:A:e:s/* azothydrique azothydrique :A:e:s/* batholithe batholithe :N:m:s/M chambardé chambarder :V1__t___zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
165769 165770 165771 165772 165773 165774 165775 165776 165777 165778 165779 165780 165781 165782 165783 165784 165785 | pommeraies pommeraie :N:f:p/* pourrissoirs pourrissoir :N:m:p/* préhumaine préhumain :N:A:f:s/* pétitionne pétitionner :V1_i____zz:Ip:Sp:1s:3s/* pétitionne pétitionner :V1_i____zz:E:2s/* surmortalités surmortalité :N:f:p/* voûtain voûtain :N:m:s/M écroua écrouer :V1__t___zz:Is:3s/* électropneumatique électropneumatique :A:e:s/* électropneumatique électropneumatique :N:f:s/* accrédites accréditer :V1__t_q_zz:Ip:Sp:2s/* aillait ailler :V1__t___zz:Iq:3s/* bayant bayer :V1_i____zz:P/* caulicoles caulicole :A:e:p/* caulicoles caulicole :N:f:p/* diversifiable diversifiable :A:e:s/* débrident débrider :V1_it___zz:Ip:Sp:3p/* | > > | 165811 165812 165813 165814 165815 165816 165817 165818 165819 165820 165821 165822 165823 165824 165825 165826 165827 165828 165829 | pommeraies pommeraie :N:f:p/* pourrissoirs pourrissoir :N:m:p/* préhumaine préhumain :N:A:f:s/* pétitionne pétitionner :V1_i____zz:Ip:Sp:1s:3s/* pétitionne pétitionner :V1_i____zz:E:2s/* surmortalités surmortalité :N:f:p/* voûtain voûtain :N:m:s/M éclosoir éclosoir :N:m:s/* écroua écrouer :V1__t___zz:Is:3s/* électropneumatique électropneumatique :A:e:s/* électropneumatique électropneumatique :N:f:s/* Natixis Natixis :MP:e:i/* accrédites accréditer :V1__t_q_zz:Ip:Sp:2s/* aillait ailler :V1__t___zz:Iq:3s/* bayant bayer :V1_i____zz:P/* caulicoles caulicole :A:e:p/* caulicoles caulicole :N:f:p/* diversifiable diversifiable :A:e:s/* débrident débrider :V1_it___zz:Ip:Sp:3p/* |
︙ | ︙ | |||
167910 167911 167912 167913 167914 167915 167916 167917 167918 167919 167920 167921 167922 167923 | dicterez dicter :V1__t___zz:If:2p/* disposas disposer :V1__tnq_zz:Is:2s/* désarmants désarmant :A:m:p/* imperfectibilité imperfectibilité :N:f:s/* interclassement interclassement :N:m:s/* jurançon jurançon :N:m:s/* libournais libournais :N:A:m:i/* mufliers muflier :N:m:p/* pyrrolidine pyrrolidine :N:f:s/* répandras répandre :V3_it_q__a:If:2s/* spicilège spicilège :N:m:s/* tourniole tourniole :N:f:s/* uréide uréide :N:m:s/* valérianes valériane :N:f:p/* | > | 167954 167955 167956 167957 167958 167959 167960 167961 167962 167963 167964 167965 167966 167967 167968 | dicterez dicter :V1__t___zz:If:2p/* disposas disposer :V1__tnq_zz:Is:2s/* désarmants désarmant :A:m:p/* imperfectibilité imperfectibilité :N:f:s/* interclassement interclassement :N:m:s/* jurançon jurançon :N:m:s/* libournais libournais :N:A:m:i/* micropipettes micropipette :N:f:p/* mufliers muflier :N:m:p/* pyrrolidine pyrrolidine :N:f:s/* répandras répandre :V3_it_q__a:If:2s/* spicilège spicilège :N:m:s/* tourniole tourniole :N:f:s/* uréide uréide :N:m:s/* valérianes valériane :N:f:p/* |
︙ | ︙ | |||
169047 169048 169049 169050 169051 169052 169053 169054 169055 169056 169057 169058 169059 169060 | sablerie sablerie :N:f:s/* taquinais taquiner :V1__t_q_zz:Iq:1s:2s/* écourtait écourter :V1__t___zz:Iq:3s/* évacuai évacuer :V1__t_q_zz:Is:1s/* acclamerait acclamer :V1__t___zz:K:3s/* accèderont accéder :V1___n___a:If:3p!/R acrylates acrylate :N:m:p/* badlands badlands :N:f:p/* calquera calquer :V1__t___zz:If:3s/* civilisable civilisable :A:e:s/* cuvaisons cuvaison :N:f:p/* désinfectait désinfecter :V1__t___zz:Iq:3s/* embranchées embrancher :V1__t_q_zz:Q:A:f:p/* empiffrait empiffrer :V1____p_e_:Iq:3s/* | > | 169092 169093 169094 169095 169096 169097 169098 169099 169100 169101 169102 169103 169104 169105 169106 | sablerie sablerie :N:f:s/* taquinais taquiner :V1__t_q_zz:Iq:1s:2s/* écourtait écourter :V1__t___zz:Iq:3s/* évacuai évacuer :V1__t_q_zz:Is:1s/* acclamerait acclamer :V1__t___zz:K:3s/* accèderont accéder :V1___n___a:If:3p!/R acrylates acrylate :N:m:p/* analytes analyte :N:m:p/* badlands badlands :N:f:p/* calquera calquer :V1__t___zz:If:3s/* civilisable civilisable :A:e:s/* cuvaisons cuvaison :N:f:p/* désinfectait désinfecter :V1__t___zz:Iq:3s/* embranchées embrancher :V1__t_q_zz:Q:A:f:p/* empiffrait empiffrer :V1____p_e_:Iq:3s/* |
︙ | ︙ | |||
169175 169176 169177 169178 169179 169180 169181 | rubéfiantes rubéfiant :A:f:p/* rugis rugir :V2_it____a:Ip:Is:1s:2s/* rugis rugir :V2_it____a:E:2s/* rugis rugir :V2_it____a:Q:A:m:p/* résistor résistor :N:m:s/* texturés texturer :V1__t___zz:Q:A:m:p/* travestirent travestir :V2__t_q__a:Is:3p!/* | | | | 169221 169222 169223 169224 169225 169226 169227 169228 169229 169230 169231 169232 169233 169234 169235 169236 | rubéfiantes rubéfiant :A:f:p/* rugis rugir :V2_it____a:Ip:Is:1s:2s/* rugis rugir :V2_it____a:E:2s/* rugis rugir :V2_it____a:Q:A:m:p/* résistor résistor :N:m:s/* texturés texturer :V1__t___zz:Q:A:m:p/* travestirent travestir :V2__t_q__a:Is:3p!/* voilez voiler :V1_it_q__a:Ip:2p/* voilez voiler :V1_it_q__a:E:2p/* équipière équipier :N:f:s/* apaises apaiser :V1__t_q_zz:Ip:Sp:2s/* apprêtât apprêter :V1__t_q_zz:Sq:3s/* arobe arobe :N:f:s/R coucherions coucher :V1_it_q_zz:K:1p/* garantissais garantir :V2__t____a:Iq:1s:2s/* grommelaient grommeler :V1_it___zz:Iq:3p/* |
︙ | ︙ | |||
169455 169456 169457 169458 169459 169460 169461 169462 169463 169464 169465 169466 169467 169468 | arbitralement arbitralement :W/* ardé arder :V1_i____zz:Q:1ŝ:e:i/* attoucher attoucher :V1__tnq_zz:Y/* cintrages cintrage :N:m:p/* déguisais déguiser :V1__t_q__a:Iq:1s:2s/* intitulions intituler :V1__t_q_zz:Iq:Sp:1p/* lithogène lithogène :A:e:s/* mutilez mutiler :V1__t_q_zz:Ip:2p/* mutilez mutiler :V1__t_q_zz:E:2p/* paressait paresser :V1_i____zz:Iq:3s/* raccompagnais raccompagner :V1__t___zz:Iq:1s:2s/* radiomessagerie radiomessagerie :N:f:s/* repliage repliage :N:m:s/* référentes référent :A:f:p/* | > | 169501 169502 169503 169504 169505 169506 169507 169508 169509 169510 169511 169512 169513 169514 169515 | arbitralement arbitralement :W/* ardé arder :V1_i____zz:Q:1ŝ:e:i/* attoucher attoucher :V1__tnq_zz:Y/* cintrages cintrage :N:m:p/* déguisais déguiser :V1__t_q__a:Iq:1s:2s/* intitulions intituler :V1__t_q_zz:Iq:Sp:1p/* lithogène lithogène :A:e:s/* mijoté mijoter :V1_it_q_zz:Q:A:1ŝ:m:s/* mutilez mutiler :V1__t_q_zz:Ip:2p/* mutilez mutiler :V1__t_q_zz:E:2p/* paressait paresser :V1_i____zz:Iq:3s/* raccompagnais raccompagner :V1__t___zz:Iq:1s:2s/* radiomessagerie radiomessagerie :N:f:s/* repliage repliage :N:m:s/* référentes référent :A:f:p/* |
︙ | ︙ | |||
170547 170548 170549 170550 170551 170552 170553 170554 170555 170556 170557 170558 170559 170560 | tâteur tâteur :N:m:s/* édifiât édifier :V1_it___zz:Sq:3s/* amputaient amputer :V1__t_q_zz:Iq:3p/* basiquement basiquement :W/* berceront bercer :V1__t_q_zz:If:3p!/* dissimulassent dissimuler :V1_it_q__a:Sq:3p/* déteignant déteindre :V3_it____a:P/* fendrai fendre :V3_it_q__a:If:1s/* frayât frayer :V1_it_q_zz:Sq:3s/* fugacités fugacité :N:f:p/* glucane glucane :N:m:s/* gueuze gueuze :N:f:s/* hispanisés hispaniser :V1__t_q_zz:Q:A:m:p/* ostéoarthrites ostéoarthrite :N:f:p/* | > | 170594 170595 170596 170597 170598 170599 170600 170601 170602 170603 170604 170605 170606 170607 170608 | tâteur tâteur :N:m:s/* édifiât édifier :V1_it___zz:Sq:3s/* amputaient amputer :V1__t_q_zz:Iq:3p/* basiquement basiquement :W/* berceront bercer :V1__t_q_zz:If:3p!/* dissimulassent dissimuler :V1_it_q__a:Sq:3p/* déteignant déteindre :V3_it____a:P/* entérocyte entérocyte :N:m:s/* fendrai fendre :V3_it_q__a:If:1s/* frayât frayer :V1_it_q_zz:Sq:3s/* fugacités fugacité :N:f:p/* glucane glucane :N:m:s/* gueuze gueuze :N:f:s/* hispanisés hispaniser :V1__t_q_zz:Q:A:m:p/* ostéoarthrites ostéoarthrite :N:f:p/* |
︙ | ︙ | |||
172026 172027 172028 172029 172030 172031 172032 172033 172034 172035 172036 172037 172038 172039 | astigmatismes astigmatisme :N:m:p/* benzalkonium benzalkonium :N:m:s/* bien-fondé bien-fondé :N:m:s/M convoquerez convoquer :V1__t____a:If:2p/* excrétait excréter :V1__t___zz:Iq:3s/* gestalts gestalt :N:f:p/* hémiperméable hémiperméable :A:e:s/* lésine lésiner :V1_i____zz:Ip:Sp:1s:3s/* lésine lésiner :V1_i____zz:E:2s/* monodromie monodromie :N:f:s/* métra métrer :V1__t____a:Is:3s/* provoquiez provoquer :V1__t_q_zz:Iq:Sp:2p/* prédisposa prédisposer :V1_it___zz:Is:3s/* rapatriera rapatrier :V1__t_q_zz:If:3s/* | > | 172074 172075 172076 172077 172078 172079 172080 172081 172082 172083 172084 172085 172086 172087 172088 | astigmatismes astigmatisme :N:m:p/* benzalkonium benzalkonium :N:m:s/* bien-fondé bien-fondé :N:m:s/M convoquerez convoquer :V1__t____a:If:2p/* excrétait excréter :V1__t___zz:Iq:3s/* gestalts gestalt :N:f:p/* hémiperméable hémiperméable :A:e:s/* immunomodulateurs immunomodulateur :A:m:p/* lésine lésiner :V1_i____zz:Ip:Sp:1s:3s/* lésine lésiner :V1_i____zz:E:2s/* monodromie monodromie :N:f:s/* métra métrer :V1__t____a:Is:3s/* provoquiez provoquer :V1__t_q_zz:Iq:Sp:2p/* prédisposa prédisposer :V1_it___zz:Is:3s/* rapatriera rapatrier :V1__t_q_zz:If:3s/* |
︙ | ︙ | |||
174091 174092 174093 174094 174095 174096 174097 | klezmer klezmer :A:e:s/* klezmer klezmer :N:m:s/* kth kth :N:f:i;S/* palabré palabrer :V1_i____zz:Q:1ŝ:e:i/* plébiscitant plébisciter :V1__t___zz:P/* québécisme québécisme :N:m:s/* radoucies radoucir :V2__t_q__a:Q:A:f:p/* | | | 174140 174141 174142 174143 174144 174145 174146 174147 174148 174149 174150 174151 174152 174153 174154 | klezmer klezmer :A:e:s/* klezmer klezmer :N:m:s/* kth kth :N:f:i;S/* palabré palabrer :V1_i____zz:Q:1ŝ:e:i/* plébiscitant plébisciter :V1__t___zz:P/* québécisme québécisme :N:m:s/* radoucies radoucir :V2__t_q__a:Q:A:f:p/* redisposer redisposer :V1__t____a:Y/* rouverain rouverain :A:m:s/* rétrogradât rétrograder :V1_it___zz:Sq:3s/* spatialisations spatialisation :N:f:p/* surcreusements surcreusement :N:m:p/* suspensoïdes suspensoïde :A:e:p/* élongés élonger :V1__t___zz:Q:A:m:p/* émascule émasculer :V1__t___zz:Ip:Sp:1s:3s/* |
︙ | ︙ | |||
176064 176065 176066 176067 176068 176069 176070 176071 176072 176073 176074 176075 176076 176077 | viticultures viticulture :N:f:p/* adornée adorner :V1__t_q_zz:Q:A:f:s/* consécratoires consécratoire :A:e:p/* délavent délaver :V1__t___zz:Ip:Sp:3p/* interférera interférer :V1_i____zz:If:3s/M lainerie lainerie :N:f:s/* levreau levreau :N:m:s/R naquîmes naître :V3_i_n__e_:Is:1p/M neuropharmacologie neuropharmacologie :N:f:s/* orlon orlon :N:m:s/* otorragie otorragie :N:f:s/* pastilla pastiller :V1__t___zz:Is:3s/* peinturée peinturer :V1__t___zz:Q:A:f:s/* plaqueminiers plaqueminier :N:m:p/* | > > | 176113 176114 176115 176116 176117 176118 176119 176120 176121 176122 176123 176124 176125 176126 176127 176128 | viticultures viticulture :N:f:p/* adornée adorner :V1__t_q_zz:Q:A:f:s/* consécratoires consécratoire :A:e:p/* délavent délaver :V1__t___zz:Ip:Sp:3p/* interférera interférer :V1_i____zz:If:3s/M lainerie lainerie :N:f:s/* levreau levreau :N:m:s/R mijotés mijoter :V1_it_q_zz:Q:A:m:p/* mijotés mijoté :N:m:p/* naquîmes naître :V3_i_n__e_:Is:1p/M neuropharmacologie neuropharmacologie :N:f:s/* orlon orlon :N:m:s/* otorragie otorragie :N:f:s/* pastilla pastiller :V1__t___zz:Is:3s/* peinturée peinturer :V1__t___zz:Q:A:f:s/* plaqueminiers plaqueminier :N:m:p/* |
︙ | ︙ | |||
177103 177104 177105 177106 177107 177108 177109 177110 177111 177112 177113 177114 177115 177116 | stratocratie stratocratie :N:f:s/* traînerez traîner :V1_it_q_zz:If:2p/M vaccinelle vaccinelle :N:f:s/* valideront valider :V1__t___zz:If:3p!/* valoriseraient valoriser :V1__t_q_zz:K:3p/* vascularisations vascularisation :N:f:p/* visualisait visualiser :V1__t___zz:Iq:3s/* américano-mexicaine américano-mexicain :N:A:f:s/* anglo-normand anglo-normand :N:A:m:s/* angors angor :N:m:p/* cadastrations cadastration :N:f:p/* contaminatrice contaminateur :N:A:f:s/* diluante diluant :A:f:s/* dispenserions dispenser :V1__t_q_zz:K:1p/* | > | 177154 177155 177156 177157 177158 177159 177160 177161 177162 177163 177164 177165 177166 177167 177168 | stratocratie stratocratie :N:f:s/* traînerez traîner :V1_it_q_zz:If:2p/M vaccinelle vaccinelle :N:f:s/* valideront valider :V1__t___zz:If:3p!/* valoriseraient valoriser :V1__t_q_zz:K:3p/* vascularisations vascularisation :N:f:p/* visualisait visualiser :V1__t___zz:Iq:3s/* éclosoirs éclosoir :N:m:p/* américano-mexicaine américano-mexicain :N:A:f:s/* anglo-normand anglo-normand :N:A:m:s/* angors angor :N:m:p/* cadastrations cadastration :N:f:p/* contaminatrice contaminateur :N:A:f:s/* diluante diluant :A:f:s/* dispenserions dispenser :V1__t_q_zz:K:1p/* |
︙ | ︙ | |||
178753 178754 178755 178756 178757 178758 178759 | réprouveraient réprouver :V1__t___zz:K:3p/* résorbèrent résorber :V1__t_q_zz:Is:3p!/* symbolises symboliser :V1__t___zz:Ip:Sp:2s/* vergent verger :V1_i____zz:Ip:Sp:3p/* ébaubis ébaubir :V2____p_e_:Ip:Is:1s:2s/* ébaubis ébaubir :V2____p_e_:E:2s/* ébaubis ébaubir :V2____p_e_:Q:A:m:p/* | | | 178805 178806 178807 178808 178809 178810 178811 178812 178813 178814 178815 178816 178817 178818 178819 | réprouveraient réprouver :V1__t___zz:K:3p/* résorbèrent résorber :V1__t_q_zz:Is:3p!/* symbolises symboliser :V1__t___zz:Ip:Sp:2s/* vergent verger :V1_i____zz:Ip:Sp:3p/* ébaubis ébaubir :V2____p_e_:Ip:Is:1s:2s/* ébaubis ébaubir :V2____p_e_:E:2s/* ébaubis ébaubir :V2____p_e_:Q:A:m:p/* épissés épisser :V1__t____a:Q:A:m:p/* acères acérer :V1__t___zz:Ip:Sp:2s/* baissassent baisser :V1_it_q_zz:Sq:3p/* baster baster :V1_i____zz:Y/* censurerait censurer :V1_it____a:K:3s/* colletées colleter :V1__t_q_zz:Q:A:f:p/* dessuintage dessuintage :N:m:s/* endosseront endosser :V1__t___zz:If:3p!/* |
︙ | ︙ | |||
178967 178968 178969 178970 178971 178972 178973 178974 178975 178976 178977 178978 178979 178980 | impalpabilité impalpabilité :N:f:s/* inoculât inoculer :V1__t_q_zz:Sq:3s/* instaureraient instaurer :V1__t_q_zz:K:3p/* lésinera lésiner :V1_i____zz:If:3s/* méditativement méditativement :W/* picte picte :N:A:e:s/* reprisage reprisage :N:m:s/* rythmèrent rythmer :V1__t___zz:Is:3p!/* supplanteraient supplanter :V1__t_q_zz:K:3p/* tiaré tiaré :N:m:s/* téléchargeant télécharger :V1__t___zz:P/* valkyries valkyrie :N:f:p/* verdissantes verdissant :A:f:p/* vexants vexant :A:m:p/* | > | 179019 179020 179021 179022 179023 179024 179025 179026 179027 179028 179029 179030 179031 179032 179033 | impalpabilité impalpabilité :N:f:s/* inoculât inoculer :V1__t_q_zz:Sq:3s/* instaureraient instaurer :V1__t_q_zz:K:3p/* lésinera lésiner :V1_i____zz:If:3s/* méditativement méditativement :W/* picte picte :N:A:e:s/* reprisage reprisage :N:m:s/* rotamètre rotamètre :N:m:s/* rythmèrent rythmer :V1__t___zz:Is:3p!/* supplanteraient supplanter :V1__t_q_zz:K:3p/* tiaré tiaré :N:m:s/* téléchargeant télécharger :V1__t___zz:P/* valkyries valkyrie :N:f:p/* verdissantes verdissant :A:f:p/* vexants vexant :A:m:p/* |
︙ | ︙ | |||
180668 180669 180670 180671 180672 180673 180674 | ponctionnait ponctionner :V1__t___zz:Iq:3s/* préméditaient préméditer :V1__tn__zz:Iq:3p/* retiras retirer :V1__t_q__a:Is:2s/* sauvageonnes sauvageon :N:A:f:p/* soustrayez soustraire :V3_it_q__a:Ip:2p/* soustrayez soustraire :V3_it_q__a:E:2p/* testerait tester :V1_it_q__a:K:3s/* | | | 180721 180722 180723 180724 180725 180726 180727 180728 180729 180730 180731 180732 180733 180734 180735 | ponctionnait ponctionner :V1__t___zz:Iq:3s/* préméditaient préméditer :V1__tn__zz:Iq:3p/* retiras retirer :V1__t_q__a:Is:2s/* sauvageonnes sauvageon :N:A:f:p/* soustrayez soustraire :V3_it_q__a:Ip:2p/* soustrayez soustraire :V3_it_q__a:E:2p/* testerait tester :V1_it_q__a:K:3s/* épissé épisser :V1__t____a:Q:A:1ŝ:m:s/* évasaient évaser :V1__t_q_zz:Iq:3p/* actualisa actualiser :V1__t___zz:Is:3s/* adoucirai adoucir :V2__t_q__a:If:1s/* défavorisaient défavoriser :V1__t___zz:Iq:3p/* désaltérantes désaltérant :A:f:p/* griottier griottier :N:m:s/* hyperkératoses hyperkératose :N:f:p/* |
︙ | ︙ | |||
180908 180909 180910 180911 180912 180913 180914 | refermes refermer :V1__t_q_zz:Ip:Sp:2s/* tuyauteur tuyauteur :N:m:s/* voyageassent voyager :V1_i____zz:Sq:3p/* baragouinaient baragouiner :V1_it___zz:Iq:3p/* caillent cailler :V1_it_q_zz:Ip:Sp:3p/* chlorer chlorer :V1__t___zz:Y/* cimenteront cimenter :V1__t_q_zz:If:3p!/* | | | | | 180961 180962 180963 180964 180965 180966 180967 180968 180969 180970 180971 180972 180973 180974 180975 180976 180977 | refermes refermer :V1__t_q_zz:Ip:Sp:2s/* tuyauteur tuyauteur :N:m:s/* voyageassent voyager :V1_i____zz:Sq:3p/* baragouinaient baragouiner :V1_it___zz:Iq:3p/* caillent cailler :V1_it_q_zz:Ip:Sp:3p/* chlorer chlorer :V1__t___zz:Y/* cimenteront cimenter :V1__t_q_zz:If:3p!/* crypte crypter :V1_it____a:Ip:Sp:1s:3s/* crypte crypter :V1_it____a:E:2s/* cryptes crypter :V1_it____a:Ip:Sp:2s/* dendrogrammes dendrogramme :N:m:p/* décroisé décroiser :V1__t___zz:Q:A:1ŝ:m:s/* démantibulées démantibuler :V1__t_q_zz:Q:A:f:p/* escarmouchent escarmoucher :V1_i____zz:Ip:Sp:3p/* escrimeuse escrimeur :N:f:s/* excèderaient excéder :V1__t___zz:K:3p/R expulsable expulsable :A:e:s/* |
︙ | ︙ | |||
181822 181823 181824 181825 181826 181827 181828 181829 181830 181831 181832 181833 181834 181835 | rehausseraient rehausser :V1__t_q_zz:K:3p/* soumisse soumettre :V3__tnq__a:Sq:1s/* synopsies synopsie :N:f:p/* uniramés uniramé :A:m:p/* émoulues émoudre :V3__t____a:Q:A:f:p/* étioleraient étioler :V1__t_q_zz:K:3p/* agitantes agitant :A:f:p/* aplustre aplustre :N:m:s/* archimédiennes archimédien :A:f:p/* boucherai boucher :V1__t_q_zz:If:1s/* brandirait brandir :V2__t____a:K:3s/* cintrent cintrer :V1__t___zz:Ip:Sp:3p/* coorganisateur coorganisateur :N:m:s/* coulerez couler :V1_it_q_zz:If:2p/* | > | 181875 181876 181877 181878 181879 181880 181881 181882 181883 181884 181885 181886 181887 181888 181889 | rehausseraient rehausser :V1__t_q_zz:K:3p/* soumisse soumettre :V3__tnq__a:Sq:1s/* synopsies synopsie :N:f:p/* uniramés uniramé :A:m:p/* émoulues émoudre :V3__t____a:Q:A:f:p/* étioleraient étioler :V1__t_q_zz:K:3p/* agitantes agitant :A:f:p/* albertains albertain :N:A:m:p/* aplustre aplustre :N:m:s/* archimédiennes archimédien :A:f:p/* boucherai boucher :V1__t_q_zz:If:1s/* brandirait brandir :V2__t____a:K:3s/* cintrent cintrer :V1__t___zz:Ip:Sp:3p/* coorganisateur coorganisateur :N:m:s/* coulerez couler :V1_it_q_zz:If:2p/* |
︙ | ︙ | |||
182375 182376 182377 182378 182379 182380 182381 | rafistole rafistoler :V1__t___zz:Ip:Sp:1s:3s/* rafistole rafistoler :V1__t___zz:E:2s/* ressurgissaient ressurgir :V2_i_____a:Iq:3p/C référencent référencer :V1_it_q__a:Ip:Sp:3p/* subordonnions subordonner :V1__t_q_zz:Iq:Sp:1p/* suspicieuses suspicieux :A:f:p/* virât virer :V1_itn__zz:Sq:3s/* | | | 182429 182430 182431 182432 182433 182434 182435 182436 182437 182438 182439 182440 182441 182442 182443 | rafistole rafistoler :V1__t___zz:Ip:Sp:1s:3s/* rafistole rafistoler :V1__t___zz:E:2s/* ressurgissaient ressurgir :V2_i_____a:Iq:3p/C référencent référencer :V1_it_q__a:Ip:Sp:3p/* subordonnions subordonner :V1__t_q_zz:Iq:Sp:1p/* suspicieuses suspicieux :A:f:p/* virât virer :V1_itn__zz:Sq:3s/* voilions voiler :V1_it_q__a:Iq:Sp:1p/* voiturages voiturage :N:m:p/* zinzin zinzin :A:e:s/* zinzin zinzin :N:m:s/* étançonné étançonner :V1__t___zz:Q:A:1ŝ:m:s/* adiabaticité adiabaticité :N:f:s/* articulais articuler :V1_it_q_zz:Iq:1s:2s/* artérioscléreuses artérioscléreux :A:f:p/* |
︙ | ︙ | |||
182742 182743 182744 182745 182746 182747 182748 | raisinés raisiné :N:m:p/* rassoul rassoul :N:m:s/* riveter riveter :V1__t___zz:Y/* simuleraient simuler :V1__t___zz:K:3p/* tempêtaient tempêter :V1_i____zz:Iq:3p/* tractage tractage :N:m:s/* transgresses transgresser :V1__t___zz:Ip:Sp:2s/* | | | 182796 182797 182798 182799 182800 182801 182802 182803 182804 182805 182806 182807 182808 182809 182810 | raisinés raisiné :N:m:p/* rassoul rassoul :N:m:s/* riveter riveter :V1__t___zz:Y/* simuleraient simuler :V1__t___zz:K:3p/* tempêtaient tempêter :V1_i____zz:Iq:3p/* tractage tractage :N:m:s/* transgresses transgresser :V1__t___zz:Ip:Sp:2s/* voileraient voiler :V1_it_q__a:K:3p/* équipotence équipotence :N:f:s/* ôtâmes ôter :V1__t_q_zz:Is:1p/* Saint-Jean-de-Braye Saint-Jean-de-Braye :MP:e:i/* anorexigène anorexigène :A:e:s/* anorexigène anorexigène :N:m:s/* azotobacters azotobacter :N:m:p/* bissections bissection :N:f:p/* |
︙ | ︙ | |||
186289 186290 186291 186292 186293 186294 186295 186296 186297 186298 186299 186300 186301 186302 | trainèrent trainer :V1_it_q_zz:Is:3p!/R transformerions transformer :V1__t_q_zz:K:1p/* treillagée treillager :V1__t___zz:Q:A:f:s/* électroporation électroporation :N:f:s/* équarrissent équarrir :V2__t____a:Ip:Sp:Sq:3p/* Karyn Karyn :M1:f:i/* accaparants accaparant :A:m:p/* attendriraient attendrir :V2__t_q__a:K:3p/* canarde canarder :V1_it___zz:Ip:Sp:1s:3s/* canarde canarder :V1_it___zz:E:2s/* capuchonnés capuchonner :V1__t___zz:Q:A:m:p/* chassables chassable :A:e:p/* consanguinités consanguinité :N:f:p/* corticostéroïde corticostéroïde :A:e:s/* | > | 186343 186344 186345 186346 186347 186348 186349 186350 186351 186352 186353 186354 186355 186356 186357 | trainèrent trainer :V1_it_q_zz:Is:3p!/R transformerions transformer :V1__t_q_zz:K:1p/* treillagée treillager :V1__t___zz:Q:A:f:s/* électroporation électroporation :N:f:s/* équarrissent équarrir :V2__t____a:Ip:Sp:Sq:3p/* Karyn Karyn :M1:f:i/* accaparants accaparant :A:m:p/* albertaines albertain :N:A:f:p/* attendriraient attendrir :V2__t_q__a:K:3p/* canarde canarder :V1_it___zz:Ip:Sp:1s:3s/* canarde canarder :V1_it___zz:E:2s/* capuchonnés capuchonner :V1__t___zz:Q:A:m:p/* chassables chassable :A:e:p/* consanguinités consanguinité :N:f:p/* corticostéroïde corticostéroïde :A:e:s/* |
︙ | ︙ | |||
186976 186977 186978 186979 186980 186981 186982 186983 186984 186985 186986 186987 186988 186989 | reconsidérera reconsidérer :V1__t___zz:If:3s/M remouiller remouiller :V1_it___zz:Y/* rouspétant rouspéter :V1_i____zz:P/* stipendiâmes stipendier :V1__t___zz:Is:1p/* tantales tantale :N:m:p/* varistances varistance :N:f:p/* vécés vécés :N:m:p/* Yoneda Yoneda :M2:e:i/* authentique authentiquer :V1__t___zz:Ip:Sp:1s:3s/* authentique authentiquer :V1__t___zz:E:2s/* authentiques authentiquer :V1__t___zz:Ip:Sp:2s/* bredouillée bredouiller :V1_it___zz:Q:A:f:s/* carbonara carbonara :N:f:s/* ceignez ceindre :V3__t_q__a:Ip:2p/* | > | 187031 187032 187033 187034 187035 187036 187037 187038 187039 187040 187041 187042 187043 187044 187045 | reconsidérera reconsidérer :V1__t___zz:If:3s/M remouiller remouiller :V1_it___zz:Y/* rouspétant rouspéter :V1_i____zz:P/* stipendiâmes stipendier :V1__t___zz:Is:1p/* tantales tantale :N:m:p/* varistances varistance :N:f:p/* vécés vécés :N:m:p/* Moyenne-Franconie Moyenne-Franconie :N:f:i/* Yoneda Yoneda :M2:e:i/* authentique authentiquer :V1__t___zz:Ip:Sp:1s:3s/* authentique authentiquer :V1__t___zz:E:2s/* authentiques authentiquer :V1__t___zz:Ip:Sp:2s/* bredouillée bredouiller :V1_it___zz:Q:A:f:s/* carbonara carbonara :N:f:s/* ceignez ceindre :V3__t_q__a:Ip:2p/* |
︙ | ︙ | |||
189194 189195 189196 189197 189198 189199 189200 | raffinat raffinat :N:m:s/* reperdant reperdre :V3_it_q__a:P/* réopérée réopérer :V1__t___zz:Q:A:f:s/* sulfura sulfurer :V1__t___zz:Is:3s/* sympodial sympodial :A:m:s/* targuée targuer :V1____p_e_:Q:A:f:s/* éolipyles éolipyle :N:m:p/* | | | 189250 189251 189252 189253 189254 189255 189256 189257 189258 189259 189260 189261 189262 189263 189264 | raffinat raffinat :N:m:s/* reperdant reperdre :V3_it_q__a:P/* réopérée réopérer :V1__t___zz:Q:A:f:s/* sulfura sulfurer :V1__t___zz:Is:3s/* sympodial sympodial :A:m:s/* targuée targuer :V1____p_e_:Q:A:f:s/* éolipyles éolipyle :N:m:p/* épisser épisser :V1__t____a:Y/* activâtes activer :V1_it_q_zz:Is:2p/* antidata antidater :V1__t___zz:Is:3s/* araine araine :N:f:s/* bichromatées bichromaté :A:f:p/* brocheton brocheton :N:m:s/* bégayés bégayer :V1_it___zz:Q:A:m:p/* celtium celtium :N:m:s/* |
︙ | ︙ | |||
194270 194271 194272 194273 194274 194275 194276 194277 194278 194279 194280 194281 194282 194283 | ouvrera ouvrer :V1_it___zz:If:3s/* parussions paraître :V3_i_____a:Sq:1p/M photosynthèses photosynthèse :N:f:p/* potestatifs potestatif :A:m:p/* prospectèrent prospecter :V1_it___zz:Is:3p!/* rainurer rainurer :V1__t___zz:Y/* rejoignes rejoindre :V3__t_x__a:Sp:2s/* réitérais réitérer :V1_it___zz:Iq:1s:2s/* réitéreront réitérer :V1_it___zz:If:3p!/M subcarence subcarence :N:f:s/* tamponnaient tamponner :V1__t_q_zz:Iq:3p/* tricotais tricoter :V1_it____a:Iq:1s:2s/* truquait truquer :V1_it___zz:Iq:3s/* trypsines trypsine :N:f:p/* | > | 194326 194327 194328 194329 194330 194331 194332 194333 194334 194335 194336 194337 194338 194339 194340 | ouvrera ouvrer :V1_it___zz:If:3s/* parussions paraître :V3_i_____a:Sq:1p/M photosynthèses photosynthèse :N:f:p/* potestatifs potestatif :A:m:p/* prospectèrent prospecter :V1_it___zz:Is:3p!/* rainurer rainurer :V1__t___zz:Y/* rejoignes rejoindre :V3__t_x__a:Sp:2s/* retransféré retransférer :V1__t____a:Q:A:1ŝ:m:s/* réitérais réitérer :V1_it___zz:Iq:1s:2s/* réitéreront réitérer :V1_it___zz:If:3p!/M subcarence subcarence :N:f:s/* tamponnaient tamponner :V1__t_q_zz:Iq:3p/* tricotais tricoter :V1_it____a:Iq:1s:2s/* truquait truquer :V1_it___zz:Iq:3s/* trypsines trypsine :N:f:p/* |
︙ | ︙ | |||
197681 197682 197683 197684 197685 197686 197687 197688 197689 197690 197691 197692 197693 197694 | dénoyer dénoyer :V1__t___zz:Y/* désappointait désappointer :V1__t___zz:Iq:3s/* désoccuper désoccuper :V1__t___zz:Y/* encroués encroué :A:m:p/* faîtiers faîtier :N:m:p/M fendîmes fendre :V3_it_q__a:Is:1p/* harengaison harengaison :N:f:s/* inactives inactiver :V1__t___zz:Ip:Sp:2s/* ismaïlienne ismaïlien :N:A:f:s/A labbes labbe :N:m:p/* listait lister :V1__t___zz:Iq:3s/* malbars malbar :N:m:p/* mamelonnaires mamelonnaire :A:e:p/* moisira moisir :V2_i_____a:If:3s/* | > | 197738 197739 197740 197741 197742 197743 197744 197745 197746 197747 197748 197749 197750 197751 197752 | dénoyer dénoyer :V1__t___zz:Y/* désappointait désappointer :V1__t___zz:Iq:3s/* désoccuper désoccuper :V1__t___zz:Y/* encroués encroué :A:m:p/* faîtiers faîtier :N:m:p/M fendîmes fendre :V3_it_q__a:Is:1p/* harengaison harengaison :N:f:s/* immunomodulateur immunomodulateur :A:m:s/* inactives inactiver :V1__t___zz:Ip:Sp:2s/* ismaïlienne ismaïlien :N:A:f:s/A labbes labbe :N:m:p/* listait lister :V1__t___zz:Iq:3s/* malbars malbar :N:m:p/* mamelonnaires mamelonnaire :A:e:p/* moisira moisir :V2_i_____a:If:3s/* |
︙ | ︙ | |||
199279 199280 199281 199282 199283 199284 199285 199286 199287 199288 199289 199290 199291 199292 | transmuera transmuer :V1__t_q_zz:If:3s/* uricosurique uricosurique :A:e:s/* volètement volètement :N:m:s/R échiquetés échiqueté :A:m:p/* écorchements écorchement :N:m:p/* épurons épurer :V1__t_q_zz:Ip:1p/* épurons épurer :V1__t_q_zz:E:1p/* Freyming-Merlebach Freyming-Merlebach :MP:e:i/* acanthocéphales acanthocéphale :N:m:p/* acoumètres acoumètre :N:m:p/* allèchements allèchement :N:m:p/* antidogmatiques antidogmatique :A:e:p/* attellerai atteler :V1_it_q_zz:If:1s/M attendissiez attendre :V3_itnq__a:Sq:2p/* | > | 199337 199338 199339 199340 199341 199342 199343 199344 199345 199346 199347 199348 199349 199350 199351 | transmuera transmuer :V1__t_q_zz:If:3s/* uricosurique uricosurique :A:e:s/* volètement volètement :N:m:s/R échiquetés échiqueté :A:m:p/* écorchements écorchement :N:m:p/* épurons épurer :V1__t_q_zz:Ip:1p/* épurons épurer :V1__t_q_zz:E:1p/* Asmaa Asmaa :M1:f:i/* Freyming-Merlebach Freyming-Merlebach :MP:e:i/* acanthocéphales acanthocéphale :N:m:p/* acoumètres acoumètre :N:m:p/* allèchements allèchement :N:m:p/* antidogmatiques antidogmatique :A:e:p/* attellerai atteler :V1_it_q_zz:If:1s/M attendissiez attendre :V3_itnq__a:Sq:2p/* |
︙ | ︙ | |||
201082 201083 201084 201085 201086 201087 201088 | rempiétement rempiétement :N:m:s/M revissé revisser :V1__t___zz:Q:A:1ŝ:m:s/* situeriez situer :V1__t_q__a:K:2p/* tailleras tailler :V1_it_q_zz:If:2s/* taraudeurs taraudeur :N:A:m:p/* trafiquez trafiquer :V1__tn__zz:Ip:2p/* trafiquez trafiquer :V1__tn__zz:E:2p/* | | | 201141 201142 201143 201144 201145 201146 201147 201148 201149 201150 201151 201152 201153 201154 201155 | rempiétement rempiétement :N:m:s/M revissé revisser :V1__t___zz:Q:A:1ŝ:m:s/* situeriez situer :V1__t_q__a:K:2p/* tailleras tailler :V1_it_q_zz:If:2s/* taraudeurs taraudeur :N:A:m:p/* trafiquez trafiquer :V1__tn__zz:Ip:2p/* trafiquez trafiquer :V1__tn__zz:E:2p/* voiliez voiler :V1_it_q__a:Iq:Sp:2p/* ébaucheront ébaucher :V1__t_q_zz:If:3p!/* adénines adénine :N:f:p/* allocentriques allocentrique :A:e:p/* aviveront aviver :V1__t___zz:If:3p!/* blasphémais blasphémer :V1_it___zz:Iq:1s:2s/* bonzaï bonzaï :N:m:s/C brouillardeux brouillardeux :A:m:i/* |
︙ | ︙ | |||
201169 201170 201171 201172 201173 201174 201175 201176 201177 201178 201179 201180 201181 201182 | tee-shirt tee-shirt :N:m:s/M tisonnent tisonner :V1_it___zz:Ip:Sp:3p/* tremolos tremolo :N:m:p/C verbénacées verbénacée :N:f:p/* écrieriez écrier :V1____p_e_:K:2p/* élucidaient élucider :V1__t___zz:Iq:3p/* évacuerions évacuer :V1__t_q_zz:K:1p/* aigret aigret :N:A:m:s/* alléguassent alléguer :V1__t___zz:Sq:3p/* antibrouillard antibrouillard :A:e:i/M antibrouillard antibrouillard :A:e:s/R antibrouillard antibrouillard :N:m:s/* apomorphies apomorphie :N:f:p/* battledress battledress :N:m:i/R | > | 201228 201229 201230 201231 201232 201233 201234 201235 201236 201237 201238 201239 201240 201241 201242 | tee-shirt tee-shirt :N:m:s/M tisonnent tisonner :V1_it___zz:Ip:Sp:3p/* tremolos tremolo :N:m:p/C verbénacées verbénacée :N:f:p/* écrieriez écrier :V1____p_e_:K:2p/* élucidaient élucider :V1__t___zz:Iq:3p/* évacuerions évacuer :V1__t_q_zz:K:1p/* Rayane Rayane :M1:m:i/* aigret aigret :N:A:m:s/* alléguassent alléguer :V1__t___zz:Sq:3p/* antibrouillard antibrouillard :A:e:i/M antibrouillard antibrouillard :A:e:s/R antibrouillard antibrouillard :N:m:s/* apomorphies apomorphie :N:f:p/* battledress battledress :N:m:i/R |
︙ | ︙ | |||
201716 201717 201718 201719 201720 201721 201722 201723 201724 201725 201726 201727 201728 201729 | chalcophiles chalcophile :A:e:p/* chitosan chitosan :N:m:s/X combleriez combler :V1__t___zz:K:2p/* confortez conforter :V1__t_q_zz:Ip:2p/* confortez conforter :V1__t_q_zz:E:2p/* craniopharyngiomes craniopharyngiome :N:m:p/* crayonnais crayonner :V1__t___zz:Iq:1s:2s/* désacidifiée désacidifier :V1__t___zz:Q:A:f:s/* déterrez déterrer :V1__t___zz:Ip:2p/* déterrez déterrer :V1__t___zz:E:2p/* ensachant ensacher :V1__t___zz:P/* folichons folichon :A:m:p/* fonderas fonder :V1_it_q_zz:If:2s/* gal gal :N:m:s/* | > | 201776 201777 201778 201779 201780 201781 201782 201783 201784 201785 201786 201787 201788 201789 201790 | chalcophiles chalcophile :A:e:p/* chitosan chitosan :N:m:s/X combleriez combler :V1__t___zz:K:2p/* confortez conforter :V1__t_q_zz:Ip:2p/* confortez conforter :V1__t_q_zz:E:2p/* craniopharyngiomes craniopharyngiome :N:m:p/* crayonnais crayonner :V1__t___zz:Iq:1s:2s/* décarbonation décarbonation :N:f:s/* désacidifiée désacidifier :V1__t___zz:Q:A:f:s/* déterrez déterrer :V1__t___zz:Ip:2p/* déterrez déterrer :V1__t___zz:E:2p/* ensachant ensacher :V1__t___zz:P/* folichons folichon :A:m:p/* fonderas fonder :V1_it_q_zz:If:2s/* gal gal :N:m:s/* |
︙ | ︙ | |||
205073 205074 205075 205076 205077 205078 205079 | choliques cholique :A:e:p/* chorizos chorizo :N:m:p/* commissionnait commissionner :V1__t___zz:Iq:3s/* complémentant complémenter :V1__t___zz:P/* conduisîtes conduire :V3_it_q__a:Is:2p/* confinai confiner :V1___nq_zz:Is:1s/* corsètent corseter :V1__t___zz:Ip:Sp:3p/* | | | 205134 205135 205136 205137 205138 205139 205140 205141 205142 205143 205144 205145 205146 205147 205148 | choliques cholique :A:e:p/* chorizos chorizo :N:m:p/* commissionnait commissionner :V1__t___zz:Iq:3s/* complémentant complémenter :V1__t___zz:P/* conduisîtes conduire :V3_it_q__a:Is:2p/* confinai confiner :V1___nq_zz:Is:1s/* corsètent corseter :V1__t___zz:Ip:Sp:3p/* cryptant crypter :V1_it____a:P/* docudrame docudrame :N:m:s/* dysgénique dysgénique :A:e:s/* décarbure décarburer :V1__t___zz:Ip:Sp:1s:3s/* décarbure décarburer :V1__t___zz:E:2s/* déchiffrez déchiffrer :V1_it___zz:Ip:2p/* déchiffrez déchiffrer :V1_it___zz:E:2p/* découragions décourager :V1__t_q_zz:Iq:Sp:1p/* |
︙ | ︙ | |||
207221 207222 207223 207224 207225 207226 207227 207228 207229 207230 207231 207232 207233 207234 | poètereaux poètereau :N:m:p/R profanerai profaner :V1__t___zz:If:1s/* prétendîmes prétendre :V3__tnq__a:Is:1p/* quatrillion quatrillion :N:m:s/* recelez receler :V1_it___zz:Ip:2p/M recelez receler :V1_it___zz:E:2p/M reprécisées repréciser :V1_it___zz:Q:A:f:p/* siphonnées siphonner :V1__t___zz:Q:A:f:p/* sonorement sonorement :W/* stabilisât stabiliser :V1__t_q_zz:Sq:3s/* sucrases sucrase :N:f:p/* symphorine symphorine :N:f:s/* systématiseront systématiser :V1_it_q_zz:If:3p!/* théâtralités théâtralité :N:f:p/* | > | 207282 207283 207284 207285 207286 207287 207288 207289 207290 207291 207292 207293 207294 207295 207296 | poètereaux poètereau :N:m:p/R profanerai profaner :V1__t___zz:If:1s/* prétendîmes prétendre :V3__tnq__a:Is:1p/* quatrillion quatrillion :N:m:s/* recelez receler :V1_it___zz:Ip:2p/M recelez receler :V1_it___zz:E:2p/M reprécisées repréciser :V1_it___zz:Q:A:f:p/* retransférés retransférer :V1__t____a:Q:A:m:p/* siphonnées siphonner :V1__t___zz:Q:A:f:p/* sonorement sonorement :W/* stabilisât stabiliser :V1__t_q_zz:Sq:3s/* sucrases sucrase :N:f:p/* symphorine symphorine :N:f:s/* systématiseront systématiser :V1_it_q_zz:If:3p!/* théâtralités théâtralité :N:f:p/* |
︙ | ︙ | |||
208036 208037 208038 208039 208040 208041 208042 208043 208044 208045 208046 208047 208048 208049 | planquant planquer :V1_it_q_zz:P/* plébiscitaient plébisciter :V1__t___zz:Iq:3p/* présumeraient présumer :V1__tn__zz:K:3p/* pérégrinait pérégriner :V1_i____zz:Iq:3s/* recéda recéder :V1__t___zz:Is:3s/* relaves relaver :V1_it___zz:Ip:Sp:2s/* remboursions rembourser :V1_it_q__a:Iq:Sp:1p/* rouillèrent rouiller :V1_it_q_zz:Is:3p!/* sabotera saboter :V1_it___zz:If:3s/* sacrifias sacrifier :V1__t_q_zz:Is:2s/* salicoside salicoside :N:e:s/* sansevières sansevière :N:f:p/* semi-liberté semi-liberté :N:f:s/* sillonnons sillonner :V1__t___zz:Ip:1p/* | > | 208098 208099 208100 208101 208102 208103 208104 208105 208106 208107 208108 208109 208110 208111 208112 | planquant planquer :V1_it_q_zz:P/* plébiscitaient plébisciter :V1__t___zz:Iq:3p/* présumeraient présumer :V1__tn__zz:K:3p/* pérégrinait pérégriner :V1_i____zz:Iq:3s/* recéda recéder :V1__t___zz:Is:3s/* relaves relaver :V1_it___zz:Ip:Sp:2s/* remboursions rembourser :V1_it_q__a:Iq:Sp:1p/* rotamètres rotamètre :N:m:p/* rouillèrent rouiller :V1_it_q_zz:Is:3p!/* sabotera saboter :V1_it___zz:If:3s/* sacrifias sacrifier :V1__t_q_zz:Is:2s/* salicoside salicoside :N:e:s/* sansevières sansevière :N:f:p/* semi-liberté semi-liberté :N:f:s/* sillonnons sillonner :V1__t___zz:Ip:1p/* |
︙ | ︙ | |||
209972 209973 209974 209975 209976 209977 209978 209979 209980 209981 209982 209983 209984 209985 | glaviots glaviot :N:m:p/* glosèrent gloser :V1_itn__zz:Is:3p!/* goujonnés goujonner :V1__t___zz:Q:A:m:p/* goutées gouter :V1_itn__zz:Q:A:f:p/R humidifications humidification :N:f:p/* jeûnions jeûner :V1_i____zz:Iq:Sp:1p/* lasseriez lasser :V1_it_q_zz:K:2p/* mitait miter :V1_i__q_zz:Iq:3s/* pausé pauser :V1_i____zz:Q:1ŝ:e:i/* pondrez pondre :V3_it____a:If:2p/* proféreraient proférer :V1__t___zz:K:3p/M pyriméthanil pyriméthanil :N:m:s/X rebloquer rebloquer :V1_it____a:Y/* regardassions regarder :V1_itnq__a:Sq:1p/* | > | 210035 210036 210037 210038 210039 210040 210041 210042 210043 210044 210045 210046 210047 210048 210049 | glaviots glaviot :N:m:p/* glosèrent gloser :V1_itn__zz:Is:3p!/* goujonnés goujonner :V1__t___zz:Q:A:m:p/* goutées gouter :V1_itn__zz:Q:A:f:p/R humidifications humidification :N:f:p/* jeûnions jeûner :V1_i____zz:Iq:Sp:1p/* lasseriez lasser :V1_it_q_zz:K:2p/* microvascularisation microvascularisation :N:f:s/* mitait miter :V1_i__q_zz:Iq:3s/* pausé pauser :V1_i____zz:Q:1ŝ:e:i/* pondrez pondre :V3_it____a:If:2p/* proféreraient proférer :V1__t___zz:K:3p/M pyriméthanil pyriméthanil :N:m:s/X rebloquer rebloquer :V1_it____a:Y/* regardassions regarder :V1_itnq__a:Sq:1p/* |
︙ | ︙ | |||
210459 210460 210461 210462 210463 210464 210465 | trillons triller :V1_it___zz:E:1p/* viandards viandard :N:m:p/* volleys volley :N:m:p/* véhiculons véhiculer :V1__t_q_zz:Ip:1p/* véhiculons véhiculer :V1__t_q_zz:E:1p/* échevelant écheveler :V1__t___zz:P/* énostose énostose :N:f:s/* | | | 210523 210524 210525 210526 210527 210528 210529 210530 210531 210532 210533 210534 210535 210536 210537 | trillons triller :V1_it___zz:E:1p/* viandards viandard :N:m:p/* volleys volley :N:m:p/* véhiculons véhiculer :V1__t_q_zz:Ip:1p/* véhiculons véhiculer :V1__t_q_zz:E:1p/* échevelant écheveler :V1__t___zz:P/* énostose énostose :N:f:s/* épissée épisser :V1__t____a:Q:A:f:s/* Sainte-Anastasie Sainte-Anastasie :MP:e:i/X abeillère abeiller :A:f:s/* aiguisons aiguiser :V1__t_q_zz:Ip:1p/* aiguisons aiguiser :V1__t_q_zz:E:1p/* alarmas alarmer :V1__t_q__a:Is:2s/* alvins alvin :A:m:p/* après-vente après-vente :A:e:i/M |
︙ | ︙ | |||
211016 211017 211018 211019 211020 211021 211022 211023 211024 211025 211026 211027 211028 211029 | prouvasse prouver :V1__t_q_zz:Sq:1s/* quintuplets quintuplet :N:m:p/* raccoutrer raccoutrer :V1__t___zz:Y/* raqué raquer :V1_it___zz:Q:A:1ŝ:m:s/* remontrais remontrer :V1_itnq_zz:Iq:1s:2s/* renieur renieur :N:m:s/* retendrait retendre :V3__t____a:K:3s/* rouira rouir :V2_it____a:If:3s/* récoltantes récoltant :N:A:f:p/* réentendais réentendre :V3_itnq__a:Iq:1s:2s/* réfèrerai référer :V1___nq_zz:If:1s/R réécrirait réécrire :V3_it____a:K:3s/* saoulées saouler :V1__t_q_zz:Q:A:f:p/M scrofulaires scrofulaire :N:f:p/* | > | 211080 211081 211082 211083 211084 211085 211086 211087 211088 211089 211090 211091 211092 211093 211094 | prouvasse prouver :V1__t_q_zz:Sq:1s/* quintuplets quintuplet :N:m:p/* raccoutrer raccoutrer :V1__t___zz:Y/* raqué raquer :V1_it___zz:Q:A:1ŝ:m:s/* remontrais remontrer :V1_itnq_zz:Iq:1s:2s/* renieur renieur :N:m:s/* retendrait retendre :V3__t____a:K:3s/* retransférée retransférer :V1__t____a:Q:A:f:s/* rouira rouir :V2_it____a:If:3s/* récoltantes récoltant :N:A:f:p/* réentendais réentendre :V3_itnq__a:Iq:1s:2s/* réfèrerai référer :V1___nq_zz:If:1s/R réécrirait réécrire :V3_it____a:K:3s/* saoulées saouler :V1__t_q_zz:Q:A:f:p/M scrofulaires scrofulaire :N:f:p/* |
︙ | ︙ | |||
213193 213194 213195 213196 213197 213198 213199 | surestimez surestimer :V1__t_q_zz:E:2p/* surexcitable surexcitable :A:e:s/* surfacées surfacer :V1_it___zz:Q:A:f:p/* surélevèrent surélever :V1__t___zz:Is:3p!/* taperez taper :V1_it_q_zz:If:2p/* tracasses tracasser :V1__t_q_zz:Ip:Sp:2s/* visualisa visualiser :V1__t___zz:Is:3s/* | | | 213258 213259 213260 213261 213262 213263 213264 213265 213266 213267 213268 213269 213270 213271 213272 | surestimez surestimer :V1__t_q_zz:E:2p/* surexcitable surexcitable :A:e:s/* surfacées surfacer :V1_it___zz:Q:A:f:p/* surélevèrent surélever :V1__t___zz:Is:3p!/* taperez taper :V1_it_q_zz:If:2p/* tracasses tracasser :V1__t_q_zz:Ip:Sp:2s/* visualisa visualiser :V1__t___zz:Is:3s/* voilas voiler :V1_it_q__a:Is:2s/* voûtions voûter :V1__t_q_zz:Iq:Sp:1p/M zoopathie zoopathie :N:f:s/* ébulliométrie ébulliométrie :N:f:s/* éroderait éroder :V1__t_q_zz:K:3s/* acériculteurs acériculteur :N:m:p/* agglutinera agglutiner :V1__t_q_zz:If:3s/* airait airer :V1_i____zz:Iq:3s/* |
︙ | ︙ | |||
213496 213497 213498 213499 213500 213501 213502 | microséisme microséisme :N:m:s/* peuplai peupler :V1__t_q_zz:Is:1s/* philanthes philanthe :N:m:p/* ptérosauriens ptérosaurien :N:m:p/* ragréages ragréage :N:m:p/* recapturées recapturer :V1_it____a:Q:A:f:p/* reconvertissaient reconvertir :V2_it_q__a:Iq:3p/* | | | | 213561 213562 213563 213564 213565 213566 213567 213568 213569 213570 213571 213572 213573 213574 213575 213576 | microséisme microséisme :N:m:s/* peuplai peupler :V1__t_q_zz:Is:1s/* philanthes philanthe :N:m:p/* ptérosauriens ptérosaurien :N:m:p/* ragréages ragréage :N:m:p/* recapturées recapturer :V1_it____a:Q:A:f:p/* reconvertissaient reconvertir :V2_it_q__a:Iq:3p/* redispose redisposer :V1__t____a:Ip:Sp:1s:3s/* redispose redisposer :V1__t____a:E:2s/* releveuse releveur :N:A:f:s/* renforçatrices renforçateur :A:f:p/* repeignaient repeindre :V3_it_q__a:Iq:3p/* rivalisez rivaliser :V1_i____zz:Ip:2p/* rivalisez rivaliser :V1_i____zz:E:2p/* réapprises réapprendre :V3_itn___a:Q:A:f:p/* réchaufferons réchauffer :V1__t_q_zz:If:1p/* |
︙ | ︙ | |||
214152 214153 214154 214155 214156 214157 214158 | tourillonne tourillonner :V1_i____zz:Ip:Sp:1s:3s/* tourillonne tourillonner :V1_i____zz:E:2s/* tutoierait tutoyer :V1__t_q_zz:K:3s/* écule éculer :V1__t___zz:Ip:Sp:1s:3s/* écule éculer :V1__t___zz:E:2s/* élaguaient élaguer :V1__t___zz:Iq:3p/* élusses élire :V3__t____a:Sq:2s/* | | | 214217 214218 214219 214220 214221 214222 214223 214224 214225 214226 214227 214228 214229 214230 214231 | tourillonne tourillonner :V1_i____zz:Ip:Sp:1s:3s/* tourillonne tourillonner :V1_i____zz:E:2s/* tutoierait tutoyer :V1__t_q_zz:K:3s/* écule éculer :V1__t___zz:Ip:Sp:1s:3s/* écule éculer :V1__t___zz:E:2s/* élaguaient élaguer :V1__t___zz:Iq:3p/* élusses élire :V3__t____a:Sq:2s/* épicent épicer :V1_it____a:Ip:Sp:3p/* affabulait affabuler :V1_it___zz:Iq:3s/* affermeraient affermer :V1__t___zz:K:3p/* agoraphobies agoraphobie :N:f:p/* anémographes anémographe :N:m:p/* assimilatifs assimilatif :A:m:p/* assomptif assomptif :A:m:s/* atomisa atomiser :V1__t_q_zz:Is:3s/* |
︙ | ︙ | |||
215090 215091 215092 215093 215094 215095 215096 | teillent teiller :V1__t___zz:Ip:Sp:3p/* thysanoptères thysanoptère :N:m:p/* tirebouchonnée tirebouchonner :V1_it_q_zz:Q:A:f:s/R tourneboulés tournebouler :V1__t___zz:Q:A:m:p/* turdidés turdidé :N:m:p/* téléconseillers téléconseiller :N:m:p/* vidimant vidimer :V1__t___zz:P/* | | | 215155 215156 215157 215158 215159 215160 215161 215162 215163 215164 215165 215166 215167 215168 215169 | teillent teiller :V1__t___zz:Ip:Sp:3p/* thysanoptères thysanoptère :N:m:p/* tirebouchonnée tirebouchonner :V1_it_q_zz:Q:A:f:s/R tourneboulés tournebouler :V1__t___zz:Q:A:m:p/* turdidés turdidé :N:m:p/* téléconseillers téléconseiller :N:m:p/* vidimant vidimer :V1__t___zz:P/* voilais voiler :V1_it_q__a:Iq:1s:2s/* éclorait éclore :V3_i_____a:K:3s/* épanneler épanneler :V1__t___zz:Y/* Alexane Alexane :M1:f:i/* Luthringer Luthringer :M2:e:i/X abrévier abrévier :V1__t___zz:Y/* administrasse administrer :V1__t_q_zz:Sq:1s/* aggravions aggraver :V1__t_q_zz:Iq:Sp:1p/* |
︙ | ︙ | |||
216956 216957 216958 216959 216960 216961 216962 | conglutine conglutiner :V1__t___zz:E:2s/* contraignîmes contraindre :V3__t_q__a:Is:1p/* contristèrent contrister :V1__t___zz:Is:3p!/* corsèrent corser :V1__t_q_zz:Is:3p!/* craignîtes craindre :V3_it____a:Is:2p/* croulons crouler :V1_i____zz:Ip:1p/* croulons crouler :V1_i____zz:E:1p/* | | | 217021 217022 217023 217024 217025 217026 217027 217028 217029 217030 217031 217032 217033 217034 217035 | conglutine conglutiner :V1__t___zz:E:2s/* contraignîmes contraindre :V3__t_q__a:Is:1p/* contristèrent contrister :V1__t___zz:Is:3p!/* corsèrent corser :V1__t_q_zz:Is:3p!/* craignîtes craindre :V3_it____a:Is:2p/* croulons crouler :V1_i____zz:Ip:1p/* croulons crouler :V1_i____zz:E:1p/* cryptâtes crypter :V1_it____a:Is:2p/* cuvas cuver :V1_it___zz:Is:2s/* drapais draper :V1__t_q_zz:Iq:1s:2s/* défiches déficher :V1__t___zz:Ip:Sp:2s/* délirons délirer :V1_i____zz:Ip:1p/* délirons délirer :V1_i____zz:E:1p/* dénuderait dénuder :V1__t_q_zz:K:3s/* déprécations déprécation :N:f:p/* |
︙ | ︙ | |||
217869 217870 217871 217872 217873 217874 217875 217876 217877 217878 217879 217880 217881 217882 | estoque estoquer :V1__t___zz:Ip:Sp:1s:3s/* estoque estoquer :V1__t___zz:E:2s/* fendoirs fendoir :N:m:p/* frémîmes frémir :V2_i_____a:Is:1p/* félinement félinement :W/* guacamole guacamole :N:m:s/* hébètement hébètement :N:m:s/R importassent importer :V1_itn__zz:Sq:3p/* incantent incanter :V1_it___zz:Ip:Sp:3p/* incuite incuit :A:f:s/* inhumai inhumer :V1__t___zz:Is:1s/* inspectâmes inspecter :V1__t___zz:Is:1p/* interros interro :N:f:p/* lamant lamer :V1__t___zz:P/* | > | 217934 217935 217936 217937 217938 217939 217940 217941 217942 217943 217944 217945 217946 217947 217948 | estoque estoquer :V1__t___zz:Ip:Sp:1s:3s/* estoque estoquer :V1__t___zz:E:2s/* fendoirs fendoir :N:m:p/* frémîmes frémir :V2_i_____a:Is:1p/* félinement félinement :W/* guacamole guacamole :N:m:s/* hébètement hébètement :N:m:s/R immunomodulatrices immunomodulateur :A:f:p/* importassent importer :V1_itn__zz:Sq:3p/* incantent incanter :V1_it___zz:Ip:Sp:3p/* incuite incuit :A:f:s/* inhumai inhumer :V1__t___zz:Is:1s/* inspectâmes inspecter :V1__t___zz:Is:1p/* interros interro :N:f:p/* lamant lamer :V1__t___zz:P/* |
︙ | ︙ | |||
218203 218204 218205 218206 218207 218208 218209 | sériât sérier :V1__t___zz:Sq:3s/* taxeriez taxer :V1__t___zz:K:2p/* terrassât terrasser :V1_it___zz:Sq:3s/* toisez toiser :V1__t_q_zz:Ip:2p/* toisez toiser :V1__t_q_zz:E:2p/* tousserait tousser :V1_i____zz:K:3s/* écharnée écharner :V1__t___zz:Q:A:f:s/* | | | 218269 218270 218271 218272 218273 218274 218275 218276 218277 218278 218279 218280 218281 218282 218283 | sériât sérier :V1__t___zz:Sq:3s/* taxeriez taxer :V1__t___zz:K:2p/* terrassât terrasser :V1_it___zz:Sq:3s/* toisez toiser :V1__t_q_zz:Ip:2p/* toisez toiser :V1__t_q_zz:E:2p/* tousserait tousser :V1_i____zz:K:3s/* écharnée écharner :V1__t___zz:Q:A:f:s/* épiçant épicer :V1_it____a:P/* éteufs éteuf :N:m:p/* Grassian Grassian :M2:e:i/X adeptat adeptat :N:m:s/* adialectique adialectique :A:e:s/* affirmas affirmer :V1_itnq__a:Is:2s/* alvéolodentaires alvéolodentaire :A:e:p/R apitoierait apitoyer :V1__t_q_zz:K:3s/* |
︙ | ︙ | |||
218312 218313 218314 218315 218316 218317 218318 218319 218320 218321 218322 218323 218324 218325 | aérotransportées aérotransporté :A:f:p/* badinions badiner :V1_i_____a:Iq:Sp:1p/* ballottèrent ballotter :V1_it___zz:Is:3p!/M bordéliques bordélique :A:e:p/* camarines camarine :N:f:p/* cinéphage cinéphage :N:A:e:s/* contactologie contactologie :N:f:s/* dermatophytoses dermatophytose :N:f:p/* dibrome dibrome :N:m:s/* discuteras discuter :V1_it_q_zz:If:2s/* distanceront distancer :V1__t_q_zz:If:3p!/* débarra débarrer :V1__t___zz:Is:3s/* débloqueront débloquer :V1_it___zz:If:3p!/* débouclée déboucler :V1__t___zz:Q:A:f:s/* | > | 218378 218379 218380 218381 218382 218383 218384 218385 218386 218387 218388 218389 218390 218391 218392 | aérotransportées aérotransporté :A:f:p/* badinions badiner :V1_i_____a:Iq:Sp:1p/* ballottèrent ballotter :V1_it___zz:Is:3p!/M bordéliques bordélique :A:e:p/* camarines camarine :N:f:p/* cinéphage cinéphage :N:A:e:s/* contactologie contactologie :N:f:s/* cyclohexanols cyclohexanol :N:m:p/* dermatophytoses dermatophytose :N:f:p/* dibrome dibrome :N:m:s/* discuteras discuter :V1_it_q_zz:If:2s/* distanceront distancer :V1__t_q_zz:If:3p!/* débarra débarrer :V1__t___zz:Is:3s/* débloqueront débloquer :V1_it___zz:If:3p!/* débouclée déboucler :V1__t___zz:Q:A:f:s/* |
︙ | ︙ | |||
219724 219725 219726 219727 219728 219729 219730 | tararage tararage :N:m:s/* tranquilliseraient tranquilliser :V1__t_q_zz:K:3p/* tremblâmes trembler :V1_i____zz:Is:1p/* téléguidant téléguider :V1__t___zz:P/* vallonnes vallonner :V1____p_e_:Ip:Sp:2s/* vidiment vidimer :V1__t___zz:Ip:Sp:3p/* visitatrice visitateur :N:f:s/* | | | 219791 219792 219793 219794 219795 219796 219797 219798 219799 219800 219801 219802 219803 219804 219805 | tararage tararage :N:m:s/* tranquilliseraient tranquilliser :V1__t_q_zz:K:3p/* tremblâmes trembler :V1_i____zz:Is:1p/* téléguidant téléguider :V1__t___zz:P/* vallonnes vallonner :V1____p_e_:Ip:Sp:2s/* vidiment vidimer :V1__t___zz:Ip:Sp:3p/* visitatrice visitateur :N:f:s/* voilerai voiler :V1_it_q__a:If:1s/* xanthodermes xanthoderme :N:A:e:p/* ébonites ébonite :N:f:p/* énumérât énumérer :V1__t___zz:Sq:3s/* équeutage équeutage :N:m:s/* acromiaux acromial :A:m:p/* actiniaires actiniaire :N:m:p/* affectionnai affectionner :V1__t___zz:Is:1s/* |
︙ | ︙ | |||
223238 223239 223240 223241 223242 223243 223244 | commerças commercer :V1_i_____a:Is:2s/* congrèves congrève :N:f:p/* conjecturable conjecturable :A:e:s/* conjuratrices conjurateur :N:A:f:p/* consumas consumer :V1__t_q_zz:Is:2s/* cornions corner :V1_it___zz:Iq:Sp:1p/* cosolvant cosolvant :N:m:s/X | | | 223305 223306 223307 223308 223309 223310 223311 223312 223313 223314 223315 223316 223317 223318 223319 | commerças commercer :V1_i_____a:Is:2s/* congrèves congrève :N:f:p/* conjecturable conjecturable :A:e:s/* conjuratrices conjurateur :N:A:f:p/* consumas consumer :V1__t_q_zz:Is:2s/* cornions corner :V1_it___zz:Iq:Sp:1p/* cosolvant cosolvant :N:m:s/X cryptas crypter :V1_it____a:Is:2s/* de-là de-là :Ŵ/* disculpas disculper :V1__t_q_zz:Is:2s/* dyscinésies dyscinésie :N:f:p/A dyssynchronie dyssynchronie :N:f:s/* décampions décamper :V1_i____zz:Iq:Sp:1p/* délivreriez délivrer :V1__t_q_zz:K:2p/* démocratisèrent démocratiser :V1__t_q_zz:Is:3p!/* |
︙ | ︙ | |||
223923 223924 223925 223926 223927 223928 223929 | syntoniseur syntoniseur :N:m:s/* tamiserie tamiserie :N:f:s/* tourmenterons tourmenter :V1__t_q_zz:If:1p/* transférassent transférer :V1__t___zz:Sq:3p/* édulcorera édulcorer :V1__t___zz:If:3s/* élaguez élaguer :V1__t___zz:Ip:2p/* élaguez élaguer :V1__t___zz:E:2p/* | | | 223990 223991 223992 223993 223994 223995 223996 223997 223998 223999 224000 224001 224002 224003 224004 | syntoniseur syntoniseur :N:m:s/* tamiserie tamiserie :N:f:s/* tourmenterons tourmenter :V1__t_q_zz:If:1p/* transférassent transférer :V1__t___zz:Sq:3p/* édulcorera édulcorer :V1__t___zz:If:3s/* élaguez élaguer :V1__t___zz:Ip:2p/* élaguez élaguer :V1__t___zz:E:2p/* épiçait épicer :V1_it____a:Iq:3s/* éversions éversion :N:f:p/* acceptablement acceptablement :W/* adornant adorner :V1__t_q_zz:P/* affaitage affaitage :N:m:s/* agrémenterait agrémenter :V1__t___zz:K:3s/* aguichaient aguicher :V1__t___zz:Iq:3p/* anglo-irlandais anglo-irlandais :N:A:m:i/* |
︙ | ︙ | |||
225048 225049 225050 225051 225052 225053 225054 225055 225056 225057 225058 225059 225060 225061 225062 225063 225064 225065 | spéculions spéculer :V1_i____zz:Iq:Sp:1p/* supportasse supporter :V1__t_q_zz:Sq:1s/* supputerons supputer :V1__t___zz:If:1p/* surjeter surjeter :V1__t___zz:Y/* surprendriez surprendre :V3_it_q__a:K:2p/* syllabée syllaber :V1__t___zz:Q:A:f:s/* tarasse tarer :V1__t___zz:Sq:1s/* trempiez tremper :V1_it_q_zz:Iq:Sp:2p/* triomphas triompher :V1_i_n__zz:Is:2s/* tuilettes tuilette :N:f:p/* télénovelas télénovela :N:f:p/* vengeâmes venger :V1__t_q_zz:Is:1p/* ventilai ventiler :V1__t___zz:Is:1s/* viserions viser :V1_itn__zz:K:1p/* vêtît vêtir :V3__t_q__a:Sq:3s/* zoolithes zoolithe :N:m:p/M kiloélectronvolts électronvolt :N:m:p/* élucideraient élucider :V1__t___zz:K:3p/* | > | | 225115 225116 225117 225118 225119 225120 225121 225122 225123 225124 225125 225126 225127 225128 225129 225130 225131 225132 225133 225134 225135 225136 225137 225138 225139 225140 225141 | spéculions spéculer :V1_i____zz:Iq:Sp:1p/* supportasse supporter :V1__t_q_zz:Sq:1s/* supputerons supputer :V1__t___zz:If:1p/* surjeter surjeter :V1__t___zz:Y/* surprendriez surprendre :V3_it_q__a:K:2p/* syllabée syllaber :V1__t___zz:Q:A:f:s/* tarasse tarer :V1__t___zz:Sq:1s/* thermobalances thermobalance :N:f:p/* trempiez tremper :V1_it_q_zz:Iq:Sp:2p/* triomphas triompher :V1_i_n__zz:Is:2s/* tuilettes tuilette :N:f:p/* télénovelas télénovela :N:f:p/* vengeâmes venger :V1__t_q_zz:Is:1p/* ventilai ventiler :V1__t___zz:Is:1s/* viserions viser :V1_itn__zz:K:1p/* vêtît vêtir :V3__t_q__a:Sq:3s/* zoolithes zoolithe :N:m:p/M kiloélectronvolts électronvolt :N:m:p/* élucideraient élucider :V1__t___zz:K:3p/* épissées épisser :V1__t____a:Q:A:f:p/* érodèrent éroder :V1__t_q_zz:Is:3p!/* étançonnant étançonner :V1__t___zz:P/* évitages évitage :N:m:p/* Kiera Kiera :M1:f:i/* accompagnâtes accompagner :V1__t_x__a:Is:2p/* affouragée affourager :V1__t___zz:Q:A:f:s/* alicantes alicante :N:m:p/* |
︙ | ︙ | |||
226245 226246 226247 226248 226249 226250 226251 | potimarron potimarron :N:m:s/* prônât prôner :V1_it___zz:Sq:3s/* psychoéducatives psychoéducatif :A:f:p/* périnéorraphies périnéorraphie :N:f:p/* reconvoque reconvoquer :V1__t____a:Ip:Sp:1s:3s/* reconvoque reconvoquer :V1__t____a:E:2s/* recourue recourir :V3_itn___a:Q:A:f:s/* | | | 226313 226314 226315 226316 226317 226318 226319 226320 226321 226322 226323 226324 226325 226326 226327 | potimarron potimarron :N:m:s/* prônât prôner :V1_it___zz:Sq:3s/* psychoéducatives psychoéducatif :A:f:p/* périnéorraphies périnéorraphie :N:f:p/* reconvoque reconvoquer :V1__t____a:Ip:Sp:1s:3s/* reconvoque reconvoquer :V1__t____a:E:2s/* recourue recourir :V3_itn___a:Q:A:f:s/* redisposés redisposer :V1__t____a:Q:A:m:p/* refabriquée refabriquer :V1__t___zz:Q:A:f:s/* refoulâmes refouler :V1_it___zz:Is:1p/* rejouèrent rejouer :V1_it___zz:Is:3p!/* reliassent relier :V1__t___zz:Sq:3p/* rengagez rengager :V1_it_q_zz:Ip:2p/* rengagez rengager :V1_it_q_zz:E:2p/* rigolons rigoler :V1_i____zz:Ip:1p/* |
︙ | ︙ | |||
226824 226825 226826 226827 226828 226829 226830 226831 226832 226833 226834 226835 226836 226837 | limousinage limousinage :N:m:s/* lombricompostage lombricompostage :N:m:s/* marquassiez marquer :V1_it_q__a:Sq:2p/* molards molard :N:m:p/* muscidés muscidé :N:m:p/* nécessitai nécessiter :V1__t____a:Is:1s/* néozoïques néozoïque :A:e:p/* paradons parader :V1_i____zz:Ip:1p/* paradons parader :V1_i____zz:E:1p/* passe-partout passe-partout :A:e:i/M passe-partout passe-partout :N:m:i/M perfusent perfuser :V1__t___zz:Ip:Sp:3p/* phycocyanines phycocyanine :N:f:p/* pillerai piller :V1__t___zz:If:1s/* | > | 226892 226893 226894 226895 226896 226897 226898 226899 226900 226901 226902 226903 226904 226905 226906 | limousinage limousinage :N:m:s/* lombricompostage lombricompostage :N:m:s/* marquassiez marquer :V1_it_q__a:Sq:2p/* molards molard :N:m:p/* muscidés muscidé :N:m:p/* nécessitai nécessiter :V1__t____a:Is:1s/* néozoïques néozoïque :A:e:p/* pallières pallière :N:f:p/* paradons parader :V1_i____zz:Ip:1p/* paradons parader :V1_i____zz:E:1p/* passe-partout passe-partout :A:e:i/M passe-partout passe-partout :N:m:i/M perfusent perfuser :V1__t___zz:Ip:Sp:3p/* phycocyanines phycocyanine :N:f:p/* pillerai piller :V1__t___zz:If:1s/* |
︙ | ︙ | |||
228185 228186 228187 228188 228189 228190 228191 | pyrolusites pyrolusite :N:f:p/* pédopornographiques pédopornographique :A:e:p/* pénitenceries pénitencerie :N:f:p/* péponide péponide :N:e:s/* pétrirez pétrir :V2_it____a:If:2p/* radotais radoter :V1_i____zz:Iq:1s:2s/* rebuterez rebuter :V1_it_q_zz:If:2p/* | | | 228254 228255 228256 228257 228258 228259 228260 228261 228262 228263 228264 228265 228266 228267 228268 | pyrolusites pyrolusite :N:f:p/* pédopornographiques pédopornographique :A:e:p/* pénitenceries pénitencerie :N:f:p/* péponide péponide :N:e:s/* pétrirez pétrir :V2_it____a:If:2p/* radotais radoter :V1_i____zz:Iq:1s:2s/* rebuterez rebuter :V1_it_q_zz:If:2p/* redisposé redisposer :V1__t____a:Q:A:1ŝ:m:s/* remorquâmes remorquer :V1__t___zz:Is:1p/* repentîmes repentir :V3____p_e_:Is:1p/* replissent replisser :V1__t___zz:Ip:Sp:3p/* robage robage :N:m:s/* réhabilitateur réhabilitateur :N:A:m:s/* réoccuperait réoccuper :V1__t___zz:K:3s/* résumeriez résumer :V1__t_q_zz:K:2p/* |
︙ | ︙ | |||
229097 229098 229099 229100 229101 229102 229103 | outrons outrer :V1__t___zz:Ip:1p/* outrons outrer :V1__t___zz:E:1p/* pavanés pavaner :V1____p_e_:Q:A:m:p/* prorogeons proroger :V1__t_q_zz:Ip:1p/* prorogeons proroger :V1__t_q_zz:E:1p/* psychopharmacologues psychopharmacologue :N:e:p/* pâtureront pâturer :V1_it___zz:If:3p!/* | | | 229166 229167 229168 229169 229170 229171 229172 229173 229174 229175 229176 229177 229178 229179 229180 | outrons outrer :V1__t___zz:Ip:1p/* outrons outrer :V1__t___zz:E:1p/* pavanés pavaner :V1____p_e_:Q:A:m:p/* prorogeons proroger :V1__t_q_zz:Ip:1p/* prorogeons proroger :V1__t_q_zz:E:1p/* psychopharmacologues psychopharmacologue :N:e:p/* pâtureront pâturer :V1_it___zz:If:3p!/* redisposant redisposer :V1__t____a:P/* reformatés reformater :V1__t___zz:Q:A:m:p/* repartagées repartager :V1__t___zz:Q:A:f:p/* repesait repeser :V1_it_q_zz:Iq:3s/* retransmirent retransmettre :V3_it____a:Is:3p!/* régirai régir :V2_it____a:If:1s/* réinventais réinventer :V1__t_q_zz:Iq:1s:2s/* réislamisés réislamiser :V1_it_q__a:Q:A:m:p/* |
︙ | ︙ | |||
231096 231097 231098 231099 231100 231101 231102 | trimballes trimballer :V1__t_q_zz:Ip:Sp:2s/C triplicata triplicata :N:m:s/* triplicatas triplicata :N:m:p/* trémulants trémulant :N:A:m:p/* unicaule unicaule :A:e:s/* unilinguismes unilinguisme :N:m:p/* vaccinatrice vaccinateur :N:f:s/* | | | 231165 231166 231167 231168 231169 231170 231171 231172 231173 231174 231175 231176 231177 231178 231179 | trimballes trimballer :V1__t_q_zz:Ip:Sp:2s/C triplicata triplicata :N:m:s/* triplicatas triplicata :N:m:p/* trémulants trémulant :N:A:m:p/* unicaule unicaule :A:e:s/* unilinguismes unilinguisme :N:m:p/* vaccinatrice vaccinateur :N:f:s/* voilerez voiler :V1_it_q__a:If:2p/* vérifierions vérifier :V1__t_q_zz:K:1p/* zouks zouk :N:m:p/* Éram Éram :MP:e:i/* écornerait écorner :V1__t___zz:K:3s/* écoutables écoutable :A:e:p/* édulcorez édulcorer :V1__t___zz:Ip:2p/* édulcorez édulcorer :V1__t___zz:E:2p/* |
︙ | ︙ | |||
231484 231485 231486 231487 231488 231489 231490 | thésaurisables thésaurisable :A:e:p/* tierçant tiercer :V1_it___zz:P/* torchaient torcher :V1__t_q_zz:Iq:3p/* triomphalismes triomphalisme :N:m:p/* viabilise viabiliser :V1__t___zz:Ip:Sp:1s:3s/* viabilise viabiliser :V1__t___zz:E:2s/* voceratrice voceratrice :N:f:s/M | | | 231553 231554 231555 231556 231557 231558 231559 231560 231561 231562 231563 231564 231565 231566 231567 | thésaurisables thésaurisable :A:e:p/* tierçant tiercer :V1_it___zz:P/* torchaient torcher :V1__t_q_zz:Iq:3p/* triomphalismes triomphalisme :N:m:p/* viabilise viabiliser :V1__t___zz:Ip:Sp:1s:3s/* viabilise viabiliser :V1__t___zz:E:2s/* voceratrice voceratrice :N:f:s/M voilerons voiler :V1_it_q__a:If:1p/* échauffions échauffer :V1__t_q_zz:Iq:Sp:1p/* écoperait écoper :V1_it___zz:K:3s/* étriquant étriquer :V1__t___zz:P/* accommodas accommoder :V1__t_q_zz:Is:2s/* affleurage affleurage :N:m:s/* affûtoir affûtoir :N:m:s/M aftershave aftershave :N:m:s/* |
︙ | ︙ | |||
231551 231552 231553 231554 231555 231556 231557 231558 231559 231560 231561 231562 231563 231564 | frimeuse frimeur :N:f:s/* gâcheuses gâcheur :N:A:f:p/* hispano-mauresque hispano-mauresque :A:e:s/* hormonothérapies hormonothérapie :N:f:p/* hypovolémies hypovolémie :N:f:p/* hystériser hystériser :V1_it____a:Y/* immergeais immerger :V1__t_q_zz:Iq:1s:2s/* infirmable infirmable :A:e:s/* italo-américaine italo-américain :N:A:f:s/* longimétrie longimétrie :N:f:s/* légendent légender :V1__t___zz:Ip:Sp:3p/* matheuse matheux :N:f:s/* mergules mergule :N:m:p/* microfuite microfuite :N:f:s/* | > | 231620 231621 231622 231623 231624 231625 231626 231627 231628 231629 231630 231631 231632 231633 231634 | frimeuse frimeur :N:f:s/* gâcheuses gâcheur :N:A:f:p/* hispano-mauresque hispano-mauresque :A:e:s/* hormonothérapies hormonothérapie :N:f:p/* hypovolémies hypovolémie :N:f:p/* hystériser hystériser :V1_it____a:Y/* immergeais immerger :V1__t_q_zz:Iq:1s:2s/* immunomodulatrice immunomodulateur :A:f:s/* infirmable infirmable :A:e:s/* italo-américaine italo-américain :N:A:f:s/* longimétrie longimétrie :N:f:s/* légendent légender :V1__t___zz:Ip:Sp:3p/* matheuse matheux :N:f:s/* mergules mergule :N:m:p/* microfuite microfuite :N:f:s/* |
︙ | ︙ | |||
232008 232009 232010 232011 232012 232013 232014 | tabassées tabasser :V1__t_q_zz:Q:A:f:p/* tardasse tarder :V1_i_n__zz:Sq:1s/* targueraient targuer :V1____p_e_:K:3p/* tempèrera tempérer :V1__t_q_zz:If:3s/R tennistiques tennistique :A:e:p/* traînaillent traînailler :V1_i____zz:Ip:Sp:3p/M téléphoneraient téléphoner :V1_itnq_zz:K:3p/* | | | 232078 232079 232080 232081 232082 232083 232084 232085 232086 232087 232088 232089 232090 232091 232092 | tabassées tabasser :V1__t_q_zz:Q:A:f:p/* tardasse tarder :V1_i_n__zz:Sq:1s/* targueraient targuer :V1____p_e_:K:3p/* tempèrera tempérer :V1__t_q_zz:If:3s/R tennistiques tennistique :A:e:p/* traînaillent traînailler :V1_i____zz:Ip:Sp:3p/M téléphoneraient téléphoner :V1_itnq_zz:K:3p/* voilassent voiler :V1_it_q__a:Sq:3p/* vulcanisable vulcanisable :A:e:s/* écornera écorner :V1__t___zz:If:3s/* émouchettes émouchette :N:f:p/* Bortzmeyer Bortzmeyer :M2:e:i/X MDa Da :N:m:i;S/* acœlomates acœlomate :N:m:p/* adultérait adultérer :V1__t___zz:Iq:3s/* |
︙ | ︙ | |||
236981 236982 236983 236984 236985 236986 236987 | querelliez quereller :V1__t_q_zz:Iq:Sp:2p/* raccourcirons raccourcir :V2_it_q__a:If:1p/* rachèterions racheter :V1__t_q_zz:K:1p/* ramenasse ramener :V1__t_q_zz:Sq:1s/* raphide raphide :N:e:s/* reclouait reclouer :V1__t___zz:Iq:3s/* reconvertirait reconvertir :V2_it_q__a:K:3s/* | | | 237051 237052 237053 237054 237055 237056 237057 237058 237059 237060 237061 237062 237063 237064 237065 | querelliez quereller :V1__t_q_zz:Iq:Sp:2p/* raccourcirons raccourcir :V2_it_q__a:If:1p/* rachèterions racheter :V1__t_q_zz:K:1p/* ramenasse ramener :V1__t_q_zz:Sq:1s/* raphide raphide :N:e:s/* reclouait reclouer :V1__t___zz:Iq:3s/* reconvertirait reconvertir :V2_it_q__a:K:3s/* redisposent redisposer :V1__t____a:Ip:Sp:3p/* redéfinirons redéfinir :V2__t_q__a:If:1p/* refixe refixer :V1__t_q_zz:Ip:Sp:1s:3s/* refixe refixer :V1__t_q_zz:E:2s/* relouait relouer :V1__t___zz:Iq:3s/* remarchait remarcher :V1_i____zz:Iq:3s/* rencardé rencarder :V1__t___zz:Q:A:1ŝ:m:s/* renouerez renouer :V1__t____a:If:2p/* |
︙ | ︙ | |||
237545 237546 237547 237548 237549 237550 237551 237552 237553 237554 237555 237556 237557 237558 | pop-corn pop-corn :N:m:i/M préjugiez préjuger :V1__tn__zz:Iq:Sp:2p/* rafraichisseur rafraichisseur :N:m:s/R remboursas rembourser :V1_it_q__a:Is:2s/* rentabiliseront rentabiliser :V1__t___zz:If:3p!/* repiquez repiquer :V1_it___zz:Ip:2p/* repiquez repiquer :V1_it___zz:E:2p/* retraversés retraverser :V1__t___zz:Q:A:m:p/* revascularisée revasculariser :V1__t___zz:Q:A:f:s/* rogneraient rogner :V1_it___zz:K:3p/* ruisselleraient ruisseler :V1_i____zz:K:3p/M réassemblent réassembler :V1_it_q__a:Ip:Sp:3p/* réexpliquant réexpliquer :V1__t___zz:P/* rétrocéderaient rétrocéder :V1_it___zz:K:3p/M | > | 237615 237616 237617 237618 237619 237620 237621 237622 237623 237624 237625 237626 237627 237628 237629 | pop-corn pop-corn :N:m:i/M préjugiez préjuger :V1__tn__zz:Iq:Sp:2p/* rafraichisseur rafraichisseur :N:m:s/R remboursas rembourser :V1_it_q__a:Is:2s/* rentabiliseront rentabiliser :V1__t___zz:If:3p!/* repiquez repiquer :V1_it___zz:Ip:2p/* repiquez repiquer :V1_it___zz:E:2p/* retransférées retransférer :V1__t____a:Q:A:f:p/* retraversés retraverser :V1__t___zz:Q:A:m:p/* revascularisée revasculariser :V1__t___zz:Q:A:f:s/* rogneraient rogner :V1_it___zz:K:3p/* ruisselleraient ruisseler :V1_i____zz:K:3p/M réassemblent réassembler :V1_it_q__a:Ip:Sp:3p/* réexpliquant réexpliquer :V1__t___zz:P/* rétrocéderaient rétrocéder :V1_it___zz:K:3p/M |
︙ | ︙ | |||
241138 241139 241140 241141 241142 241143 241144 | troquions troquer :V1_it_q__a:Iq:Sp:1p/* vadrouillant vadrouiller :V1_i____zz:P/* validais valider :V1__t___zz:Iq:1s:2s/* verdiraient verdir :V2_it____a:K:3p/* verdunisée verduniser :V1__t___zz:Q:A:f:s/* violenteront violenter :V1__t___zz:If:3p!/* vitrifiaient vitrifier :V1__t___zz:Iq:3p/* | | | 241209 241210 241211 241212 241213 241214 241215 241216 241217 241218 241219 241220 241221 241222 241223 | troquions troquer :V1_it_q__a:Iq:Sp:1p/* vadrouillant vadrouiller :V1_i____zz:P/* validais valider :V1__t___zz:Iq:1s:2s/* verdiraient verdir :V2_it____a:K:3p/* verdunisée verduniser :V1__t___zz:Q:A:f:s/* violenteront violenter :V1__t___zz:If:3p!/* vitrifiaient vitrifier :V1__t___zz:Iq:3p/* voilâmes voiler :V1_it_q__a:Is:1p/* wallabys wallaby :N:m:p/* éclipsons éclipser :V1__t_q_zz:Ip:1p/* éclipsons éclipser :V1__t_q_zz:E:1p/* écologismes écologisme :N:m:p/* épidémiologies épidémiologie :N:f:p/* Meeuwen-Gruitrode Meeuwen-Gruitrode :MP:e:i/* abhorreront abhorrer :V1__t___zz:If:3p!/* |
︙ | ︙ | |||
241952 241953 241954 241955 241956 241957 241958 | chouiner chouiner :V1_i____zz:Y/* cillas ciller :V1_i____zz:Is:2s/* conflua confluer :V1_i____zz:Is:3s/* conviassent convier :V1__t___zz:Sq:3p/* corrigeurs corrigeur :N:m:p/* corédactrice corédacteur :N:f:s/* couronneras couronner :V1__t_q_zz:If:2s/* | | | 242023 242024 242025 242026 242027 242028 242029 242030 242031 242032 242033 242034 242035 242036 242037 | chouiner chouiner :V1_i____zz:Y/* cillas ciller :V1_i____zz:Is:2s/* conflua confluer :V1_i____zz:Is:3s/* conviassent convier :V1__t___zz:Sq:3p/* corrigeurs corrigeur :N:m:p/* corédactrice corédacteur :N:f:s/* couronneras couronner :V1__t_q_zz:If:2s/* cryptent crypter :V1_it____a:Ip:Sp:3p/* culbutiez culbuter :V1_it___zz:Iq:Sp:2p/* customisée customiser :V1__t___zz:Q:A:f:s/* desservirez desservir :V3_it_q__a:If:2p/* dextroses dextrose :N:m:p/* déboulonnages déboulonnage :N:m:p/* décarrelée décarreler :V1__t___zz:Q:A:f:s/* déclaveté déclaveter :V1__t___zz:Q:A:1ŝ:m:s/* |
︙ | ︙ | |||
244693 244694 244695 244696 244697 244698 244699 | prodiguerions prodiguer :V1__t_q_zz:K:1p/* promeuves promouvoir :V3__t____a:Sp:2s/* pyracanthas pyracantha :N:m:p/* pétunant pétuner :V1_i____zz:P/* pêchâmes pêcher :V1_it_q_zz:Is:1p/* quiscales quiscale :N:m:p/* recomplétait recompléter :V1__t_q_zz:Iq:3s/* | | | 244764 244765 244766 244767 244768 244769 244770 244771 244772 244773 244774 244775 244776 244777 244778 | prodiguerions prodiguer :V1__t_q_zz:K:1p/* promeuves promouvoir :V3__t____a:Sp:2s/* pyracanthas pyracantha :N:m:p/* pétunant pétuner :V1_i____zz:P/* pêchâmes pêcher :V1_it_q_zz:Is:1p/* quiscales quiscale :N:m:p/* recomplétait recompléter :V1__t_q_zz:Iq:3s/* redisposées redisposer :V1__t____a:Q:A:f:p/* refendit refendre :V3_it____a:Is:3s/* rencognai rencogner :V1__t_q__a:Is:1s/* rendormies rendormir :V3__t_q__a:Q:A:f:p/* retardâtes retarder :V1_it___zz:Is:2p/* ricocherait ricocher :V1_i____zz:K:3s/* ridez rider :V1__t_q_zz:Ip:2p/* ridez rider :V1__t_q_zz:E:2p/* |
︙ | ︙ | |||
244726 244727 244728 244729 244730 244731 244732 | sérialisant sérialiser :V1__t___zz:P/* terrifiât terrifier :V1__t___zz:Sq:3s/* thermaliste thermaliste :N:A:e:s/* torchettes torchette :N:f:p/* totaliserons totaliser :V1__t___zz:If:1p/* triplais tripler :V1_it___zz:Iq:1s:2s/* vendissions vendre :V3_itnq__a:Sq:1p/* | | | 244797 244798 244799 244800 244801 244802 244803 244804 244805 244806 244807 244808 244809 244810 244811 | sérialisant sérialiser :V1__t___zz:P/* terrifiât terrifier :V1__t___zz:Sq:3s/* thermaliste thermaliste :N:A:e:s/* torchettes torchette :N:f:p/* totaliserons totaliser :V1__t___zz:If:1p/* triplais tripler :V1_it___zz:Iq:1s:2s/* vendissions vendre :V3_itnq__a:Sq:1p/* voilerais voiler :V1_it_q__a:K:1s:2s/* véganisme véganisme :N:m:s/* éclabousseront éclabousser :V1__t_q_zz:If:3p!/* écouvillonne écouvillonner :V1__t___zz:Ip:Sp:1s:3s/* écouvillonne écouvillonner :V1__t___zz:E:2s/* écrabouilla écrabouiller :V1__t___zz:Is:3s/* éduquions éduquer :V1_it_q__a:Iq:Sp:1p/* élargissure élargissure :N:f:s/* |
︙ | ︙ | |||
245473 245474 245475 245476 245477 245478 245479 245480 245481 245482 245483 245484 245485 245486 | échenillée écheniller :V1__t___zz:Q:A:f:s/* éclisse éclisser :V1__t___zz:Ip:Sp:1s:3s/* éclisse éclisser :V1__t___zz:E:2s/* éclisses éclisser :V1__t___zz:Ip:Sp:2s/* écobues écobuer :V1__t___zz:Ip:Sp:2s/* égrèneraient égrener :V1__t_q_zz:K:3p/* éjecterait éjecter :V1__t_q_zz:K:3s/* éperdre éperdre :V3____p_e_:Y/* étanchéifié étanchéifier :V1__t___zz:Q:A:1ŝ:m:s/* étatisent étatiser :V1__t___zz:Ip:Sp:3p/* Naypyidaw Naypyidaw :MP:e:i/* PRAP PRAP :N:f:i/X Saint-Orens-de-Gameville Saint-Orens-de-Gameville :MP:e:i/* abrutiront abrutir :V2_it_q__a:If:3p!/* | > > | 245544 245545 245546 245547 245548 245549 245550 245551 245552 245553 245554 245555 245556 245557 245558 245559 | échenillée écheniller :V1__t___zz:Q:A:f:s/* éclisse éclisser :V1__t___zz:Ip:Sp:1s:3s/* éclisse éclisser :V1__t___zz:E:2s/* éclisses éclisser :V1__t___zz:Ip:Sp:2s/* écobues écobuer :V1__t___zz:Ip:Sp:2s/* égrèneraient égrener :V1__t_q_zz:K:3p/* éjecterait éjecter :V1__t_q_zz:K:3s/* émincé émincer :V1__t___zz:Q:A:1ŝ:m:s/* émincés émincer :V1__t___zz:Q:A:m:p/* éperdre éperdre :V3____p_e_:Y/* étanchéifié étanchéifier :V1__t___zz:Q:A:1ŝ:m:s/* étatisent étatiser :V1__t___zz:Ip:Sp:3p/* Naypyidaw Naypyidaw :MP:e:i/* PRAP PRAP :N:f:i/X Saint-Orens-de-Gameville Saint-Orens-de-Gameville :MP:e:i/* abrutiront abrutir :V2_it_q__a:If:3p!/* |
︙ | ︙ | |||
246185 246186 246187 246188 246189 246190 246191 | torchera torcher :V1__t_q_zz:If:3s/* transverbérée transverbérer :V1__t___zz:Q:A:f:s/* troquerez troquer :V1_it_q__a:If:2p/* trébucherez trébucher :V1_it___zz:If:2p/* tâtonneraient tâtonner :V1_i____zz:K:3p/* ultra-rapide ultra-rapide :A:e:s/C vaporisât vaporiser :V1__t___zz:Sq:3s/* | | | 246258 246259 246260 246261 246262 246263 246264 246265 246266 246267 246268 246269 246270 246271 246272 | torchera torcher :V1__t_q_zz:If:3s/* transverbérée transverbérer :V1__t___zz:Q:A:f:s/* troquerez troquer :V1_it_q__a:If:2p/* trébucherez trébucher :V1_it___zz:If:2p/* tâtonneraient tâtonner :V1_i____zz:K:3p/* ultra-rapide ultra-rapide :A:e:s/C vaporisât vaporiser :V1__t___zz:Sq:3s/* voilerions voiler :V1_it_q__a:K:1p/* vulcanisent vulcaniser :V1__t___zz:Ip:Sp:3p/* zigzaguais zigzaguer :V1_i____zz:Iq:1s:2s/* zézayé zézayer :V1_i____zz:Q:1ŝ:e:i/* ébouillantent ébouillanter :V1__t_q_zz:Ip:Sp:3p/* émerveillerons émerveiller :V1__t_q_zz:If:1p/* AqME AqME :MP:e:i/X Azilis Azilis :M1:f:i/X |
︙ | ︙ | |||
247886 247887 247888 247889 247890 247891 247892 247893 247894 247895 247896 247897 247898 247899 | roman-photo roman-photo :N:m:s/* ronchonnais ronchonner :V1_i____zz:Iq:1s:2s/* roumie roumi :N:f:s/* roupillais roupiller :V1_i____zz:Iq:1s:2s/* ruisselions ruisseler :V1_i____zz:Iq:Sp:1p/* réaffirmeraient réaffirmer :V1__t___zz:K:3p/* réexpédierait réexpédier :V1__t___zz:K:3s/* résilieront résilier :V1__t___zz:If:3p!/* scrutâmes scruter :V1__t___zz:Is:1p/* soupasse souper :V1_i____zz:Sq:1s/* spiritualiserait spiritualiser :V1__t___zz:K:3s/* surenchériront surenchérir :V2_i_____a:If:3p!/* systématises systématiser :V1_it_q_zz:Ip:Sp:2s/* tam-tam tam-tam :N:m:s/M | > | 247959 247960 247961 247962 247963 247964 247965 247966 247967 247968 247969 247970 247971 247972 247973 | roman-photo roman-photo :N:m:s/* ronchonnais ronchonner :V1_i____zz:Iq:1s:2s/* roumie roumi :N:f:s/* roupillais roupiller :V1_i____zz:Iq:1s:2s/* ruisselions ruisseler :V1_i____zz:Iq:Sp:1p/* réaffirmeraient réaffirmer :V1__t___zz:K:3p/* réexpédierait réexpédier :V1__t___zz:K:3s/* réservables réservable :A:e:p/* résilieront résilier :V1__t___zz:If:3p!/* scrutâmes scruter :V1__t___zz:Is:1p/* soupasse souper :V1_i____zz:Sq:1s/* spiritualiserait spiritualiser :V1__t___zz:K:3s/* surenchériront surenchérir :V2_i_____a:If:3p!/* systématises systématiser :V1_it_q_zz:Ip:Sp:2s/* tam-tam tam-tam :N:m:s/M |
︙ | ︙ | |||
252118 252119 252120 252121 252122 252123 252124 252125 252126 252127 252128 252129 252130 252131 | glatis glatir :V2_i_____a:E:2s/* glucuroniques glucuronique :A:e:p/* grangée grangée :N:f:s/* gravitions graviter :V1_i_____a:Iq:Sp:1p/* grimacez grimacer :V1_i____zz:Ip:2p/* grimacez grimacer :V1_i____zz:E:2p/* grimperions grimper :V1_it___zz:K:1p/* grognasses grognasse :N:f:p/* grognasses grogner :V1_it___zz:Sq:2s/* hypothèquera hypothéquer :V1__t_q_zz:If:3s/R héliums hélium :N:m:p/* hémobiologistes hémobiologiste :N:e:p/* incrustais incruster :V1__t_q_zz:Iq:1s:2s/* ingurgitai ingurgiter :V1__t___zz:Is:1s/* | > | 252192 252193 252194 252195 252196 252197 252198 252199 252200 252201 252202 252203 252204 252205 252206 | glatis glatir :V2_i_____a:E:2s/* glucuroniques glucuronique :A:e:p/* grangée grangée :N:f:s/* gravitions graviter :V1_i_____a:Iq:Sp:1p/* grimacez grimacer :V1_i____zz:Ip:2p/* grimacez grimacer :V1_i____zz:E:2p/* grimperions grimper :V1_it___zz:K:1p/* grippette grippette :N:f:s/* grognasses grognasse :N:f:p/* grognasses grogner :V1_it___zz:Sq:2s/* hypothèquera hypothéquer :V1__t_q_zz:If:3s/R héliums hélium :N:m:p/* hémobiologistes hémobiologiste :N:e:p/* incrustais incruster :V1__t_q_zz:Iq:1s:2s/* ingurgitai ingurgiter :V1__t___zz:Is:1s/* |
︙ | ︙ | |||
252420 252421 252422 252423 252424 252425 252426 | uniramées uniramé :A:f:p/* uréthannes uréthanne :N:m:p/C verdoiements verdoiement :N:m:p/* zieutait zieuter :V1__t___zz:Iq:3s/* échantillonnera échantillonner :V1__t___zz:If:3s/* éclairciriez éclaircir :V2_it_q__a:K:2p/* écroûtées écroûter :V1__t___zz:Q:A:f:p/M | | | | 252495 252496 252497 252498 252499 252500 252501 252502 252503 252504 252505 252506 252507 252508 252509 252510 | uniramées uniramé :A:f:p/* uréthannes uréthanne :N:m:p/C verdoiements verdoiement :N:m:p/* zieutait zieuter :V1__t___zz:Iq:3s/* échantillonnera échantillonner :V1__t___zz:If:3s/* éclairciriez éclaircir :V2_it_q__a:K:2p/* écroûtées écroûter :V1__t___zz:Q:A:f:p/M épisse épisser :V1__t____a:Ip:Sp:1s:3s/* épisse épisser :V1__t____a:E:2s/* épouvanterai épouvanter :V1__t_q_zz:If:1s/* étêtait étêter :V1__t___zz:Iq:3s/* Teichmüller Teichmüller :M2:e:i/* accoquiné accoquiner :V1__t_q_zz:Q:A:1ŝ:m:s/* accélèreraient accélérer :V1_it_q_zz:K:3p/R adoucirions adoucir :V2__t_q__a:K:1p/* alourdissez alourdir :V2_it_q__a:Ip:2p/* |
︙ | ︙ | |||
256153 256154 256155 256156 256157 256158 256159 256160 256161 256162 256163 256164 256165 256166 | rembuchés rembucher :V1_it_q_zz:Q:A:m:p/* remuiez remuer :V1_it_q_zz:Iq:Sp:2p/* renflammé renflammer :V1__t___zz:Q:A:1ŝ:m:s/* renseignas renseigner :V1__t_q_zz:Is:2s/* repayant repayer :V1__t___zz:P/* reperçassions repercer :V1__t___zz:Sq:1p/* repincés repincer :V1__t___zz:Q:A:m:p/* repêchai repêcher :V1__t___zz:Is:1s/* retentant retenter :V1__t___zz:P/* rigidifia rigidifier :V1__t___zz:Is:3s/* réamorcera réamorcer :V1__t___zz:If:3s/* récurais récurer :V1__t___zz:Iq:1s:2s/* réengageaient réengager :V1__t_q_zz:Iq:3p/* réfectionne réfectionner :V1_it____a:Ip:Sp:1s:3s/* | > | 256228 256229 256230 256231 256232 256233 256234 256235 256236 256237 256238 256239 256240 256241 256242 | rembuchés rembucher :V1_it_q_zz:Q:A:m:p/* remuiez remuer :V1_it_q_zz:Iq:Sp:2p/* renflammé renflammer :V1__t___zz:Q:A:1ŝ:m:s/* renseignas renseigner :V1__t_q_zz:Is:2s/* repayant repayer :V1__t___zz:P/* reperçassions repercer :V1__t___zz:Sq:1p/* repincés repincer :V1__t___zz:Q:A:m:p/* replays replay :N:m:p/* repêchai repêcher :V1__t___zz:Is:1s/* retentant retenter :V1__t___zz:P/* rigidifia rigidifier :V1__t___zz:Is:3s/* réamorcera réamorcer :V1__t___zz:If:3s/* récurais récurer :V1__t___zz:Iq:1s:2s/* réengageaient réengager :V1__t_q_zz:Iq:3p/* réfectionne réfectionner :V1_it____a:Ip:Sp:1s:3s/* |
︙ | ︙ | |||
257604 257605 257606 257607 257608 257609 257610 257611 257612 257613 257614 257615 257616 257617 | mèche mécher :V1__t___zz:Ip:Sp:1s:3s/* mèche mécher :V1__t___zz:E:2s/* mèches mécher :V1__t___zz:Ip:Sp:2s/* méningo-encéphalite méningo-encéphalite :N:f:s/M mésallierait mésallier :V1____p_e_:K:3s/* métallisait métalliser :V1__t___zz:Iq:3s/* métamorphosas métamorphoser :V1__t_q_zz:Is:2s/* paniquant paniquant :A:m:s/* paîtrez paître :V3_it____a:If:2p/M photosensibilités photosensibilité :N:f:p/* photostéréosynthèse photostéréosynthèse :N:f:s/* pistillés pistillé :A:m:p/* plisseuse plisseur :N:f:s/* porte-croix porte-croix :N:m:i/* | > | 257680 257681 257682 257683 257684 257685 257686 257687 257688 257689 257690 257691 257692 257693 257694 | mèche mécher :V1__t___zz:Ip:Sp:1s:3s/* mèche mécher :V1__t___zz:E:2s/* mèches mécher :V1__t___zz:Ip:Sp:2s/* méningo-encéphalite méningo-encéphalite :N:f:s/M mésallierait mésallier :V1____p_e_:K:3s/* métallisait métalliser :V1__t___zz:Iq:3s/* métamorphosas métamorphoser :V1__t_q_zz:Is:2s/* pallière pallière :N:f:s/* paniquant paniquant :A:m:s/* paîtrez paître :V3_it____a:If:2p/M photosensibilités photosensibilité :N:f:p/* photostéréosynthèse photostéréosynthèse :N:f:s/* pistillés pistillé :A:m:p/* plisseuse plisseur :N:f:s/* porte-croix porte-croix :N:m:i/* |
︙ | ︙ | |||
258471 258472 258473 258474 258475 258476 258477 258478 258479 258480 258481 258482 258483 258484 | ravinai raviner :V1__t___zz:Is:1s/* rebobinées rebobiner :V1__t___zz:Q:A:f:p/* recoiffèrent recoiffer :V1__t_q_zz:Is:3p!/* recommandassiez recommander :V1__t_q_zz:Sq:2p/* recouvrasse recouvrer :V1__t___zz:Sq:1s/* reluquées reluquer :V1__t___zz:Q:A:f:p/* repairé repairer :V1_i____zz:Q:1ŝ:e:i/* ridasse rider :V1__t_q_zz:Sq:1s/* rompissiez rompre :V3_it_q__a:Sq:2p/* réactualiseront réactualiser :V1__t___zz:If:3p!/* réconforterez réconforter :V1__t_q_zz:If:2p/* récrivions récrire :V3_it____a:Iq:Sp:1p/* réorchestrant réorchestrer :V1__t___zz:P/* réorganisiez réorganiser :V1__t_q_zz:Iq:Sp:2p/* | > > | 258548 258549 258550 258551 258552 258553 258554 258555 258556 258557 258558 258559 258560 258561 258562 258563 | ravinai raviner :V1__t___zz:Is:1s/* rebobinées rebobiner :V1__t___zz:Q:A:f:p/* recoiffèrent recoiffer :V1__t_q_zz:Is:3p!/* recommandassiez recommander :V1__t_q_zz:Sq:2p/* recouvrasse recouvrer :V1__t___zz:Sq:1s/* reluquées reluquer :V1__t___zz:Q:A:f:p/* repairé repairer :V1_i____zz:Q:1ŝ:e:i/* retransfère retransférer :V1__t____a:Ip:Sp:1s:3s/* retransfère retransférer :V1__t____a:E:2s/* ridasse rider :V1__t_q_zz:Sq:1s/* rompissiez rompre :V3_it_q__a:Sq:2p/* réactualiseront réactualiser :V1__t___zz:If:3p!/* réconforterez réconforter :V1__t_q_zz:If:2p/* récrivions récrire :V3_it____a:Iq:Sp:1p/* réorchestrant réorchestrer :V1__t___zz:P/* réorganisiez réorganiser :V1__t_q_zz:Iq:Sp:2p/* |
︙ | ︙ | |||
261638 261639 261640 261641 261642 261643 261644 261645 261646 261647 261648 261649 261650 261651 | recousons recoudre :V3_it_q__a:E:1p/* reformulions reformuler :V1__t___zz:Iq:Sp:1p/* rejugeait rejuger :V1__t___zz:Iq:3s/* rejugeant rejuger :V1__t___zz:P/* relayerons relayer :V1_it_q_zz:If:1p/* requestionnés requestionner :V1__t_q_zz:Q:A:m:p/* retendions retendre :V3__t____a:Iq:Sp:1p/* revascularise revasculariser :V1__t___zz:Ip:Sp:1s:3s/* revascularise revasculariser :V1__t___zz:E:2s/* rosons roser :V1__t___zz:Ip:1p/* rosons roser :V1__t___zz:E:1p/* rossons rosser :V1__t___zz:Ip:1p/* rossons rosser :V1__t___zz:E:1p/* râpèrent râper :V1__t___zz:Is:3p!/* | > | 261717 261718 261719 261720 261721 261722 261723 261724 261725 261726 261727 261728 261729 261730 261731 | recousons recoudre :V3_it_q__a:E:1p/* reformulions reformuler :V1__t___zz:Iq:Sp:1p/* rejugeait rejuger :V1__t___zz:Iq:3s/* rejugeant rejuger :V1__t___zz:P/* relayerons relayer :V1_it_q_zz:If:1p/* requestionnés requestionner :V1__t_q_zz:Q:A:m:p/* retendions retendre :V3__t____a:Iq:Sp:1p/* retransférant retransférer :V1__t____a:P/* revascularise revasculariser :V1__t___zz:Ip:Sp:1s:3s/* revascularise revasculariser :V1__t___zz:E:2s/* rosons roser :V1__t___zz:Ip:1p/* rosons roser :V1__t___zz:E:1p/* rossons rosser :V1__t___zz:Ip:1p/* rossons rosser :V1__t___zz:E:1p/* râpèrent râper :V1__t___zz:Is:3p!/* |
︙ | ︙ | |||
263109 263110 263111 263112 263113 263114 263115 | torchez torcher :V1__t_q_zz:E:2p/* transvases transvaser :V1__t___zz:Ip:Sp:2s/* tropicalise tropicaliser :V1__t___zz:Ip:Sp:1s:3s/* tropicalise tropicaliser :V1__t___zz:E:2s/* ultra-sons ultra-son :N:m:p/C uréotéliques uréotélique :A:e:p/* vaporisai vaporiser :V1__t___zz:Is:1s/* | | | 263189 263190 263191 263192 263193 263194 263195 263196 263197 263198 263199 263200 263201 263202 263203 | torchez torcher :V1__t_q_zz:E:2p/* transvases transvaser :V1__t___zz:Ip:Sp:2s/* tropicalise tropicaliser :V1__t___zz:Ip:Sp:1s:3s/* tropicalise tropicaliser :V1__t___zz:E:2s/* ultra-sons ultra-son :N:m:p/C uréotéliques uréotélique :A:e:p/* vaporisai vaporiser :V1__t___zz:Is:1s/* voilâtes voiler :V1_it_q__a:Is:2p/* ébattons ébattre :V3____p_e_:Ip:1p/* ébattons ébattre :V3____p_e_:E:1p/* échoppe échopper :V1__t___zz:Ip:Sp:1s:3s/* échoppe échopper :V1__t___zz:E:2s/* échoppes échopper :V1__t___zz:Ip:Sp:2s/* écrivailleuse écrivailleur :N:f:s/* élucidez élucider :V1__t___zz:Ip:2p/* |
︙ | ︙ | |||
266321 266322 266323 266324 266325 266326 266327 | valisent valiser :V1_it___zz:Ip:Sp:3p/* verglace verglacer :V1_i___mzz:Ip:Sp:3s/* verrouillât verrouiller :V1__t_q_zz:Sq:3s/* violeuses violeur :N:f:p/* volatilises volatiliser :V1__t_q_zz:Ip:Sp:2s/* webtélé webtélé :N:f:s/* écopaysagères écopaysager :A:f:p/* | | | 266401 266402 266403 266404 266405 266406 266407 266408 266409 266410 266411 266412 266413 266414 266415 | valisent valiser :V1_it___zz:Ip:Sp:3p/* verglace verglacer :V1_i___mzz:Ip:Sp:3s/* verrouillât verrouiller :V1__t_q_zz:Sq:3s/* violeuses violeur :N:f:p/* volatilises volatiliser :V1__t_q_zz:Ip:Sp:2s/* webtélé webtélé :N:f:s/* écopaysagères écopaysager :A:f:p/* épiçaient épicer :V1_it____a:Iq:3p/* éprendraient éprendre :V3____p_e_:K:3p/* étalerais étaler :V1_it_q_zz:K:1s:2s/* étanchâmes étancher :V1__t___zz:Is:1p/* étiquetas étiqueter :V1__t___zz:Is:2s/* étoupe étouper :V1__t___zz:Ip:Sp:1s:3s/* étoupe étouper :V1__t___zz:E:2s/* étoupes étouper :V1__t___zz:Ip:Sp:2s/* |
︙ | ︙ | |||
270526 270527 270528 270529 270530 270531 270532 | électrocutait électrocuter :V1__t_q_zz:Iq:3s/* élucubraient élucubrer :V1__t___zz:Iq:3p/* émincent émincer :V1__t___zz:Ip:Sp:3p/* éparpillassent éparpiller :V1__t_q_zz:Sq:3p/* épiiez épier :V1_it_q_zz:Iq:Sp:2p/* épiloguez épiloguer :V1__tn__zz:Ip:2p/* épiloguez épiloguer :V1__tn__zz:E:2p/* | | | 270606 270607 270608 270609 270610 270611 270612 270613 270614 270615 270616 270617 270618 270619 270620 | électrocutait électrocuter :V1__t_q_zz:Iq:3s/* élucubraient élucubrer :V1__t___zz:Iq:3p/* émincent émincer :V1__t___zz:Ip:Sp:3p/* éparpillassent éparpiller :V1__t_q_zz:Sq:3p/* épiiez épier :V1_it_q_zz:Iq:Sp:2p/* épiloguez épiloguer :V1__tn__zz:Ip:2p/* épiloguez épiloguer :V1__tn__zz:E:2p/* épissant épisser :V1__t____a:P/* équilibreur équilibreur :A:m:s/* équilibreurs équilibreur :A:m:p/* érayer érayer :V1__t___zz:Y/* étrangliez étrangler :V1__t_q_zz:Iq:Sp:2p/* étrésillonnaient étrésillonner :V1__t___zz:Iq:3p/* évidèrent évider :V1__t___zz:Is:3p!/* GreLibre GreLibre :MP:m:i/X |
︙ | ︙ | |||
273086 273087 273088 273089 273090 273091 273092 273093 273094 273095 273096 273097 273098 273099 | gambille gambiller :V1_i____zz:Ip:Sp:1s:3s/* gambille gambiller :V1_i____zz:E:2s/* gambilles gambiller :V1_i____zz:Ip:Sp:2s/* ginguets ginguet :A:m:p/* ginguets ginguet :N:m:p/* guyaniennes guyanien :N:A:f:p/* géoparc géoparc :N:m:s/* intercité intercité :N:e:s/* inukshuk inukshuk :N:m:s/* isopérimétrie isopérimétrie :N:f:s/* jetski jetski :N:m:s/R maigrirons maigrir :V2_it____a:If:1p/* mezzo-soprano mezzo-soprano :N:e:s/M mezzo-sopranos mezzo-soprano :N:e:p/M | > | 273166 273167 273168 273169 273170 273171 273172 273173 273174 273175 273176 273177 273178 273179 273180 | gambille gambiller :V1_i____zz:Ip:Sp:1s:3s/* gambille gambiller :V1_i____zz:E:2s/* gambilles gambiller :V1_i____zz:Ip:Sp:2s/* ginguets ginguet :A:m:p/* ginguets ginguet :N:m:p/* guyaniennes guyanien :N:A:f:p/* géoparc géoparc :N:m:s/* géopositionnement géopositionnement :N:m:s/* intercité intercité :N:e:s/* inukshuk inukshuk :N:m:s/* isopérimétrie isopérimétrie :N:f:s/* jetski jetski :N:m:s/R maigrirons maigrir :V2_it____a:If:1p/* mezzo-soprano mezzo-soprano :N:e:s/M mezzo-sopranos mezzo-soprano :N:e:p/M |
︙ | ︙ | |||
273654 273655 273656 273657 273658 273659 273660 | tétonnières tétonnière :N:f:p/* tétraptère tétraptère :A:e:s/* tétraptère tétraptère :N:m:s/* ultra-marins ultra-marin :N:A:m:p/C ultraportable ultraportable :A:e:s/* virerais virer :V1_itn__zz:K:1s:2s/* électro-optiques électro-optique :A:e:p/M | | | | 273735 273736 273737 273738 273739 273740 273741 273742 273743 273744 273745 273746 273747 273748 273749 273750 | tétonnières tétonnière :N:f:p/* tétraptère tétraptère :A:e:s/* tétraptère tétraptère :N:m:s/* ultra-marins ultra-marin :N:A:m:p/C ultraportable ultraportable :A:e:s/* virerais virer :V1_itn__zz:K:1s:2s/* électro-optiques électro-optique :A:e:p/M épicez épicer :V1_it____a:Ip:2p/* épicez épicer :V1_it____a:E:2p/* étrillez étriller :V1__t___zz:Ip:2p/* étrillez étriller :V1__t___zz:E:2p/* PBq Bq :N:m:i;S/* IRFM IRFM :N:f:i/X MSP430 MSP430 :MP:m:i/X abat-foin abat-foin :N:m:i/M agro-environnementale agro-environnemental :A:f:s/M |
︙ | ︙ | |||
273838 273839 273840 273841 273842 273843 273844 273845 273846 273847 273848 273849 273850 273851 | incarcérons incarcérer :V1__t___zz:E:1p/* interagis interagir :V2_i_____a:Ip:Is:1s:2s/* interagis interagir :V2_i_____a:E:2s/* interagis interagir :V2_i_____a:Q:A:m:p/* lacryma-christi lacryma-christi :N:m:i/A libanise libaniser :V1____p_e_:Ip:Sp:1s:3s/* libanise libaniser :V1____p_e_:E:2s/* loche locher :V1_it___zz:Ip:Sp:1s:3s/* loche locher :V1_it___zz:E:2s/* loches locher :V1_it___zz:Ip:Sp:2s/* ludo-éducatifs ludo-éducatif :A:m:p/M lâcher-prise lâcher-prise :N:m:s/* madérise madériser :V1__t_q_zz:Ip:Sp:1s:3s/* madérise madériser :V1__t_q_zz:E:2s/* | > | 273919 273920 273921 273922 273923 273924 273925 273926 273927 273928 273929 273930 273931 273932 273933 | incarcérons incarcérer :V1__t___zz:E:1p/* interagis interagir :V2_i_____a:Ip:Is:1s:2s/* interagis interagir :V2_i_____a:E:2s/* interagis interagir :V2_i_____a:Q:A:m:p/* lacryma-christi lacryma-christi :N:m:i/A libanise libaniser :V1____p_e_:Ip:Sp:1s:3s/* libanise libaniser :V1____p_e_:E:2s/* linuxiens linuxien :N:m:p/* loche locher :V1_it___zz:Ip:Sp:1s:3s/* loche locher :V1_it___zz:E:2s/* loches locher :V1_it___zz:Ip:Sp:2s/* ludo-éducatifs ludo-éducatif :A:m:p/M lâcher-prise lâcher-prise :N:m:s/* madérise madériser :V1__t_q_zz:Ip:Sp:1s:3s/* madérise madériser :V1__t_q_zz:E:2s/* |
︙ | ︙ | |||
274300 274301 274302 274303 274304 274305 274306 274307 274308 274309 274310 274311 274312 274313 | israélo-palestiniens israélo-palestinien :N:A:m:p/* jappez japper :V1_i____zz:Ip:2p/* jappez japper :V1_i____zz:E:2p/* jonchons joncher :V1__t___zz:Ip:1p/* jonchons joncher :V1__t___zz:E:1p/* kibioctets kibioctet :N:m:p/* lave-auto lave-auto :N:m:i/M microplastique microplastique :N:m:s/* mignarde mignarder :V1__t___zz:Ip:Sp:1s:3s/* mignarde mignarder :V1__t___zz:E:2s/* militaro-industrielle militaro-industriel :A:f:s/* mésalliez mésallier :V1____p_e_:Ip:2p/* mésalliez mésallier :V1____p_e_:E:2p/* métrons métrer :V1__t____a:Ip:1p/* | > | 274382 274383 274384 274385 274386 274387 274388 274389 274390 274391 274392 274393 274394 274395 274396 | israélo-palestiniens israélo-palestinien :N:A:m:p/* jappez japper :V1_i____zz:Ip:2p/* jappez japper :V1_i____zz:E:2p/* jonchons joncher :V1__t___zz:Ip:1p/* jonchons joncher :V1__t___zz:E:1p/* kibioctets kibioctet :N:m:p/* lave-auto lave-auto :N:m:i/M linuxien linuxien :N:m:s/* microplastique microplastique :N:m:s/* mignarde mignarder :V1__t___zz:Ip:Sp:1s:3s/* mignarde mignarder :V1__t___zz:E:2s/* militaro-industrielle militaro-industriel :A:f:s/* mésalliez mésallier :V1____p_e_:Ip:2p/* mésalliez mésallier :V1____p_e_:E:2p/* métrons métrer :V1__t____a:Ip:1p/* |
︙ | ︙ | |||
278031 278032 278033 278034 278035 278036 278037 278038 278039 278040 278041 278042 278043 278044 | vermille vermiller :V1_i____zz:Ip:Sp:1s:3s/* vermille vermiller :V1_i____zz:E:2s/* vermillons vermiller :V1_i____zz:Ip:1p/* vermillons vermiller :V1_i____zz:E:1p/* vers-libriste vers-libriste :N:A:e:s/* vide-bouteille vide-bouteille :N:m:s/* vide-bouteilles vide-bouteille :N:m:p/* würmiennes würmien :A:f:p/* xyloglossie xyloglossie :N:f:s/X zadiste zadiste :N:A:e:s/* zancle zancle :N:m:s/* zébras zébrer :V1__t___zz:Is:2s/* ångströms ångström :N:m:p/C échelle écheler :V1__t_q_zz:Ip:Sp:1s:3s/M | > | 278114 278115 278116 278117 278118 278119 278120 278121 278122 278123 278124 278125 278126 278127 278128 | vermille vermiller :V1_i____zz:Ip:Sp:1s:3s/* vermille vermiller :V1_i____zz:E:2s/* vermillons vermiller :V1_i____zz:Ip:1p/* vermillons vermiller :V1_i____zz:E:1p/* vers-libriste vers-libriste :N:A:e:s/* vide-bouteille vide-bouteille :N:m:s/* vide-bouteilles vide-bouteille :N:m:p/* windowsiens windowsien :N:m:p/* würmiennes würmien :A:f:p/* xyloglossie xyloglossie :N:f:s/X zadiste zadiste :N:A:e:s/* zancle zancle :N:m:s/* zébras zébrer :V1__t___zz:Is:2s/* ångströms ångström :N:m:p/C échelle écheler :V1__t_q_zz:Ip:Sp:1s:3s/M |
︙ | ︙ | |||
280267 280268 280269 280270 280271 280272 280273 280274 280275 280276 280277 280278 280279 280280 | bourdent bourder :V1_i____zz:Ip:Sp:3p/* bourre-pipe bourre-pipe :N:m:s/* bourrerons bourrer :V1_it_q_zz:If:1p/* boësse boësse :N:f:s/* brachio-céphaliques brachio-céphalique :A:e:p/C brasillé brasiller :V1_i____zz:Q:1ŝ:e:i/* brelandières brelandier :N:f:p/* brévétoxines brévétoxine :N:f:p/* bucco-génital bucco-génital :A:m:s/M bucco-génitaux bucco-génital :A:m:p/M cabotines cabotiner :V1_i____zz:Ip:Sp:2s/* cachetâmes cacheter :V1__t___zz:Is:1p/* cadencements cadencement :N:m:p/* cagnarder cagnarder :V1_i____zz:Y/* | > | 280351 280352 280353 280354 280355 280356 280357 280358 280359 280360 280361 280362 280363 280364 280365 | bourdent bourder :V1_i____zz:Ip:Sp:3p/* bourre-pipe bourre-pipe :N:m:s/* bourrerons bourrer :V1_it_q_zz:If:1p/* boësse boësse :N:f:s/* brachio-céphaliques brachio-céphalique :A:e:p/C brasillé brasiller :V1_i____zz:Q:1ŝ:e:i/* brelandières brelandier :N:f:p/* brumiser brumiser :V1_it____a:Y/* brévétoxines brévétoxine :N:f:p/* bucco-génital bucco-génital :A:m:s/M bucco-génitaux bucco-génital :A:m:p/M cabotines cabotiner :V1_i____zz:Ip:Sp:2s/* cachetâmes cacheter :V1__t___zz:Is:1p/* cadencements cadencement :N:m:p/* cagnarder cagnarder :V1_i____zz:Y/* |
︙ | ︙ | |||
280643 280644 280645 280646 280647 280648 280649 280650 280651 280652 280653 280654 280655 280656 | lance-fusée lance-fusée :N:m:s/R lance-fusées lance-fusée :N:m:p/R latifolié latifolié :A:m:s/* lettreuse lettreur :N:f:s/* libres-services libres-services :N:m:p/* lichent licher :V1_it___zz:Ip:Sp:3p/* linsangs linsang :N:m:p/* listerais lister :V1__t___zz:K:1s:2s/* mégalitres litre :N:m:p/* lobera lober :V1__t___zz:If:3s/* lock-outés lock-outer :V1__t___zz:Q:A:m:p/M logico-déductif logico-déductif :A:m:s/* macadamisait macadamiser :V1__t___zz:Iq:3s/* macro-instructions macro-instruction :N:f:p/* | > | 280728 280729 280730 280731 280732 280733 280734 280735 280736 280737 280738 280739 280740 280741 280742 | lance-fusée lance-fusée :N:m:s/R lance-fusées lance-fusée :N:m:p/R latifolié latifolié :A:m:s/* lettreuse lettreur :N:f:s/* libres-services libres-services :N:m:p/* lichent licher :V1_it___zz:Ip:Sp:3p/* linsangs linsang :N:m:p/* linuxienne linuxien :N:f:s/* listerais lister :V1__t___zz:K:1s:2s/* mégalitres litre :N:m:p/* lobera lober :V1__t___zz:If:3s/* lock-outés lock-outer :V1__t___zz:Q:A:m:p/M logico-déductif logico-déductif :A:m:s/* macadamisait macadamiser :V1__t___zz:Iq:3s/* macro-instructions macro-instruction :N:f:p/* |
︙ | ︙ | |||
284796 284797 284798 284799 284800 284801 284802 284803 284804 284805 284806 284807 284808 284809 | resalué resaluer :V1__t___zz:Q:A:1ŝ:m:s/* ressaignent ressaigner :V1_it___zz:Ip:Sp:3p/* restaureriez restaurer :V1__t_q_zz:K:2p/* restringent restringent :A:m:s/* retenterais retenter :V1__t___zz:K:1s:2s/* retentes retenter :V1__t___zz:Ip:Sp:2s/* retoquent retoquer :V1__t____a:Ip:Sp:3p/* retroussât retrousser :V1__t_q_zz:Sq:3s/* retubé retuber :V1__t___zz:Q:A:1ŝ:m:s/* revalues revaloir :V3__t____a:Q:A:f:p/* reverdiras reverdir :V2_it____a:If:2s/* revernissait revernir :V2_it____a:Iq:3s/* revomirai revomir :V2_it____a:If:1s/* revotions revoter :V1_it___zz:Iq:Sp:1p/* | > | 284882 284883 284884 284885 284886 284887 284888 284889 284890 284891 284892 284893 284894 284895 284896 | resalué resaluer :V1__t___zz:Q:A:1ŝ:m:s/* ressaignent ressaigner :V1_it___zz:Ip:Sp:3p/* restaureriez restaurer :V1__t_q_zz:K:2p/* restringent restringent :A:m:s/* retenterais retenter :V1__t___zz:K:1s:2s/* retentes retenter :V1__t___zz:Ip:Sp:2s/* retoquent retoquer :V1__t____a:Ip:Sp:3p/* retransférait retransférer :V1__t____a:Iq:3s/* retroussât retrousser :V1__t_q_zz:Sq:3s/* retubé retuber :V1__t___zz:Q:A:1ŝ:m:s/* revalues revaloir :V3__t____a:Q:A:f:p/* reverdiras reverdir :V2_it____a:If:2s/* revernissait revernir :V2_it____a:Iq:3s/* revomirai revomir :V2_it____a:If:1s/* revotions revoter :V1_it___zz:Iq:Sp:1p/* |
︙ | ︙ | |||
284878 284879 284880 284881 284882 284883 284884 284885 284886 284887 284888 284889 284890 284891 | réinterprètera réinterpréter :V1__t___zz:If:3s/R réinviteraient réinviter :V1__t___zz:K:3p/* répercuterai répercuter :V1__t_q_zz:If:1s/* réprimanderaient réprimander :V1__t___zz:K:3p/* répudias répudier :V1__t___zz:Is:2s/* répétasses répéter :V1_it_q_zz:Sq:2s/* réseautent réseauter :V1_i____zz:Ip:Sp:3p/* résidentialisations résidentialisation :N:f:p/* résouts résoudre :V3__t_q__a:Q:A:m:p/R réto-romanes réto-roman :N:A:f:p/R réto-romans réto-roman :N:A:m:p/R rétropédale rétropédaler :V1_i_____a:Ip:Sp:1s:3s/* rétropédale rétropédaler :V1_i_____a:E:2s/* révèleras révéler :V1__tnq__a:If:2s/R | > | 284965 284966 284967 284968 284969 284970 284971 284972 284973 284974 284975 284976 284977 284978 284979 | réinterprètera réinterpréter :V1__t___zz:If:3s/R réinviteraient réinviter :V1__t___zz:K:3p/* répercuterai répercuter :V1__t_q_zz:If:1s/* réprimanderaient réprimander :V1__t___zz:K:3p/* répudias répudier :V1__t___zz:Is:2s/* répétasses répéter :V1_it_q_zz:Sq:2s/* réseautent réseauter :V1_i____zz:Ip:Sp:3p/* réservable réservable :A:e:s/* résidentialisations résidentialisation :N:f:p/* résouts résoudre :V3__t_q__a:Q:A:m:p/R réto-romanes réto-roman :N:A:f:p/R réto-romans réto-roman :N:A:m:p/R rétropédale rétropédaler :V1_i_____a:Ip:Sp:1s:3s/* rétropédale rétropédaler :V1_i_____a:E:2s/* révèleras révéler :V1__tnq__a:If:2s/R |
︙ | ︙ | |||
285211 285212 285213 285214 285215 285216 285217 285218 285219 285220 285221 285222 285223 285224 | védikas védika :N:f:p/R vérifiabilités vérifiabilité :N:f:p/* washingtonias washingtonia :N:m:p/* waterzoï waterzoï :N:m:s/* nanowatt watt :N:m:s/* webographies webographie :N:f:p/* weyrs weyr :N:m:p/X xéranthème xéranthème :N:m:s/* yodisées yodiser :V1__t___zz:Q:A:f:p/* yohimbehe yohimbehe :N:m:s/* zappaient zapper :V1_it___zz:Iq:3p/* zingaros zingaro :N:m:p/* zombifiées zombifier :V1_it_q__a:Q:A:f:p/* zouka zouker :V1_i____zz:Is:3s/* | > | 285299 285300 285301 285302 285303 285304 285305 285306 285307 285308 285309 285310 285311 285312 285313 | védikas védika :N:f:p/R vérifiabilités vérifiabilité :N:f:p/* washingtonias washingtonia :N:m:p/* waterzoï waterzoï :N:m:s/* nanowatt watt :N:m:s/* webographies webographie :N:f:p/* weyrs weyr :N:m:p/X windowsien windowsien :N:m:s/* xéranthème xéranthème :N:m:s/* yodisées yodiser :V1__t___zz:Q:A:f:p/* yohimbehe yohimbehe :N:m:s/* zappaient zapper :V1_it___zz:Iq:3p/* zingaros zingaro :N:m:p/* zombifiées zombifier :V1_it_q__a:Q:A:f:p/* zouka zouker :V1_i____zz:Is:3s/* |
︙ | ︙ | |||
286142 286143 286144 286145 286146 286147 286148 286149 286150 286151 286152 286153 286154 286155 | bruleraient bruler :V1_it_q_zz:K:3p/R brulerais bruler :V1_it_q_zz:K:1s:2s/R brulerait bruler :V1_it_q_zz:K:3s/R brulâmes bruler :V1_it_q_zz:Is:1p/R brulerie brulerie :N:f:s/R brulon brulon :N:m:s/R brumassait brumasser :V1_i___mzz:Iq:3s/* brunît brunir :V2_it____a:Sq:3s/* brusqueras brusquer :V1__t___zz:If:2s/* brutaliseraient brutaliser :V1__t___zz:K:3p/* brèle bréler :V1__t___zz:Ip:Sp:1s:3s/R brèle bréler :V1__t___zz:E:2s/R brèles bréler :V1__t___zz:Ip:Sp:2s/R brêlaient brêler :V1__t___zz:Iq:3p/M | > > | 286231 286232 286233 286234 286235 286236 286237 286238 286239 286240 286241 286242 286243 286244 286245 286246 | bruleraient bruler :V1_it_q_zz:K:3p/R brulerais bruler :V1_it_q_zz:K:1s:2s/R brulerait bruler :V1_it_q_zz:K:3s/R brulâmes bruler :V1_it_q_zz:Is:1p/R brulerie brulerie :N:f:s/R brulon brulon :N:m:s/R brumassait brumasser :V1_i___mzz:Iq:3s/* brumisée brumiser :V1_it____a:Q:A:f:s/* brumisés brumiser :V1_it____a:Q:A:m:p/* brunît brunir :V2_it____a:Sq:3s/* brusqueras brusquer :V1__t___zz:If:2s/* brutaliseraient brutaliser :V1__t___zz:K:3p/* brèle bréler :V1__t___zz:Ip:Sp:1s:3s/R brèle bréler :V1__t___zz:E:2s/R brèles bréler :V1__t___zz:Ip:Sp:2s/R brêlaient brêler :V1__t___zz:Iq:3p/M |
︙ | ︙ | |||
286939 286940 286941 286942 286943 286944 286945 286946 286947 286948 286949 286950 286951 286952 | débouillira débouillir :V3__t____a:If:3s/* déboulez débouler :V1_it___zz:Ip:2p/* déboulez débouler :V1_it___zz:E:2p/* déboulions débouler :V1_it___zz:Iq:Sp:1p/* débouquera débouquer :V1_i____zz:If:3s/* débraillements débraillement :N:m:p/* débriefent débriefer :V1__t___zz:Ip:Sp:3p/* débusquerez débusquer :V1__t___zz:If:2p/* débâclements débâclement :N:m:p/* débâillonnèrent débâillonner :V1__t___zz:Is:3p!/* débâtât débâter :V1__t___zz:Sq:3s/* débâtiront débâtir :V2_it____a:If:3p!/* décadenassa décadenasser :V1__t___zz:Is:3s/* décadenassées décadenasser :V1__t___zz:Q:A:f:p/* | > | 287030 287031 287032 287033 287034 287035 287036 287037 287038 287039 287040 287041 287042 287043 287044 | débouillira débouillir :V3__t____a:If:3s/* déboulez débouler :V1_it___zz:Ip:2p/* déboulez débouler :V1_it___zz:E:2p/* déboulions débouler :V1_it___zz:Iq:Sp:1p/* débouquera débouquer :V1_i____zz:If:3s/* débraillements débraillement :N:m:p/* débriefent débriefer :V1__t___zz:Ip:Sp:3p/* débugueur débugueur :N:m:s/* débusquerez débusquer :V1__t___zz:If:2p/* débâclements débâclement :N:m:p/* débâillonnèrent débâillonner :V1__t___zz:Is:3p!/* débâtât débâter :V1__t___zz:Sq:3s/* débâtiront débâtir :V2_it____a:If:3p!/* décadenassa décadenasser :V1__t___zz:Is:3s/* décadenassées décadenasser :V1__t___zz:Q:A:f:p/* |
︙ | ︙ | |||
289450 289451 289452 289453 289454 289455 289456 289457 289458 289459 289460 289461 289462 289463 | protège-cahier protège-cahier :N:m:i/C protège-cahier protège-cahier :N:m:s/* protège-slips protège-slip :N:m:p/* proveniez provenir :V3_i____e_:Iq:Sp:2p/* proviseures proviseur :N:f:p/* proxénétismes proxénétisme :N:m:p/* prudhommaux prudhommal :A:m:p/* préactionneur préactionneur :N:m:s/* préactionneurs préactionneur :N:m:p/* préaffranchis préaffranchir :V2__t____a:Ip:Is:1s:2s/* préaffranchis préaffranchir :V2__t____a:E:2s/* préaffranchis préaffranchir :V2__t____a:Q:A:m:p/* précariserait précariser :V1__t_q_zz:K:3s/* précommande précommander :V1_it_q__a:Ip:Sp:1s:3s/* | > | 289542 289543 289544 289545 289546 289547 289548 289549 289550 289551 289552 289553 289554 289555 289556 | protège-cahier protège-cahier :N:m:i/C protège-cahier protège-cahier :N:m:s/* protège-slips protège-slip :N:m:p/* proveniez provenir :V3_i____e_:Iq:Sp:2p/* proviseures proviseur :N:f:p/* proxénétismes proxénétisme :N:m:p/* prudhommaux prudhommal :A:m:p/* pruniculture pruniculture :N:f:s/* préactionneur préactionneur :N:m:s/* préactionneurs préactionneur :N:m:p/* préaffranchis préaffranchir :V2__t____a:Ip:Is:1s:2s/* préaffranchis préaffranchir :V2__t____a:E:2s/* préaffranchis préaffranchir :V2__t____a:Q:A:m:p/* précariserait précariser :V1__t_q_zz:K:3s/* précommande précommander :V1_it_q__a:Ip:Sp:1s:3s/* |
︙ | ︙ | |||
289774 289775 289776 289777 289778 289779 289780 | recycleuses recycleur :N:A:f:p/* recâblages recâblage :N:m:p/* recâblée recâbler :V1__t___zz:Q:A:f:s/* recâblées recâbler :V1__t___zz:Q:A:f:p/* redemandasse redemander :V1__t___zz:Sq:1s/* redimensionna redimensionner :V1__t___zz:Is:3s/* redimensionnes redimensionner :V1__t___zz:Ip:Sp:2s/* | | | | 289867 289868 289869 289870 289871 289872 289873 289874 289875 289876 289877 289878 289879 289880 289881 289882 | recycleuses recycleur :N:A:f:p/* recâblages recâblage :N:m:p/* recâblée recâbler :V1__t___zz:Q:A:f:s/* recâblées recâbler :V1__t___zz:Q:A:f:p/* redemandasse redemander :V1__t___zz:Sq:1s/* redimensionna redimensionner :V1__t___zz:Is:3s/* redimensionnes redimensionner :V1__t___zz:Ip:Sp:2s/* redisposa redisposer :V1__t____a:Is:3s/* redisposée redisposer :V1__t____a:Q:A:f:s/* redivinisa rediviniser :V1_it_q__a:Is:3s/* redivisa rediviser :V1__t_q__a:Is:3s/* redivisaient rediviser :V1__t_q__a:Iq:3p/* redivisèrent rediviser :V1__t_q__a:Is:3p!/* redonderais redonder :V1_i____zz:K:1s:2s/* redonnas redonner :V1_it_q_zz:Is:2s/* redonnasse redonner :V1_it_q_zz:Sq:1s/* |
︙ | ︙ | |||
289987 289988 289989 289990 289991 289992 289993 289994 289995 289996 289997 289998 289999 290000 | retoquera retoquer :V1__t____a:If:3s/* retordaient retordre :V3__t____a:Iq:3p/* retordrais retordre :V3__t____a:K:1s:2s/* retouchâmes retoucher :V1__tn__zz:Is:1p/* retraduisis retraduire :V3_it____a:Is:1s:2s/* retrairez retraire :V3_it____a:If:2p/* retrairons retraire :V3_it____a:If:1p/* retravailliez retravailler :V1_itn__zz:Iq:Sp:2p/* retremperais retremper :V1__t_q_zz:K:1s:2s/* retrousserai retrousser :V1__t_q_zz:If:1s/* retrousseras retrousser :V1__t_q_zz:If:2s/* retrousserons retrousser :V1__t_q_zz:If:1p/* retroussiez retrousser :V1__t_q_zz:Iq:Sp:2p/* retroussions retrousser :V1__t_q_zz:Iq:Sp:1p/* | > | 290080 290081 290082 290083 290084 290085 290086 290087 290088 290089 290090 290091 290092 290093 290094 | retoquera retoquer :V1__t____a:If:3s/* retordaient retordre :V3__t____a:Iq:3p/* retordrais retordre :V3__t____a:K:1s:2s/* retouchâmes retoucher :V1__tn__zz:Is:1p/* retraduisis retraduire :V3_it____a:Is:1s:2s/* retrairez retraire :V3_it____a:If:2p/* retrairons retraire :V3_it____a:If:1p/* retransféra retransférer :V1__t____a:Is:3s/* retravailliez retravailler :V1_itn__zz:Iq:Sp:2p/* retremperais retremper :V1__t_q_zz:K:1s:2s/* retrousserai retrousser :V1__t_q_zz:If:1s/* retrousseras retrousser :V1__t_q_zz:If:2s/* retrousserons retrousser :V1__t_q_zz:If:1p/* retroussiez retrousser :V1__t_q_zz:Iq:Sp:2p/* retroussions retrousser :V1__t_q_zz:Iq:Sp:1p/* |
︙ | ︙ | |||
290641 290642 290643 290644 290645 290646 290647 290648 290649 290650 290651 290652 290653 290654 | taupons tauper :V1__t___zz:E:1p/* tautoméries tautomérie :N:f:p/* tavaïole tavaïole :N:f:s/R tavaïoles tavaïole :N:f:p/R tavelaient taveler :V1__t_q_zz:Iq:3p/* taxiste taxiste :N:e:s/X tchipent tchiper :V1_it____a:Ip:Sp:3p/* technopathe technopathe :N:e:s/* technoprophètes technoprophète :N:e:p/* teen-ager teen-ager :N:e:s/M teigniez teindre :V3_it_q__a:Iq:Sp:2p/* teindras teindre :V3_it_q__a:If:2s/* tembotrione tembotrione :N:f:s/X tenaillai tenailler :V1__t___zz:Is:1s/* | > | 290735 290736 290737 290738 290739 290740 290741 290742 290743 290744 290745 290746 290747 290748 290749 | taupons tauper :V1__t___zz:E:1p/* tautoméries tautomérie :N:f:p/* tavaïole tavaïole :N:f:s/R tavaïoles tavaïole :N:f:p/R tavelaient taveler :V1__t_q_zz:Iq:3p/* taxiste taxiste :N:e:s/X tchipent tchiper :V1_it____a:Ip:Sp:3p/* technocapitalisme technocapitalisme :N:m:s/* technopathe technopathe :N:e:s/* technoprophètes technoprophète :N:e:p/* teen-ager teen-ager :N:e:s/M teigniez teindre :V3_it_q__a:Iq:Sp:2p/* teindras teindre :V3_it_q__a:If:2s/* tembotrione tembotrione :N:f:s/X tenaillai tenailler :V1__t___zz:Is:1s/* |
︙ | ︙ | |||
290994 290995 290996 290997 290998 290999 291000 | visualisèrent visualiser :V1__t___zz:Is:3p!/* vitrèrent vitrer :V1__t___zz:Is:3p!/* vitrificative vitrificatif :A:f:s/* vitrifierai vitrifier :V1__t___zz:If:1s/* vitrifieront vitrifier :V1__t___zz:If:3p!/* vocalisatrice vocalisateur :N:f:s/* voguas voguer :V1_i____zz:Is:2s/* | | | | 291089 291090 291091 291092 291093 291094 291095 291096 291097 291098 291099 291100 291101 291102 291103 291104 | visualisèrent visualiser :V1__t___zz:Is:3p!/* vitrèrent vitrer :V1__t___zz:Is:3p!/* vitrificative vitrificatif :A:f:s/* vitrifierai vitrifier :V1__t___zz:If:1s/* vitrifieront vitrifier :V1__t___zz:If:3p!/* vocalisatrice vocalisateur :N:f:s/* voguas voguer :V1_i____zz:Is:2s/* voileras voiler :V1_it_q__a:If:2s/* voilè voiler :V1_it_q__a:Ip:1ś/R voligé voliger :V1__t___zz:Q:A:1ŝ:m:s/* voligée voliger :V1__t___zz:Q:A:f:s/* attovolt volt :N:m:s/* exavolt volt :N:m:s/* gigavolt volt :N:m:s/* picovolt volt :N:m:s/* pétavolt volt :N:m:s/* |
︙ | ︙ | |||
291028 291029 291030 291031 291032 291033 291034 291035 291036 291037 291038 291039 291040 291041 | vésico-utérines vésico-utérin :A:f:p/* vétilla vétiller :V1_i____zz:Is:3s/* petawatt watt :N:m:s/* pétawatt watt :N:m:s/* pétawatts watt :N:m:p/* yottawatt watt :N:m:s/* webcaméra webcaméra :N:f:s/* xiphophore xiphophore :N:m:s/* xyloglotte xyloglotte :A:e:s/X xyloglotte xyloglotte :N:m:s/X xyloglucanes xyloglucane :N:m:p/X xylostome xylostome :N:m:s/X xénolite xénolite :N:m:s/* xéranthèmes xéranthème :N:m:p/* | > | 291123 291124 291125 291126 291127 291128 291129 291130 291131 291132 291133 291134 291135 291136 291137 | vésico-utérines vésico-utérin :A:f:p/* vétilla vétiller :V1_i____zz:Is:3s/* petawatt watt :N:m:s/* pétawatt watt :N:m:s/* pétawatts watt :N:m:p/* yottawatt watt :N:m:s/* webcaméra webcaméra :N:f:s/* windowsienne windowsien :N:f:s/* xiphophore xiphophore :N:m:s/* xyloglotte xyloglotte :A:e:s/X xyloglotte xyloglotte :N:m:s/X xyloglucanes xyloglucane :N:m:p/X xylostome xylostome :N:m:s/X xénolite xénolite :N:m:s/* xéranthèmes xéranthème :N:m:p/* |
︙ | ︙ | |||
291264 291265 291266 291267 291268 291269 291270 | éphorats éphorat :N:m:p/* épinces épincer :V1__t___zz:Ip:Sp:2s/* épincette épinceter :V1__t___zz:Ip:Sp:1s:3s/M épincette épinceter :V1__t___zz:E:2s/M épina épiner :V1__t___zz:Is:3s/* épinait épiner :V1__t___zz:Iq:3s/* épinées épiner :V1__t___zz:Q:A:f:p/* | | | | 291360 291361 291362 291363 291364 291365 291366 291367 291368 291369 291370 291371 291372 291373 291374 291375 | éphorats éphorat :N:m:p/* épinces épincer :V1__t___zz:Ip:Sp:2s/* épincette épinceter :V1__t___zz:Ip:Sp:1s:3s/M épincette épinceter :V1__t___zz:E:2s/M épina épiner :V1__t___zz:Is:3s/* épinait épiner :V1__t___zz:Iq:3s/* épinées épiner :V1__t___zz:Q:A:f:p/* épissa épisser :V1__t____a:Is:3s/* épissent épisser :V1__t____a:Ip:Sp:3p/* épitype épitype :N:m:s/X épivarde épivarder :V1____p_e_:Ip:Sp:1s:3s/* épivarde épivarder :V1____p_e_:E:2s/* éploiera éployer :V1__t_q_zz:If:3s/* épongerez éponger :V1__t_q_zz:If:2p/* époussetteras épousseter :V1__t___zz:If:2s/M époussètera épousseter :V1__t___zz:If:3s/R |
︙ | ︙ | |||
293100 293101 293102 293103 293104 293105 293106 293107 293108 293109 293110 293111 293112 293113 | bruitaient bruiter :V1__t___zz:Iq:3p/* brule-parfum brule-parfum :N:m:s/R brule-pourpoint brule-pourpoint :Ŵ/R brulassent bruler :V1_it_q_zz:Sq:3p/R brulons brulon :N:m:p/R brumait brumer :V1_i___mzz:Iq:3s/* brumé brumer :V1_i___mzz:Q:1ŝ:e:i/* brunche bruncher :V1_i_____a:Ip:Sp:1s:3s/* brunche bruncher :V1_i_____a:E:2s/* brunches bruncher :V1_i_____a:Ip:Sp:2s/* brusquerions brusquer :V1__t___zz:K:1p/* brusquerons brusquer :V1__t___zz:If:1p/* brusquiez brusquer :V1__t___zz:Iq:Sp:2p/* brutalisiez brutaliser :V1__t___zz:Iq:Sp:2p/* | > | 293196 293197 293198 293199 293200 293201 293202 293203 293204 293205 293206 293207 293208 293209 293210 | bruitaient bruiter :V1__t___zz:Iq:3p/* brule-parfum brule-parfum :N:m:s/R brule-pourpoint brule-pourpoint :Ŵ/R brulassent bruler :V1_it_q_zz:Sq:3p/R brulons brulon :N:m:p/R brumait brumer :V1_i___mzz:Iq:3s/* brumé brumer :V1_i___mzz:Q:1ŝ:e:i/* brumisées brumiser :V1_it____a:Q:A:f:p/* brunche bruncher :V1_i_____a:Ip:Sp:1s:3s/* brunche bruncher :V1_i_____a:E:2s/* brunches bruncher :V1_i_____a:Ip:Sp:2s/* brusquerions brusquer :V1__t___zz:K:1p/* brusquerons brusquer :V1__t___zz:If:1p/* brusquiez brusquer :V1__t___zz:Iq:Sp:2p/* brutalisiez brutaliser :V1__t___zz:Iq:Sp:2p/* |
︙ | ︙ | |||
294647 294648 294649 294650 294651 294652 294653 | croûtera croûter :V1_it___zz:If:3s/M croûtonné croûtonner :V1____p_e_:Q:A:1ŝ:m:s/M crucifierons crucifier :V1__t___zz:If:1p/* crucifiions crucifier :V1__t___zz:Iq:Sp:1p/* cryoconducteur cryoconducteur :A:m:s/* cryophysique cryophysique :N:f:s/* cryotempérature cryotempérature :N:f:s/* | | | 294744 294745 294746 294747 294748 294749 294750 294751 294752 294753 294754 294755 294756 294757 294758 | croûtera croûter :V1_it___zz:If:3s/M croûtonné croûtonner :V1____p_e_:Q:A:1ŝ:m:s/M crucifierons crucifier :V1__t___zz:If:1p/* crucifiions crucifier :V1__t___zz:Iq:Sp:1p/* cryoconducteur cryoconducteur :A:m:s/* cryophysique cryophysique :N:f:s/* cryotempérature cryotempérature :N:f:s/* cryptèrent crypter :V1_it____a:Is:3p!/* cryptobiotiques cryptobiotique :A:e:p/* cryptographia cryptographier :V1__t___zz:Is:3s/* cryptologies cryptologie :N:f:p/* crânons crâner :V1_i____zz:Ip:1p/* crânons crâner :V1_i____zz:E:1p/* crècerelle crècerelle :N:f:s/R crècerelles crècerelle :N:f:p/R |
︙ | ︙ | |||
295174 295175 295176 295177 295178 295179 295180 295181 295182 295183 295184 295185 295186 295187 | débroussaillez débroussailler :V1__t___zz:Ip:2p/* débroussaillez débroussailler :V1__t___zz:E:2p/* débroussez débrousser :V1__t___zz:Ip:2p/* débroussez débrousser :V1__t___zz:E:2p/* débroussèrent débrousser :V1__t___zz:Is:3p!/* débucherons débucher :V1_it___zz:If:1p/* débuchée débucher :V1_it___zz:Q:A:f:s/* débuller débuller :V1__t___zz:Y/* débullés débuller :V1__t___zz:Q:A:m:p/* débureaucratise débureaucratiser :V1__t___zz:Ip:Sp:1s:3s/* débureaucratise débureaucratiser :V1__t___zz:E:2s/* débusqueras débusquer :V1__t___zz:If:2s/* débuteriez débuter :V1_it___zz:K:2p/* débâchent débâcher :V1_it___zz:Ip:Sp:3p/* | > | 295271 295272 295273 295274 295275 295276 295277 295278 295279 295280 295281 295282 295283 295284 295285 | débroussaillez débroussailler :V1__t___zz:Ip:2p/* débroussaillez débroussailler :V1__t___zz:E:2p/* débroussez débrousser :V1__t___zz:Ip:2p/* débroussez débrousser :V1__t___zz:E:2p/* débroussèrent débrousser :V1__t___zz:Is:3p!/* débucherons débucher :V1_it___zz:If:1p/* débuchée débucher :V1_it___zz:Q:A:f:s/* débugueurs débugueur :N:m:p/* débuller débuller :V1__t___zz:Y/* débullés débuller :V1__t___zz:Q:A:m:p/* débureaucratise débureaucratiser :V1__t___zz:Ip:Sp:1s:3s/* débureaucratise débureaucratiser :V1__t___zz:E:2s/* débusqueras débusquer :V1__t___zz:If:2s/* débuteriez débuter :V1_it___zz:K:2p/* débâchent débâcher :V1_it___zz:Ip:Sp:3p/* |
︙ | ︙ | |||
296061 296062 296063 296064 296065 296066 296067 296068 296069 296070 296071 296072 296073 296074 | désalpes désalper :V1_i____zz:Ip:Sp:2s/* désaltérerons désaltérer :V1__t_q_zz:If:1p/M désamiantés désamianter :V1__t___zz:Q:A:m:p/* désamidonnage désamidonnage :N:m:s/* désamidonnées désamidonner :V1__t___zz:Q:A:f:p/* désamorcions désamorcer :V1__t_q_zz:Iq:Sp:1p/* désaméricanisait désaméricaniser :V1_it_q__a:Iq:3s/* désaper désaper :V1__t_q_zz:Y/* désapparient désapparier :V1__t___zz:Ip:Sp:3p/* désapparier désapparier :V1__t___zz:Y/* désappariées désapparier :V1__t___zz:Q:A:f:p/* désappointerai désappointer :V1__t___zz:If:1s/* désappointât désappointer :V1__t___zz:Sq:3s/* désapprendrais désapprendre :V3_it____a:K:1s:2s/* | > > | 296159 296160 296161 296162 296163 296164 296165 296166 296167 296168 296169 296170 296171 296172 296173 296174 | désalpes désalper :V1_i____zz:Ip:Sp:2s/* désaltérerons désaltérer :V1__t_q_zz:If:1p/M désamiantés désamianter :V1__t___zz:Q:A:m:p/* désamidonnage désamidonnage :N:m:s/* désamidonnées désamidonner :V1__t___zz:Q:A:f:p/* désamorcions désamorcer :V1__t_q_zz:Iq:Sp:1p/* désaméricanisait désaméricaniser :V1_it_q__a:Iq:3s/* désanonymiser désanonymiser :V1_it____a:Y/* désanonymisé désanonymiser :V1_it____a:Q:A:1ŝ:m:s/* désaper désaper :V1__t_q_zz:Y/* désapparient désapparier :V1__t___zz:Ip:Sp:3p/* désapparier désapparier :V1__t___zz:Y/* désappariées désapparier :V1__t___zz:Q:A:f:p/* désappointerai désappointer :V1__t___zz:If:1s/* désappointât désappointer :V1__t___zz:Sq:3s/* désapprendrais désapprendre :V3_it____a:K:1s:2s/* |
︙ | ︙ | |||
301857 301858 301859 301860 301861 301862 301863 | redimensionnons redimensionner :V1__t___zz:E:1p/* redirigerons rediriger :V1__t___zz:If:1p/* redirigions rediriger :V1__t___zz:Iq:Sp:1p/* rediscutable rediscutable :A:e:s/* rediscuterais rediscuter :V1__t___zz:K:1s:2s/* rediscutiez rediscuter :V1__t___zz:Iq:Sp:2p/* rediscutions rediscuter :V1__t___zz:Iq:Sp:1p/* | | | 301957 301958 301959 301960 301961 301962 301963 301964 301965 301966 301967 301968 301969 301970 301971 | redimensionnons redimensionner :V1__t___zz:E:1p/* redirigerons rediriger :V1__t___zz:If:1p/* redirigions rediriger :V1__t___zz:Iq:Sp:1p/* rediscutable rediscutable :A:e:s/* rediscuterais rediscuter :V1__t___zz:K:1s:2s/* rediscutiez rediscuter :V1__t___zz:Iq:Sp:2p/* rediscutions rediscuter :V1__t___zz:Iq:Sp:1p/* redisposâmes redisposer :V1__t____a:Is:1p/* redistribuassent redistribuer :V1__t___zz:Sq:3p/* redistribuerez redistribuer :V1__t___zz:If:2p/* redistribuerons redistribuer :V1__t___zz:If:1p/* redivinisé rediviniser :V1_it_q__a:Q:A:1ŝ:m:s/* rediviseront rediviser :V1__t_q__a:If:3p!/* redondèrent redonder :V1_i____zz:Is:3p!/* redoreras redorer :V1__t___zz:If:2s/* |
︙ | ︙ | |||
305252 305253 305254 305255 305256 305257 305258 | épèleront épeler :V1_it_q_zz:If:3p!/R épèleront épeler :V1_it_q_zz:If:3p!/R épèles épeler :V1_it_q_zz:Ip:Sp:2s/R épèles épeler :V1_it_q_zz:Ip:Sp:2s/R éperonnerai éperonner :V1__t_q_zz:If:1s/* épervins épervin :N:m:p/* épeuraient épeurer :V1__t___zz:Iq:3p/* | | | 305352 305353 305354 305355 305356 305357 305358 305359 305360 305361 305362 305363 305364 305365 305366 | épèleront épeler :V1_it_q_zz:If:3p!/R épèleront épeler :V1_it_q_zz:If:3p!/R épèles épeler :V1_it_q_zz:Ip:Sp:2s/R épèles épeler :V1_it_q_zz:Ip:Sp:2s/R éperonnerai éperonner :V1__t_q_zz:If:1s/* épervins épervin :N:m:p/* épeuraient épeurer :V1__t___zz:Iq:3p/* épiça épicer :V1_it____a:Is:3s/* épichlorhydrines épichlorhydrine :N:f:p/* épicurismes épicurisme :N:m:p/* épias épier :V1_it_q_zz:Is:2s/* épiasse épier :V1_it_q_zz:Sq:1s/* épierreraient épierrer :V1__t___zz:K:3p/* épierrez épierrer :V1__t___zz:Ip:2p/* épierrez épierrer :V1__t___zz:E:2p/* |
︙ | ︙ | |||
305595 305596 305597 305598 305599 305600 305601 | Al₂Se Al₂Se :N:m:i/* Al₂S₃ Al₂S₃ :N:m:i/* Al₂Te Al₂Te :N:m:i/* Al₃F₁₄Na₅ Al₃F₁₄Na₅ :N:m:i/* Al₄C₃ Al₄C₃ :N:m:i/* Al₆BeO₁₀ Al₆BeO₁₀ :N:m:i/* Al₆O₁₃Si₂ Al₆O₁₃Si₂ :N:m:i/* | | | 305695 305696 305697 305698 305699 305700 305701 305702 305703 305704 305705 305706 305707 305708 305709 | Al₂Se Al₂Se :N:m:i/* Al₂S₃ Al₂S₃ :N:m:i/* Al₂Te Al₂Te :N:m:i/* Al₃F₁₄Na₅ Al₃F₁₄Na₅ :N:m:i/* Al₄C₃ Al₄C₃ :N:m:i/* Al₆BeO₁₀ Al₆BeO₁₀ :N:m:i/* Al₆O₁₃Si₂ Al₆O₁₃Si₂ :N:m:i/* Apache Software Foundation Apache Software Foundation :MP:f:s/* Apache-OFBiz Apache-OFBiz :MP:m:i/X Apexagri Apexagri :MP:e:i/X Artémisions Artémision :N:m:p/* AsBr₃ AsBr₃ :N:m:i/* AsCl₃ AsCl₃ :N:m:i/* AsCl₃O AsCl₃O :N:m:i/* AsCl₄F AsCl₄F :N:m:i/* |
︙ | ︙ | |||
305724 305725 305726 305727 305728 305729 305730 | BrF₅ BrF₅ :N:m:i/* Braine-le-Château Braine-le-Château :MP:e:i/* Braine-l’Alleud Braine-l’Alleud :MP:e:i/* Bruay-la-Buissière Bruay-la-Buissière :MP:e:i/* Bruay-sur-l’Escaut Bruay-sur-l’Escaut :MP:e:i/* Br₂ Br₂ :N:m:i/* Br₂O₅ Br₂O₅ :N:m:i/* | | | 305824 305825 305826 305827 305828 305829 305830 305831 305832 305833 305834 305835 305836 305837 305838 | BrF₅ BrF₅ :N:m:i/* Braine-le-Château Braine-le-Château :MP:e:i/* Braine-l’Alleud Braine-l’Alleud :MP:e:i/* Bruay-la-Buissière Bruay-la-Buissière :MP:e:i/* Bruay-sur-l’Escaut Bruay-sur-l’Escaut :MP:e:i/* Br₂ Br₂ :N:m:i/* Br₂O₅ Br₂O₅ :N:m:i/* Buenos Aires Buenos Aires :MP:e:i/* Bully-les-Mines Bully-les-Mines :MP:e:i/* B₂Cl₄ B₂Cl₄ :N:m:i/* B₂F₄ B₂F₄ :N:m:i/* B₂H₆ B₂H₆ :N:m:i/* B₂O₃ B₂O₃ :N:m:i/* B₂Se₃ B₂Se₃ :N:m:i/* B₂S₃ B₂S₃ :N:m:i/* |
︙ | ︙ | |||
305852 305853 305854 305855 305856 305857 305858 | CeCl₃ CeCl₃ :N:m:i/* CeF₃ CeF₃ :N:m:i/* CeF₄ CeF₄ :N:m:i/* CeI₂ CeI₂ :N:m:i/* CeI₃ CeI₃ :N:m:i/* CeO₂ CeO₂ :N:m:i/* CeSi₂ CeSi₂ :N:m:i/* | | | 305952 305953 305954 305955 305956 305957 305958 305959 305960 305961 305962 305963 305964 305965 305966 | CeCl₃ CeCl₃ :N:m:i/* CeF₃ CeF₃ :N:m:i/* CeF₄ CeF₄ :N:m:i/* CeI₂ CeI₂ :N:m:i/* CeI₃ CeI₃ :N:m:i/* CeO₂ CeO₂ :N:m:i/* CeSi₂ CeSi₂ :N:m:i/* Central Park Central Park :MP:m:i/* Ce₂C₃ Ce₂C₃ :N:m:i/* Ce₂O₃ Ce₂O₃ :N:m:i/* Ce₂S₃ Ce₂S₃ :N:m:i/* Chantris Chantris :M1:e:i/X Choffardet Choffardet :M2:e:i/X Chorem Chorem :MP:m:i/X Château-d’Olonne Château-d’Olonne :MP:e:i/* |
︙ | ︙ | |||
305898 305899 305900 305901 305902 305903 305904 | CoMoO₄ CoMoO₄ :N:m:i/* CoSeO₃ CoSeO₃ :N:m:i/* CoS₂ CoS₂ :N:m:i/* CoTiO₃ CoTiO₃ :N:m:i/* CoWO₄ CoWO₄ :N:m:i/* Condé-sur-l’Escaut Condé-sur-l’Escaut :MP:e:i/* Cournon-d’Auvergne Cournon-d’Auvergne :MP:e:i/* | > | | 305998 305999 306000 306001 306002 306003 306004 306005 306006 306007 306008 306009 306010 306011 306012 306013 | CoMoO₄ CoMoO₄ :N:m:i/* CoSeO₃ CoSeO₃ :N:m:i/* CoS₂ CoS₂ :N:m:i/* CoTiO₃ CoTiO₃ :N:m:i/* CoWO₄ CoWO₄ :N:m:i/* Condé-sur-l’Escaut Condé-sur-l’Escaut :MP:e:i/* Cournon-d’Auvergne Cournon-d’Auvergne :MP:e:i/* Covid Covid :N:e:i/* Covid-19 Covid-19 :N:e:i/* Co₂B Co₂B :N:m:i/* Co₂SO₄ Co₂SO₄ :N:m:i/* Co₂SiO₄ Co₂SiO₄ :N:m:i/* Co₂SnO₄ Co₂SnO₄ :N:m:i/* Co₂S₃ Co₂S₃ :N:m:i/* Co₂TiO₄ Co₂TiO₄ :N:m:i/* CrBr₂ CrBr₂ :N:m:i/* |
︙ | ︙ | |||
305923 305924 305925 305926 305927 305928 305929 | CrI₃ CrI₃ :N:m:i/* CrO₂ CrO₂ :N:m:i/* CrO₂Cl₂ CrO₂Cl₂ :N:m:i/* CrO₃ CrO₃ :N:m:i/* CrPO₄ CrPO₄ :N:m:i/* CrSi₂ CrSi₂ :N:m:i/* CrVO₄ CrVO₄ :N:m:i/* | | | 306024 306025 306026 306027 306028 306029 306030 306031 306032 306033 306034 306035 306036 306037 306038 | CrI₃ CrI₃ :N:m:i/* CrO₂ CrO₂ :N:m:i/* CrO₂Cl₂ CrO₂Cl₂ :N:m:i/* CrO₃ CrO₃ :N:m:i/* CrPO₄ CrPO₄ :N:m:i/* CrSi₂ CrSi₂ :N:m:i/* CrVO₄ CrVO₄ :N:m:i/* Creative Commons Creative Commons :MP:e:i/* Crécy-la-Chapelle Crécy-la-Chapelle :MP:e:i/X Cr₂O₃ Cr₂O₃ :N:m:i/* Cr₂Se₃ Cr₂Se₃ :N:m:i/* Cr₂S₃ Cr₂S₃ :N:m:i/* Cr₂Te₃ Cr₂Te₃ :N:m:i/* Cr₃As₂ Cr₃As₂ :N:m:i/* Cr₃C₂ Cr₃C₂ :N:m:i/* |
︙ | ︙ | |||
306389 306390 306391 306392 306393 306394 306395 | nDa Da :N:m:i;S/* pDa Da :N:m:i;S/* yDa Da :N:m:i;S/* zDa Da :N:m:i;S/* µDa Da :N:m:i;S/* Dammarie-les-Lys Dammarie-les-Lys :MP:e:i/* Deuil-la-Barre Deuil-la-Barre :MP:e:i/* | | | 306490 306491 306492 306493 306494 306495 306496 306497 306498 306499 306500 306501 306502 306503 306504 | nDa Da :N:m:i;S/* pDa Da :N:m:i;S/* yDa Da :N:m:i;S/* zDa Da :N:m:i;S/* µDa Da :N:m:i;S/* Dammarie-les-Lys Dammarie-les-Lys :MP:e:i/* Deuil-la-Barre Deuil-la-Barre :MP:e:i/* Deutsche Bank Deutsche Bank :N:f:i/* Douchy-les-Mines Douchy-les-Mines :MP:e:i/* Dumont-d’Urville Dumont-d’Urville :MP:e:i/* DyBr₃ DyBr₃ :N:m:i/* DyCl₂ DyCl₂ :N:m:i/* DyCl₃ DyCl₃ :N:m:i/* DySi₂ DySi₂ :N:m:i/* Dybèle Dybèle :M1:f:i/X |
︙ | ︙ | |||
306481 306482 306483 306484 306485 306486 306487 | Fe₃H₂Na₂O₄₅Si Fe₃H₂Na₂O₄₅Si :N:m:i/* Fe₃O₄ Fe₃O₄ :N:m:i/* Fe₃P Fe₃P :N:m:i/* Fe₇Si₈O₂₄H₂ Fe₇Si₈O₂₄H₂ :N:m:i/* Fleury-les-Aubrais Fleury-les-Aubrais :MP:e:i/* Fontaine-l’Évêque Fontaine-l’Évêque :MP:e:i/* Fontenay-le-Fleury Fontenay-le-Fleury :MP:e:i/* | | | 306582 306583 306584 306585 306586 306587 306588 306589 306590 306591 306592 306593 306594 306595 306596 | Fe₃H₂Na₂O₄₅Si Fe₃H₂Na₂O₄₅Si :N:m:i/* Fe₃O₄ Fe₃O₄ :N:m:i/* Fe₃P Fe₃P :N:m:i/* Fe₇Si₈O₂₄H₂ Fe₇Si₈O₂₄H₂ :N:m:i/* Fleury-les-Aubrais Fleury-les-Aubrais :MP:e:i/* Fontaine-l’Évêque Fontaine-l’Évêque :MP:e:i/* Fontenay-le-Fleury Fontenay-le-Fleury :MP:e:i/* Free Software Foundation Free Software Foundation :MP:f:s/* F₁₀Mo₂ F₁₀Mo₂ :N:m:i/* F₁₀S₂ F₁₀S₂ :N:m:i/* F₁₅Mo₃ F₁₅Mo₃ :N:m:i/* F₂ F₂ :N:m:i/* F₂Fe F₂Fe :N:m:i/* F₂Ga F₂Ga :N:m:i/* F₂Gd F₂Gd :N:m:i/* |
︙ | ︙ | |||
306814 306815 306816 306817 306818 306819 306820 | K₂S₂O₃ K₂S₂O₃ :N:m:i/* K₂S₂O₅ K₂S₂O₅ :N:m:i/* K₂S₂O₈ K₂S₂O₈ :N:m:i/* K₃AsO₄ K₃AsO₄ :N:m:i/* K₃C₆H₅O₇ K₃C₆H₅O₇ :N:m:i/* K₃PO₃ K₃PO₃ :N:m:i/* K₃PO₄ K₃PO₄ :N:m:i/* | > | | | 306915 306916 306917 306918 306919 306920 306921 306922 306923 306924 306925 306926 306927 306928 306929 306930 306931 306932 306933 306934 306935 | K₂S₂O₃ K₂S₂O₃ :N:m:i/* K₂S₂O₅ K₂S₂O₅ :N:m:i/* K₂S₂O₈ K₂S₂O₈ :N:m:i/* K₃AsO₄ K₃AsO₄ :N:m:i/* K₃C₆H₅O₇ K₃C₆H₅O₇ :N:m:i/* K₃PO₃ K₃PO₃ :N:m:i/* K₃PO₄ K₃PO₄ :N:m:i/* La Nouvelle-Orléans La Nouvelle-Orléans :MP:f:i/* La Rochelle La Rochelle :MP:e:i/* LaBr₃ LaBr₃ :N:m:i/* LaCl₃ LaCl₃ :N:m:i/* LaI₃ LaI₃ :N:m:i/* LaPO₄ LaPO₄ :N:m:i/* Las Vegas Las Vegas :MP:e:i/* Lassay-les-Châteaux Lassay-les-Châteaux :MP:e:i/* La₂O₃ La₂O₃ :N:m:i/* Le Bris Le Bris :M2:e:i/X Les Vigneaux Les Vigneaux :MP:e:i/X LiAlH₄ LiAlH₄ :N:m:i/* LiBH₄ LiBH₄ :N:m:i/* LiBrO₂ LiBrO₂ :N:m:i/* |
︙ | ︙ | |||
306873 306874 306875 306876 306877 306878 306879 | Li₂TeO₄ Li₂TeO₄ :N:m:i/* Li₂TiO₃ Li₂TiO₃ :N:m:i/* Li₂WO₄ Li₂WO₄ :N:m:i/* Li₂ZrO₃ Li₂ZrO₃ :N:m:i/* Li₃AsO₄ Li₃AsO₄ :N:m:i/* Li₃PO₃ Li₃PO₃ :N:m:i/* Li₃PO₄ Li₃PO₄ :N:m:i/* | | | 306975 306976 306977 306978 306979 306980 306981 306982 306983 306984 306985 306986 306987 306988 306989 | Li₂TeO₄ Li₂TeO₄ :N:m:i/* Li₂TiO₃ Li₂TiO₃ :N:m:i/* Li₂WO₄ Li₂WO₄ :N:m:i/* Li₂ZrO₃ Li₂ZrO₃ :N:m:i/* Li₃AsO₄ Li₃AsO₄ :N:m:i/* Li₃PO₃ Li₃PO₃ :N:m:i/* Li₃PO₄ Li₃PO₄ :N:m:i/* Los Angeles Los Angeles :MP:f:i/* Lougalane Lougalane :M1:f:i/X Lovely Rita Lovely Rita :MP:m:i/X MIPAW MIPAW :N:m:i/X Mailclark Mailclark :MP:m:i/X Mandelieu-la-Napoule Mandelieu-la-Napoule :MP:e:i/* Meakyl Meakyl :M2:e:i/X MgBr₂ MgBr₂ :N:m:i/* |
︙ | ︙ | |||
307029 307030 307031 307032 307033 307034 307035 | NbCl₅ NbCl₅ :N:m:i/* NbI₅ NbI₅ :N:m:i/* Nb₂O₃ Nb₂O₃ :N:m:i/* NdCl₂ NdCl₂ :N:m:i/* NdI₂ NdI₂ :N:m:i/* Nd₂O₃ Nd₂O₃ :N:m:i/* New Delhi New Delhi :MP:e:i/* | | | 307131 307132 307133 307134 307135 307136 307137 307138 307139 307140 307141 307142 307143 307144 307145 | NbCl₅ NbCl₅ :N:m:i/* NbI₅ NbI₅ :N:m:i/* Nb₂O₃ Nb₂O₃ :N:m:i/* NdCl₂ NdCl₂ :N:m:i/* NdI₂ NdI₂ :N:m:i/* Nd₂O₃ Nd₂O₃ :N:m:i/* New Delhi New Delhi :MP:e:i/* New York New York :MP:e:i/* NextCloud NextCloud :MP:e:i/X NiBr₂ NiBr₂ :N:m:i/* NiCl₂ NiCl₂ :N:m:i/* NiFe₂O₄ NiFe₂O₄ :N:m:i/* NiI₂ NiI₂ :N:m:i/* NiMoO₄ NiMoO₄ :N:m:i/* NiSO₄ NiSO₄ :N:m:i/* |
︙ | ︙ | |||
307081 307082 307083 307084 307085 307086 307087 307088 307089 307090 307091 307092 307093 307094 | PbC₂O₄ PbC₂O₄ :N:m:i/* PbF₂ PbF₂ :N:m:i/* PbHAsO₄ PbHAsO₄ :N:m:i/* PbI₂ PbI₂ :N:m:i/* PbO₂ PbO₂ :N:m:i/* PbSO₄ PbSO₄ :N:m:i/* Pernes-les-Fontaines Pernes-les-Fontaines :MP:e:i/* Piassale Piassale :M2:e:i/X Pierre-Amiel Pierre-Amiel :M1:m:i/X Piégros-la-Clastre Piégros-la-Clastre :MP:e:i/X Ploumette Ploumette :M1:f:i/X Plouploum Plouploum :M1:m:i/X PoBr₂ PoBr₂ :N:m:i/* PoCl₂ PoCl₂ :N:m:i/* | > | 307183 307184 307185 307186 307187 307188 307189 307190 307191 307192 307193 307194 307195 307196 307197 | PbC₂O₄ PbC₂O₄ :N:m:i/* PbF₂ PbF₂ :N:m:i/* PbHAsO₄ PbHAsO₄ :N:m:i/* PbI₂ PbI₂ :N:m:i/* PbO₂ PbO₂ :N:m:i/* PbSO₄ PbSO₄ :N:m:i/* Pernes-les-Fontaines Pernes-les-Fontaines :MP:e:i/* Phnom Penh Phnom Penh :MP:e:i/* Piassale Piassale :M2:e:i/X Pierre-Amiel Pierre-Amiel :M1:m:i/X Piégros-la-Clastre Piégros-la-Clastre :MP:e:i/X Ploumette Ploumette :M1:f:i/X Plouploum Plouploum :M1:m:i/X PoBr₂ PoBr₂ :N:m:i/* PoCl₂ PoCl₂ :N:m:i/* |
︙ | ︙ | |||
307133 307134 307135 307136 307137 307138 307139 | Rb₂O Rb₂O :N:m:i/* Rb₂O₂ Rb₂O₂ :N:m:i/* Rb₂S Rb₂S :N:m:i/* Rb₂SO₃ Rb₂SO₃ :N:m:i/* Rb₂SO₄ Rb₂SO₄ :N:m:i/* Rb₃PO₃ Rb₃PO₃ :N:m:i/* Rb₃PO₄ Rb₃PO₄ :N:m:i/* | | | 307236 307237 307238 307239 307240 307241 307242 307243 307244 307245 307246 307247 307248 307249 307250 | Rb₂O Rb₂O :N:m:i/* Rb₂O₂ Rb₂O₂ :N:m:i/* Rb₂S Rb₂S :N:m:i/* Rb₂SO₃ Rb₂SO₃ :N:m:i/* Rb₂SO₄ Rb₂SO₄ :N:m:i/* Rb₃PO₃ Rb₃PO₃ :N:m:i/* Rb₃PO₄ Rb₃PO₄ :N:m:i/* Rhode Island Rhode Island :N:m:i/* Rilga Rilga :M1:f:i/X Rillieux-la-Pape Rillieux-la-Pape :MP:e:i/* RnF₂ RnF₂ :N:m:i/* Roselyse Roselyse :M1:f:i/* Rostov-sur-le-Don Rostov-sur-le-Don :MP:e:i/* Royal Navy Royal Navy :MP:f:i/* RuCl₃ RuCl₃ :N:m:i/* |
︙ | ︙ | |||
307165 307166 307167 307168 307169 307170 307171 | Saint-Jean-de-la-Ruelle Saint-Jean-de-la-Ruelle :MP:e:i/* Saint-Leu-la-Forêt Saint-Leu-la-Forêt :MP:e:i/* Saint-Martin-d’Hères Saint-Martin-d’Hères :MP:e:i/* Saint-Maximin-la-Sainte-Baume Saint-Maximin-la-Sainte-Baume :MP:e:i/* Saint-Nazaire-le-Désert Saint-Nazaire-le-Désert :MP:e:i/X Saint-Ouen-l’Aumône Saint-Ouen-l’Aumône :MP:e:i/* Saint-Vincent-et-les-Grenadines Saint-Vincent-et-les-Grenadines :N:m:i/* | | | 307268 307269 307270 307271 307272 307273 307274 307275 307276 307277 307278 307279 307280 307281 307282 | Saint-Jean-de-la-Ruelle Saint-Jean-de-la-Ruelle :MP:e:i/* Saint-Leu-la-Forêt Saint-Leu-la-Forêt :MP:e:i/* Saint-Martin-d’Hères Saint-Martin-d’Hères :MP:e:i/* Saint-Maximin-la-Sainte-Baume Saint-Maximin-la-Sainte-Baume :MP:e:i/* Saint-Nazaire-le-Désert Saint-Nazaire-le-Désert :MP:e:i/X Saint-Ouen-l’Aumône Saint-Ouen-l’Aumône :MP:e:i/* Saint-Vincent-et-les-Grenadines Saint-Vincent-et-les-Grenadines :N:m:i/* San Francisco San Francisco :MP:e:i/* Savigny-le-Temple Savigny-le-Temple :MP:e:i/* SbBr₃ SbBr₃ :N:m:i/* SbCl₃ SbCl₃ :N:m:i/* SbCl₅ SbCl₅ :N:m:i/* SbI₃ SbI₃ :N:m:i/* SbPO₄ SbPO₄ :N:m:i/* Sb₂OS₂ Sb₂OS₂ :N:m:i/* |
︙ | ︙ | |||
307194 307195 307196 307197 307198 307199 307200 | Septèmes-les-Vallons Septèmes-les-Vallons :MP:e:i/* SiBr₄ SiBr₄ :N:m:i/* SiCl₄ SiCl₄ :N:m:i/* SiH₄ SiH₄ :N:m:i/* SiI₄ SiI₄ :N:m:i/* SiO₂ SiO₂ :N:m:i/* Siguéploum Siguéploum :MP:e:i/X | | | 307297 307298 307299 307300 307301 307302 307303 307304 307305 307306 307307 307308 307309 307310 307311 | Septèmes-les-Vallons Septèmes-les-Vallons :MP:e:i/* SiBr₄ SiBr₄ :N:m:i/* SiCl₄ SiCl₄ :N:m:i/* SiH₄ SiH₄ :N:m:i/* SiI₄ SiI₄ :N:m:i/* SiO₂ SiO₂ :N:m:i/* Siguéploum Siguéploum :MP:e:i/X Silicon Valley Silicon Valley :N:f:i/* Sin-le-Noble Sin-le-Noble :MP:e:i/* Six-Fours-les-Plages Six-Fours-les-Plages :MP:e:i/* Si₃N₄ Si₃N₄ :N:m:i/* SnBrCl₃ SnBrCl₃ :N:m:i/* SnBr₂ SnBr₂ :N:m:i/* SnBr₂Cl₂ SnBr₂Cl₂ :N:m:i/* SnBr₃Cl SnBr₃Cl :N:m:i/* |
︙ | ︙ | |||
307261 307262 307263 307264 307265 307266 307267 | TeCl₂ TeCl₂ :N:m:i/* TeCl₄ TeCl₄ :N:m:i/* TeI₂ TeI₂ :N:m:i/* TeI₄ TeI₄ :N:m:i/* TeO₂ TeO₂ :N:m:i/* Tedrick Tedrick :M1:m:i/X Terhemis Terhemis :M1:e:i/X | | | | 307364 307365 307366 307367 307368 307369 307370 307371 307372 307373 307374 307375 307376 307377 307378 307379 307380 | TeCl₂ TeCl₂ :N:m:i/* TeCl₄ TeCl₄ :N:m:i/* TeI₂ TeI₂ :N:m:i/* TeI₄ TeI₄ :N:m:i/* TeO₂ TeO₂ :N:m:i/* Tedrick Tedrick :M1:m:i/X Terhemis Terhemis :M1:e:i/X Texas Instruments Texas Instruments :MP:e:i/* ThO₂ ThO₂ :N:m:i/* The Document Foundation The Document Foundation :MP:f:s/* Thonon-les-Bains Thonon-les-Bains :MP:e:i/* TiBr₄ TiBr₄ :N:m:i/* TiCl₂I₂ TiCl₂I₂ :N:m:i/* TiCl₃I TiCl₃I :N:m:i/* TiCl₄ TiCl₄ :N:m:i/* TiH₂ TiH₂ :N:m:i/* TiI₄ TiI₄ :N:m:i/* |
︙ | ︙ | |||
307367 307368 307369 307370 307371 307372 307373 | WO₂Cl₂ WO₂Cl₂ :N:m:i/* WO₂I₂ WO₂I₂ :N:m:i/* WO₃ WO₃ :N:m:i/* WSe₂ WSe₂ :N:m:i/* WS₂ WS₂ :N:m:i/* WS₃ WS₃ :N:m:i/* WTe₂ WTe₂ :N:m:i/* | | | 307470 307471 307472 307473 307474 307475 307476 307477 307478 307479 307480 307481 307482 307483 307484 | WO₂Cl₂ WO₂Cl₂ :N:m:i/* WO₂I₂ WO₂I₂ :N:m:i/* WO₃ WO₃ :N:m:i/* WSe₂ WSe₂ :N:m:i/* WS₂ WS₂ :N:m:i/* WS₃ WS₃ :N:m:i/* WTe₂ WTe₂ :N:m:i/* Wall Street Wall Street :MP:e:i/* EWb Wb :N:m:i;S/* GWb Wb :N:m:i;S/* MWb Wb :N:m:i;S/* PWb Wb :N:m:i;S/* TWb Wb :N:m:i;S/* YWb Wb :N:m:i;S/* ZWb Wb :N:m:i;S/* |
︙ | ︙ | |||
328533 328534 328535 328536 328537 328538 328539 328540 328541 328542 328543 328544 328545 328546 | brumassera brumasser :V1_i___mzz:If:3s/* brumasserait brumasser :V1_i___mzz:K:3s/* brumassât brumasser :V1_i___mzz:Sq:3s/* brumassé brumasser :V1_i___mzz:Q:1ŝ:e:i/* brumera brumer :V1_i___mzz:If:3s/* brumerait brumer :V1_i___mzz:K:3s/* brumât brumer :V1_i___mzz:Sq:3s/* brunantes brunante :N:f:p/* brunchai bruncher :V1_i_____a:Is:1s/* brunchaient bruncher :V1_i_____a:Iq:3p/* brunchais bruncher :V1_i_____a:Iq:1s:2s/* brunchait bruncher :V1_i_____a:Iq:3s/* brunchant bruncher :V1_i_____a:P/* brunchas bruncher :V1_i_____a:Is:2s/* | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 328636 328637 328638 328639 328640 328641 328642 328643 328644 328645 328646 328647 328648 328649 328650 328651 328652 328653 328654 328655 328656 328657 328658 328659 328660 328661 328662 328663 328664 328665 328666 328667 328668 328669 328670 328671 328672 328673 328674 328675 328676 328677 328678 328679 328680 328681 328682 328683 328684 328685 328686 328687 328688 | brumassera brumasser :V1_i___mzz:If:3s/* brumasserait brumasser :V1_i___mzz:K:3s/* brumassât brumasser :V1_i___mzz:Sq:3s/* brumassé brumasser :V1_i___mzz:Q:1ŝ:e:i/* brumera brumer :V1_i___mzz:If:3s/* brumerait brumer :V1_i___mzz:K:3s/* brumât brumer :V1_i___mzz:Sq:3s/* brumisa brumiser :V1_it____a:Is:3s/* brumisai brumiser :V1_it____a:Is:1s/* brumisaient brumiser :V1_it____a:Iq:3p/* brumisais brumiser :V1_it____a:Iq:1s:2s/* brumisait brumiser :V1_it____a:Iq:3s/* brumisant brumiser :V1_it____a:P/* brumisas brumiser :V1_it____a:Is:2s/* brumisasse brumiser :V1_it____a:Sq:1s/* brumisassent brumiser :V1_it____a:Sq:3p/* brumisasses brumiser :V1_it____a:Sq:2s/* brumisassiez brumiser :V1_it____a:Sq:2p/* brumisassions brumiser :V1_it____a:Sq:1p/* brumise brumiser :V1_it____a:Ip:Sp:1s:3s/* brumise brumiser :V1_it____a:E:2s/* brumisent brumiser :V1_it____a:Ip:Sp:3p/* brumisera brumiser :V1_it____a:If:3s/* brumiserai brumiser :V1_it____a:If:1s/* brumiseraient brumiser :V1_it____a:K:3p/* brumiserais brumiser :V1_it____a:K:1s:2s/* brumiserait brumiser :V1_it____a:K:3s/* brumiseras brumiser :V1_it____a:If:2s/* brumiserez brumiser :V1_it____a:If:2p/* brumiseriez brumiser :V1_it____a:K:2p/* brumiserions brumiser :V1_it____a:K:1p/* brumiserons brumiser :V1_it____a:If:1p/* brumiseront brumiser :V1_it____a:If:3p!/* brumises brumiser :V1_it____a:Ip:Sp:2s/* brumisez brumiser :V1_it____a:Ip:2p/* brumisez brumiser :V1_it____a:E:2p/* brumisiez brumiser :V1_it____a:Iq:Sp:2p/* brumisions brumiser :V1_it____a:Iq:Sp:1p/* brumisons brumiser :V1_it____a:Ip:1p/* brumisons brumiser :V1_it____a:E:1p/* brumisâmes brumiser :V1_it____a:Is:1p/* brumisât brumiser :V1_it____a:Sq:3s/* brumisâtes brumiser :V1_it____a:Is:2p/* brumisè brumiser :V1_it____a:Ip:1ś/R brumisèrent brumiser :V1_it____a:Is:3p!/* brumisé brumiser :V1_it____a:Q:A:1ŝ:m:s/* brunantes brunante :N:f:p/* brunchai bruncher :V1_i_____a:Is:1s/* brunchaient bruncher :V1_i_____a:Iq:3p/* brunchais bruncher :V1_i_____a:Iq:1s:2s/* brunchait bruncher :V1_i_____a:Iq:3s/* brunchant bruncher :V1_i_____a:P/* brunchas bruncher :V1_i_____a:Is:2s/* |
︙ | ︙ | |||
350127 350128 350129 350130 350131 350132 350133 | cryométries cryométrie :N:f:p/* cryophysiques cryophysique :N:f:p/* cryoscopies cryoscopie :N:f:p/* cryosphères cryosphère :N:f:p/* cryotempératures cryotempérature :N:f:p/* cryothérapies cryothérapie :N:f:p/* cryovolcanismes cryovolcanisme :N:m:p/* | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 350269 350270 350271 350272 350273 350274 350275 350276 350277 350278 350279 350280 350281 350282 350283 350284 350285 350286 350287 350288 350289 350290 350291 350292 350293 350294 350295 350296 350297 350298 350299 350300 350301 350302 350303 350304 350305 350306 350307 350308 350309 350310 350311 | cryométries cryométrie :N:f:p/* cryophysiques cryophysique :N:f:p/* cryoscopies cryoscopie :N:f:p/* cryosphères cryosphère :N:f:p/* cryotempératures cryotempérature :N:f:p/* cryothérapies cryothérapie :N:f:p/* cryovolcanismes cryovolcanisme :N:m:p/* cryptai crypter :V1_it____a:Is:1s/* cryptaient crypter :V1_it____a:Iq:3p/* cryptais crypter :V1_it____a:Iq:1s:2s/* cryptait crypter :V1_it____a:Iq:3s/* cryptasse crypter :V1_it____a:Sq:1s/* cryptassent crypter :V1_it____a:Sq:3p/* cryptasses crypter :V1_it____a:Sq:2s/* cryptassiez crypter :V1_it____a:Sq:2p/* cryptassions crypter :V1_it____a:Sq:1p/* cryptera crypter :V1_it____a:If:3s/* crypterai crypter :V1_it____a:If:1s/* crypteraient crypter :V1_it____a:K:3p/* crypterais crypter :V1_it____a:K:1s:2s/* crypterait crypter :V1_it____a:K:3s/* crypteras crypter :V1_it____a:If:2s/* crypterez crypter :V1_it____a:If:2p/* crypteriez crypter :V1_it____a:K:2p/* crypterions crypter :V1_it____a:K:1p/* crypterons crypter :V1_it____a:If:1p/* crypteront crypter :V1_it____a:If:3p!/* cryptez crypter :V1_it____a:Ip:2p/* cryptez crypter :V1_it____a:E:2p/* cryptiez crypter :V1_it____a:Iq:Sp:2p/* cryptions crypter :V1_it____a:Iq:Sp:1p/* cryptons crypter :V1_it____a:Ip:1p/* cryptons crypter :V1_it____a:E:1p/* cryptâmes crypter :V1_it____a:Is:1p/* cryptât crypter :V1_it____a:Sq:3s/* cryptè crypter :V1_it____a:Ip:1ś/R cryptobioses cryptobiose :N:f:p/* cryptobiotique cryptobiotique :A:e:s/* cryptodevise cryptodevise :N:f:s/* cryptodevises cryptodevise :N:f:p/* cryptogamies cryptogamie :N:f:p/* cryptographiai cryptographier :V1__t___zz:Is:1s/* cryptographiaient cryptographier :V1__t___zz:Iq:3p/* |
︙ | ︙ | |||
354564 354565 354566 354567 354568 354569 354570 354571 354572 354573 354574 354575 354576 354577 | distillasses distiller :V1_it___zz:Sq:2s/* distillassiez distiller :V1_it___zz:Sq:2p/* distillassions distiller :V1_it___zz:Sq:1p/* distillerais distiller :V1_it___zz:K:1s:2s/* distilleriez distiller :V1_it___zz:K:2p/* distillerions distiller :V1_it___zz:K:1p/* distillè distiller :V1_it___zz:Ip:1ś/R distinguasses distinguer :V1_it_q_zz:Sq:2s/* distinguassions distinguer :V1_it_q_zz:Sq:1p/* distordais distordre :V3_it_q__a:Iq:1s:2s/* distordes distordre :V3_it_q__a:Sp:2s/* distordez distordre :V3_it_q__a:Ip:2p/* distordez distordre :V3_it_q__a:E:2p/* distordiez distordre :V3_it_q__a:Iq:Sp:2p/* | > | 354706 354707 354708 354709 354710 354711 354712 354713 354714 354715 354716 354717 354718 354719 354720 | distillasses distiller :V1_it___zz:Sq:2s/* distillassiez distiller :V1_it___zz:Sq:2p/* distillassions distiller :V1_it___zz:Sq:1p/* distillerais distiller :V1_it___zz:K:1s:2s/* distilleriez distiller :V1_it___zz:K:2p/* distillerions distiller :V1_it___zz:K:1p/* distillè distiller :V1_it___zz:Ip:1ś/R distinctivités distinctivité :N:f:p/* distinguasses distinguer :V1_it_q_zz:Sq:2s/* distinguassions distinguer :V1_it_q_zz:Sq:1p/* distordais distordre :V3_it_q__a:Iq:1s:2s/* distordes distordre :V3_it_q__a:Sp:2s/* distordez distordre :V3_it_q__a:Ip:2p/* distordez distordre :V3_it_q__a:E:2p/* distordiez distordre :V3_it_q__a:Iq:Sp:2p/* |
︙ | ︙ | |||
358866 358867 358868 358869 358870 358871 358872 358873 358874 358875 358876 358877 358878 358879 | décarbonatons décarbonater :V1__t___zz:Ip:1p/* décarbonatons décarbonater :V1__t___zz:E:1p/* décarbonatâmes décarbonater :V1__t___zz:Is:1p/* décarbonatât décarbonater :V1__t___zz:Sq:3s/* décarbonatâtes décarbonater :V1__t___zz:Is:2p/* décarbonatè décarbonater :V1__t___zz:Ip:1ś/R décarbonatèrent décarbonater :V1__t___zz:Is:3p!/* décarbona décarboner :V1_it_q__a:Is:3s/* décarbonai décarboner :V1_it_q__a:Is:1s/* décarbonaient décarboner :V1_it_q__a:Iq:3p/* décarbonais décarboner :V1_it_q__a:Iq:1s:2s/* décarbonait décarboner :V1_it_q__a:Iq:3s/* décarbonas décarboner :V1_it_q__a:Is:2s/* décarbonasse décarboner :V1_it_q__a:Sq:1s/* | > | 359009 359010 359011 359012 359013 359014 359015 359016 359017 359018 359019 359020 359021 359022 359023 | décarbonatons décarbonater :V1__t___zz:Ip:1p/* décarbonatons décarbonater :V1__t___zz:E:1p/* décarbonatâmes décarbonater :V1__t___zz:Is:1p/* décarbonatât décarbonater :V1__t___zz:Sq:3s/* décarbonatâtes décarbonater :V1__t___zz:Is:2p/* décarbonatè décarbonater :V1__t___zz:Ip:1ś/R décarbonatèrent décarbonater :V1__t___zz:Is:3p!/* décarbonations décarbonation :N:f:p/* décarbona décarboner :V1_it_q__a:Is:3s/* décarbonai décarboner :V1_it_q__a:Is:1s/* décarbonaient décarboner :V1_it_q__a:Iq:3p/* décarbonais décarboner :V1_it_q__a:Iq:1s:2s/* décarbonait décarboner :V1_it_q__a:Iq:3s/* décarbonas décarboner :V1_it_q__a:Is:2s/* décarbonasse décarboner :V1_it_q__a:Sq:1s/* |
︙ | ︙ | |||
375399 375400 375401 375402 375403 375404 375405 375406 375407 375408 375409 375410 375411 375412 | désannexons désannexer :V1__t___zz:Ip:1p/* désannexons désannexer :V1__t___zz:E:1p/* désannexâmes désannexer :V1__t___zz:Is:1p/* désannexât désannexer :V1__t___zz:Sq:3s/* désannexâtes désannexer :V1__t___zz:Is:2p/* désannexè désannexer :V1__t___zz:Ip:1ś/R désannexèrent désannexer :V1__t___zz:Is:3p!/* désapa désaper :V1__t_q_zz:Is:3s/* désapai désaper :V1__t_q_zz:Is:1s/* désapaient désaper :V1__t_q_zz:Iq:3p/* désapais désaper :V1__t_q_zz:Iq:1s:2s/* désapait désaper :V1__t_q_zz:Iq:3s/* désapant désaper :V1__t_q_zz:P/* désapas désaper :V1__t_q_zz:Is:2s/* | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 375543 375544 375545 375546 375547 375548 375549 375550 375551 375552 375553 375554 375555 375556 375557 375558 375559 375560 375561 375562 375563 375564 375565 375566 375567 375568 375569 375570 375571 375572 375573 375574 375575 375576 375577 375578 375579 375580 375581 375582 375583 375584 375585 375586 375587 375588 375589 375590 375591 375592 375593 375594 375595 375596 375597 | désannexons désannexer :V1__t___zz:Ip:1p/* désannexons désannexer :V1__t___zz:E:1p/* désannexâmes désannexer :V1__t___zz:Is:1p/* désannexât désannexer :V1__t___zz:Sq:3s/* désannexâtes désannexer :V1__t___zz:Is:2p/* désannexè désannexer :V1__t___zz:Ip:1ś/R désannexèrent désannexer :V1__t___zz:Is:3p!/* désanonymisa désanonymiser :V1_it____a:Is:3s/* désanonymisai désanonymiser :V1_it____a:Is:1s/* désanonymisaient désanonymiser :V1_it____a:Iq:3p/* désanonymisais désanonymiser :V1_it____a:Iq:1s:2s/* désanonymisait désanonymiser :V1_it____a:Iq:3s/* désanonymisant désanonymiser :V1_it____a:P/* désanonymisas désanonymiser :V1_it____a:Is:2s/* désanonymisasse désanonymiser :V1_it____a:Sq:1s/* désanonymisassent désanonymiser :V1_it____a:Sq:3p/* désanonymisasses désanonymiser :V1_it____a:Sq:2s/* désanonymisassiez désanonymiser :V1_it____a:Sq:2p/* désanonymisassions désanonymiser :V1_it____a:Sq:1p/* désanonymise désanonymiser :V1_it____a:Ip:Sp:1s:3s/* désanonymise désanonymiser :V1_it____a:E:2s/* désanonymisent désanonymiser :V1_it____a:Ip:Sp:3p/* désanonymisera désanonymiser :V1_it____a:If:3s/* désanonymiserai désanonymiser :V1_it____a:If:1s/* désanonymiseraient désanonymiser :V1_it____a:K:3p/* désanonymiserais désanonymiser :V1_it____a:K:1s:2s/* désanonymiserait désanonymiser :V1_it____a:K:3s/* désanonymiseras désanonymiser :V1_it____a:If:2s/* désanonymiserez désanonymiser :V1_it____a:If:2p/* désanonymiseriez désanonymiser :V1_it____a:K:2p/* désanonymiserions désanonymiser :V1_it____a:K:1p/* désanonymiserons désanonymiser :V1_it____a:If:1p/* désanonymiseront désanonymiser :V1_it____a:If:3p!/* désanonymises désanonymiser :V1_it____a:Ip:Sp:2s/* désanonymisez désanonymiser :V1_it____a:Ip:2p/* désanonymisez désanonymiser :V1_it____a:E:2p/* désanonymisiez désanonymiser :V1_it____a:Iq:Sp:2p/* désanonymisions désanonymiser :V1_it____a:Iq:Sp:1p/* désanonymisons désanonymiser :V1_it____a:Ip:1p/* désanonymisons désanonymiser :V1_it____a:E:1p/* désanonymisâmes désanonymiser :V1_it____a:Is:1p/* désanonymisât désanonymiser :V1_it____a:Sq:3s/* désanonymisâtes désanonymiser :V1_it____a:Is:2p/* désanonymisè désanonymiser :V1_it____a:Ip:1ś/R désanonymisèrent désanonymiser :V1_it____a:Is:3p!/* désanonymisée désanonymiser :V1_it____a:Q:A:f:s/* désanonymisées désanonymiser :V1_it____a:Q:A:f:p/* désanonymisés désanonymiser :V1_it____a:Q:A:m:p/* désapa désaper :V1__t_q_zz:Is:3s/* désapai désaper :V1__t_q_zz:Is:1s/* désapaient désaper :V1__t_q_zz:Iq:3p/* désapais désaper :V1__t_q_zz:Iq:1s:2s/* désapait désaper :V1__t_q_zz:Iq:3s/* désapant désaper :V1__t_q_zz:P/* désapas désaper :V1__t_q_zz:Is:2s/* |
︙ | ︙ | |||
408450 408451 408452 408453 408454 408455 408456 408457 408458 408459 408460 408461 408462 408463 | grippez gripper :V1_it_q_zz:E:2p/* grippiez gripper :V1_it_q_zz:Iq:Sp:2p/* grippions gripper :V1_it_q_zz:Iq:Sp:1p/* grippâmes gripper :V1_it_q_zz:Is:1p/* grippât gripper :V1_it_q_zz:Sq:3s/* grippâtes gripper :V1_it_q_zz:Is:2p/* grippè gripper :V1_it_q_zz:Ip:1ś/R grisailla grisailler :V1_it___zz:Is:3s/* grisaillai grisailler :V1_it___zz:Is:1s/* grisaillaient grisailler :V1_it___zz:Iq:3p/* grisaillais grisailler :V1_it___zz:Iq:1s:2s/* grisaillas grisailler :V1_it___zz:Is:2s/* grisaillasse grisailler :V1_it___zz:Sq:1s/* grisaillassent grisailler :V1_it___zz:Sq:3p/* | > | 408635 408636 408637 408638 408639 408640 408641 408642 408643 408644 408645 408646 408647 408648 408649 | grippez gripper :V1_it_q_zz:E:2p/* grippiez gripper :V1_it_q_zz:Iq:Sp:2p/* grippions gripper :V1_it_q_zz:Iq:Sp:1p/* grippâmes gripper :V1_it_q_zz:Is:1p/* grippât gripper :V1_it_q_zz:Sq:3s/* grippâtes gripper :V1_it_q_zz:Is:2p/* grippè gripper :V1_it_q_zz:Ip:1ś/R grippettes grippette :N:f:p/* grisailla grisailler :V1_it___zz:Is:3s/* grisaillai grisailler :V1_it___zz:Is:1s/* grisaillaient grisailler :V1_it___zz:Iq:3p/* grisaillais grisailler :V1_it___zz:Iq:1s:2s/* grisaillas grisailler :V1_it___zz:Is:2s/* grisaillasse grisailler :V1_it___zz:Sq:1s/* grisaillassent grisailler :V1_it___zz:Sq:3p/* |
︙ | ︙ | |||
409966 409967 409968 409969 409970 409971 409972 409973 409974 409975 409976 409977 409978 409979 | géométrisâmes géométriser :V1__t___zz:Is:1p/* géométrisât géométriser :V1__t___zz:Sq:3s/* géométrisâtes géométriser :V1__t___zz:Is:2p/* géométrisè géométriser :V1__t___zz:Ip:1ś/R géométrisèrent géométriser :V1__t___zz:Is:3p!/* géonavigateurs géonavigateur :N:m:p/* géopoliticiennes géopoliticien :N:f:p/* géoréférencements géoréférencement :N:m:p/X géostations géostation :N:f:p/* géotechnicienne géotechnicien :N:f:s/* géotechniciennes géotechnicien :N:f:p/* géothermométries géothermométrie :N:f:p/* géoéconomies géoéconomie :N:f:p/* géraniols géraniol :N:m:p/* | > | 410152 410153 410154 410155 410156 410157 410158 410159 410160 410161 410162 410163 410164 410165 410166 | géométrisâmes géométriser :V1__t___zz:Is:1p/* géométrisât géométriser :V1__t___zz:Sq:3s/* géométrisâtes géométriser :V1__t___zz:Is:2p/* géométrisè géométriser :V1__t___zz:Ip:1ś/R géométrisèrent géométriser :V1__t___zz:Is:3p!/* géonavigateurs géonavigateur :N:m:p/* géopoliticiennes géopoliticien :N:f:p/* géopositionnements géopositionnement :N:m:p/* géoréférencements géoréférencement :N:m:p/X géostations géostation :N:f:p/* géotechnicienne géotechnicien :N:f:s/* géotechniciennes géotechnicien :N:f:p/* géothermométries géothermométrie :N:f:p/* géoéconomies géoéconomie :N:f:p/* géraniols géraniol :N:m:p/* |
︙ | ︙ | |||
418195 418196 418197 418198 418199 418200 418201 418202 418203 418204 418205 418206 418207 418208 | je-m’en-fichistes je-m’en-fichiste :N:A:e:p/* je-m’en-foutisme je-m’en-foutisme :N:m:s/* je-m’en-foutismes je-m’en-foutisme :N:m:p/* je-m’en-foutiste je-m’en-foutiste :N:A:e:s/* je-m’en-foutistes je-m’en-foutiste :N:A:e:p/* jean-le-blanc jean-le-blanc :N:m:i/* jectisse jectisse :A:f:s/* jet-sets jet-set :N:e:p/M jet-setteuses jet-setteur :N:f:p/M jet-societies jet-society :N:f:p/C jet-societys jet-society :N:f:p/* jetsets jetset :N:e:p/R jetsetteur jetsetteur :N:m:s/R jetsetteurs jetsetteur :N:m:p/R | > | 418382 418383 418384 418385 418386 418387 418388 418389 418390 418391 418392 418393 418394 418395 418396 | je-m’en-fichistes je-m’en-fichiste :N:A:e:p/* je-m’en-foutisme je-m’en-foutisme :N:m:s/* je-m’en-foutismes je-m’en-foutisme :N:m:p/* je-m’en-foutiste je-m’en-foutiste :N:A:e:s/* je-m’en-foutistes je-m’en-foutiste :N:A:e:p/* jean-le-blanc jean-le-blanc :N:m:i/* jectisse jectisse :A:f:s/* jet set jet set :N:f:i/* jet-sets jet-set :N:e:p/M jet-setteuses jet-setteur :N:f:p/M jet-societies jet-society :N:f:p/C jet-societys jet-society :N:f:p/* jetsets jetset :N:e:p/R jetsetteur jetsetteur :N:m:s/R jetsetteurs jetsetteur :N:m:p/R |
︙ | ︙ | |||
420985 420986 420987 420988 420989 420990 420991 420992 420993 420994 420995 420996 420997 420998 | lingée linger :V1__t_q_zz:Q:A:f:s/* lingées linger :V1__t_q_zz:Q:A:f:p/* lingés linger :V1__t_q_zz:Q:A:m:p/* linguettes linguette :N:f:p/* linicultures liniculture :N:f:p/* linotypies linotypie :N:f:p/* linsoirs linsoir :N:m:p/A linéarisabilités linéarisabilité :N:f:p/* linéarisai linéariser :V1__t___zz:Is:1s/* linéarisaient linéariser :V1__t___zz:Iq:3p/* linéarisais linéariser :V1__t___zz:Iq:1s:2s/* linéarisait linéariser :V1__t___zz:Iq:3s/* linéarisas linéariser :V1__t___zz:Is:2s/* linéarisasse linéariser :V1__t___zz:Sq:1s/* | > | 421173 421174 421175 421176 421177 421178 421179 421180 421181 421182 421183 421184 421185 421186 421187 | lingée linger :V1__t_q_zz:Q:A:f:s/* lingées linger :V1__t_q_zz:Q:A:f:p/* lingés linger :V1__t_q_zz:Q:A:m:p/* linguettes linguette :N:f:p/* linicultures liniculture :N:f:p/* linotypies linotypie :N:f:p/* linsoirs linsoir :N:m:p/A linuxiennes linuxien :N:f:p/* linéarisabilités linéarisabilité :N:f:p/* linéarisai linéariser :V1__t___zz:Is:1s/* linéarisaient linéariser :V1__t___zz:Iq:3p/* linéarisais linéariser :V1__t___zz:Iq:1s:2s/* linéarisait linéariser :V1__t___zz:Iq:3s/* linéarisas linéariser :V1__t___zz:Is:2s/* linéarisasse linéariser :V1__t___zz:Sq:1s/* |
︙ | ︙ | |||
426857 426858 426859 426860 426861 426862 426863 426864 426865 426866 426867 426868 426869 426870 | microtonals microtonal :A:m:p/* microtravail microtravail :N:m:s/* microtravaux microtravail :N:m:p/* microtravailleur microtravailleur :N:m:s/* microtravailleurs microtravailleur :N:m:p/* microtravailleuse microtravailleur :N:f:s/* microtravailleuses microtravailleur :N:f:p/* microéconométries microéconométrie :N:f:p/* midshipmans midshipman :N:m:p/* mieux-disantes mieux-disant :N:A:f:p/* mignardai mignarder :V1__t___zz:Is:1s/* mignardaient mignarder :V1__t___zz:Iq:3p/* mignardais mignarder :V1__t___zz:Iq:1s:2s/* mignardas mignarder :V1__t___zz:Is:2s/* | > | 427046 427047 427048 427049 427050 427051 427052 427053 427054 427055 427056 427057 427058 427059 427060 | microtonals microtonal :A:m:p/* microtravail microtravail :N:m:s/* microtravaux microtravail :N:m:p/* microtravailleur microtravailleur :N:m:s/* microtravailleurs microtravailleur :N:m:p/* microtravailleuse microtravailleur :N:f:s/* microtravailleuses microtravailleur :N:f:p/* microvascularisations microvascularisation :N:f:p/* microéconométries microéconométrie :N:f:p/* midshipmans midshipman :N:m:p/* mieux-disantes mieux-disant :N:A:f:p/* mignardai mignarder :V1__t___zz:Is:1s/* mignardaient mignarder :V1__t___zz:Iq:3p/* mignardais mignarder :V1__t___zz:Iq:1s:2s/* mignardas mignarder :V1__t___zz:Is:2s/* |
︙ | ︙ | |||
433137 433138 433139 433140 433141 433142 433143 | normons normer :V1_it____a:Ip:1p/* normons normer :V1_it____a:E:1p/* normâmes normer :V1_it____a:Is:1p/* normât normer :V1_it____a:Sq:3s/* normâtes normer :V1_it____a:Is:2p/* normè normer :V1_it____a:Ip:1ś/R normèrent normer :V1_it____a:Is:3p!/* | | | 433327 433328 433329 433330 433331 433332 433333 433334 433335 433336 433337 433338 433339 433340 433341 | normons normer :V1_it____a:Ip:1p/* normons normer :V1_it____a:E:1p/* normâmes normer :V1_it____a:Is:1p/* normât normer :V1_it____a:Sq:3s/* normâtes normer :V1_it____a:Is:2p/* normè normer :V1_it____a:Ip:1ś/R normèrent normer :V1_it____a:Is:3p!/* northern blot northern blot :N:m:i/* noszigues noszigues :G:Os:Oo:O1:e:p/* noséanes noséane :N:f:p/* notatrices notateur :N:f:p/* notasses noter :V1_it____a:Sq:2s/* notassiez noter :V1_it____a:Sq:2p/* notassions noter :V1_it____a:Sq:1p/* notificatifs notificatif :A:m:p/* |
︙ | ︙ | |||
446965 446966 446967 446968 446969 446970 446971 446972 446973 446974 446975 446976 446977 446978 | prud’homies prud’homie :N:f:p/C prud’homme prud’homme :N:m:s/C prud’hommes prud’homme :N:m:p/C prunellidé prunellidé :N:m:s/* prunellidés prunellidé :N:m:p/* prunelée prunelée :N:f:s/* prunelées prunelée :N:f:p/* præsidiums præsidium :N:m:p/C pré-adolescences pré-adolescence :N:f:p/C pré-dimensionnements pré-dimensionnement :N:m:p/C pré-presses pré-presse :N:m:p/C préaccentuations préaccentuation :N:f:p/* préachetable préachetable :A:e:s/* préachetables préachetable :A:e:p/* | > | 447155 447156 447157 447158 447159 447160 447161 447162 447163 447164 447165 447166 447167 447168 447169 | prud’homies prud’homie :N:f:p/C prud’homme prud’homme :N:m:s/C prud’hommes prud’homme :N:m:p/C prunellidé prunellidé :N:m:s/* prunellidés prunellidé :N:m:p/* prunelée prunelée :N:f:s/* prunelées prunelée :N:f:p/* prunicultures pruniculture :N:f:p/* præsidiums præsidium :N:m:p/C pré-adolescences pré-adolescence :N:f:p/C pré-dimensionnements pré-dimensionnement :N:m:p/C pré-presses pré-presse :N:m:p/C préaccentuations préaccentuation :N:f:p/* préachetable préachetable :A:e:s/* préachetables préachetable :A:e:p/* |
︙ | ︙ | |||
456663 456664 456665 456666 456667 456668 456669 456670 456671 456672 456673 456674 456675 456676 | reconfiguriez reconfigurer :V1__t___zz:Iq:Sp:2p/* reconfigurions reconfigurer :V1__t___zz:Iq:Sp:1p/* reconfigurâmes reconfigurer :V1__t___zz:Is:1p/* reconfigurât reconfigurer :V1__t___zz:Sq:3s/* reconfigurâtes reconfigurer :V1__t___zz:Is:2p/* reconfigurè reconfigurer :V1__t___zz:Ip:1ś/R reconfigurèrent reconfigurer :V1__t___zz:Is:3p!/* reconfirmai reconfirmer :V1__t_q_zz:Is:1s/* reconfirmaient reconfirmer :V1__t_q_zz:Iq:3p/* reconfirmais reconfirmer :V1__t_q_zz:Iq:1s:2s/* reconfirmas reconfirmer :V1__t_q_zz:Is:2s/* reconfirmasse reconfirmer :V1__t_q_zz:Sq:1s/* reconfirmassent reconfirmer :V1__t_q_zz:Sq:3p/* reconfirmasses reconfirmer :V1__t_q_zz:Sq:2s/* | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 456854 456855 456856 456857 456858 456859 456860 456861 456862 456863 456864 456865 456866 456867 456868 456869 456870 456871 456872 456873 456874 456875 456876 456877 456878 456879 456880 456881 456882 456883 456884 456885 456886 456887 456888 456889 456890 456891 456892 456893 456894 456895 456896 456897 456898 456899 456900 456901 456902 456903 456904 456905 456906 456907 456908 456909 456910 456911 456912 | reconfiguriez reconfigurer :V1__t___zz:Iq:Sp:2p/* reconfigurions reconfigurer :V1__t___zz:Iq:Sp:1p/* reconfigurâmes reconfigurer :V1__t___zz:Is:1p/* reconfigurât reconfigurer :V1__t___zz:Sq:3s/* reconfigurâtes reconfigurer :V1__t___zz:Is:2p/* reconfigurè reconfigurer :V1__t___zz:Ip:1ś/R reconfigurèrent reconfigurer :V1__t___zz:Is:3p!/* reconfinement reconfinement :N:m:s/* reconfinements reconfinement :N:m:p/* reconfina reconfiner :V1_it_q__a:Is:3s/* reconfinai reconfiner :V1_it_q__a:Is:1s/* reconfinaient reconfiner :V1_it_q__a:Iq:3p/* reconfinais reconfiner :V1_it_q__a:Iq:1s:2s/* reconfinait reconfiner :V1_it_q__a:Iq:3s/* reconfinant reconfiner :V1_it_q__a:P/* reconfinas reconfiner :V1_it_q__a:Is:2s/* reconfinasse reconfiner :V1_it_q__a:Sq:1s/* reconfinassent reconfiner :V1_it_q__a:Sq:3p/* reconfinasses reconfiner :V1_it_q__a:Sq:2s/* reconfinassiez reconfiner :V1_it_q__a:Sq:2p/* reconfinassions reconfiner :V1_it_q__a:Sq:1p/* reconfine reconfiner :V1_it_q__a:Ip:Sp:1s:3s/* reconfine reconfiner :V1_it_q__a:E:2s/* reconfinent reconfiner :V1_it_q__a:Ip:Sp:3p/* reconfiner reconfiner :V1_it_q__a:Y/* reconfinera reconfiner :V1_it_q__a:If:3s/* reconfinerai reconfiner :V1_it_q__a:If:1s/* reconfineraient reconfiner :V1_it_q__a:K:3p/* reconfinerais reconfiner :V1_it_q__a:K:1s:2s/* reconfinerait reconfiner :V1_it_q__a:K:3s/* reconfineras reconfiner :V1_it_q__a:If:2s/* reconfinerez reconfiner :V1_it_q__a:If:2p/* reconfineriez reconfiner :V1_it_q__a:K:2p/* reconfinerions reconfiner :V1_it_q__a:K:1p/* reconfinerons reconfiner :V1_it_q__a:If:1p/* reconfineront reconfiner :V1_it_q__a:If:3p!/* reconfines reconfiner :V1_it_q__a:Ip:Sp:2s/* reconfinez reconfiner :V1_it_q__a:Ip:2p/* reconfinez reconfiner :V1_it_q__a:E:2p/* reconfiniez reconfiner :V1_it_q__a:Iq:Sp:2p/* reconfinions reconfiner :V1_it_q__a:Iq:Sp:1p/* reconfinons reconfiner :V1_it_q__a:Ip:1p/* reconfinons reconfiner :V1_it_q__a:E:1p/* reconfinâmes reconfiner :V1_it_q__a:Is:1p/* reconfinât reconfiner :V1_it_q__a:Sq:3s/* reconfinâtes reconfiner :V1_it_q__a:Is:2p/* reconfinè reconfiner :V1_it_q__a:Ip:1ś/R reconfinèrent reconfiner :V1_it_q__a:Is:3p!/* reconfiné reconfiner :V1_it_q__a:Q:A:1ŝ:m:s/* reconfinée reconfiner :V1_it_q__a:Q:A:f:s/* reconfinées reconfiner :V1_it_q__a:Q:A:f:p/* reconfinés reconfiner :V1_it_q__a:Q:A:m:p/* reconfirmai reconfirmer :V1__t_q_zz:Is:1s/* reconfirmaient reconfirmer :V1__t_q_zz:Iq:3p/* reconfirmais reconfirmer :V1__t_q_zz:Iq:1s:2s/* reconfirmas reconfirmer :V1__t_q_zz:Is:2s/* reconfirmasse reconfirmer :V1__t_q_zz:Sq:1s/* reconfirmassent reconfirmer :V1__t_q_zz:Sq:3p/* reconfirmasses reconfirmer :V1__t_q_zz:Sq:2s/* |
︙ | ︙ | |||
457875 457876 457877 457878 457879 457880 457881 | rediscutez rediscuter :V1__t___zz:Ip:2p/* rediscutez rediscuter :V1__t___zz:E:2p/* rediscutâmes rediscuter :V1__t___zz:Is:1p/* rediscutât rediscuter :V1__t___zz:Sq:3s/* rediscutâtes rediscuter :V1__t___zz:Is:2p/* rediscutè rediscuter :V1__t___zz:Ip:1ś/R rediscutèrent rediscuter :V1__t___zz:Is:3p!/* | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 458111 458112 458113 458114 458115 458116 458117 458118 458119 458120 458121 458122 458123 458124 458125 458126 458127 458128 458129 458130 458131 458132 458133 458134 458135 458136 458137 458138 458139 458140 458141 458142 458143 458144 458145 458146 458147 458148 458149 458150 458151 458152 458153 458154 458155 458156 | rediscutez rediscuter :V1__t___zz:Ip:2p/* rediscutez rediscuter :V1__t___zz:E:2p/* rediscutâmes rediscuter :V1__t___zz:Is:1p/* rediscutât rediscuter :V1__t___zz:Sq:3s/* rediscutâtes rediscuter :V1__t___zz:Is:2p/* rediscutè rediscuter :V1__t___zz:Ip:1ś/R rediscutèrent rediscuter :V1__t___zz:Is:3p!/* redisposai redisposer :V1__t____a:Is:1s/* redisposaient redisposer :V1__t____a:Iq:3p/* redisposais redisposer :V1__t____a:Iq:1s:2s/* redisposait redisposer :V1__t____a:Iq:3s/* redisposas redisposer :V1__t____a:Is:2s/* redisposasse redisposer :V1__t____a:Sq:1s/* redisposassent redisposer :V1__t____a:Sq:3p/* redisposasses redisposer :V1__t____a:Sq:2s/* redisposassiez redisposer :V1__t____a:Sq:2p/* redisposassions redisposer :V1__t____a:Sq:1p/* redisposera redisposer :V1__t____a:If:3s/* redisposerai redisposer :V1__t____a:If:1s/* redisposeraient redisposer :V1__t____a:K:3p/* redisposerais redisposer :V1__t____a:K:1s:2s/* redisposerait redisposer :V1__t____a:K:3s/* redisposeras redisposer :V1__t____a:If:2s/* redisposerez redisposer :V1__t____a:If:2p/* redisposeriez redisposer :V1__t____a:K:2p/* redisposerions redisposer :V1__t____a:K:1p/* redisposerons redisposer :V1__t____a:If:1p/* redisposeront redisposer :V1__t____a:If:3p!/* redisposes redisposer :V1__t____a:Ip:Sp:2s/* redisposez redisposer :V1__t____a:Ip:2p/* redisposez redisposer :V1__t____a:E:2p/* redisposiez redisposer :V1__t____a:Iq:Sp:2p/* redisposions redisposer :V1__t____a:Iq:Sp:1p/* redisposons redisposer :V1__t____a:Ip:1p/* redisposons redisposer :V1__t____a:E:1p/* redisposât redisposer :V1__t____a:Sq:3s/* redisposâtes redisposer :V1__t____a:Is:2p/* redisposè redisposer :V1__t____a:Ip:1ś/R redisposèrent redisposer :V1__t____a:Is:3p!/* redissolurent redissoudre :V3__t_q__a:Is:3p!/* redissolus redissoudre :V3__t_q__a:Is:1s:2s/* redissolusse redissoudre :V3__t_q__a:Sq:1s/* redissolussent redissoudre :V3__t_q__a:Sq:3p/* redissolusses redissoudre :V3__t_q__a:Sq:2s/* redissolussiez redissoudre :V3__t_q__a:Sq:2p/* redissolussions redissoudre :V3__t_q__a:Sq:1p/* |
︙ | ︙ | |||
466145 466146 466147 466148 466149 466150 466151 466152 466153 466154 466155 466156 466157 466158 | retransformons retransformer :V1__t_q_zz:Ip:1p/* retransformons retransformer :V1__t_q_zz:E:1p/* retransformâmes retransformer :V1__t_q_zz:Is:1p/* retransformât retransformer :V1__t_q_zz:Sq:3s/* retransformâtes retransformer :V1__t_q_zz:Is:2p/* retransformè retransformer :V1__t_q_zz:Ip:1ś/R retransformèrent retransformer :V1__t_q_zz:Is:3p!/* retransmettais retransmettre :V3_it____a:Iq:1s:2s/* retransmettes retransmettre :V3_it____a:Sp:2s/* retransmettez retransmettre :V3_it____a:Ip:2p/* retransmettez retransmettre :V3_it____a:E:2p/* retransmettiez retransmettre :V3_it____a:Iq:Sp:2p/* retransmettions retransmettre :V3_it____a:Iq:Sp:1p/* retransmettrai retransmettre :V3_it____a:If:1s/* | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 466381 466382 466383 466384 466385 466386 466387 466388 466389 466390 466391 466392 466393 466394 466395 466396 466397 466398 466399 466400 466401 466402 466403 466404 466405 466406 466407 466408 466409 466410 466411 466412 466413 466414 466415 466416 466417 466418 466419 466420 466421 466422 466423 466424 466425 466426 466427 466428 466429 466430 466431 466432 466433 466434 466435 466436 466437 466438 | retransformons retransformer :V1__t_q_zz:Ip:1p/* retransformons retransformer :V1__t_q_zz:E:1p/* retransformâmes retransformer :V1__t_q_zz:Is:1p/* retransformât retransformer :V1__t_q_zz:Sq:3s/* retransformâtes retransformer :V1__t_q_zz:Is:2p/* retransformè retransformer :V1__t_q_zz:Ip:1ś/R retransformèrent retransformer :V1__t_q_zz:Is:3p!/* retransfèrent retransférer :V1__t____a:Ip:Sp:3p/* retransfèrera retransférer :V1__t____a:If:3s/R retransfèrerai retransférer :V1__t____a:If:1s/R retransfèreraient retransférer :V1__t____a:K:3p/R retransfèrerais retransférer :V1__t____a:K:1s:2s/R retransfèrerait retransférer :V1__t____a:K:3s/R retransfèreras retransférer :V1__t____a:If:2s/R retransfèrerez retransférer :V1__t____a:If:2p/R retransfèreriez retransférer :V1__t____a:K:2p/R retransfèrerions retransférer :V1__t____a:K:1p/R retransfèrerons retransférer :V1__t____a:If:1p/R retransfèreront retransférer :V1__t____a:If:3p!/R retransfères retransférer :V1__t____a:Ip:Sp:2s/* retransférai retransférer :V1__t____a:Is:1s/* retransféraient retransférer :V1__t____a:Iq:3p/* retransférais retransférer :V1__t____a:Iq:1s:2s/* retransféras retransférer :V1__t____a:Is:2s/* retransférasse retransférer :V1__t____a:Sq:1s/* retransférassent retransférer :V1__t____a:Sq:3p/* retransférasses retransférer :V1__t____a:Sq:2s/* retransférassiez retransférer :V1__t____a:Sq:2p/* retransférassions retransférer :V1__t____a:Sq:1p/* retransférera retransférer :V1__t____a:If:3s/M retransférerai retransférer :V1__t____a:If:1s/M retransféreraient retransférer :V1__t____a:K:3p/M retransférerais retransférer :V1__t____a:K:1s:2s/M retransférerait retransférer :V1__t____a:K:3s/M retransféreras retransférer :V1__t____a:If:2s/M retransférerez retransférer :V1__t____a:If:2p/M retransféreriez retransférer :V1__t____a:K:2p/M retransférerions retransférer :V1__t____a:K:1p/M retransférerons retransférer :V1__t____a:If:1p/M retransféreront retransférer :V1__t____a:If:3p!/M retransférez retransférer :V1__t____a:Ip:2p/* retransférez retransférer :V1__t____a:E:2p/* retransfériez retransférer :V1__t____a:Iq:Sp:2p/* retransférions retransférer :V1__t____a:Iq:Sp:1p/* retransférons retransférer :V1__t____a:Ip:1p/* retransférons retransférer :V1__t____a:E:1p/* retransférâmes retransférer :V1__t____a:Is:1p/* retransférât retransférer :V1__t____a:Sq:3s/* retransférâtes retransférer :V1__t____a:Is:2p/* retransférè retransférer :V1__t____a:Ip:1ś/R retransférèrent retransférer :V1__t____a:Is:3p!/* retransmettais retransmettre :V3_it____a:Iq:1s:2s/* retransmettes retransmettre :V3_it____a:Sp:2s/* retransmettez retransmettre :V3_it____a:Ip:2p/* retransmettez retransmettre :V3_it____a:E:2p/* retransmettiez retransmettre :V3_it____a:Iq:Sp:2p/* retransmettions retransmettre :V3_it____a:Iq:Sp:1p/* retransmettrai retransmettre :V3_it____a:If:1s/* |
︙ | ︙ | |||
480830 480831 480832 480833 480834 480835 480836 | soutachè soutacher :V1__t___zz:Ip:1ś/R soutachèrent soutacher :V1__t___zz:Is:3p!/* soutasse soutasse :N:f:s/R soutasses soutasse :N:f:p/R soutenabilités soutenabilité :N:f:p/* soutinsses soutenir :V3_itnq__a:Sq:2s/* soutinssiez soutenir :V3_itnq__a:Sq:2p/* | | | 481110 481111 481112 481113 481114 481115 481116 481117 481118 481119 481120 481121 481122 481123 481124 | soutachè soutacher :V1__t___zz:Ip:1ś/R soutachèrent soutacher :V1__t___zz:Is:3p!/* soutasse soutasse :N:f:s/R soutasses soutasse :N:f:p/R soutenabilités soutenabilité :N:f:p/* soutinsses soutenir :V3_itnq__a:Sq:2s/* soutinssiez soutenir :V3_itnq__a:Sq:2p/* southern blot southern blot :N:m:i/* soutirasse soutirer :V1__t___zz:Sq:1s/* soutirassent soutirer :V1__t___zz:Sq:3p/* soutirasses soutirer :V1__t___zz:Sq:2s/* soutirassiez soutirer :V1__t___zz:Sq:2p/* soutirassions soutirer :V1__t___zz:Sq:1p/* soutireras soutirer :V1__t___zz:If:2s/* soutireriez soutirer :V1__t___zz:K:2p/* |
︙ | ︙ | |||
489327 489328 489329 489330 489331 489332 489333 489334 489335 489336 489337 489338 489339 489340 | techniverriers techniverrier :N:m:p/* techniverrière techniverrier :N:f:s/* techniverrières techniverrier :N:f:p/* techno-bureaucratiques techno-bureaucratique :A:e:p/C techno-culturel techno-culturel :A:m:s/C techno-culturelles techno-culturel :A:f:p/C techno-culturels techno-culturel :A:m:p/C technocratisations technocratisation :N:f:p/* technocratisa technocratiser :V1__t_q_zz:Is:3s/* technocratisai technocratiser :V1__t_q_zz:Is:1s/* technocratisaient technocratiser :V1__t_q_zz:Iq:3p/* technocratisais technocratiser :V1__t_q_zz:Iq:1s:2s/* technocratisait technocratiser :V1__t_q_zz:Iq:3s/* technocratisant technocratiser :V1__t_q_zz:P/* | > | 489607 489608 489609 489610 489611 489612 489613 489614 489615 489616 489617 489618 489619 489620 489621 | techniverriers techniverrier :N:m:p/* techniverrière techniverrier :N:f:s/* techniverrières techniverrier :N:f:p/* techno-bureaucratiques techno-bureaucratique :A:e:p/C techno-culturel techno-culturel :A:m:s/C techno-culturelles techno-culturel :A:f:p/C techno-culturels techno-culturel :A:m:p/C technocapitalismes technocapitalisme :N:m:p/* technocratisations technocratisation :N:f:p/* technocratisa technocratiser :V1__t_q_zz:Is:3s/* technocratisai technocratiser :V1__t_q_zz:Is:1s/* technocratisaient technocratiser :V1__t_q_zz:Iq:3p/* technocratisais technocratiser :V1__t_q_zz:Iq:1s:2s/* technocratisait technocratiser :V1__t_q_zz:Iq:3s/* technocratisant technocratiser :V1__t_q_zz:P/* |
︙ | ︙ | |||
490241 490242 490243 490244 490245 490246 490247 490248 490249 490250 490251 490252 490253 490254 | thermoformons thermoformer :V1__t____a:E:1p/* thermoformâmes thermoformer :V1__t____a:Is:1p/* thermoformât thermoformer :V1__t____a:Sq:3s/* thermoformâtes thermoformer :V1__t____a:Is:2p/* thermoformè thermoformer :V1__t____a:Ip:1ś/R thermoformèrent thermoformer :V1__t____a:Is:3p!/* thermogenèses thermogenèse :N:f:p/* thermogravimétries thermogravimétrie :N:f:p/* thermogénies thermogénie :N:f:p/* thermoludismes thermoludisme :N:m:p/* thermoluminescences thermoluminescence :N:f:p/* thermomagnétismes thermomagnétisme :N:m:p/* thermométries thermométrie :N:f:p/* thermonasties thermonastie :N:f:p/* | > > | 490522 490523 490524 490525 490526 490527 490528 490529 490530 490531 490532 490533 490534 490535 490536 490537 | thermoformons thermoformer :V1__t____a:E:1p/* thermoformâmes thermoformer :V1__t____a:Is:1p/* thermoformât thermoformer :V1__t____a:Sq:3s/* thermoformâtes thermoformer :V1__t____a:Is:2p/* thermoformè thermoformer :V1__t____a:Ip:1ś/R thermoformèrent thermoformer :V1__t____a:Is:3p!/* thermogenèses thermogenèse :N:f:p/* thermogravimètre thermogravimètre :N:m:s/* thermogravimètres thermogravimètre :N:m:p/* thermogravimétries thermogravimétrie :N:f:p/* thermogénies thermogénie :N:f:p/* thermoludismes thermoludisme :N:m:p/* thermoluminescences thermoluminescence :N:f:p/* thermomagnétismes thermomagnétisme :N:m:p/* thermométries thermométrie :N:f:p/* thermonasties thermonastie :N:f:p/* |
︙ | ︙ | |||
496062 496063 496064 496065 496066 496067 496068 496069 496070 496071 496072 496073 496074 496075 | télécommandons télécommander :V1__t___zz:Ip:1p/* télécommandons télécommander :V1__t___zz:E:1p/* télécommandâmes télécommander :V1__t___zz:Is:1p/* télécommandât télécommander :V1__t___zz:Sq:3s/* télécommandâtes télécommander :V1__t___zz:Is:2p/* télécommandè télécommander :V1__t___zz:Ip:1ś/R télécommandèrent télécommander :V1__t___zz:Is:3p!/* téléconduit téléconduit :A:m:s/* téléconduite téléconduit :A:f:s/* téléconduites téléconduit :A:f:p/* téléconduits téléconduit :A:m:p/* téléconduites téléconduite :N:f:p/* téléconseils téléconseil :N:m:p/* téléconseillères téléconseiller :N:f:p/* | > > | 496345 496346 496347 496348 496349 496350 496351 496352 496353 496354 496355 496356 496357 496358 496359 496360 | télécommandons télécommander :V1__t___zz:Ip:1p/* télécommandons télécommander :V1__t___zz:E:1p/* télécommandâmes télécommander :V1__t___zz:Is:1p/* télécommandât télécommander :V1__t___zz:Sq:3s/* télécommandâtes télécommander :V1__t___zz:Is:2p/* télécommandè télécommander :V1__t___zz:Ip:1ś/R télécommandèrent télécommander :V1__t___zz:Is:3p!/* téléconcert téléconcert :N:m:s/* téléconcerts téléconcert :N:m:p/* téléconduit téléconduit :A:m:s/* téléconduite téléconduit :A:f:s/* téléconduites téléconduit :A:f:p/* téléconduits téléconduit :A:m:p/* téléconduites téléconduite :N:f:p/* téléconseils téléconseil :N:m:p/* téléconseillères téléconseiller :N:f:p/* |
︙ | ︙ | |||
497948 497949 497950 497951 497952 497953 497954 497955 497956 497957 497958 497959 497960 497961 | vaselinâtes vaseliner :V1__t___zz:Is:2p/* vaselinè vaseliner :V1__t___zz:Ip:1ś/R vaselinèrent vaseliner :V1__t___zz:Is:3p!/* vasait vaser :V1_i___mzz:Iq:3s/* vasera vaser :V1_i___mzz:If:3s/* vaserait vaser :V1_i___mzz:K:3s/* vasât vaser :V1_i___mzz:Sq:3s/* vasogéniques vasogénique :A:e:p/* vasomotricités vasomotricité :N:f:p/* vasopressines vasopressine :N:f:p/* vasotomies vasotomie :N:f:p/* vasouillardes vasouillard :N:A:f:p/* vasouilla vasouiller :V1_i____zz:Is:3s/* vasouillai vasouiller :V1_i____zz:Is:1s/* | > | 498233 498234 498235 498236 498237 498238 498239 498240 498241 498242 498243 498244 498245 498246 498247 | vaselinâtes vaseliner :V1__t___zz:Is:2p/* vaselinè vaseliner :V1__t___zz:Ip:1ś/R vaselinèrent vaseliner :V1__t___zz:Is:3p!/* vasait vaser :V1_i___mzz:Iq:3s/* vasera vaser :V1_i___mzz:If:3s/* vaserait vaser :V1_i___mzz:K:3s/* vasât vaser :V1_i___mzz:Sq:3s/* vaseusement vaseusement :W/* vasogéniques vasogénique :A:e:p/* vasomotricités vasomotricité :N:f:p/* vasopressines vasopressine :N:f:p/* vasotomies vasotomie :N:f:p/* vasouillardes vasouillard :N:A:f:p/* vasouilla vasouiller :V1_i____zz:Is:3s/* vasouillai vasouiller :V1_i____zz:Is:1s/* |
︙ | ︙ | |||
499989 499990 499991 499992 499993 499994 499995 | voguasse voguer :V1_i____zz:Sq:1s/* voguasses voguer :V1_i____zz:Sq:2s/* voguassiez voguer :V1_i____zz:Sq:2p/* voguassions voguer :V1_i____zz:Sq:1p/* vogueriez voguer :V1_i____zz:K:2p/* voguâtes voguer :V1_i____zz:Is:2p/* voguè voguer :V1_i____zz:Ip:1ś/R | | | | | | | 500275 500276 500277 500278 500279 500280 500281 500282 500283 500284 500285 500286 500287 500288 500289 500290 500291 500292 500293 | voguasse voguer :V1_i____zz:Sq:1s/* voguasses voguer :V1_i____zz:Sq:2s/* voguassiez voguer :V1_i____zz:Sq:2p/* voguassions voguer :V1_i____zz:Sq:1p/* vogueriez voguer :V1_i____zz:K:2p/* voguâtes voguer :V1_i____zz:Is:2p/* voguè voguer :V1_i____zz:Ip:1ś/R voilasse voiler :V1_it_q__a:Sq:1s/* voilasses voiler :V1_it_q__a:Sq:2s/* voilassiez voiler :V1_it_q__a:Sq:2p/* voilassions voiler :V1_it_q__a:Sq:1p/* voileriez voiler :V1_it_q__a:K:2p/* voisinasse voisiner :V1_i____zz:Sq:1s/* voisinassent voisiner :V1_i____zz:Sq:3p/* voisinasses voisiner :V1_i____zz:Sq:2s/* voisinassiez voisiner :V1_i____zz:Sq:2p/* voisinassions voisiner :V1_i____zz:Sq:1p/* voisinerais voisiner :V1_i____zz:K:1s:2s/* voisineras voisiner :V1_i____zz:If:2s/* |
︙ | ︙ | |||
500986 500987 500988 500989 500990 500991 500992 500993 500994 500995 500996 500997 500998 500999 | wergelds wergeld :N:m:p/* whipcords whipcord :N:m:p/* white-spirits white-spirit :N:m:p/* wienerli wienerli :N:m:s/* wienerlis wienerli :N:m:p/* williamines williamine :N:f:p/* willémites willémite :N:f:p/* windsurfs windsurf :N:m:p/* wintergreens wintergreen :N:m:p/* wollastonites wollastonite :N:f:p/* wolofes wolof :N:A:f:p/* wolophisa wolophiser :V1__t___zz:Is:3s/* wolophisai wolophiser :V1__t___zz:Is:1s/* wolophisaient wolophiser :V1__t___zz:Iq:3p/* | > | 501272 501273 501274 501275 501276 501277 501278 501279 501280 501281 501282 501283 501284 501285 501286 | wergelds wergeld :N:m:p/* whipcords whipcord :N:m:p/* white-spirits white-spirit :N:m:p/* wienerli wienerli :N:m:s/* wienerlis wienerli :N:m:p/* williamines williamine :N:f:p/* willémites willémite :N:f:p/* windowsiennes windowsien :N:f:p/* windsurfs windsurf :N:m:p/* wintergreens wintergreen :N:m:p/* wollastonites wollastonite :N:f:p/* wolofes wolof :N:A:f:p/* wolophisa wolophiser :V1__t___zz:Is:3s/* wolophisai wolophiser :V1__t___zz:Is:1s/* wolophisaient wolophiser :V1__t___zz:Iq:3p/* |
︙ | ︙ | |||
507701 507702 507703 507704 507705 507706 507707 | épeurè épeurer :V1__t___zz:Ip:1ś/R épeurèrent épeurer :V1__t___zz:Is:3p!/* éphémérités éphémérité :N:f:p/* épiages épiage :N:m:p/* épiblastes épiblaste :N:m:p/* épicardes épicarde :N:m:p/* épicentraux épicentral :A:m:p/* | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 507988 507989 507990 507991 507992 507993 507994 507995 507996 507997 507998 507999 508000 508001 508002 508003 508004 508005 508006 508007 508008 508009 508010 508011 508012 508013 508014 508015 508016 508017 508018 508019 508020 508021 508022 508023 508024 508025 508026 508027 508028 508029 | épeurè épeurer :V1__t___zz:Ip:1ś/R épeurèrent épeurer :V1__t___zz:Is:3p!/* éphémérités éphémérité :N:f:p/* épiages épiage :N:m:p/* épiblastes épiblaste :N:m:p/* épicardes épicarde :N:m:p/* épicentraux épicentral :A:m:p/* épicera épicer :V1_it____a:If:3s/* épicerai épicer :V1_it____a:If:1s/* épiceraient épicer :V1_it____a:K:3p/* épicerais épicer :V1_it____a:K:1s:2s/* épicerait épicer :V1_it____a:K:3s/* épiceras épicer :V1_it____a:If:2s/* épicerez épicer :V1_it____a:If:2p/* épiceriez épicer :V1_it____a:K:2p/* épicerions épicer :V1_it____a:K:1p/* épicerons épicer :V1_it____a:If:1p/* épiceront épicer :V1_it____a:If:3p!/* épiciez épicer :V1_it____a:Iq:Sp:2p/* épicions épicer :V1_it____a:Iq:Sp:1p/* épicè épicer :V1_it____a:Ip:1ś/R épicèrent épicer :V1_it____a:Is:3p!/* épiçai épicer :V1_it____a:Is:1s/* épiçais épicer :V1_it____a:Iq:1s:2s/* épiças épicer :V1_it____a:Is:2s/* épiçasse épicer :V1_it____a:Sq:1s/* épiçassent épicer :V1_it____a:Sq:3p/* épiçasses épicer :V1_it____a:Sq:2s/* épiçassiez épicer :V1_it____a:Sq:2p/* épiçassions épicer :V1_it____a:Sq:1p/* épiçons épicer :V1_it____a:Ip:1p/* épiçons épicer :V1_it____a:E:1p/* épiçâmes épicer :V1_it____a:Is:1p/* épiçât épicer :V1_it____a:Sq:3s/* épiçâtes épicer :V1_it____a:Is:2p/* épicrânes épicrâne :N:m:p/* épidémicités épidémicité :N:f:p/* épiasses épier :V1_it_q_zz:Sq:2s/* épiassiez épier :V1_it_q_zz:Sq:2p/* épiassions épier :V1_it_q_zz:Sq:1p/* épieriez épier :V1_it_q_zz:K:2p/* épierions épier :V1_it_q_zz:K:1p/* |
︙ | ︙ | |||
508029 508030 508031 508032 508033 508034 508035 | épinglè épingler :V1__t___zz:Ip:1ś/R épinglières épinglier :N:f:p/* épinçages épinçage :N:m:p/* épinéphrines épinéphrine :N:f:p/* épiphénoménismes épiphénoménisme :N:m:p/* épirogenèses épirogenèse :N:f:p/* épiscopalismes épiscopalisme :N:m:p/* | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 508316 508317 508318 508319 508320 508321 508322 508323 508324 508325 508326 508327 508328 508329 508330 508331 508332 508333 508334 508335 508336 508337 508338 508339 508340 508341 508342 508343 508344 508345 508346 508347 508348 508349 508350 508351 508352 508353 508354 508355 508356 508357 508358 508359 508360 508361 508362 | épinglè épingler :V1__t___zz:Ip:1ś/R épinglières épinglier :N:f:p/* épinçages épinçage :N:m:p/* épinéphrines épinéphrine :N:f:p/* épiphénoménismes épiphénoménisme :N:m:p/* épirogenèses épirogenèse :N:f:p/* épiscopalismes épiscopalisme :N:m:p/* épissai épisser :V1__t____a:Is:1s/* épissaient épisser :V1__t____a:Iq:3p/* épissais épisser :V1__t____a:Iq:1s:2s/* épissait épisser :V1__t____a:Iq:3s/* épissas épisser :V1__t____a:Is:2s/* épissasse épisser :V1__t____a:Sq:1s/* épissassent épisser :V1__t____a:Sq:3p/* épissasses épisser :V1__t____a:Sq:2s/* épissassiez épisser :V1__t____a:Sq:2p/* épissassions épisser :V1__t____a:Sq:1p/* épissera épisser :V1__t____a:If:3s/* épisserai épisser :V1__t____a:If:1s/* épisseraient épisser :V1__t____a:K:3p/* épisserais épisser :V1__t____a:K:1s:2s/* épisserait épisser :V1__t____a:K:3s/* épisseras épisser :V1__t____a:If:2s/* épisserez épisser :V1__t____a:If:2p/* épisseriez épisser :V1__t____a:K:2p/* épisserions épisser :V1__t____a:K:1p/* épisserons épisser :V1__t____a:If:1p/* épisseront épisser :V1__t____a:If:3p!/* épisses épisser :V1__t____a:Ip:Sp:2s/* épissez épisser :V1__t____a:Ip:2p/* épissez épisser :V1__t____a:E:2p/* épissiez épisser :V1__t____a:Iq:Sp:2p/* épissions épisser :V1__t____a:Iq:Sp:1p/* épissons épisser :V1__t____a:Ip:1p/* épissons épisser :V1__t____a:E:1p/* épissâmes épisser :V1__t____a:Is:1p/* épissât épisser :V1__t____a:Sq:3s/* épissâtes épisser :V1__t____a:Is:2p/* épissè épisser :V1__t____a:Ip:1ś/R épissèrent épisser :V1__t____a:Is:3p!/* épissurages épissurage :N:m:p/* épistasique épistasique :A:e:s/* épistasiques épistasique :A:e:p/* épites épite :N:f:p/* épitrochlées épitrochlée :N:f:p/* épitypes épitype :N:m:p/X épivarda épivarder :V1____p_e_:Is:3s/* |
︙ | ︙ |
Modified lexicons/French.tagset.txt from [92ab3541d5] to [419db57e1b].
︙ | ︙ | |||
29 30 31 32 33 34 35 | Suffixe :Zs Mot erroné :F // VERBES Verbe :V 0 e i t n p m e a (loc: Ṽ) | | | | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | Suffixe :Zs Mot erroné :F // VERBES Verbe :V 0 e i t n p m e a (loc: Ṽ) (x = exceptionnellement) 1 a x x x q x x x 2 _ _ _ _ r _ _ _ 3 u v e x _ ^ ^ ^ ^ ^ ^ ^ ^ ^ | | | | | | | | | groupe (0 = être ou avoir) ____/ | | | | | | | | type de verbe (être, avoir, autre) _______/ | | | | | | | verbe intransitif ? __________/ | | | | | | verbe transitif direct ? _____________/ | | | | | verbe transitif indirect ? ________________/ | | | | verbe pronominal ? ___________________/ | | | p: toujours, r: réciproque, e: avec pronom “en” | | | accord? q: oui, u: jamais, v: possiblement | | | verbe impersonnel ? ______________________/ | | avec verbe auxiliaire être ? _________________________/ | avec verbe auxiliaire avoir ? ____________________________/ Infinitif :Y Participe présent :P Participe passé :Q Indicatif présent :Ip 1ʳᵉ personne du singulier :1s (forme interrogative: 1ś ou 1ŝ) Indicatif imparfait :Iq 2ᵉ personne du singulier :2s |
︙ | ︙ |
Modified make.py from [1c6f30e738] to [2561b9d2fe].
︙ | ︙ | |||
30 31 32 33 34 35 36 | def getConfig (sLang): "load config.ini in <sLang> at gc_lang/<sLang>, returns xConfigParser object" xConfig = configparser.ConfigParser() xConfig.optionxform = str try: | | | | | < < | | | | | | > | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | def getConfig (sLang): "load config.ini in <sLang> at gc_lang/<sLang>, returns xConfigParser object" xConfig = configparser.ConfigParser() xConfig.optionxform = str try: xConfig.read_file(open(f"gc_lang/{sLang}/config.ini", "r", encoding="utf-8")) except FileNotFoundError: print(f"# Error. Can’t read config file <{sLang}>") exit() return xConfig def createOptionsLabelProperties (dOptLbl): "create content for .properties files (LibreOffice)" sContent = "" for sOpt, tLabel in dOptLbl.items(): sContent += f"{sOpt}={tLabel[0]}\n" if tLabel[1]: sContent += f"hlp_{sOpt}={tLabel[1]}\n" return sContent def createDialogOptionsXDL (dVars): "create bundled dialog options file .xdl (LibreOffice)" iTab = 1 nPosY = 5 nWidth = 240 sContent = "" dOpt = dVars["dOptWriter"] dOptLabel = dVars["dOptLabel"][dVars["lang"]] for sGroup, lGroupOptions in dVars["lStructOpt"]: sContent += f'<dlg:fixedline dlg:id="{sGroup}" dlg:tab-index="{iTab}" dlg:top="{nPosY}" dlg:left="5" dlg:width="{nWidth}" dlg:height="10" dlg:value="&{sGroup}" />\n' iTab += 1 for lLineOptions in lGroupOptions: nElemWidth = nWidth // len(lLineOptions) nPosY += 10 nPosX = 10 for sOpt in lLineOptions: sHelp = f'dlg:help-text="&hlp_{sOpt}"' if dOptLabel[sOpt][1] else "" sChecked = "true" if dOpt[sOpt] else "false" sContent += f'<dlg:checkbox dlg:id="{sOpt}" dlg:tab-index="{iTab}" dlg:top="{nPosY}" dlg:left="{nPosX}" dlg:width="{nElemWidth}" dlg:height="10" dlg:value="&{sOpt}" dlg:checked="{sChecked}" {sHelp} />\n' iTab += 1 nPosX += nElemWidth nPosY += 10 return sContent def createOXT (spLang, dVars, dOxt, spLangPack, bInstall): "create extension for Writer" print("Building extension for Writer") spfZip = f"_build/{dVars['name']}-{dVars['lang']}-v{dVars['version']}.oxt" hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) # Package and parser copyGrammalectePyPackageInZipFile(hZip, spLangPack, "pythonpath/") hZip.write("grammalecte-cli.py", "pythonpath/grammalecte-cli.py") # Extension files |
︙ | ︙ | |||
114 115 116 117 118 119 120 | dVars["xcs_options"] = "\n".join([ '<prop oor:name="'+sOpt+'" oor:type="xs:string"><value></value></prop>' for sOpt in dVars["dOptPython"] ]) dVars["xcu_label_values"] = "\n".join([ '<value xml:lang="'+sLang+'">' + dVars["dOptLabel"][sLang]["__optiontitle__"] + '</value>' for sLang in dVars["dOptLabel"] ]) hZip.writestr("dialog/options_page.xdl", helpers.fileFile("gc_core/py/oxt/options_page.xdl", dVars)) hZip.writestr("dialog/OptionsDialog.xcs", helpers.fileFile("gc_core/py/oxt/OptionsDialog.xcs", dVars)) hZip.writestr("dialog/OptionsDialog.xcu", helpers.fileFile("gc_core/py/oxt/OptionsDialog.xcu", dVars)) hZip.writestr("dialog/" + dVars['lang'] + "_en.default", "") for sLangLbl, dOptLbl in dVars['dOptLabel'].items(): | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | dVars["xcs_options"] = "\n".join([ '<prop oor:name="'+sOpt+'" oor:type="xs:string"><value></value></prop>' for sOpt in dVars["dOptPython"] ]) dVars["xcu_label_values"] = "\n".join([ '<value xml:lang="'+sLang+'">' + dVars["dOptLabel"][sLang]["__optiontitle__"] + '</value>' for sLang in dVars["dOptLabel"] ]) hZip.writestr("dialog/options_page.xdl", helpers.fileFile("gc_core/py/oxt/options_page.xdl", dVars)) hZip.writestr("dialog/OptionsDialog.xcs", helpers.fileFile("gc_core/py/oxt/OptionsDialog.xcs", dVars)) hZip.writestr("dialog/OptionsDialog.xcu", helpers.fileFile("gc_core/py/oxt/OptionsDialog.xcu", dVars)) hZip.writestr("dialog/" + dVars['lang'] + "_en.default", "") for sLangLbl, dOptLbl in dVars['dOptLabel'].items(): hZip.writestr(f"dialog/{dVars['lang']}_{sLangLbl}.properties", createOptionsLabelProperties(dOptLbl)) ## ADDONS OXT print("+ OXT: ", end="") for spfSrc, spfDst in dOxt.items(): print(spfSrc, end=", ") if os.path.isdir(spLang+'/'+spfSrc): for sf in os.listdir(spLang+'/'+spfSrc): |
︙ | ︙ | |||
144 145 146 147 148 149 150 | if dVars.get('unopkg', False): cmd = '"'+os.path.abspath(dVars.get('unopkg')+'" add -f '+spfZip) print(cmd) os.system(cmd) else: print("# Error: path and filename of unopkg not set in config.ini") | < < < < < < < < < < < < < | | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | if dVars.get('unopkg', False): cmd = '"'+os.path.abspath(dVars.get('unopkg')+'" add -f '+spfZip) print(cmd) os.system(cmd) else: print("# Error: path and filename of unopkg not set in config.ini") def createPackageZip (dVars, spLangPack): "create server zip" spfZip = f"_build/{dVars['name']}-{dVars['lang']}-v{dVars['version']}.zip" hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) copyGrammalectePyPackageInZipFile(hZip, spLangPack) for spf in ["grammalecte-cli.py", "grammalecte-server.py", \ "README.txt", "LICENSE.txt", "LICENSE.fr.txt"]: hZip.write(spf) hZip.writestr("setup.py", helpers.fileFile("gc_lang/fr/setup.py", dVars)) |
︙ | ︙ | |||
324 325 326 327 328 329 330 | dVars["dic_personal_filename_js"] = "" lDict = [ ("main", s) for s in dVars['dic_filenames'].split(",") ] if bCommunityDict: lDict.append(("community", dVars['dic_community_filename'])) if bPersonalDict: lDict.append(("personal", dVars['dic_personal_filename'])) for sType, sFileName in lDict: | | | | 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | dVars["dic_personal_filename_js"] = "" lDict = [ ("main", s) for s in dVars['dic_filenames'].split(",") ] if bCommunityDict: lDict.append(("community", dVars['dic_community_filename'])) if bPersonalDict: lDict.append(("personal", dVars['dic_personal_filename'])) for sType, sFileName in lDict: spfPyDic = f"graphspell/_dictionaries/{sFileName}.bdic" spfJSDic = f"graphspell-js/_dictionaries/{sFileName}.json" if not os.path.isfile(spfPyDic) or (bJavaScript and not os.path.isfile(spfJSDic)): buildDictionary(dVars, sType, bJavaScript) print(spfPyDic) file_util.copy_file(spfPyDic, "grammalecte/graphspell/_dictionaries") dVars['dic_'+sType+'_filename_py'] = sFileName + '.bdic' if bJavaScript: print(spfJSDic) |
︙ | ︙ | |||
372 373 374 375 376 377 378 379 380 381 382 383 384 385 | print("Python: " + sys.version) if sys.version < "3.7": print("Python 3.7+ required") return xParser = argparse.ArgumentParser() xParser.add_argument("lang", type=str, nargs='+', help="lang project to generate (name of folder in /lang)") xParser.add_argument("-uc", "--use_cache", help="use data cache instead of rebuilding rules", action="store_true") xParser.add_argument("-b", "--build_data", help="launch build_data.py (part 1 and 2)", action="store_true") xParser.add_argument("-bb", "--build_data_before", help="launch build_data.py (only part 1: before dictionary building)", action="store_true") xParser.add_argument("-ba", "--build_data_after", help="launch build_data.py (only part 2: before dictionary building)", action="store_true") xParser.add_argument("-d", "--dict", help="generate FSA dictionary", action="store_true") xParser.add_argument("-t", "--tests", help="run unit tests", action="store_true") xParser.add_argument("-p", "--perf", help="run performance tests", action="store_true") xParser.add_argument("-pm", "--perf_memo", help="run performance tests and store results in perf_memo.txt", action="store_true") | > | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | print("Python: " + sys.version) if sys.version < "3.7": print("Python 3.7+ required") return xParser = argparse.ArgumentParser() xParser.add_argument("lang", type=str, nargs='+', help="lang project to generate (name of folder in /lang)") xParser.add_argument("-uc", "--use_cache", help="use data cache instead of rebuilding rules", action="store_true") xParser.add_argument("-frb", "--force_rebuild", help="force rebuilding rules", action="store_true") xParser.add_argument("-b", "--build_data", help="launch build_data.py (part 1 and 2)", action="store_true") xParser.add_argument("-bb", "--build_data_before", help="launch build_data.py (only part 1: before dictionary building)", action="store_true") xParser.add_argument("-ba", "--build_data_after", help="launch build_data.py (only part 2: before dictionary building)", action="store_true") xParser.add_argument("-d", "--dict", help="generate FSA dictionary", action="store_true") xParser.add_argument("-t", "--tests", help="run unit tests", action="store_true") xParser.add_argument("-p", "--perf", help="run performance tests", action="store_true") xParser.add_argument("-pm", "--perf_memo", help="run performance tests and store results in perf_memo.txt", action="store_true") |
︙ | ︙ | |||
434 435 436 437 438 439 440 | if databuild and xArgs.build_data_after: databuild.after('gc_lang/'+sLang, dVars, xArgs.javascript) # copy dictionaries from Graphspell copyGraphspellDictionaries(dVars, xArgs.javascript, xArgs.add_community_dictionary, xArgs.add_personal_dictionary) # make | > > > > > | | | 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | if databuild and xArgs.build_data_after: databuild.after('gc_lang/'+sLang, dVars, xArgs.javascript) # copy dictionaries from Graphspell copyGraphspellDictionaries(dVars, xArgs.javascript, xArgs.add_community_dictionary, xArgs.add_personal_dictionary) # make bUseCache = None # we may rebuild if it’s necessary if xArgs.use_cache: bUseCache = True # we use the cache if it exists if xArgs.force_rebuild: bUseCache = False # we rebuild sVersion = create(sLang, xConfig, xArgs.install, xArgs.javascript, bUseCache) # tests if xArgs.tests or xArgs.perf or xArgs.perf_memo: print("> Running tests") try: tests = importlib.import_module("grammalecte."+sLang+".tests") print(tests.__file__) except ImportError: print(f"# Error. Import failed: grammalecte.{sLang}.tests") traceback.print_exc() else: if xArgs.tests: xTestSuite = unittest.TestLoader().loadTestsFromModule(tests) unittest.TextTestRunner().run(xTestSuite) if xArgs.perf or xArgs.perf_memo: hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n") if xArgs.perf_memo else None |
︙ | ︙ |
Modified misc/grammalecte.sublime-color-scheme from [d307dd5980] to [e0092a90a2].
︙ | ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | }, "rules": [ { "name": "Options command", "scope": "options.command", "foreground": "#50F0A0", "font_style": "bold", }, { "name": "Options parameter", "scope": "options.parameter", "foreground": "#70B0F0", "font_style": "bold", }, { "name": "Comment", "scope": "comment", "foreground": "hsl(210, 10%, 50%)" }, { "name": "Bookmark", "scope": "bookmark", "foreground": "#A0F0FF", "background": "#0050A0", }, { "name": "Graphline", "scope": "graphline", "foreground": "hsl(0, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Graphname", "scope": "string.graphname", "foreground": "hsl(30, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Graphcode", "scope": "string.graphcode", "foreground": "hsl(180, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Error message", "scope": "string.message", "foreground": "hsl(0, 50%, 65%)", }, { "name": "Error message esc", "scope": "string.message.esc", "foreground": "hsl(30, 100%, 65%)", "background": "hsl(60, 100%, 12%)", "font_style": "bold" }, { "name": "Error message URL", "scope": "string.message.url", "foreground": "hsl(180, 100%, 35%)", "background": "hsl(180, 100%, 12%)", }, | > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | }, "rules": [ { "name": "Options command", "scope": "options.command", "foreground": "#50F0A0", "font_style": "bold", }, { "name": "Options parameter", "scope": "options.parameter", "foreground": "#70B0F0", "font_style": "bold", }, { "name": "Comment", "scope": "comment", "foreground": "hsl(210, 10%, 50%)" }, { "name": "Comment within", "scope": "comment.within", "foreground": "hsl(210, 70%, 70%)" }, { "name": "Bookmark", "scope": "bookmark", "foreground": "#A0F0FF", "background": "#0050A0", }, { "name": "Graphline", "scope": "graphline", "foreground": "hsl(0, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Graphname", "scope": "string.graphname", "foreground": "hsl(30, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Graphcode", "scope": "string.graphcode", "foreground": "hsl(180, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", }, { "name": "Error message", "scope": "string.message", "foreground": "hsl(0, 50%, 65%)", }, { "name": "Error message esc", "scope": "string.message.esc", "foreground": "hsl(30, 100%, 65%)", "background": "hsl(60, 100%, 12%)", "font_style": "bold" }, { "name": "Error message URL", "scope": "string.message.url", "foreground": "hsl(180, 100%, 35%)", "background": "hsl(180, 100%, 12%)", }, |
︙ | ︙ |
Modified misc/grammalecte.sublime-syntax from [7cb15ba41b] to [c9d3e55815].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 | - match: '"[^"]*"' scope: string.quoted.double #push: double_quoted_string # Comments begin with a '#' and finish at the end of the line - match: '^#.*' scope: comment # Error message | > > | | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | - match: '"[^"]*"' scope: string.quoted.double #push: double_quoted_string # Comments begin with a '#' and finish at the end of the line - match: '^#.*' scope: comment - match: '^ ##.*' scope: comment.within # Error message - match: '(?<= )&& ' scope: string.message push: - meta_scope: string.message - match: '\\-?[0-9]+' scope: string.message.esc - match: '\| ?https?://[\w./%?&=#+-]+' scope: string.message.url |
︙ | ︙ | |||
57 58 59 60 61 62 63 | - match: '\b(?:True|False|None)\b' scope: constant.language - match: '\b(?:spell|morph|morphVC|stem|tag|value|space_after|textarea0?\w*|before0?\w*|after0?\w*|word|option|define|define_from|select|exclude|analyse\w*|tag_\w+|apposition|is[A-Z]\w+|rewriteSubject|checkD\w+|getD\w+|has[A-Z]\w+|sugg[A-Z]\w+|switch[A-Z]\w+|ceOrCet|formatN\w+|mbUnit)\b' scope: entity.name.function | | | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | - match: '\b(?:True|False|None)\b' scope: constant.language - match: '\b(?:spell|morph|morphVC|stem|tag|value|space_after|textarea0?\w*|before0?\w*|after0?\w*|word|option|define|define_from|select|exclude|analyse\w*|tag_\w+|apposition|is[A-Z]\w+|rewriteSubject|checkD\w+|getD\w+|has[A-Z]\w+|sugg[A-Z]\w+|switch[A-Z]\w+|ceOrCet|formatN\w+|mbUnit)\b' scope: entity.name.function - match: '\b(?:replace|endswith|startswith|search|upper|lower|capitalize|strip|rstrip|is(?:alpha|upper|lower|digit|title))\b' scope: support.function - match: '\becho\b' scope: support.function.debug - match: '\bre\b' scope: support.class |
︙ | ︙ |